diff --git a/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml b/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml index c775940b1da..5c7b5aa5fed 100644 --- a/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml +++ b/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml @@ -15,7 +15,7 @@ + + diff --git a/Content.Client/Bed/Cryostorage/CryostorageSlotControl.xaml.cs b/Content.Client/Bed/Cryostorage/CryostorageSlotControl.xaml.cs new file mode 100644 index 00000000000..629b958262e --- /dev/null +++ b/Content.Client/Bed/Cryostorage/CryostorageSlotControl.xaml.cs @@ -0,0 +1,18 @@ +using Content.Client.Message; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Bed.Cryostorage; + +[GenerateTypedNameReferences] +public sealed partial class CryostorageSlotControl : BoxContainer +{ + public CryostorageSlotControl(string name, string itemName) + { + RobustXamlLoader.Load(this); + + SlotLabel.SetMarkup(Loc.GetString("cryostorage-ui-label-slot-name", ("slot", name))); + ItemLabel.Text = itemName; + } +} diff --git a/Content.Client/Bed/Cryostorage/CryostorageSystem.cs b/Content.Client/Bed/Cryostorage/CryostorageSystem.cs new file mode 100644 index 00000000000..882f4338411 --- /dev/null +++ b/Content.Client/Bed/Cryostorage/CryostorageSystem.cs @@ -0,0 +1,9 @@ +using Content.Shared.Bed.Cryostorage; + +namespace Content.Client.Bed.Cryostorage; + +/// +public sealed class CryostorageSystem : SharedCryostorageSystem +{ + +} diff --git a/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs b/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs index c94759a6c1f..8244e3e6edb 100644 --- a/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs +++ b/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs @@ -57,13 +57,23 @@ protected override void Open() _window.OnDispenseReagentButtonMouseEntered += (args, button) => { if (_lastState is not null) - _window.UpdateContainerInfo(_lastState, button.ReagentId); + _window.UpdateContainerInfo(_lastState); }; _window.OnDispenseReagentButtonMouseExited += (args, button) => { if (_lastState is not null) _window.UpdateContainerInfo(_lastState); }; + + _window.OnEjectJugButtonPressed += (args, button) => SendMessage(new ItemSlotButtonPressedEvent(button.ReagentId)); + _window.OnEjectJugButtonMouseEntered += (args, button) => { + if (_lastState is not null) + _window.UpdateContainerInfo(_lastState); + }; + _window.OnEjectJugButtonMouseExited += (args, button) => { + if (_lastState is not null) + _window.UpdateContainerInfo(_lastState); + }; } /// diff --git a/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml b/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml index e17586db14e..d9e480f132b 100644 --- a/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml +++ b/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml @@ -1,8 +1,7 @@ - + MinSize="680 450"> /// State data for the dispenser. - /// Prototype ID of the reagent whose dispense button is currently being mouse hovered, /// or null if no button is being hovered. - public void UpdateContainerInfo(ReagentDispenserBoundUserInterfaceState state, ReagentId? highlightedReagentId = null) + public void UpdateContainerInfo(ReagentDispenserBoundUserInterfaceState state) { ContainerInfo.Children.Clear(); @@ -161,12 +164,6 @@ public void UpdateContainerInfo(ReagentDispenserBoundUserInterfaceState state, R StyleClasses = {StyleNano.StyleClassLabelSecondaryColor}, }; - // Check if the reagent is being moused over. If so, color it green. - if (reagent == highlightedReagentId) { - nameLabel.SetOnlyStyleClass(StyleNano.StyleClassPowerStateGood); - quantityLabel.SetOnlyStyleClass(StyleNano.StyleClassPowerStateGood); - } - ContainerInfo.Children.Add(new BoxContainer { Orientation = LayoutOrientation.Horizontal, @@ -180,13 +177,27 @@ public void UpdateContainerInfo(ReagentDispenserBoundUserInterfaceState state, R } } - public sealed class DispenseReagentButton : Button { - public ReagentId ReagentId { get; } + public sealed class DispenseReagentButton : Button + { + public string ReagentId { get; } + + public DispenseReagentButton(string reagentId, string text, string amount) + { + AddStyleClass("OpenRight"); + ReagentId = reagentId; + Text = text + " " + amount; + } + } + + public sealed class EjectJugButton : Button + { + public string ReagentId { get; } - public DispenseReagentButton(ReagentId reagentId, string text) + public EjectJugButton(string reagentId) { + AddStyleClass("OpenLeft"); ReagentId = reagentId; - Text = text; + Text = "⏏"; } } } diff --git a/Content.Client/Interaction/DragDropHelper.cs b/Content.Client/Interaction/DragDropHelper.cs index ce5e08207c2..abe35bf6d9a 100644 --- a/Content.Client/Interaction/DragDropHelper.cs +++ b/Content.Client/Interaction/DragDropHelper.cs @@ -1,4 +1,6 @@ -using Robust.Client.Input; +using Content.Shared.CCVar; +using Robust.Client.Input; +using Robust.Shared.Configuration; using Robust.Shared.Map; namespace Content.Client.Interaction; @@ -20,12 +22,13 @@ namespace Content.Client.Interaction; /// thing being dragged and dropped public sealed class DragDropHelper { - private readonly IInputManager _inputManager; + [Dependency] private readonly IInputManager _inputManager = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; private readonly OnBeginDrag _onBeginDrag; private readonly OnEndDrag _onEndDrag; private readonly OnContinueDrag _onContinueDrag; - public float Deadzone = 2f; + private float _deadzone; /// /// Convenience method, current mouse screen position as provided by inputmanager. @@ -63,10 +66,16 @@ private enum DragState : byte /// public DragDropHelper(OnBeginDrag onBeginDrag, OnContinueDrag onContinueDrag, OnEndDrag onEndDrag) { - _inputManager = IoCManager.Resolve(); + IoCManager.InjectDependencies(this); _onBeginDrag = onBeginDrag; _onEndDrag = onEndDrag; _onContinueDrag = onContinueDrag; + _cfg.OnValueChanged(CCVars.DragDropDeadZone, SetDeadZone, true); + } + + ~DragDropHelper() + { + _cfg.UnsubValueChanged(CCVars.DragDropDeadZone, SetDeadZone); } /// @@ -121,7 +130,7 @@ public void Update(float frameTime) case DragState.MouseDown: { var screenPos = _inputManager.MouseScreenPosition; - if ((_mouseDownScreenPos.Position - screenPos.Position).Length() > Deadzone) + if ((_mouseDownScreenPos.Position - screenPos.Position).Length() > _deadzone) { StartDragging(); } @@ -139,6 +148,11 @@ public void Update(float frameTime) } } } + + private void SetDeadZone(float value) + { + _deadzone = value; + } } /// diff --git a/Content.Client/Jittering/JitteringSystem.cs b/Content.Client/Jittering/JitteringSystem.cs index 079fd60a46d..185bd490d3b 100644 --- a/Content.Client/Jittering/JitteringSystem.cs +++ b/Content.Client/Jittering/JitteringSystem.cs @@ -30,6 +30,7 @@ private void OnStartup(EntityUid uid, JitteringComponent jittering, ComponentSta var animationPlayer = EnsureComp(uid); + jittering.StartOffset = sprite.Offset; _animationPlayer.Play(uid, animationPlayer, GetAnimation(jittering, sprite), _jitterAnimationKey); } @@ -39,7 +40,7 @@ private void OnShutdown(EntityUid uid, JitteringComponent jittering, ComponentSh _animationPlayer.Stop(uid, animationPlayer, _jitterAnimationKey); if (TryComp(uid, out SpriteComponent? sprite)) - sprite.Offset = Vector2.Zero; + sprite.Offset = jittering.StartOffset; } private void OnAnimationCompleted(EntityUid uid, JitteringComponent jittering, AnimationCompletedEvent args) @@ -91,7 +92,7 @@ private Animation GetAnimation(JitteringComponent jittering, SpriteComponent spr KeyFrames = { new AnimationTrackProperty.KeyFrame(sprite.Offset, 0f), - new AnimationTrackProperty.KeyFrame(offset, length), + new AnimationTrackProperty.KeyFrame(jittering.StartOffset + offset, length), } } } diff --git a/Content.Client/Overlays/EntityHealthBarOverlay.cs b/Content.Client/Overlays/EntityHealthBarOverlay.cs index 6bf68fc3b5d..11bec135397 100644 --- a/Content.Client/Overlays/EntityHealthBarOverlay.cs +++ b/Content.Client/Overlays/EntityHealthBarOverlay.cs @@ -7,6 +7,7 @@ using Robust.Client.Graphics; using Robust.Shared.Enums; using System.Numerics; +using Content.Shared.StatusIcon.Components; using static Robust.Shared.Maths.Color; namespace Content.Client.Overlays; @@ -65,7 +66,8 @@ protected override void Draw(in OverlayDrawArgs args) continue; } - var bounds = spriteComponent.Bounds; + // we use the status icon component bounds if specified otherwise use sprite + var bounds = _entManager.GetComponentOrNull(uid)?.Bounds ?? spriteComponent.Bounds; var worldPos = _transform.GetWorldPosition(xform, xformQuery); if (!bounds.Translated(worldPos).Intersects(args.WorldAABB)) @@ -81,8 +83,8 @@ protected override void Draw(in OverlayDrawArgs args) handle.SetTransform(matty); - var yOffset = spriteComponent.Bounds.Height * EyeManager.PixelsPerMeter / 2 - 3f; - var widthOfMob = spriteComponent.Bounds.Width * EyeManager.PixelsPerMeter; + var yOffset = bounds.Height * EyeManager.PixelsPerMeter / 2 - 3f; + var widthOfMob = bounds.Width * EyeManager.PixelsPerMeter; var position = new Vector2(-widthOfMob / EyeManager.PixelsPerMeter / 2, yOffset / EyeManager.PixelsPerMeter); diff --git a/Content.IntegrationTests/Tests/Chemistry/DispenserTest.cs b/Content.IntegrationTests/Tests/Chemistry/DispenserTest.cs index 13a0bee28e7..a5449308be4 100644 --- a/Content.IntegrationTests/Tests/Chemistry/DispenserTest.cs +++ b/Content.IntegrationTests/Tests/Chemistry/DispenserTest.cs @@ -1,6 +1,7 @@ using Content.Client.Chemistry.UI; using Content.IntegrationTests.Tests.Interaction; using Content.Shared.Chemistry; +using Content.Server.Chemistry.Components; using Content.Shared.Containers.ItemSlots; namespace Content.IntegrationTests.Tests.Chemistry; @@ -24,7 +25,7 @@ public async Task InsertEjectBuiTest() await Interact(); // Eject beaker via BUI. - var ev = new ItemSlotButtonPressedEvent(SharedChemMaster.InputSlotName); + var ev = new ItemSlotButtonPressedEvent(SharedReagentDispenser.OutputSlotName); await SendBui(ReagentDispenserUiKey.Key, ev); // Beaker is back in the player's hands diff --git a/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs b/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs index ec60af5d423..52d464fa41e 100644 --- a/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs +++ b/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs @@ -10,6 +10,7 @@ using Robust.Shared.GameStates; using Robust.Shared.IoC; using Robust.Shared.Map; +using Robust.Shared.Serialization; using Robust.Shared.Timing; namespace Content.IntegrationTests.Tests.Networking @@ -420,6 +421,7 @@ private void HandleMessage(SetFooMessage message, EntitySessionEventArgs args) } } + [Serializable, NetSerializable] public sealed class SetFooMessage : EntityEventArgs { public SetFooMessage(NetEntity uid, bool newFoo) diff --git a/Content.Server/Administration/Commands/FollowCommand.cs b/Content.Server/Administration/Commands/FollowCommand.cs new file mode 100644 index 00000000000..1ced6cf8dde --- /dev/null +++ b/Content.Server/Administration/Commands/FollowCommand.cs @@ -0,0 +1,44 @@ +using Content.Shared.Administration; +using Content.Shared.Follower; +using Robust.Shared.Console; +using Robust.Shared.Enums; + +namespace Content.Server.Administration.Commands; + +[AdminCommand(AdminFlags.Admin)] +public sealed class FollowCommand : IConsoleCommand +{ + [Dependency] private readonly IEntityManager _entManager = default!; + + public string Command => "follow"; + public string Description => Loc.GetString("add-uplink-command-description"); + public string Help => Loc.GetString("add-uplink-command-help"); + + public void Execute(IConsoleShell shell, string argStr, string[] args) + { + var player = shell.Player; + if (player == null) + { + shell.WriteError(Loc.GetString("shell-only-players-can-run-this-command")); + return; + } + + if (args.Length != 1) + { + shell.WriteError(Loc.GetString("shell-need-exactly-one-argument")); + return; + } + + if (player.Status != SessionStatus.InGame || player.AttachedEntity is not { Valid: true } playerEntity) + { + shell.WriteError(Loc.GetString("shell-must-be-attached-to-entity")); + return; + } + + var entity = args[0]; + if (NetEntity.TryParse(entity, out var uidNet) && _entManager.TryGetEntity(uidNet, out var uid)) + { + _entManager.System().StartFollowingEntity(playerEntity, uid.Value); + } + } +} diff --git a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs index a71174d4d36..af73bcd7f90 100644 --- a/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/HeatExchangerSystem.cs @@ -20,6 +20,7 @@ public sealed class HeatExchangerSystem : EntitySystem [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; float tileLoss; @@ -53,6 +54,17 @@ private void OnAtmosUpdate(EntityUid uid, HeatExchangerComponent comp, ref Atmos return; } + // make sure that the tile the device is on isn't blocked by a wall or something similar. + var xform = Transform(uid); + if (_transform.TryGetGridTilePosition(uid, out var tile)) + { + // TryGetGridTilePosition() already returns false if GridUid is null, but the null checker isn't smart enough yet + if (xform.GridUid != null && _atmosphereSystem.IsTileAirBlocked(xform.GridUid.Value, tile)) + { + return; + } + } + var dt = args.dt; // Let n = moles(inlet) - moles(outlet), really a Δn diff --git a/Content.Server/Atmos/Rotting/RottingSystem.cs b/Content.Server/Atmos/Rotting/RottingSystem.cs index ff0ecaada41..365edf9e05b 100644 --- a/Content.Server/Atmos/Rotting/RottingSystem.cs +++ b/Content.Server/Atmos/Rotting/RottingSystem.cs @@ -16,7 +16,7 @@ namespace Content.Server.Atmos.Rotting; -public sealed class RottingSystem : EntitySystem +public sealed class RottingSystem : SharedRottingSystem { [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly AtmosphereSystem _atmosphere = default!; @@ -37,7 +37,6 @@ public override void Initialize() SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnRottingMobStateChanged); SubscribeLocalEvent(OnGibbed); - SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(OnTempIsRotting); @@ -45,12 +44,12 @@ public override void Initialize() private void OnPerishableMapInit(EntityUid uid, PerishableComponent component, MapInitEvent args) { - component.NextPerishUpdate = _timing.CurTime + component.PerishUpdateRate; + component.RotNextUpdate = _timing.CurTime + component.PerishUpdateRate; } private void OnPerishableUnpaused(EntityUid uid, PerishableComponent component, ref EntityUnpausedEvent args) { - component.NextPerishUpdate += args.PausedTime; + component.RotNextUpdate += args.PausedTime; } private void OnMobStateChanged(EntityUid uid, PerishableComponent component, MobStateChangedEvent args) @@ -62,7 +61,7 @@ private void OnMobStateChanged(EntityUid uid, PerishableComponent component, Mob return; component.RotAccumulator = TimeSpan.Zero; - component.NextPerishUpdate = _timing.CurTime + component.PerishUpdateRate; + component.RotNextUpdate = _timing.CurTime + component.PerishUpdateRate; } private void OnRottingUnpaused(EntityUid uid, RottingComponent component, ref EntityUnpausedEvent args) @@ -74,7 +73,7 @@ private void OnShutdown(EntityUid uid, RottingComponent component, ComponentShut { if (TryComp(uid, out var perishable)) { - perishable.NextPerishUpdate = TimeSpan.Zero; + perishable.RotNextUpdate = TimeSpan.Zero; } } @@ -127,9 +126,8 @@ private void OnGibbed(EntityUid uid, RottingComponent component, BeingGibbedEven private void OnPerishableExamined(Entity perishable, ref ExaminedEvent args) { - int maxStages = 3; - int stage = PerishStage(perishable, maxStages); - if (stage < 1 || stage > maxStages) + int stage = PerishStage(perishable, MaxStages); + if (stage < 1 || stage > MaxStages) { // We dont push an examined string if it hasen't started "perishing" or it's already rotting return; @@ -150,29 +148,6 @@ public int PerishStage(Entity perishable, int maxStages) return (int)(1 + maxStages * perishable.Comp.RotAccumulator.TotalSeconds / perishable.Comp.RotAfter.TotalSeconds); } - private void OnExamined(EntityUid uid, RottingComponent component, ExaminedEvent args) - { - var stage = RotStage(uid, component); - var description = stage switch - { - >= 2 => "rotting-extremely-bloated", - >= 1 => "rotting-bloated", - _ => "rotting-rotting" - }; - args.PushMarkup(Loc.GetString(description, ("target", Identity.Entity(uid, EntityManager)))); - } - - /// - /// Return the rot stage, usually from 0 to 2 inclusive. - /// - public int RotStage(EntityUid uid, RottingComponent? comp = null, PerishableComponent? perishable = null) - { - if (!Resolve(uid, ref comp, ref perishable)) - return 0; - - return (int) (comp.TotalRotTime.TotalSeconds / perishable.RotAfter.TotalSeconds); - } - private void OnRejuvenate(EntityUid uid, RottingComponent component, RejuvenateEvent args) { RemCompDeferred(uid); @@ -209,9 +184,16 @@ public override void Update(float frameTime) var perishQuery = EntityQueryEnumerator(); while (perishQuery.MoveNext(out var uid, out var perishable)) { - if (_timing.CurTime < perishable.NextPerishUpdate) + if (_timing.CurTime < perishable.RotNextUpdate) continue; - perishable.NextPerishUpdate += perishable.PerishUpdateRate; + perishable.RotNextUpdate += perishable.PerishUpdateRate; + + var stage = PerishStage((uid, perishable), MaxStages); + if (stage != perishable.Stage) + { + perishable.Stage = stage; + Dirty(uid, perishable); + } if (IsRotten(uid) || !IsRotProgressing(uid, perishable)) continue; diff --git a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs new file mode 100644 index 00000000000..f82f835d876 --- /dev/null +++ b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs @@ -0,0 +1,309 @@ +using System.Linq; +using Content.Server.Chat.Managers; +using Content.Server.GameTicking; +using Content.Server.Hands.Systems; +using Content.Server.Inventory; +using Content.Server.Popups; +using Content.Server.Station.Components; +using Content.Server.Station.Systems; +using Content.Server.UserInterface; +using Content.Shared.Access.Systems; +using Content.Shared.Bed.Cryostorage; +using Content.Shared.Chat; +using Content.Shared.Climbing.Systems; +using Content.Shared.Database; +using Content.Shared.Hands.Components; +using Content.Shared.Mind.Components; +using Robust.Server.Audio; +using Robust.Server.Containers; +using Robust.Server.GameObjects; +using Robust.Server.Player; +using Robust.Shared.Containers; +using Robust.Shared.Enums; +using Robust.Shared.Network; +using Robust.Shared.Player; + +namespace Content.Server.Bed.Cryostorage; + +/// +public sealed class CryostorageSystem : SharedCryostorageSystem +{ + [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly AccessReaderSystem _accessReader = default!; + [Dependency] private readonly ClimbSystem _climb = default!; + [Dependency] private readonly ContainerSystem _container = default!; + [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly HandsSystem _hands = default!; + [Dependency] private readonly ServerInventorySystem _inventory = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly StationJobsSystem _stationJobs = default!; + [Dependency] private readonly TransformSystem _transform = default!; + [Dependency] private readonly UserInterfaceSystem _ui = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnBeforeUIOpened); + SubscribeLocalEvent(OnRemoveItemBuiMessage); + + SubscribeLocalEvent(OnPlayerSpawned); + SubscribeLocalEvent(OnMindRemoved); + + _playerManager.PlayerStatusChanged += PlayerStatusChanged; + } + + public override void Shutdown() + { + base.Shutdown(); + + _playerManager.PlayerStatusChanged -= PlayerStatusChanged; + } + + private void OnBeforeUIOpened(Entity ent, ref BeforeActivatableUIOpenEvent args) + { + UpdateCryostorageUIState(ent); + } + + private void OnRemoveItemBuiMessage(Entity ent, ref CryostorageRemoveItemBuiMessage args) + { + var (_, comp) = ent; + if (args.Session.AttachedEntity is not { } attachedEntity) + return; + + var cryoContained = GetEntity(args.StoredEntity); + + if (!comp.StoredPlayers.Contains(cryoContained) || !IsInPausedMap(cryoContained)) + return; + + if (!HasComp(attachedEntity)) + return; + + if (!_accessReader.IsAllowed(attachedEntity, ent)) + { + _popup.PopupEntity(Loc.GetString("cryostorage-popup-access-denied"), attachedEntity, attachedEntity); + return; + } + + EntityUid? entity = null; + if (args.Type == CryostorageRemoveItemBuiMessage.RemovalType.Hand) + { + if (_hands.TryGetHand(cryoContained, args.Key, out var hand)) + entity = hand.HeldEntity; + } + else + { + if (_inventory.TryGetSlotContainer(cryoContained, args.Key, out var slot, out _)) + entity = slot.ContainedEntity; + } + + if (entity == null) + return; + + AdminLog.Add(LogType.Action, LogImpact.High, + $"{ToPrettyString(attachedEntity):player} removed item {ToPrettyString(entity)} from cryostorage-contained player " + + $"{ToPrettyString(cryoContained):player}, stored in cryostorage {ToPrettyString(ent)}"); + _container.TryRemoveFromContainer(entity.Value); + _transform.SetCoordinates(entity.Value, Transform(attachedEntity).Coordinates); + _hands.PickupOrDrop(attachedEntity, entity.Value); + UpdateCryostorageUIState(ent); + } + + private void UpdateCryostorageUIState(Entity ent) + { + var state = new CryostorageBuiState(GetAllContainedData(ent).ToList()); + _ui.TrySetUiState(ent, CryostorageUIKey.Key, state); + } + + private void OnPlayerSpawned(Entity ent, ref PlayerSpawnCompleteEvent args) + { + // if you spawned into cryostorage, we're not gonna round-remove you. + ent.Comp.GracePeriodEndTime = null; + } + + private void OnMindRemoved(Entity ent, ref MindRemovedMessage args) + { + var comp = ent.Comp; + + if (!TryComp(comp.Cryostorage, out var cryostorageComponent)) + return; + + if (comp.GracePeriodEndTime != null) + comp.GracePeriodEndTime = Timing.CurTime + cryostorageComponent.NoMindGracePeriod; + comp.AllowReEnteringBody = false; + comp.UserId = args.Mind.Comp.UserId; + } + + private void PlayerStatusChanged(object? sender, SessionStatusEventArgs args) + { + if (args.Session.AttachedEntity is not { } entity) + return; + + if (!TryComp(entity, out var containedComponent)) + return; + + if (args.NewStatus is SessionStatus.Disconnected or SessionStatus.Zombie) + { + containedComponent.AllowReEnteringBody = true; + var delay = CompOrNull(containedComponent.Cryostorage)?.NoMindGracePeriod ?? TimeSpan.Zero; + containedComponent.GracePeriodEndTime = Timing.CurTime + delay; + containedComponent.UserId = args.Session.UserId; + } + else if (args.NewStatus == SessionStatus.InGame) + { + HandleCryostorageReconnection((entity, containedComponent)); + } + } + + public void HandleEnterCryostorage(Entity ent, NetUserId? userId) + { + var comp = ent.Comp; + var cryostorageEnt = ent.Comp.Cryostorage; + if (!TryComp(cryostorageEnt, out var cryostorageComponent)) + return; + + // if we have a session, we use that to add back in all the job slots the player had. + if (userId != null) + { + foreach (var station in _station.GetStationsSet()) + { + if (!TryComp(station, out var stationJobs)) + continue; + + if (!_stationJobs.TryGetPlayerJobs(station, userId.Value, out var jobs, stationJobs)) + continue; + + foreach (var job in jobs) + { + _stationJobs.TryAdjustJobSlot(station, job, 1, clamp: true); + } + + _stationJobs.TryRemovePlayerJobs(station, userId.Value, stationJobs); + } + } + + _audio.PlayPvs(cryostorageComponent.RemoveSound, ent); + + EnsurePausedMap(); + if (PausedMap == null) + { + Log.Error("CryoSleep map was unexpectedly null"); + return; + } + + if (!CryoSleepRejoiningEnabled || !comp.AllowReEnteringBody) + { + if (userId != null && Mind.TryGetMind(userId.Value, out var mind)) + { + _gameTicker.OnGhostAttempt(mind.Value, false); + } + } + comp.AllowReEnteringBody = false; + _transform.SetParent(ent, PausedMap.Value); + cryostorageComponent.StoredPlayers.Add(ent); + Dirty(ent, comp); + UpdateCryostorageUIState((cryostorageEnt.Value, cryostorageComponent)); + AdminLog.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(ent):player} was entered into cryostorage inside of {ToPrettyString(cryostorageEnt.Value)}"); + } + + private void HandleCryostorageReconnection(Entity entity) + { + var (uid, comp) = entity; + if (!CryoSleepRejoiningEnabled || !IsInPausedMap(uid)) + return; + + // how did you destroy these? they're indestructible. + if (comp.Cryostorage is not { } cryostorage || + TerminatingOrDeleted(cryostorage) || + !TryComp(cryostorage, out var cryostorageComponent)) + { + QueueDel(entity); + return; + } + + var cryoXform = Transform(cryostorage); + _transform.SetParent(uid, cryoXform.ParentUid); + _transform.SetCoordinates(uid, cryoXform.Coordinates); + if (!_container.TryGetContainer(cryostorage, cryostorageComponent.ContainerId, out var container) || + !_container.Insert(uid, container, cryoXform)) + { + _climb.ForciblySetClimbing(uid, cryostorage); + } + + comp.GracePeriodEndTime = null; + cryostorageComponent.StoredPlayers.Remove(uid); + AdminLog.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(entity):player} re-entered the game from cryostorage {ToPrettyString(cryostorage)}"); + UpdateCryostorageUIState((cryostorage, cryostorageComponent)); + } + + protected override void OnInsertedContainer(Entity ent, ref EntInsertedIntoContainerMessage args) + { + var (uid, comp) = ent; + if (args.Container.ID != comp.ContainerId) + return; + + base.OnInsertedContainer(ent, ref args); + + var locKey = CryoSleepRejoiningEnabled + ? "cryostorage-insert-message-temp" + : "cryostorage-insert-message-permanent"; + + var msg = Loc.GetString(locKey, ("time", comp.GracePeriod.TotalMinutes)); + if (TryComp(args.Entity, out var actor)) + _chatManager.ChatMessageToOne(ChatChannel.Server, msg, msg, uid, false, actor.PlayerSession.Channel); + } + + private IEnumerable GetAllContainedData(Entity ent) + { + foreach (var contained in ent.Comp.StoredPlayers) + { + yield return GetContainedData(contained); + } + } + + private CryostorageContainedPlayerData GetContainedData(EntityUid uid) + { + var data = new CryostorageContainedPlayerData(); + data.PlayerName = Name(uid); + data.PlayerEnt = GetNetEntity(uid); + + var enumerator = _inventory.GetSlotEnumerator(uid); + while (enumerator.NextItem(out var item, out var slotDef)) + { + data.ItemSlots.Add(slotDef.Name, Name(item)); + } + + foreach (var hand in _hands.EnumerateHands(uid)) + { + if (hand.HeldEntity == null) + continue; + + data.HeldItems.Add(hand.Name, Name(hand.HeldEntity.Value)); + } + + return data; + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var containedComp)) + { + if (containedComp.GracePeriodEndTime == null) + continue; + + if (Timing.CurTime < containedComp.GracePeriodEndTime) + continue; + + Mind.TryGetMind(uid, out _, out var mindComp); + var id = mindComp?.UserId ?? containedComp.UserId; + HandleEnterCryostorage((uid, containedComp), id); + } + } +} diff --git a/Content.Server/Chemistry/Components/ReagentDispenserComponent.cs b/Content.Server/Chemistry/Components/ReagentDispenserComponent.cs index 7229010228b..eb1839ef2ec 100644 --- a/Content.Server/Chemistry/Components/ReagentDispenserComponent.cs +++ b/Content.Server/Chemistry/Components/ReagentDispenserComponent.cs @@ -1,3 +1,5 @@ +using Content.Shared.Whitelist; +using Content.Shared.Containers.ItemSlots; using Content.Server.Chemistry.EntitySystems; using Content.Shared.Chemistry; using Content.Shared.Chemistry.Dispenser; @@ -7,20 +9,52 @@ namespace Content.Server.Chemistry.Components { /// - /// A machine that dispenses reagents into a solution container. + /// A machine that dispenses reagents into a solution container from containers in its storage slots. /// [RegisterComponent] [Access(typeof(ReagentDispenserSystem))] public sealed partial class ReagentDispenserComponent : Component { - + /// + /// String with the pack name that stores the initial fill of the dispenser. The initial + /// fill is added to the dispenser on MapInit. Note that we don't use ContainerFill because + /// we have to generate the storage slots at MapInit first, then fill them. + /// [DataField("pack", customTypeSerializer:typeof(PrototypeIdSerializer))] [ViewVariables(VVAccess.ReadWrite)] public string? PackPrototypeId = default!; - [DataField("emagPack", customTypeSerializer:typeof(PrototypeIdSerializer))] - [ViewVariables(VVAccess.ReadWrite)] - public string? EmagPackPrototypeId = default!; + /// + /// Maximum number of internal storage slots. Dispenser can't store (or dispense) more than + /// this many chemicals (without unloading and reloading). + /// + [DataField("numStorageSlots")] + public int NumSlots = 25; + + /// + /// For each created storage slot for the reagent containers being dispensed, apply this + /// entity whitelist. Makes sure weird containers don't fit in the dispenser and that beakers + /// don't accidentally get slotted into the source slots. + /// + [DataField] + public EntityWhitelist? StorageWhitelist; + + [DataField] + public ItemSlot BeakerSlot = new(); + + /// + /// Prefix for automatically-generated slot name for storage, up to NumSlots. + /// + public static string BaseStorageSlotId = "ReagentDispenser-storageSlot"; + + /// + /// List of storage slots that were created at MapInit. + /// + [DataField] + public List StorageSlotIds = new List(); + + [DataField] + public List StorageSlots = new List(); [DataField("clickSound"), ViewVariables(VVAccess.ReadWrite)] public SoundSpecifier ClickSound = new SoundPathSpecifier("/Audio/Machines/machine_switch.ogg"); diff --git a/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs b/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs index aeb141fe35b..d5ec310f87e 100644 --- a/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs @@ -1,14 +1,18 @@ using Content.Server.Administration.Logs; using Content.Server.Chemistry.Components; using Content.Server.Chemistry.Containers.EntitySystems; +using Content.Server.Nutrition.Components; +using Content.Server.Nutrition.EntitySystems; +using Content.Server.Labels.Components; +using Content.Server.Chemistry; using Content.Shared.Chemistry; +using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.Chemistry.Dispenser; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reagent; using Content.Shared.Containers.ItemSlots; using Content.Shared.Database; -using Content.Shared.Emag.Components; -using Content.Shared.Emag.Systems; +using Content.Shared.FixedPoint; using JetBrains.Annotations; using Robust.Server.Audio; using Robust.Server.GameObjects; @@ -28,10 +32,13 @@ public sealed class ReagentDispenserSystem : EntitySystem { [Dependency] private readonly AudioSystem _audioSystem = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; + [Dependency] private readonly SolutionTransferSystem _solutionTransferSystem = default!; [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly OpenableSystem _openable = default!; + public override void Initialize() { base.Initialize(); @@ -41,11 +48,12 @@ public override void Initialize() SubscribeLocalEvent(SubscribeUpdateUiState); SubscribeLocalEvent(SubscribeUpdateUiState); SubscribeLocalEvent(SubscribeUpdateUiState); - SubscribeLocalEvent(OnEmagged); SubscribeLocalEvent(OnSetDispenseAmountMessage); SubscribeLocalEvent(OnDispenseReagentMessage); SubscribeLocalEvent(OnClearContainerSolutionMessage); + + SubscribeLocalEvent(OnMapInit, before: new []{typeof(ItemSlotsSystem)}); } private void SubscribeUpdateUiState(Entity ent, ref T ev) @@ -80,35 +88,38 @@ private void UpdateUiState(Entity reagentDispenser) return null; } - private List GetInventory(Entity ent) + private List>> GetInventory(Entity reagentDispenser) { - var reagentDispenser = ent.Comp; - var inventory = new List(); + var inventory = new List>>(); - if (reagentDispenser.PackPrototypeId is not null - && _prototypeManager.TryIndex(reagentDispenser.PackPrototypeId, out ReagentDispenserInventoryPrototype? packPrototype)) + for (var i = 0; i < reagentDispenser.Comp.NumSlots; i++) { - inventory.AddRange(packPrototype.Inventory.Select(x => new ReagentId(x, null))); - } + var storageSlotId = ReagentDispenserComponent.BaseStorageSlotId + i; + var storedContainer = _itemSlotsSystem.GetItemOrNull(reagentDispenser.Owner, storageSlotId); + + // Set label from manually-applied label, or metadata if unavailable + string reagentLabel; + if (TryComp(storedContainer, out var label) && !string.IsNullOrEmpty(label.CurrentLabel)) + reagentLabel = label.CurrentLabel; + else if (storedContainer != null) + reagentLabel = Name(storedContainer.Value); + else + continue; + + // Add volume remaining label + FixedPoint2 quantity = 0f; + if (storedContainer != null && _solutionContainerSystem.TryGetDrainableSolution(storedContainer.Value, out _, out var sol)) + { + quantity = sol.Volume; + } + var storedAmount = Loc.GetString("reagent-dispenser-window-quantity-label-text", ("quantity", quantity)); - if (HasComp(ent) - && reagentDispenser.EmagPackPrototypeId is not null - && _prototypeManager.TryIndex(reagentDispenser.EmagPackPrototypeId, out ReagentDispenserInventoryPrototype? emagPackPrototype)) - { - inventory.AddRange(emagPackPrototype.Inventory.Select(x => new ReagentId(x, null))); + inventory.Add(new KeyValuePair>(storageSlotId, new KeyValuePair(reagentLabel, storedAmount))); } return inventory; } - private void OnEmagged(Entity reagentDispenser, ref GotEmaggedEvent args) - { - // adding component manually to have correct state - EntityManager.AddComponent(reagentDispenser); - UpdateUiState(reagentDispenser); - args.Handled = true; - } - private void OnSetDispenseAmountMessage(Entity reagentDispenser, ref ReagentDispenserSetDispenseAmountMessage message) { reagentDispenser.Comp.DispenseAmount = message.ReagentDispenserDispenseAmount; @@ -119,18 +130,23 @@ private void OnSetDispenseAmountMessage(Entity reagen private void OnDispenseReagentMessage(Entity reagentDispenser, ref ReagentDispenserDispenseReagentMessage message) { // Ensure that the reagent is something this reagent dispenser can dispense. - if (!GetInventory(reagentDispenser).Contains(message.ReagentId)) + var storedContainer = _itemSlotsSystem.GetItemOrNull(reagentDispenser, message.SlotId); + if (storedContainer == null) return; var outputContainer = _itemSlotsSystem.GetItemOrNull(reagentDispenser, SharedReagentDispenser.OutputSlotName); if (outputContainer is not { Valid: true } || !_solutionContainerSystem.TryGetFitsInDispenser(outputContainer.Value, out var solution, out _)) return; - if (_solutionContainerSystem.TryAddReagent(solution.Value, message.ReagentId, (int) reagentDispenser.Comp.DispenseAmount, out var dispensedAmount) - && message.Session.AttachedEntity is not null) + if (_solutionContainerSystem.TryGetDrainableSolution(storedContainer.Value, out var src, out _) && + _solutionContainerSystem.TryGetRefillableSolution(outputContainer.Value, out var dst, out _)) { - _adminLogger.Add(LogType.ChemicalReaction, LogImpact.Medium, - $"{ToPrettyString(message.Session.AttachedEntity.Value):player} dispensed {dispensedAmount}u of {message.ReagentId} into {ToPrettyString(outputContainer.Value):entity}"); + // force open container, if applicable, to avoid confusing people on why it doesn't dispense + _openable.SetOpen(storedContainer.Value, true); + _solutionTransferSystem.Transfer(reagentDispenser, + storedContainer.Value, src.Value, + outputContainer.Value, dst.Value, + (int)reagentDispenser.Comp.DispenseAmount); } UpdateUiState(reagentDispenser); @@ -152,5 +168,41 @@ private void ClickSound(Entity reagentDispenser) { _audioSystem.PlayPvs(reagentDispenser.Comp.ClickSound, reagentDispenser, AudioParams.Default.WithVolume(-2f)); } + + /// + /// Automatically generate storage slots for all NumSlots, and fill them with their initial chemicals. + /// The actual spawning of entities happens in ItemSlotsSystem's MapInit. + /// + private void OnMapInit(EntityUid uid, ReagentDispenserComponent component, MapInitEvent args) + { + // Get list of pre-loaded containers + List preLoad = new List(); + if (component.PackPrototypeId is not null + && _prototypeManager.TryIndex(component.PackPrototypeId, out ReagentDispenserInventoryPrototype? packPrototype)) + { + preLoad.AddRange(packPrototype.Inventory); + } + + // Populate storage slots with base storage slot whitelist + for (var i = 0; i < component.NumSlots; i++) + { + var storageSlotId = ReagentDispenserComponent.BaseStorageSlotId + i; + ItemSlot storageComponent = new(); + storageComponent.Whitelist = component.StorageWhitelist; + storageComponent.Swap = false; + storageComponent.EjectOnBreak = true; + + // Check corresponding index in pre-loaded container (if exists) and set starting item + if (i < preLoad.Count) + storageComponent.StartingItem = preLoad[i]; + + component.StorageSlotIds.Add(storageSlotId); + component.StorageSlots.Add(storageComponent); + component.StorageSlots[i].Name = "Storage Slot " + (i+1); + _itemSlotsSystem.AddItemSlot(uid, component.StorageSlotIds[i], component.StorageSlots[i]); + } + + _itemSlotsSystem.AddItemSlot(uid, SharedReagentDispenser.OutputSlotName, component.BeakerSlot); + } } } diff --git a/Content.Server/Commands/ActionCommands.cs b/Content.Server/Commands/ActionCommands.cs index 5ce29b6d8ec..fb50cfb3a35 100644 --- a/Content.Server/Commands/ActionCommands.cs +++ b/Content.Server/Commands/ActionCommands.cs @@ -51,7 +51,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) if (args.Length == 1) { - if (!actionUpgrade.TryUpgradeAction(uid, actionUpgradeComponent)) + if (!actionUpgrade.TryUpgradeAction(uid, out _, actionUpgradeComponent)) { shell.WriteLine(Loc.GetString("upgradeaction-command-cannot-level-up")); return; @@ -74,7 +74,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (!actionUpgrade.TryUpgradeAction(uid, actionUpgradeComponent, level)) + if (!actionUpgrade.TryUpgradeAction(uid, out _, actionUpgradeComponent, level)) shell.WriteLine(Loc.GetString("upgradeaction-command-cannot-level-up")); } } diff --git a/Content.Server/Corvax/PeacefulRoundEnd/PeacefulRoundEndSystem.cs b/Content.Server/Corvax/PeacefulRoundEnd/PeacefulRoundEndSystem.cs index 5d5f8449dce..d6ad9e78682 100644 --- a/Content.Server/Corvax/PeacefulRoundEnd/PeacefulRoundEndSystem.cs +++ b/Content.Server/Corvax/PeacefulRoundEnd/PeacefulRoundEndSystem.cs @@ -2,6 +2,7 @@ using Content.Server.GameTicking; using Content.Shared.CombatMode.Pacification; using Content.Shared.Corvax.CCCVars; +using Content.Shared.Mindshield.Components; using Robust.Server.Player; using Robust.Shared.Configuration; @@ -27,11 +28,19 @@ private void OnRoundEnded(RoundEndTextAppendEvent ev) foreach (var session in _playerManager.Sessions) { if (!session.AttachedEntity.HasValue) continue; - if (HasComp(session.AttachedEntity)) + + var entityId = session.AttachedEntity.Value; + // start-backmen: specforce + if (HasComp(entityId)) + { + continue; + } + // end-backmen: specforce + if (HasComp(entityId)) { continue; } - EnsureComp(session.AttachedEntity.Value); + EnsureComp(entityId); } } } diff --git a/Content.Server/Execution/ExecutionSystem.cs b/Content.Server/Execution/ExecutionSystem.cs new file mode 100644 index 00000000000..4354608ca3e --- /dev/null +++ b/Content.Server/Execution/ExecutionSystem.cs @@ -0,0 +1,397 @@ +using Content.Server.Interaction; +using Content.Server.Kitchen.Components; +using Content.Server.Weapons.Ranged.Systems; +using Content.Shared.ActionBlocker; +using Content.Shared.Damage; +using Content.Shared.Database; +using Content.Shared.DoAfter; +using Content.Shared.Execution; +using Content.Shared.Interaction.Components; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Popups; +using Content.Shared.Projectiles; +using Content.Shared.Verbs; +using Content.Shared.Weapons.Melee; +using Content.Shared.Weapons.Ranged; +using Content.Shared.Weapons.Ranged.Components; +using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; + +namespace Content.Server.Execution; + +/// +/// Verb for violently murdering cuffed creatures. +/// +public sealed class ExecutionSystem : EntitySystem +{ + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly MobStateSystem _mobStateSystem = default!; + [Dependency] private readonly InteractionSystem _interactionSystem = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; + [Dependency] private readonly DamageableSystem _damageableSystem = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IComponentFactory _componentFactory = default!; + [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly GunSystem _gunSystem = default!; + + private const float MeleeExecutionTimeModifier = 5.0f; + private const float GunExecutionTime = 6.0f; + private const float DamageModifier = 9.0f; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetInteractionVerbsMelee); + SubscribeLocalEvent>(OnGetInteractionVerbsGun); + + SubscribeLocalEvent(OnDoafterMelee); + SubscribeLocalEvent(OnDoafterGun); + } + + private void OnGetInteractionVerbsMelee( + EntityUid uid, + SharpComponent component, + GetVerbsEvent args) + { + if (args.Hands == null || args.Using == null || !args.CanAccess || !args.CanInteract) + return; + + var attacker = args.User; + var weapon = args.Using!.Value; + var victim = args.Target; + + if (!CanExecuteWithMelee(weapon, victim, attacker)) + return; + + UtilityVerb verb = new() + { + Act = () => + { + TryStartMeleeExecutionDoafter(weapon, victim, attacker); + }, + Impact = LogImpact.High, + Text = Loc.GetString("execution-verb-name"), + Message = Loc.GetString("execution-verb-message"), + }; + + args.Verbs.Add(verb); + } + + private void OnGetInteractionVerbsGun( + EntityUid uid, + GunComponent component, + GetVerbsEvent args) + { + if (args.Hands == null || args.Using == null || !args.CanAccess || !args.CanInteract) + return; + + var attacker = args.User; + var weapon = args.Using!.Value; + var victim = args.Target; + + if (!CanExecuteWithGun(weapon, victim, attacker)) + return; + + UtilityVerb verb = new() + { + Act = () => + { + TryStartGunExecutionDoafter(weapon, victim, attacker); + }, + Impact = LogImpact.High, + Text = Loc.GetString("execution-verb-name"), + Message = Loc.GetString("execution-verb-message"), + }; + + args.Verbs.Add(verb); + } + + private bool CanExecuteWithAny(EntityUid weapon, EntityUid victim, EntityUid attacker) + { + // No point executing someone if they can't take damage + if (!TryComp(victim, out var damage)) + return false; + + // You can't execute something that cannot die + if (!TryComp(victim, out var mobState)) + return false; + + // You're not allowed to execute dead people (no fun allowed) + if (_mobStateSystem.IsDead(victim, mobState)) + return false; + + // You must be able to attack people to execute + if (!_actionBlockerSystem.CanAttack(attacker, victim)) + return false; + + // The victim must be incapacitated to be executed + if (victim != attacker && _actionBlockerSystem.CanInteract(victim, null)) + return false; + + // All checks passed + return true; + } + + private bool CanExecuteWithMelee(EntityUid weapon, EntityUid victim, EntityUid user) + { + if (!CanExecuteWithAny(weapon, victim, user)) return false; + + // We must be able to actually hurt people with the weapon + if (!TryComp(weapon, out var melee) && melee!.Damage.GetTotal() > 0.0f) + return false; + + return true; + } + + private bool CanExecuteWithGun(EntityUid weapon, EntityUid victim, EntityUid user) + { + if (!CanExecuteWithAny(weapon, victim, user)) return false; + + // We must be able to actually fire the gun + if (!TryComp(weapon, out var gun) && _gunSystem.CanShoot(gun!)) + return false; + + return true; + } + + private void TryStartMeleeExecutionDoafter(EntityUid weapon, EntityUid victim, EntityUid attacker) + { + if (!CanExecuteWithMelee(weapon, victim, attacker)) + return; + + var executionTime = (1.0f / Comp(weapon).AttackRate) * MeleeExecutionTimeModifier; + + if (attacker == victim) + { + ShowExecutionPopup("suicide-popup-melee-initial-internal", Filter.Entities(attacker), PopupType.Medium, attacker, victim, weapon); + ShowExecutionPopup("suicide-popup-melee-initial-external", Filter.PvsExcept(attacker), PopupType.MediumCaution, attacker, victim, weapon); + } + else + { + ShowExecutionPopup("execution-popup-melee-initial-internal", Filter.Entities(attacker), PopupType.Medium, attacker, victim, weapon); + ShowExecutionPopup("execution-popup-melee-initial-external", Filter.PvsExcept(attacker), PopupType.MediumCaution, attacker, victim, weapon); + } + + var doAfter = + new DoAfterArgs(EntityManager, attacker, executionTime, new ExecutionDoAfterEvent(), weapon, target: victim, used: weapon) + { + BreakOnTargetMove = true, + BreakOnUserMove = true, + BreakOnDamage = true, + NeedHand = true + }; + + _doAfterSystem.TryStartDoAfter(doAfter); + } + + private void TryStartGunExecutionDoafter(EntityUid weapon, EntityUid victim, EntityUid attacker) + { + if (!CanExecuteWithGun(weapon, victim, attacker)) + return; + + if (attacker == victim) + { + ShowExecutionPopup("suicide-popup-gun-initial-internal", Filter.Entities(attacker), PopupType.Medium, attacker, victim, weapon); + ShowExecutionPopup("suicide-popup-gun-initial-external", Filter.PvsExcept(attacker), PopupType.MediumCaution, attacker, victim, weapon); + } + else + { + ShowExecutionPopup("execution-popup-gun-initial-internal", Filter.Entities(attacker), PopupType.Medium, attacker, victim, weapon); + ShowExecutionPopup("execution-popup-gun-initial-external", Filter.PvsExcept(attacker), PopupType.MediumCaution, attacker, victim, weapon); + } + + var doAfter = + new DoAfterArgs(EntityManager, attacker, GunExecutionTime, new ExecutionDoAfterEvent(), weapon, target: victim, used: weapon) + { + BreakOnTargetMove = true, + BreakOnUserMove = true, + BreakOnDamage = true, + NeedHand = true + }; + + _doAfterSystem.TryStartDoAfter(doAfter); + } + + private bool OnDoafterChecks(EntityUid uid, DoAfterEvent args) + { + if (args.Handled || args.Cancelled || args.Used == null || args.Target == null) + return false; + + if (!CanExecuteWithAny(args.Used.Value, args.Target.Value, uid)) + return false; + + // All checks passed + return true; + } + + private void OnDoafterMelee(EntityUid uid, SharpComponent component, DoAfterEvent args) + { + if (args.Handled || args.Cancelled || args.Used == null || args.Target == null) + return; + + var attacker = args.User; + var victim = args.Target!.Value; + var weapon = args.Used!.Value; + + if (!CanExecuteWithMelee(weapon, victim, attacker)) return; + + if (!TryComp(weapon, out var melee) && melee!.Damage.GetTotal() > 0.0f) + return; + + _damageableSystem.TryChangeDamage(victim, melee.Damage * DamageModifier, true); + _audioSystem.PlayEntity(melee.HitSound, Filter.Pvs(weapon), weapon, true, AudioParams.Default); + + if (attacker == victim) + { + ShowExecutionPopup("suicide-popup-melee-complete-internal", Filter.Entities(attacker), PopupType.Medium, attacker, victim, weapon); + ShowExecutionPopup("suicide-popup-melee-complete-external", Filter.PvsExcept(attacker), PopupType.MediumCaution, attacker, victim, weapon); + } + else + { + ShowExecutionPopup("execution-popup-melee-complete-internal", Filter.Entities(attacker), PopupType.Medium, attacker, victim, weapon); + ShowExecutionPopup("execution-popup-melee-complete-external", Filter.PvsExcept(attacker), PopupType.MediumCaution, attacker, victim, weapon); + } + } + + // TODO: This repeats a lot of the code of the serverside GunSystem, make it not do that + private void OnDoafterGun(EntityUid uid, GunComponent component, DoAfterEvent args) + { + if (args.Handled || args.Cancelled || args.Used == null || args.Target == null) + return; + + var attacker = args.User; + var weapon = args.Used!.Value; + var victim = args.Target!.Value; + + if (!CanExecuteWithGun(weapon, victim, attacker)) return; + + // Check if any systems want to block our shot + var prevention = new ShotAttemptedEvent + { + User = attacker, + Used = weapon + }; + + RaiseLocalEvent(weapon, ref prevention); + if (prevention.Cancelled) + return; + + RaiseLocalEvent(attacker, ref prevention); + if (prevention.Cancelled) + return; + + // Not sure what this is for but gunsystem uses it so ehhh + var attemptEv = new AttemptShootEvent(attacker, null); + RaiseLocalEvent(weapon, ref attemptEv); + + if (attemptEv.Cancelled) + { + if (attemptEv.Message != null) + { + _popupSystem.PopupClient(attemptEv.Message, weapon, attacker); + return; + } + } + + // Take some ammunition for the shot (one bullet) + var fromCoordinates = Transform(attacker).Coordinates; + var ev = new TakeAmmoEvent(1, new List<(EntityUid? Entity, IShootable Shootable)>(), fromCoordinates, attacker); + RaiseLocalEvent(weapon, ev); + + // Check if there's any ammo left + if (ev.Ammo.Count <= 0) + { + _audioSystem.PlayEntity(component.SoundEmpty, Filter.Pvs(weapon), weapon, true, AudioParams.Default); + ShowExecutionPopup("execution-popup-gun-empty", Filter.Pvs(weapon), PopupType.Medium, attacker, victim, weapon); + return; + } + + // Information about the ammo like damage + DamageSpecifier damage = new DamageSpecifier(); + + // Get some information from IShootable + var ammoUid = ev.Ammo[0].Entity; + switch (ev.Ammo[0].Shootable) + { + case CartridgeAmmoComponent cartridge: + // Get the damage value + var prototype = _prototypeManager.Index(cartridge.Prototype); + prototype.TryGetComponent(out var projectileA, _componentFactory); // sloth forgive me + if (projectileA != null) + { + damage = projectileA.Damage * cartridge.Count; + } + + // Expend the cartridge + cartridge.Spent = true; + _appearanceSystem.SetData(ammoUid!.Value, AmmoVisuals.Spent, true); + Dirty(ammoUid.Value, cartridge); + + break; + + case AmmoComponent newAmmo: + TryComp(ammoUid, out var projectileB); + if (projectileB != null) + { + damage = projectileB.Damage; + } + Del(ammoUid); + break; + + case HitscanPrototype hitscan: + damage = hitscan.Damage!; + break; + + default: + throw new ArgumentOutOfRangeException(); + } + + // Clumsy people have a chance to shoot themselves + if (TryComp(attacker, out var clumsy) && component.ClumsyProof == false) + { + if (_interactionSystem.TryRollClumsy(attacker, 0.33333333f, clumsy)) + { + ShowExecutionPopup("execution-popup-gun-clumsy-internal", Filter.Entities(attacker), PopupType.Medium, attacker, victim, weapon); + ShowExecutionPopup("execution-popup-gun-clumsy-external", Filter.PvsExcept(attacker), PopupType.MediumCaution, attacker, victim, weapon); + + // You shoot yourself with the gun (no damage multiplier) + _damageableSystem.TryChangeDamage(attacker, damage, origin: attacker); + _audioSystem.PlayEntity(component.SoundGunshot, Filter.Pvs(weapon), weapon, true, AudioParams.Default); + return; + } + } + + // Gun successfully fired, deal damage + _damageableSystem.TryChangeDamage(victim, damage * DamageModifier, true); + _audioSystem.PlayEntity(component.SoundGunshot, Filter.Pvs(weapon), weapon, false, AudioParams.Default); + + // Popups + if (attacker != victim) + { + ShowExecutionPopup("execution-popup-gun-complete-internal", Filter.Entities(attacker), PopupType.Medium, attacker, victim, weapon); + ShowExecutionPopup("execution-popup-gun-complete-external", Filter.PvsExcept(attacker), PopupType.LargeCaution, attacker, victim, weapon); + } + else + { + ShowExecutionPopup("suicide-popup-gun-complete-internal", Filter.Entities(attacker), PopupType.LargeCaution, attacker, victim, weapon); + ShowExecutionPopup("suicide-popup-gun-complete-external", Filter.PvsExcept(attacker), PopupType.LargeCaution, attacker, victim, weapon); + } + } + + private void ShowExecutionPopup(string locString, Filter filter, PopupType type, + EntityUid attacker, EntityUid victim, EntityUid weapon) + { + _popupSystem.PopupEntity(Loc.GetString( + locString, ("attacker", attacker), ("victim", victim), ("weapon", weapon)), + attacker, filter, true, type); + } +} \ No newline at end of file diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index 800a65155a8..b745ee5cf34 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -261,10 +261,11 @@ public void QueueExplosion(EntityUid uid, { var pos = Transform(uid); + var mapPos = _transformSystem.GetMapCoordinates(pos); - var coordinates = _transformSystem.GetMapCoordinates(pos); + var posFound = _transformSystem.TryGetMapOrGridCoordinates(uid, out var gridPos, pos); - QueueExplosion(coordinates, typeId, totalIntensity, slope, maxTileIntensity, tileBreakScale, maxTileBreak, canCreateVacuum, addLog: false); + QueueExplosion(mapPos, typeId, totalIntensity, slope, maxTileIntensity, tileBreakScale, maxTileBreak, canCreateVacuum, addLog: false); if (!addLog) return; @@ -272,15 +273,15 @@ public void QueueExplosion(EntityUid uid, if (user == null) { _adminLogger.Add(LogType.Explosion, LogImpact.High, - $"{ToPrettyString(uid):entity} exploded ({typeId}) at {coordinates:coordinates} with intensity {totalIntensity} slope {slope}"); + $"{ToPrettyString(uid):entity} exploded ({typeId}) at Pos:{(posFound ? $"{gridPos:coordinates}" : "[Grid or Map not found]")} with intensity {totalIntensity} slope {slope}"); } else { _adminLogger.Add(LogType.Explosion, LogImpact.High, - $"{ToPrettyString(user.Value):user} caused {ToPrettyString(uid):entity} to explode ({typeId}) at {coordinates:coordinates} with intensity {totalIntensity} slope {slope}"); + $"{ToPrettyString(user.Value):user} caused {ToPrettyString(uid):entity} to explode ({typeId}) at Pos:{(posFound ? $"{gridPos:coordinates}" : "[Grid or Map not found]")} with intensity {totalIntensity} slope {slope}"); var alertMinExplosionIntensity = _cfg.GetCVar(CCVars.AdminAlertExplosionMinIntensity); if (alertMinExplosionIntensity > -1 && totalIntensity >= alertMinExplosionIntensity) - _chat.SendAdminAlert(user.Value, $"caused {ToPrettyString(uid)} to explode ({typeId}:{totalIntensity}) at {coordinates:coordinates}"); + _chat.SendAdminAlert(user.Value, $"caused {ToPrettyString(uid)} to explode ({typeId}:{totalIntensity}) at Pos:{(posFound ? $"{gridPos:coordinates}" : "[Grid or Map not found]")}"); } } diff --git a/Content.Server/Eye/Blinding/EyeProtection/EyeProtectionSystem.cs b/Content.Server/Eye/Blinding/EyeProtection/EyeProtectionSystem.cs index 2fae9dd3c32..24ee2b71541 100644 --- a/Content.Server/Eye/Blinding/EyeProtection/EyeProtectionSystem.cs +++ b/Content.Server/Eye/Blinding/EyeProtection/EyeProtectionSystem.cs @@ -60,7 +60,7 @@ private void OnUseAttempt(EntityUid uid, RequiresEyeProtectionComponent componen } private void OnWelderToggled(EntityUid uid, RequiresEyeProtectionComponent component, ItemToggledEvent args) { - component.Toggled = _itemToggle.IsActivated(uid); + component.Toggled = args.Activated; } } } diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index fe4825c8a24..93e10effea8 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -249,7 +249,7 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact EntityManager.AddComponent(mob); } - _stationJobs.TryAssignJob(station, jobPrototype); + _stationJobs.TryAssignJob(station, jobPrototype, player.UserId); if (lateJoin) _adminLogger.Add(LogType.LateJoin, LogImpact.Medium, $"Player {player.Name} late joined as {character.Name:characterName} on station {Name(station):stationName} with {ToPrettyString(mob):entity} as a {jobName:jobName}."); diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 26125a6da75..dce144901f3 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -238,6 +238,7 @@ public bool MakeTraitor(ICommonSession traitor, bool giveUplink = true, bool giv var maxDifficulty = _cfg.GetCVar(CCVars.TraitorMaxDifficulty); var maxPicks = _cfg.GetCVar(CCVars.TraitorMaxPicks); var difficulty = 0f; + Log.Debug($"Attempting {maxPicks} objective picks with {maxDifficulty} difficulty"); for (var pick = 0; pick < maxPicks && maxDifficulty > difficulty; pick++) { var objective = _objectives.GetRandomObjective(mindId, mind, "TraitorObjectiveGroups"); @@ -245,7 +246,9 @@ public bool MakeTraitor(ICommonSession traitor, bool giveUplink = true, bool giv continue; _mindSystem.AddObjective(mindId, mind, objective.Value); - difficulty += Comp(objective.Value).Difficulty; + var adding = Comp(objective.Value).Difficulty; + difficulty += adding; + Log.Debug($"Added objective {ToPrettyString(objective):objective} with {adding} difficulty"); } } diff --git a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs index e4766b4ab95..acb6116e9ae 100644 --- a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs @@ -20,6 +20,8 @@ using Robust.Shared.Containers; using Robust.Shared.Timing; using System.Linq; +using Content.Server.Jittering; +using Content.Shared.Jittering; namespace Content.Server.Kitchen.EntitySystems { @@ -36,11 +38,14 @@ internal sealed class ReagentGrinderSystem : EntitySystem [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly RandomHelperSystem _randomHelper = default!; + [Dependency] private readonly JitteringSystem _jitter = default!; public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnActiveGrinderStart); + SubscribeLocalEvent(OnActiveGrinderRemove); SubscribeLocalEvent((uid, _, _) => UpdateUiState(uid)); SubscribeLocalEvent((EntityUid uid, ReagentGrinderComponent _, ref PowerChangedEvent _) => UpdateUiState(uid)); SubscribeLocalEvent(OnInteractUsing); @@ -119,6 +124,16 @@ public override void Update(float frameTime) } } + private void OnActiveGrinderStart(Entity ent, ref ComponentStartup args) + { + _jitter.AddJitter(ent, -10, 100); + } + + private void OnActiveGrinderRemove(Entity ent, ref ComponentRemove args) + { + RemComp(ent); + } + private void OnEntRemoveAttempt(Entity entity, ref ContainerIsRemovingAttemptEvent args) { if (HasComp(entity)) diff --git a/Content.Server/Nutrition/Components/FoodComponent.cs b/Content.Server/Nutrition/Components/FoodComponent.cs index c7f90ccff1d..dbc89d5a449 100644 --- a/Content.Server/Nutrition/Components/FoodComponent.cs +++ b/Content.Server/Nutrition/Components/FoodComponent.cs @@ -13,7 +13,7 @@ public sealed partial class FoodComponent : Component public string Solution = "food"; [DataField] - public SoundSpecifier UseSound = new SoundPathSpecifier("/Audio/Items/eatfood.ogg"); + public SoundSpecifier UseSound = new SoundCollectionSpecifier("eating"); [DataField] public EntProtoId? Trash; diff --git a/Content.Server/Nutrition/EntitySystems/OpenableSystem.cs b/Content.Server/Nutrition/EntitySystems/OpenableSystem.cs index fbe617eff49..d7b7da25b88 100644 --- a/Content.Server/Nutrition/EntitySystems/OpenableSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/OpenableSystem.cs @@ -118,7 +118,7 @@ public void UpdateAppearance(EntityUid uid, OpenableComponent? comp = null, Appe /// public void SetOpen(EntityUid uid, bool opened = true, OpenableComponent? comp = null) { - if (!Resolve(uid, ref comp) || opened == comp.Opened) + if (!Resolve(uid, ref comp, false) || opened == comp.Opened) return; comp.Opened = opened; @@ -132,7 +132,7 @@ public void SetOpen(EntityUid uid, bool opened = true, OpenableComponent? comp = /// Whether it got opened public bool TryOpen(EntityUid uid, OpenableComponent? comp = null) { - if (!Resolve(uid, ref comp) || comp.Opened) + if (!Resolve(uid, ref comp, false) || comp.Opened) return false; SetOpen(uid, true, comp); diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs index 5d1fe9a89d6..9cfd97a3e68 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs @@ -174,7 +174,11 @@ public bool IsAllowed(ICommonSession player, string role) } // end-bakcmen: whitelist - var playTimes = _tracking.GetTrackerTimes(player); + if (!_tracking.TryGetTrackerTimes(player, out var playTimes)) + { + Log.Error($"Unable to check playtimes {Environment.StackTrace}"); + playTimes = new Dictionary(); + } return JobRequirements.TryRequirementsMet(job, playTimes, out _, EntityManager, _prototypes); } @@ -185,7 +189,11 @@ public HashSet GetDisallowedJobs(ICommonSession player) if (!_cfg.GetCVar(CCVars.GameRoleTimers)) return roles; - var playTimes = _tracking.GetTrackerTimes(player); + if (!_tracking.TryGetTrackerTimes(player, out var playTimes)) + { + Log.Error($"Unable to check playtimes {Environment.StackTrace}"); + playTimes = new Dictionary(); + } foreach (var job in _prototypes.EnumeratePrototypes()) { @@ -212,7 +220,7 @@ public void RemoveDisallowedJobs(NetUserId userId, ref List jobs) if (!_cfg.GetCVar(CCVars.GameRoleTimers)) return; - var player = _playerManager.GetSessionByUserId(userId); + var player = _playerManager.GetSessionById(userId); if (!_tracking.TryGetTrackerTimes(player, out var playTimes)) { // Sorry mate but your playtimes haven't loaded. diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs index 8c6b84ec047..85feaf2b831 100644 --- a/Content.Server/Projectiles/ProjectileSystem.cs +++ b/Content.Server/Projectiles/ProjectileSystem.cs @@ -5,9 +5,7 @@ using Content.Shared.Damage; using Content.Shared.Database; 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; @@ -71,17 +69,11 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St component.DamagedEntity = true; - if (component.CanPenetrate) - { - component.DamagedEntity = false; + var afterProjectileHitEvent = new AfterProjectileHitEvent(component.Damage, target, args.OtherFixture); + RaiseLocalEvent(uid, ref afterProjectileHitEvent); - if (component.DeleteOnCollide && !HasComp(target)) - QueueDel(uid); - } - else if (component.DeleteOnCollide) - { + if (component.DeleteOnCollide) QueueDel(uid); - } if (component.ImpactEffect != null && TryComp(uid, out var xform)) { diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index 636470e2e5f..2602e9392ec 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -700,7 +700,7 @@ private void Smimsh(EntityUid uid, FixturesComponent? manager = null, MapGridCom return; // Flatten anything not parented to a grid. - var transform = _physics.GetPhysicsTransform(uid, xform, _xformQuery); + var transform = _physics.GetPhysicsTransform(uid, xform); var aabbs = new List(manager.Fixtures.Count); var immune = new HashSet(); var tileSet = new List<(Vector2i, Tile)>(); diff --git a/Content.Server/Shuttles/Systems/ShuttleTimerSystem.cs b/Content.Server/Shuttles/Systems/ShuttleTimerSystem.cs index b65009f6e22..9a098cd17ac 100644 --- a/Content.Server/Shuttles/Systems/ShuttleTimerSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleTimerSystem.cs @@ -38,7 +38,7 @@ private void OnPacketReceived(EntityUid uid, ShuttleTimerComponent component, De args.Data.TryGetValue(ShuttleTimerMasks.SourceMap, out EntityUid? source); args.Data.TryGetValue(ShuttleTimerMasks.DestMap, out EntityUid? dest); args.Data.TryGetValue(ShuttleTimerMasks.Docked, out bool docked); - string?[] text = new string?[] { docked ? "ETD" : "ETA" }; + string?[] text = new string?[] { docked ? Loc.GetString("shuttle-timer-etd") : Loc.GetString("shuttle-timer-eta")}; switch (timerXform.MapUid) { @@ -51,7 +51,7 @@ private void OnPacketReceived(EntityUid uid, ShuttleTimerComponent component, De break; case var remote when remote == dest: key = ShuttleTimerMasks.DestTime; - text = new string?[] { "ETA" }; + text = new string?[] { Loc.GetString("shuttle-timer-eta") }; break; default: return; diff --git a/Content.Server/Spawners/Components/ContainerSpawnPointComponent.cs b/Content.Server/Spawners/Components/ContainerSpawnPointComponent.cs new file mode 100644 index 00000000000..9782becc271 --- /dev/null +++ b/Content.Server/Spawners/Components/ContainerSpawnPointComponent.cs @@ -0,0 +1,30 @@ +using Content.Server.Spawners.EntitySystems; + +namespace Content.Server.Spawners.Components; + +/// +/// A spawn point that spawns a player into a target container rather than simply spawning them at a position. +/// Occurs before regular spawn points but after arrivals. +/// +[RegisterComponent] +[Access(typeof(ContainerSpawnPointSystem))] +public sealed partial class ContainerSpawnPointComponent : Component +{ + /// + /// The ID of the container that this entity will spawn players into + /// + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] + public string ContainerId = string.Empty; + + /// + /// An optional job specifier + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public string? Job; + + /// + /// The type of spawn point + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public SpawnPointType SpawnType = SpawnPointType.Unset; +} diff --git a/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs b/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs new file mode 100644 index 00000000000..15c4031d585 --- /dev/null +++ b/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs @@ -0,0 +1,85 @@ +using Content.Server.GameTicking; +using Content.Server.Shuttles.Systems; +using Content.Server.Spawners.Components; +using Content.Server.Station.Systems; +using Robust.Server.Containers; +using Robust.Shared.Containers; +using Robust.Shared.Random; + +namespace Content.Server.Spawners.EntitySystems; + +public sealed class ContainerSpawnPointSystem : EntitySystem +{ + [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ContainerSystem _container = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly StationSpawningSystem _stationSpawning = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnSpawnPlayer, before: new[] { typeof(SpawnPointSystem), typeof(ArrivalsSystem) }); + } + + private void OnSpawnPlayer(PlayerSpawningEvent args) + { + if (args.SpawnResult != null) + return; + + var query = EntityQueryEnumerator(); + var possibleContainers = new List>(); + + while (query.MoveNext(out var uid, out var spawnPoint, out var container, out var xform)) + { + if (args.Station != null && _station.GetOwningStation(uid, xform) != args.Station) + continue; + + // If it's unset, then we allow it to be used for both roundstart and midround joins + if (spawnPoint.SpawnType == SpawnPointType.Unset) + { + // make sure we also check the job here for various reasons. + if (spawnPoint.Job == null || spawnPoint.Job == args.Job?.Prototype) + possibleContainers.Add((uid, spawnPoint, container, xform)); + continue; + } + + if (_gameTicker.RunLevel == GameRunLevel.InRound && spawnPoint.SpawnType == SpawnPointType.LateJoin) + { + possibleContainers.Add((uid, spawnPoint, container, xform)); + } + + if (_gameTicker.RunLevel != GameRunLevel.InRound && + spawnPoint.SpawnType == SpawnPointType.Job && + (args.Job == null || spawnPoint.Job == args.Job.Prototype)) + { + possibleContainers.Add((uid, spawnPoint, container, xform)); + } + } + + if (possibleContainers.Count == 0) + return; + // we just need some default coords so we can spawn the player entity. + var baseCoords = possibleContainers[0].Comp3.Coordinates; + + args.SpawnResult = _stationSpawning.SpawnPlayerMob( + baseCoords, + args.Job, + args.HumanoidCharacterProfile, + args.Station); + + _random.Shuffle(possibleContainers); + foreach (var (uid, spawnPoint, manager, xform) in possibleContainers) + { + if (!_container.TryGetContainer(uid, spawnPoint.ContainerId, out var container, manager)) + continue; + + if (!_container.Insert(args.SpawnResult.Value, container, containerXform: xform)) + continue; + + return; + } + + Del(args.SpawnResult); + args.SpawnResult = null; + } +} diff --git a/Content.Server/Station/Components/StationJobsComponent.cs b/Content.Server/Station/Components/StationJobsComponent.cs index 677600df7e6..74399bf412d 100644 --- a/Content.Server/Station/Components/StationJobsComponent.cs +++ b/Content.Server/Station/Components/StationJobsComponent.cs @@ -1,6 +1,8 @@ using Content.Server.Station.Systems; using Content.Shared.Roles; using JetBrains.Annotations; +using Robust.Shared.Network; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; @@ -75,6 +77,13 @@ public sealed partial class StationJobsComponent : Component [DataField("overflowJobs", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] public HashSet OverflowJobs = new(); + /// + /// A dictionary relating a NetUserId to the jobs they have on station. + /// An OOC way to track where job slots have gone. + /// + [DataField] + public Dictionary>> PlayerJobs = new(); + [DataField("availableJobs", required: true, customTypeSerializer: typeof(PrototypeIdDictionarySerializer, JobPrototype>))] public Dictionary> SetupAvailableJobs = default!; diff --git a/Content.Server/Station/Systems/StationJobsSystem.cs b/Content.Server/Station/Systems/StationJobsSystem.cs index eeaace03b2c..c13df410a08 100644 --- a/Content.Server/Station/Systems/StationJobsSystem.cs +++ b/Content.Server/Station/Systems/StationJobsSystem.cs @@ -9,7 +9,9 @@ using JetBrains.Annotations; using Robust.Server.Player; using Robust.Shared.Configuration; +using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Server.Station.Systems; @@ -84,13 +86,14 @@ private void OnStationInitialized(StationInitializedEvent msg) #region Public API - /// + /// /// Station to assign a job on. /// Job to assign. + /// The net user ID of the player we're assigning this job to. /// Resolve pattern, station jobs component of the station. - public bool TryAssignJob(EntityUid station, JobPrototype job, StationJobsComponent? stationJobs = null) + public bool TryAssignJob(EntityUid station, JobPrototype job, NetUserId netUserId, StationJobsComponent? stationJobs = null) { - return TryAssignJob(station, job.ID, stationJobs); + return TryAssignJob(station, job.ID, netUserId, stationJobs); } /// @@ -98,12 +101,21 @@ public bool TryAssignJob(EntityUid station, JobPrototype job, StationJobsCompone /// /// Station to assign a job on. /// Job prototype ID to assign. + /// The net user ID of the player we're assigning this job to. /// Resolve pattern, station jobs component of the station. /// Whether or not assignment was a success. /// Thrown when the given station is not a station. - public bool TryAssignJob(EntityUid station, string jobPrototypeId, StationJobsComponent? stationJobs = null) + public bool TryAssignJob(EntityUid station, string jobPrototypeId, NetUserId netUserId, StationJobsComponent? stationJobs = null) { - return TryAdjustJobSlot(station, jobPrototypeId, -1, false, false, stationJobs); + if (!Resolve(station, ref stationJobs, false)) + return false; + + if (!TryAdjustJobSlot(station, jobPrototypeId, -1, false, false, stationJobs)) + return false; + + stationJobs.PlayerJobs.TryAdd(netUserId, new()); + stationJobs.PlayerJobs[netUserId].Add(jobPrototypeId); + return true; } /// @@ -183,6 +195,28 @@ public bool TryAdjustJobSlot(EntityUid station, string jobPrototypeId, int amoun } } + public bool TryGetPlayerJobs(EntityUid station, + NetUserId userId, + [NotNullWhen(true)] out List>? jobs, + StationJobsComponent? jobsComponent = null) + { + jobs = null; + if (!Resolve(station, ref jobsComponent, false)) + return false; + + return jobsComponent.PlayerJobs.TryGetValue(userId, out jobs); + } + + public bool TryRemovePlayerJobs(EntityUid station, + NetUserId userId, + StationJobsComponent? jobsComponent = null) + { + if (!Resolve(station, ref jobsComponent, false)) + return false; + + return jobsComponent.PlayerJobs.Remove(userId); + } + /// /// Station to adjust the job slot on. /// Job prototype to adjust. diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs index 07096c59af6..949717676fc 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/ArtifactAnalyzerComponent.cs @@ -1,4 +1,4 @@ -using Content.Server.Xenoarchaeology.XenoArtifacts; +using Content.Server.Xenoarchaeology.XenoArtifacts; using Content.Shared.Construction.Prototypes; using Robust.Shared.Audio; using Robust.Shared.Serialization.TypeSerializers.Implementations; @@ -17,26 +17,7 @@ public sealed partial class ArtifactAnalyzerComponent : Component /// How long it takes to analyze an artifact /// [DataField("analysisDuration", customTypeSerializer: typeof(TimespanSerializer))] - public TimeSpan AnalysisDuration = TimeSpan.FromSeconds(60); - - /// - /// A mulitplier on the duration of analysis. - /// Used for machine upgrading. - /// - [ViewVariables(VVAccess.ReadWrite)] - public float AnalysisDurationMulitplier = 1; - - /// - /// The machine part that modifies analysis duration. - /// - [DataField("machinePartAnalysisDuration", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string MachinePartAnalysisDuration = "Manipulator"; - - /// - /// The modifier raised to the part rating to determine the duration multiplier. - /// - [DataField("partRatingAnalysisDurationMultiplier")] - public float PartRatingAnalysisDurationMultiplier = 0.75f; + public TimeSpan AnalysisDuration = TimeSpan.FromSeconds(30); /// /// The corresponding console entity. diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs index abb14fbc8d0..2f0b5459d91 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs @@ -51,8 +51,6 @@ public override void Initialize() SubscribeLocalEvent(OnAnalyzeEnd); SubscribeLocalEvent(OnPowerChanged); - SubscribeLocalEvent(OnUpgradeExamine); - SubscribeLocalEvent(OnRefreshParts); SubscribeLocalEvent(OnItemPlaced); SubscribeLocalEvent(OnItemRemoved); @@ -82,7 +80,7 @@ public override void Update(float frameTime) if (active.AnalysisPaused) continue; - if (_timing.CurTime - active.StartTime < scan.AnalysisDuration * scan.AnalysisDurationMulitplier - active.AccumulatedRunTime) + if (_timing.CurTime - active.StartTime < scan.AnalysisDuration - active.AccumulatedRunTime) continue; FinishScan(uid, scan, active); @@ -199,7 +197,7 @@ private void UpdateUserInterface(EntityUid uid, AnalysisConsoleComponent? compon { artifact = analyzer.LastAnalyzedArtifact; msg = GetArtifactScanMessage(analyzer); - totalTime = analyzer.AnalysisDuration * analyzer.AnalysisDurationMulitplier; + totalTime = analyzer.AnalysisDuration; if (TryComp(component.AnalyzerEntity, out var placer)) canScan = placer.PlacedEntities.Any(); canPrint = analyzer.ReadyToPrint; @@ -451,18 +449,6 @@ public void ResumeScan(EntityUid uid, ArtifactAnalyzerComponent? component = nul UpdateUserInterface(component.Console.Value); } - private void OnRefreshParts(EntityUid uid, ArtifactAnalyzerComponent component, RefreshPartsEvent args) - { - var analysisRating = args.PartRatings[component.MachinePartAnalysisDuration]; - - component.AnalysisDurationMulitplier = MathF.Pow(component.PartRatingAnalysisDurationMultiplier, analysisRating - 1); - } - - private void OnUpgradeExamine(EntityUid uid, ArtifactAnalyzerComponent component, UpgradeExamineEvent args) - { - args.AddPercentageUpgrade("analyzer-artifact-component-upgrade-analysis", component.AnalysisDurationMulitplier); - } - private void OnItemPlaced(EntityUid uid, ArtifactAnalyzerComponent component, ref ItemPlacedEvent args) { if (component.Console != null && Exists(component.Console)) diff --git a/Content.Shared/Access/Components/AccessReaderComponent.cs b/Content.Shared/Access/Components/AccessReaderComponent.cs index 5dd45b21c31..3f6c9e1c052 100644 --- a/Content.Shared/Access/Components/AccessReaderComponent.cs +++ b/Content.Shared/Access/Components/AccessReaderComponent.cs @@ -63,6 +63,12 @@ public sealed partial class AccessReaderComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite)] public int AccessLogLimit = 20; + + /// + /// Whether or not emag interactions have an effect on this. + /// + [DataField] + public bool BreakOnEmag = true; } [DataDefinition, Serializable, NetSerializable] diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index f630803446a..387ca8a0138 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -56,6 +56,7 @@ public WriteToTargetIdMessage(string fullName, string jobTitle, List acc "ChiefEngineer", "ChiefMedicalOfficer", "Command", + "Cryogenics", "Engineering", "External", "HeadOfPersonnel", diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs index c5bceb4899f..812a8e04870 100644 --- a/Content.Shared/Access/Systems/AccessReaderSystem.cs +++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs @@ -76,6 +76,8 @@ private void OnLinkAttempt(EntityUid uid, AccessReaderComponent component, LinkA private void OnEmagged(EntityUid uid, AccessReaderComponent reader, ref GotEmaggedEvent args) { + if (!reader.BreakOnEmag) + return; args.Handled = true; reader.Enabled = false; reader.AccessLog.Clear(); diff --git a/Content.Shared/Actions/ActionContainerSystem.cs b/Content.Shared/Actions/ActionContainerSystem.cs index 0fe2b83b115..17bcf11bff1 100644 --- a/Content.Shared/Actions/ActionContainerSystem.cs +++ b/Content.Shared/Actions/ActionContainerSystem.cs @@ -30,6 +30,7 @@ public override void Initialize() SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnEntityRemoved); SubscribeLocalEvent(OnEntityInserted); + SubscribeLocalEvent(OnActionAdded); SubscribeLocalEvent(OnMindAdded); SubscribeLocalEvent(OnMindRemoved); } @@ -38,7 +39,6 @@ private void OnMindAdded(EntityUid uid, ActionsContainerComponent component, Min { if(!_mind.TryGetMind(uid, out var mindId, out _)) return; - if (!TryComp(mindId, out var mindActionContainerComp)) return; @@ -174,6 +174,61 @@ public void TransferAllActions( DebugTools.AssertEqual(oldContainer.Container.Count, 0); } + /// + /// Transfers an actions from one container to another, while changing the attached entity. + /// + /// + /// This will actually remove and then re-grant the action. + /// Useful where you need to transfer from one container to another but also change the attached entity (ie spellbook > mind > user) + /// + public void TransferActionWithNewAttached( + EntityUid actionId, + EntityUid newContainer, + EntityUid newAttached, + BaseActionComponent? action = null, + ActionsContainerComponent? container = null) + { + if (!_actions.ResolveActionData(actionId, ref action)) + return; + + if (action.Container == newContainer) + return; + + var attached = newAttached; + if (!AddAction(newContainer, actionId, action, container)) + return; + + DebugTools.AssertEqual(action.Container, newContainer); + _actions.AddActionDirect(newAttached, actionId, action: action); + + DebugTools.AssertEqual(action.AttachedEntity, attached); + } + + /// + /// Transfers all actions from one container to another, while changing the attached entity. + /// + /// + /// This will actually remove and then re-grant the action. + /// Useful where you need to transfer from one container to another but also change the attached entity (ie spellbook > mind > user) + /// + public void TransferAllActionsWithNewAttached( + EntityUid from, + EntityUid to, + EntityUid newAttached, + ActionsContainerComponent? oldContainer = null, + ActionsContainerComponent? newContainer = null) + { + if (!Resolve(from, ref oldContainer) || !Resolve(to, ref newContainer)) + return; + + foreach (var action in oldContainer.Container.ContainedEntities.ToArray()) + { + TransferActionWithNewAttached(action, to, newAttached, container: newContainer); + } + + DebugTools.AssertEqual(oldContainer.Container.Count, 0); + } + /// /// Adds a pre-existing action to an action container. If the action is already in some container it will first remove it. /// @@ -281,6 +336,12 @@ private void OnEntityRemoved(EntityUid uid, ActionsContainerComponent component, RaiseLocalEvent(uid, ref ev); data.Container = null; } + + private void OnActionAdded(EntityUid uid, ActionsContainerComponent component, ActionAddedEvent args) + { + if (TryComp(uid, out var mindComp) && mindComp.OwnedEntity != null && HasComp(mindComp.OwnedEntity.Value)) + _actions.GrantContainedAction(mindComp.OwnedEntity.Value, uid, args.Action); + } } /// diff --git a/Content.Shared/Actions/ActionUpgradeComponent.cs b/Content.Shared/Actions/ActionUpgradeComponent.cs index 0d6a813526a..d12ce339c86 100644 --- a/Content.Shared/Actions/ActionUpgradeComponent.cs +++ b/Content.Shared/Actions/ActionUpgradeComponent.cs @@ -11,6 +11,7 @@ public sealed partial class ActionUpgradeComponent : Component /// /// Current Level of the action. /// + [ViewVariables] public int Level = 1; /// diff --git a/Content.Shared/Actions/ActionUpgradeSystem.cs b/Content.Shared/Actions/ActionUpgradeSystem.cs index f4897794930..b89b462814c 100644 --- a/Content.Shared/Actions/ActionUpgradeSystem.cs +++ b/Content.Shared/Actions/ActionUpgradeSystem.cs @@ -21,7 +21,7 @@ public override void Initialize() private void OnActionUpgradeEvent(EntityUid uid, ActionUpgradeComponent component, ActionUpgradeEvent args) { - if (!CanLevelUp(args.NewLevel, component.EffectedLevels, out var newActionProto) + if (!CanUpgrade(args.NewLevel, component.EffectedLevels, out var newActionProto) || !_actions.TryGetActionData(uid, out var actionComp)) return; @@ -56,8 +56,9 @@ private void OnActionUpgradeEvent(EntityUid uid, ActionUpgradeComponent componen _entityManager.DeleteEntity(uid); } - public bool TryUpgradeAction(EntityUid? actionId, ActionUpgradeComponent? actionUpgradeComponent = null, int newLevel = 0) + public bool TryUpgradeAction(EntityUid? actionId, out EntityUid? upgradeActionId, ActionUpgradeComponent? actionUpgradeComponent = null, int newLevel = 0) { + upgradeActionId = null; if (!TryGetActionUpgrade(actionId, out var actionUpgradeComp)) return false; @@ -68,48 +69,75 @@ public bool TryUpgradeAction(EntityUid? actionId, ActionUpgradeComponent? action if (newLevel < 1) newLevel = actionUpgradeComponent.Level + 1; - if (!CanLevelUp(newLevel, actionUpgradeComponent.EffectedLevels, out _)) + if (!CanLevelUp(newLevel, actionUpgradeComponent.EffectedLevels)) return false; - UpgradeAction(actionId, actionUpgradeComp); + actionUpgradeComponent.Level = newLevel; + + // If it can level up but can't upgrade, still return true and return current actionId as the upgradeId. + if (!CanUpgrade(newLevel, actionUpgradeComponent.EffectedLevels, out var newActionProto)) + { + upgradeActionId = actionId; + DebugTools.AssertNotNull(upgradeActionId); + return true; + } + + upgradeActionId = UpgradeAction(actionId, actionUpgradeComp, newActionProto, newLevel); + DebugTools.AssertNotNull(upgradeActionId); return true; } - // TODO: Add checks for branching upgrades - private bool CanLevelUp( - int newLevel, - Dictionary levelDict, - [NotNullWhen(true)]out EntProtoId? newLevelProto) + private bool CanLevelUp(int newLevel, Dictionary levelDict) { - newLevelProto = null; - if (levelDict.Count < 1) return false; var canLevel = false; var finalLevel = levelDict.Keys.ToList()[levelDict.Keys.Count - 1]; + foreach (var (level, proto) in levelDict) + { + if (newLevel > finalLevel) + continue; + + if ((newLevel <= finalLevel && newLevel != level) || newLevel == level) + { + canLevel = true; + break; + } + } + + return canLevel; + } + + private bool CanUpgrade(int newLevel, Dictionary levelDict, [NotNullWhen(true)]out EntProtoId? newLevelProto) + { + var canUpgrade = false; + newLevelProto = null; + + var finalLevel = levelDict.Keys.ToList()[levelDict.Keys.Count - 1]; + foreach (var (level, proto) in levelDict) { if (newLevel != level || newLevel > finalLevel) continue; - canLevel = true; + canUpgrade = true; newLevelProto = proto; DebugTools.AssertNotNull(newLevelProto); break; } - return canLevel; + return canUpgrade; } /// /// Raises a level by one /// - public void UpgradeAction(EntityUid? actionId, ActionUpgradeComponent? actionUpgradeComponent = null, int newLevel = 0) + public EntityUid? UpgradeAction(EntityUid? actionId, ActionUpgradeComponent? actionUpgradeComponent = null, EntProtoId? newActionProto = null, int newLevel = 0) { if (!TryGetActionUpgrade(actionId, out var actionUpgradeComp)) - return; + return null; actionUpgradeComponent ??= actionUpgradeComp; DebugTools.AssertNotNull(actionUpgradeComponent); @@ -118,7 +146,47 @@ public void UpgradeAction(EntityUid? actionId, ActionUpgradeComponent? actionUpg if (newLevel < 1) newLevel = actionUpgradeComponent.Level + 1; - RaiseActionUpgradeEvent(newLevel, actionId.Value); + actionUpgradeComponent.Level = newLevel; + // RaiseActionUpgradeEvent(newLevel, actionId.Value); + + if (!CanUpgrade(newLevel, actionUpgradeComponent.EffectedLevels, out var newActionPrototype) + || !_actions.TryGetActionData(actionId, out var actionComp)) + return null; + + newActionProto ??= newActionPrototype; + DebugTools.AssertNotNull(newActionProto); + + var originalContainer = actionComp.Container; + var originalAttachedEntity = actionComp.AttachedEntity; + + _actionContainer.RemoveAction(actionId.Value, actionComp); + + EntityUid? upgradedActionId = null; + if (originalContainer != null + && TryComp(originalContainer.Value, out var actionContainerComp)) + { + upgradedActionId = _actionContainer.AddAction(originalContainer.Value, newActionProto, actionContainerComp); + + if (originalAttachedEntity != null) + _actions.GrantContainedActions(originalAttachedEntity.Value, originalContainer.Value); + else + _actions.GrantContainedActions(originalContainer.Value, originalContainer.Value); + } + else if (originalAttachedEntity != null) + { + upgradedActionId = _actionContainer.AddAction(originalAttachedEntity.Value, newActionProto); + } + + if (!TryComp(upgradedActionId, out var upgradeComp)) + return null; + + upgradeComp.Level = newLevel; + + // TODO: Preserve ordering of actions + + _entityManager.DeleteEntity(actionId); + + return upgradedActionId.Value; } private void RaiseActionUpgradeEvent(int level, EntityUid actionId) diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 8abd2271d83..b9003be1c03 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -692,6 +692,24 @@ public void GrantContainedActions(Entity performer, Entity + /// Grants the provided action from the container to the target entity. If the target entity has no action + /// component, this will give them one. + /// + /// + /// + /// + public void GrantContainedAction(Entity performer, Entity container, EntityUid actionId) + { + if (!Resolve(container, ref container.Comp)) + return; + + performer.Comp ??= EnsureComp(performer); + + if (TryGetActionData(actionId, out var action)) + AddActionDirect(performer, actionId, performer.Comp, action); + } + public IEnumerable<(EntityUid Id, BaseActionComponent Comp)> GetActions(EntityUid holderId, ActionsComponent? actions = null) { if (!Resolve(holderId, ref actions, false)) @@ -724,6 +742,18 @@ public void RemoveProvidedActions(EntityUid performer, EntityUid container, Acti } } + /// + /// Removes a single provided action provided by another entity. + /// + public void RemoveProvidedAction(EntityUid performer, EntityUid container, EntityUid actionId, ActionsComponent? comp = null) + { + if (!Resolve(performer, ref comp, false) || !TryGetActionData(actionId, out var action)) + return; + + if (action.Container == container) + RemoveAction(performer, actionId, comp); + } + public void RemoveAction(EntityUid? actionId) { if (actionId == null) diff --git a/Content.Shared/Atmos/Rotting/PerishableComponent.cs b/Content.Shared/Atmos/Rotting/PerishableComponent.cs index 5a984c39fff..1c5c4bc4ae8 100644 --- a/Content.Shared/Atmos/Rotting/PerishableComponent.cs +++ b/Content.Shared/Atmos/Rotting/PerishableComponent.cs @@ -1,3 +1,4 @@ +using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Atmos.Rotting; @@ -6,39 +7,43 @@ namespace Content.Shared.Atmos.Rotting; /// This makes mobs eventually start rotting when they die. /// It may be expanded to food at some point, but it's just for mobs right now. /// -[RegisterComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedRottingSystem))] public sealed partial class PerishableComponent : Component { /// /// How long it takes after death to start rotting. /// - [DataField("rotAfter"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan RotAfter = TimeSpan.FromMinutes(10); /// /// How much rotting has occured /// - [DataField("rotAccumulator"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan RotAccumulator = TimeSpan.Zero; /// /// Gasses are released, this is when the next gas release update will be. /// - [DataField("rotNextUpdate", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] - public TimeSpan NextPerishUpdate = TimeSpan.Zero; + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan RotNextUpdate = TimeSpan.Zero; /// /// How often the rotting ticks. /// Feel free to tweak this if there are perf concerns. /// - [DataField("perishUpdateRate"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan PerishUpdateRate = TimeSpan.FromSeconds(5); /// /// How many moles of gas released per second, per unit of mass. /// - [DataField("molsPerSecondPerUnitMass"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float MolsPerSecondPerUnitMass = 0.0025f; + + [DataField, AutoNetworkedField] + public int Stage; } diff --git a/Content.Shared/Atmos/Rotting/RottingComponent.cs b/Content.Shared/Atmos/Rotting/RottingComponent.cs index 4314d22440a..d4ba79bb89c 100644 --- a/Content.Shared/Atmos/Rotting/RottingComponent.cs +++ b/Content.Shared/Atmos/Rotting/RottingComponent.cs @@ -6,38 +6,40 @@ namespace Content.Shared.Atmos.Rotting; /// /// Tracking component for stuff that has started to rot. +/// Only the current stage is networked to the client. /// [RegisterComponent, NetworkedComponent] +[Access(typeof(SharedRottingSystem))] public sealed partial class RottingComponent : Component { /// /// Whether or not the rotting should deal damage /// - [DataField("dealDamage"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool DealDamage = true; /// /// When the next check will happen for rot progression + effects like damage and ammonia /// - [DataField("nextRotUpdate", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan NextRotUpdate = TimeSpan.Zero; /// /// How long in between each rot update. /// - [DataField("rotUpdateRate"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan RotUpdateRate = TimeSpan.FromSeconds(5); /// /// How long has this thing been rotting? /// - [DataField("totalRotTime"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan TotalRotTime = TimeSpan.Zero; /// /// The damage dealt by rotting. /// - [DataField("damage")] + [DataField] public DamageSpecifier Damage = new() { DamageDict = new() diff --git a/Content.Shared/Atmos/Rotting/SharedRottingSystem.cs b/Content.Shared/Atmos/Rotting/SharedRottingSystem.cs new file mode 100644 index 00000000000..e3db3fd5bc0 --- /dev/null +++ b/Content.Shared/Atmos/Rotting/SharedRottingSystem.cs @@ -0,0 +1,39 @@ +using Content.Shared.Examine; +using Content.Shared.IdentityManagement; + +namespace Content.Shared.Atmos.Rotting; + +public abstract class SharedRottingSystem : EntitySystem +{ + public const int MaxStages = 3; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamined); + } + + /// + /// Return the rot stage, usually from 0 to 2 inclusive. + /// + public int RotStage(EntityUid uid, RottingComponent? comp = null, PerishableComponent? perishable = null) + { + if (!Resolve(uid, ref comp, ref perishable)) + return 0; + + return (int) (comp.TotalRotTime.TotalSeconds / perishable.RotAfter.TotalSeconds); + } + + private void OnExamined(EntityUid uid, RottingComponent component, ExaminedEvent args) + { + var stage = RotStage(uid, component); + var description = stage switch + { + >= 2 => "rotting-extremely-bloated", + >= 1 => "rotting-bloated", + _ => "rotting-rotting" + }; + args.PushMarkup(Loc.GetString(description, ("target", Identity.Entity(uid, EntityManager)))); + } +} diff --git a/Content.Shared/Bed/Cryostorage/CryostorageComponent.cs b/Content.Shared/Bed/Cryostorage/CryostorageComponent.cs new file mode 100644 index 00000000000..48f451d6bb8 --- /dev/null +++ b/Content.Shared/Bed/Cryostorage/CryostorageComponent.cs @@ -0,0 +1,114 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Bed.Cryostorage; + +/// +/// This is used for a container which, when a player logs out while inside of, +/// will delete their body and redistribute their items. +/// +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] +public sealed partial class CryostorageComponent : Component +{ + [DataField, ViewVariables(VVAccess.ReadWrite)] + public string ContainerId = "storage"; + + /// + /// How long a player can remain inside Cryostorage before automatically being taken care of, given that they have no mind. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public TimeSpan NoMindGracePeriod = TimeSpan.FromSeconds(30f); + + /// + /// How long a player can remain inside Cryostorage before automatically being taken care of. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public TimeSpan GracePeriod = TimeSpan.FromMinutes(5f); + + /// + /// A list of players who have actively entered cryostorage. + /// + [DataField] + [AutoNetworkedField] + public List StoredPlayers = new(); + + /// + /// Sound that is played when a player is removed by a cryostorage. + /// + [DataField] + public SoundSpecifier? RemoveSound = new SoundPathSpecifier("/Audio/Effects/teleport_departure.ogg"); +} + +[Serializable, NetSerializable] +public enum CryostorageVisuals : byte +{ + Full +} + +[Serializable, NetSerializable] +public record struct CryostorageContainedPlayerData() +{ + /// + /// The player's IC name + /// + public string PlayerName = string.Empty; + + /// + /// The player's entity + /// + public NetEntity PlayerEnt = NetEntity.Invalid; + + /// + /// A dictionary relating a slot definition name to the name of the item inside of it. + /// + public Dictionary ItemSlots = new(); + + /// + /// A dictionary relating a hand ID to the hand name and the name of the item being held. + /// + public Dictionary HeldItems = new(); +} + +[Serializable, NetSerializable] +public sealed class CryostorageBuiState : BoundUserInterfaceState +{ + public List PlayerData; + + public CryostorageBuiState(List playerData) + { + PlayerData = playerData; + } +} + +[Serializable, NetSerializable] +public sealed class CryostorageRemoveItemBuiMessage : BoundUserInterfaceMessage +{ + public NetEntity StoredEntity; + + public string Key; + + public RemovalType Type; + + public enum RemovalType : byte + { + Hand, + Inventory + } + + public CryostorageRemoveItemBuiMessage(NetEntity storedEntity, string key, RemovalType type) + { + StoredEntity = storedEntity; + Key = key; + Type = type; + } +} + +[Serializable, NetSerializable] +public enum CryostorageUIKey : byte +{ + Key +} diff --git a/Content.Shared/Bed/Cryostorage/CryostorageContainedComponent.cs b/Content.Shared/Bed/Cryostorage/CryostorageContainedComponent.cs new file mode 100644 index 00000000000..5ab639bd3c1 --- /dev/null +++ b/Content.Shared/Bed/Cryostorage/CryostorageContainedComponent.cs @@ -0,0 +1,35 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Network; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Bed.Cryostorage; + +/// +/// This is used to track an entity that is currently being held in Cryostorage. +/// +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] +public sealed partial class CryostorageContainedComponent : Component +{ + /// + /// If true, the player's mind won't be removed from their body when they are moved into cryosleep + /// allowing them to rejoin later. + /// + [DataField] + public bool AllowReEnteringBody; + + /// + /// The time at which the cryostorage grace period ends. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public TimeSpan? GracePeriodEndTime; + + /// + /// The cryostorage this entity is 'stored' in. + /// + [DataField, AutoNetworkedField] + public EntityUid? Cryostorage; + + [DataField] + public NetUserId? UserId; +} diff --git a/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs b/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs new file mode 100644 index 00000000000..14a76ee45c0 --- /dev/null +++ b/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs @@ -0,0 +1,187 @@ +using Content.Shared.Administration.Logs; +using Content.Shared.CCVar; +using Content.Shared.DragDrop; +using Content.Shared.GameTicking; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; +using Robust.Shared.Configuration; +using Robust.Shared.Containers; +using Robust.Shared.Map; +using Robust.Shared.Timing; + +namespace Content.Shared.Bed.Cryostorage; + +/// +/// This handles +/// +public abstract class SharedCryostorageSystem : EntitySystem +{ + [Dependency] protected readonly ISharedAdminLogManager AdminLog = default!; + [Dependency] private readonly IConfigurationManager _configuration = default!; + [Dependency] protected readonly IGameTiming Timing = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] protected readonly SharedMindSystem Mind = default!; + + protected EntityUid? PausedMap { get; private set; } + + protected bool CryoSleepRejoiningEnabled; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnInsertedContainer); + SubscribeLocalEvent(OnRemovedContainer); + SubscribeLocalEvent(OnInsertAttempt); + SubscribeLocalEvent(OnShutdownContainer); + SubscribeLocalEvent(OnCanDropTarget); + + SubscribeLocalEvent(OnRemovedContained); + SubscribeLocalEvent(OnUnpaused); + SubscribeLocalEvent(OnShutdownContained); + + SubscribeLocalEvent(OnRoundRestart); + + _configuration.OnValueChanged(CCVars.GameCryoSleepRejoining, OnCvarChanged, true); + } + + public override void Shutdown() + { + base.Shutdown(); + + _configuration.UnsubValueChanged(CCVars.GameCryoSleepRejoining, OnCvarChanged); + } + + private void OnCvarChanged(bool value) + { + CryoSleepRejoiningEnabled = value; + } + + protected virtual void OnInsertedContainer(Entity ent, ref EntInsertedIntoContainerMessage args) + { + var (_, comp) = ent; + if (args.Container.ID != comp.ContainerId) + return; + + _appearance.SetData(ent, CryostorageVisuals.Full, true); + if (!Timing.IsFirstTimePredicted) + return; + + var containedComp = EnsureComp(args.Entity); + var delay = Mind.TryGetMind(args.Entity, out _, out _) ? comp.GracePeriod : comp.NoMindGracePeriod; + containedComp.GracePeriodEndTime = Timing.CurTime + delay; + containedComp.Cryostorage = ent; + Dirty(args.Entity, containedComp); + } + + private void OnRemovedContainer(Entity ent, ref EntRemovedFromContainerMessage args) + { + var (_, comp) = ent; + if (args.Container.ID != comp.ContainerId) + return; + + _appearance.SetData(ent, CryostorageVisuals.Full, args.Container.ContainedEntities.Count > 0); + } + + private void OnInsertAttempt(Entity ent, ref ContainerIsInsertingAttemptEvent args) + { + var (_, comp) = ent; + if (args.Container.ID != comp.ContainerId) + return; + + if (!TryComp(args.EntityUid, out var mindContainer)) + { + args.Cancel(); + return; + } + + if (Mind.TryGetMind(args.EntityUid, out _, out var mindComp, mindContainer) && + (mindComp.PreventSuicide || mindComp.PreventGhosting)) + { + args.Cancel(); + } + } + + private void OnShutdownContainer(Entity ent, ref ComponentShutdown args) + { + var comp = ent.Comp; + foreach (var stored in comp.StoredPlayers) + { + if (TryComp(stored, out var containedComponent)) + { + containedComponent.Cryostorage = null; + Dirty(stored, containedComponent); + } + } + + comp.StoredPlayers.Clear(); + Dirty(ent, comp); + } + + private void OnCanDropTarget(Entity ent, ref CanDropTargetEvent args) + { + if (args.Dragged == args.User) + return; + + if (!Mind.TryGetMind(args.Dragged, out _, out var mindComp) || mindComp.Session?.AttachedEntity != args.Dragged) + return; + + args.CanDrop = false; + args.Handled = true; + } + + private void OnRemovedContained(Entity ent, ref EntGotRemovedFromContainerMessage args) + { + var (uid, comp) = ent; + if (!IsInPausedMap(uid)) + RemCompDeferred(ent, comp); + } + + private void OnUnpaused(Entity ent, ref EntityUnpausedEvent args) + { + var comp = ent.Comp; + if (comp.GracePeriodEndTime != null) + comp.GracePeriodEndTime = comp.GracePeriodEndTime.Value + args.PausedTime; + } + + private void OnShutdownContained(Entity ent, ref ComponentShutdown args) + { + var comp = ent.Comp; + + CompOrNull(comp.Cryostorage)?.StoredPlayers.Remove(ent); + ent.Comp.Cryostorage = null; + Dirty(ent, comp); + } + + private void OnRoundRestart(RoundRestartCleanupEvent _) + { + DeletePausedMap(); + } + + private void DeletePausedMap() + { + if (PausedMap == null || !Exists(PausedMap)) + return; + + EntityManager.DeleteEntity(PausedMap.Value); + PausedMap = null; + } + + protected void EnsurePausedMap() + { + if (PausedMap != null && Exists(PausedMap)) + return; + + var map = _mapManager.CreateMap(); + _mapManager.SetMapPaused(map, true); + PausedMap = _mapManager.GetMapEntityId(map); + } + + public bool IsInPausedMap(Entity entity) + { + var (_, comp) = entity; + comp ??= Transform(entity); + + return comp.MapUid != null && comp.MapUid == PausedMap; + } +} diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index a9ec248f414..790d3691b6e 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -223,6 +223,12 @@ public static readonly CVarDef public static readonly CVarDef GameRoleTimers = CVarDef.Create("game.role_timers", true, CVar.SERVER | CVar.REPLICATED); + /// + /// Whether or not disconnecting inside of a cryopod should remove the character or just store them until they reconnect. + /// + public static readonly CVarDef + GameCryoSleepRejoining = CVarDef.Create("game.cryo_sleep_rejoining", false, CVar.SERVER | CVar.REPLICATED); + /// /// Whether a random position offset will be applied to the station on roundstart. /// diff --git a/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs b/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs index c362535e4f5..5cdc8aed80f 100644 --- a/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs +++ b/Content.Shared/Chemistry/Dispenser/ReagentDispenserInventoryPrototype.cs @@ -1,4 +1,4 @@ -using Content.Shared.Chemistry.Reagent; +using Content.Shared.Chemistry.Reagent; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; @@ -14,8 +14,7 @@ namespace Content.Shared.Chemistry.Dispenser [Serializable, NetSerializable, Prototype("reagentDispenserInventory")] public sealed partial class ReagentDispenserInventoryPrototype : IPrototype { - // TODO use ReagentId - [DataField("inventory", customTypeSerializer: typeof(PrototypeIdListSerializer))] + [DataField("inventory", customTypeSerializer: typeof(PrototypeIdListSerializer))] public List Inventory = new(); [ViewVariables, IdDataField] diff --git a/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs b/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs index 07a26830ddf..f2b13d34881 100644 --- a/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs +++ b/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs @@ -201,10 +201,10 @@ private void OnReaction(Entity soln, ReactionPrototype reacti reagent, unitReactions, EntityManager, null, 1f); - var coordinates = _transformSystem.GetMapCoordinates(soln); + var posFound = _transformSystem.TryGetMapOrGridCoordinates(soln, out var gridPos); _adminLogger.Add(LogType.ChemicalReaction, reaction.Impact, - $"Chemical reaction {reaction.ID:reaction} occurred with strength {unitReactions:strength} on entity {ToPrettyString(soln):metabolizer} at {coordinates}"); + $"Chemical reaction {reaction.ID:reaction} occurred with strength {unitReactions:strength} on entity {ToPrettyString(soln):metabolizer} at Pos:{(posFound ? $"{gridPos:coordinates}" : "[Grid or Map not Found]")}"); foreach (var effect in reaction.Effects) { @@ -215,7 +215,7 @@ private void OnReaction(Entity soln, ReactionPrototype reacti { var entity = args.SolutionEntity; _adminLogger.Add(LogType.ReagentEffect, effect.LogImpact, - $"Reaction effect {effect.GetType().Name:effect} of reaction {reaction.ID:reaction} applied on entity {ToPrettyString(entity):entity} at {coordinates}"); + $"Reaction effect {effect.GetType().Name:effect} of reaction {reaction.ID:reaction} applied on entity {ToPrettyString(entity):entity} at Pos:{(posFound ? $"{gridPos:coordinates}" : "[Grid or Map not Found")}"); } effect.Effect(args); diff --git a/Content.Shared/Chemistry/SharedReagentDispenser.cs b/Content.Shared/Chemistry/SharedReagentDispenser.cs index 1ecb0993f53..22cb87dcdb9 100644 --- a/Content.Shared/Chemistry/SharedReagentDispenser.cs +++ b/Content.Shared/Chemistry/SharedReagentDispenser.cs @@ -25,11 +25,11 @@ public ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount a [Serializable, NetSerializable] public sealed class ReagentDispenserDispenseReagentMessage : BoundUserInterfaceMessage { - public readonly ReagentId ReagentId; + public readonly string SlotId; - public ReagentDispenserDispenseReagentMessage(ReagentId reagentId) + public ReagentDispenserDispenseReagentMessage(string slotId) { - ReagentId = reagentId; + SlotId = slotId; } } @@ -59,11 +59,11 @@ public sealed class ReagentDispenserBoundUserInterfaceState : BoundUserInterface /// /// A list of the reagents which this dispenser can dispense. /// - public readonly List Inventory; + public readonly List>> Inventory; public readonly ReagentDispenserDispenseAmount SelectedDispenseAmount; - public ReagentDispenserBoundUserInterfaceState(ContainerInfo? outputContainer, List inventory, ReagentDispenserDispenseAmount selectedDispenseAmount) + public ReagentDispenserBoundUserInterfaceState(ContainerInfo? outputContainer, List>> inventory, ReagentDispenserDispenseAmount selectedDispenseAmount) { OutputContainer = outputContainer; Inventory = inventory; diff --git a/Content.Shared/Climbing/Systems/ClimbSystem.cs b/Content.Shared/Climbing/Systems/ClimbSystem.cs index 21809f47563..c54149243a4 100644 --- a/Content.Shared/Climbing/Systems/ClimbSystem.cs +++ b/Content.Shared/Climbing/Systems/ClimbSystem.cs @@ -247,7 +247,7 @@ private void Climb(EntityUid uid, EntityUid user, EntityUid climbable, bool sile if (!Resolve(uid, ref climbing, ref physics, ref fixtures, false)) return; - if (!Resolve(climbable, ref comp)) + if (!Resolve(climbable, ref comp, false)) return; if (!ReplaceFixtures(uid, climbing, fixtures)) diff --git a/Content.Shared/Containers/DragInsertContainerComponent.cs b/Content.Shared/Containers/DragInsertContainerComponent.cs new file mode 100644 index 00000000000..e4cae26fcb1 --- /dev/null +++ b/Content.Shared/Containers/DragInsertContainerComponent.cs @@ -0,0 +1,20 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Containers; + +/// +/// This is used for a container that can have entities inserted into it via a +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(DragInsertContainerSystem))] +public sealed partial class DragInsertContainerComponent : Component +{ + [DataField, ViewVariables(VVAccess.ReadWrite)] + public string ContainerId; + + /// + /// If true, there will also be verbs for inserting / removing objects from this container. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool UseVerbs = true; +} diff --git a/Content.Shared/Containers/DragInsertContainerSystem.cs b/Content.Shared/Containers/DragInsertContainerSystem.cs new file mode 100644 index 00000000000..b7f5eb500be --- /dev/null +++ b/Content.Shared/Containers/DragInsertContainerSystem.cs @@ -0,0 +1,120 @@ +using Content.Shared.ActionBlocker; +using Content.Shared.Administration.Logs; +using Content.Shared.Climbing.Systems; +using Content.Shared.Database; +using Content.Shared.DragDrop; +using Content.Shared.Verbs; +using Robust.Shared.Containers; + +namespace Content.Shared.Containers; + +public sealed class DragInsertContainerSystem : EntitySystem +{ + [Dependency] private readonly ISharedAdminLogManager _adminLog = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; + [Dependency] private readonly ClimbSystem _climb = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDragDropOn, before: new []{ typeof(ClimbSystem)}); + SubscribeLocalEvent(OnCanDragDropOn); + SubscribeLocalEvent>(OnGetAlternativeVerb); + } + + private void OnDragDropOn(Entity ent, ref DragDropTargetEvent args) + { + if (args.Handled) + return; + + var (_, comp) = ent; + if (!_container.TryGetContainer(ent, comp.ContainerId, out var container)) + return; + + args.Handled = Insert(args.Dragged, args.User, ent, container); + } + + private void OnCanDragDropOn(Entity ent, ref CanDropTargetEvent args) + { + var (_, comp) = ent; + if (!_container.TryGetContainer(ent, comp.ContainerId, out var container)) + return; + + args.Handled = true; + args.CanDrop |= _container.CanInsert(args.Dragged, container); + } + + private void OnGetAlternativeVerb(Entity ent, ref GetVerbsEvent args) + { + var (uid, comp) = ent; + if (!comp.UseVerbs) + return; + + if (!args.CanInteract || !args.CanAccess || args.Hands == null) + return; + + if (!_container.TryGetContainer(uid, comp.ContainerId, out var container)) + return; + + var user = args.User; + if (!_actionBlocker.CanInteract(user, ent)) + return; + + // Eject verb + if (container.ContainedEntities.Count > 0) + { + // make sure that we can actually take stuff out of the container + var emptyableCount = 0; + foreach (var contained in container.ContainedEntities) + { + if (!_container.CanRemove(contained, container)) + continue; + emptyableCount++; + } + + if (emptyableCount > 0) + { + AlternativeVerb verb = new() + { + Act = () => + { + _adminLog.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user):player} emptied container {ToPrettyString(ent)}"); + var ents = _container.EmptyContainer(container); + foreach (var contained in ents) + { + _climb.ForciblySetClimbing(contained, ent); + } + }, + Category = VerbCategory.Eject, + Text = Loc.GetString("container-verb-text-empty"), + Priority = 1 // Promote to top to make ejecting the ALT-click action + }; + args.Verbs.Add(verb); + } + } + + // Self-insert verb + if (_container.CanInsert(user, container) && + _actionBlocker.CanMove(user)) + { + AlternativeVerb verb = new() + { + Act = () => Insert(user, user, ent, container), + Text = Loc.GetString("container-verb-text-enter"), + Priority = 2 + }; + args.Verbs.Add(verb); + } + } + + public bool Insert(EntityUid target, EntityUid user, EntityUid containerEntity, BaseContainer container) + { + if (!_container.Insert(target, container)) + return false; + + _adminLog.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(user):player} inserted {ToPrettyString(target):player} into container {ToPrettyString(containerEntity)}"); + return true; + } +} diff --git a/Content.Shared/Containers/ExitContainerOnMoveComponent.cs b/Content.Shared/Containers/ExitContainerOnMoveComponent.cs new file mode 100644 index 00000000000..aae4eec7104 --- /dev/null +++ b/Content.Shared/Containers/ExitContainerOnMoveComponent.cs @@ -0,0 +1,14 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Containers; + +/// +/// This is used for a container that is exited when the entity inside of it moves. +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(ExitContainerOnMoveSystem))] +public sealed partial class ExitContainerOnMoveComponent : Component +{ + [DataField, ViewVariables(VVAccess.ReadWrite)] + public string ContainerId; +} diff --git a/Content.Shared/Containers/ExitContainerOnMoveSystem.cs b/Content.Shared/Containers/ExitContainerOnMoveSystem.cs new file mode 100644 index 00000000000..8b156186494 --- /dev/null +++ b/Content.Shared/Containers/ExitContainerOnMoveSystem.cs @@ -0,0 +1,31 @@ +using Content.Shared.Climbing.Systems; +using Content.Shared.Movement.Events; +using Robust.Shared.Containers; + +namespace Content.Shared.Containers; + +public sealed class ExitContainerOnMoveSystem : EntitySystem +{ + [Dependency] private readonly ClimbSystem _climb = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnContainerRelay); + } + + private void OnContainerRelay(Entity ent, ref ContainerRelayMovementEntityEvent args) + { + var (_, comp) = ent; + if (!TryComp(ent, out var containerManager)) + return; + + if (!_container.TryGetContainer(ent, comp.ContainerId, out var container, containerManager) || !container.Contains(args.Entity)) + return; + + _climb.ForciblySetClimbing(args.Entity, ent); + _container.RemoveEntity(ent, args.Entity, containerManager); + } +} diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs index 9310617634d..f02cdc48dbb 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs @@ -67,8 +67,8 @@ public ItemSlot(ItemSlot other) CopyFrom(other); } - [DataField("whitelist")] + [Access(typeof(ItemSlotsSystem), Other = AccessPermissions.ReadWriteExecute)] public EntityWhitelist? Whitelist; [DataField("blacklist")] @@ -179,6 +179,7 @@ public ItemSlot(ItemSlot other) /// The actual deconstruction logic is handled by the server-side EmptyOnMachineDeconstructSystem. /// [DataField("ejectOnDeconstruct")] + [Access(typeof(ItemSlotsSystem), Other = AccessPermissions.ReadWriteExecute)] [NonSerialized] public bool EjectOnDeconstruct = true; @@ -187,6 +188,7 @@ public ItemSlot(ItemSlot other) /// ejected when it is broken or destroyed? /// [DataField("ejectOnBreak")] + [Access(typeof(ItemSlotsSystem), Other = AccessPermissions.ReadWriteExecute)] [NonSerialized] public bool EjectOnBreak = false; @@ -205,6 +207,7 @@ public ItemSlot(ItemSlot other) /// want to insert more than one item that matches the same whitelist. /// [DataField("swap")] + [Access(typeof(ItemSlotsSystem), Other = AccessPermissions.ReadWriteExecute)] public bool Swap = true; public string? ID => ContainerSlot?.ID; diff --git a/Content.Shared/Entry/EntryPoint.cs b/Content.Shared/Entry/EntryPoint.cs index bd31b1fd7ca..df267b08cb1 100644 --- a/Content.Shared/Entry/EntryPoint.cs +++ b/Content.Shared/Entry/EntryPoint.cs @@ -1,16 +1,18 @@ -using Content.Shared.CCVar; -using Content.Shared.Chemistry.Reaction; -using Content.Shared.Chemistry.Reagent; +using System.Diagnostics.CodeAnalysis; +using System.IO; +using System.Linq; using Content.Shared.Humanoid.Markings; using Content.Shared.IoC; -using Content.Shared.Localizations; using Content.Shared.Maps; using Robust.Shared; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; using Robust.Shared.Map; -using Robust.Shared.Network; using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.Markdown; +using Robust.Shared.Serialization.Markdown.Sequence; +using Robust.Shared.Serialization.Markdown.Value; +using Robust.Shared.Utility; namespace Content.Shared.Entry { @@ -18,6 +20,9 @@ public sealed class EntryPoint : GameShared { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly ITileDefinitionManager _tileDefinitionManager = default!; + [Dependency] private readonly IResourceManager _resMan = default!; + + private readonly ResPath _ignoreFileDirectory = new("/IgnoredPrototypes/"); public override void PreInit() { @@ -32,6 +37,7 @@ public override void Shutdown() public override void Init() { + IgnorePrototypes(); } public override void PostInit() @@ -96,5 +102,48 @@ private void PrototypeReload(PrototypesReloadedEventArgs obj) def.AssignTileId(_tileDefinitionManager[def.ID].TileId); } } + + private void IgnorePrototypes() + { + if (!TryReadFile(out var sequences)) + return; + + foreach (var sequence in sequences) + { + foreach (var node in sequence.Sequence) + { + var path = new ResPath(((ValueDataNode) node).Value); + + if (string.IsNullOrEmpty(path.Extension)) + { + _prototypeManager.AbstractDirectory(path); + } + else + { + _prototypeManager.AbstractFile(path); + } + } + } + } + + private bool TryReadFile([NotNullWhen(true)] out List? sequence) + { + sequence = new(); + + foreach (var path in _resMan.ContentFindFiles(_ignoreFileDirectory)) + { + if (!_resMan.TryContentFileRead(path, out var stream)) + continue; + + using var reader = new StreamReader(stream, EncodingHelpers.UTF8); + var documents = DataNodeParser.ParseYamlStream(reader).FirstOrDefault(); + + if (documents == null) + continue; + + sequence.Add((SequenceDataNode) documents.Root); + } + return true; + } } } diff --git a/Content.Shared/Execution/DoafterEvent.cs b/Content.Shared/Execution/DoafterEvent.cs new file mode 100644 index 00000000000..78549745276 --- /dev/null +++ b/Content.Shared/Execution/DoafterEvent.cs @@ -0,0 +1,9 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Execution; + +[Serializable, NetSerializable] +public sealed partial class ExecutionDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/Inventory/InventorySystem.Slots.cs b/Content.Shared/Inventory/InventorySystem.Slots.cs index 65b050c1c47..210e21c2c9d 100644 --- a/Content.Shared/Inventory/InventorySystem.Slots.cs +++ b/Content.Shared/Inventory/InventorySystem.Slots.cs @@ -99,7 +99,7 @@ public bool TryGetContainerSlotEnumerator(Entity entity, ou public InventorySlotEnumerator GetSlotEnumerator(Entity entity, SlotFlags flags = SlotFlags.All) { - if (!Resolve(entity.Owner, ref entity.Comp)) + if (!Resolve(entity.Owner, ref entity.Comp, false)) return InventorySlotEnumerator.Empty; return new InventorySlotEnumerator(entity.Comp, flags); diff --git a/Content.Shared/Jittering/JitteringComponent.cs b/Content.Shared/Jittering/JitteringComponent.cs index 237629f291b..417b42e8955 100644 --- a/Content.Shared/Jittering/JitteringComponent.cs +++ b/Content.Shared/Jittering/JitteringComponent.cs @@ -17,4 +17,11 @@ public sealed partial class JitteringComponent : Component [ViewVariables(VVAccess.ReadWrite)] public Vector2 LastJitter { get; set; } + + /// + /// The offset that an entity had before jittering started, + /// so that we can reset it properly. + /// + [ViewVariables(VVAccess.ReadWrite)] + public Vector2 StartOffset = Vector2.Zero; } diff --git a/Content.Shared/Projectiles/CanPenetrateComponent.cs b/Content.Shared/Projectiles/CanPenetrateComponent.cs new file mode 100644 index 00000000000..6134978b1bb --- /dev/null +++ b/Content.Shared/Projectiles/CanPenetrateComponent.cs @@ -0,0 +1,42 @@ +using Content.Shared.FixedPoint; +using Content.Shared.Physics; +using Robust.Shared.GameStates; + +namespace Content.Shared.Projectiles; + +[RegisterComponent, NetworkedComponent] +public sealed partial class CanPenetrateComponent : Component +{ + /// + /// Should the projectile keep the ability to deal damage after colliding. + /// + [DataField] + public bool DamageAfterCollide = true; + + /// + /// The CollisionLayer, up to and including the one set, the projectile is allowed to penetrate. + /// + /// + /// Can penetrate everything if this value is not set. + /// + [DataField] + public CollisionGroup? PenetrationLayer; + + /// + /// How many times the projectile is allowed to deal damage. + /// + /// + /// Can deal damage on every collision if this value is not set. + /// + [DataField] + public float? PenetrationPower; + + /// + /// Modifies the damage of a projectile after it has penetrated an entity. + /// + /// + /// Won't modify the projectile's damage if this value is not set. + /// + [DataField] + public FixedPoint2? DamageModifier; +} diff --git a/Content.Shared/Projectiles/ProjectileComponent.cs b/Content.Shared/Projectiles/ProjectileComponent.cs index 3b5cd33c791..c24cf2b5ee5 100644 --- a/Content.Shared/Projectiles/ProjectileComponent.cs +++ b/Content.Shared/Projectiles/ProjectileComponent.cs @@ -2,57 +2,75 @@ using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Projectiles; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class ProjectileComponent : Component { - [ViewVariables(VVAccess.ReadWrite), DataField("impactEffect", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string? ImpactEffect; + /// + /// The effect that appears when a projectile collides with an entity. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public EntProtoId? ImpactEffect; /// - /// User that shot this projectile. + /// User that shot this projectile. /// - [DataField("shooter"), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? Shooter; /// - /// Weapon used to shoot. + /// Weapon used to shoot. /// - [DataField("weapon"), AutoNetworkedField] + [DataField, AutoNetworkedField] public EntityUid? Weapon; - [DataField("ignoreShooter"), AutoNetworkedField] + /// + /// The projectile spawns inside the shooter most of the time, this prevents entities from shooting themselves. + /// + [DataField, AutoNetworkedField] public bool IgnoreShooter = true; - [DataField("damage", required: true)] [ViewVariables(VVAccess.ReadWrite)] + /// + /// The amount of damage the projectile will do. + /// + [DataField(required: true)] [ViewVariables(VVAccess.ReadWrite)] public DamageSpecifier Damage = new(); - [DataField("deleteOnCollide")] + /// + /// If the projectile should be deleted on collision. + /// + [DataField] public bool DeleteOnCollide = true; - [DataField("canPenetrate")] - public bool CanPenetrate = false; - - [DataField("ignoreResistances")] + /// + /// Ignore all damage resistances the target has. + /// + [DataField] public bool IgnoreResistances = false; - // Get that juicy FPS hit sound - [DataField("soundHit")] public SoundSpecifier? SoundHit; + /// + /// Get that juicy FPS hit sound. + /// + [DataField] + public SoundSpecifier? SoundHit; - [DataField("soundForce")] + /// + /// Force the projectiles sound to play rather than potentially playing the entity's sound. + /// + [DataField] public bool ForceSound = false; /// - /// Whether this projectile will only collide with entities if it was shot from a gun (if is not null) + /// Whether this projectile will only collide with entities if it was shot from a gun (if is not null). /// - [DataField("onlyCollideWhenShot")] + [DataField] public bool OnlyCollideWhenShot = false; /// /// Whether this projectile has already damaged an entity. /// + [DataField] public bool DamagedEntity; } diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index 2db497f94c9..2fa5ee1c8c2 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -4,12 +4,14 @@ using Content.Shared.DoAfter; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Mobs.Components; using Content.Shared.Throwing; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Dynamics; using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; using Robust.Shared.Serialization; @@ -32,6 +34,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(PreventCollision); + SubscribeLocalEvent(AfterProjectileHit); SubscribeLocalEvent(OnEmbedProjectileHit); SubscribeLocalEvent(OnEmbedThrowDoHit); SubscribeLocalEvent(OnEmbedActivate); @@ -160,6 +163,45 @@ private void OnAttemptPacifiedThrow(Entity ent, r { args.Cancel("pacified-cannot-throw-embed"); } + + /// + /// Checks if the projectile is allowed to penetrate the target it hit. + /// + private void AfterProjectileHit(EntityUid uid, ProjectileComponent component, ref AfterProjectileHitEvent args) + { + if (!TryComp(uid, out var damageAfterCollide)) + return; + + //Delete the projectile if it hits an entity with a CollisionLayer that has a higher value than it's PenetrationLayer. + //This allows a projectile to only penetrate a specific set of entities. + if (damageAfterCollide.PenetrationLayer != null) + { + if (args.Fixture.CollisionLayer > (int) damageAfterCollide.PenetrationLayer || + damageAfterCollide.PenetrationPower == 0) + { + QueueDel(uid); + return; + } + } + + //Allow the projectile to deal damage again. + if(damageAfterCollide.DamageAfterCollide) + component.DamagedEntity = false; + + //If the projectile has a limit on the amount of penetrations, reduce it. + if (damageAfterCollide.PenetrationPower != null) + damageAfterCollide.PenetrationPower -= 1; + + //Apply the penetration damage modifier if the projectile has one. + if (damageAfterCollide.DamageModifier != null) + component.Damage *= damageAfterCollide.DamageModifier.Value; + + //Overrides the original DeleteOnCollide if the projectile passes all penetration checks. + //This is to prevent having to set DeleteOnCollide to false on every prototype + //you want to give the ability to penetrate entities. + if(component.DeleteOnCollide) + component.DeleteOnCollide = false; + } } [Serializable, NetSerializable] @@ -186,3 +228,9 @@ public record struct ProjectileReflectAttemptEvent(EntityUid ProjUid, Projectile /// [ByRefEvent] public record struct ProjectileHitEvent(DamageSpecifier Damage, EntityUid Target, EntityUid? Shooter = null); + +/// +/// Raised after a projectile has dealt it's damage. +/// +[ByRefEvent] +public record struct AfterProjectileHitEvent(DamageSpecifier Damage, EntityUid Target, Fixture Fixture); diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index c6adf001132..6fa461860f6 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -736,7 +736,7 @@ protected virtual bool ArcRaySuccessful(EntityUid targetUid, Vector2 position, A return true; } - private void PlayHitSound(EntityUid target, EntityUid? user, string? type, SoundSpecifier? hitSoundOverride, SoundSpecifier? hitSound) + public void PlayHitSound(EntityUid target, EntityUid? user, string? type, SoundSpecifier? hitSoundOverride, SoundSpecifier? hitSound) { var playedSound = false; diff --git a/Resources/Audio/Items/drink.ogg b/Resources/Audio/Items/drink.ogg index ece220cd719..ac277f9d1b2 100644 Binary files a/Resources/Audio/Items/drink.ogg and b/Resources/Audio/Items/drink.ogg differ diff --git a/Resources/Audio/Items/eatfood.ogg b/Resources/Audio/Items/eatfood.ogg deleted file mode 100644 index 69fd5374933..00000000000 Binary files a/Resources/Audio/Items/eatfood.ogg and /dev/null differ diff --git a/Resources/Audio/Items/eating_1.ogg b/Resources/Audio/Items/eating_1.ogg index 68942cd3d19..65b15bffb31 100644 Binary files a/Resources/Audio/Items/eating_1.ogg and b/Resources/Audio/Items/eating_1.ogg differ diff --git a/Resources/Audio/Items/eating_2.ogg b/Resources/Audio/Items/eating_2.ogg index 332dbb056f1..2da52f29d08 100644 Binary files a/Resources/Audio/Items/eating_2.ogg and b/Resources/Audio/Items/eating_2.ogg differ diff --git a/Resources/Audio/Items/eating_3.ogg b/Resources/Audio/Items/eating_3.ogg index 3174dc6cf58..3f69d7523e5 100644 Binary files a/Resources/Audio/Items/eating_3.ogg and b/Resources/Audio/Items/eating_3.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c0e5ab8de4c..e2a1ee0cdbf 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,159 +1,4 @@ Entries: -- author: Vasilis - changes: - - message: Gibbed mothroaches wont drop all normal moth species parts, just animal - organs. - type: Fix - id: 5211 - time: '2023-11-27T21:42:53.0000000+00:00' -- author: deltanedas - changes: - - message: When Revolution rounds end each headrev has their number of converted - people shown. - type: Tweak - id: 5212 - time: '2023-11-27T21:43:49.0000000+00:00' -- author: Velcroboy - changes: - - message: Fixed janitorial items (wet floor signs, spray bottles, light replacers, - and plungers) not fitting in the janitor's trolley. - type: Fix - id: 5213 - time: '2023-11-27T22:16:17.0000000+00:00' -- author: metalgearsloth - changes: - - message: Fix ambient audio not playing. - type: Fix - id: 5214 - time: '2023-11-28T03:09:26.0000000+00:00' -- author: M3739 - changes: - - message: An entry regarding cyborgs has been added to the guidebook. - type: Add - id: 5215 - time: '2023-11-28T03:18:22.0000000+00:00' -- author: Ubaser - changes: - - message: Remove the Captain's spare gloves from his locker. - type: Remove - id: 5216 - time: '2023-11-28T05:45:56.0000000+00:00' -- author: Ubaser - changes: - - message: The HoP now starts with a pair of papercut-proof gloves. - type: Add - id: 5217 - time: '2023-11-28T06:21:06.0000000+00:00' -- author: themias - changes: - - message: Fixed riot shield audio and popup spam - type: Fix - id: 5218 - time: '2023-11-28T07:06:38.0000000+00:00' -- author: UbaserB - changes: - - message: Blood now has a sprite when placed in metamorphic glasses. - type: Add - id: 5219 - time: '2023-11-28T07:09:56.0000000+00:00' -- author: metalgearsloth - changes: - - message: Fix global audio not being global. - type: Fix - - message: Update MIDI audio every frame rather than every 1/10 seconds to fix positioning - and occlusion weirdness. - type: Tweak - id: 5220 - time: '2023-11-28T09:48:18.0000000+00:00' -- author: metalgearsloth - changes: - - message: Fix audio not playing during weather. - type: Fix - id: 5221 - time: '2023-11-28T12:35:38.0000000+00:00' -- author: metalgearsloth - changes: - - message: Fix some sound sources not playing positionally (e.g. glass breaking). - type: Fix - id: 5222 - time: '2023-11-28T23:19:23.0000000+00:00' -- author: metalgearsloth - changes: - - message: Removed artifact spam on roundend due to the ensuing lag. - type: Remove - id: 5223 - time: '2023-11-29T03:39:16.0000000+00:00' -- author: metalgearsloth - changes: - - message: Fix doppler effect on shuttles by also setting player's velocity in the - audio API. - type: Fix - - message: Fix left-right ear weirdness caused by floating-point imprecision on - audio positioning. - type: Fix - id: 5224 - time: '2023-11-29T05:44:45.0000000+00:00' -- author: metalgearsloth - changes: - - message: Fix getting stuck between tables. - type: Fix - id: 5225 - time: '2023-11-29T13:23:21.0000000+00:00' -- author: metalgearsloth - changes: - - message: Fix remaining audio left-right transitioning too quickly. - type: Fix - id: 5226 - time: '2023-11-30T00:56:08.0000000+00:00' -- author: lzk228 - changes: - - message: Skeletons are zombie immune now. - type: Tweak - id: 5227 - time: '2023-11-30T02:40:39.0000000+00:00' -- author: MACMAN2003 - changes: - - message: Added a green central command cap like the captain's blue one. - type: Add - id: 5228 - time: '2023-11-30T07:20:45.0000000+00:00' -- author: Ubaser - changes: - - message: Core has been reworked and added back into the map pool. - type: Add - id: 5229 - time: '2023-11-30T08:13:13.0000000+00:00' -- author: Ubaser - changes: - - message: Nuclear operative agents now spawn with a PDA that can scan for injuries. - type: Add - id: 5230 - time: '2023-11-30T21:39:08.0000000+00:00' -- author: Rainfey - changes: - - message: Agent ID not longer resets name when changing its appearance - type: Fix - id: 5231 - time: '2023-11-30T21:42:44.0000000+00:00' -- author: eddiedd - changes: - - message: Lemon has been discovered a mutation species, lemoon, which could be - grind for milk - type: Add - id: 5232 - time: '2023-11-30T21:44:23.0000000+00:00' -- author: Ubaser - changes: - - message: The senior physician beret now matches their outfit more. - type: Tweak - id: 5233 - time: '2023-12-01T08:34:08.0000000+00:00' -- author: enumerate0 - changes: - - message: Recognizable solutions now appear sorted by volume first, then by name - type: Tweak - id: 5234 - time: '2023-12-01T08:35:51.0000000+00:00' - author: Whisper changes: - message: Added the Death Acidifier, an implant that destroys your body and equipment @@ -3741,3 +3586,194 @@ id: 5711 time: '2024-01-14T22:14:19.0000000+00:00' url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24087 +- author: Dygon + changes: + - message: The particle decelerator's projectile now deals less damage, has a shorter + lifespan and can be reflected by objects that reflect energy projectiles. + type: Tweak + - message: Bullet grenade projectiles no longer penetrate walls. + type: Fix + id: 5712 + time: '2024-01-14T23:39:09.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24032 +- author: Rainbeon + changes: + - message: Added Aloxadone, a cryogenics chemical for treating patients with third + degree burns. + type: Add + id: 5713 + time: '2024-01-15T03:57:31.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/23980 +- author: Bhijn and Myr + changes: + - message: You can now open and close your eyes while cuffed if the action to do + so is available to you. (Such as if it was granted via blindness) + type: Fix + id: 5714 + time: '2024-01-15T05:11:21.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24097 +- author: Flareguy + changes: + - message: Made lava & liquid plasma significantly less lethal. + type: Tweak + id: 5715 + time: '2024-01-15T06:33:05.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24100 +- author: EmoGarbage404 + changes: + - message: Added cryogenic sleep units. Disconnecting or ghosting inside one of + these pods will keep your body secure and free up your job slot on the station. + type: Add + - message: Added cryogenics access, which allows someone to retrieve items from + inside of cryogenic sleep units. This is given to security and command by default. + type: Add + id: 5716 + time: '2024-01-15T06:35:28.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24096 +- author: Bhijn and Myr + changes: + - message: Attempting to weld without protection will now cause eye damage proper. + Additionally, attempting to weld with a welder that's off when you aren't wearing + protection will no longer blind you. It's the bright light that hurts your eyes, + not the underwhelming lack of it! + type: Fix + id: 5717 + time: '2024-01-15T07:47:00.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24106 +- author: Boaz1111 + changes: + - message: Stimpack price has been reduced to 4 TC + type: Tweak + id: 5718 + time: '2024-01-15T09:30:37.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24117 +- author: Nimfar11 + changes: + - message: Adds the ability to build blast doors. + type: Add + id: 5719 + time: '2024-01-15T12:49:08.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24050 +- author: Boaz1111 + changes: + - message: Reinforced Glass and Reinforced Plasma Glass no longer bubble randomly + type: Fix + id: 5720 + time: '2024-01-16T03:43:18.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24135 +- author: tday + changes: + - message: Explosion and Chemical Reaction admin logs now use grid-relative coordinates + when possible. + type: Fix + id: 5721 + time: '2024-01-16T07:53:46.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24136 +- author: Dygon + changes: + - message: Flare shells now embed into whatever they hit. + type: Tweak + - message: Flare shells ignite mobs again. + type: Fix + id: 5722 + time: '2024-01-16T09:17:05.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/23648 +- author: Ubaser + changes: + - message: Resprited buckets. + type: Tweak + id: 5723 + time: '2024-01-16T13:47:53.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/23866 +- author: Lank + changes: + - message: Added a new "follow" command. + type: Add + - message: Replaced the ahelp menu's "Teleport to" verb with "Follow". + type: Tweak + id: 5724 + time: '2024-01-17T01:26:15.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24142 +- author: Dygon + changes: + - message: Water gun and spray nozzle projectiles now properly collide with objects. + type: Fix + id: 5725 + time: '2024-01-17T08:21:59.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24175 +- author: Veritius + changes: + - message: You can now dramatically execute cuffed people. + type: Add + - message: You can now kill yourself with guns. + type: Add + id: 5726 + time: '2024-01-17T08:45:45.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24150 +- author: TurboTrackerss14 + changes: + - message: Added Mothroach Burger. + type: Add + id: 5727 + time: '2024-01-17T08:46:34.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24156 +- author: Ubaser + changes: + - message: Robohand gloves now have a unique sprite and can be found in the RoboDrobe. + type: Tweak + id: 5728 + time: '2024-01-17T10:03:01.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24182 +- author: Ubaser + changes: + - message: Ore is now grindable to obtain basic chemicals. + type: Add + id: 5729 + time: '2024-01-17T13:08:31.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24185 +- author: mirrorcult + changes: + - message: Reagent grinders now shake around violently when grinding something + type: Add + id: 5730 + time: '2024-01-17T13:14:33.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24190 +- author: Boaz1111 + changes: + - message: Artifact analyzer now scans twice as fast! + type: Tweak + id: 5731 + time: '2024-01-17T16:45:19.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24188 +- author: mirrorcult + changes: + - message: Eating/drinking sounds should be hopefully significantly less grating + type: Tweak + id: 5732 + time: '2024-01-17T16:46:07.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24195 +- author: notafet + changes: + - message: Chemical, booze, and soda dispensers now dispense reagents from stock + containers. Remember to refill! + type: Tweak + - message: Chemical, booze, and soda dispensers can no longer be emagged for extra + goodies. + type: Remove + id: 5733 + time: '2024-01-17T21:43:48.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/23907 +- author: TheShuEd + changes: + - message: Added the ability to repair thrusters and gyroscopes on the shuttle. + type: Add + id: 5734 + time: '2024-01-17T23:57:40.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24193 +- author: Volotomite + changes: + - message: Flippo can burn plasma now! + type: Fix + id: 5735 + time: '2024-01-18T00:28:32.0000000+00:00' + url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24207 diff --git a/Resources/IgnoredPrototypes/ignoredPrototypes.yml b/Resources/IgnoredPrototypes/ignoredPrototypes.yml new file mode 100644 index 00000000000..695cee007f6 --- /dev/null +++ b/Resources/IgnoredPrototypes/ignoredPrototypes.yml @@ -0,0 +1,8 @@ +# This is a basic list that specifies files for which the prototypes inside of them will be made abstract. +# This supports all prototype kinds and is intended to allow servers to remove prototypes in a relatively clean way. +# This method does not break inheritance, but you will still have to remove usages. + +# e.g., you can specify both directories and specific files by adding lines like: +# +# - /Prototypes/Guidebook +# - /Prototypes/Catalog/uplink_catalog.yml diff --git a/Resources/Locale/en-US/administration/commands/follow-command.ftl b/Resources/Locale/en-US/administration/commands/follow-command.ftl new file mode 100644 index 00000000000..3ef5fde0751 --- /dev/null +++ b/Resources/Locale/en-US/administration/commands/follow-command.ftl @@ -0,0 +1,2 @@ +follow-command-description = Makes you begin following an entity +follow-command-help = Usage: follow [netEntity] \ No newline at end of file diff --git a/Resources/Locale/en-US/administration/ui/actions.ftl b/Resources/Locale/en-US/administration/ui/actions.ftl index 56af86dc9b6..0b4c4b605bd 100644 --- a/Resources/Locale/en-US/administration/ui/actions.ftl +++ b/Resources/Locale/en-US/administration/ui/actions.ftl @@ -9,5 +9,5 @@ admin-player-actions-spawn = Spawn here admin-player-spawn-failed = Failed to find valid coordinates admin-player-actions-clone = Clone -admin-player-actions-teleport = Teleport To +admin-player-actions-follow = Follow admin-player-actions-confirm = Are you sure? diff --git a/Resources/Locale/en-US/containers/containers.ftl b/Resources/Locale/en-US/containers/containers.ftl new file mode 100644 index 00000000000..ab011f64f84 --- /dev/null +++ b/Resources/Locale/en-US/containers/containers.ftl @@ -0,0 +1,2 @@ +container-verb-text-enter = Enter +container-verb-text-empty = Empty diff --git a/Resources/Locale/en-US/execution/execution.ftl b/Resources/Locale/en-US/execution/execution.ftl new file mode 100644 index 00000000000..8bdf3261666 --- /dev/null +++ b/Resources/Locale/en-US/execution/execution.ftl @@ -0,0 +1,30 @@ +execution-verb-name = Execute +execution-verb-message = Use your weapon to execute someone. + +# All the below localisation strings have access to the following variables +# attacker (the person committing the execution) +# victim (the person being executed) +# weapon (the weapon used for the execution) + +execution-popup-gun-initial-internal = You ready the muzzle of {THE($weapon)} against {$victim}'s head. +execution-popup-gun-initial-external = {$attacker} readies the muzzle of {THE($weapon)} against {$victim}'s head. +execution-popup-gun-complete-internal = You blast {$victim} in the head! +execution-popup-gun-complete-external = {$attacker} blasts {$victim} in the head! +execution-popup-gun-clumsy-internal = You miss {$victim}'s head and shoot your foot instead! +execution-popup-gun-clumsy-external = {$attacker} misses {$victim} and shoots {POSS-ADJ($attacker)} foot instead! +execution-popup-gun-empty = {CAPITALIZE(THE($weapon))} clicks. + +suicide-popup-gun-initial-internal = You place the muzzle of {THE($weapon)} in your mouth. +suicide-popup-gun-initial-external = {$attacker} places the muzzle of {THE($weapon)} in {POSS-ADJ($attacker)} mouth. +suicide-popup-gun-complete-internal = You shoot yourself in the head! +suicide-popup-gun-complete-external = {$attacker} shoots {REFLEXIVE($attacker)} in the head! + +execution-popup-melee-initial-internal = You ready {THE($weapon)} against {$victim}'s throat. +execution-popup-melee-initial-external = {$attacker} readies {POSS-ADJ($attacker)} {$weapon} against the throat of {$victim}. +execution-popup-melee-complete-internal = You slit the throat of {$victim}! +execution-popup-melee-complete-external = {$attacker} slits the throat of {$victim}! + +suicide-popup-melee-initial-internal = You ready {THE($weapon)} against your throat. +suicide-popup-melee-initial-external = {$attacker} readies {POSS-ADJ($attacker)} {$weapon} against {POSS-ADJ($attacker)} throat. +suicide-popup-melee-complete-internal = You slit your throat with {THE($weapon)}! +suicide-popup-melee-complete-external = {$attacker} slits {POSS-ADJ($attacker)} throat with {THE($weapon)}! \ No newline at end of file diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index 58e6fc7bf2a..fb7edb0d427 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -157,6 +157,7 @@ flavor-complex-plastic = like plastic flavor-complex-glue = like glue flavor-complex-spaceshroom-cooked = like space umami flavor-complex-lost-friendship = like lost friendship +flavor-complex-light = like a light gone out # Drink-specific flavors. diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl index ded6f57a46e..724b752fbb6 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl @@ -40,4 +40,4 @@ traitor-role-uplink-code = traitor-role-codewords-short = The codewords are: {$codewords}. -traitor-role-uplink-code-short = Your uplink code is {$code}. +traitor-role-uplink-code-short = Your uplink code is {$code}. Set it as your PDA ringtone to access uplink. diff --git a/Resources/Locale/en-US/prototypes/access/accesses.ftl b/Resources/Locale/en-US/prototypes/access/accesses.ftl index b4859768ca5..0e8b1d9ac79 100644 --- a/Resources/Locale/en-US/prototypes/access/accesses.ftl +++ b/Resources/Locale/en-US/prototypes/access/accesses.ftl @@ -1,6 +1,7 @@ id-card-access-level-command = Command id-card-access-level-captain = Captain id-card-access-level-head-of-personnel = Head of Personnel +id-card-access-level-cryogenics = Cryogenics id-card-access-level-head-of-security = Head of Security id-card-access-level-security = Security diff --git a/Resources/Locale/en-US/prototypes/barricades.ftl b/Resources/Locale/en-US/prototypes/barricades.ftl deleted file mode 100644 index ebfab4436c0..00000000000 --- a/Resources/Locale/en-US/prototypes/barricades.ftl +++ /dev/null @@ -1,5 +0,0 @@ -### Barricades entity prototype data. - -ent-barricade = wooden barricade - .desc = The poor man's barrier, not nearly as strong or cool looking. - diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/armory-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/armory-crates.ftl deleted file mode 100644 index 5765435f884..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/armory-crates.ftl +++ /dev/null @@ -1,17 +0,0 @@ -ent-CrateArmorySMG = SMG crate - .desc = Contains two high-powered, semiautomatic rifles with four mags. Requires Armory access to open. - -ent-CrateArmoryShotgun = Shotgun crate - .desc = For when the enemy absolutely needs to be replaced with lead. Contains two Enforcer Combat Shotguns, and some standard shotgun shells. Requires Armory access to open. - -ent-CrateTrackingImplants = Tracking implants - .desc = Contains a handful of tracking implanters. Good for prisoners you'd like to release but still keep track of. - -ent-CrateTrainingBombs = Training bombs - .desc = Contains three low-yield training bombs for security to learn defusal and safe ordnance disposal, EOD suit not included. Requires Armory access to open. - -ent-CrateArmoryLaser = lasers crate - .desc = Contains three standard-issue laser rifles. Requires Armory access to open. - -ent-CrateArmoryPistols = pistols crate - .desc = Contains two standard NT pistols with four mags. Requires Armory access to open. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/botany-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/botany-crates.ftl deleted file mode 100644 index bfc704c5499..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/botany-crates.ftl +++ /dev/null @@ -1,14 +0,0 @@ -ent-CrateHydroponicsSeedsExotic = Exotic seeds crate - .desc = Any entrepreneuring botanist's dream. Contains many different exotic seeds. Requires Hydroponics access to open. - -ent-CrateHydroponicsSeedsMedicinal = Medicinal seeds crate - .desc = The wannabe chemist's dream. The power of medicine is at your fingertips! Requires Hydroponics access to open. - -ent-CrateHydroponicsTools = Hydroponics equipment crate - .desc = Supplies for growing a great garden! Contains some spray bottles of plant chemicals, a hatchet, a mini-hoe, scythe, as well as a pair of leather gloves and a botanist's apron. - -ent-CrateHydroponicsSeeds = Seeds crate - .desc = Big things have small beginnings. Contains twelve different seeds. - -ent-CratePlantBGone = Bulk Plant-B-Gone crate - .desc = From Monstano. "Unwanted Weeds, Meet Your Celestial Roundup!" diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/cargo-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/cargo-crates.ftl deleted file mode 100644 index 1be6a6cf502..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/cargo-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateCargoLuxuryHardsuit = luxury mining hardsuit crate - .desc = Finally, a hardsuit Quartermasters could call their own. Centcomm has heard you, now stop asking. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/chemistry-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/chemistry-crates.ftl deleted file mode 100644 index bb9ad44b4ee..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/chemistry-crates.ftl +++ /dev/null @@ -1,8 +0,0 @@ -ent-CrateChemistryP = Chemicals crate (P) - .desc = Contains chemicals from the P-Block of elements. Requires Chemistry access to open. - -ent-CrateChemistryS = Chemicals crate (S) - .desc = Contains chemicals from the S-Block of elements. Requires Chemistry access to open. - -ent-CrateChemistryD = Chemicals crate (D) - .desc = Contains chemicals from the D-Block of elements. Requires Chemistry access to open. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/circuitboard-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/circuitboard-crates.ftl deleted file mode 100644 index 0e85d49b7e0..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/circuitboard-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateCrewMonitoringBoards = Crew Monitoring Boards - .desc = Has two crew monitoring console and server replacements. Requires engineering access to open. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/emergency-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/emergency-crates.ftl deleted file mode 100644 index 7d1a71016c2..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/emergency-crates.ftl +++ /dev/null @@ -1,20 +0,0 @@ -ent-CrateEmergencyExplosive = Bomb suit crate - .desc = Science gone bonkers? Beeping behind the airlock? Buy now and be the hero the station des... I mean needs! (time not included) - -ent-CrateEmergencyFire = Firefighting crate - .desc = Only you can prevent station fires. Partner up with two firefighter suits, gas masks, flashlights, large oxygen tanks, extinguishers, and hardhats! - -ent-CrateEmergencyInternals = Internals crate - .desc = Master your life energy and control your breathing with three breath masks, three emergency oxygen tanks and three large air tanks. - -ent-CrateEmergencyRadiation = Radiation protection crate - .desc = Survive the Nuclear Apocalypse and Supermatter Engine alike with two sets of Radiation suits. Each set contains a helmet, suit, and Geiger counter. We'll even throw in a bottle of vodka and some glasses too, considering the life-expectancy of people who order this. - -ent-CrateEmergencyInflatablewall = Inflatable wall crate - .desc = Three stacks of inflatable walls for when the stations metal walls don't want to hold atmosphere anymore. - -ent-CrateGenericBiosuit = Emergency bio suit crate - .desc = Contains 2 biohazard suits to ensure that no disease will distract you from what you're doing there. - -ent-CrateSlimepersonLifeSupport = Slimeperson life support crate - .desc = Contains four breath masks and four large nitrogen tanks. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/engineering-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/engineering-crates.ftl deleted file mode 100644 index 5aa7f010364..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/engineering-crates.ftl +++ /dev/null @@ -1,47 +0,0 @@ -ent-CrateEngineeringGear = Engineering gear crate - .desc = Various engineering gear parts. - -ent-CrateEngineeringToolbox = Toolbox crate - .desc = Two mechanical and two electrical toolboxes. - -ent-CrateEngineeringPowercell = AME crate - .desc = Three microcreactor powercells. - -ent-CrateEngineeringCableLV = LV cable crate - .desc = 3 coils of LV cables. - -ent-CrateEngineeringCableMV = MV cable crate - .desc = 3 coils of MV cables. - -ent-CrateEngineeringCableHV = HV cable crate - .desc = 3 coils of HV cables. - -ent-CrateEngineeringCableBulk = Bulk cable crate - .desc = 2 coils each for every cable type. - -ent-CrateEngineeringElectricalSupplies = Electrical Supplies Crate - .desc = NT is not responsible for any workplace infighting relating to the insulated gloves included within these crates. - -ent-CrateEngineeringStationBeaconBundle = Station Beacon Bundle - .desc = A crate containing 5 station beacon assemblies for modifying the station map. - -ent-CrateEngineeringJetpack = Jetpack crate - .desc = Two jetpacks for those who don't know how to use fire extinguishers. - -ent-CrateEngineeringMiniJetpack = Mini jetpack crate - .desc = Two mini jetpacks for those who want an extra challenge. - -ent-CrateAirlockKit = Airlock kit - .desc = A kit for building 6 airlocks, doesn't include tools. - -ent-CrateEvaKit = EVA kit - .desc = A set consisting of two prestigious EVA suits and helmets. - -ent-CrateRCDAmmo = RCD ammo crate - .desc = 3 RCD ammo, each restoring 5 charges. - -ent-CrateRCD = RCD crate - .desc = A crate containing a single Rapid Construction Device. - -ent-CrateParticleDecelerators = Particle Decelerators crate - .desc = A crate containing 3 Particle Decelerators. \ No newline at end of file diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/engines-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/engines-crates.ftl deleted file mode 100644 index a72d43fa696..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/engines-crates.ftl +++ /dev/null @@ -1,39 +0,0 @@ -ent-CrateEngineeringAMEShielding = Packaged antimatter reactor crate - .desc = 9 parts for the main body of an antimatter reactor, or for expanding an existing one. - -ent-CrateEngineeringAMEJar = Antimatter containment jar crate - .desc = 3 antimatter jars, for fuelling an antimatter reactor. - -ent-CrateEngineeringAMEControl = Antimatter control unit crate - .desc = The control unit of an antimatter reactor. - -ent-CrateEngineeringSingularityEmitter = Emitter crate - .desc = An emitter, best used for singularity engines. - -ent-CrateEngineeringSingularityCollector = Radiation collector crate - .desc = A radiation collector, best used for singularity engines. - -ent-CrateEngineeringSingularityContainment = Containment field generator crate - .desc = A containment field generator, keeps the singulo in submission. - -ent-CrateEngineeringSingularityGenerator = Singularity generator crate - .desc = A singularity generator, the mother of the beast. - -ent-CrateEngineeringParticleAccelerator = PA crate - .desc = Complex to setup, but rewarding as fuck. - -ent-CrateEngineeringGenerator = Generator crate - -ent-CrateEngineeringSolar = Solar assembly crate - .desc = Parts for constructing solar panels and trackers. - -ent-CrateEngineeringShuttle = Shuttle powering crate - -ent-CrateEngineeringTeslaGenerator = Tesla generator crate - .desc = A tesla generator. God save you. - -ent-CrateEngineeringTeslaCoil = Tesla coil crate - .desc = Tesla coil. Attracts lightning and generates energy from it. - -ent-CrateEngineeringTeslaGroundingRod = Tesla grounding rod crate - .desc = Grounding rod, best for lightning protection. \ No newline at end of file diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/food-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/food-crates.ftl deleted file mode 100644 index b9f67862f2a..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/food-crates.ftl +++ /dev/null @@ -1,23 +0,0 @@ -ent-CrateFoodPizza = Emergency pizza delivery - .desc = Help do your part to end station hunger by distributing pizza to underfunded departments! Includes 4 pizzas. - -ent-CrateFoodPizzaLarge = Disaster pizza delivery - .desc = In the ultimate event that all else has failed, Find comfort in that more pizza solves everything. Includes 16 pizzas. - -ent-CrateFoodMRE = MRE crate - .desc = A military style meal fit to feed a whole department. - -ent-CrateFoodCooking = Kitchen supplies crate - .desc = Extra kitchen supplies, in case the botanists are absent. - -ent-CrateFoodDinnerware = Kitchen dinnerware crate - .desc = Extra kitchen supplies, in case the clown was allowed in the cafeteria unsupervised. - -ent-CrateFoodBarSupply = Bartending supplies crate - .desc = Extra Bar supplies, in case the clown was allowed in the bar unsupervised. - -ent-CrateFoodSoftdrinks = Softdrinks crate - .desc = A variety of sodas to complement a small party, without having to empty the soda machines. Includes 14 sodas. - -ent-CrateFoodSoftdrinksLarge = Softdrinks bulk crate - .desc = Lots of sodas taken straight out of Centcomm's own vending machines, because you just can't leave your department. Includes 28 sodas. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/fun-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/fun-crates.ftl deleted file mode 100644 index 8373237ef73..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/fun-crates.ftl +++ /dev/null @@ -1,59 +0,0 @@ -ent-CrateFunPlushie = Plushie crate - .desc = A buncha soft plushies. Throw them around and then wonder how you're gonna explain this purchase to NT. - -ent-CrateFunLizardPlushieBulk = Bulk lizard plushie crate - .desc = A buncha soft lizard plushies. Throw them around and then wonder how you're gonna explain this purchase to NT. - -ent-CrateFunInstrumentsVariety = Variety instrument collection - .desc = Get your sad station movin' and groovin' with this catch-all variety pack! Contains seven different instruments. - -ent-CrateFunInstrumentsBrass = Brass instrument ensemble crate - .desc = Bring some jazz to the station with the brass ensemble. Contains a variety of brass instruments for the whole station to play. - -ent-CrateFunInstrumentsString = String instrument ensemble crate - .desc = Pluck or pick, slap or shred! Play a smooth melody or melt peoples' faces with this package of stringed instruments. - -ent-CrateFunInstrumentsWoodwind = Woodwind instrument ensemble crate - .desc = If atmos is good at their job, use air to play music with these woodwind instruments! Real wood not guaranteed with every item. - -ent-CrateFunInstrumentsKeyedPercussion = Keyed/Percussion instrument ensemble crate - .desc = Hit some keys with some sticks or your hands, with this Keyed and Percussion instrument ensemble crate. - -ent-CrateFunInstrumentsSpecial = Special instrument collector's crate - .desc = Create some noise with this special collection of arguably-instruments! Centcomm is not responsible for any trauma caused by the contents. - -ent-CrateFunArtSupplies = Art supplies - .desc = Make some happy little accidents with lots of crayons! - -ent-CrateFunBoardGames = Board game crate - .desc = Game nights have been proven to either decrease boredom or increase murderous rage depending on the game. - -ent-CrateFunATV = ATV crate - .desc = An Absolutely Taxable Vehicle to help cargo with hauling. - -ent-CrateFunSadTromboneImplants = Sad Trombone Implants - .desc = Death's never been so fun before! Implant these to make dying a bit more happy. - -ent-CrateFunLightImplants = Light Implants - .desc = Light up your skin with these implants! - -ent-CrateFunParty = Party Crate - .desc = An entire party just waiting for you to open it. Includes party favors, party beverages, and even a cake. - -ent-CrateFunWaterGuns = Water Gun Crate - .desc = A summer special with a variety of brightly colored water guns. Water not included. - -ent-CrateFunSyndicateSegway = Syndicate segway crate - .desc = A crate containing a two-wheeler that will help you escape from the security officers. Or not. - -ent-CrateFunBoxing = Boxing Crate - .desc = Want to set up an underground fight club or host a tournament amongst station crew? This crate is for you! - -ent-CrateFunBikeHornImplants = Bike Horn Implants - .desc = A thousand honks a day keeps security officers away! - -ent-CrateFunMysteryFigurines = Mystery Figure Crate - .desc = A collection of 10 Mystery Figurine boxes. Duplicates non refundable. - -ent-CrateFunDartsSet = Dartboard Box Set - .desc = A box with everything you need for a fun game of darts. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/livestock-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/livestock-crates.ftl deleted file mode 100644 index f2ccc1c3acc..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/livestock-crates.ftl +++ /dev/null @@ -1,65 +0,0 @@ -ent-CrateNPCBee = Crate of bees - .desc = A crate containing a swarm of eight bees. - -ent-CrateNPCButterflies = Crate of butterflies - .desc = A crate containing five butterflies. - -ent-CrateNPCCat = Cat crate - .desc = A crate containing a single cat. - -ent-CrateNPCChicken = Chicken crate - .desc = A crate containing four fully grown chickens. - -ent-CrateNPCCrab = Crab crate - .desc = A crate containing three huge crabs. - -ent-CrateNPCDuck = Duck crate - .desc = A crate containing six fully grown ducks. - -ent-CrateNPCCorgi = Corgi crate - .desc = A crate containing a single corgi. - -ent-CrateNPCPuppyCorgi = Puppy Corgi crate - .desc = A crate containing a single puppy corgi. Awww. - -ent-CrateNPCCow = Cow crate - .desc = A crate containing a single cow. - -ent-CrateNPCGoat = Goat crate - .desc = A crate containing a single goat. - -ent-CrateNPCGoose = Goose crate - .desc = A crate containing two geese. - -ent-CrateNPCGorilla = Gorilla crate - .desc = A crate containing a single gorilla. - -ent-CrateNPCMonkeyCube = Monkey cube crate - .desc = A crate containing three boxes of monkey cubes. - -ent-CrateNPCKoboldCube = Kobold cube crate - .desc = A crate containing three boxes of kobold cubes. - -ent-CrateNPCMouse = Mice crate - .desc = A crate containing five mice. - -ent-CrateNPCParrot = Parrot crate - .desc = A crate containing three parrots. - -ent-CrateNPCPenguin = Penguin crate - .desc = A crate containing two penguins. - -ent-CrateNPCMothroach = Crate of mothroaches - .desc = A crate containing four mothroaches. - -ent-CrateNPCPig = Pig crate - .desc = A crate containing a single pig. - -ent-CrateNPCSnake = Snake crate - .desc = A crate containing three snakes. - -ent-CrateNPCLizard = Lizard crate - .desc = A crate containing a lizard. - -ent-CrateNPCKangaroo = Kangaroo crate - .desc = A crate containing a kangaroo. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/materials-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/materials-crates.ftl deleted file mode 100644 index c204215474a..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/materials-crates.ftl +++ /dev/null @@ -1,26 +0,0 @@ -ent-CrateMaterialGlass = Glass sheet crate - .desc = 90 sheets of glass, packed with care. - -ent-CrateMaterialSteel = Steel sheet crate - .desc = 90 sheets of steel. - -ent-CrateMaterialTextiles = Textiles crate - .desc = 60 pieces of cloth and 30 pieces of durathread. - -ent-CrateMaterialPlastic = Plastic sheet crate - .desc = 90 sheets of plastic. - -ent-CrateMaterialWood = Wood crate - .desc = Bunch of wood planks. - -ent-CrateMaterialPlasteel = Plasteel crate - .desc = 90 sheets of plasteel. - -ent-CrateMaterialPlasma = Solid plasma crate - .desc = 90 sheets of plasma. - -ent-CrateMaterialCardboard = Cardboard crate - .desc = 60 pieces of cardboard. - -ent-CrateMaterialPaper = Paper crate - .desc = 90 sheets of paper. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl deleted file mode 100644 index 303ede62e10..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl +++ /dev/null @@ -1,43 +0,0 @@ -ent-CrateMedicalDefib = Defibrillator crate - -ent-CrateMedicalSupplies = Medical supplies crate - .desc = Basic medical supplies. - -ent-CrateChemistrySupplies = Chemistry supplies crate - .desc = Basic chemistry supplies. - -ent-CrateChemistryVials = Vial supply crate - .desc = Crate filled with a box of vials. - -ent-CrateMindShieldImplants = MindShield implant crate - .desc = Crate filled with 3 MindShield implants. - -ent-CrateMedicalSurgery = Surgical supplies crate - .desc = Surgical instruments. - -ent-CrateMedicalScrubs = Medical scrubs crate - .desc = Medical clothings. - -ent-CrateEmergencyBurnKit = Emergency burn kit - .desc = Crate filled with a burn treatment kit - -ent-CrateEmergencyToxinKit = Emergency toxin kit - .desc = Crate filled with a toxin treatment kit - -ent-CrateEmergencyO2Kit = Emergency O2 kit - .desc = Crate filled with an O2 treatment kit - -ent-CrateEmergencyBruteKit = Emergency brute kit - .desc = Crate filled with a brute treatment kit - -ent-CrateEmergencyAdvancedKit = Emergency advanced kit - .desc = Crate filled with an advanced treatment kit - -ent-CrateEmergencyRadiationKit = Emergency radiation kit - .desc = Crate filled with a radiation treatment kit - -ent-CrateBodyBags = Body bags crate - .desc = Contains ten body bags. - -ent-CrateVirologyBiosuit = Virology bio suit crate - .desc = Contains 2 biohazard suits to ensure that no disease will distract you from treating the crew. Requires Medical access to open. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/salvage-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/salvage-crates.ftl deleted file mode 100644 index 19e5d37e6c3..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/salvage-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateSalvageEquipment = Salvage equipment crate - .desc = For the daring. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/science-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/science-crates.ftl deleted file mode 100644 index 91fd4d6cab4..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/science-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateScienceBiosuit = scientist bio suit crate - .desc = Contains 2 biohazard suits to ensure that no disease will distract you from doing science. Requires Science access to open. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/security-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/security-crates.ftl deleted file mode 100644 index f969e153975..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/security-crates.ftl +++ /dev/null @@ -1,20 +0,0 @@ -ent-CrateSecurityArmor = armor crate - .desc = Three vests of well-rounded, decently-protective armor. Requires Security access to open. - -ent-CrateSecurityHelmet = helmet crate - .desc = Contains three standard-issue brain buckets. Requires Security access to open. - -ent-CrateSecurityNonlethal = nonlethals crate - .desc = Disabler weapons. Requires Security access to open. - -ent-CrateSecurityRiot = swat crate - .desc = Contains two sets of riot armor, helmets, shields, and enforcers loaded with beanbags. Extra ammo is included. Requires Armory access to open. - -ent-CrateSecuritySupplies = security supplies crate - .desc = Contains various supplies for the station's Security team. Requires Security access to open. - -ent-CrateRestraints = restraints crate - .desc = Contains two boxes each of handcuffs and zipties. Requires Security access to open. - -ent-CrateSecurityBiosuit = security bio suit crate - .desc = Contains 2 biohazard suits to ensure that no disease will distract you from your duties. Requires Security access to open. diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/service-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/service-crates.ftl deleted file mode 100644 index d44be5e979d..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/service-crates.ftl +++ /dev/null @@ -1,38 +0,0 @@ -ent-CrateServiceJanitorialSupplies = Janitorial supplies crate - .desc = Fight back against dirt and grime with Nanotrasen's Janitorial Essentials(tm)! Contains three buckets, caution signs, and cleaner grenades. Also has a single mop, broom, spray cleaner, rag, and trash bag. - -ent-CrateServiceReplacementLights = Replacement lights crate - .desc = May the light of Aether shine upon this station! Or at least, the light of forty two light tubes and twenty one light bulbs. - -ent-CrateMousetrapBoxes = Mousetraps crate - .desc = Mousetraps, for when all of service is being haunted by an entire horde of rats. Use sparingly... or not. - -ent-CrateServiceSmokeables = Smokeables crate - .desc = Tired of a quick death on the station? Order this crate and chain-smoke your way to a coughy demise! - -ent-CrateServiceCustomSmokable = DIY smokeables crate - .desc = Want to get a little creative with what you use to destroy your lungs? Then this crate is for you! Has everything you need to roll your own cigarettes. - -ent-CrateServiceBureaucracy = Bureaucracy crate - .desc = Several stacks of paper and a few pens, what more can you ask for. - -ent-CrateServicePersonnel = Personnel crate - .desc = Contains a box of blank ID cards and PDAs. - -ent-CrateServiceBooks = Books crate - .desc = Contains 10 empty books of random appearance - -ent-CrateServiceGuidebooks = Guidebooks crate - .desc = Contains guidebooks. - -ent-CrateServiceBox = Boxes crate - .desc = Contains 6 empty multipurpose boxes. - -ent-CrateJanitorBiosuit = Janitor bio suit crate - .desc = Contains 2 biohazard suits to ensure that no disease will distract you from cleaning. - -ent-CrateServiceTheatre = Theatrical performances crate - .desc = Contains a moth cloak, barber scissors, maid uniform, clown and mime attributes, and other performance charms. - -ent-CrateJanitorExplosive = Janitorial bomb suit crate - .desc = Supplies a bomb suit for cleaning up any explosive compounds, buy one today! diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/syndicate-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/syndicate-crates.ftl deleted file mode 100644 index 255dbcc8575..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/syndicate-crates.ftl +++ /dev/null @@ -1,9 +0,0 @@ -ent-CrateSyndicate = Syndicate crate - .desc = A dark steel crate with red bands and a letter S embossed on the front. - -ent-CrateSyndicateSurplusBundle = Syndicate surplus crate - .desc = Contains 50 telecrystals worth of completely random Syndicate items. It can be useless junk or really good. - -ent-CrateSyndicateSuperSurplusBundle = Syndicate super surplus crate - .desc = Contains 125 telecrystals worth of completely random Syndicate items. - diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/vending-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/vending-crates.ftl deleted file mode 100644 index 2de6d9bd391..00000000000 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/vending-crates.ftl +++ /dev/null @@ -1,68 +0,0 @@ -ent-CrateVendingMachineRestockBoozeFilled = Booze-O-Mat restock crate - .desc = Contains a restock box for the Booze-O-Mat. - -ent-CrateVendingMachineRestockClothesFilled = Clothing restock crate - .desc = Contains a pair of restock boxes, one for the ClothesMate and one for the AutoDrobe. - -ent-CrateVendingMachineRestockDinnerwareFilled = Plasteel Chef restock crate - .desc = Contains a restock box for the Plasteel Chef vending machine. - -ent-CrateVendingMachineRestockEngineeringFilled = EngiVend restock crate - .desc = Contains a restock box for the EngiVend. Also supports the YouTool. - -ent-CrateVendingMachineRestockGamesFilled = Good Clean Fun restock crate - .desc = Contains a restock box for the Good Clean Fun vending machine. - -ent-CrateVendingMachineRestockHotDrinksFilled = Solar's Best restock crate - .desc = Contains two restock boxes for Solar's Best Hot Drinks vending machine. - -ent-CrateVendingMachineRestockMedicalFilled = NanoMed restock crate - .desc = Contains a restock box, compatible with the NanoMed and NanoMedPlus. - -ent-CrateVendingMachineRestockNutriMaxFilled = NutriMax restock crate - .desc = Contains a restock box for the NutriMax vending machine. - -ent-CrateVendingMachineRestockPTechFilled = PTech restock crate - .desc = Contains a restock box for the PTech bureaucracy dispenser. - -ent-CrateVendingMachineRestockRobustSoftdrinksFilled = Robust Softdrinks restock crate - .desc = Contains two restock boxes for the Robust Softdrinks LLC vending machine. - -ent-CrateVendingMachineRestockSalvageEquipmentFilled = Salvage restock crate - .desc = Contains a restock box for the salvage vendor. - -ent-CrateVendingMachineRestockSecTechFilled = SecTech restock crate - .desc = Contains a restock box for the SecTech vending machine. - -ent-CrateVendingMachineRestockSeedsFilled = MegaSeed restock crate - .desc = Contains a restock box for the MegaSeed vending machine. - -ent-CrateVendingMachineRestockSmokesFilled = ShadyCigs restock crate - .desc = Contains two restock boxes for the ShadyCigs vending machine. - -ent-CrateVendingMachineRestockVendomatFilled = Vendomat restock crate - .desc = Contains a restock box for a Vendomat vending machine. - -ent-CrateVendingMachineRestockRoboticsFilled = Robotech Deluxe restock crate - .desc = Contains a restock box for a Robotech Deluxe vending machine. - -ent-CrateVendingMachineRestockTankDispenserFilled = Tank dispenser restock crate - .desc = Contains a restock box for an Engineering or Atmospherics tank dispenser. - -ent-CrateVendingMachineRestockHappyHonkFilled = Happy honk restock crate - .desc = Contains a restock box for a happy honk dispenser. - -ent-CrateVendingMachineRestockGetmoreChocolateCorpFilled = Getmore Chocolate Corp restock crate - .desc = Contains a restock box for a Getmore Chocolate Corp dispenser. - -ent-CrateVendingMachineRestockChangFilled = Chang restock crate - .desc = Contains a restock box for a Mr. Chang dispenser. - -ent-CrateVendingMachineRestockDiscountDansFilled = Discount Dans restock crate - .desc = Contains a restock box for a Discount Dan's dispenser. - -ent-CrateVendingMachineRestockDonutFilled = Donut restock crate - .desc = Contains a restock box for a Monkin' Donuts dispenser. - -ent-CrateVendingMachineRestockChemVendFilled = ChemVend restock crate - .desc = Contains a restock box for the ChemVend. \ No newline at end of file diff --git a/Resources/Locale/en-US/prototypes/emitter.ftl b/Resources/Locale/en-US/prototypes/emitter.ftl deleted file mode 100644 index 00d53d55ab8..00000000000 --- a/Resources/Locale/en-US/prototypes/emitter.ftl +++ /dev/null @@ -1,4 +0,0 @@ -### Emitter entity prototype data. - -ent-emitter = emitter - .desc = A machine that fires bolts of energy, used for powering containment fields at a safe distance. diff --git a/Resources/Locale/en-US/prototypes/entities/objects/specific/xenoarchaelogy/artifact-equipment.ftl b/Resources/Locale/en-US/prototypes/entities/objects/specific/xenoarchaelogy/artifact-equipment.ftl deleted file mode 100644 index 8a836553e32..00000000000 --- a/Resources/Locale/en-US/prototypes/entities/objects/specific/xenoarchaelogy/artifact-equipment.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateArtifactContainer = Artifact container - .desc = Used to safely contain and move artifacts. diff --git a/Resources/Locale/en-US/prototypes/entities/structures/shuttles/thrusters.ftl b/Resources/Locale/en-US/prototypes/entities/structures/shuttles/thrusters.ftl deleted file mode 100644 index 02cd9aac59e..00000000000 --- a/Resources/Locale/en-US/prototypes/entities/structures/shuttles/thrusters.ftl +++ /dev/null @@ -1,14 +0,0 @@ -ent-BaseThruster = thruster - .desc = A thruster that allows a shuttle to move. - -ent-Thruster = { ent-BaseThruster } - .desc = { ent-BaseThruster.desc } - -ent-DebugThruster = debug thruster - .desc = It goes nyooooooom. It doesn't need power nor space. - -ent-Gyroscope = gyroscope - .desc = Increases the shuttle's potential angular rotation. - -ent-DebugGyroscope = debug gyroscope - .desc = { ent-Gyroscope.desc } diff --git a/Resources/Locale/en-US/prototypes/entities/structures/storage/canisters/gas-canisters.ftl b/Resources/Locale/en-US/prototypes/entities/structures/storage/canisters/gas-canisters.ftl deleted file mode 100644 index a07dda96764..00000000000 --- a/Resources/Locale/en-US/prototypes/entities/structures/storage/canisters/gas-canisters.ftl +++ /dev/null @@ -1,80 +0,0 @@ -ent-GasCanister = Gas canister - .desc = A canister that can contain any type of gas. It can be attached to connector ports using a wrench. - -ent-StorageCanister = Storage canister - .desc = { ent-GasCanister.desc } - -ent-AirCanister = Air canister - .desc = A canister that can contain any type of gas. This one is supposed to contain air mixture. It can be attached to connector ports using a wrench. - -ent-OxygenCanister = Oxygen canister - .desc = A canister that can contain any type of gas. This one is supposed to contain oxygen. It can be attached to connector ports using a wrench. - -ent-LiquidOxygenCanister = Liquid oxygen canister - .desc = A canister that can contain any type of gas. This one is supposed to contain liquid oxygen. It can be attached to connector ports using a wrench. - -ent-NitrogenCanister = Nitrogen canister - .desc = A canister that can contain any type of gas. This one is supposed to contain nitrogen. It can be attached to connector ports using a wrench. - -ent-LiquidNitrogenCanister = Liquid nitrogen canister - .desc = A canister that can contain any type of gas. This one is supposed to contain liquid nitrogen. It can be attached to connector ports using a wrench. - -ent-CarbonDioxideCanister = Carbon dioxide canister - .desc = A canister that can contain any type of gas. This one is supposed to contain carbon dioxide. It can be attached to connector ports using a wrench. - -ent-LiquidCarbonDioxideCanister = Liquid carbon dioxide canister - .desc = A canister that can contain any type of gas. This one is supposed to contain liquid carbon dioxide. It can be attached to connector ports using a wrench. - -ent-PlasmaCanister = Plasma canister - .desc = A canister that can contain any type of gas. This one is supposed to contain plasma. It can be attached to connector ports using a wrench. - -ent-TritiumCanister = Tritium canister - .desc = A canister that can contain any type of gas. This one is supposed to contain tritium. It can be attached to connector ports using a wrench. - -ent-WaterVaporCanister = Water vapor canister - .desc = A canister that can contain any type of gas. This one is supposed to contain water vapor. It can be attached to connector ports using a wrench. - -ent-AmmoniaCanister = Ammonia canister - .desc = A canister that can contain any type of gas. This one is supposed to contain ammonia. It can be attached to connector ports using a wrench. - -ent-NitrousOxideCanister = Nitrous oxide canister - .desc = A canister that can contain any type of gas. This one is supposed to contain nitrous oxide. It can be attached to connector ports using a wrench. - -ent-FrezonCanister = Frezon canister - .desc = A coolant with light hallucinogenic properties. Proceed. - -ent-GasCanisterBrokenBase = Broken gas canister - .desc = A broken gas canister. Not useless yet, as it can be salvaged for high quality materials. - -ent-StorageCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } - -ent-AirCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } - -ent-OxygenCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } - -ent-NitrogenCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } - -ent-CarbonDioxideCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } - -ent-PlasmaCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } - -ent-TritiumCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } - -ent-WaterVaporCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } - -ent-AmmoniaCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } - -ent-NitrousOxideCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } - -ent-FrezonCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } diff --git a/Resources/Locale/en-US/prototypes/entities/structures/storage/tanks/tanks.ftl b/Resources/Locale/en-US/prototypes/entities/structures/storage/tanks/tanks.ftl deleted file mode 100644 index 309d29ca437..00000000000 --- a/Resources/Locale/en-US/prototypes/entities/structures/storage/tanks/tanks.ftl +++ /dev/null @@ -1,20 +0,0 @@ -ent-WeldingFuelTank = fuel tank - .desc = A fuel tank. It's used to store high amounts of fuel. - -ent-WeldingFuelTankFull = { ent-WeldingFuelTank } - .desc = { ent-WeldingFuelTank.desc } - -ent-WeldingFuelTankHighCapacity = high-capacity fuel tank - .desc = A highly pressurized fuel tank made to hold gargantuan amounts of welding fuel. - -ent-WaterTank = water tank - .desc = A water tank. It's used to store high amounts of water. - -ent-WaterTankFull = { ent-WaterTank } - .desc = { ent-WaterTank.desc } - -ent-WaterCooler = water cooler - .desc = Seems like a good place to stand and waste time. It has a stock of paper cups on the side. - -ent-WaterTankHighCapacity = high-capacity water tank - .desc = A highly pressurized water tank made to hold gargantuan amounts of water. diff --git a/Resources/Locale/en-US/prototypes/gas-tanks.ftl b/Resources/Locale/en-US/prototypes/gas-tanks.ftl deleted file mode 100644 index 6a11b25ff85..00000000000 --- a/Resources/Locale/en-US/prototypes/gas-tanks.ftl +++ /dev/null @@ -1,21 +0,0 @@ -### Gas tank entity prototype data. - -ent-gas-tank-base = gas tank - .desc = It's a gas tank. It contains gas. - -ent-oxygen-tank = oxygen tank - .desc = A tank of oxygen. -ent-yellow-oxygen-tank = { ent-oxygen-tank } - .desc = A tank of oxygen. This one is in yellow. -ent-red-oxygen-tank = { ent-oxygen-tank } - .desc = A tank of oxygen. This one is in red. -ent-emergency-oxygen-tank = emergency oxygen tank - .desc = Used for emergencies. Contains very little oxygen, so try to conserve it until you actually need it. -ent-extended-emergency-oxygen-tank = extended-capacity emergency oxygen tank -ent-double-emergency-oxygen-tank = double emergency oxygen tank - -ent-air-tank = air tank - .desc = Mixed anyone? - -ent-plasma-tank = plasma tank - .desc = Contains dangerous plasma. Do not inhale. Warning: extremely flammable. diff --git a/Resources/Locale/en-US/prototypes/solar_panels.ftl b/Resources/Locale/en-US/prototypes/solar_panels.ftl deleted file mode 100644 index 698ef2a7f67..00000000000 --- a/Resources/Locale/en-US/prototypes/solar_panels.ftl +++ /dev/null @@ -1,14 +0,0 @@ -### Power entity prototype data. - -### Solars -ent-solar-tracker = solar tracker - .desc = A solar tracker. Can be wired to a solar array and computer to track solar positions. -ent-solar-assembly = solar assembly - .desc = A solar assembly. Anchor to a wire to start building a solar panel. -ent-solar-panel = solar panel - .desc = Generates power from sunlight. Usually used to power replacements for sunlight. Fragile. - -ent-solar-tracker-electronics = solar tracker electronics - .desc = An electronics board for making a solar tracker. -ent-solar-assembly-part = solar assembly parts - .desc = Used in the construction of solar assemblies for solar panels and trackers. \ 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 57b7fd8a78c..3da805abc5a 100644 --- a/Resources/Locale/en-US/reagents/meta/medicine.ftl +++ b/Resources/Locale/en-US/reagents/meta/medicine.ftl @@ -5,7 +5,7 @@ reagent-name-dylovene = dylovene reagent-desc-dylovene = A broad-spectrum anti-toxin, which treats toxin damage in the blood stream. Overdosing will cause vomiting, dizzyness and pain. reagent-name-diphenhydramine = diphenhydramine -reagent-desc-diphenhydramine = Rapidly purges the body of histamine and reduces jitteriness. +reagent-desc-diphenhydramine = Rapidly purges the body of histamine, reduces jitteriness, and treats poison damage. reagent-name-arithrazine = arithrazine reagent-desc-arithrazine = A mildly unstable medication used for the most extreme case of radiation poisoning. Exerts minor stress on the body. @@ -14,7 +14,7 @@ reagent-name-bicaridine = bicaridine reagent-desc-bicaridine = An analgesic which is highly effective at treating brute damage. It's useful for stabilizing people who have been severely beaten, as well as treating less life-threatening injuries. reagent-name-cryoxadone = cryoxadone -reagent-desc-cryoxadone = Required for the proper function of cryogenics. Heals all standard types of damage very swiftly, but only works in temperatures under 150K. +reagent-desc-cryoxadone = Required for the proper function of cryogenics. Heals all standard types of damage, but only works in temperatures under 213K. reagent-name-doxarubixadone = doxarubixadone reagent-desc-doxarubixadone = A cryogenics chemical. Heals certain types of cellular damage done by Slimes and improper use of other chemicals. @@ -23,7 +23,7 @@ reagent-name-dermaline = dermaline reagent-desc-dermaline = An advanced chemical that is more effective at treating burn damage than kelotane. reagent-name-dexalin = dexalin -reagent-desc-dexalin = Used for treating minor oxygen deprivation. A required reagent for dexalin plus. +reagent-desc-dexalin = Used for treating minor oxygen deprivation and bloodloss. A required reagent for dexalin plus. reagent-name-dexalin-plus = dexalin plus reagent-desc-dexalin-plus = Used in treatment of extreme cases of oxygen deprivation and bloodloss. Flushes heartbreaker toxin out of the blood stream. @@ -32,7 +32,7 @@ reagent-name-epinephrine = epinephrine reagent-desc-epinephrine = An effective stabilizing chemical used to keep a critical person from dying to asphyxiation while patching up minor damage during crit. Flushes heartbreaker toxin out the blood stream at the cost of more epinephrine, but may add histamine. Helps reduce stun time. Commonly found in the form of emergency medipens. reagent-name-hyronalin = hyronalin -reagent-desc-hyronalin = A weak treatment for radiation damage. A precursor to arithrazine and phalanximine. Can cause vomitting. +reagent-desc-hyronalin = A weak treatment for radiation damage. A precursor to arithrazine and phalanximine. Can cause vomiting. reagent-name-ipecac = ipecac reagent-desc-ipecac = A rapid-acting emetic. Useful for stopping unmetabolized poisons, or mass-vomiting sessions. @@ -47,10 +47,10 @@ reagent-name-leporazine = leporazine reagent-desc-leporazine = A chemical used to stabilize body temperature and rapidly cure cold damage. Great for unprotected EVA travel, but prevents the use of cryogenic tubes. reagent-name-barozine = barozine -reagent-desc-barozine = A potent chemical that prevents pressure damage. Causes extreme stress on the body. Commonly found in the form of space medipens. +reagent-desc-barozine = A potent chemical that prevents pressure damage. Causes extreme stress on the body. reagent-name-phalanximine = phalanximine -reagent-desc-phalanximine = An advanced chemical used in the treatment of cancer. Causes moderate radiation poisoning. +reagent-desc-phalanximine = An advanced chemical used in the treatment of cancer. Causes moderate radiation poisoning and vomiting. reagent-name-ambuzol = ambuzol reagent-desc-ambuzol = A highly engineered substance able to halt the progression of a zombie infection. @@ -101,10 +101,10 @@ reagent-name-diphenylmethylamine = diphenylmethylamine reagent-desc-diphenylmethylamine = A more stable medicine than ethyloxyephedrine. Useful for keeping someone awake. reagent-name-sigynate = sigynate -reagent-desc-sigynate = A thick pink syrup useful for neutralizing acids and soothing trauma caused by acids. Tastes sweet! +reagent-desc-sigynate = A thick pink syrup useful for neutralizing acids and soothing trauma caused by acids. Tastes sweet! reagent-name-saline = saline -reagent-desc-saline = "A mixture of salt and water. Commonly used to treat dehydration or low fluid presence in blood." +reagent-desc-saline = A mixture of salt and water. Commonly used to treat dehydration or low fluid presence in blood. reagent-name-lacerinol = lacerinol reagent-desc-lacerinol = A fairly unreactive chemical that boosts collagen sythesis to incredible levels, healing slash trauma. @@ -125,4 +125,7 @@ reagent-name-insuzine = insuzine reagent-desc-insuzine = Rapidly repairs dead tissue caused by electrocution, but cools you slightly. Completely freezes the patient when overdosed. reagent-name-necrosol = necrosol -reagent-desc-necrosol = A necrotic substance that seems to be able to heal frozen corpses +reagent-desc-necrosol = A necrotic substance that seems to be able to heal frozen corpses. + +reagent-name-aloxadone = aloxadone +reagent-desc-aloxadone = A cryogenics chemical. Used to treat severe third degree burns via regeneration of the burnt tissue. Works regardless of the patient being alive or dead. diff --git a/Resources/Locale/en-US/round-end/cryostorage.ftl b/Resources/Locale/en-US/round-end/cryostorage.ftl new file mode 100644 index 00000000000..7b36b528b7c --- /dev/null +++ b/Resources/Locale/en-US/round-end/cryostorage.ftl @@ -0,0 +1,10 @@ +cryostorage-insert-message-permanent = [color=white]You are now inside of a [bold][color=cyan]cryogenic sleep unit[/color][/bold]. If you [bold]disconnect[/bold], [bold]ghost[/bold], or [bold]wait {$time} minutes[/bold], [color=red]your body will be removed[/color] and your job slot will be opened. You can exit at any time to prevent this.[/color] +cryostorage-insert-message-temp = [color=white]You are now inside of a [bold][color=cyan]cryogenic sleep unit[/color][/bold]. If you [bold]ghost[/bold] or [bold]wait {$time} minutes[/bold], [color=red]your body will be removed[/color] and your job slot will be opened. If you [bold][color=cyan]disconnect[/color][/bold], your body will be safely held until you rejoin.[/color] + +cryostorage-ui-window-title = Cryogenic Sleep Unit +cryostorage-ui-label-slot-name = [bold]{CAPITALIZE($slot)}:[/bold] +cryostorage-ui-button-remove = Remove +cryostorage-ui-filler-hand = inhand +cryostorage-ui-label-no-bodies = No bodies in cryostorage + +cryostorage-popup-access-denied = Access denied! diff --git a/Resources/Locale/en-US/shuttles/timer.ftl b/Resources/Locale/en-US/shuttles/timer.ftl new file mode 100644 index 00000000000..82ca71d6540 --- /dev/null +++ b/Resources/Locale/en-US/shuttles/timer.ftl @@ -0,0 +1,2 @@ +shuttle-timer-eta = ETA +shuttle-timer-etd = ETD diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/armory.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/armory.ftl index 0b7e748ddba..dc5de63034b 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/armory.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/armory.ftl @@ -1,12 +1,12 @@ -ent-CrateArmorySMG = { ent-CrateWeaponSecure } - .desc = { ent-CrateWeaponSecure.desc } -ent-CrateArmoryShotgun = { ent-CrateWeaponSecure } - .desc = { ent-CrateWeaponSecure.desc } -ent-CrateTrackingImplants = { ent-CrateWeaponSecure } - .desc = { ent-CrateWeaponSecure.desc } -ent-CrateTrainingBombs = { ent-CrateWeaponSecure } - .desc = { ent-CrateWeaponSecure.desc } -ent-CrateArmoryLaser = { ent-CrateWeaponSecure } - .desc = { ent-CrateWeaponSecure.desc } -ent-CrateArmoryPistols = { ent-CrateWeaponSecure } - .desc = { ent-CrateWeaponSecure.desc } +ent-CrateArmorySMG = SMG crate + .desc = Contains two high-powered, semiautomatic rifles with four mags. Requires Armory access to open. +ent-CrateArmoryShotgun = shotgun crate + .desc = For when the enemy absolutely needs to be replaced with lead. Contains two Enforcer Combat Shotguns, and some standard shotgun shells. Requires Armory access to open. +ent-CrateTrackingImplants = tracking implants + .desc = Contains a handful of tracking implanters. Good for prisoners you'd like to release but still keep track of. +ent-CrateTrainingBombs = training bombs + .desc = Contains three low-yield training bombs for security to learn defusal and safe ordnance disposal, EOD suit not included. Requires Armory access to open. +ent-CrateArmoryLaser = lasers crate + .desc = Contains three standard-issue laser rifles. Requires Armory access to open. +ent-CrateArmoryPistols = pistols crate + .desc = Contains two standard NT pistols with four mags. Requires Armory access to open. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/botany.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/botany.ftl index 1dc32bcb5c7..c0697e8bf61 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/botany.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/botany.ftl @@ -1,8 +1,8 @@ -ent-CrateHydroponicsSeedsExotic = { ent-CrateHydroSecure } - .desc = { ent-CrateHydroSecure.desc } -ent-CrateHydroponicsSeedsMedicinal = { ent-CrateHydroSecure } - .desc = { ent-CrateHydroSecure.desc } -ent-CrateHydroponicsTools = { ent-CrateHydroponics } - .desc = { ent-CrateHydroponics.desc } -ent-CrateHydroponicsSeeds = { ent-CrateHydroponics } - .desc = { ent-CrateHydroponics.desc } +ent-CrateHydroponicsSeedsExotic = exotic seeds crate + .desc = Any entrepreneuring botanist's dream. Contains many different exotic seeds. Requires Hydroponics access to open. +ent-CrateHydroponicsSeedsMedicinal = medicinal seeds crate + .desc = The wannabe chemist's dream. The power of medicine is at your fingertips! Requires Hydroponics access to open. +ent-CrateHydroponicsTools = hydroponics equipment crate + .desc = Supplies for growing a great garden! Contains some spray bottles of plant chemicals, a hatchet, a mini-hoe, scythe, as well as a pair of leather gloves and a botanist's apron. +ent-CrateHydroponicsSeeds = seeds crate + .desc = Big things have small beginnings. Contains twelve different seeds. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/cargo.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/cargo.ftl index eae159cb31f..34481544348 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/cargo.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/cargo.ftl @@ -1,4 +1,4 @@ -ent-CrateCargoLuxuryHardsuit = { ent-CratePirate } - .desc = { ent-CratePirate.desc } +ent-CrateCargoLuxuryHardsuit = luxury mining hardsuit crate + .desc = Finally, a hardsuit Quartermasters could call their own. Centcomm has heard you, now stop asking. ent-CrateCargoGambling = the grand lottery $$$ .desc = A box containing treasure beyond your greatest imaginations! diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/chemistry.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/chemistry.ftl index 18d5d9b1708..c5d620f3721 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/chemistry.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/chemistry.ftl @@ -1,8 +1,8 @@ -ent-CrateChemistryP = { ent-CrateChemistrySecure } - .desc = { ent-CrateChemistrySecure.desc } -ent-CrateChemistryS = { ent-CrateChemistrySecure } - .desc = { ent-CrateChemistrySecure.desc } -ent-CrateChemistryD = { ent-CrateChemistrySecure } - .desc = { ent-CrateChemistrySecure.desc } -ent-CratePlantBGone = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } +ent-CrateChemistryP = chemicals crate (P) + .desc = Contains chemicals from the P-Block of elements. Requires Chemistry access to open. +ent-CrateChemistryS = chemicals crate (S) + .desc = Contains chemicals from the S-Block of elements. Requires Chemistry access to open. +ent-CrateChemistryD = chemicals crate (D) + .desc = Contains chemicals from the D-Block of elements. Requires Chemistry access to open. +ent-CratePlantBGone = bulk Plant-B-Gone crate + .desc = From Monstano. "Unwanted Weeds, Meet Your Celestial Roundup!" diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/circuitboards.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/circuitboards.ftl index a6cc7d8023f..5c368283f2b 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/circuitboards.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/circuitboards.ftl @@ -1,2 +1,2 @@ -ent-CrateCrewMonitoringBoards = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } +ent-CrateCrewMonitoringBoards = crew monitoring boards + .desc = Has two crew monitoring console and server replacements. Requires engineering access to open. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/emergency.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/emergency.ftl index ce760e0e928..16dd1831254 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/emergency.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/emergency.ftl @@ -1,16 +1,16 @@ -ent-CrateEmergencyExplosive = { ent-CrateSecgear } - .desc = { ent-CrateSecgear.desc } -ent-CrateEmergencyFire = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateEmergencyInternals = emergency suits - .desc = { ent-CrateInternals.desc } -ent-CrateEmergencyInternalsLarge = emergency suits (Large) - .desc = { ent-CrateInternals.desc } -ent-CrateSlimepersonLifeSupport = { ent-CrateInternals } - .desc = { ent-CrateInternals.desc } -ent-CrateEmergencyRadiation = { ent-CrateRadiation } - .desc = { ent-CrateRadiation.desc } -ent-CrateEmergencyInflatablewall = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateGenericBiosuit = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } +ent-CrateEmergencyExplosive = bomb suit crate + .desc = Science gone bonkers? Beeping behind the airlock? Buy now and be the hero the station des... I mean needs! (time not included) +ent-CrateEmergencyFire = firefighting crate + .desc = Only you can prevent station fires. Partner up with two firefighter suits, gas masks, flashlights, large oxygen tanks, extinguishers, and hardhats! +ent-CrateEmergencyInternals = internals crate + .desc = Master your life energy and control your breathing with three breath masks, three emergency oxygen tanks and three large air tanks. +ent-CrateEmergencyInternalsLarge = internals crate (large) + .desc = Master your life energy and control your breathing with six breath masks, six emergency oxygen tanks and six large air tanks. +ent-CrateSlimepersonLifeSupport = slimeperson life support crate + .desc = Contains four breath masks and four large nitrogen tanks. +ent-CrateEmergencyRadiation = radiation protection crate + .desc = Survive the Nuclear Apocalypse and Supermatter Engine alike with two sets of Radiation suits. Each set contains a helmet, suit, and Geiger counter. We'll even throw in a bottle of vodka and some glasses too, considering the life-expectancy of people who order this. +ent-CrateEmergencyInflatablewall = inflatable wall crate + .desc = Three stacks of inflatable walls for when the stations metal walls don't want to hold atmosphere anymore. +ent-CrateGenericBiosuit = emergency bio suit crate + .desc = Contains 2 biohazard suits to ensure that no disease will distract you from what you're doing there. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl index 6ba37c3a5ed..5921e53eeaa 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl @@ -1,30 +1,30 @@ -ent-CrateEngineeringGear = { ent-CrateEngineering } - .desc = { ent-CrateEngineering.desc } -ent-CrateEngineeringToolbox = { ent-CrateEngineering } - .desc = { ent-CrateEngineering.desc } -ent-CrateEngineeringCableLV = { ent-CrateElectrical } - .desc = { ent-CrateElectrical.desc } -ent-CrateEngineeringCableMV = { ent-CrateElectrical } - .desc = { ent-CrateElectrical.desc } -ent-CrateEngineeringCableHV = { ent-CrateElectrical } - .desc = { ent-CrateElectrical.desc } -ent-CrateEngineeringCableBulk = { ent-CrateElectrical } - .desc = { ent-CrateElectrical.desc } -ent-CrateEngineeringElectricalSupplies = { ent-CrateElectrical } - .desc = { ent-CrateElectrical.desc } -ent-CrateEngineeringStationBeaconBundle = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateEngineeringJetpack = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateEngineeringMiniJetpack = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateAirlockKit = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateEvaKit = { ent-CrateCommandSecure } - .desc = { ent-CrateCommandSecure.desc } -ent-CrateRCDAmmo = { ent-CrateEngineering } - .desc = { ent-CrateEngineering.desc } -ent-CrateRCD = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateParticleDecelerators = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } +ent-CrateEngineeringGear = engineering gear crate + .desc = Various engineering gear parts. +ent-CrateEngineeringToolbox = toolbox crate + .desc = Two mechanical and two electrical toolboxes. +ent-CrateEngineeringCableLV = LV cable crate + .desc = 3 coils of LV cables. +ent-CrateEngineeringCableMV = MV cable crate + .desc = 3 coils of LV cables. +ent-CrateEngineeringCableHV = HV cable crate + .desc = 3 coils of HV cables. +ent-CrateEngineeringCableBulk = bulk cable crate + .desc = 2 coils each for every cable type. +ent-CrateEngineeringElectricalSupplies = electrical supplies crate + .desc = NT is not responsible for any workplace infighting relating to the insulated gloves included within these crates. +ent-CrateEngineeringStationBeaconBundle = station beacon bundle + .desc = A crate containing 5 station beacon assemblies for modifying the station map. +ent-CrateEngineeringJetpack = jetpack crate + .desc = Two jetpacks for those who don't know how to use fire extinguishers. +ent-CrateEngineeringMiniJetpack = mini jetpack crate + .desc = Two mini jetpacks for those who want an extra challenge. +ent-CrateAirlockKit = airlock kit + .desc = A kit for building 6 airlocks, doesn't include tools. +ent-CrateEvaKit = EVA kit + .desc = A set consisting of two prestigious EVA suits and helmets. +ent-CrateRCDAmmo = RCD ammo crate + .desc = 3 RCD ammo, each restoring 5 charges. +ent-CrateRCD = RCD crate + .desc = A crate containing a single Rapid Construction Device. +ent-CrateParticleDecelerators = particle decelerators crate + .desc = A crate containing 3 Particle Decelerators. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engines.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engines.ftl index 58a8b72bbf2..67cfbf012d5 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engines.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engines.ftl @@ -1,28 +1,29 @@ -ent-CrateEngineeringAMEShielding = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateEngineeringAMEJar = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateEngineeringAMEControl = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateEngineeringSingularityEmitter = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateEngineeringSingularityCollector = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateEngineeringSingularityContainment = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateEngineeringSingularityGenerator = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateEngineeringParticleAccelerator = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateEngineeringGenerator = { ent-CrateEngineering } +ent-CrateEngineeringAMEShielding = packaged antimatter reactor crate + .desc = 9 parts for the main body of an antimatter reactor, or for expanding an existing one. +ent-CrateEngineeringAMEJar = antimatter containment jar crate + .desc = 3 antimatter jars, for fuelling an antimatter reactor. +ent-CrateEngineeringAMEControl = antimatter control unit crate + .desc = The control unit of an antimatter reactor. +ent-CrateEngineeringSingularityEmitter = emitter crate + .desc = An emitter, best used for singularity engines. +ent-CrateEngineeringSingularityCollector = radiation collector crate + .desc = A radiation collector, best used for singularity engines. +ent-CrateEngineeringSingularityContainment = containment field generator crate + .desc = A containment field generator, keeps the singulo in submission. +ent-CrateEngineeringSingularityGenerator = singularity generator crate + .desc = A singularity generator, the mother of the beast. +ent-CrateEngineeringParticleAccelerator = PA crate + .desc = Complex to setup, but rewarding as fuck. +ent-CrateEngineeringGenerator = generator crate + .suffix = DEBUG .desc = { ent-CrateEngineering.desc } -ent-CrateEngineeringSolar = { ent-CrateEngineering } - .desc = { ent-CrateEngineering.desc } -ent-CrateEngineeringShuttle = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateEngineeringTeslaGenerator = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateEngineeringTeslaCoil = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateEngineeringTeslaGroundingRod = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } +ent-CrateEngineeringSolar = solar assembly crate + .desc = Parts for constructing solar panels and trackers. +ent-CrateEngineeringShuttle = shuttle powering crate + .desc = A crate containing all needs for shuttle powering. +ent-CrateEngineeringTeslaGenerator = tesla generator crate + .desc = A tesla generator. God save you. +ent-CrateEngineeringTeslaCoil = tesla coil crate + .desc = Tesla coil. Attracts lightning and generates energy from it. +ent-CrateEngineeringTeslaGroundingRod = tesla grounding rod crate + .desc = Grounding rod, best for lightning protection. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/food.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/food.ftl index 100c7ea27b9..bbf3e083f49 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/food.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/food.ftl @@ -1,16 +1,16 @@ -ent-CrateFoodPizza = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateFoodPizzaLarge = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateFoodMRE = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateFoodCooking = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateFoodDinnerware = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateFoodBarSupply = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateFoodSoftdrinks = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateFoodSoftdrinksLarge = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } +ent-CrateFoodPizza = emergency pizza delivery + .desc = Help do your part to end station hunger by distributing pizza to underfunded departments! Includes 4 pizzas. +ent-CrateFoodPizzaLarge = disaster pizza delivery + .desc = In the ultimate event that all else has failed, Find comfort in that more pizza solves everything. Includes 16 pizzas. +ent-CrateFoodMRE = MRE crate + .desc = A military style meal fit to feed a whole department. +ent-CrateFoodCooking = kitchen supplies crate + .desc = Extra kitchen supplies, in case the botanists are absent. +ent-CrateFoodDinnerware = kitchen dinnerware crate + .desc = Extra kitchen supplies, in case the clown was allowed in the cafeteria unsupervised. +ent-CrateFoodBarSupply = bartending supplies crate + .desc = Extra Bar supplies, in case the clown was allowed in the bar unsupervised. +ent-CrateFoodSoftdrinks = softdrinks crate + .desc = A variety of sodas to complement a small party, without having to empty the soda machines. Includes 14 sodas. +ent-CrateFoodSoftdrinksLarge = softdrinks bulk crate + .desc = Lots of sodas taken straight out of Centcomm's own vending machines, because you just can't leave your department. Includes 28 sodas. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/fun.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/fun.ftl index f10724e216f..363ab512c5f 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/fun.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/fun.ftl @@ -1,45 +1,46 @@ -ent-CrateFunPlushie = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunLizardPlushieBulk = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunInstrumentsVariety = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunInstrumentsBrass = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunInstrumentsString = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunInstrumentsWoodwind = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunInstrumentsKeyedPercussion = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunInstrumentsSpecial = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunArtSupplies = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunBoardGames = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunATV = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateFunSadTromboneImplants = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunLightImplants = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunParty = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunWaterGuns = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateFunSyndicateSegway = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateFunBoxing = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } +ent-CrateFunPlushie = plushie crate + .desc = A buncha soft plushies. Throw them around and then wonder how you're gonna explain this purchase to NT. +ent-CrateFunLizardPlushieBulk = bulk lizard plushie crate + .desc = A buncha soft lizard plushies. Throw them around and then wonder how you're gonna explain this purchase to NT. +ent-CrateFunInstrumentsVariety = variety instrument collection + .desc = Get your sad station movin' and groovin' with this catch-all variety pack! Contains seven different instruments. +ent-CrateFunInstrumentsBrass = brass instrument ensemble crate + .desc = Bring some jazz to the station with the brass ensemble. Contains a variety of brass instruments for the whole station to play. +ent-CrateFunInstrumentsString = string instrument ensemble crate + .desc = Pluck or pick, slap or shred! Play a smooth melody or melt peoples' faces with this package of stringed instruments. +ent-CrateFunInstrumentsWoodwind = woodwind instrument ensemble crate + .desc = If atmos is good at their job, use air to play music with these woodwind instruments! Real wood not guaranteed with every item. +ent-CrateFunInstrumentsKeyedPercussion = keyed/percussion instrument ensemble crate + .desc = Hit some keys with some sticks or your hands, with this Keyed and Percussion instrument ensemble crate. +ent-CrateFunInstrumentsSpecial = special instrument collector's crate + .desc = Create some noise with this special collection of arguably-instruments! Centcomm is not responsible for any trauma caused by the contents. +ent-CrateFunArtSupplies = art supplies + .desc = Make some happy little accidents with lots of crayons! +ent-CrateFunBoardGames = board game crate + .desc = Game nights have been proven to either decrease boredom or increase murderous rage depending on the game. +ent-CrateFunATV = ATV crate + .desc = An Absolutely Taxable Vehicle to help cargo with hauling. +ent-CrateFunSadTromboneImplants = sad trombone implants + .desc = Death's never been so fun before! Implant these to make dying a bit more happy. +ent-CrateFunLightImplants = light implants + .desc = Light up your skin with these implants! +ent-CrateFunParty = party crate + .desc = An entire party just waiting for you to open it. Includes party favors, party beverages, and even a cake. +ent-CrateFunWaterGuns = water gun crate + .desc = A summer special with a variety of brightly colored water guns. Water not included. +ent-CrateFunSyndicateSegway = Syndicate segway crate + .desc = A crate containing a two-wheeler that will help you escape from the security officers. Or not. +ent-CrateFunBoxing = boxing crate + .desc = Want to set up an underground fight club or host a tournament amongst station crew? This crate is for you! ent-CrateFunPirate = { ent-CratePirate } + .suffix = Filled .desc = { ent-CratePirate.desc } ent-CrateFunToyBox = { ent-CrateToyBox } .suffix = Filled .desc = { ent-CrateToyBox.desc } -ent-CrateFunBikeHornImplants = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateFunMysteryFigurines = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateFunDartsSet = Dartboard Box Set +ent-CrateFunBikeHornImplants = bike horn implants + .desc = A thousand honks a day keeps security officers away! +ent-CrateFunMysteryFigurines = mystery figure crate + .desc = A collection of 10 Mystery Figurine boxes. Duplicates non refundable. +ent-CrateFunDartsSet = dartboard box set .desc = A box with everything you need for a fun game of darts. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl index afabd5d953b..37f76ea29e1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl @@ -1,18 +1,18 @@ -ent-CrateMaterialGlass = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateMaterialSteel = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateMaterialTextiles = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateMaterialPlastic = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateMaterialWood = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateMaterialPlasteel = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateMaterialPlasma = { ent-CratePlasma } - .desc = { ent-CratePlasma.desc } -ent-CrateMaterialCardboard = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateMaterialPaper = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } +ent-CrateMaterialGlass = glass sheet crate + .desc = 90 sheets of glass, packed with care. +ent-CrateMaterialSteel = steel sheet crate + .desc = 90 sheets of steel. +ent-CrateMaterialTextiles = textiles crate + .desc = 60 pieces of cloth and 30 pieces of durathread. +ent-CrateMaterialPlastic = plastic sheet crate + .desc = 90 sheets of plastic. +ent-CrateMaterialWood = wood crate + .desc = Bunch of wood planks. +ent-CrateMaterialPlasteel = plasteel crate + .desc = 90 sheets of plasteel. +ent-CrateMaterialPlasma = solid plasma crate + .desc = 90 sheets of plasma. +ent-CrateMaterialCardboard = cardboard crate + .desc = 60 pieces of cardboard. +ent-CrateMaterialPaper = paper crate + .desc = 90 sheets of paper. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/medical.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/medical.ftl index 47ef3f346d2..3f03850d98c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/medical.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/medical.ftl @@ -1,28 +1,28 @@ -ent-CrateMedicalSupplies = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateChemistrySupplies = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateChemistryVials = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateMindShieldImplants = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateMedicalSurgery = { ent-CrateSurgery } - .desc = { ent-CrateSurgery.desc } -ent-CrateMedicalScrubs = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateEmergencyBurnKit = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateEmergencyToxinKit = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateEmergencyO2Kit = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateEmergencyBruteKit = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateEmergencyAdvancedKit = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateEmergencyRadiationKit = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateBodyBags = { ent-CrateMedical } - .desc = { ent-CrateMedical.desc } -ent-CrateVirologyBiosuit = { ent-CrateMedicalSecure } - .desc = { ent-CrateMedicalSecure.desc } +ent-CrateMedicalSupplies = medical supplies crate + .desc = Basic medical supplies. +ent-CrateChemistrySupplies = chemistry supplies crate + .desc = Basic chemistry supplies. +ent-CrateChemistryVials = vial supply crate + .desc = Crate filled with a box of vials. +ent-CrateMindShieldImplants = MindShield implant crate + .desc = Crate filled with 3 MindShield implants. +ent-CrateMedicalSurgery = surgical supplies crate + .desc = Surgical instruments. +ent-CrateMedicalScrubs = medical scrubs crate + .desc = Medical clothings. +ent-CrateEmergencyBurnKit = emergency burn kit + .desc = Crate filled with a burn treatment kit. +ent-CrateEmergencyToxinKit = emergency toxin kit + .desc = Crate filled with a toxin treatment kit. +ent-CrateEmergencyO2Kit = emergency O2 kit + .desc = Crate filled with an O2 treatment kit. +ent-CrateEmergencyBruteKit = emergency brute kit + .desc = Crate filled with a brute treatment kit. +ent-CrateEmergencyAdvancedKit = emergency advanced kit + .desc = Crate filled with an advanced treatment kit. +ent-CrateEmergencyRadiationKit = emergency radiation kit + .desc = Crate filled with a radiation treatment kit. +ent-CrateBodyBags = body bags crate + .desc = Contains ten body bags. +ent-CrateVirologyBiosuit = virology bio suit crate + .desc = Contains 2 biohazard suits to ensure that no disease will distract you from treating the crew. Requires Medical access to open. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/npc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/npc.ftl index f9527050a5c..88642f06bc6 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/npc.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/npc.ftl @@ -1,50 +1,50 @@ -ent-CrateNPCBee = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCButterflies = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCCat = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCChicken = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCCrab = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCDuck = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCCorgi = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCPuppyCorgi = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCCow = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCGoat = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCGoose = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCGorilla = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCMonkeyCube = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateNPCKoboldCube = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateNPCMouse = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCParrot = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCPenguin = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCPig = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCSnake = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } +ent-CrateNPCBee = crate of bees + .desc = A crate containing a swarm of eight bees. +ent-CrateNPCButterflies = crate of butterflies + .desc = A crate containing five butterflies. +ent-CrateNPCCat = cat crate + .desc = A crate containing a single cat. +ent-CrateNPCChicken = chicken crate + .desc = A crate containing four fully grown chickens. +ent-CrateNPCCrab = crab crate + .desc = A crate containing three huge crabs. +ent-CrateNPCDuck = duck crate + .desc = A crate containing six fully grown ducks. +ent-CrateNPCCorgi = corgi crate + .desc = A crate containing a single corgi. +ent-CrateNPCPuppyCorgi = puppy corgi crate + .desc = A crate containing a single puppy corgi. Awww. +ent-CrateNPCCow = cow crate + .desc = A crate containing a single cow. +ent-CrateNPCGoat = goat crate + .desc = A crate containing a single goat. +ent-CrateNPCGoose = goose crate + .desc = A crate containing two geese. +ent-CrateNPCGorilla = gorilla crate + .desc = A crate containing a single gorilla. +ent-CrateNPCMonkeyCube = monkey cube crate + .desc = A crate containing single box of monkey cubes. +ent-CrateNPCKoboldCube = kobold cube crate + .desc = A crate containing single box of kobold cubes. +ent-CrateNPCMouse = mice crate + .desc = A crate containing five mice. +ent-CrateNPCParrot = parrot crate + .desc = A crate containing three parrots. +ent-CrateNPCPenguin = penguin crate + .desc = A crate containing two penguins. +ent-CrateNPCPig = pig crate + .desc = A crate containing a single pig. +ent-CrateNPCSnake = snake crate + .desc = A crate containing three snakes. ent-CrateNPCHamster = { ent-CrateRodentCage } .suffix = Filled .desc = { ent-CrateRodentCage.desc } ent-CrateNPCHamlet = { ent-CrateRodentCage } .suffix = Hamlet .desc = { ent-CrateRodentCage.desc } -ent-CrateNPCLizard = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCKangaroo = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } -ent-CrateNPCMothroach = { ent-CrateLivestock } - .desc = { ent-CrateLivestock.desc } +ent-CrateNPCLizard = lizard crate + .desc = A crate containing a lizard. +ent-CrateNPCKangaroo = kangaroo crate + .desc = A crate containing a kangaroo. +ent-CrateNPCMothroach = crate of mothroaches + .desc = A crate containing four mothroaches. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/science.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/science.ftl index efb3eb3608f..91fd4d6cab4 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/science.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/science.ftl @@ -1,2 +1,2 @@ -ent-CrateScienceBiosuit = { ent-CrateScienceSecure } - .desc = { ent-CrateScienceSecure.desc } +ent-CrateScienceBiosuit = scientist bio suit crate + .desc = Contains 2 biohazard suits to ensure that no disease will distract you from doing science. Requires Science access to open. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/security.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/security.ftl index 87faab57226..dbb6a4a9b38 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/security.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/security.ftl @@ -1,16 +1,16 @@ -ent-CrateSecurityArmor = { ent-CrateSecgear } - .desc = { ent-CrateSecgear.desc } -ent-CrateSecurityHelmet = { ent-CrateSecgear } - .desc = { ent-CrateSecgear.desc } -ent-CrateSecurityNonlethal = { ent-CrateSecgear } - .desc = { ent-CrateSecgear.desc } -ent-CrateSecurityRiot = { ent-CrateSecgear } - .desc = { ent-CrateSecgear.desc } -ent-CrateSecuritySupplies = { ent-CrateSecgear } - .desc = { ent-CrateSecgear.desc } -ent-CrateRestraints = { ent-CrateSecgear } - .desc = { ent-CrateSecgear.desc } -ent-CrateSecurityBiosuit = { ent-CrateSecgear } - .desc = { ent-CrateSecgear.desc } -ent-CrateSecurityTrackingMindshieldImplants = Implanter Crate - .desc = { ent-CrateSecgear.desc } +ent-CrateSecurityArmor = armor crate + .desc = Three vests of well-rounded, decently-protective armor. Requires Security access to open. +ent-CrateSecurityHelmet = helmet crate + .desc = Contains three standard-issue brain buckets. Requires Security access to open. +ent-CrateSecurityNonlethal = nonlethals crate + .desc = Disabler weapons. Requires Security access to open. +ent-CrateSecurityRiot = swat crate + .desc = Contains two sets of riot armor, helmets, shields, and enforcers loaded with beanbags. Extra ammo is included. Requires Armory access to open. +ent-CrateSecuritySupplies = security supplies crate + .desc = Contains various supplies for the station's Security team. Requires Security access to open. +ent-CrateRestraints = restraints crate + .desc = Contains two boxes each of handcuffs and zipties. Requires Security access to open. +ent-CrateSecurityBiosuit = security bio suit crate + .desc = Contains 2 biohazard suits to ensure that no disease will distract you from your duties. Requires Security access to open. +ent-CrateSecurityTrackingMindshieldImplants = implanter crate + .desc = Contains 4 MindShield implants and 4 tracking implant. Requires Security access to open. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl index 54ab047d9a9..27f45c740f0 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl @@ -1,29 +1,29 @@ -ent-CrateServiceJanitorialSupplies = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateServiceReplacementLights = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateMousetrapBoxes = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateServiceSmokeables = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateServiceTheatre = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateServiceCustomSmokable = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateServiceBureaucracy = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateServicePersonnel = { ent-CrateCommandSecure } - .desc = { ent-CrateCommandSecure.desc } -ent-CrateServiceBooks = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateServiceGuidebooks = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateServiceBox = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateJanitorBiosuit = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } +ent-CrateServiceJanitorialSupplies = janitorial supplies crate + .desc = Fight back against dirt and grime with Nanotrasen's Janitorial Essentials(tm)! Contains three buckets, caution signs, and cleaner grenades. Also has a single mop, broom, spray cleaner, rag, and trash bag. +ent-CrateServiceReplacementLights = replacement lights crate + .desc = May the light of Aether shine upon this station! Or at least, the light of forty two light tubes and twenty one light bulbs. +ent-CrateMousetrapBoxes = mousetraps crate + .desc = Mousetraps, for when all of service is being haunted by an entire horde of rats. Use sparingly... or not. +ent-CrateServiceSmokeables = smokeables crate + .desc = Tired of a quick death on the station? Order this crate and chain-smoke your way to a coughy demise! +ent-CrateServiceTheatre = theatrical performances crate + .desc = Contains a moth cloak, barber scissors, maid uniform, clown and mime attributes, and other performance charms. +ent-CrateServiceCustomSmokable = DIY smokeables crate + .desc = Want to get a little creative with what you use to destroy your lungs? Then this crate is for you! Has everything you need to roll your own cigarettes. +ent-CrateServiceBureaucracy = bureaucracy crate + .desc = Several stacks of paper and a few pens, what more can you ask for. +ent-CrateServicePersonnel = personnel crate + .desc = Contains a box of blank ID cards and PDAs. +ent-CrateServiceBooks = books crate + .desc = Contains 10 empty books of random appearance. +ent-CrateServiceGuidebooks = guidebooks crate + .desc = Contains guidebooks. +ent-CrateServiceBox = boxes crate + .desc = Contains 6 empty multipurpose boxes. +ent-CrateJanitorBiosuit = janitor bio suit crate + .desc = Contains 2 biohazard suits to ensure that no disease will distract you from cleaning. ent-CrateTrashCartFilled = { ent-CrateTrashCart } .suffix = Filled .desc = { ent-CrateTrashCart.desc } -ent-CrateJanitorExplosive = { ent-ClosetJanitorBomb } - .desc = { ent-ClosetJanitorBomb.desc } +ent-CrateJanitorExplosive = janitorial bomb suit crate + .desc = Supplies a bomb suit for cleaning up any explosive compounds, buy one today! diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/syndicate.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/syndicate.ftl index be603287201..7a116ee6607 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/syndicate.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/syndicate.ftl @@ -1,4 +1,4 @@ -ent-CrateSyndicateSurplusBundle = { ent-CrateSyndicate } - .desc = { ent-CrateSyndicate.desc } -ent-CrateSyndicateSuperSurplusBundle = { ent-CrateSyndicate } - .desc = { ent-CrateSyndicate.desc } +ent-CrateSyndicateSurplusBundle = Syndicate surplus crate + .desc = Contains 50 telecrystals worth of completely random Syndicate items. It can be useless junk or really good. +ent-CrateSyndicateSuperSurplusBundle = Syndicate super surplus crate + .desc = Contains 125 telecrystals worth of completely random Syndicate items. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/vending.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/vending.ftl index 504f6360c69..e41565e2997 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/vending.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/vending.ftl @@ -1,50 +1,50 @@ -ent-CrateVendingMachineRestockBoozeFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } +ent-CrateVendingMachineRestockBoozeFilled = Booze-O-Mat restock crate + .desc = Contains a restock box for the Booze-O-Mat. ent-CrateVendingMachineRestockChefvendFilled = ChefVend restock crate - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockClothesFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } + .desc = Contains a restock box for the ChefVend. +ent-CrateVendingMachineRestockClothesFilled = clothing restock crate + .desc = Contains a pair of restock boxes, one for the ClothesMate and one for the AutoDrobe. ent-CrateVendingMachineRestockCondimentStationFilled = condiment station restock crate - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockDinnerwareFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockEngineeringFilled = { ent-CrateEngineeringSecure } - .desc = { ent-CrateEngineeringSecure.desc } -ent-CrateVendingMachineRestockGamesFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockHotDrinksFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockMedicalFilled = { ent-CrateMedicalSecure } - .desc = { ent-CrateMedicalSecure.desc } -ent-CrateVendingMachineRestockChemVendFilled = { ent-CrateMedicalSecure } - .desc = { ent-CrateMedicalSecure.desc } -ent-CrateVendingMachineRestockNutriMaxFilled = { ent-CrateHydroSecure } - .desc = { ent-CrateHydroSecure.desc } -ent-CrateVendingMachineRestockPTechFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockRobustSoftdrinksFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockSalvageEquipmentFilled = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } -ent-CrateVendingMachineRestockSecTechFilled = { ent-CrateSecgear } - .desc = { ent-CrateSecgear.desc } -ent-CrateVendingMachineRestockSeedsFilled = { ent-CrateHydroSecure } - .desc = { ent-CrateHydroSecure.desc } -ent-CrateVendingMachineRestockSmokesFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockVendomatFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockRoboticsFilled = { ent-CrateScienceSecure } - .desc = { ent-CrateScienceSecure.desc } -ent-CrateVendingMachineRestockTankDispenserFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockHappyHonkFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockGetmoreChocolateCorpFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockChangFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockDiscountDansFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } -ent-CrateVendingMachineRestockDonutFilled = { ent-CratePlastic } - .desc = { ent-CratePlastic.desc } + .desc = Contains a restock box for the condiment station. +ent-CrateVendingMachineRestockDinnerwareFilled = Plasteel Chef restock crate + .desc = Contains a restock box for the Plasteel Chef vending machine. +ent-CrateVendingMachineRestockEngineeringFilled = EngiVend restock crate + .desc = Contains a restock box for the EngiVend. Also supports the YouTool. +ent-CrateVendingMachineRestockGamesFilled = Good Clean Fun restock crate + .desc = Contains a restock box for the Good Clean Fun vending machine. +ent-CrateVendingMachineRestockHotDrinksFilled = Solar's Best restock crate + .desc = Contains two restock boxes for Solar's Best Hot Drinks vending machine. +ent-CrateVendingMachineRestockMedicalFilled = NanoMed restock crate + .desc = Contains a restock box, compatible with the NanoMed and NanoMedPlus. +ent-CrateVendingMachineRestockChemVendFilled = ChemVend restock crate + .desc = Contains a restock box for the ChemVend. +ent-CrateVendingMachineRestockNutriMaxFilled = NutriMax restock crate + .desc = Contains a restock box for the NutriMax vending machine. +ent-CrateVendingMachineRestockPTechFilled = PTech restock crate + .desc = Contains a restock box for the PTech bureaucracy dispenser. +ent-CrateVendingMachineRestockRobustSoftdrinksFilled = Robust Softdrinks restock crate + .desc = Contains two restock boxes for the Robust Softdrinks LLC vending machine. +ent-CrateVendingMachineRestockSalvageEquipmentFilled = Salvage restock crate + .desc = Contains a restock box for the salvage vendor. +ent-CrateVendingMachineRestockSecTechFilled = SecTech restock crate + .desc = Contains a restock box for the SecTech vending machine. +ent-CrateVendingMachineRestockSeedsFilled = MegaSeed restock crate + .desc = Contains a restock box for the MegaSeed vending machine. +ent-CrateVendingMachineRestockSmokesFilled = ShadyCigs restock crate + .desc = Contains two restock boxes for the ShadyCigs vending machine. +ent-CrateVendingMachineRestockVendomatFilled = Vendomat restock crate + .desc = Contains a restock box for a Vendomat vending machine. +ent-CrateVendingMachineRestockRoboticsFilled = Robotech Deluxe restock crate + .desc = Contains a restock box for a Robotech Deluxe vending machine. +ent-CrateVendingMachineRestockTankDispenserFilled = tank dispenser restock crate + .desc = Contains a restock box for an Engineering or Atmospherics tank dispenser. +ent-CrateVendingMachineRestockHappyHonkFilled = Happy Honk restock crate + .desc = Contains a restock box for a happy honk dispenser. +ent-CrateVendingMachineRestockGetmoreChocolateCorpFilled = Getmore Chocolate Corp restock crate + .desc = Contains a restock box for a Getmore Chocolate Corp dispenser. +ent-CrateVendingMachineRestockChangFilled = Chang restock crate + .desc = Contains a restock box for a Mr. Chang dispenser. +ent-CrateVendingMachineRestockDiscountDansFilled = Discount Dans restock crate + .desc = Contains a restock box for a Discount Dan's dispenser. +ent-CrateVendingMachineRestockDonutFilled = Donut restock crate + .desc = Contains a restock box for a Monkin' Donuts dispenser. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hats.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hats.ftl index 77934847f74..a025c27ec01 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hats.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hats.ftl @@ -132,3 +132,7 @@ ent-ClothingHeadHatPartyGreen = green party hat .desc = { ent-ClothingHeadHatPartyRed.desc } ent-ClothingHeadHatPartyBlue = blue party hat .desc = { ent-ClothingHeadHatPartyRed.desc } +ent-ClothingHeadHatGreyFlatcap = grey flatcap + .desc = Fashionable for both the working class and old man Jenkins. +ent-ClothingHeadHatBrownFlatcap = brown flatcap + .desc = Stupid clown! You made me look bad! diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl index f41c25be093..21f6e18ed7e 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl @@ -7,6 +7,10 @@ ent-MobAngryBee = bee .suffix = Angry ent-MobChicken = chicken .desc = Comes before an egg, and IS a dinosaur! +ent-MobChicken1 = { ent-MobChicken } + .desc = { ent-MobChicken.desc } +ent-MobChicken2 = { ent-MobChicken } + .desc = { ent-MobChicken.desc } ent-FoodEggChickenFertilized = { ent-FoodEgg } .suffix = Fertilized, Chicken .desc = { ent-FoodEgg.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl index 5c69e2882a2..04179c1d9b5 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl @@ -46,7 +46,44 @@ ent-DrinkWineBottleFull = doublebearded bearded special wine bottle .desc = A faint aura of unease and asspainery surrounds the bottle. ent-DrinkBeerBottleFull = beer .desc = An alcoholic beverage made from malted grains, hops, yeast, and water. +ent-DrinkBeerGrowler = Beer Growler + .desc = An alcoholic beverage made from malted grains, hops, yeast, and water. XL growler bottle. ent-DrinkAleBottleFull = Magm-Ale .desc = A true dorf's drink of choice. +ent-DrinkAleBottleFullGrowler = Magm-Ale Growler + .desc = A true dorf's drink of choice. XL growler bottle. ent-DrinkWaterBottleFull = water bottle .desc = Simple clean water of unknown origin. You think that maybe you dont want to know it. +ent-DrinkSodaWaterBottleFull = soda water bottle + .desc = Like water, but angry! +ent-DrinkTonicWaterBottleFull = tonic water bottle + .desc = Like soda water, but angrier maybe? Often sweeter. +ent-DrinkJuiceLimeCartonXL = lime juice XL + .desc = Sweet-sour goodness. +ent-DrinkJuiceOrangeCartonXL = orange juice XL + .desc = Full of vitamins and deliciousness! +ent-DrinkCreamCartonXL = Milk Cream XL + .desc = It's cream. Made from milk. What else did you think you'd find in there? +ent-DrinkSugarJug = sugar + .desc = some people put this in their coffee... + .suffix = for drinks +ent-DrinkLemonLimeJug = lemon lime + .desc = a dual citrus sensation. +ent-DrinkMeadJug = mead jug + .desc = storing mead in a plastic jug should be a crime. +ent-DrinkIceJug = ice jug + .desc = stubborn water. pretty cool. +ent-DrinkCoffeeJug = coffee jug + .desc = wake up juice, of the heated kind. +ent-DrinkTeaJug = tea jug + .desc = the drink of choice for the Bri'ish and hipsters. +ent-DrinkGreenTeaJug = green tea jug + .desc = its like tea... but green! great for settling the stomach. +ent-DrinkIcedTeaJug = iced tea jug + .desc = for when the regular tea is too hot for you boohoo +ent-DrinkDrGibbJug = dr gibb jug + .desc = yeah I don't know either... +ent-DrinkRootBeerJug = root beer jug + .desc = this drink makes Australians giggle +ent-DrinkWaterMelonJuiceJug = watermelon juice jug + .desc = May include leftover seeds diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/burger.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/burger.ftl index 613c1a43074..f1afb1f23bb 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/burger.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/burger.ftl @@ -64,3 +64,5 @@ ent-FoodBurgerTofu = tofu burger .desc = What... is that meat? ent-FoodBurgerXeno = xenoburger .desc = Smells caustic. Tastes like heresy. +ent-FoodBurgerMothRoach = mothroachburger + .desc = The last lamp it saw was the one inside the microwave. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/present.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/present.ftl index 6ae261ef7f0..aa7a3e6dde2 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/present.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/decoration/present.ftl @@ -1,21 +1,26 @@ -ent-PresentBase = Present +ent-PresentBase = present .desc = A little box with incredible surprises inside. ent-Present = { ent-PresentBase } .suffix = Empty .desc = { ent-PresentBase.desc } + ent-PresentRandomUnsafe = { ent-PresentBase } - .suffix = Filled Unsafe + + .suffix = Filled, any item .desc = { ent-PresentBase.desc } ent-PresentRandomInsane = { ent-PresentRandomUnsafe } - .suffix = Filled Insane + .suffix = Filled, any entity .desc = { ent-PresentRandomUnsafe.desc } ent-PresentRandom = { ent-PresentBase } + .suffix = Filled Safe .desc = { ent-PresentBase.desc } ent-PresentRandomAsh = { ent-PresentBase } + .suffix = Filled Ash .desc = { ent-PresentBase.desc } ent-PresentRandomCash = { ent-PresentBase } + .suffix = Filled Cash .desc = { ent-PresentBase.desc } ent-PresentTrash = Wrapping Paper diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl index 01071c7cdea..36ad56beca0 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl @@ -73,8 +73,8 @@ ent-BorgModuleClowning = clowning cyborg module ent-BorgModuleSyndicateWeapon = weapon cyborg module .desc = { ent-BaseBorgModule.desc } ent-BorgModuleOperative = operative cyborg module - .desc = A module that comes with a crowbar, a Cobra pistol, an Emag and a syndicate pinpointer. + .desc = A module that comes with a crowbar, an Emag and a syndicate pinpointer. ent-BorgModuleEsword = energy sword cyborg module - .desc = A module that comes with an energy sword. + .desc = A module that comes with a double energy sword. ent-BorgModuleL6C = L6C ROW cyborg module .desc = A module that comes with a L6C. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/artifact_equipment.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/artifact_equipment.ftl index fa24acfc8ef..54dfd2bd161 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/artifact_equipment.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/artifact_equipment.ftl @@ -1,2 +1,2 @@ -ent-CrateArtifactContainer = { ent-BaseStructureDynamic } - .desc = { ent-BaseStructureDynamic.desc } +ent-CrateArtifactContainer = artifact container + .desc = Used to safely contain and move artifacts. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryopod.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryopod.ftl new file mode 100644 index 00000000000..58a18d75ab5 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryopod.ftl @@ -0,0 +1,8 @@ +ent-CryogenicSleepUnit = cryogenic sleep unit + .desc = A super-cooled container that keeps crewmates safe during space travel. +ent-CryogenicSleepUnitSpawner = { ent-CryogenicSleepUnit } + .suffix = Spawner, Roundstart AllJobs + .desc = { ent-CryogenicSleepUnit.desc } +ent-CryogenicSleepUnitSpawnerLateJoin = { ent-CryogenicSleepUnit } + .suffix = Spawner, LateJoin + .desc = { ent-CryogenicSleepUnit.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/booze.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/booze.ftl index 36eff1d20b5..fa706a71c71 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/booze.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/booze.ftl @@ -1,2 +1,6 @@ ent-BoozeDispenser = booze dispenser .desc = A booze dispenser with a single slot for a container to be filled. + .suffix = Filled +ent-BoozeDispenserEmpty = { ent-BoozeDispenser } + .suffix = Empty + .desc = { ent-BoozeDispenser.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/chem.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/chem.ftl index 8f2cf38000e..cb73cd118f1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/chem.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/chem.ftl @@ -1,2 +1,6 @@ ent-ChemDispenser = chemical dispenser - .desc = An industrial grade chemical dispenser with a sizeable chemical supply. + .desc = An industrial grade chemical dispenser. + .suffix = Filled +ent-ChemDispenserEmpty = chemical dispenser + .suffix = Empty + .desc = { ent-ChemDispenser.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/soda.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/soda.ftl index e32b1ecc8a4..27a850cd013 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/soda.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/dispensers/soda.ftl @@ -1,2 +1,6 @@ ent-soda_dispenser = soda dispenser .desc = A beverage dispenser with a selection of soda and several other common beverages. Has a single fill slot for containers. + .suffix = Filled +ent-SodaDispenserEmpty = { ent-soda_dispenser } + .suffix = Empty + .desc = { ent-soda_dispenser.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door.ftl index 3d4e4ae946f..175943a94d1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door.ftl @@ -3,3 +3,5 @@ ent-BlastDoor = blast door ent-BlastDoorOpen = { ent-BlastDoor } .suffix = Open .desc = { ent-BlastDoor.desc } +ent-BlastDoorFrame = blast door frame + .desc = This one says 'BLAST DONGER'. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/shuttles/thrusters.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/shuttles/thrusters.ftl index b3b4fce4f28..79908bf787a 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/shuttles/thrusters.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/shuttles/thrusters.ftl @@ -1,5 +1,5 @@ -ent-BaseThruster = { ent-BaseStructureDynamic } - .desc = { ent-BaseStructureDynamic.desc } +ent-BaseThruster = thruster + .desc = A thruster that allows a shuttle to move. ent-Thruster = thruster .desc = { ent-BaseThruster.desc } ent-ThrusterUnanchored = { ent-Thruster } @@ -9,7 +9,7 @@ ent-DebugThruster = { ent-BaseThruster } .suffix = DEBUG .desc = { ent-BaseThruster.desc } ent-Gyroscope = gyroscope - .desc = { ent-BaseThruster.desc } + .desc = Increases the shuttle's potential angular rotation. ent-GyroscopeUnanchored = { ent-Gyroscope } .suffix = Unanchored .desc = { ent-Gyroscope.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/wardrobe.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/wardrobe.ftl index 90ba8e2aeb1..c370007f133 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/wardrobe.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/wardrobe.ftl @@ -1,4 +1,4 @@ -ent-WardrobeBase = { ent-ClosetBase } +ent-WardrobeBase = { ent-ClosetSteelBase } .desc = It's a storage unit for standard-issue Nanotrasen attire. ent-WardrobeBlue = blue wardrobe .desc = A wardrobe packed with stylish blue clothing. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl index 53d82b43e1a..3b94e1ff590 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl @@ -61,8 +61,8 @@ ent-CrateWoodenGrave = grave ent-CrateStoneGrave = grave .desc = Someone died here... .suffix = stone -ent-CrateSyndicate = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } +ent-CrateSyndicate = Syndicate crate + .desc = A dark steel crate with red bands and a letter S embossed on the front. ent-CrateTrashCart = trash cart .desc = { ent-CrateBaseWeldable.desc } ent-CrateTrashCartJani = janitorial trash cart diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/thief.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/thief.ftl index 3c05f449e46..ad543b2d6aa 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/thief.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/thief.ftl @@ -96,5 +96,7 @@ ent-SmileStealObjective = { ent-BaseThiefStealAnimalObjective } .desc = { ent-BaseThiefStealAnimalObjective.desc } ent-PunPunStealObjective = { ent-BaseThiefStealAnimalObjective } .desc = { ent-BaseThiefStealAnimalObjective.desc } +ent-TropicoStealObjective = { ent-BaseThiefStealAnimalObjective } + .desc = { ent-BaseThiefStealAnimalObjective.desc } ent-EscapeThiefShuttleObjective = Escape to centcom alive and unrestrained. .desc = You don't want your illegal activities to be discovered by anyone, do you? diff --git a/Resources/Locale/ru-RU/actions/actions/wagging.ftl b/Resources/Locale/ru-RU/actions/actions/wagging.ftl index 722e250be9b..36dae82f7bb 100644 --- a/Resources/Locale/ru-RU/actions/actions/wagging.ftl +++ b/Resources/Locale/ru-RU/actions/actions/wagging.ftl @@ -1,4 +1,4 @@ -action-name-toggle-wagging = Wagging Tail -action-description-toggle-wagging = Start or stop wagging tail. -wagging-emote-start = starts wagging { POSS-ADJ($ent) } tail. -wagging-emote-stop = stops wagging { POSS-ADJ($ent) } tail. +action-name-toggle-wagging = Махать хвостом +action-description-toggle-wagging = Начать или прекратить махать хвостом. +wagging-emote-start = начинает махать { POSS-ADJ($ent) } хвостом. +wagging-emote-stop = прекращает махать { POSS-ADJ($ent) } хвостом. diff --git a/Resources/Locale/ru-RU/administration/commands/follow-command.ftl b/Resources/Locale/ru-RU/administration/commands/follow-command.ftl new file mode 100644 index 00000000000..14312b09d86 --- /dev/null +++ b/Resources/Locale/ru-RU/administration/commands/follow-command.ftl @@ -0,0 +1,2 @@ +follow-command-description = Makes you begin following an entity +follow-command-help = Usage: follow [netEntity] diff --git a/Resources/Locale/ru-RU/administration/ui/actions.ftl b/Resources/Locale/ru-RU/administration/ui/actions.ftl index 39b6a90e0b6..c2c316c73bd 100644 --- a/Resources/Locale/ru-RU/administration/ui/actions.ftl +++ b/Resources/Locale/ru-RU/administration/ui/actions.ftl @@ -8,5 +8,5 @@ admin-player-actions-respawn = Респаун admin-player-actions-spawn = Заспавнить тут admin-player-spawn-failed = Не удалось найти подходящие координаты admin-player-actions-clone = Клонировать -admin-player-actions-teleport = Телепортироваться к +admin-player-actions-follow = Follow admin-player-actions-confirm = Вы уверены? diff --git a/Resources/Locale/ru-RU/burial/burial.ftl b/Resources/Locale/ru-RU/burial/burial.ftl index adfa888baae..2a8f28942ad 100644 --- a/Resources/Locale/ru-RU/burial/burial.ftl +++ b/Resources/Locale/ru-RU/burial/burial.ftl @@ -1,4 +1,4 @@ -grave-start-digging-others = { CAPITALIZE($user) } starts digging { THE($grave) } with { THE($tool) }. -grave-start-digging-user = You start digging { THE($grave) } with { THE($tool) }. -grave-start-digging-user-trapped = You start clawing your way out of { THE($grave) }! -grave-digging-requires-tool = You need a tool to dig this { $grave }! +grave-start-digging-others = { CAPITALIZE($user) } начинает копать { $grave } при помощи { $tool }. +grave-start-digging-user = Вы начинаете копать { $grave } при помощи { $tool }. +grave-start-digging-user-trapped = Вы начинаете выкарабкиваться из { $grave }! +grave-digging-requires-tool = Чтобы выкопать { $grave }, нужен инструмент! diff --git a/Resources/Locale/ru-RU/containers/containers.ftl b/Resources/Locale/ru-RU/containers/containers.ftl new file mode 100644 index 00000000000..ab011f64f84 --- /dev/null +++ b/Resources/Locale/ru-RU/containers/containers.ftl @@ -0,0 +1,2 @@ +container-verb-text-enter = Enter +container-verb-text-empty = Empty diff --git a/Resources/Locale/ru-RU/corvax/markings/cyberlibs.ftl b/Resources/Locale/ru-RU/corvax/markings/cyberlibs.ftl index 177cd64bf98..f31055deee8 100644 --- a/Resources/Locale/ru-RU/corvax/markings/cyberlibs.ftl +++ b/Resources/Locale/ru-RU/corvax/markings/cyberlibs.ftl @@ -5,8 +5,8 @@ marking-CyberlimbRHandBishop = Протез, кисть правой руки ( marking-CyberlimbLHandBishop = Протез, кисть левой руки (Бисшоп) marking-CyberlimbRLegBishop = Протез, правая нога (Бисшоп) marking-CyberlimbLLegBishop = Протез, левая нога (Бисшоп) -marking-CyberlimbLFootBishop = Протез, правая стопа (Бисшоп) -marking-CyberlimbRFootBishop = Протез, левая стопа (Бисшоп) +marking-CyberlimbRFootBishop = Протез, правая стопа (Бисшоп) +marking-CyberlimbLFootBishop = Протез, левая стопа (Бисшоп) marking-CyberlimbTorsoBishop = Протез, туловище (Бисшоп) # Hephaestus marking-CyberlimbRArmHephaestus = Протез, правая рука (Гефест) @@ -25,8 +25,8 @@ marking-CyberlimbRHandHephaestusTitan = Протез, кисть правой р marking-CyberlimbLHandHephaestusTitan = Протез, кисть левой руки (Гефест Титан) marking-CyberlimbRLegHephaestusTitan = Протез, правая нога (Гефест Титан) marking-CyberlimbLLegHephaestusTitan = Протез, левая нога (Гефест Титан) -marking-CyberlimbLFootHephaestusTitan = Протез, правая стопа (Гефест Титан) -marking-CyberlimbRFootHephaestusTitan = Протез, левая стопа (Гефест Титан) +marking-CyberlimbRFootHephaestusTitan = Протез, правая стопа (Гефест Титан) +marking-CyberlimbLFootHephaestusTitan = Протез, левая стопа (Гефест Титан) marking-CyberlimbTorsoHephaestusTitan = Протез, туловище (Гефест Титан) # Morpheus marking-CyberlimbRArmMorpheus = Протез, правая рука (Морфиус) @@ -35,8 +35,8 @@ marking-CyberlimbRHandMorpheus = Протез, кисть правой руки marking-CyberlimbLHandMorpheus = Протез, кисть левой руки (Морфиус) marking-CyberlimbRLegMorpheus = Протез, правая нога (Морфиус) marking-CyberlimbLLegMorpheus = Протез, левая нога (Морфиус) -marking-CyberlimbLFootMorpheus = Протез, правая стопа (Морфиус) -marking-CyberlimbRFootMorpheus = Протез, левая стопа (Морфиус) +marking-CyberlimbRFootMorpheus = Протез, правая стопа (Морфиус) +marking-CyberlimbLFootMorpheus = Протез, левая стопа (Морфиус) marking-CyberlimbTorsoMorpheus = Протез, туловище (Морфиус) # Wardtakahashi marking-CyberlimbRArmWardtakahashi = Протез, правая рука (Вардтакахаши) @@ -45,8 +45,8 @@ marking-CyberlimbRHandWardtakahashi = Протез, кисть правой ру marking-CyberlimbLHandWardtakahashi = Протез, кисть левой руки (Вардтакахаши) marking-CyberlimbRLegWardtakahashi = Протез, правая нога (Вардтакахаши) marking-CyberlimbLLegWardtakahashi = Протез, левая нога (Вардтакахаши) -marking-CyberlimbLFootWardtakahashi = Протез, правая стопа (Вардтакахаши) -marking-CyberlimbRFootWardtakahashi = Протез, левая стопа (Вардтакахаши) +marking-CyberlimbRFootWardtakahashi = Протез, правая стопа (Вардтакахаши) +marking-CyberlimbLFootWardtakahashi = Протез, левая стопа (Вардтакахаши) marking-CyberlimbTorsoWardtakahashiMale = Протез, туловище (Вардтакахаши) marking-CyberlimbTorsoWardtakahashiFemale = Протез, туловище (Вардтакахаши) # Zenghu @@ -60,15 +60,15 @@ marking-CyberlimbLFootZenghu = Протез, правая стопа (Зенху marking-CyberlimbRFootZenghu = Протез, левая стопа (Зенху) marking-CyberlimbTorsoZenghu = Протез, туловище (Зенху) # Nanotrasen -marking-CyberlimbRArmNanotrasen = Протез, правая рука (Нанотрасен) -marking-CyberlimbLArmNanotrasen = Протез, левая рука (Нанотрасен) -marking-CyberlimbRHandNanotrasen = Протез, кисть правой руки (Нанотрасен) -marking-CyberlimbLHandNanotrasen = Протез, кисть левой руки (Нанотрасен) -marking-CyberlimbRLegNanotrasen = Протез, правая нога (Нанотрасен) -marking-CyberlimbLLegNanotrasen = Протез, левая нога (Нанотрасен) -marking-CyberlimbLFootNanotrasen = Протез, правая стопа (Нанотрасен) -marking-CyberlimbRFootNanotrasen = Протез, левая стопа (Нанотрасен) -marking-CyberlimbTorsoNanotrasen = Протез, туловище (Нанотрасен) +marking-CyberlimbRArmNanotrasen = Протез, правая рука (Nanotrasen) +marking-CyberlimbLArmNanotrasen = Протез, левая рука (Nanotrasen) +marking-CyberlimbRHandNanotrasen = Протез, кисть правой руки (Nanotrasen) +marking-CyberlimbLHandNanotrasen = Протез, кисть левой руки (Nanotrasen) +marking-CyberlimbRLegNanotrasen = Протез, правая нога (Nanotrasen) +marking-CyberlimbLLegNanotrasen = Протез, левая нога (Nanotrasen) +marking-CyberlimbRFootNanotrasen = Протез, правая стопа (Nanotrasen) +marking-CyberlimbLFootNanotrasen = Протез, левая стопа (Nanotrasen) +marking-CyberlimbTorsoNanotrasen = Протез, туловище (Nanotrasen) # Xion marking-CyberlimbRArmXion = Протез, правая рука (Ксион) marking-CyberlimbLArmXion = Протез, левая рука (Ксион) @@ -76,6 +76,6 @@ marking-CyberlimbRHandXion = Протез, кисть правой руки (К marking-CyberlimbLHandXion = Протез, кисть левой руки (Ксион) marking-CyberlimbRLegXion = Протез, правая нога (Ксион) marking-CyberlimbLLegXion = Протез, левая нога (Ксион) -marking-CyberlimbLFootXion = Протез, правая стопа (Ксион) -marking-CyberlimbRFootXion = Протез, левая стопа (Ксион) +marking-CyberlimbRFootXion = Протез, правая стопа (Ксион) +marking-CyberlimbLFootXion = Протез, левая стопа (Ксион) marking-CyberlimbTorsoXion = Протез, туловище (Ксион) diff --git a/Resources/Locale/ru-RU/corvax/markings/vulpkanin.ftl b/Resources/Locale/ru-RU/corvax/markings/vulpkanin.ftl index ec9617b88e5..54d5dc8640e 100644 --- a/Resources/Locale/ru-RU/corvax/markings/vulpkanin.ftl +++ b/Resources/Locale/ru-RU/corvax/markings/vulpkanin.ftl @@ -1,14 +1,14 @@ -marking-PawSocks-pawsocks = Paw socks -marking-PawSocks = Paw socks -marking-FoxTail-vulp_tail = Fox tail -marking-FoxTail = Fox tail -marking-FoxEar-vulp_ear = Fox ear (outer) -marking-FoxEar-vulp_ear_inner = Fox ear (inner) -marking-FoxEar = Fox ear (inner) -marking-WolfTail-wolf_tail = Wolf tail (base) -marking-WolfTail-wolf_tail_inner = Wolf tail (tip) -marking-WolfTail = Wolf tail (tip) -marking-FoxBelly-vulp_belly-torso = Fox belly -marking-FoxBelly = Fox belly -marking-FoxSnout-vulp_face = Fox snout -marking-FoxSnout = Fox snout +marking-PawSocks-pawsocks = Носки на лапах +marking-PawSocks = Носки на лапах +marking-FoxTail-vulp_tail = Лисий хвост +marking-FoxTail = Лисий хвост +marking-FoxEar-vulp_ear = Лисье ухо (внешнее) +marking-FoxEar-vulp_ear_inner = Лисье ухо (внутреннее) +marking-FoxEar = Лисье ухо (внутреннее) +marking-WolfTail-wolf_tail = Волчий хвост (основа) +marking-WolfTail-wolf_tail_inner = Волчий хвост (конец) +marking-WolfTail = Волчий хвост (конец) +marking-FoxBelly-vulp_belly-torso = Лисье брюхо +marking-FoxBelly = Лисье брюхо +marking-FoxSnout-vulp_face = Лисья морда +marking-FoxSnout = Лисья морда diff --git a/Resources/Locale/ru-RU/disease/miasma.ftl b/Resources/Locale/ru-RU/disease/miasma.ftl index 5af6e46b288..e145e29e74f 100644 --- a/Resources/Locale/ru-RU/disease/miasma.ftl +++ b/Resources/Locale/ru-RU/disease/miasma.ftl @@ -1,7 +1,22 @@ ammonia-smell = Что-то резко попахивает!! -perishable-1 = [color=green]{ CAPITALIZE(SUBJECT($target)) } still { CONJUGATE-BASIC($target, "look", "looks") } fresh.[/color] -perishable-2 = [color=orangered]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-BASIC($target, "look", "looks") } somewhat fresh.[/color] -perishable-3 = [color=red]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-BASIC($target, "do not", "doesn't") } { CONJUGATE-BASIC($target, "look", "looks") } fresh anymore.[/color] -rotting-rotting = [color=orange]Оно гниёт![/color] -rotting-bloated = [color=orangered]Оно вздулось![/color] -rotting-extremely-bloated = [color=red]Оно сильно вздулось![/color] +perishable-1 = [color=green]{ CAPITALIZE(SUBJECT($target)) } выглядит ещё свежо.[/color] +perishable-2 = [color=orangered]{ CAPITALIZE(SUBJECT($target)) } выглядит не особо свежо.[/color] +perishable-3 = [color=red]{ CAPITALIZE(SUBJECT($target)) } выглядит совсем не свежо.[/color] +rotting-rotting = [color=orange]{ CAPITALIZE(SUBJECT($target)) } { $gender -> + [male] гниёт + [female] гниёт + [epicene] гниют + *[neuter] гниёт + }![/color] +rotting-bloated = [color=orangered]{ CAPITALIZE(SUBJECT($target)) } { $gender -> + [male] вздулся + [female] вздулась + [epicene] вздулись + *[neuter] вздулось + }![/color] +rotting-extremely-bloated = [color=red]{ CAPITALIZE(SUBJECT($target)) } сильно { $gender -> + [male] вздулся + [female] вздулась + [epicene] вздулись + *[neuter] вздулось + }![/color] diff --git a/Resources/Locale/ru-RU/execution/execution.ftl b/Resources/Locale/ru-RU/execution/execution.ftl new file mode 100644 index 00000000000..e1f69d2ce1a --- /dev/null +++ b/Resources/Locale/ru-RU/execution/execution.ftl @@ -0,0 +1,27 @@ +execution-verb-name = Execute +execution-verb-message = Use your weapon to execute someone. + +# All the below localisation strings have access to the following variables +# attacker (the person committing the execution) +# victim (the person being executed) +# weapon (the weapon used for the execution) + +execution-popup-gun-initial-internal = You ready the muzzle of { THE($weapon) } against { $victim }'s head. +execution-popup-gun-initial-external = { $attacker } readies the muzzle of { THE($weapon) } against { $victim }'s head. +execution-popup-gun-complete-internal = You blast { $victim } in the head! +execution-popup-gun-complete-external = { $attacker } blasts { $victim } in the head! +execution-popup-gun-clumsy-internal = You miss { $victim }'s head and shoot your foot instead! +execution-popup-gun-clumsy-external = { $attacker } misses { $victim } and shoots { POSS-ADJ($attacker) } foot instead! +execution-popup-gun-empty = { CAPITALIZE(THE($weapon)) } clicks. +suicide-popup-gun-initial-internal = You place the muzzle of { THE($weapon) } in your mouth. +suicide-popup-gun-initial-external = { $attacker } places the muzzle of { THE($weapon) } in { POSS-ADJ($attacker) } mouth. +suicide-popup-gun-complete-internal = You shoot yourself in the head! +suicide-popup-gun-complete-external = { $attacker } shoots { REFLEXIVE($attacker) } in the head! +execution-popup-melee-initial-internal = You ready { THE($weapon) } against { $victim }'s throat. +execution-popup-melee-initial-external = { $attacker } readies { POSS-ADJ($attacker) } { $weapon } against the throat of { $victim }. +execution-popup-melee-complete-internal = You slit the throat of { $victim }! +execution-popup-melee-complete-external = { $attacker } slits the throat of { $victim }! +suicide-popup-melee-initial-internal = You ready { THE($weapon) } against your throat. +suicide-popup-melee-initial-external = { $attacker } readies { POSS-ADJ($attacker) } { $weapon } against { POSS-ADJ($attacker) } throat. +suicide-popup-melee-complete-internal = You slit your throat with { THE($weapon) }! +suicide-popup-melee-complete-external = { $attacker } slits { POSS-ADJ($attacker) } throat with { THE($weapon) }! diff --git a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl index 0f42725ff02..2ecfc041806 100644 --- a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl +++ b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl @@ -46,9 +46,9 @@ flavor-base-spaceshroom = таинственно flavor-base-clean = чисто flavor-base-alkaline = щёлочно flavor-base-holy = свято -flavor-base-horrible = horrible +flavor-base-horrible = ужасно # lmao -flavor-base-terrible = ужасно +flavor-base-terrible = ужасающе # Complex flavors. Put a flavor here when you want something that's more # specific. @@ -162,6 +162,7 @@ flavor-complex-plastic = как пластик flavor-complex-glue = как клей flavor-complex-spaceshroom-cooked = как космический умами flavor-complex-lost-friendship = как прошедшая дружба +flavor-complex-light = like a light gone out ## Generic alcohol/soda taste. This should be replaced with an actual flavor profile. diff --git a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-greenshift.ftl b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-greenshift.ftl index 0468a3f6a74..0b92824e07f 100644 --- a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-greenshift.ftl +++ b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-greenshift.ftl @@ -1,2 +1,2 @@ -greenshift-title = Greenshift -greenshift-description = An event-less preset for admin events to play through without interference. +greenshift-title = Гриншифт +greenshift-description = Пресет без событий, чтобы мероприятия админов проходили без помех. diff --git a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-revolutionary.ftl b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-revolutionary.ftl index 4de9c4d75a2..1ef410b8d52 100644 --- a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-revolutionary.ftl +++ b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-revolutionary.ftl @@ -54,3 +54,9 @@ rev-headrev-name = [color=#5e9cff]{ $name }[/color] конвертировал { *[other] членов } экипажа rev-reverse-stalemate = Главы революции и командный состав станции выжили. +rev-deconverted-title = Deconverted! +rev-deconverted-text = + As the last headrev has died, the revolution is over. + + You are no longer a revolutionary, so be nice. +rev-deconverted-confirm = Confirm diff --git a/Resources/Locale/ru-RU/game-ticking/game-rules/rule-terminator.ftl b/Resources/Locale/ru-RU/game-ticking/game-rules/rule-terminator.ftl index dd5d6d402ce..07b548ef2ab 100644 --- a/Resources/Locale/ru-RU/game-ticking/game-rules/rule-terminator.ftl +++ b/Resources/Locale/ru-RU/game-ticking/game-rules/rule-terminator.ftl @@ -1,5 +1,5 @@ terminator-round-end-agent-name = NT-800 -objective-issuer-susnet = [color=#d64119]Саснет[/color] +objective-issuer-susnet = [color=#d64119]SusNet[/color] terminator-role-greeting = Вы - экстерминатор, неумолимый убийца, посланный в прошлое, чтобы защитить наше будущее. Нам необходимо, чтобы вы устранили { $target }, { $job }. diff --git a/Resources/Locale/ru-RU/guidebook/guides.ftl b/Resources/Locale/ru-RU/guidebook/guides.ftl index 71e10608296..6446327d0eb 100644 --- a/Resources/Locale/ru-RU/guidebook/guides.ftl +++ b/Resources/Locale/ru-RU/guidebook/guides.ftl @@ -30,7 +30,8 @@ guide-entry-medical = Медицинский отдел guide-entry-medicaldoctor = Врач guide-entry-chemist = Химик guide-entry-medicine = Медицина -guide-entry-brute = Продвинутое лечение +guide-entry-brute = + Продвинутое лечение механических повреждений guide-entry-botanicals = Ботаника guide-entry-cloning = Клонирование diff --git a/Resources/Locale/ru-RU/kitchen/components/microwave-component.ftl b/Resources/Locale/ru-RU/kitchen/components/microwave-component.ftl index 8502f0ea687..b62d4bb1eaa 100644 --- a/Resources/Locale/ru-RU/kitchen/components/microwave-component.ftl +++ b/Resources/Locale/ru-RU/kitchen/components/microwave-component.ftl @@ -11,7 +11,7 @@ microwave-component-suicide-multi-head-message = Вы зажариваете с microwave-component-suicide-message = Вы зажариваете свою голову! microwave-component-upgrade-cook-time = время готовки microwave-component-interact-full = Она заполнена. -microwave-component-interact-item-too-big = { CAPITALIZE(THE($item)) } is too big to fit in the microwave! +microwave-component-interact-item-too-big = { CAPITALIZE($item) } не может поместиться в микроволновой печи из-за размера! ## Bound UI diff --git a/Resources/Locale/ru-RU/pinpointer/station_map.ftl b/Resources/Locale/ru-RU/pinpointer/station_map.ftl index 17696e05518..2c965ceb8b7 100644 --- a/Resources/Locale/ru-RU/pinpointer/station_map.ftl +++ b/Resources/Locale/ru-RU/pinpointer/station_map.ftl @@ -1,5 +1,5 @@ station-map-window-title = Карта станции -station-map-user-interface-flavor-left = Don't panic +station-map-user-interface-flavor-left = Не паникуй station-map-user-interface-flavor-right = v1.42 nav-beacon-window-title = Станционный маяк nav-beacon-toggle-visible = Видимый diff --git a/Resources/Locale/ru-RU/prototypes/access/accesses.ftl b/Resources/Locale/ru-RU/prototypes/access/accesses.ftl index 6810fafb84f..2d0e1cd537e 100644 --- a/Resources/Locale/ru-RU/prototypes/access/accesses.ftl +++ b/Resources/Locale/ru-RU/prototypes/access/accesses.ftl @@ -1,6 +1,7 @@ id-card-access-level-command = Командование id-card-access-level-captain = Капитан id-card-access-level-head-of-personnel = Глава персонала +id-card-access-level-cryogenics = Cryogenics id-card-access-level-head-of-security = Глава службы безопасности id-card-access-level-security = Служба безопасности id-card-access-level-armory = Оружейная diff --git a/Resources/Locale/ru-RU/prototypes/barricades.ftl b/Resources/Locale/ru-RU/prototypes/barricades.ftl deleted file mode 100644 index 10c8fc00573..00000000000 --- a/Resources/Locale/ru-RU/prototypes/barricades.ftl +++ /dev/null @@ -1,4 +0,0 @@ -### Barricades entity prototype data. - -ent-barricade = деревянная баррикада - .desc = Дешёвое заграждение, выглядит так себе. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-livestock.ftl b/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-livestock.ftl index a4f382e17e4..93499105453 100644 --- a/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-livestock.ftl +++ b/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-livestock.ftl @@ -28,3 +28,7 @@ ent-LivestockPenguin = { ent-CrateNPCPenguin } .desc = { ent-CrateNPCPenguin.desc } ent-LivestockSnake = { ent-CrateNPCSnake } .desc = { ent-CrateNPCSnake.desc } +ent-LivestockSnake = { ent-CrateNPCLizard } + .desc = { ent-CrateNPCLizard.desc } +ent-LivestockSnake = { ent-CrateNPCKangaroo } + .desc = { ent-CrateNPCKangaroo.desc } diff --git a/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-shuttle.ftl b/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-shuttle.ftl index 1451c48b558..74585160376 100644 --- a/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-shuttle.ftl +++ b/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-shuttle.ftl @@ -2,5 +2,5 @@ ent-ShuttleThruster = { ent-Thruster } .desc = { ent-Thruster.desc } ent-ShuttleGyroscope = { ent-Gyroscope } .desc = { ent-Gyroscope.desc } -ent-ShuttlePowerKit = Ящик электропитания шаттла - .desc = Содержит платы для настенных энергосистем. +ent-ShuttlePowerKit = Shuttle powering crate + .desc = Contains boards for wallmounted power utilities. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-vending.ftl b/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-vending.ftl index 863694648c6..599a07dd31e 100644 --- a/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-vending.ftl +++ b/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-vending.ftl @@ -32,6 +32,8 @@ ent-CrateVendingMachineRestockRobotics = { ent-CrateVendingMachineRestockRobotic .desc = { ent-CrateVendingMachineRestockRoboticsFilled.desc } ent-CrateVendingMachineRestockTankDispenser = { ent-CrateVendingMachineRestockTankDispenserFilled } .desc = { ent-CrateVendingMachineRestockTankDispenserFilled.desc } +ent-CrateVendingMachineRestockHappyHonk = { ent-CrateVendingMachineRestockHappyHonkFilled } + .desc = { ent-CrateVendingMachineRestockHappyHonkFilled.desc } ent-CrateVendingMachineRestockGetmoreChocolateCorp = { ent-CrateVendingMachineRestockGetmoreChocolateCorpFilled } .desc = { ent-CrateVendingMachineRestockGetmoreChocolateCorpFilled.desc } ent-CrateVendingMachineRestockChang = { ent-CrateVendingMachineRestockChangFilled } @@ -40,7 +42,5 @@ ent-CrateVendingMachineRestockDiscountDans = { ent-CrateVendingMachineRestockDis .desc = { ent-CrateVendingMachineRestockDiscountDansFilled.desc } ent-CrateVendingMachineRestockDonut = { ent-CrateVendingMachineRestockDonutFilled } .desc = { ent-CrateVendingMachineRestockDonutFilled.desc } -ent-CrateVendingMachineRestockHappyHonk = { ent-CrateVendingMachineRestockHappyHonkFilled } - .desc = { ent-CrateVendingMachineRestockHappyHonkFilled.desc } ent-CrateVendingMachineRestockChemVend = { ent-CrateVendingMachineRestockChemVendFilled } .desc = { CrateVendingMachineRestockChemVendFilled.desc } diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/armory-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/armory-crates.ftl deleted file mode 100644 index d0a154b8117..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/armory-crates.ftl +++ /dev/null @@ -1,12 +0,0 @@ -ent-CrateArmorySMG = ящик пистолетов-пулемётов - .desc = Содержит два мощных пистолета-пулемёта и четыре магазина. Чтобы открыть необходим доступ уровня Оружейной. -ent-CrateArmoryShotgun = ящик дробовиков - .desc = Когда необходимо нашпиговать врага свинцом. Содержит два дробовика Силовик, и немного обычных ружейных патронов. Чтобы открыть необходим доступ уровня Оружейной. -ent-CrateTrackingImplants = ящик имплантов трекера - .desc = Содержит несколько имплантов трекера. Хороши для заключённых, за которыми вы хотите следить после освобождения. -ent-CrateTrainingBombs = ящик учебных бомб - .desc = Содержит три маломощные учебные бомбы для обучения обезвреживанию и безопасной утилизации бомб, костюм сапёра в комплект не входит. Чтобы открыть необходим доступ уровня Оружейной. -ent-CrateArmoryLaser = ящик лазеров - .desc = Содержит три стандартные лазерные винтовки. Чтобы открыть необходим доступ уровня Оружейной. -ent-CrateArmoryPistols = ящик пистолетов - .desc = Содержит два стандартных пистолета Nanotrasen, и 4 магазина к ним. Чтобы открыть необходим доступ уровня Оружейной. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/botany-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/botany-crates.ftl deleted file mode 100644 index cd11def6243..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/botany-crates.ftl +++ /dev/null @@ -1,10 +0,0 @@ -ent-CrateHydroponicsSeedsExotic = ящик экзотических семян - .desc = Мечта любого практикующего ботаника. Содержит много экзотических семян. Чтобы открыть необходим уровень доступа Гидропоника. -ent-CrateHydroponicsSeedsMedicinal = ящик лекарственных семян - .desc = Мечта любого начинающего химика. Сила медицины у вас под рукой! Чтобы открыть необходим уровень доступа Гидропоника. -ent-CrateHydroponicsTools = ящик снаряжения для гидропоники - .desc = Припасы для выращивания превосходного сада! Содержит несколько спреев с химикатами для растений, топорик, грабли, косу, несколько пар кожаных перчаток и ботанический фартук. -ent-CrateHydroponicsSeeds = ящик семян - .desc = Большие дела начинаются с малого. Содержит 12 различных семян. -ent-CratePlantBGone = ящик гербицида Plant-B-Gone - .desc = Из Монстано. "Назойливые сорняки, встречайте свой смерть!" diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/cargo-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/cargo-crates.ftl deleted file mode 100644 index c7f06b31c7d..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/cargo-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateCargoLuxuryHardsuit = ящик элитного шахтёрского скафандра - .desc = Наконец-то, скафандр, который квартирмейстеры могут назвать своим собственным. Центком услышал вас, а теперь перестаньте спрашивать. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/chemistry-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/chemistry-crates.ftl deleted file mode 100644 index 75a8044e426..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/chemistry-crates.ftl +++ /dev/null @@ -1,6 +0,0 @@ -ent-CrateChemistryP = ящик химикатов (P-элементы) - .desc = Содержит химические вещества из P-блока элементов. Чтобы открыть необходим уровень доступа Химия. -ent-CrateChemistryS = ящик химикатов (S-элементы) - .desc = Содержит химические вещества из S-блока элементов. Чтобы открыть необходим уровень доступа Химия. -ent-CrateChemistryD = ящик химикатов (D-элементы) - .desc = Содержит химические вещества из D-блока элементов. Чтобы открыть необходим уровень доступа Химия. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/circuitboard-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/circuitboard-crates.ftl deleted file mode 100644 index 65c2c5219f7..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/circuitboard-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateCrewMonitoringBoards = платы мониторинга экипажа - .desc = Содержит две машинные платы мониторинга экипажа, для сервера и консоли. Чтобы открыть необходим уровень доступа Инженерный. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/emergency-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/emergency-crates.ftl deleted file mode 100644 index 3df274f824a..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/emergency-crates.ftl +++ /dev/null @@ -1,14 +0,0 @@ -ent-CrateEmergencyExplosive = ящик сапёрного снаряжения - .desc = Учёные обезумели? Что-то пикает за шлюзом? Купите сейчас и станьте героем, которого станция засл... Я имею в виду, в котором нуждается! (время в комплект не входит). -ent-CrateEmergencyFire = ящик пожарного снаряжения - .desc = Только вы можете предотвратить пожар на станции. Вместе с двумя противопожарными костюмами, противогазами, фонариками, большими кислородными баллонами, огнетушителями и касками! -ent-CrateEmergencyInternals = ящик аварийного снаряжения - .desc = Управляйте своей жизнью и контролируйте своё дыхание с помощью трёх дыхательных масок, трёх аварийных кислородных баллонов и трёх больших баллонов с воздухом. -ent-CrateEmergencyRadiation = ящик противорадиационного снаряжения - .desc = Переживите ядерный апокалипсис и двигатель суперматерии благодаря двум комплектам противорадиационных костюмов. Каждый комплект включает в себя шлем, костюм и счетчик Гейгера. Мы даже подарим бутылку водки и несколько стаканов, учитывая продолжительность жизни тех, кто это заказывает. -ent-CrateEmergencyInflatablewall = ящик надувных стен - .desc = Три стопки надувных стен для случаев, когда металлические стены станции больше не удерживают атмосферу. -ent-CrateGenericBiosuit = ящик аварийных биозащитных костюмов - .desc = Содержит 2 костюма биологической защиты, чтобы никакая зараза не отвлекала вас от того, чем вы там занимаетесь. -ent-CrateSlimepersonLifeSupport = ящик жизнеобеспечения слаймолюдов - .desc = Содержит четыре дыхательные маски и четыре больших баллона азота. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/engineering-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/engineering-crates.ftl deleted file mode 100644 index fb1e3ea9233..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/engineering-crates.ftl +++ /dev/null @@ -1,32 +0,0 @@ -ent-CrateEngineeringGear = ящик инженерного оборудования - .desc = Различные инженерные компоненты. -ent-CrateEngineeringToolbox = ящик ящиков для инструментов - .desc = Два обычных и два электромонтанжных ящика для инструментов. -ent-CrateEngineeringPowercell = ящик батарей. - .desc = Три микрореакторные батареи. -ent-CrateEngineeringCableLV = ящик кабеля НВ - .desc = 3 мотка низковольтного кабеля. -ent-CrateEngineeringCableMV = ящик кабеля СВ - .desc = 3 мотка средневольтного кабеля. -ent-CrateEngineeringCableHV = ящик кабеля ВВ - .desc = 3 мотка высоковольтного кабеля. -ent-CrateEngineeringCableBulk = ящик кабеля различного вольтажа - .desc = 2 мотка кабеля каждого типа. -ent-CrateEngineeringElectricalSupplies = ящик электромонтажного снаряжения - .desc = NT не несёт ответственности за любые рабочие конфликты, связанные с изолированными перчатками, входящими в комплект этих ящиков. -ent-CrateEngineeringStationBeaconBundle = набор станционных маяков - .desc = Ящик, содержащий 5 корпусов станционных маяков для модификации карты станции. -ent-CrateEngineeringJetpack = ящик джетпаков - .desc = Два джетпака для тех, кто не умеет пользоваться огнетушителями. -ent-CrateEngineeringMiniJetpack = ящик мини-джетпаков - .desc = Два мини-джетпака для тех, кому хочется вызова. -ent-CrateAirlockKit = ящик компонентов шлюза - .desc = Набор для строительства 6 воздушных шлюзов, инструменты в комплект не входят. -ent-CrateEvaKit = набор EVA - .desc = Набор, состоящий из двух престижных EVA скафандров и шлемов. -ent-CrateRCDAmmo = ящик зарядов РСУ - .desc = 3 обоймы для РСУ, каждая из которых восстанавливает 5 зарядов. -ent-CrateRCD = ящик РСУ - .desc = Ящик, содержащий одно ручное строительное устройство. -ent-CrateParticleDecelerators = ящик с замедлителем частиц - .desc = Ящик, содержащий три замедлителя частиц. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/engines-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/engines-crates.ftl deleted file mode 100644 index 0c304464bcf..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/engines-crates.ftl +++ /dev/null @@ -1,29 +0,0 @@ -ent-CrateEngineeringAMEShielding = ящик компонентов ДАМ - .desc = 9 частей, для создания нового или расширения существующего двигателя антиматерии. -ent-CrateEngineeringAMEJar = ящик антиматериевого топлива - .desc = Три канистры антиматериевого топлива, для заправки двигателя антиматерии. -ent-CrateEngineeringAMEControl = ящик с контроллером управления ДАМ - .desc = Управляющий компьютер ДАМ. -ent-CrateEngineeringSingularityEmitter = ящик с эмиттером - .desc = Эмиттер, использующийся в сингулярном двигателе. -ent-CrateEngineeringSingularityCollector = ящик с коллектором радиации - .desc = Коллектор для радиации, использующийся в сингулярном двигателе. -ent-CrateEngineeringSingularityContainment = ящик с генератором сдерживающего поля - .desc = Генератор сдерживающего поля, удерживает сингулярность под контролем. -ent-CrateEngineeringSingularityGenerator = ящик с генератором сингулярности - .desc = Генератор сингулярности, матерь монстра. -ent-CrateEngineeringParticleAccelerator = ящик с ускорителем частиц - .desc = Сложная в настройке, но чертовски полезная. -ent-CrateEngineeringGenerator = ящик с генератором - .desc = { ent-CrateEngineering.desc } -ent-CrateEngineeringSolar = ящик сборных солнечных панелей - .desc = { ent-CrateEngineering.desc } -ent-CrateEngineeringShuttle = ящик электропитания шаттла - .desc = { ent-CrateEngineeringSecure.desc } - .suffix = { "" } -ent-CrateEngineeringTeslaGenerator = ящик с генератором Теслы - .desc = Генератор Теслы. Храни вас Господь. -ent-CrateEngineeringTeslaCoil = ящик с катушкой Теслы - .desc = Катушка Теслы. Притягивает молнии и вырабатывает из них энергию. -ent-CrateEngineeringTeslaGroundingRod = ящик с заземляющим стержнем Теслы - .desc = Заземляющий стержень, идеально для защиты от молний. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/food-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/food-crates.ftl deleted file mode 100644 index df687552518..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/food-crates.ftl +++ /dev/null @@ -1,16 +0,0 @@ -ent-CrateFoodPizza = экстренная доставка пиццы - .desc = Внесите свой вклад в борьбу с голодом на станции, доставляя пиццу в отделы с недостаточным финансированием! В комплект входят 4 пиццы. -ent-CrateFoodPizzaLarge = катастрофическая доставка пиццы - .desc = Даже когда всё вокруг рушится, найдите утешение в том, что много пиццы решит все проблемы. В комплект входят 16 пицц. -ent-CrateFoodMRE = ящик ИРП - .desc = Армейские обеды, которыми можно накормить целый отдел. -ent-CrateFoodCooking = ящик кухонных припасов - .desc = Дополнительные кухонные припасы на случай отсутствия ботаников. -ent-CrateFoodDinnerware = ящик кухонных принадлежностей - .desc = Дополнительные кухонные припасы на случай, если клоуна оставили на кухне без надзора. -ent-CrateFoodBarSupply = ящик барных принадлежностей - .desc = Дополнительные барные припасы на случай, если клоуна оставили за барной стойкой без надзора. -ent-CrateFoodSoftdrinks = ящик газировки - .desc = Разнообразная газировка для небольшой вечеринки, без необходимости опустошать соответствующие торгоматы. В комплект входят 14 банок газировки. -ent-CrateFoodSoftdrinksLarge = оптовый ящик газировки - .desc = Большое количество банок газировки, извлеченных прямо из торгоматов Центкома, ведь вы просто не можете покинуть свой отдел. Включает 28 банок газировки. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/fun-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/fun-crates.ftl deleted file mode 100644 index 82e6ef61201..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/fun-crates.ftl +++ /dev/null @@ -1,40 +0,0 @@ -ent-CrateFunPlushie = ящик плюшевых игрушек - .desc = Куча мягких плюшевых игрушек. Разложите их повсюду, а потом подумайте, как вы объясните эту покупку NT. -ent-CrateFunLizardPlushieBulk = Bulk lizard plushie crate - .desc = A buncha soft lizard plushies. Throw them around and then wonder how you're gonna explain this purchase to NT. -ent-CrateFunInstrumentsVariety = набор различных музыкальных инструментов - .desc = Развеселите и расшевелите станцию с этой разнообразной коллекцией! Содержит семь музыкальных инструментов. -ent-CrateFunInstrumentsBrass = набор духовых инструментов - .desc = Поддайте джаза в жизнь станции с набором духовых инструментов. Содержит разнообразные духовые инструменты, на которых может играть вся станция. -ent-CrateFunInstrumentsString = набор струнных инструментов - .desc = Ударяйте или щипайте, дёргайте или бейте по струнам! Играйте нежные мелодии или крушите лица благодаря этому набору струнных инструментов. -ent-CrateFunInstrumentsWoodwind = набор деревянных духовых инструментов - .desc = Если атмос-инженеры хорошо справляется со своей работой, воспользуйтесь воздухом, чтобы сыграть на этих деревянных духовых инструментах музыку! Наличие настоящего дерева в каждом экземпляре не гарантируется. -ent-CrateFunInstrumentsKeyedPercussion = набор клавишных и перкуссионных инструментов - .desc = Вдарьте по клавишам при помощи рук или палочек, воспользовавшись этим набором клавишных и перкуссионных инструментов. -ent-CrateFunInstrumentsSpecial = набор специальных коллекционных инструментов - .desc = Поднимите шум при помощи этой специальной коллекции почти-инструментов! Центком не несет ответственности за любые травмы, вызванные содержимым ящика. -ent-CrateFunArtSupplies = художественные принадлежности - .desc = Устройте парочку счастливых случайностей с этими мелками! -ent-CrateFunBoardGames = ящик настольных игр - .desc = Доказано, что игровые вечера либо сводят на нет скуку, либо усиливают убийственную ярость в зависимости от игры. -ent-CrateFunATV = ящик с квадроциклом - .desc = { ent-CrateLivestock.desc } -ent-CrateFunSadTromboneImplants = ящик имплантов Грустный тромбон - .desc = Умирать ещё никогда не было так весело! Имплантируйте его, чтобы сделать смерть немного ярче. -ent-CrateFunLightImplants = ящик имплантов Свет - .desc = Заставьте свою кожу светиться с помощью этих имплантов! -ent-CrateFunParty = набор для вечеринок - .desc = Все участники вечеринки ждут, когда вы его откроете. Включает в себя подарки, напитки и даже торт. -ent-CrateFunWaterGuns = ящик водяных пистолетов - .desc = Специальное летнее предложение с набором ярких водяных пистолетов. Не содержит воды. -ent-CrateFunSyndicateSegway = ящик с сегвеем синдиката - .desc = { ent-CrateLivestock.desc } -ent-CrateFunBoxing = ящик боксерского снаряжения - .desc = Хотите организовать подпольный бойцовский клуб или провести турнир среди сотрудников станции? Этот ящик для вас! -ent-CrateFunBikeHornImplants = ящик хонк-имплантов - .desc = Тысяча гудков за день отпугнёт СБ на день! -ent-CrateFunMysteryFigurines = ящик минифигурок Загадочные космонавты - .desc = Коллекция из 10 коробок загадочных минифигурок. Дубликаты возврату не подлежат. -ent-CrateFunDartsSet = набор для дартса - .desc = Коробка со всем необходимым для увлекательной игры в дартс. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/livestock-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/livestock-crates.ftl deleted file mode 100644 index 6d1b5f7b496..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/livestock-crates.ftl +++ /dev/null @@ -1,44 +0,0 @@ -ent-CrateNPCBee = ящик с пчёлами - .desc = Ящик, содержащий рой из восьми пчел. -ent-CrateNPCButterflies = ящик с бабочками - .desc = Ящик, содержащий пять бабочек. -ent-CrateNPCCat = ящик с кошкой - .desc = Ящик, содержащий одну кошку. -ent-CrateNPCChicken = ящик кур - .desc = Ящик, содержащий четыре взрослые курицы. -ent-CrateNPCCrab = ящик крабов - .desc = Ящик, содержащий трёх крупных крабов. -ent-CrateNPCDuck = ящик уток - .desc = Ящик, содержащий шесть взрослых уток. -ent-CrateNPCCorgi = ящик корги - .desc = Ящик, содержащий одного корги. -ent-CrateNPCPuppyCorgi = ящик с щенком корги - .desc = Ящик, содержащий одного щенка корги. Аввв. -ent-CrateNPCCow = ящик с коровой - .desc = Ящик, содержащий одну корову. -ent-CrateNPCGoat = ящик с козой - .desc = Ящик, содержащий одну козу. -ent-CrateNPCGoose = ящик гусей - .desc = Ящик, содержащий двух гусей. -ent-CrateNPCGorilla = ящик с гориллой - .desc = Ящик, содержащий одну гориллу. -ent-CrateNPCMonkeyCube = ящик обезьяньих кубиков - .desc = Ящик, содержащий коробку обезьяньих кубиков. -ent-CrateNPCKoboldCube = ящик кобольдовых кубиков - .desc = Ящик, содержащий три коробки кобольдовых кубиков. -ent-CrateNPCMouse = ящик мышей - .desc = Ящик, содержащий пять мышей. -ent-CrateNPCParrot = ящик попугаев - .desc = Ящик, содержащий трёх попугаев. -ent-CrateNPCPenguin = ящик пингвинов - .desc = Ящик, содержащий двух пингвинов. -ent-CrateNPCMothroach = ящик таракамолей - .desc = Ящик, содержащий четырёх таракамолей. -ent-CrateNPCPig = ящик со свиньёй - .desc = Ящик, содержащий одну свинью. -ent-CrateNPCSnake = ящик змей - .desc = Ящик, содержащий трёх змей. -ent-CrateNPCLizard = ящик с ящерицей - .desc = Ящик, содержащий одну ящерицу. -ent-CrateNPCKangaroo = ящик с кенгуру - .desc = Ящик, содержащий одного кенгуру. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/materials-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/materials-crates.ftl deleted file mode 100644 index 280fb69425b..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/materials-crates.ftl +++ /dev/null @@ -1,18 +0,0 @@ -ent-CrateMaterialGlass = ящик стекла - .desc = 90 единиц стекла, упакованных с заботой. -ent-CrateMaterialSteel = ящик стали - .desc = 90 единиц стали. -ent-CrateMaterialTextiles = ящик текстиля - .desc = 60 единиц ткани и 30 единиц дюраткани. -ent-CrateMaterialPlastic = ящик пластика - .desc = 90 единиц пластика. -ent-CrateMaterialWood = ящик дерева - .desc = Куча деревянных досок. -ent-CrateMaterialPlasteel = ящик пластали - .desc = 90 единиц пластали. -ent-CrateMaterialPlasma = ящик твёрдой плазмы - .desc = 90 единиц плазмы. -ent-CrateMaterialCardboard = ящик картона - .desc = 60 единиц картона. -ent-CrateMaterialPaper = ящик бумаги - .desc = 90 листов бумаги. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/medical-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/medical-crates.ftl deleted file mode 100644 index 35beabb4f1e..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/medical-crates.ftl +++ /dev/null @@ -1,30 +0,0 @@ -ent-CrateMedicalDefib = ящик с дефибриллятором - .desc = { ent-CrateMedical.desc } -ent-CrateMedicalSupplies = ящик медицинских припасов - .desc = Стандартные медикаменты. -ent-CrateChemistrySupplies = ящик химического оборудования - .desc = Стандартное химическое оборудование. -ent-CrateChemistryVials = ящик химических пробирок - .desc = Ящик, содержащий коробку пробирок. -ent-CrateMindShieldImplants = ящик имплантов Щит разума - .desc = Ящик, содержащий 3 импланта Щит разума. -ent-CrateMedicalSurgery = ящик хирургических инструментов - .desc = Хирургические инструменты. -ent-CrateMedicalScrubs = ящик медицинских роб - .desc = Врачебная одежда. -ent-CrateEmergencyBurnKit = аварийный набор лечения физических травм - .desc = Ящик, содержащий набор для лечения физических травм. -ent-CrateEmergencyToxinKit = аварийный набор лечения токсинов - .desc = Ящик, содержащий набор для лечения токсинов. -ent-CrateEmergencyO2Kit = аварийный набор лечения кислородного голодания - .desc = Ящик, содержащий набор для лечения кислородного голодания. -ent-CrateEmergencyBruteKit = аварийный набор лечения механических травм - .desc = Ящик, содержащий набор для лечения механических травм. -ent-CrateEmergencyAdvancedKit = продвинутый аварийный набор - .desc = Ящик, содержащий продвинутую аптечку первой помощи. -ent-CrateEmergencyRadiationKit = аварийный набор выведения радиации - .desc = Ящик, содержащий набор для выведения радиации. -ent-CrateBodyBags = ящик мешков для тела - .desc = Содержит 10 мешков для тел. -ent-CrateVirologyBiosuit = ящик вирусологических биозащитных костюмов - .desc = Содержит 2 костюма биологической защиты, чтобы никакая зараза не отвлекала вас от лечения экипажа. Чтобы открыть необходим уровень доступа Медицинский. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/salvage-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/salvage-crates.ftl deleted file mode 100644 index c35375f14b0..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/salvage-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateSalvageEquipment = ящик снаряжения утилизатора - .desc = Для отважных. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/science-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/science-crates.ftl deleted file mode 100644 index 18dfb1b711f..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/science-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateScienceBiosuit = ящик научных биозащитных костюмов - .desc = Содержит 2 костюма биологической защиты, чтобы никакая зараза не отвлекала вас от занятия исследованиями. Чтобы открыть необходим уровень доступа Научный. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/security-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/security-crates.ftl deleted file mode 100644 index 038f765d4a3..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/security-crates.ftl +++ /dev/null @@ -1,14 +0,0 @@ -ent-CrateSecurityArmor = ящик с бронёй - .desc = Три универсальных бронежилета с неплохой защитой. Чтобы открыть необходим уровень доступа Служба безопасности. -ent-CrateSecurityHelmet = ящик со шлемами - .desc = Содержит три стандартных ведра для мозгов. Чтобы открыть необходим уровень доступа Служба безопасности. -ent-CrateSecurityNonlethal = ящик нелетального снаряжения - .desc = Несмертельное оружие. Чтобы открыть необходим уровень доступа Служба безопасности. -ent-CrateSecurityRiot = ящик снаряжения против беспорядков - .desc = Содержит два комплекта бронежилетов, шлемов, щитов и дробовиков "Силовик", заряженных травматическими патронами. Дополнительные боеприпасы входят в комплект. Чтобы открыть необходим уровень доступа Оружейная. -ent-CrateSecuritySupplies = ящик припасов СБ - .desc = Содержит различные припасы для службы безопасности станции. Чтобы открыть необходим уровень доступа Служба безопасности. -ent-CrateRestraints = ящик наручников - .desc = Содержит по две коробки наручников и стяжек. Чтобы открыть необходим уровень доступа Служба безопасности. -ent-CrateSecurityBiosuit = ящик биозащитных костюмов СБ - .desc = Содержит 2 костюма биологической защиты, чтобы никакая зараза не отвлекала вас от исполнения своего долга. Чтобы открыть необходим уровень доступа Служба безопасности. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/service-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/service-crates.ftl deleted file mode 100644 index ffa60f53912..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/service-crates.ftl +++ /dev/null @@ -1,26 +0,0 @@ -ent-CrateServiceJanitorialSupplies = ящик с уборочным инвентарем - .desc = Победите копоть и грязь с Незаменимыми Припасами для Уборки от Nanotrasen! Содержит три ведра, таблички мокрого пола, и очищающие гранаты. Также содержит одну швабру, тряпку, щётку, чистящий спрей, и мусорный пакет. -ent-CrateServiceReplacementLights = ящик запасных лампочек - .desc = Да воссияет над станцией Свет Эфира! Или хотя бы свет сорока двух лампочек-труб и двадцати одной обычной лампочки. -ent-CrateMousetrapBoxes = ящик мышеловок - .desc = Мышеловки - на случай, когда орда мышей заполонила отделы станции. Используйте экономно... или нет. -ent-CrateServiceSmokeables = ящик табачных изделий - .desc = Устали от быстрой смерти на станции? Закажите этот ящик и прокурите свой путь к кашляющей погибели! -ent-CrateServiceCustomSmokable = ящик табачных изделий (собери-сам) - .desc = Хотите проявить творческий подход к тому, что вы используете для уничтожения своих легких? Этот ящик для вас! В нем есть все, что нужно, чтобы скрутить свои сигареты. -ent-CrateServiceBureaucracy = ящик бюрократических припасов - .desc = Стопка бумаги, папки, несколько ручек - всё о чем можно мечтать. -ent-CrateServicePersonnel = ящик для найма персонала - .desc = Содержит коробку с КПК и чистыми ID картами. -ent-CrateServiceBooks = ящик книг - .desc = Содержит 10 пустых книг случайного вида. -ent-CrateServiceGuidebooks = ящик руководств - .desc = Содержит руководства. -ent-CrateServiceBox = ящик коробок - .desc = Содержит 6 пустых универсальных коробок. -ent-CrateJanitorBiosuit = ящик биозащитных костюмов уборщика - .desc = Содержит 2 костюма биологической защиты, чтобы никакая зараза не отвлекала вас от уборки станции. -ent-CrateServiceTheatre = ящик театрального реквизита - .desc = Содержит плащ моли, парикмахерские ножницы, униформу горничной, атрибутику клоуна и мима, а также другие прелести для выступлений. -ent-CrateJanitorExplosive = ящик с сапёрно-уборочным костюмом - .desc = Содержит костюм для уборки любых взрывчатых веществ, купите один сегодня! diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/syndicate-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/syndicate-crates.ftl deleted file mode 100644 index 3f8a0951286..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/syndicate-crates.ftl +++ /dev/null @@ -1,6 +0,0 @@ -ent-CrateSyndicate = ящик синдиката - .desc = Стальной ящик тёмного цвета с красными полосами и выдавленной на передней панели литерой S. -ent-CrateSyndicateSurplusBundle = ящик припасов синдиката - .desc = Содержит случайное снаряжение Синдиката, общей стоимостью в 50 телекристаллов. Оно может быть как бесполезным хламом, так и реально крутым. -ent-CrateSyndicateSuperSurplusBundle = ящик суперприпасов синдиката - .desc = Содержит случайное снаряжение Синдиката, общей стоимостью в 125 телекристаллов. diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/vending-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/vending-crates.ftl deleted file mode 100644 index 76962e83d06..00000000000 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/vending-crates.ftl +++ /dev/null @@ -1,46 +0,0 @@ -ent-CrateVendingMachineRestockBoozeFilled = ящик пополнения АлкоМат - .desc = Содержит набор пополнения торгомата АлкоМат. -ent-CrateVendingMachineRestockClothesFilled = ящик пополнения одежды - .desc = Содержит несколько наборов пополнения торгоматов, ОдеждоМата и ТеатроШкафа. -ent-CrateVendingMachineRestockDinnerwareFilled = ящик пополнения ПосудоМат - .desc = Содержит набор пополнения торгомата ПосудоМат. -ent-CrateVendingMachineRestockEngineeringFilled = ящик пополнения ИнжеМат - .desc = Содержит набор пополнения торгомата ИнжеМат. Он же может пополнить торгомат ТвоИнструменты. -ent-CrateVendingMachineRestockGamesFilled = ящик пополнения Безобидные развлечения - .desc = Содержит набор пополнения торгомата Безобидные развлечения. -ent-CrateVendingMachineRestockHotDrinksFilled = ящик пополнения Лучшие горячие напитки Солнечной - .desc = Содержит два набора пополнения кофейного автомата Лучшие горячие напитки Солнечной. -ent-CrateVendingMachineRestockMedicalFilled = ящик пополнения НаноМед - .desc = Содержит набор пополнения, совместимый с торгоматами НаноМед и НаноМед Плюс. -ent-CrateVendingMachineRestockNutriMaxFilled = ящик пополнения БотаМакс - .desc = Содержит набор пополнения торгомата БотаМакс. -ent-CrateVendingMachineRestockPTechFilled = ящик пополнения ПТех - .desc = Содержит набор пополнения раздатчика бюрократии ПТех. -ent-CrateVendingMachineRestockRobustSoftdrinksFilled = ящик пополнения Прохладительные напитки Робаст - .desc = Содержит два набора пополнения торгоматов компании Robust Softdrinks LLC. -ent-CrateVendingMachineRestockSalvageEquipmentFilled = ящик пополнения Утильмаг - .desc = Содержит набор пополнения торгомата Утильмаг. -ent-CrateVendingMachineRestockSecTechFilled = ящик пополнения СБТех - .desc = Содержит набор пополнения торгомата СБТех. -ent-CrateVendingMachineRestockSeedsFilled = ящик пополнения МегаРаздатчик Семян - .desc = Содержит набор пополнения торгомата МегаРаздатчик Семян. -ent-CrateVendingMachineRestockSmokesFilled = ящик пополнения ШейдиСиг Делюкс - .desc = Содержит два набора пополнения торгоматов ШейдиСиг Делюкс. -ent-CrateVendingMachineRestockVendomatFilled = ящик пополнения Вендомат - .desc = Содержит набор пополнения торгомата Вендомат. -ent-CrateVendingMachineRestockRoboticsFilled = ящик пополнения Роботех Делюкс - .desc = Содержит набор пополнения торгомата Роботех Делюкс. -ent-CrateVendingMachineRestockTankDispenserFilled = ящик пополнения газовых баллонов - .desc = Содержит набор пополнения атмосферного или инженерного раздатчика газовых баллонов. -ent-CrateVendingMachineRestockGetmoreChocolateCorpFilled = ящик пополнения Гетмор Шоколад - .desc = Содержит набор пополнения торгомата Гетмор Шоколад Корп. -ent-CrateVendingMachineRestockChangFilled = ящик пополнения Чанг - .desc = Содержит набор пополнения торгомата Мистер Чанг. -ent-CrateVendingMachineRestockDiscountDansFilled = ящик пополнения Дискаунтер Дэна - .desc = Содержит набор пополнения торгомата Дискаунтер Дэна. -ent-CrateVendingMachineRestockDonutFilled = ящик пополнения Пончики Монкинс - .desc = Содержит набор пополнения торгомата Пончики Монкинс. -ent-CrateVendingMachineRestockHappyHonkFilled = ящик пополнения Хэппи Хонк - .desc = Содержит набор пополнения торгомата Хэппи Хонк. -ent-CrateVendingMachineRestockChemVendFilled = ящик пополнения ХимкоМат - .desc = Содержит набор пополнения торгомата ХимкоМат. diff --git a/Resources/Locale/ru-RU/prototypes/emitter.ftl b/Resources/Locale/ru-RU/prototypes/emitter.ftl deleted file mode 100644 index 5c3f5cc1325..00000000000 --- a/Resources/Locale/ru-RU/prototypes/emitter.ftl +++ /dev/null @@ -1,4 +0,0 @@ -### Emitter entity prototype data. - -ent-emitter = эмиттер - .desc = Устройство, стреляющее энергетическими пучками, используемое для питания сдерживающих полей на безопасном расстоянии. diff --git a/Resources/Locale/ru-RU/prototypes/entities/objects/specific/xenoarchaelogy/artifact-equipment.ftl b/Resources/Locale/ru-RU/prototypes/entities/objects/specific/xenoarchaelogy/artifact-equipment.ftl deleted file mode 100644 index d6936444ac6..00000000000 --- a/Resources/Locale/ru-RU/prototypes/entities/objects/specific/xenoarchaelogy/artifact-equipment.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateArtifactContainer = контейнер для артефактов - .desc = Используется для безопасного хранения и перемещения артефактов. diff --git a/Resources/Locale/ru-RU/prototypes/entities/structures/shuttles/thrusters.ftl b/Resources/Locale/ru-RU/prototypes/entities/structures/shuttles/thrusters.ftl deleted file mode 100644 index 7624107fe5b..00000000000 --- a/Resources/Locale/ru-RU/prototypes/entities/structures/shuttles/thrusters.ftl +++ /dev/null @@ -1,10 +0,0 @@ -ent-BaseThruster = двигатель - .desc = Ускоритель, заставляющий шаттл двигаться. -ent-Thruster = { ent-BaseThruster } - .desc = { ent-BaseThruster.desc } -ent-DebugThruster = DEBUG двигатель - .desc = Делает ньооооооом. Не требует ни питания, ни свободного места. -ent-Gyroscope = гироскоп - .desc = Увеличивает потенциальное угловое вращение шаттла. -ent-DebugGyroscope = DEBUG гироскоп - .desc = { ent-Gyroscope.desc } diff --git a/Resources/Locale/ru-RU/prototypes/entities/structures/storage/canisters/gas-canisters.ftl b/Resources/Locale/ru-RU/prototypes/entities/structures/storage/canisters/gas-canisters.ftl deleted file mode 100644 index d1ba7b79b87..00000000000 --- a/Resources/Locale/ru-RU/prototypes/entities/structures/storage/canisters/gas-canisters.ftl +++ /dev/null @@ -1,54 +0,0 @@ -ent-GasCanister = канистра для газа - .desc = Канистра, в которой может содержаться газ любого вида. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-StorageCanister = канистра для хранения - .desc = { ent-GasCanister.desc } -ent-AirCanister = канистра воздуха - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится воздушная смесь. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-OxygenCanister = канистра кислорода - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится кислород. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-LiquidOxygenCanister = канистра сжиженного кислорода - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится сжиженный кислород. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-NitrogenCanister = канистра азота - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится азот. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-LiquidNitrogenCanister = канистра сжиженного азота - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится сжиженный азот. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-CarbonDioxideCanister = канистра углекислого газа - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится углекислый газ. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-LiquidCarbonDioxideCanister = канистра сжиженного углекислого газа - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится сжиженный углекислый газ. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-PlasmaCanister = канистра плазмы - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится плазма. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-TritiumCanister = канистра трития - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится тритий. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-WaterVaporCanister = канистра водяного пара - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится водяной пар. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-AmmoniaCanister = канистра аммиака - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится аммиак. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-NitrousOxideCanister = канистра оксида азота - .desc = Канистра, в которой может содержаться газ любого вида. В этой, предположительно, содержится оксид азота. Можно прикрепить к порту коннектора с помощью гаечного ключа. -ent-FrezonCanister = канистра фрезона - .desc = Хладагент с лёгкими галлюциногенными свойствами. Развлекайтесь. -ent-GasCanisterBrokenBase = разбитая канистра для газа - .desc = Разбитая канистра для газа. Не совсем бесполезна, так как может быть разобрана для получения высококачественных материалов. -ent-StorageCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } -ent-AirCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } -ent-OxygenCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } -ent-NitrogenCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } -ent-CarbonDioxideCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } -ent-PlasmaCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } -ent-TritiumCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } -ent-AmmoniaCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } -ent-WaterVaporCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } -ent-NitrousOxideCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } -ent-FrezonCanisterBroken = { ent-GasCanisterBrokenBase } - .desc = { ent-GasCanisterBrokenBase.desc } diff --git a/Resources/Locale/ru-RU/prototypes/entities/structures/storage/tanks/tanks.ftl b/Resources/Locale/ru-RU/prototypes/entities/structures/storage/tanks/tanks.ftl deleted file mode 100644 index c89b5ee3fa0..00000000000 --- a/Resources/Locale/ru-RU/prototypes/entities/structures/storage/tanks/tanks.ftl +++ /dev/null @@ -1,14 +0,0 @@ -ent-WeldingFuelTank = топливный резервуар - .desc = Топливный резервуар. Используется для хранения большого количества топлива. -ent-WeldingFuelTankFull = { ent-WeldingFuelTank } - .desc = { ent-WeldingFuelTank.desc } -ent-WeldingFuelTankHighCapacity = топливный резервуар большой ёмкости - .desc = Резервуар для жидкости под высоким давлением, предназначенный для хранения гигантских объемов сварочного топлива. -ent-WaterTank = водяной резервуар - .desc = Резервуар для воды. Используется для хранения большого количества воды. -ent-WaterTankFull = { ent-WaterTank } - .desc = { ent-WaterTank.desc } -ent-WaterCooler = кулер с водой - .desc = Хорошее место, чтобы постоять и потратить время. Сбоку имеется запас бумажных стаканчиков. -ent-WaterTankHighCapacity = водяной резервуар большой ёмкости - .desc = Резервуар для жидкости под высоким давлением, предназначенный для хранения гигантских объемов воды. diff --git a/Resources/Locale/ru-RU/prototypes/gas-tanks.ftl b/Resources/Locale/ru-RU/prototypes/gas-tanks.ftl deleted file mode 100644 index cf49ee0138a..00000000000 --- a/Resources/Locale/ru-RU/prototypes/gas-tanks.ftl +++ /dev/null @@ -1,18 +0,0 @@ -### Gas tank entity prototype data. - -ent-gas-tank-base = газовый баллон - .desc = Это газовый баллон. Он содержит газ. -ent-oxygen-tank = кислородный баллон - .desc = Баллон с кислородом. -ent-yellow-oxygen-tank = { ent-oxygen-tank } - .desc = Жёлтый баллон с кислородом. -ent-red-oxygen-tank = { ent-oxygen-tank } - .desc = Красный баллон с кислородом. -ent-emergency-oxygen-tank = аварийный кислородный баллон - .desc = Используется в чрезвычайных ситуациях. Содержит очень мало кислорода, поэтому постарайтесь сохранить его до тех пор, пока он вам действительно не понадобится. -ent-extended-emergency-oxygen-tank = аварийный кислородный баллон увеличенной ёмкости -ent-double-emergency-oxygen-tank = двойной аварийный кислородный баллон -ent-air-tank = баллон с воздухом - .desc = Какая-то смесь? -ent-plasma-tank = баллон плазмы - .desc = Содержит опасную плазму. Не вдыхать. Чрезвычайно огнеопасен. diff --git a/Resources/Locale/ru-RU/prototypes/solar_panels.ftl b/Resources/Locale/ru-RU/prototypes/solar_panels.ftl deleted file mode 100644 index 4f2b681831b..00000000000 --- a/Resources/Locale/ru-RU/prototypes/solar_panels.ftl +++ /dev/null @@ -1,15 +0,0 @@ -### Power entity prototype data. - - -### Solars - -ent-solar-tracker = солнечный трекер - .desc = Солнечный трекер. Может быть подключен к компьютеру и массиву солнечных панелей для отслеживания их положения. -ent-solar-assembly = каркас солнечной панели - .desc = Каркас солнечной панели. Установите на провод, чтобы начать сборку солнечной панели. -ent-solar-panel = солнечная панель - .desc = Вырабатывает энергию из солнечного света. Обычно используется для питания заменителей солнечного света. Хрупкая. -ent-solar-tracker-electronics = микросхема солнечного трекера - .desc = Микросхема для создания солнечного трекера. -ent-solar-assembly-part = детали каркаса солнечной панели - .desc = Используется для создания каркаса солнечной панели, из которого можно собрать солнечную панель или трекер. diff --git a/Resources/Locale/ru-RU/quick-dialog/quick-dialog.ftl b/Resources/Locale/ru-RU/quick-dialog/quick-dialog.ftl index ca7ee931d38..1ac9f9a036b 100644 --- a/Resources/Locale/ru-RU/quick-dialog/quick-dialog.ftl +++ b/Resources/Locale/ru-RU/quick-dialog/quick-dialog.ftl @@ -1,6 +1,6 @@ quick-dialog-ui-integer = Integer.. quick-dialog-ui-float = Float.. -quick-dialog-ui-short-text = Short text.. -quick-dialog-ui-long-text = Long text.. -quick-dialog-ui-ok = Ok -quick-dialog-ui-cancel = Cancel +quick-dialog-ui-short-text = Короткий текст.. +quick-dialog-ui-long-text = Длинный текст.. +quick-dialog-ui-ok = Ок +quick-dialog-ui-cancel = Отмена diff --git a/Resources/Locale/ru-RU/reagents/meta/biological.ftl b/Resources/Locale/ru-RU/reagents/meta/biological.ftl index 7c888e6a2e6..cf0c6187a58 100644 --- a/Resources/Locale/ru-RU/reagents/meta/biological.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/biological.ftl @@ -1,7 +1,7 @@ reagent-name-blood = кровь reagent-desc-blood = Я надеюсь, что это кетчуп. -reagent-name-insect-blood = insect blood -reagent-desc-insect-blood = Okay, this is really gross. It almost looks.. alive? +reagent-name-insect-blood = кровь насекомого +reagent-desc-insect-blood = Окей, а это реально мерзко. Она выглядит почти... живой? reagent-name-slime = слизь reagent-desc-slime = Сначала вам показалось, что это градиент крови, но вы ошиблись. reagent-name-hemocyanin-blood = голубая кровь diff --git a/Resources/Locale/ru-RU/reagents/meta/medicine.ftl b/Resources/Locale/ru-RU/reagents/meta/medicine.ftl index a4fe576ba4b..47730aed81c 100644 --- a/Resources/Locale/ru-RU/reagents/meta/medicine.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/medicine.ftl @@ -78,9 +78,11 @@ reagent-name-bruizine = бруизин reagent-desc-bruizine = Изначально разрабатывавшееся как лекарство от кашля, это химическое вещество оказалось необычайно эффективным при лечении размозженных ран. reagent-name-holywater = святая вода reagent-desc-holywater = Чистейшая и непорочнейшая вода, прямиком из рук Бога, известна тем, что волшебным образом исцеляет раны. -reagent-name-pyrazine = pyrazine -reagent-desc-pyrazine = Efficiently heals burns from the hottest of fires. Causes massive internal bleeding when overdosed. -reagent-name-insuzine = insuzine -reagent-desc-insuzine = Rapidly repairs dead tissue caused by electrocution, but cools you slightly. Completely freezes the patient when overdosed. -reagent-name-necrosol = necrosol -reagent-desc-necrosol = A necrotic substance that seems to be able to heal frozen corpses +reagent-name-pyrazine = пиразин +reagent-desc-pyrazine = Эффективно лечит ожоги, полученные в самых жарких пожарах. При передозировке вызывает обширное внутреннее кровотечение. +reagent-name-insuzine = инсузин +reagent-desc-insuzine = Быстро восстанавливает ткани, омертвевшие в результате поражения электрическим током, но при этом слегка охлаждает. Полностью замораживает пациента при передозировке. +reagent-name-necrosol = некрозол +reagent-desc-necrosol = Некротическое вещество, которое, похоже, способно излечивать обмороженные трупы. +reagent-name-aloxadone = aloxadone +reagent-desc-aloxadone = A cryogenics chemical. Used to treat severe third degree burns via regeneration of the burnt tissue. Works regardless of the patient being alive or dead. diff --git a/Resources/Locale/ru-RU/reagents/meta/physical-desc.ftl b/Resources/Locale/ru-RU/reagents/meta/physical-desc.ftl index 8d7fa143f6c..0dff1cdef83 100644 --- a/Resources/Locale/ru-RU/reagents/meta/physical-desc.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/physical-desc.ftl @@ -93,4 +93,4 @@ reagent-physical-desc-fluffy = пушистое reagent-physical-desc-reflective = светоотражающее reagent-physical-desc-alkaline = щелочное reagent-physical-desc-holy = святое -reagent-physical-desc-slimy = slimy +reagent-physical-desc-slimy = склизкое diff --git a/Resources/Locale/ru-RU/round-end/cryostorage.ftl b/Resources/Locale/ru-RU/round-end/cryostorage.ftl new file mode 100644 index 00000000000..a9a67a6def3 --- /dev/null +++ b/Resources/Locale/ru-RU/round-end/cryostorage.ftl @@ -0,0 +1,8 @@ +cryostorage-insert-message-permanent = [color=white]You are now inside of a [bold][color=cyan]cryogenic sleep unit[/color][/bold]. If you [bold]disconnect[/bold], [bold]ghost[/bold], or [bold]wait { $time } minutes[/bold], [color=red]your body will be removed[/color] and your job slot will be opened. You can exit at any time to prevent this.[/color] +cryostorage-insert-message-temp = [color=white]You are now inside of a [bold][color=cyan]cryogenic sleep unit[/color][/bold]. If you [bold]ghost[/bold] or [bold]wait { $time } minutes[/bold], [color=red]your body will be removed[/color] and your job slot will be opened. If you [bold][color=cyan]disconnect[/color][/bold], your body will be safely held until you rejoin.[/color] +cryostorage-ui-window-title = Cryogenic Sleep Unit +cryostorage-ui-label-slot-name = [bold]{ CAPITALIZE($slot) }:[/bold] +cryostorage-ui-button-remove = Remove +cryostorage-ui-filler-hand = inhand +cryostorage-ui-label-no-bodies = No bodies in cryostorage +cryostorage-popup-access-denied = Access denied! diff --git a/Resources/Locale/ru-RU/shuttles/timer.ftl b/Resources/Locale/ru-RU/shuttles/timer.ftl new file mode 100644 index 00000000000..82ca71d6540 --- /dev/null +++ b/Resources/Locale/ru-RU/shuttles/timer.ftl @@ -0,0 +1,2 @@ +shuttle-timer-eta = ETA +shuttle-timer-etd = ETD diff --git a/Resources/Locale/ru-RU/speech/listen-wire-action.ftl b/Resources/Locale/ru-RU/speech/listen-wire-action.ftl index 4e8d2118fc4..dc0a7b922b1 100644 --- a/Resources/Locale/ru-RU/speech/listen-wire-action.ftl +++ b/Resources/Locale/ru-RU/speech/listen-wire-action.ftl @@ -1,3 +1,3 @@ -wire-listen-pulse-identifier = electricity -wire-listen-pulse-characters = eee EEo -wire-listen-pulse-error-name = ERROR +wire-listen-pulse-identifier = электричество +wire-listen-pulse-characters = иии ИИу +wire-listen-pulse-error-name = ОШИБКА diff --git a/Resources/Locale/ru-RU/speech/speech-wire-action.ftl b/Resources/Locale/ru-RU/speech/speech-wire-action.ftl index 70d3f691b89..528cf92923e 100644 --- a/Resources/Locale/ru-RU/speech/speech-wire-action.ftl +++ b/Resources/Locale/ru-RU/speech/speech-wire-action.ftl @@ -1 +1 @@ -wire-speech-pulse = { CAPITALIZE(THE($name)) } emits a buzzing sound +wire-speech-pulse = { CAPITALIZE($name) } издаёт жужжащий звук diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/animal/animal.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/animal/animal.ftl index a0838de3224..1598eff90b4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/animal/animal.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/animal/animal.ftl @@ -4,7 +4,7 @@ ent-OrganAnimalLungs = лёгкие .desc = { ent-BaseAnimalOrgan.desc } ent-OrganAnimalStomach = желудок .desc = { ent-BaseAnimalOrgan.desc } -ent-OrganMouseStomach = stomach +ent-OrganMouseStomach = желудок .desc = { ent-OrganAnimalStomach.desc } ent-OrganAnimalLiver = печень .desc = { ent-BaseAnimalOrgan.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engines.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engines.ftl index 4d51c3947a6..b6c4407ebb5 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engines.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engines.ftl @@ -16,6 +16,7 @@ ent-CrateEngineeringParticleAccelerator = ящик с ускорителем ч .desc = Сложная в настройке, но чертовски полезная. ent-CrateEngineeringGenerator = ящик с генератором .desc = { ent-CrateEngineering.desc } + .suffix = DEBUG ent-CrateEngineeringSolar = ящик сборных солнечных панелей .desc = { ent-CrateEngineering.desc } ent-CrateEngineeringShuttle = ящик электропитания шаттла diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/fun.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/fun.ftl index cd2580d622d..86d77dd2bba 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/fun.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/fun.ftl @@ -1,7 +1,7 @@ ent-CrateFunPlushie = ящик плюшевых игрушек .desc = Куча мягких плюшевых игрушек. Разложите их повсюду, а потом подумайте, как вы объясните эту покупку NT. -ent-CrateFunLizardPlushieBulk = { ent-CrateGenericSteel } - .desc = { ent-CrateGenericSteel.desc } +ent-CrateFunLizardPlushieBulk = оптовый ящик плюшевых унатхов + .desc = Куча мягких плюшевых унатхов. Разложите их повсюду, а потом подумайте, как вы объясните эту покупку NT. ent-CrateFunInstrumentsVariety = набор различных музыкальных инструментов .desc = Развеселите и расшевелите станцию с этой разнообразной коллекцией! Содержит семь музыкальных инструментов. ent-CrateFunInstrumentsBrass = набор духовых инструментов @@ -34,6 +34,7 @@ ent-CrateFunBoxing = ящик боксерского снаряжения .desc = Хотите организовать подпольный бойцовский клуб или провести турнир среди сотрудников станции? Этот ящик для вас! ent-CrateFunPirate = { ent-CratePirate } .desc = { ent-CratePirate.desc } + .suffix = Filled ent-CrateFunToyBox = { ent-CrateToyBox } .suffix = Заполненный .desc = { ent-CrateToyBox.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/vending.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/vending.ftl index b3d799309b6..ce25284497d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/vending.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/vending.ftl @@ -16,13 +16,11 @@ ent-CrateVendingMachineRestockHotDrinksFilled = ящик пополнения Л .desc = Содержит два набора пополнения кофейного автомата Лучшие горячие напитки Солнечной. ent-CrateVendingMachineRestockMedicalFilled = ящик пополнения НаноМед .desc = Содержит набор пополнения, совместимый с торгоматами НаноМед и НаноМед Плюс. -ent-CrateVendingMachineRestockChemVendFilled = ящик пополнения ХимкоМат - .desc = Содержит набор пополнения торгомата ХимкоМат. ent-CrateVendingMachineRestockNutriMaxFilled = ящик пополнения БотаМакс .desc = Содержит набор пополнения торгомата БотаМакс. ent-CrateVendingMachineRestockPTechFilled = ящик пополнения ПТех .desc = Содержит набор пополнения раздатчика бюрократии ПТех. -ent-CrateVendingMachineRestockRobustSoftdrinksFilled = ящик пополнения Прохладительные напитки Робаст +ent-CrateVendingMachineRestockRobustSoftdrinksFilled = ящик пополнения Robust Softdrinks .desc = Содержит два набора пополнения торгоматов компании Robust Softdrinks LLC. ent-CrateVendingMachineRestockSalvageEquipmentFilled = ящик пополнения Утильмаг .desc = Содержит набор пополнения торгомата Утильмаг. @@ -30,21 +28,23 @@ ent-CrateVendingMachineRestockSecTechFilled = ящик пополнения СБ .desc = Содержит набор пополнения торгомата СБТех. ent-CrateVendingMachineRestockSeedsFilled = ящик пополнения МегаРаздатчик Семян .desc = Содержит набор пополнения торгомата МегаРаздатчик Семян. -ent-CrateVendingMachineRestockSmokesFilled = ящик пополнения ШейдиСиг Делюкс - .desc = Содержит два набора пополнения торгоматов ШейдиСиг Делюкс. +ent-CrateVendingMachineRestockSmokesFilled = ящик пополнения ShadyCigs Делюкс + .desc = Содержит два набора пополнения торгоматов ShadyCigs Делюкс. ent-CrateVendingMachineRestockVendomatFilled = ящик пополнения Вендомат .desc = Содержит набор пополнения торгомата Вендомат. ent-CrateVendingMachineRestockRoboticsFilled = ящик пополнения Роботех Делюкс .desc = Содержит набор пополнения торгомата Роботех Делюкс. ent-CrateVendingMachineRestockTankDispenserFilled = ящик пополнения газовых баллонов .desc = Содержит набор пополнения атмосферного или инженерного раздатчика газовых баллонов. -ent-CrateVendingMachineRestockGetmoreChocolateCorpFilled = ящик пополнения Гетмор Шоколад - .desc = Содержит набор пополнения торгомата Гетмор Шоколад Корп. -ent-CrateVendingMachineRestockChangFilled = ящик пополнения Чанг - .desc = Содержит набор пополнения торгомата Мистер Чанг. -ent-CrateVendingMachineRestockDiscountDansFilled = ящик пополнения Дискаунтер Дэна - .desc = Содержит набор пополнения торгомата Дискаунтер Дэна. -ent-CrateVendingMachineRestockDonutFilled = ящик пополнения Пончики Монкинс - .desc = Содержит набор пополнения торгомата Пончики Монкинс. +ent-CrateVendingMachineRestockGetmoreChocolateCorpFilled = ящик пополнения Getmore Chocolate Corp + .desc = Содержит набор пополнения торгомата Getmore Chocolate Corp. +ent-CrateVendingMachineRestockChangFilled = ящик пополнения Chang + .desc = Содержит набор пополнения торгомата Mr. Chang. +ent-CrateVendingMachineRestockDiscountDansFilled = ящик пополнения Discount Dans + .desc = Содержит набор пополнения торгомата Discount Dan. +ent-CrateVendingMachineRestockDonutFilled = ящик пополнения Donut + .desc = Содержит набор пополнения торгомата Monkin' Donuts. ent-CrateVendingMachineRestockHappyHonkFilled = ящик пополнения Хэппи Хонк .desc = Содержит набор пополнения торгомата Хэппи Хонк. +ent-CrateVendingMachineRestockChemVendFilled = ящик пополнения ХимкоМат + .desc = Содержит набор пополнения торгомата ХимкоМат. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/lockers/space_ruin.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/lockers/space_ruin.ftl index d472c43299d..837710c4695 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/lockers/space_ruin.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/lockers/space_ruin.ftl @@ -1,3 +1,3 @@ -ent-LockerOldAISat = closet - .suffix = NTSRA voidsuit locker +ent-LockerOldAISat = шкаф + .suffix = шкаф пустотный скафандр NTSRA .desc = { ent-LockerSyndicate.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/body/parts/vulpkanin.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/body/parts/vulpkanin.ftl index 7227c866062..31bf9ba59db 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/body/parts/vulpkanin.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/body/parts/vulpkanin.ftl @@ -1,22 +1,22 @@ -ent-PartVulpkanin = vulpkanin body part +ent-PartVulpkanin = часть тела вульпканина .desc = { ent-BasePart.desc } -ent-TorsoVulpkanin = vulpkanin torso +ent-TorsoVulpkanin = туловище вульпканина .desc = { ent-PartVulpkanin.desc } -ent-HeadVulpkanin = vulpkanin head +ent-HeadVulpkanin = голова вульпканина .desc = { ent-PartVulpkanin.desc } -ent-LeftArmVulpkanin = left vulpkanin arm +ent-LeftArmVulpkanin = левая рука вульпканина .desc = { ent-PartVulpkanin.desc } -ent-RightArmVulpkanin = right vulpkanin arm +ent-RightArmVulpkanin = правая рука вульпканина .desc = { ent-PartVulpkanin.desc } -ent-LeftHandVulpkanin = left vulpkanin hand +ent-LeftHandVulpkanin = левая кисть вульпканина .desc = { ent-PartVulpkanin.desc } -ent-RightHandVulpkanin = right vulpkanin hand +ent-RightHandVulpkanin = правая кисть вульпканина .desc = { ent-PartVulpkanin.desc } -ent-LeftLegVulpkanin = left vulpkanin leg +ent-LeftLegVulpkanin = левая нога вульпканина .desc = { ent-PartVulpkanin.desc } -ent-RightLegVulpkanin = right vulpkanin leg +ent-RightLegVulpkanin = правая нога вульпканина .desc = { ent-PartVulpkanin.desc } -ent-LeftFootVulpkanin = left vulpkanin foot +ent-LeftFootVulpkanin = левая стопа вульпканина .desc = { ent-PartVulpkanin.desc } -ent-RightFootVulpkanin = right vulpkanin foot +ent-RightFootVulpkanin = правая стопа вульпканина .desc = { ent-PartVulpkanin.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/player/vulpkanin.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/player/vulpkanin.ftl index bf4fc07f911..c91bc8b9d2e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/player/vulpkanin.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/player/vulpkanin.ftl @@ -1,2 +1,2 @@ -ent-MobVulpkanin = Urist McVulp +ent-MobVulpkanin = Урист МакВульп .desc = { ent-BaseMobVulpkanin.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/species/vulpkanin.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/species/vulpkanin.ftl index a55ddf6eea6..a635bfd0d36 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/species/vulpkanin.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/species/vulpkanin.ftl @@ -1,4 +1,4 @@ -ent-BaseMobVulpkanin = Urist McVulp +ent-BaseMobVulpkanin = Урист МакВульп .desc = { ent-BaseMobSpeciesOrganic.desc } ent-MobVulpkaninDummy = Urist McHands .desc = A dummy vulpkanin meant to be used in character setup. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl index 9c908aa5390..22888a79ca2 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl @@ -2,7 +2,7 @@ ent-ClothingEyesHudDiagnostic = диагностический визор .desc = Окуляр с индикатором на стекле, способный анализировать целостность и состояние роботов и экзокостюмов. ent-ClothingEyesHudMedical = медицинский визор .desc = Окуляр с индикатором на стекле, который сканирует гуманоидов в поле зрения и предоставляет точные данные о состоянии их здоровья. -ent-ClothingEyesHudSecurity = охранный визор +ent-ClothingEyesHudSecurity = визор охраны .desc = Окуляр с индикатором на стекле, который сканирует гуманоидов в поле зрения и предоставляет точные данные об их идентификационном статусе и записях в системе безопасности. ent-ClothingEyesHudBeer = пивные очки .desc = Пара солнцезащитных очков, оснащенных сканером реагентов, а также дающих понимание вязкости жидкости во время движения. @@ -14,8 +14,8 @@ ent-ClothingEyesHudMedOnion = medonion hud .desc = Filler ent-ClothingEyesHudMedOnionBeer = medthungerst hud .desc = Filler -ent-ClothingEyesHudMedSec = medsec hud - .desc = Filler +ent-ClothingEyesHudMedSec = мед-охранный визор + .desc = Окуляр с индикатором на стекле, напоминающий сочетание визора охраны с медицинским. ent-ClothingEyesHudMultiversal = multiversal hud .desc = Filler ent-ClothingEyesHudOmni = omni hud diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hats.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hats.ftl index a618745a069..101b775f332 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hats.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hats.ftl @@ -132,3 +132,7 @@ ent-ClothingHeadHatPartyGreen = зелёный праздничный колпа .desc = { ent-ClothingHeadHatPartyRed.desc } ent-ClothingHeadHatPartyBlue = синий праздничный колпак .desc = { ent-ClothingHeadHatPartyRed.desc } +ent-ClothingHeadHatGreyFlatcap = grey flatcap + .desc = Fashionable for both the working class and old man Jenkins. +ent-ClothingHeadHatBrownFlatcap = brown flatcap + .desc = Stupid clown! You made me look bad! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/soft.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/soft.ftl index 66c23a3b22b..b9df2d90a60 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/soft.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/soft.ftl @@ -18,10 +18,10 @@ ent-ClothingHeadHatGreensoft = зелёная кепка .desc = Бейсболка безвкусного зелёного цвета. ent-ClothingHeadHatGreensoftFlipped = перевёрнутая зелёная кепка .desc = Бейсболка безвкусного зелёного цвета. Перевёрнутая. -ent-ClothingHeadHatBlacksoft = black cap - .desc = It's a baseball hat in a tasteless black colour. -ent-ClothingHeadHatBlacksoftFlipped = black cap flipped - .desc = It's a baseball hat in a tasteless black colour. Flipped. +ent-ClothingHeadHatBlacksoft = чёрная кепка + .desc = Бейсболка безвкусного чёрного цвета. +ent-ClothingHeadHatBlacksoftFlipped = перевёрнутая чёрная кепка + .desc = Бейсболка безвкусного чёрного цвета. Перевёрнутая. ent-ClothingHeadHatGreysoft = серая кепка .desc = Бейсболка безвкусного серого цвета. ent-ClothingHeadHatGreysoftFlipped = перевёрнутая серая кепка diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/hardsuits.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/hardsuits.ftl index 7495bb0ccc8..6b00aea5ed4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/hardsuits.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/hardsuits.ftl @@ -33,7 +33,7 @@ ent-ClothingOuterHardsuitSyndie = кроваво-красный скафандр ent-ClothingOuterHardsuitSyndieMedic = кроваво-красный медицинский скафандр .desc = Тяжелобронированный и манёвренный продвинутый скафандр, предназначенный для полевых медицинских операций. ent-ClothingOuterHardsuitSyndieElite = элитный скафандр Синдиката - .desc = Элитная версия кроваво-красного скафандра, отличающаяся повышенным бронированием и огнеупорностью. Собственность Мародёров Горлекса. + .desc = Элитная версия кроваво-красного скафандра, отличающаяся повышенной мобильностью и огнеупорностью. Собственность Мародёров Горлекса. ent-ClothingOuterHardsuitSyndieCommander = скафандр командира Синдиката .desc = Усиленная версия кроваво-красного скафандра, предназначенная для командиров оперативных отрядов Синдиката. Броня значительно усилена для ведения смертоносных боёв на передовой. ent-ClothingOuterHardsuitJuggernaut = костюм джаггернаута Cybersun diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/exclamation.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/exclamation.ftl index 5e0c25609da..66222ed2b61 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/exclamation.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/exclamation.ftl @@ -1,4 +1,4 @@ -ent-Exclamation = exclamation +ent-Exclamation = восклицание .desc = { "" } -ent-WhistleExclamation = exclamation +ent-WhistleExclamation = восклицание .desc = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl index 41e93aa4882..86891c6e996 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl @@ -7,6 +7,10 @@ ent-MobAngryBee = пчела .suffix = Злой ent-MobChicken = курица .desc = Была раньше яйца, динозавром! +ent-MobChicken1 = { ent-MobChicken } + .desc = { ent-MobChicken.desc } +ent-MobChicken2 = { ent-MobChicken } + .desc = { ent-MobChicken.desc } ent-FoodEggChickenFertilized = { ent-FoodEgg } .suffix = Оплодотворенный, Курица .desc = { ent-FoodEgg.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl index 5cf5dbba7e6..a6d33c8399f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl @@ -44,14 +44,14 @@ ent-ReagentSlimeOmnizine = { ent-ReagentSlime } .suffix = Омнизин .desc = { ent-ReagentSlime.desc } ent-ReagentSlimeMuteToxin = { ent-ReagentSlime } - .suffix = Mute Toxin + .suffix = Токсин немоты .desc = { ent-ReagentSlime.desc } ent-ReagentSlimeNorepinephricAcid = { ent-ReagentSlime } - .suffix = Norepinephric Acid + .suffix = Норэпинефриновая кислота .desc = { ent-ReagentSlime.desc } ent-ReagentSlimeEphedrine = { ent-ReagentSlime } - .suffix = Ephedrine + .suffix = Эфедрин .desc = { ent-ReagentSlime.desc } ent-ReagentSlimeRobustHarvest = { ent-ReagentSlime } - .suffix = Robust Harvest + .suffix = Робаст харвест .desc = { ent-ReagentSlime.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/terminator.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/terminator.ftl index 72d0d6a4be3..45b60fe3532 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/terminator.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/terminator.ftl @@ -1,4 +1,4 @@ ent-MobHumanTerminator = экстерминатор .desc = { ent-MobHuman.desc } ent-MobTerminatorEndoskeleton = эндоскелет NT-800 "Экстерминатор" - .desc = Хребет андроидов-диверсантов корпорации Саснет. Невероятно твёрдый сплав внутри, непритязательная плоть снаружи. + .desc = Хребет андроидов-диверсантов корпорации SusNet. Невероятно твёрдый сплав внутри, непритязательная плоть снаружи. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl index 902e02126f6..9f39c9b6616 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl @@ -46,7 +46,44 @@ ent-DrinkWineBottleFull = особое двухбородое бородатое .desc = Слабая аура беспокойства и страха окружает бутылку. ent-DrinkBeerBottleFull = пиво .desc = Алкогольный напиток, приготовленный из солодовых зерен, хмеля, дрожжей и воды. +ent-DrinkBeerGrowler = Beer Growler + .desc = An alcoholic beverage made from malted grains, hops, yeast, and water. XL growler bottle. ent-DrinkAleBottleFull = магма-эль .desc = Выбор истинных дворфов. +ent-DrinkAleBottleFullGrowler = Magm-Ale Growler + .desc = A true dorf's drink of choice. XL growler bottle. ent-DrinkWaterBottleFull = бутылка воды .desc = Просто чистая вода неизвестного происхождения. Вы думаете, что и не хотите знать этого. +ent-DrinkSodaWaterBottleFull = soda water bottle + .desc = Like water, but angry! +ent-DrinkTonicWaterBottleFull = tonic water bottle + .desc = Like soda water, but angrier maybe? Often sweeter. +ent-DrinkJuiceLimeCartonXL = lime juice XL + .desc = Sweet-sour goodness. +ent-DrinkJuiceOrangeCartonXL = orange juice XL + .desc = Full of vitamins and deliciousness! +ent-DrinkCreamCartonXL = Milk Cream XL + .desc = It's cream. Made from milk. What else did you think you'd find in there? +ent-DrinkSugarJug = sugar + .desc = some people put this in their coffee... + .suffix = for drinks +ent-DrinkLemonLimeJug = lemon lime + .desc = a dual citrus sensation. +ent-DrinkMeadJug = mead jug + .desc = storing mead in a plastic jug should be a crime. +ent-DrinkIceJug = ice jug + .desc = stubborn water. pretty cool. +ent-DrinkCoffeeJug = coffee jug + .desc = wake up juice, of the heated kind. +ent-DrinkTeaJug = tea jug + .desc = the drink of choice for the Bri'ish and hipsters. +ent-DrinkGreenTeaJug = green tea jug + .desc = its like tea... but green! great for settling the stomach. +ent-DrinkIcedTeaJug = iced tea jug + .desc = for when the regular tea is too hot for you boohoo +ent-DrinkDrGibbJug = dr gibb jug + .desc = yeah I don't know either... +ent-DrinkRootBeerJug = root beer jug + .desc = this drink makes Australians giggle +ent-DrinkWaterMelonJuiceJug = watermelon juice jug + .desc = May include leftover seeds diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/burger.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/burger.ftl index 1c2d1b8929d..78848a43b23 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/burger.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/burger.ftl @@ -64,3 +64,5 @@ ent-FoodBurgerCheese = чизбургер .desc = Этот благородный бургер гордо стоит, одетый в золотистый сыр. ent-FoodBurgerCrazy = безумный гамбургер .desc = Это похоже на еду, которую мог бы приготовить сумасшедший клоун в плаще. +ent-FoodBurgerMothRoach = mothroachburger + .desc = The last lamp it saw was the one inside the microwave. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/decoration/containers.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/decoration/containers.ftl index 5a93e47c584..da79957b492 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/decoration/containers.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/decoration/containers.ftl @@ -2,27 +2,27 @@ ent-BaseShippingContainer = { "" } .desc = { "" } ent-ShippingContainerBlank = грузовой контейнер .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер не имеет ни опознавательных знаков, ни сведений о его содержимом. -ent-ShippingContainerConarex = грузовой контейнер Конарекс Аэронавтикс - .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит Конарекс Аэронавтикс, и скорее всего несёт в себе части космических кораблей (или скандал со взяточничеством). -ent-ShippingContainerDeforest = грузовой контейнер ДеФорест Медикал Корп. - .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит корпорации ДеФорест, и скорее всего содержит медицинские припасы. -ent-ShippingContainerKahraman = грузовой контейнер Кахраман Хеви Индастриз - .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит компании Кахраман, и он усилен для перевозки руды. -ent-ShippingContainerKosmologistika = грузовой контейнер Космологистика - .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит компании Космологистика, логистической компании, находящейся в собственности и под управлением SSC. -ent-ShippingContainerInterdyne = грузовой контейнер Интердайн - .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит компании Интердайн, частной фармацевтической компании. Вероятно, служит для перевозки медицинских или исследовательских материалов. Вероятно. -ent-ShippingContainerNakamura = грузовой контейнер Накамура Инжиниринг - .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит компании Накамура, предположительно служит для транспортировки инструментов или тяжелого промышленного оборудования. +ent-ShippingContainerConarex = грузовой контейнер Conarex Aeronautics + .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит Conarex Aeronautics, и скорее всего несёт в себе части космических кораблей (или скандал со взяточничеством). +ent-ShippingContainerDeforest = грузовой контейнер DeForest Medical Corp. + .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит корпорации DeForest, и скорее всего содержит медицинские припасы. +ent-ShippingContainerKahraman = грузовой контейнер Kahraman Heavy Industry + .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит компании Kahraman, и он усилен для перевозки руды. +ent-ShippingContainerKosmologistika = грузовой контейнер Kosmologistika + .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит компании Kosmologistika, логистической компании, находящейся в собственности и под управлением SSC. +ent-ShippingContainerInterdyne = грузовой контейнер Interdyne + .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит компании Interdyne, частной фармацевтической компании. Вероятно, служит для перевозки медицинских или исследовательских материалов. Вероятно. +ent-ShippingContainerNakamura = грузовой контейнер Nakamura Engineering + .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит компании Nakamura, предположительно служит для транспортировки инструментов или тяжелого промышленного оборудования. ent-ShippingContainerNanotrasen = грузовой контейнер Nanotrasen .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. На этом контейнере изображен логотип компании Nanotrasen, и поэтому внутри может быть что угодно. ent-ShippingContainerVitezstvi = грузовой контейнер Vítězství Arms .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит Vítězství Arms, гордо заявляющей, что оружие Vítězství — это оружие победы. -ent-ShippingContainerCybersun = грузовой контейнер Сайберсан Индастриз - .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. На этом контейнере изображен логотип компании Сайберсан, и поэтому внутри может быть что угодно. -ent-ShippingContainerDonkCo = грузовой контейнер Донк Ко. - .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит Донк Ко. и поэтому там может находиться практически что угодно — хотя вероятнее всего там лежат упаковки донк-покетов. -ent-ShippingContainerGorlex = грузовой контейнер Горлекс Секюритиз - .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит Горлекс Секюритиз, и вероятнее всего, служит для транспортировки их основного экспорта - военных преступлений. +ent-ShippingContainerCybersun = грузовой контейнер Cybersun Industries + .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. На этом контейнере изображен логотип компании Cybersun, и поэтому внутри может быть что угодно. +ent-ShippingContainerDonkCo = грузовой контейнер Donk Co. + .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит Donk Co. и поэтому там может находиться практически что угодно — хотя вероятнее всего там лежат упаковки донк-покетов. +ent-ShippingContainerGorlex = грузовой контейнер Gorlex Securities + .desc = Контейнер стандартного размера для транспортировки больших объёмов грузов. Этот контейнер принадлежит Gorlex Securities, и вероятнее всего, служит для транспортировки их основного экспорта - военных преступлений. ent-ShippingContainerGorlexRed = { ent-ShippingContainerGorlex } .desc = { ent-ShippingContainerGorlex.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl index f02e169f7bc..864f7bd6f99 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl @@ -1,4 +1,4 @@ -ent-BaseWhistle = whistle - .desc = Someone forgot to turn off kettle? +ent-BaseWhistle = свисток + .desc = Кто-то забыл выключить чайник? ent-SecurityWhistle = { ent-BaseWhistle } - .desc = Sound of it make you feel fear. + .desc = Его звук внушает вам ужас. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl index 3dd0196e94a..27b18b6b5fd 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl @@ -1,7 +1,7 @@ ent-Paper = бумага .desc = Лист белой бумаги. -ent-PaperScrap = paper scrap - .desc = A crumpled up piece of white paper. +ent-PaperScrap = обрывки бумаги + .desc = Скомканный лист белой бумаги. ent-PaperOffice = офисная бумага .desc = Лист белой офисной бумаги. ent-PaperArtifactAnalyzer = распечатка анализатора артефактов diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/service/vending_machine_restock.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/service/vending_machine_restock.ftl index 455a7b69c4a..644726a5c9c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/service/vending_machine_restock.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/service/vending_machine_restock.ftl @@ -2,8 +2,8 @@ ent-BaseVendingMachineRestock = набор пополнения торгомат .desc = Набор для пополнения торговых автоматов фирменными товарами. ent-VendingMachineRestockBooze = набор пополнения АлкоМат .desc = Поместите в АлкоМат чтобы начать вечеринку! Не для продажи пассажирам, не достигшим совершеннолетия. -ent-VendingMachineRestockChang = набор пополнения Мистер Чанг - .desc = Коробка, покрытая белыми наклейками с крупными красными китайскими иероглифами, готовая к загрузке в ближайший торгомат Мистер Чанг. +ent-VendingMachineRestockChang = набор пополнения Mr. Chang + .desc = Коробка, покрытая белыми наклейками с крупными красными китайскими иероглифами, готовая к загрузке в ближайший торгомат Mr. Chang. ent-VendingMachineRestockChefvend = набор пополнения ШефВенд .desc = Пополняет Шефвенд. Главное, берегите яйца. ent-VendingMachineRestockCondimentStation = набор пополнения Островок соусов @@ -14,16 +14,16 @@ ent-VendingMachineRestockCostumes = набор пополнения Театро .desc = Паноптикум сотрудников Nanotrasen пестрит в красочной трагикомедии. Присоединяйтесь к ним и вы! Загрузите это в ближайший торгомат ТеатроШкаф. ent-VendingMachineRestockDinnerware = набор пополнения ПосудоМат .desc = На этой кухне всегда жарко! Поместите в слот для пополнения ПосудоМата, чтобы начать. -ent-VendingMachineRestockDiscountDans = набор пополнения Дискаунтер Дэна - .desc = Коробка, набитая солью и крахмалом. Зачем терпеть качество, когда есть количество? Дискаунтер Дэна! -ent-VendingMachineRestockDonut = набор пополнения Пончики Монкинс +ent-VendingMachineRestockDiscountDans = набор пополнения Discount Dan + .desc = Коробка, набитая солью и крахмалом. Зачем терпеть качество, когда есть количество? Discount Dan! +ent-VendingMachineRestockDonut = набор пополнения Robust Donuts .desc = Коробка, наполненная тороидальными пачками обжаренных во фритюре кусочков теста, и используемся для пополнения запасов торгомата. Использовать только по инструкции Robust Industries, LLC. ent-VendingMachineRestockEngineering = набор пополнения ИнжеМат .desc = Только для использования сертифицированными специалистами. ent-VendingMachineRestockGames = набор пополнения Безобидные развлечения .desc = Пришло время роллить на инициативу, драконы дайсов! Для пополнения торгомата Безобидные развлечения! -ent-VendingMachineRestockGetmoreChocolateCorp = набор пополнения Гетмор Шоколад Корп - .desc = Коробка, наполненная самым лучшим эрзац-какао. Только для использования в официальных торгоматах Гетмор Шоколад. +ent-VendingMachineRestockGetmoreChocolateCorp = набор пополнения GetMore Chocolate + .desc = Коробка, наполненная самым лучшим эрзац-какао. Только для использования в официальных торгоматах GetMore Chocolate. ent-VendingMachineRestockHotDrinks = набор пополнения Лучшие горячие напитки Солнечной .desc = Горячо! Для пополнения торговых автоматах Лучшие горячие напитки Солнечной, или других аффилированных торгоматов. ent-VendingMachineRestockMedical = набор пополнения НаноМед @@ -40,7 +40,7 @@ ent-VendingMachineRestockSalvageEquipment = набор пополнения Ут .desc = Вмажьте по земле, пока космический карп не укусил вас за задницу! Запихните в Утильмаг, чтобы начать. ent-VendingMachineRestockSeeds = набор пополнения МегаРаздатчик Семян .desc = На этикетке написано, что этими семенами пользовались и передавали по наследству ещё наши предки. Загрузите их в МегаРаздатчик Семян! -ent-VendingMachineRestockSmokes = набор пополнения ШейдиСиг Делюкс +ent-VendingMachineRestockSmokes = набор пополнения ShadyCigs .desc = Под всеми этими предупреждениями от Минздрава трудно что-либо разглядеть, однако местами упоминается загрузка в торгомат. ent-VendingMachineRestockTankDispenser = набор пополнения газовых баллонов .desc = Способен пополнить баллоны в раздатчике газовых баллонов. Не кантовать. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/magnum.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/magnum.ftl index 0a4dcfe8de4..461e1cd7d7f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/magnum.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/boxes/magnum.ftl @@ -10,5 +10,5 @@ ent-MagazineBoxMagnumIncendiary = коробка патронов (.45 магн .desc = { ent-BaseMagazineBoxMagnum.desc } ent-MagazineBoxMagnumUranium = коробка патронов (.45 магнум урановые) .desc = { ent-BaseMagazineBoxMagnum.desc } -ent-MagazineBoxMagnumAP = ammunition box (.45 magnum armor-piercing) +ent-MagazineBoxMagnumAP = коробка патронов (.45 магнум бронебойные) .desc = { ent-BaseMagazineBoxMagnum.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/light_rifle.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/light_rifle.ftl index 36cdbe6c89b..d0fc70ccaf1 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/light_rifle.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/light_rifle.ftl @@ -8,7 +8,7 @@ ent-MagazineLightRiflePractice = магазин (.30 винтовочные уч .desc = { ent-BaseMagazineLightRifle.desc } ent-MagazineLightRifleRubber = магазин (.30 винтовочные резиновые) .desc = { ent-BaseMagazineLightRifle.desc } -ent-MagazineLightRifleUranium = magazine (.30 rifle uranium) +ent-MagazineLightRifleUranium = магазин (.30 винтовочные урановые) .desc = { ent-BaseMagazineLightRifle.desc } ent-MagazineLightRifleMaxim = дисковый магазин (.30 винтовочные) .desc = { ent-BaseMagazineLightRifle.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/magnum.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/magnum.ftl index 327030e04d1..d15e6d3b9cf 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/magnum.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/magnum.ftl @@ -2,15 +2,15 @@ ent-BaseMagazineMagnum = пистолетный магазин (.45 магнум .desc = { ent-BaseMagazinePistol.desc } ent-BaseMagazineMagnumSubMachineGun = магазин Вектора (.45 магнум) .desc = { ent-BaseItem.desc } -ent-MagazineMagnum = пистолетный магазин (.45 магнум) +ent-MagazineMagnum = пистолетный магазин (.45 магнум) .desc = { ent-BaseMagazineMagnum.desc } -ent-MagazineMagnumPractice = пистолетный магазин (.45 магнум учебные) +ent-MagazineMagnumPractice = пистолетный магазин (.45 магнум учебные) .desc = { ent-BaseMagazineMagnum.desc } -ent-MagazineMagnumRubber = пистолетный магазин (.45 магнум резиновые) +ent-MagazineMagnumRubber = пистолетный магазин (.45 магнум резиновые) .desc = { ent-BaseMagazineMagnum.desc } -ent-MagazineMagnumUranium = pistol magazine (.45 magnum uranium) +ent-MagazineMagnumUranium = пистолетный магазин (.45 магнум урановые) .desc = { ent-BaseMagazineMagnum.desc } -ent-MagazineMagnumAP = pistol magazine (.45 magnum armor-piercing) +ent-MagazineMagnumAP = пистолетный магазин (.45 магнум бронебойные) .desc = { ent-BaseMagazineMagnum.desc } ent-MagazineMagnumSubMachineGun = магазин Вектора (.45 магнум) .desc = { ent-BaseMagazineMagnumSubMachineGun.desc } @@ -18,7 +18,7 @@ ent-MagazineMagnumSubMachineGunPractice = магазин Вектора (.45 м .desc = { ent-BaseMagazineMagnumSubMachineGun.desc } ent-MagazineMagnumSubMachineGunRubber = магазин Вектора (.45 магнум резиновые) .desc = { ent-BaseMagazineMagnumSubMachineGun.desc } -ent-MagazineMagnumSubMachineGunUranium = Vector magazine (.45 magnum uranium) +ent-MagazineMagnumSubMachineGunUranium = магазин Вектора (.45 магнум урановые) .desc = { ent-BaseMagazineMagnumSubMachineGun.desc } -ent-MagazineMagnumSubMachineGunPiercing = Vector magazine (.45 magnum armor-piercing) +ent-MagazineMagnumSubMachineGunPiercing = магазин Вектора (.45 магнум бронебойные) .desc = { ent-BaseMagazineMagnumSubMachineGun.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/pistol.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/pistol.ftl index 71c54f0b96f..bca4024f84f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/pistol.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/pistol.ftl @@ -24,5 +24,5 @@ ent-MagazinePistolSubMachineGunPractice = магазин ПП (.35 авто уч .desc = { ent-BaseMagazinePistolSubMachineGun.desc } ent-MagazinePistolSubMachineGunRubber = магазин ПП (.35 авто резиновые) .desc = { ent-BaseMagazinePistolSubMachineGun.desc } -ent-MagazinePistolSubMachineGunUranium = SMG magazine (.35 auto rubber) +ent-MagazinePistolSubMachineGunUranium = магазин ПП (.35 авто урановые) .desc = { ent-BaseMagazinePistolSubMachineGun.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/rifle.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/rifle.ftl index a6f2acb2c83..913a210c76e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/rifle.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/magazines/rifle.ftl @@ -6,5 +6,5 @@ ent-MagazineRiflePractice = магазин (.20 винтовочные учеб .desc = { ent-BaseMagazineRifle.desc } ent-MagazineRifleRubber = магазин (.20 винтовочные резиновые) .desc = { ent-BaseMagazineRifle.desc } -ent-MagazineRifleUranium = magazine (.20 rifle uranium) +ent-MagazineRifleUranium = магазин (.20 винтовочные урановые) .desc = { ent-BaseMagazineRifle.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/light_rifle.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/light_rifle.ftl index 159ebbd86f6..1dac7777d47 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/light_rifle.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/light_rifle.ftl @@ -7,4 +7,4 @@ ent-BulletLightRifleRubber = пуля (.20 винтовочная резинов ent-BulletLightRifleIncendiary = пуля (.20 винтовочная зажигательная) .desc = { ent-BaseBulletIncendiary.desc } ent-BulletLightRifleUranium = пуля (.20 винтовочная урановая) - .desc = { ent-BaseBullet.desc } + .desc = { ent-BaseBulletUranium.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/magnum.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/magnum.ftl index a7050d3a7a4..00f5943114d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/magnum.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/magnum.ftl @@ -9,4 +9,4 @@ ent-BulletMagnumIncendiary = пуля (.45 магнум зажигательна ent-BulletMagnumAP = пуля (.45 магнум бронебойная) .desc = { ent-BaseBulletAP.desc } ent-BulletMagnumUranium = пуля (.45 магнум урановая) - .desc = { ent-BaseBullet.desc } + .desc = { ent-BaseBulletUranium.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/pistol.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/pistol.ftl index 79048323e33..9b0ff24bbdd 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/pistol.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/pistol.ftl @@ -7,4 +7,4 @@ ent-BulletPistolRubber = пуля (.35 авто резиновая) ent-BulletPistolIncendiary = пуля (.35 авто зажигательная) .desc = { ent-BaseBulletIncendiary.desc } ent-BulletPistolUranium = пуля (.35 авто урановая) - .desc = { ent-BaseBullet.desc } + .desc = { ent-BaseBulletUranium.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/rifle.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/rifle.ftl index 840bfc6d597..3f4edb90f21 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/rifle.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/rifle.ftl @@ -7,4 +7,4 @@ ent-BulletRifleRubber = пуля (0.20 винтовочная резиновая ent-BulletRifleIncendiary = пуля (0.20 винтовочная зажигательная) .desc = { ent-BaseBulletIncendiary.desc } ent-BulletRifleUranium = пуля (0.20 винтовочная урановая) - .desc = { ent-BaseBullet.desc } + .desc = { ent-BaseBulletUranium.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/magnum.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/magnum.ftl index ea56fd7beee..21d69b25d1b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/magnum.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/speedloaders/magnum.ftl @@ -8,5 +8,5 @@ ent-SpeedLoaderMagnumRubber = спидлоадер (.45 магнум резин .desc = { ent-BaseSpeedLoaderMagnum.desc } ent-SpeedLoaderMagnumAP = спидлоадер (.45 магнум бронебойные) .desc = { ent-BaseSpeedLoaderMagnum.desc } -ent-SpeedLoaderMagnumUranium = speed loader (.45 magnum uranium) +ent-SpeedLoaderMagnumUranium = спидлоадер (.45 магнум урановые) .desc = { ent-BaseSpeedLoaderMagnum.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/lmgs/lmgs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/lmgs/lmgs.ftl index 5a8a3056b75..9ccee2b375e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/lmgs/lmgs.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/lmgs/lmgs.ftl @@ -4,4 +4,4 @@ ent-WeaponLightMachineGunL6 = L6 SAW .desc = Весьма традиционный легкий пулемет с удобной лакированной деревянной пистолетной рукоятью. Использует патроны калибра .30 винтовочный. .suffix = Пулемёт ent-WeaponLightMachineGunL6C = L6C ROW - .desc = L6 SAW, модифицированный для использования киборгами. Питается патронами калибра .30 из внутреннего магазина на 100 патронов. + .desc = L6 SAW для киборгов. На ходу создаёт патроны калибра .30 винтовочный из встроенного самозарядного фабрикатора боеприпасов. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/mining.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/mining.ftl index d1610c74c47..70b09027fa9 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/mining.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/mining.ftl @@ -3,6 +3,6 @@ ent-BaseWeaponCrusher = крушитель ent-WeaponCrusher = { ent-BaseWeaponCrusher } .desc = { ent-BaseWeaponCrusher.desc } ent-WeaponCrusherDagger = кинжал-крушитель - .desc = Уменьшенная версия протокинетического крушителя, обычно используется как оружие последнего шанса. + .desc = Уменьшенная версия протокинетического крушителя. Использует кинетическую энергию для высокочастотной вибрации лезвия. ent-WeaponCrusherGlaive = глефа-крушитель .desc = Ранняя версия протокинетического ускорителя в виде глефы. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryopod.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryopod.ftl new file mode 100644 index 00000000000..58a18d75ab5 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryopod.ftl @@ -0,0 +1,8 @@ +ent-CryogenicSleepUnit = cryogenic sleep unit + .desc = A super-cooled container that keeps crewmates safe during space travel. +ent-CryogenicSleepUnitSpawner = { ent-CryogenicSleepUnit } + .suffix = Spawner, Roundstart AllJobs + .desc = { ent-CryogenicSleepUnit.desc } +ent-CryogenicSleepUnitSpawnerLateJoin = { ent-CryogenicSleepUnit } + .suffix = Spawner, LateJoin + .desc = { ent-CryogenicSleepUnit.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/booze.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/booze.ftl index ffd454b8cb6..b95a9f4cfc4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/booze.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/booze.ftl @@ -1,2 +1,6 @@ ent-BoozeDispenser = раздатчик алкоголя .desc = Дозатор спиртных напитков. Имеет один слот для емкостей. + .suffix = Filled +ent-BoozeDispenserEmpty = { ent-BoozeDispenser } + .suffix = Empty + .desc = { ent-BoozeDispenser.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/chem.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/chem.ftl index 1c77b041318..8fdb6f126f9 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/chem.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/chem.ftl @@ -1,2 +1,6 @@ ent-ChemDispenser = раздатчик химикатов .desc = Химический дозатор промышленного класса с большим запасом реагентов. + .suffix = Filled +ent-ChemDispenserEmpty = chemical dispenser + .suffix = Empty + .desc = { ent-ChemDispenser.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/soda.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/soda.ftl index 70b2df63848..14b320c1dfb 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/soda.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/dispensers/soda.ftl @@ -1,2 +1,6 @@ ent-soda_dispenser = раздатчик безалкоголя .desc = Разливочный автомат с ассортиментом из газировки и ряда других популярных напитков. Имеет один слот для емкостей. + .suffix = Filled +ent-SodaDispenserEmpty = { ent-soda_dispenser } + .suffix = Empty + .desc = { ent-soda_dispenser.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/airlocks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/airlocks.ftl index a0d13cbb53e..cf4eb9bb566 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/airlocks.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/airlocks.ftl @@ -39,9 +39,9 @@ ent-AirlockMining = { ent-Airlock } ent-AirlockCentralCommand = { ent-Airlock } .suffix = Центральное командование .desc = { ent-Airlock.desc } -ent-AirlockHatch = airtight hatch +ent-AirlockHatch = герметичный люк .desc = { ent-Airlock.desc } -ent-AirlockHatchMaintenance = maintenance hatch +ent-AirlockHatchMaintenance = люк техобслуживания .desc = { ent-Airlock.desc } ent-AirlockGlass = стеклянный шлюз .desc = { ent-Airlock.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/materialdoors/material_doors.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/materialdoors/material_doors.ftl index 1e4459b7e03..760f0fac4b8 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/materialdoors/material_doors.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/materialdoors/material_doors.ftl @@ -3,7 +3,7 @@ ent-BaseMaterialDoor = дверь ent-BaseMaterialDoorNavMap = { ent-BaseMaterialDoor } .desc = { ent-BaseMaterialDoor.desc } ent-MetalDoor = металлическая дверь - .desc = { ent-BaseMaterialDoor.desc } + .desc = { ent-BaseMaterialDoorNavMap.desc } ent-WoodDoor = деревянная дверь .desc = Дверь, куда она ведет? ent-PaperDoor = бумажная дверь diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door.ftl index 53babaa32cf..775dd22b59c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/shutter/blast_door.ftl @@ -3,3 +3,5 @@ ent-BlastDoor = гермозатвор ent-BlastDoorOpen = { ent-BlastDoor } .suffix = Открытый .desc = { ent-BlastDoor.desc } +ent-BlastDoorFrame = blast door frame + .desc = This one says 'BLAST DONGER'. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl index 202f3a09938..41846f8f287 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl @@ -16,7 +16,7 @@ ent-VendingMachineChapel = БогоМат .desc = { ent-VendingMachine.desc } ent-VendingMachineWinter = ЗимнеШкаф .desc = Лучшее место, чтобы насладиться холодом! -ent-VendingMachineCigs = ШейдиСиг Делюкс +ent-VendingMachineCigs = ShadyCigs Делюкс .desc = Если вы хотите заболеть раком, то лучше сделать это стильно. ent-VendingMachineClothing = ОдеждоМат .desc = Торговый автомат для одежды. @@ -35,19 +35,19 @@ ent-VendingMachineStarkist = торгомат Стар-кист ent-VendingMachineShamblersJuice = торгомат Сок Shambler .desc = ~Встряхните мне немного этого сока Shambler!~ ent-VendingMachinePwrGame = торгомат Pwr Game - .desc = Вы этого хотите, у нас это есть. В партнерстве с компанией Vlad's Salad. + .desc = Вы этого хотите, у нас это есть. В партнерстве с компанией Vlad Salad. ent-VendingMachineDrGibb = торгомат Доктор Гибб .desc = Консервированный взрыв всевозможных вкусов именно у этого производителя! ent-VendingMachineCoffee = Лучшие горячие напитки Солнечной .desc = Подаются кипящими, чтобы оставались горячими всю смену! ent-VendingMachineMagivend = МагМазин .desc = Магический торговый автомат. -ent-VendingMachineCola = Прохладительные напитки Робаст - .desc = Автомат прохладительных напитков, предоставленный компанией Робаст Индастриз, ООО. +ent-VendingMachineCola = Прохладительные напитки Robust + .desc = Автомат прохладительных напитков, предоставленный компанией Robust Industries, LLC. ent-VendingMachineDinnerware = ПосудоМат .desc = Поставщик оборудования для кухонь и ресторанов. -ent-VendingMachineDiscount = Дискаунтер Дэна - .desc = Торговый автомат с закусками из печально известной франшизы "Дискаунтер Дэна". +ent-VendingMachineDiscount = Discount Dan + .desc = Торговый автомат с закусками из печально известной франшизы "Discount Dan". ent-VendingMachineEngivend = ИнжеМат .desc = Запасные инструменты. А что? Вы ожидали чего-то остроумного? ent-VendingMachineMedical = НаноМед Плюс @@ -76,8 +76,8 @@ ent-VendingMachineSnackGreen = { ent-VendingMachineSnack } ent-VendingMachineSnackTeal = { ent-VendingMachineSnack } .suffix = Сине-зеленый .desc = { ent-VendingMachineSnack.desc } -ent-VendingMachineSnack = Гетмор Шоколад Корп - .desc = Автомат с закусками, предоставленный корпорацией Гетмор Шоколад, базирующейся на Марсе. +ent-VendingMachineSnack = Getmore Chocolate Corp + .desc = Автомат с закусками, предоставленный корпорацией Getmore Chocolate, базирующейся на Марсе. ent-VendingMachineSovietSoda = ВОДА .desc = Старый торговый автомат со сладкой водой. ent-VendingMachineRobotics = Роботех Делюкс @@ -88,7 +88,7 @@ ent-VendingMachineVendomat = Вендомат .desc = Только лучшее надежное оборудование в космосе! ent-VendingMachineGames = Безобидные развлечения .desc = Выдает вещи, которые капитан и глава персонала, скорее всего, не оценят, если вы будете развлекаться с ними вместо своей работы... -ent-VendingMachineChang = Мистер Чанг +ent-VendingMachineChang = Mr. Chang .desc = Автомат самообслуживания с китайской едой, для всех ваших потребностей в китайской еде. ent-VendingMachineSalvage = Утильмаг .desc = Лучший друг дворфов! @@ -96,8 +96,8 @@ ent-VendingMachineWallmount = торговый автомат .desc = { ent-VendingMachine.desc } ent-VendingMachineWallMedical = НаноМед .desc = Это настенный раздатчик медицинского оборудования. Только натуральные химикаты! -ent-VendingMachineDonut = Пончики Монкинс - .desc = Автомат пончиков, предоставленный компанией Робаст Индастриз, ООО. +ent-VendingMachineDonut = Monkin' Donuts + .desc = Автомат пончиков, предоставленный компанией Robust Industries, LLC. ent-VendingMachineHydrobe = ГидроРоб .desc = Автомат с запоминающимся названием. Он раздает одежду и снаряжение, связанные с ботаникой. ent-VendingMachineLawDrobe = ЗаконШкаф diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/closets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/closets.ftl index 34bdf82fda6..4f72b8472e1 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/closets.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/closets.ftl @@ -21,8 +21,8 @@ ent-ClosetL3Janitor = { ent-ClosetL3 } .desc = { ent-ClosetL3.desc } ent-ClosetMaintenance = технический шкаф .desc = Это хранилище. -ent-LockerSyndicate = armory closet - .desc = It's a storage unit. +ent-LockerSyndicate = оружейный шкаф + .desc = Это хранилище. ent-ClosetBluespace = подозрительный шкаф .desc = Это хранилище... правда же? .suffix = Блюспейс diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl index 63c0a69e774..80270eef8f4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/crates/crates.ftl @@ -13,7 +13,7 @@ ent-CrateRadiation = ящик противорадиационного снар ent-CrateInternals = ящик аварийного кислородного снаряжения .desc = { ent-CratePlastic.desc } ent-CrateElectrical = электротехнический ящик - .desc = { ent-CratePlastic.desc } + .desc = { ent-CrateGenericSteel.desc } ent-CrateEngineering = инженерный ящик .desc = { ent-CrateGenericSteel.desc } ent-CrateScience = научный ящик diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/tanks/base_structuretanks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/tanks/base_structuretanks.ftl index 03bc356a464..05a7261db16 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/tanks/base_structuretanks.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/tanks/base_structuretanks.ftl @@ -1,2 +1,2 @@ -ent-StorageTank = storage tank - .desc = A liquids storage tank. +ent-StorageTank = резервуар + .desc = Резервуар для хранения жидкостей. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl index b2df7f8d38f..74c2c041045 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl @@ -74,10 +74,10 @@ ent-PosterContrabandBustyBackdoorExoBabes6 = Фигуристые Ксено-М .desc = Зарядись (или разрядись) с этими полностью натуральными ксено-малышками! ent-PosterContrabandRobustSoftdrinks = Robust Softdrinks .desc = Robust Softdrinks: Робастнее чем удар ящиком инструментов по голове! -ent-PosterContrabandShamblersJuice = Сок Shambler's - .desc = ~Взболтайте мне немного этого сока Shambler's!~ +ent-PosterContrabandShamblersJuice = Сок Shambler + .desc = ~Взболтайте мне немного этого сока Shambler!~ ent-PosterContrabandPwrGame = Pwr Game - .desc = СИЛА, которой ЖАЖДУТ геймеры! В партнерстве с компанией Vlad's Salad. + .desc = СИЛА, которой ЖАЖДУТ геймеры! В партнерстве с компанией Vlad Salad. ent-PosterContrabandSunkist = Sun-kist .desc = Выпейте звезд! ent-PosterContrabandSpaceCola = Космическая Кола @@ -114,8 +114,8 @@ ent-PosterContrabandMoth = СиндиНиан - Ядерные операции .desc = Плакат, созданный по заказу Синдиката, с использованием СиндиНиан™, призывающий зрителя держать диск ядерной аутентификации незащищенным. "Мир никогда не был вариантом!" Ни один хороший сотрудник не станет прислушиваться к этой чепухе. ent-PosterContrabandCybersun600 = Cybersun: 600-ый юбилей компании .desc = Художественный плакат, посвященный 600-летию успешной деятельности компании Cybersun Industries. -ent-PosterContrabandDonk = ФИРМЕННЫЕ МИКРОВОЛНОВЫЕ ПРОДУКТЫ ДОНК КО. - .desc = ФИРМЕННЫЕ МИКРОВОЛНОВЫЕ ПРОДУКТЫ ДОНК КО.: СДЕЛАНО ГОЛОДНЫМИ СТУДЕНТАМИ, ДЛЯ ГОЛОДНЫХ СТУДЕНТОВ. +ent-PosterContrabandDonk = ФИРМЕННЫЕ МИКРОВОЛНОВЫЕ ПРОДУКТЫ DONK CO. + .desc = ФИРМЕННЫЕ МИКРОВОЛНОВЫЕ ПРОДУКТЫ DONK CO.: СДЕЛАНО ГОЛОДНЫМИ СТУДЕНТАМИ, ДЛЯ ГОЛОДНЫХ СТУДЕНТОВ. ent-PosterContrabandEnlistGorlex = Идёт набор .desc = Вступайте в ряды Мародеров Горлекса уже сегодня! Путешествуйте по галактике, убивайте корпоратов, получайте деньги! ent-PosterContrabandInterdyne = Interdyne Pharmaceutics: Во имя здоровья человечества diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl index d14beee6e52..f806b5f1d29 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/asteroid.ftl @@ -17,8 +17,8 @@ ent-AsteroidRockSilver = { ent-AsteroidRock } .desc = Рудная жила, богатая серебром. .suffix = Серебро ent-AsteroidRockTin = { ent-AsteroidRock } - .desc = Рудная жила, богатая сталью. - .suffix = Сталь + .desc = Рудная жила, богатая железом. + .suffix = Железо ent-AsteroidRockUranium = { ent-AsteroidRock } .desc = Рудная жила, богатая ураном. .suffix = Уран @@ -61,8 +61,8 @@ ent-WallRockSilver = { ent-WallRock } .desc = Рудная жила, богатая серебром. .suffix = Серебро ent-WallRockTin = { ent-WallRock } - .desc = Рудная жила, богатая сталью. - .suffix = Сталь + .desc = Рудная жила, богатая железом. + .suffix = Железо ent-WallRockUranium = { ent-WallRock } .desc = Рудная жила, богатая ураном. .suffix = Уран @@ -90,8 +90,8 @@ ent-WallRockBasaltSilver = { ent-WallRockBasalt } .desc = Рудная жила, богатая серебром. .suffix = Серебро ent-WallRockBasaltTin = { ent-WallRockBasalt } - .desc = Рудная жила, богатая сталью. - .suffix = Сталь + .desc = Рудная жила, богатая железом. + .suffix = Железо ent-WallRockBasaltUranium = { ent-WallRockBasalt } .desc = Рудная жила, богатая ураном. .suffix = Уран @@ -119,8 +119,8 @@ ent-WallRockSnowSilver = { ent-WallRockSnow } .desc = Рудная жила, богатая серебром. .suffix = Серебро ent-WallRockSnowTin = { ent-WallRockSnow } - .desc = Рудная жила, богатая сталью. - .suffix = Сталь + .desc = Рудная жила, богатая железом. + .suffix = Железо ent-WallRockSnowUranium = { ent-WallRockSnow } .desc = Рудная жила, богатая ураном. .suffix = Уран @@ -148,8 +148,8 @@ ent-WallRockSandSilver = { ent-WallRockSand } .desc = Рудная жила, богатая серебром. .suffix = Серебро ent-WallRockSandTin = { ent-WallRockSand } - .desc = Рудная жила, богатая сталью. - .suffix = Сталь + .desc = Рудная жила, богатая железом. + .suffix = Железо ent-WallRockSandUranium = { ent-WallRockSand } .desc = Рудная жила, богатая ураном. .suffix = Уран @@ -177,8 +177,8 @@ ent-WallRockChromiteSilver = { ent-WallRockChromite } .desc = Рудная жила, богатая серебром. .suffix = Серебро ent-WallRockChromiteTin = { ent-WallRockChromite } - .desc = Рудная жила, богатая сталью. - .suffix = Сталь + .desc = Рудная жила, богатая железом. + .suffix = Железо ent-WallRockChromiteUranium = { ent-WallRockChromite } .desc = Рудная жила, богатая ураном. .suffix = Уран @@ -206,8 +206,8 @@ ent-WallRockAndesiteSilver = { ent-WallRockAndesite } .desc = Рудная жила, богатая серебром. .suffix = Серебро ent-WallRockAndesiteTin = { ent-WallRockAndesite } - .desc = Рудная жила, богатая сталью. - .suffix = Сталь + .desc = Рудная жила, богатая железом. + .suffix = Железо ent-WallRockAndesiteUranium = { ent-WallRockAndesite } .desc = Рудная жила, богатая ураном. .suffix = Уран diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/virtual/virtual_item.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/virtual/virtual_item.ftl index 12d3ada993c..50e617a99bd 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/virtual/virtual_item.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/virtual/virtual_item.ftl @@ -1,2 +1,2 @@ -ent-VirtualItem = VIRTUAL ITEM YOU SHOULD NOT SEE THIS +ent-VirtualItem = ВИРТУАЛЬНЫЙ ПРЕДМЕТ, КОТОРЫЙ ВЫ НЕ ДОЛЖНЫ ВИДЕТЬ .desc = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/thief.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/thief.ftl index 0fbb703e790..16bb395b815 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/thief.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/thief.ftl @@ -96,5 +96,7 @@ ent-SmileStealObjective = { ent-BaseThiefStealAnimalObjective } .desc = { ent-BaseThiefStealAnimalObjective.desc } ent-PunPunStealObjective = { ent-BaseThiefStealAnimalObjective } .desc = { ent-BaseThiefStealAnimalObjective.desc } +ent-TropicoStealObjective = { ent-BaseThiefStealAnimalObjective } + .desc = { ent-BaseThiefStealAnimalObjective.desc } ent-EscapeThiefShuttleObjective = Улететь на Центком живым и свободным. .desc = Вы же не хотите, чтобы о вашей незаконной деятельности кто-нибудь узнал? diff --git a/Resources/Locale/ru-RU/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/store/uplink-catalog.ftl index df9ef3f4041..b5a6c7214d9 100644 --- a/Resources/Locale/ru-RU/store/uplink-catalog.ftl +++ b/Resources/Locale/ru-RU/store/uplink-catalog.ftl @@ -204,8 +204,8 @@ uplink-clothing-shoes-boots-mag-syndie-name = { ent-ClothingShoesBootsMagSyndie uplink-clothing-shoes-boots-mag-syndie-desc = Пара ботинок, которые предотвращают поскальзывание и позволяют нормально передвигаться в условиях невесомости за счёт небольшого замедления. Кроме этого, они обладают функционалом реактивного ранца и поставляются заправленными, но хватает их ненадолго. uplink-eva-syndie-name = { ent-ClothingBackpackDuffelSyndicateEVABundle } uplink-eva-syndie-desc = Простой EVA-скафандр, который не даёт никакой защиты, кроме той, что необходима для выживания в космосе. -uplink-hardsuit-syndieelite-name = Syndicate Elite Hardsuit -uplink-hardsuit-syndieelite-desc = An elite version of the blood-red hardsuit, with improved mobility and fireproofing. Property of Gorlex Marauders. +uplink-hardsuit-syndieelite-name = Элитный скафандр Синдиката +uplink-hardsuit-syndieelite-desc = Элитная версия кроваво-красного скафандра, отличающаяся повышенной мобильностью и огнеупорностью. Собственность Мародёров Горлекса. uplink-clothing-outer-hardsuit-juggernaut-name = { ent-ClothingOuterHardsuitJuggernaut } uplink-clothing-outer-hardsuit-juggernaut-desc = { ent-ClothingOuterHardsuitJuggernaut.desc } uplink-cyberpen-name = { ent-CyberPen } diff --git a/Resources/Locale/ru-RU/tools/tool-qualities.ftl b/Resources/Locale/ru-RU/tools/tool-qualities.ftl index a208a9b0ca4..b3de5671d82 100644 --- a/Resources/Locale/ru-RU/tools/tool-qualities.ftl +++ b/Resources/Locale/ru-RU/tools/tool-qualities.ftl @@ -20,5 +20,5 @@ tool-quality-woodcutting-name = Рубка дерева tool-quality-woodcutting-tool-name = Топор tool-quality-rolling-name = Раскатать tool-quality-rolling-tool-name = Скалка -tool-quality-digging-name = Digging -tool-quality-digging-tool-name = Shovel +tool-quality-digging-name = Копание +tool-quality-digging-tool-name = Лопата diff --git a/Resources/Locale/ru-RU/ui/navmap.ftl b/Resources/Locale/ru-RU/ui/navmap.ftl index c700b9ae3f0..14491bf5700 100644 --- a/Resources/Locale/ru-RU/ui/navmap.ftl +++ b/Resources/Locale/ru-RU/ui/navmap.ftl @@ -1,3 +1,3 @@ -navmap-zoom = Приближение: { $value }% +navmap-zoom = Приближение: { $value }x navmap-recenter = Отцентрировать navmap-toggle-beacons = Отображать отделы diff --git a/Resources/Locale/ru-RU/wires/wire-names.ftl b/Resources/Locale/ru-RU/wires/wire-names.ftl index 392cdde5f43..5b47738eee5 100644 --- a/Resources/Locale/ru-RU/wires/wire-names.ftl +++ b/Resources/Locale/ru-RU/wires/wire-names.ftl @@ -29,7 +29,7 @@ wires-board-name-hydroponicstray = Гидропонный лоток wires-board-name-telecomserver = Телекоммуникационный сервер wires-board-name-medicalscanner = Медицинский сканер wires-board-name-reclaimer = Переработчик -wires-board-name-recharger = Recharger +wires-board-name-recharger = Зарядник wires-board-name-minigravitygenerator = Мини-генератор гравитации wires-board-name-dawinstrument = Цифровая звуковая рабочая станция wires-board-name-airlock = Управление шлюзом @@ -63,5 +63,5 @@ wire-name-bomb-delay = ЗДРЖ wire-name-bomb-proceed = ПРДЛ wire-name-bomb-boom = БУУМ wire-name-bomb-bolt = БОЛТ -wire-name-speech = SPKR -wire-name-listen = MIC +wire-name-speech = ДНМК +wire-name-listen = МИКР diff --git a/Resources/Maps/Misc/terminal.yml b/Resources/Maps/Misc/terminal.yml index 86939d465f2..e089814d576 100644 --- a/Resources/Maps/Misc/terminal.yml +++ b/Resources/Maps/Misc/terminal.yml @@ -4,68 +4,69 @@ meta: tilemap: 0: Space 7: FloorAsteroidSand - 27: FloorDark - 36: FloorDarkPlastic - 45: FloorGrass - 71: FloorRGlass - 72: FloorReinforced - 84: FloorSteel - 96: FloorTechMaint - 97: FloorTechMaint2 - 112: Lattice - 113: Plating + 29: FloorDark + 38: FloorDarkPlastic + 47: FloorGrass + 76: FloorRGlass + 77: FloorReinforced + 89: FloorSteel + 104: FloorTechMaint + 105: FloorTechMaint2 + 120: Lattice + 121: Plating entities: - proto: "" entities: - uid: 818 components: - - name: NT-EM Terminal - type: MetaData - - parent: invalid - type: Transform - - chunks: + - type: MetaData + name: NT-EM Terminal + - type: Transform + parent: invalid + - type: MapGrid + chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAGwAAAAADBwAAAAAAGwAAAAABVAAAAAACGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABVAAAAAADGwAAAAAABwAAAAAAGwAAAAAAVAAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABVAAAAAACGwAAAAADBwAAAAAAGwAAAAABVAAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACVAAAAAAAGwAAAAAABwAAAAAAGwAAAAABVAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADRwAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACRwAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAARwAAAAAAVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABVAAAAAAAVAAAAAAARwAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAABAAAAAAAAcQAAAAAAGwAAAAABVAAAAAABVAAAAAABRwAAAAAAVAAAAAAARwAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAD + tiles: AAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAHQAAAAADBwAAAAAAHQAAAAABWQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAADHQAAAAAABwAAAAAAHQAAAAAAWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAACHQAAAAADBwAAAAAAHQAAAAABWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAHQAAAAAABwAAAAAAHQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADTAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACTAAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAATAAAAAAAWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAATAAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABAAAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABTAAAAAAAWQAAAAAATAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAD version: 6 0,0: ind: 0,0 - tiles: VAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAATQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADVAAAAAABGwAAAAAABwAAAAAAGwAAAAABVAAAAAACGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACVAAAAAACGwAAAAAABwAAAAAAGwAAAAACVAAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAVAAAAAABGwAAAAADBwAAAAAAGwAAAAABVAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADVAAAAAADGwAAAAACBwAAAAAAGwAAAAADVAAAAAACGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACRwAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAAARwAAAAAAVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAARwAAAAAAVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAABHQAAAAAABwAAAAAAHQAAAAABWQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAACHQAAAAAABwAAAAAAHQAAAAACWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABHQAAAAADBwAAAAAAHQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAADHQAAAAACBwAAAAAAHQAAAAADWQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACTAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAATAAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAATAAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAcQAAAAAAGwAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADAAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAARwAAAAAAVAAAAAADVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADRwAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAATAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADTAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABRwAAAAAAVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABRwAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABTAAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABTAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: MapGrid - type: Broadphase - - bodyStatus: InAir + - type: Physics + bodyStatus: InAir angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - id: Empty - type: BecomesStation + - type: Fixtures + fixtures: {} + - type: BecomesStation + id: Empty - type: OccluderTree - type: Shuttle - - gravityShakeSound: !type:SoundPathSpecifier + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: + - type: DecalGrid + chunkCollection: version: 2 nodes: - node: @@ -783,8 +784,8 @@ entities: 288: 5,0 358: 5,-1 359: -7,-1 - type: DecalGrid - - version: 2 + - type: GridAtmosphere + version: 2 data: tiles: -1,-1: @@ -943,7 +944,6 @@ entities: - 0 - 0 chunkSize: 4 - type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - type: SpreaderGrid @@ -952,5112 +952,5396 @@ entities: entities: - uid: 2 components: - - pos: 6.5,-10.5 + - type: Transform + pos: 6.5,-10.5 parent: 818 - type: Transform - uid: 3 components: - - pos: -7.5,-17.5 + - type: Transform + pos: -7.5,-17.5 parent: 818 - type: Transform - uid: 4 components: - - pos: -7.5,-10.5 + - type: Transform + pos: -7.5,-10.5 parent: 818 - type: Transform - uid: 5 components: - - pos: 6.5,-17.5 + - type: Transform + pos: 6.5,-17.5 parent: 818 - type: Transform - uid: 11 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-10.5 parent: 818 - type: Transform - uid: 12 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-17.5 parent: 818 - type: Transform - uid: 13 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-17.5 parent: 818 - type: Transform - uid: 14 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-10.5 parent: 818 - type: Transform - proto: AirlockExternalLocked entities: - uid: 589 components: - - pos: 4.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,8.5 parent: 818 - type: Transform - proto: AirlockGlass entities: - uid: 252 components: - - pos: -9.5,-4.5 + - type: Transform + pos: -9.5,-4.5 parent: 818 - type: Transform - uid: 253 components: - - pos: -10.5,-4.5 + - type: Transform + pos: -10.5,-4.5 parent: 818 - type: Transform - uid: 254 components: - - pos: -11.5,-4.5 + - type: Transform + pos: -11.5,-4.5 parent: 818 - type: Transform - uid: 255 components: - - pos: 8.5,-4.5 + - type: Transform + pos: 8.5,-4.5 parent: 818 - type: Transform - uid: 256 components: - - pos: 9.5,-4.5 + - type: Transform + pos: 9.5,-4.5 parent: 818 - type: Transform - uid: 257 components: - - pos: 10.5,-4.5 + - type: Transform + pos: 10.5,-4.5 parent: 818 - type: Transform -- proto: AirlockGlassShuttle +- proto: AirlockGlassShuttleEasyPryLocked entities: + - uid: 1 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 818 - uid: 6 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-17.5 parent: 818 - type: Transform - uid: 7 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-10.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 parent: 818 - type: Transform - uid: 8 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-17.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 parent: 818 - type: Transform - uid: 9 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 parent: 818 - type: Transform - uid: 15 components: - - rot: -1.5707963267948966 rad - pos: -15.5,-17.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 parent: 818 - type: Transform - uid: 16 components: - - rot: -1.5707963267948966 rad - pos: -15.5,-10.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 parent: 818 - type: Transform - uid: 17 components: - - rot: 1.5707963267948966 rad - pos: 14.5,-17.5 - parent: 818 - type: Transform - - uid: 18 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-10.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-17.5 parent: 818 - type: Transform - proto: AirlockMaint entities: - uid: 146 components: - - pos: 3.5,3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,3.5 parent: 818 - type: Transform - proto: APCBasic entities: - uid: 205 components: - - pos: 6.5,2.5 + - type: Transform + pos: 6.5,2.5 parent: 818 - type: Transform - uid: 206 components: - - pos: -13.5,2.5 + - type: Transform + pos: -13.5,2.5 parent: 818 - type: Transform - uid: 211 components: - - pos: -13.5,-11.5 + - type: Transform + pos: -13.5,-11.5 parent: 818 - type: Transform - uid: 212 components: - - pos: 6.5,-11.5 + - type: Transform + pos: 6.5,-11.5 parent: 818 - type: Transform - uid: 355 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,6.5 parent: 818 - type: Transform - uid: 846 components: - - pos: 2.5,3.5 + - type: Transform + pos: 2.5,3.5 parent: 818 - type: Transform - proto: ArrivalsShuttleTimer entities: - uid: 597 components: - - pos: -7.5,-5.5 + - type: Transform + pos: -7.5,-5.5 parent: 818 - type: Transform - uid: 633 components: - - pos: 6.5,-5.5 + - type: Transform + pos: 6.5,-5.5 parent: 818 - type: Transform - uid: 928 components: - - pos: -6.5,-14.5 + - type: Transform + pos: -6.5,-14.5 parent: 818 - type: Transform - uid: 929 components: - - pos: 5.5,-14.5 + - type: Transform + pos: 5.5,-14.5 parent: 818 - type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 296 components: - - pos: -6.5,-10.5 + - type: Transform + pos: -6.5,-10.5 parent: 818 - type: Transform - uid: 297 components: - - pos: -14.5,-10.5 + - type: Transform + pos: -14.5,-10.5 parent: 818 - type: Transform - uid: 298 components: - - pos: -14.5,-17.5 + - type: Transform + pos: -14.5,-17.5 parent: 818 - type: Transform - uid: 299 components: - - pos: -6.5,-17.5 + - type: Transform + pos: -6.5,-17.5 parent: 818 - type: Transform - uid: 300 components: - - pos: 5.5,-17.5 + - type: Transform + pos: 5.5,-17.5 parent: 818 - type: Transform - uid: 301 components: - - pos: 5.5,-10.5 + - type: Transform + pos: 5.5,-10.5 parent: 818 - type: Transform - uid: 302 components: - - pos: 13.5,-10.5 + - type: Transform + pos: 13.5,-10.5 parent: 818 - type: Transform - uid: 303 components: - - pos: 13.5,-17.5 + - type: Transform + pos: 13.5,-17.5 parent: 818 - type: Transform - uid: 809 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 818 - type: Transform - proto: BarSignEngineChange entities: - uid: 215 components: - - pos: -10.5,5.5 + - type: Transform + pos: -10.5,5.5 parent: 818 - type: Transform - proto: BlockGameArcade entities: - uid: 727 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-1.5 parent: 818 - type: Transform - uid: 728 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,0.5 parent: 818 - type: Transform - proto: BookshelfFilled entities: - uid: 442 components: - - pos: 7.5,3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,3.5 parent: 818 - type: Transform - uid: 752 components: - - pos: 11.5,3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,3.5 parent: 818 - type: Transform - proto: BoozeDispenser entities: - uid: 710 components: - - pos: -11.5,4.5 + - type: Transform + pos: -11.5,4.5 parent: 818 - type: Transform - proto: CableApcExtension entities: - uid: 203 components: - - pos: 1.5,6.5 + - type: Transform + pos: 1.5,6.5 parent: 818 - type: Transform - uid: 208 components: - - pos: -3.5,7.5 + - type: Transform + pos: -3.5,7.5 parent: 818 - type: Transform - uid: 218 components: - - pos: -4.5,4.5 + - type: Transform + pos: -4.5,4.5 parent: 818 - type: Transform - uid: 402 components: - - pos: -4.5,7.5 + - type: Transform + pos: -4.5,7.5 parent: 818 - type: Transform - uid: 404 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 818 - type: Transform - uid: 410 components: - - pos: 2.5,2.5 + - type: Transform + pos: 2.5,2.5 parent: 818 - type: Transform - uid: 411 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 818 - type: Transform - uid: 412 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 818 - type: Transform - uid: 426 components: - - pos: -2.5,7.5 + - type: Transform + pos: -2.5,7.5 parent: 818 - type: Transform - uid: 427 components: - - pos: -1.5,7.5 + - type: Transform + pos: -1.5,7.5 parent: 818 - type: Transform - uid: 428 components: - - pos: -0.5,7.5 + - type: Transform + pos: -0.5,7.5 parent: 818 - type: Transform - uid: 429 components: - - pos: 0.5,7.5 + - type: Transform + pos: 0.5,7.5 parent: 818 - type: Transform - uid: 430 components: - - pos: 1.5,-0.5 + - type: Transform + pos: 1.5,-0.5 parent: 818 - type: Transform - uid: 431 components: - - pos: 1.5,-1.5 + - type: Transform + pos: 1.5,-1.5 parent: 818 - type: Transform - uid: 434 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 818 - type: Transform - uid: 435 components: - - pos: -0.5,-0.5 + - type: Transform + pos: -0.5,-0.5 parent: 818 - type: Transform - uid: 436 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 818 - type: Transform - uid: 437 components: - - pos: -2.5,-0.5 + - type: Transform + pos: -2.5,-0.5 parent: 818 - type: Transform - uid: 438 components: - - pos: -3.5,-0.5 + - type: Transform + pos: -3.5,-0.5 parent: 818 - type: Transform - uid: 439 components: - - pos: -4.5,-0.5 + - type: Transform + pos: -4.5,-0.5 parent: 818 - type: Transform - uid: 440 components: - - pos: -2.5,-1.5 + - type: Transform + pos: -2.5,-1.5 parent: 818 - type: Transform - uid: 443 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 818 - type: Transform - uid: 444 components: - - pos: 3.5,-0.5 + - type: Transform + pos: 3.5,-0.5 parent: 818 - type: Transform - uid: 445 components: - - pos: 4.5,-0.5 + - type: Transform + pos: 4.5,-0.5 parent: 818 - type: Transform - uid: 446 components: - - pos: -5.5,-0.5 + - type: Transform + pos: -5.5,-0.5 parent: 818 - type: Transform - uid: 447 components: - - pos: -13.5,2.5 + - type: Transform + pos: -13.5,2.5 parent: 818 - type: Transform - uid: 448 components: - - pos: -13.5,1.5 + - type: Transform + pos: -13.5,1.5 parent: 818 - type: Transform - uid: 449 components: - - pos: -13.5,0.5 + - type: Transform + pos: -13.5,0.5 parent: 818 - type: Transform - uid: 450 components: - - pos: -13.5,-0.5 + - type: Transform + pos: -13.5,-0.5 parent: 818 - type: Transform - uid: 451 components: - - pos: -12.5,-0.5 + - type: Transform + pos: -12.5,-0.5 parent: 818 - type: Transform - uid: 452 components: - - pos: -11.5,-0.5 + - type: Transform + pos: -11.5,-0.5 parent: 818 - type: Transform - uid: 453 components: - - pos: -10.5,-0.5 + - type: Transform + pos: -10.5,-0.5 parent: 818 - type: Transform - uid: 454 components: - - pos: -9.5,-0.5 + - type: Transform + pos: -9.5,-0.5 parent: 818 - type: Transform - uid: 455 components: - - pos: -8.5,-0.5 + - type: Transform + pos: -8.5,-0.5 parent: 818 - type: Transform - uid: 456 components: - - pos: -7.5,-0.5 + - type: Transform + pos: -7.5,-0.5 parent: 818 - type: Transform - uid: 457 components: - - pos: -10.5,-1.5 + - type: Transform + pos: -10.5,-1.5 parent: 818 - type: Transform - uid: 458 components: - - pos: -10.5,-2.5 + - type: Transform + pos: -10.5,-2.5 parent: 818 - type: Transform - uid: 459 components: - - pos: -10.5,-3.5 + - type: Transform + pos: -10.5,-3.5 parent: 818 - type: Transform - uid: 460 components: - - pos: -10.5,0.5 + - type: Transform + pos: -10.5,0.5 parent: 818 - type: Transform - uid: 461 components: - - pos: -10.5,1.5 + - type: Transform + pos: -10.5,1.5 parent: 818 - type: Transform - uid: 462 components: - - pos: -10.5,2.5 + - type: Transform + pos: -10.5,2.5 parent: 818 - type: Transform - uid: 463 components: - - pos: -10.5,3.5 + - type: Transform + pos: -10.5,3.5 parent: 818 - type: Transform - uid: 464 components: - - pos: -11.5,-3.5 + - type: Transform + pos: -11.5,-3.5 parent: 818 - type: Transform - uid: 465 components: - - pos: -9.5,-3.5 + - type: Transform + pos: -9.5,-3.5 parent: 818 - type: Transform - uid: 466 components: - - pos: -11.5,3.5 + - type: Transform + pos: -11.5,3.5 parent: 818 - type: Transform - uid: 467 components: - - pos: -9.5,3.5 + - type: Transform + pos: -9.5,3.5 parent: 818 - type: Transform - uid: 468 components: - - pos: -13.5,-11.5 + - type: Transform + pos: -13.5,-11.5 parent: 818 - type: Transform - uid: 469 components: - - pos: -12.5,-11.5 + - type: Transform + pos: -12.5,-11.5 parent: 818 - type: Transform - uid: 470 components: - - pos: -11.5,-11.5 + - type: Transform + pos: -11.5,-11.5 parent: 818 - type: Transform - uid: 471 components: - - pos: -11.5,-10.5 + - type: Transform + pos: -11.5,-10.5 parent: 818 - type: Transform - uid: 472 components: - - pos: 10.5,-16.5 + - type: Transform + pos: 10.5,-16.5 parent: 818 - type: Transform - uid: 473 components: - - pos: 10.5,-15.5 + - type: Transform + pos: 10.5,-15.5 parent: 818 - type: Transform - uid: 474 components: - - pos: 10.5,-14.5 + - type: Transform + pos: 10.5,-14.5 parent: 818 - type: Transform - uid: 475 components: - - pos: 10.5,-12.5 + - type: Transform + pos: 10.5,-12.5 parent: 818 - type: Transform - uid: 476 components: - - pos: -11.5,-13.5 + - type: Transform + pos: -11.5,-13.5 parent: 818 - type: Transform - uid: 477 components: - - pos: -10.5,-17.5 + - type: Transform + pos: -10.5,-17.5 parent: 818 - type: Transform - uid: 478 components: - - pos: -10.5,-18.5 + - type: Transform + pos: -10.5,-18.5 parent: 818 - type: Transform - uid: 479 components: - - pos: -10.5,-19.5 + - type: Transform + pos: -10.5,-19.5 parent: 818 - type: Transform - uid: 480 components: - - pos: -10.5,-20.5 + - type: Transform + pos: -10.5,-20.5 parent: 818 - type: Transform - uid: 481 components: - - pos: -11.5,-17.5 + - type: Transform + pos: -11.5,-17.5 parent: 818 - type: Transform - uid: 482 components: - - pos: -12.5,-17.5 + - type: Transform + pos: -12.5,-17.5 parent: 818 - type: Transform - uid: 483 components: - - pos: -13.5,-17.5 + - type: Transform + pos: -13.5,-17.5 parent: 818 - type: Transform - uid: 484 components: - - pos: -14.5,-17.5 + - type: Transform + pos: -14.5,-17.5 parent: 818 - type: Transform - uid: 485 components: - - pos: -9.5,-17.5 + - type: Transform + pos: -9.5,-17.5 parent: 818 - type: Transform - uid: 486 components: - - pos: -8.5,-17.5 + - type: Transform + pos: -8.5,-17.5 parent: 818 - type: Transform - uid: 487 components: - - pos: -7.5,-17.5 + - type: Transform + pos: -7.5,-17.5 parent: 818 - type: Transform - uid: 488 components: - - pos: -6.5,-17.5 + - type: Transform + pos: -6.5,-17.5 parent: 818 - type: Transform - uid: 489 components: - - pos: -10.5,-10.5 + - type: Transform + pos: -10.5,-10.5 parent: 818 - type: Transform - uid: 490 components: - - pos: -9.5,-10.5 + - type: Transform + pos: -9.5,-10.5 parent: 818 - type: Transform - uid: 491 components: - - pos: -8.5,-10.5 + - type: Transform + pos: -8.5,-10.5 parent: 818 - type: Transform - uid: 492 components: - - pos: -7.5,-10.5 + - type: Transform + pos: -7.5,-10.5 parent: 818 - type: Transform - uid: 493 components: - - pos: -6.5,-10.5 + - type: Transform + pos: -6.5,-10.5 parent: 818 - type: Transform - uid: 494 components: - - pos: -12.5,-10.5 + - type: Transform + pos: -12.5,-10.5 parent: 818 - type: Transform - uid: 495 components: - - pos: -13.5,-10.5 + - type: Transform + pos: -13.5,-10.5 parent: 818 - type: Transform - uid: 496 components: - - pos: -14.5,-10.5 + - type: Transform + pos: -14.5,-10.5 parent: 818 - type: Transform - uid: 497 components: - - pos: -11.5,-14.5 + - type: Transform + pos: -11.5,-14.5 parent: 818 - type: Transform - uid: 498 components: - - pos: -12.5,-14.5 + - type: Transform + pos: -12.5,-14.5 parent: 818 - type: Transform - uid: 499 components: - - pos: -9.5,-13.5 + - type: Transform + pos: -9.5,-13.5 parent: 818 - type: Transform - uid: 500 components: - - pos: -8.5,-13.5 + - type: Transform + pos: -8.5,-13.5 parent: 818 - type: Transform - uid: 501 components: - - pos: -10.5,-9.5 + - type: Transform + pos: -10.5,-9.5 parent: 818 - type: Transform - uid: 502 components: - - pos: -10.5,-8.5 + - type: Transform + pos: -10.5,-8.5 parent: 818 - type: Transform - uid: 503 components: - - pos: -10.5,-7.5 + - type: Transform + pos: -10.5,-7.5 parent: 818 - type: Transform - uid: 504 components: - - pos: -10.5,-6.5 + - type: Transform + pos: -10.5,-6.5 parent: 818 - type: Transform - uid: 505 components: - - pos: 6.5,-11.5 + - type: Transform + pos: 6.5,-11.5 parent: 818 - type: Transform - uid: 506 components: - - pos: 7.5,-11.5 + - type: Transform + pos: 7.5,-11.5 parent: 818 - type: Transform - uid: 507 components: - - pos: 7.5,-10.5 + - type: Transform + pos: 7.5,-10.5 parent: 818 - type: Transform - uid: 508 components: - - pos: 6.5,-10.5 + - type: Transform + pos: 6.5,-10.5 parent: 818 - type: Transform - uid: 509 components: - - pos: 5.5,-10.5 + - type: Transform + pos: 5.5,-10.5 parent: 818 - type: Transform - uid: 510 components: - - pos: 8.5,-11.5 + - type: Transform + pos: 8.5,-11.5 parent: 818 - type: Transform - uid: 511 components: - - pos: 8.5,-10.5 + - type: Transform + pos: 8.5,-10.5 parent: 818 - type: Transform - uid: 512 components: - - pos: 9.5,-10.5 + - type: Transform + pos: 9.5,-10.5 parent: 818 - type: Transform - uid: 513 components: - - pos: 10.5,-10.5 + - type: Transform + pos: 10.5,-10.5 parent: 818 - type: Transform - uid: 514 components: - - pos: 11.5,-10.5 + - type: Transform + pos: 11.5,-10.5 parent: 818 - type: Transform - uid: 515 components: - - pos: 12.5,-10.5 + - type: Transform + pos: 12.5,-10.5 parent: 818 - type: Transform - uid: 516 components: - - pos: 13.5,-10.5 + - type: Transform + pos: 13.5,-10.5 parent: 818 - type: Transform - uid: 517 components: - - pos: 8.5,-16.5 + - type: Transform + pos: 8.5,-16.5 parent: 818 - type: Transform - uid: 518 components: - - pos: 8.5,-15.5 + - type: Transform + pos: 8.5,-15.5 parent: 818 - type: Transform - uid: 519 components: - - pos: 8.5,-13.5 + - type: Transform + pos: 8.5,-13.5 parent: 818 - type: Transform - uid: 520 components: - - pos: 8.5,-12.5 + - type: Transform + pos: 8.5,-12.5 parent: 818 - type: Transform - uid: 521 components: - - pos: -11.5,-12.5 + - type: Transform + pos: -11.5,-12.5 parent: 818 - type: Transform - uid: 522 components: - - pos: 9.5,-17.5 + - type: Transform + pos: 9.5,-17.5 parent: 818 - type: Transform - uid: 523 components: - - pos: 9.5,-18.5 + - type: Transform + pos: 9.5,-18.5 parent: 818 - type: Transform - uid: 524 components: - - pos: 9.5,-19.5 + - type: Transform + pos: 9.5,-19.5 parent: 818 - type: Transform - uid: 525 components: - - pos: 9.5,-20.5 + - type: Transform + pos: 9.5,-20.5 parent: 818 - type: Transform - uid: 526 components: - - pos: 8.5,-17.5 + - type: Transform + pos: 8.5,-17.5 parent: 818 - type: Transform - uid: 527 components: - - pos: 7.5,-17.5 + - type: Transform + pos: 7.5,-17.5 parent: 818 - type: Transform - uid: 528 components: - - pos: 6.5,-17.5 + - type: Transform + pos: 6.5,-17.5 parent: 818 - type: Transform - uid: 529 components: - - pos: 5.5,-17.5 + - type: Transform + pos: 5.5,-17.5 parent: 818 - type: Transform - uid: 530 components: - - pos: 10.5,-17.5 + - type: Transform + pos: 10.5,-17.5 parent: 818 - type: Transform - uid: 531 components: - - pos: 11.5,-17.5 + - type: Transform + pos: 11.5,-17.5 parent: 818 - type: Transform - uid: 532 components: - - pos: 12.5,-17.5 + - type: Transform + pos: 12.5,-17.5 parent: 818 - type: Transform - uid: 533 components: - - pos: 13.5,-17.5 + - type: Transform + pos: 13.5,-17.5 parent: 818 - type: Transform - uid: 534 components: - - pos: 8.5,-14.5 + - type: Transform + pos: 8.5,-14.5 parent: 818 - type: Transform - uid: 535 components: - - pos: 7.5,-14.5 + - type: Transform + pos: 7.5,-14.5 parent: 818 - type: Transform - uid: 536 components: - - pos: 10.5,-13.5 + - type: Transform + pos: 10.5,-13.5 parent: 818 - type: Transform - uid: 537 components: - - pos: 11.5,-13.5 + - type: Transform + pos: 11.5,-13.5 parent: 818 - type: Transform - uid: 538 components: - - pos: 9.5,-9.5 + - type: Transform + pos: 9.5,-9.5 parent: 818 - type: Transform - uid: 539 components: - - pos: 9.5,-8.5 + - type: Transform + pos: 9.5,-8.5 parent: 818 - type: Transform - uid: 540 components: - - pos: 9.5,-7.5 + - type: Transform + pos: 9.5,-7.5 parent: 818 - type: Transform - uid: 541 components: - - pos: 9.5,-6.5 + - type: Transform + pos: 9.5,-6.5 parent: 818 - type: Transform - uid: 542 components: - - pos: 6.5,2.5 + - type: Transform + pos: 6.5,2.5 parent: 818 - type: Transform - uid: 543 components: - - pos: 6.5,1.5 + - type: Transform + pos: 6.5,1.5 parent: 818 - type: Transform - uid: 544 components: - - pos: 6.5,0.5 + - type: Transform + pos: 6.5,0.5 parent: 818 - type: Transform - uid: 545 components: - - pos: 6.5,-0.5 + - type: Transform + pos: 6.5,-0.5 parent: 818 - type: Transform - uid: 546 components: - - pos: 7.5,-0.5 + - type: Transform + pos: 7.5,-0.5 parent: 818 - type: Transform - uid: 547 components: - - pos: 8.5,-0.5 + - type: Transform + pos: 8.5,-0.5 parent: 818 - type: Transform - uid: 548 components: - - pos: 9.5,-0.5 + - type: Transform + pos: 9.5,-0.5 parent: 818 - type: Transform - uid: 549 components: - - pos: 9.5,0.5 + - type: Transform + pos: 9.5,0.5 parent: 818 - type: Transform - uid: 550 components: - - pos: 9.5,1.5 + - type: Transform + pos: 9.5,1.5 parent: 818 - type: Transform - uid: 551 components: - - pos: 9.5,2.5 + - type: Transform + pos: 9.5,2.5 parent: 818 - type: Transform - uid: 552 components: - - pos: 9.5,3.5 + - type: Transform + pos: 9.5,3.5 parent: 818 - type: Transform - uid: 553 components: - - pos: 10.5,-0.5 + - type: Transform + pos: 10.5,-0.5 parent: 818 - type: Transform - uid: 554 components: - - pos: 8.5,3.5 + - type: Transform + pos: 8.5,3.5 parent: 818 - type: Transform - uid: 555 components: - - pos: 10.5,3.5 + - type: Transform + pos: 10.5,3.5 parent: 818 - type: Transform - uid: 556 components: - - pos: 11.5,-0.5 + - type: Transform + pos: 11.5,-0.5 parent: 818 - type: Transform - uid: 557 components: - - pos: 12.5,-0.5 + - type: Transform + pos: 12.5,-0.5 parent: 818 - type: Transform - uid: 558 components: - - pos: 9.5,-1.5 + - type: Transform + pos: 9.5,-1.5 parent: 818 - type: Transform - uid: 559 components: - - pos: 9.5,-2.5 + - type: Transform + pos: 9.5,-2.5 parent: 818 - type: Transform - uid: 560 components: - - pos: 9.5,-3.5 + - type: Transform + pos: 9.5,-3.5 parent: 818 - type: Transform - uid: 561 components: - - pos: 8.5,-3.5 + - type: Transform + pos: 8.5,-3.5 parent: 818 - type: Transform - uid: 562 components: - - pos: 10.5,-3.5 + - type: Transform + pos: 10.5,-3.5 parent: 818 - type: Transform - uid: 563 components: - - pos: 1.5,7.5 + - type: Transform + pos: 1.5,7.5 parent: 818 - type: Transform - uid: 564 components: - - pos: 2.5,7.5 + - type: Transform + pos: 2.5,7.5 parent: 818 - type: Transform - uid: 565 components: - - pos: 3.5,7.5 + - type: Transform + pos: 3.5,7.5 parent: 818 - type: Transform - uid: 566 components: - - pos: 3.5,6.5 + - type: Transform + pos: 3.5,6.5 parent: 818 - type: Transform - uid: 579 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 818 - type: Transform - uid: 599 components: - - pos: -4.5,6.5 + - type: Transform + pos: -4.5,6.5 parent: 818 - type: Transform - uid: 601 components: - - pos: -4.5,5.5 + - type: Transform + pos: -4.5,5.5 parent: 818 - type: Transform - uid: 651 components: - - pos: 10.5,-11.5 + - type: Transform + pos: 10.5,-11.5 parent: 818 - type: Transform - uid: 652 components: - - pos: -11.5,-16.5 + - type: Transform + pos: -11.5,-16.5 parent: 818 - type: Transform - uid: 653 components: - - pos: -11.5,-15.5 + - type: Transform + pos: -11.5,-15.5 parent: 818 - type: Transform - uid: 654 components: - - pos: -9.5,-16.5 + - type: Transform + pos: -9.5,-16.5 parent: 818 - type: Transform - uid: 655 components: - - pos: -9.5,-15.5 + - type: Transform + pos: -9.5,-15.5 parent: 818 - type: Transform - uid: 656 components: - - pos: -9.5,-14.5 + - type: Transform + pos: -9.5,-14.5 parent: 818 - type: Transform - uid: 657 components: - - pos: -9.5,-12.5 + - type: Transform + pos: -9.5,-12.5 parent: 818 - type: Transform - uid: 658 components: - - pos: -9.5,-11.5 + - type: Transform + pos: -9.5,-11.5 parent: 818 - type: Transform - uid: 842 components: - - pos: -4.5,0.5 + - type: Transform + pos: -4.5,0.5 parent: 818 - type: Transform - uid: 843 components: - - pos: -4.5,1.5 + - type: Transform + pos: -4.5,1.5 parent: 818 - type: Transform - uid: 844 components: - - pos: 2.5,3.5 + - type: Transform + pos: 2.5,3.5 parent: 818 - type: Transform - proto: CableHV entities: - uid: 413 components: - - pos: -3.5,8.5 + - type: Transform + pos: -3.5,8.5 parent: 818 - type: Transform - uid: 415 components: - - pos: -4.5,8.5 + - type: Transform + pos: -4.5,8.5 parent: 818 - type: Transform - uid: 416 components: - - pos: -2.5,8.5 + - type: Transform + pos: -2.5,8.5 parent: 818 - type: Transform - uid: 734 components: - - pos: -0.5,8.5 + - type: Transform + pos: -0.5,8.5 parent: 818 - type: Transform - uid: 735 components: - - pos: -1.5,8.5 + - type: Transform + pos: -1.5,8.5 parent: 818 - type: Transform - proto: CableMV entities: - uid: 177 components: - - pos: 3.5,3.5 + - type: Transform + pos: 3.5,3.5 parent: 818 - type: Transform - uid: 201 components: - - pos: 6.5,-0.5 + - type: Transform + pos: 6.5,-0.5 parent: 818 - type: Transform - uid: 210 components: - - pos: 6.5,1.5 + - type: Transform + pos: 6.5,1.5 parent: 818 - type: Transform - uid: 214 components: - - pos: 6.5,0.5 + - type: Transform + pos: 6.5,0.5 parent: 818 - type: Transform - uid: 219 components: - - pos: 7.5,-0.5 + - type: Transform + pos: 7.5,-0.5 parent: 818 - type: Transform - uid: 221 components: - - pos: 3.5,-0.5 + - type: Transform + pos: 3.5,-0.5 parent: 818 - type: Transform - uid: 224 components: - - pos: 1.5,-0.5 + - type: Transform + pos: 1.5,-0.5 parent: 818 - type: Transform - uid: 226 components: - - pos: 6.5,2.5 + - type: Transform + pos: 6.5,2.5 parent: 818 - type: Transform - uid: 227 components: - - pos: 8.5,-0.5 + - type: Transform + pos: 8.5,-0.5 parent: 818 - type: Transform - uid: 228 components: - - pos: 9.5,-0.5 + - type: Transform + pos: 9.5,-0.5 parent: 818 - type: Transform - uid: 349 components: - - pos: 9.5,-1.5 + - type: Transform + pos: 9.5,-1.5 parent: 818 - type: Transform - uid: 350 components: - - pos: 5.5,-0.5 + - type: Transform + pos: 5.5,-0.5 parent: 818 - type: Transform - uid: 352 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 818 - type: Transform - uid: 353 components: - - pos: 4.5,-0.5 + - type: Transform + pos: 4.5,-0.5 parent: 818 - type: Transform - uid: 354 components: - - pos: 1.5,6.5 + - type: Transform + pos: 1.5,6.5 parent: 818 - type: Transform - uid: 356 components: - - pos: 9.5,-7.5 + - type: Transform + pos: 9.5,-7.5 parent: 818 - type: Transform - uid: 357 components: - - pos: 9.5,-6.5 + - type: Transform + pos: 9.5,-6.5 parent: 818 - type: Transform - uid: 358 components: - - pos: 9.5,-5.5 + - type: Transform + pos: 9.5,-5.5 parent: 818 - type: Transform - uid: 359 components: - - pos: 9.5,-3.5 + - type: Transform + pos: 9.5,-3.5 parent: 818 - type: Transform - uid: 360 components: - - pos: 9.5,-4.5 + - type: Transform + pos: 9.5,-4.5 parent: 818 - type: Transform - uid: 361 components: - - pos: 9.5,-2.5 + - type: Transform + pos: 9.5,-2.5 parent: 818 - type: Transform - uid: 362 components: - - pos: 9.5,-8.5 + - type: Transform + pos: 9.5,-8.5 parent: 818 - type: Transform - uid: 363 components: - - pos: 9.5,-9.5 + - type: Transform + pos: 9.5,-9.5 parent: 818 - type: Transform - uid: 364 components: - - pos: 9.5,-10.5 + - type: Transform + pos: 9.5,-10.5 parent: 818 - type: Transform - uid: 365 components: - - pos: 9.5,-11.5 + - type: Transform + pos: 9.5,-11.5 parent: 818 - type: Transform - uid: 366 components: - - pos: 8.5,-11.5 + - type: Transform + pos: 8.5,-11.5 parent: 818 - type: Transform - uid: 367 components: - - pos: 7.5,-11.5 + - type: Transform + pos: 7.5,-11.5 parent: 818 - type: Transform - uid: 368 components: - - pos: 6.5,-11.5 + - type: Transform + pos: 6.5,-11.5 parent: 818 - type: Transform - uid: 369 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 818 - type: Transform - uid: 370 components: - - pos: -0.5,-0.5 + - type: Transform + pos: -0.5,-0.5 parent: 818 - type: Transform - uid: 371 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 818 - type: Transform - uid: 372 components: - - pos: -2.5,-0.5 + - type: Transform + pos: -2.5,-0.5 parent: 818 - type: Transform - uid: 373 components: - - pos: -3.5,-0.5 + - type: Transform + pos: -3.5,-0.5 parent: 818 - type: Transform - uid: 374 components: - - pos: -4.5,-0.5 + - type: Transform + pos: -4.5,-0.5 parent: 818 - type: Transform - uid: 375 components: - - pos: -5.5,-0.5 + - type: Transform + pos: -5.5,-0.5 parent: 818 - type: Transform - uid: 376 components: - - pos: -6.5,-0.5 + - type: Transform + pos: -6.5,-0.5 parent: 818 - type: Transform - uid: 377 components: - - pos: -7.5,-0.5 + - type: Transform + pos: -7.5,-0.5 parent: 818 - type: Transform - uid: 378 components: - - pos: -8.5,-0.5 + - type: Transform + pos: -8.5,-0.5 parent: 818 - type: Transform - uid: 379 components: - - pos: -9.5,-0.5 + - type: Transform + pos: -9.5,-0.5 parent: 818 - type: Transform - uid: 380 components: - - pos: -10.5,-0.5 + - type: Transform + pos: -10.5,-0.5 parent: 818 - type: Transform - uid: 381 components: - - pos: -11.5,-0.5 + - type: Transform + pos: -11.5,-0.5 parent: 818 - type: Transform - uid: 382 components: - - pos: -12.5,-0.5 + - type: Transform + pos: -12.5,-0.5 parent: 818 - type: Transform - uid: 383 components: - - pos: -13.5,-0.5 + - type: Transform + pos: -13.5,-0.5 parent: 818 - type: Transform - uid: 384 components: - - pos: -13.5,0.5 + - type: Transform + pos: -13.5,0.5 parent: 818 - type: Transform - uid: 385 components: - - pos: -13.5,1.5 + - type: Transform + pos: -13.5,1.5 parent: 818 - type: Transform - uid: 386 components: - - pos: -13.5,2.5 + - type: Transform + pos: -13.5,2.5 parent: 818 - type: Transform - uid: 387 components: - - pos: -10.5,-1.5 + - type: Transform + pos: -10.5,-1.5 parent: 818 - type: Transform - uid: 388 components: - - pos: -10.5,-2.5 + - type: Transform + pos: -10.5,-2.5 parent: 818 - type: Transform - uid: 389 components: - - pos: -10.5,-3.5 + - type: Transform + pos: -10.5,-3.5 parent: 818 - type: Transform - uid: 390 components: - - pos: -10.5,-4.5 + - type: Transform + pos: -10.5,-4.5 parent: 818 - type: Transform - uid: 391 components: - - pos: -10.5,-5.5 + - type: Transform + pos: -10.5,-5.5 parent: 818 - type: Transform - uid: 392 components: - - pos: -10.5,-6.5 + - type: Transform + pos: -10.5,-6.5 parent: 818 - type: Transform - uid: 393 components: - - pos: -10.5,-7.5 + - type: Transform + pos: -10.5,-7.5 parent: 818 - type: Transform - uid: 394 components: - - pos: -10.5,-8.5 + - type: Transform + pos: -10.5,-8.5 parent: 818 - type: Transform - uid: 395 components: - - pos: -10.5,-9.5 + - type: Transform + pos: -10.5,-9.5 parent: 818 - type: Transform - uid: 396 components: - - pos: -10.5,-10.5 + - type: Transform + pos: -10.5,-10.5 parent: 818 - type: Transform - uid: 397 components: - - pos: -10.5,-11.5 + - type: Transform + pos: -10.5,-11.5 parent: 818 - type: Transform - uid: 398 components: - - pos: -11.5,-11.5 + - type: Transform + pos: -11.5,-11.5 parent: 818 - type: Transform - uid: 399 components: - - pos: -12.5,-11.5 + - type: Transform + pos: -12.5,-11.5 parent: 818 - type: Transform - uid: 400 components: - - pos: -13.5,-11.5 + - type: Transform + pos: -13.5,-11.5 parent: 818 - type: Transform - uid: 418 components: - - pos: 3.5,1.5 + - type: Transform + pos: 3.5,1.5 parent: 818 - type: Transform - uid: 419 components: - - pos: 3.5,2.5 + - type: Transform + pos: 3.5,2.5 parent: 818 - type: Transform - uid: 421 components: - - pos: -0.5,7.5 + - type: Transform + pos: -0.5,7.5 parent: 818 - type: Transform - uid: 422 components: - - pos: 0.5,7.5 + - type: Transform + pos: 0.5,7.5 parent: 818 - type: Transform - uid: 423 components: - - pos: 1.5,7.5 + - type: Transform + pos: 1.5,7.5 parent: 818 - type: Transform - uid: 424 components: - - pos: 2.5,7.5 + - type: Transform + pos: 2.5,7.5 parent: 818 - type: Transform - uid: 425 components: - - pos: 3.5,7.5 + - type: Transform + pos: 3.5,7.5 parent: 818 - type: Transform - uid: 567 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 818 - type: Transform - uid: 568 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 818 - type: Transform - uid: 569 components: - - pos: 3.5,6.5 + - type: Transform + pos: 3.5,6.5 parent: 818 - type: Transform - uid: 570 components: - - pos: -0.5,8.5 + - type: Transform + pos: -0.5,8.5 parent: 818 - type: Transform - uid: 803 components: - - pos: 3.5,0.5 + - type: Transform + pos: 3.5,0.5 parent: 818 - type: Transform - uid: 845 components: - - pos: 2.5,3.5 + - type: Transform + pos: 2.5,3.5 parent: 818 - type: Transform - proto: CableTerminal entities: - uid: 417 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,8.5 parent: 818 - type: Transform - proto: Catwalk entities: - uid: 580 components: - - pos: 3.5,6.5 + - type: Transform + pos: 3.5,6.5 parent: 818 - type: Transform - uid: 584 components: - - pos: 2.5,7.5 + - type: Transform + pos: 2.5,7.5 parent: 818 - type: Transform - uid: 590 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 818 - type: Transform - uid: 596 components: - - pos: 1.5,7.5 + - type: Transform + pos: 1.5,7.5 parent: 818 - type: Transform - uid: 747 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 818 - type: Transform - uid: 810 components: - - pos: 0.5,7.5 + - type: Transform + pos: 0.5,7.5 parent: 818 - type: Transform - uid: 811 components: - - pos: -0.5,7.5 + - type: Transform + pos: -0.5,7.5 parent: 818 - type: Transform - uid: 812 components: - - pos: -1.5,7.5 + - type: Transform + pos: -1.5,7.5 parent: 818 - type: Transform - uid: 813 components: - - pos: -2.5,7.5 + - type: Transform + pos: -2.5,7.5 parent: 818 - type: Transform - uid: 814 components: - - pos: -3.5,7.5 + - type: Transform + pos: -3.5,7.5 parent: 818 - type: Transform - uid: 815 components: - - pos: -4.5,7.5 + - type: Transform + pos: -4.5,7.5 parent: 818 - type: Transform - proto: Chair entities: - uid: 592 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-14.5 parent: 818 - type: Transform - uid: 593 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-15.5 parent: 818 - type: Transform - uid: 603 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 818 - type: Transform - uid: 604 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-12.5 parent: 818 - type: Transform - uid: 605 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-15.5 parent: 818 - type: Transform - uid: 606 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-14.5 parent: 818 - type: Transform - uid: 607 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-13.5 parent: 818 - type: Transform - uid: 608 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-12.5 parent: 818 - type: Transform - uid: 609 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-15.5 parent: 818 - type: Transform - uid: 610 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-14.5 parent: 818 - type: Transform - uid: 611 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-13.5 parent: 818 - type: Transform - uid: 612 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-12.5 parent: 818 - type: Transform - uid: 613 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-15.5 parent: 818 - type: Transform - uid: 614 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-14.5 parent: 818 - type: Transform - uid: 615 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-13.5 parent: 818 - type: Transform - uid: 616 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-12.5 parent: 818 - type: Transform - uid: 617 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-15.5 parent: 818 - type: Transform - uid: 618 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-14.5 parent: 818 - type: Transform - uid: 619 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-13.5 parent: 818 - type: Transform - uid: 620 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-12.5 parent: 818 - type: Transform - uid: 621 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-15.5 parent: 818 - type: Transform - uid: 622 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-14.5 parent: 818 - type: Transform - uid: 623 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-13.5 parent: 818 - type: Transform - uid: 624 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-12.5 parent: 818 - type: Transform - uid: 625 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-15.5 parent: 818 - type: Transform - uid: 626 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-14.5 parent: 818 - type: Transform - uid: 627 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-13.5 parent: 818 - type: Transform - uid: 628 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 818 - type: Transform - uid: 629 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-15.5 parent: 818 - type: Transform - uid: 630 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-14.5 parent: 818 - type: Transform - uid: 631 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-13.5 parent: 818 - type: Transform - uid: 632 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 818 - type: Transform - uid: 847 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-8.5 parent: 818 - type: Transform - uid: 848 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-8.5 parent: 818 - type: Transform - uid: 849 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-7.5 parent: 818 - type: Transform - uid: 850 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-6.5 parent: 818 - type: Transform - proto: ChairOfficeDark entities: - uid: 591 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,3.5 parent: 818 - type: Transform - proto: ChairWood entities: - uid: 577 components: - - pos: 10.5,1.5 + - type: Transform + pos: 10.5,1.5 parent: 818 - type: Transform - uid: 703 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 818 - type: Transform - uid: 704 components: - - pos: 9.5,1.5 + - type: Transform + pos: 9.5,1.5 parent: 818 - type: Transform - uid: 714 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 818 - type: Transform - proto: ChessBoard entities: - uid: 918 components: - - pos: 12.503689,-2.3981738 + - type: Transform + pos: 12.503689,-2.3981738 parent: 818 - type: Transform - proto: ClosetWallEmergencyFilledRandom entities: - uid: 344 components: - - pos: -5.5,2.5 + - type: Transform + pos: -5.5,2.5 parent: 818 - type: Transform - proto: ClosetWallFireFilledRandom entities: - uid: 432 components: - - pos: 4.5,2.5 + - type: Transform + pos: 4.5,2.5 parent: 818 - type: Transform - proto: ComfyChair entities: - uid: 595 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 818 - type: Transform - uid: 718 components: - - pos: 12.5,-1.5 + - type: Transform + pos: 12.5,-1.5 parent: 818 - type: Transform - uid: 749 components: - - pos: 12.5,1.5 + - type: Transform + pos: 12.5,1.5 parent: 818 - type: Transform - uid: 759 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-0.5 parent: 818 - type: Transform - uid: 760 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-3.5 parent: 818 - type: Transform - proto: DisposalBend entities: - uid: 853 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-7.5 parent: 818 - type: Transform - uid: 862 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 818 - type: Transform - uid: 891 components: - - pos: 3.5,7.5 + - type: Transform + pos: 3.5,7.5 parent: 818 - type: Transform - uid: 893 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,7.5 parent: 818 - type: Transform - uid: 898 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-7.5 parent: 818 - type: Transform - uid: 899 components: - - pos: 9.5,-1.5 + - type: Transform + pos: 9.5,-1.5 parent: 818 - type: Transform - uid: 900 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 818 - type: Transform - proto: DisposalJunctionFlipped entities: - uid: 892 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,0.5 parent: 818 - type: Transform - proto: DisposalPipe entities: - uid: 854 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-7.5 parent: 818 - type: Transform - uid: 855 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-6.5 parent: 818 - type: Transform - uid: 856 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-5.5 parent: 818 - type: Transform - uid: 857 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-4.5 parent: 818 - type: Transform - uid: 858 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-3.5 parent: 818 - type: Transform - uid: 859 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-2.5 parent: 818 - type: Transform - uid: 860 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-1.5 parent: 818 - type: Transform - uid: 861 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-0.5 parent: 818 - type: Transform - uid: 863 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 818 - type: Transform - uid: 864 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,0.5 parent: 818 - type: Transform - uid: 865 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 818 - type: Transform - uid: 866 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 818 - type: Transform - uid: 867 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 818 - type: Transform - uid: 868 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 818 - type: Transform - uid: 869 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 818 - type: Transform - uid: 870 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 818 - type: Transform - uid: 871 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 818 - type: Transform - uid: 872 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 818 - type: Transform - uid: 873 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 818 - type: Transform - uid: 874 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 818 - type: Transform - uid: 875 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 818 - type: Transform - uid: 876 components: - - pos: 3.5,1.5 + - type: Transform + pos: 3.5,1.5 parent: 818 - type: Transform - uid: 877 components: - - pos: 3.5,2.5 + - type: Transform + pos: 3.5,2.5 parent: 818 - type: Transform - uid: 878 components: - - pos: 3.5,3.5 + - type: Transform + pos: 3.5,3.5 parent: 818 - type: Transform - uid: 879 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 818 - type: Transform - uid: 880 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 818 - type: Transform - uid: 881 components: - - pos: 3.5,6.5 + - type: Transform + pos: 3.5,6.5 parent: 818 - type: Transform - uid: 882 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 818 - type: Transform - uid: 883 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,7.5 parent: 818 - type: Transform - uid: 884 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,7.5 parent: 818 - type: Transform - uid: 885 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 818 - type: Transform - uid: 886 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 818 - type: Transform - uid: 887 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 818 - type: Transform - uid: 888 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 818 - type: Transform - uid: 889 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,6.5 parent: 818 - type: Transform - uid: 890 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 818 - type: Transform - uid: 901 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-7.5 parent: 818 - type: Transform - uid: 902 components: - - pos: 9.5,-6.5 + - type: Transform + pos: 9.5,-6.5 parent: 818 - type: Transform - uid: 903 components: - - pos: 9.5,-5.5 + - type: Transform + pos: 9.5,-5.5 parent: 818 - type: Transform - uid: 904 components: - - pos: 9.5,-4.5 + - type: Transform + pos: 9.5,-4.5 parent: 818 - type: Transform - uid: 905 components: - - pos: 9.5,-3.5 + - type: Transform + pos: 9.5,-3.5 parent: 818 - type: Transform - uid: 906 components: - - pos: 9.5,-2.5 + - type: Transform + pos: 9.5,-2.5 parent: 818 - type: Transform - uid: 907 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-1.5 parent: 818 - type: Transform - uid: 908 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-1.5 parent: 818 - type: Transform - uid: 909 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 818 - type: Transform - uid: 910 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-1.5 parent: 818 - type: Transform - uid: 911 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 818 - type: Transform - uid: 912 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 818 - type: Transform - proto: DisposalTrunk entities: - uid: 852 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-7.5 parent: 818 - type: Transform - uid: 894 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 818 - type: Transform - uid: 897 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 818 - type: Transform - proto: DisposalUnit entities: - uid: 851 components: - - pos: -12.5,-7.5 + - type: Transform + pos: -12.5,-7.5 parent: 818 - type: Transform - uid: 896 components: - - pos: 11.5,-7.5 + - type: Transform + pos: 11.5,-7.5 parent: 818 - type: Transform - proto: DrinkGlass entities: - uid: 915 components: - - pos: -12.587411,2.5765429 + - type: Transform + pos: -12.587411,2.5765429 parent: 818 - type: Transform - uid: 916 components: - - pos: -12.321786,2.7171679 + - type: Transform + pos: -12.321786,2.7171679 parent: 818 - type: Transform - proto: DrinkShaker entities: - uid: 914 components: - - pos: -12.649911,2.7640429 + - type: Transform + pos: -12.649911,2.7640429 parent: 818 - type: Transform - proto: ExtinguisherCabinetFilled entities: - uid: 213 components: - - pos: -6.5,-2.5 + - type: Transform + pos: -6.5,-2.5 parent: 818 - type: Transform - uid: 816 components: - - pos: 5.5,-2.5 + - type: Transform + pos: 5.5,-2.5 parent: 818 - type: Transform - proto: FirelockEdge entities: - uid: 690 components: - - pos: -8.5,-11.5 + - type: Transform + pos: -8.5,-11.5 parent: 818 - type: Transform - uid: 694 components: - - pos: -12.5,-11.5 + - type: Transform + pos: -12.5,-11.5 parent: 818 - type: Transform - uid: 695 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,-16.5 parent: 818 - type: Transform - uid: 696 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-16.5 parent: 818 - type: Transform - uid: 697 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-16.5 parent: 818 - type: Transform - uid: 698 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-16.5 parent: 818 - type: Transform - uid: 699 components: - - pos: 11.5,-11.5 + - type: Transform + pos: 11.5,-11.5 parent: 818 - type: Transform - uid: 700 components: - - pos: 7.5,-11.5 + - type: Transform + pos: 7.5,-11.5 parent: 818 - type: Transform - uid: 822 components: - - pos: 10.5,-3.5 + - type: Transform + pos: 10.5,-3.5 parent: 818 - type: Transform - uid: 823 components: - - pos: 9.5,-3.5 + - type: Transform + pos: 9.5,-3.5 parent: 818 - type: Transform - uid: 824 components: - - pos: 8.5,-3.5 + - type: Transform + pos: 8.5,-3.5 parent: 818 - type: Transform - uid: 825 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 818 - type: Transform - uid: 826 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-5.5 parent: 818 - type: Transform - uid: 827 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-5.5 parent: 818 - type: Transform - uid: 828 components: - - pos: -9.5,-3.5 + - type: Transform + pos: -9.5,-3.5 parent: 818 - type: Transform - uid: 829 components: - - pos: -10.5,-3.5 + - type: Transform + pos: -10.5,-3.5 parent: 818 - type: Transform - uid: 830 components: - - pos: -11.5,-3.5 + - type: Transform + pos: -11.5,-3.5 parent: 818 - type: Transform - uid: 831 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,-5.5 parent: 818 - type: Transform - uid: 832 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-5.5 parent: 818 - type: Transform - uid: 833 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-5.5 parent: 818 - type: Transform - proto: FirelockGlass entities: - uid: 194 components: - - pos: 5.5,0.5 + - type: Transform + pos: 5.5,0.5 parent: 818 - type: Transform - uid: 216 components: - - pos: -10.5,2.5 + - type: Transform + pos: -10.5,2.5 parent: 818 - type: Transform - uid: 220 components: - - pos: -9.5,2.5 + - type: Transform + pos: -9.5,2.5 parent: 818 - type: Transform - uid: 305 components: - - pos: -6.5,0.5 + - type: Transform + pos: -6.5,0.5 parent: 818 - type: Transform - uid: 345 components: - - pos: 5.5,-1.5 + - type: Transform + pos: 5.5,-1.5 parent: 818 - type: Transform - uid: 346 components: - - pos: 5.5,-0.5 + - type: Transform + pos: 5.5,-0.5 parent: 818 - type: Transform - uid: 347 components: - - pos: -6.5,-1.5 + - type: Transform + pos: -6.5,-1.5 parent: 818 - type: Transform - uid: 348 components: - - pos: -6.5,-0.5 + - type: Transform + pos: -6.5,-0.5 parent: 818 - type: Transform - uid: 586 components: - - pos: -11.5,2.5 + - type: Transform + pos: -11.5,2.5 parent: 818 - type: Transform - uid: 716 components: - - pos: -12.5,2.5 + - type: Transform + pos: -12.5,2.5 parent: 818 - type: Transform - proto: GeneratorBasic15kW entities: - uid: 124 components: - - pos: -4.5,8.5 + - type: Transform + pos: -4.5,8.5 parent: 818 - type: Transform - proto: GravityGeneratorMini entities: - uid: 808 components: - - pos: 1.5,8.5 + - type: Transform + pos: 1.5,8.5 parent: 818 - type: Transform - proto: Grille entities: - uid: 96 components: - - pos: -14.5,-15.5 + - type: Transform + pos: -14.5,-15.5 parent: 818 - type: Transform - uid: 97 components: - - pos: -14.5,-14.5 + - type: Transform + pos: -14.5,-14.5 parent: 818 - type: Transform - uid: 98 components: - - pos: -14.5,-13.5 + - type: Transform + pos: -14.5,-13.5 parent: 818 - type: Transform - uid: 99 components: - - pos: -6.5,-13.5 + - type: Transform + pos: -6.5,-13.5 parent: 818 - type: Transform - uid: 101 components: - - pos: 5.5,-15.5 + - type: Transform + pos: 5.5,-15.5 parent: 818 - type: Transform - uid: 102 components: - - pos: 5.5,-14.5 + - type: Transform + pos: 5.5,-14.5 parent: 818 - type: Transform - uid: 103 components: - - pos: 13.5,-15.5 + - type: Transform + pos: 13.5,-15.5 parent: 818 - type: Transform - uid: 104 components: - - pos: 13.5,-14.5 + - type: Transform + pos: 13.5,-14.5 parent: 818 - type: Transform - uid: 125 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-19.5 parent: 818 - type: Transform - uid: 126 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-20.5 parent: 818 - type: Transform - uid: 127 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-20.5 parent: 818 - type: Transform - uid: 128 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 818 - type: Transform - uid: 129 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-21.5 parent: 818 - type: Transform - uid: 130 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,-21.5 parent: 818 - type: Transform - uid: 131 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-21.5 parent: 818 - type: Transform - uid: 132 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 818 - type: Transform - uid: 133 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-20.5 parent: 818 - type: Transform - uid: 134 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-19.5 parent: 818 - type: Transform - uid: 135 components: - - pos: 5.5,-13.5 + - type: Transform + pos: 5.5,-13.5 parent: 818 - type: Transform - uid: 136 components: - - pos: 5.5,-12.5 + - type: Transform + pos: 5.5,-12.5 parent: 818 - type: Transform - uid: 137 components: - - pos: 13.5,-13.5 + - type: Transform + pos: 13.5,-13.5 parent: 818 - type: Transform - uid: 138 components: - - pos: 13.5,-12.5 + - type: Transform + pos: 13.5,-12.5 parent: 818 - type: Transform - uid: 139 components: - - pos: -14.5,-12.5 + - type: Transform + pos: -14.5,-12.5 parent: 818 - type: Transform - uid: 140 components: - - pos: -6.5,-15.5 + - type: Transform + pos: -6.5,-15.5 parent: 818 - type: Transform - uid: 141 components: - - pos: -6.5,-12.5 + - type: Transform + pos: -6.5,-12.5 parent: 818 - type: Transform - uid: 142 components: - - pos: -6.5,-14.5 + - type: Transform + pos: -6.5,-14.5 parent: 818 - type: Transform - uid: 143 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 818 - type: Transform - uid: 144 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 818 - type: Transform - uid: 145 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 818 - type: Transform - uid: 147 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 818 - type: Transform - uid: 148 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-7.5 parent: 818 - type: Transform - uid: 149 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-6.5 parent: 818 - type: Transform - uid: 151 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-8.5 parent: 818 - type: Transform - uid: 152 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 818 - type: Transform - uid: 153 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-6.5 parent: 818 - type: Transform - uid: 155 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 818 - type: Transform - uid: 156 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-7.5 parent: 818 - type: Transform - uid: 157 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 818 - type: Transform - uid: 167 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 818 - type: Transform - uid: 168 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-20.5 parent: 818 - type: Transform - uid: 169 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,-20.5 parent: 818 - type: Transform - uid: 170 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,-21.5 parent: 818 - type: Transform - uid: 171 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 818 - type: Transform - uid: 172 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-21.5 parent: 818 - type: Transform - uid: 173 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-21.5 parent: 818 - type: Transform - uid: 174 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 818 - type: Transform - uid: 175 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 818 - type: Transform - uid: 176 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 818 - type: Transform - uid: 178 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 818 - type: Transform - uid: 183 components: - - pos: -3.5,-2.5 + - type: Transform + pos: -3.5,-2.5 parent: 818 - type: Transform - uid: 184 components: - - pos: 4.5,-2.5 + - type: Transform + pos: 4.5,-2.5 parent: 818 - type: Transform - uid: 191 components: - - pos: -5.5,-2.5 + - type: Transform + pos: -5.5,-2.5 parent: 818 - type: Transform - uid: 197 components: - - pos: -4.5,-2.5 + - type: Transform + pos: -4.5,-2.5 parent: 818 - type: Transform - uid: 229 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 818 - type: Transform - uid: 233 components: - - pos: -8.5,-4.5 + - type: Transform + pos: -8.5,-4.5 parent: 818 - type: Transform - uid: 234 components: - - pos: 11.5,-4.5 + - type: Transform + pos: 11.5,-4.5 parent: 818 - type: Transform - uid: 235 components: - - pos: 7.5,-4.5 + - type: Transform + pos: 7.5,-4.5 parent: 818 - type: Transform - uid: 244 components: - - pos: -12.5,-4.5 + - type: Transform + pos: -12.5,-4.5 parent: 818 - type: Transform - uid: 276 components: - - pos: 13.5,-2.5 + - type: Transform + pos: 13.5,-2.5 parent: 818 - type: Transform - uid: 277 components: - - pos: 13.5,-1.5 + - type: Transform + pos: 13.5,-1.5 parent: 818 - type: Transform - uid: 278 components: - - pos: 13.5,-0.5 + - type: Transform + pos: 13.5,-0.5 parent: 818 - type: Transform - uid: 279 components: - - pos: 13.5,0.5 + - type: Transform + pos: 13.5,0.5 parent: 818 - type: Transform - uid: 280 components: - - pos: -14.5,-2.5 + - type: Transform + pos: -14.5,-2.5 parent: 818 - type: Transform - uid: 281 components: - - pos: -14.5,-1.5 + - type: Transform + pos: -14.5,-1.5 parent: 818 - type: Transform - uid: 282 components: - - pos: -14.5,-0.5 + - type: Transform + pos: -14.5,-0.5 parent: 818 - type: Transform - uid: 283 components: - - pos: -14.5,0.5 + - type: Transform + pos: -14.5,0.5 parent: 818 - type: Transform - uid: 318 components: - - pos: -13.5,3.5 + - type: Transform + pos: -13.5,3.5 parent: 818 - type: Transform - uid: 319 components: - - pos: -13.5,4.5 + - type: Transform + pos: -13.5,4.5 parent: 818 - type: Transform - uid: 320 components: - - pos: -12.5,4.5 + - type: Transform + pos: -12.5,4.5 parent: 818 - type: Transform - uid: 321 components: - - pos: -12.5,5.5 + - type: Transform + pos: -12.5,5.5 parent: 818 - type: Transform - uid: 322 components: - - pos: -11.5,5.5 + - type: Transform + pos: -11.5,5.5 parent: 818 - type: Transform - uid: 323 components: - - pos: -10.5,5.5 + - type: Transform + pos: -10.5,5.5 parent: 818 - type: Transform - uid: 324 components: - - pos: -9.5,5.5 + - type: Transform + pos: -9.5,5.5 parent: 818 - type: Transform - uid: 325 components: - - pos: -8.5,5.5 + - type: Transform + pos: -8.5,5.5 parent: 818 - type: Transform - uid: 326 components: - - pos: -8.5,4.5 + - type: Transform + pos: -8.5,4.5 parent: 818 - type: Transform - uid: 327 components: - - pos: -7.5,4.5 + - type: Transform + pos: -7.5,4.5 parent: 818 - type: Transform - uid: 328 components: - - pos: -7.5,3.5 + - type: Transform + pos: -7.5,3.5 parent: 818 - type: Transform - uid: 329 components: - - pos: 6.5,3.5 + - type: Transform + pos: 6.5,3.5 parent: 818 - type: Transform - uid: 330 components: - - pos: 6.5,4.5 + - type: Transform + pos: 6.5,4.5 parent: 818 - type: Transform - uid: 331 components: - - pos: 7.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 818 - type: Transform - uid: 332 components: - - pos: 7.5,5.5 + - type: Transform + pos: 7.5,5.5 parent: 818 - type: Transform - uid: 333 components: - - pos: 8.5,5.5 + - type: Transform + pos: 8.5,5.5 parent: 818 - type: Transform - uid: 334 components: - - pos: 9.5,5.5 + - type: Transform + pos: 9.5,5.5 parent: 818 - type: Transform - uid: 335 components: - - pos: 10.5,5.5 + - type: Transform + pos: 10.5,5.5 parent: 818 - type: Transform - uid: 336 components: - - pos: 11.5,5.5 + - type: Transform + pos: 11.5,5.5 parent: 818 - type: Transform - uid: 337 components: - - pos: 11.5,4.5 + - type: Transform + pos: 11.5,4.5 parent: 818 - type: Transform - uid: 338 components: - - pos: 12.5,4.5 + - type: Transform + pos: 12.5,4.5 parent: 818 - type: Transform - uid: 339 components: - - pos: 12.5,3.5 + - type: Transform + pos: 12.5,3.5 parent: 818 - type: Transform - proto: PaperBin10 entities: - uid: 737 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 818 - type: Transform - proto: PosterLegitCohibaRobustoAd entities: - uid: 927 components: - - pos: -6.5,1.5 + - type: Transform + pos: -6.5,1.5 parent: 818 - type: Transform - proto: PosterLegitEnlist entities: - uid: 926 components: - - pos: -14.5,1.5 + - type: Transform + pos: -14.5,1.5 parent: 818 - type: Transform - proto: PosterLegitHighClassMartini entities: - uid: 925 components: - - pos: -6.5,-3.5 + - type: Transform + pos: -6.5,-3.5 parent: 818 - type: Transform - proto: PosterLegitJustAWeekAway entities: - uid: 821 components: - - pos: 5.5,1.5 + - type: Transform + pos: 5.5,1.5 parent: 818 - type: Transform - proto: PosterLegitNanomichiAd entities: - uid: 820 components: - - pos: -4.5,3.5 + - type: Transform + pos: -4.5,3.5 parent: 818 - type: Transform - proto: PosterLegitNanotrasenLogo entities: - uid: 246 components: - - pos: -7.5,-11.5 + - type: Transform + pos: -7.5,-11.5 parent: 818 - type: Transform - uid: 247 components: - - pos: -13.5,-4.5 + - type: Transform + pos: -13.5,-4.5 parent: 818 - type: Transform - uid: 248 components: - - pos: 12.5,-4.5 + - type: Transform + pos: 12.5,-4.5 parent: 818 - type: Transform - uid: 249 components: - - pos: 6.5,-16.5 + - type: Transform + pos: 6.5,-16.5 parent: 818 - type: Transform - uid: 250 components: - - pos: -13.5,-16.5 + - type: Transform + pos: -13.5,-16.5 parent: 818 - type: Transform - uid: 251 components: - - pos: 12.5,-11.5 + - type: Transform + pos: 12.5,-11.5 parent: 818 - type: Transform - uid: 922 components: - - pos: -0.5,6.5 + - type: Transform + pos: -0.5,6.5 parent: 818 - type: Transform - proto: PosterLegitNTTGC entities: - uid: 924 components: - - pos: 5.5,-3.5 + - type: Transform + pos: 5.5,-3.5 parent: 818 - type: Transform - proto: PosterLegitPDAAd entities: - uid: 920 components: - - pos: 12.5,-16.5 + - type: Transform + pos: 12.5,-16.5 parent: 818 - type: Transform - proto: PosterLegitVacation entities: - uid: 921 components: - - pos: -7.5,-16.5 + - type: Transform + pos: -7.5,-16.5 parent: 818 - type: Transform - proto: PosterLegitWorkForAFuture entities: - uid: 923 components: - - pos: 12.5,2.5 + - type: Transform + pos: 12.5,2.5 parent: 818 - type: Transform - proto: PottedPlantRandom entities: - uid: 236 components: - - pos: 7.5,-19.5 + - type: Transform + pos: 7.5,-19.5 parent: 818 - type: Transform - uid: 237 components: - - pos: -12.5,-19.5 + - type: Transform + pos: -12.5,-19.5 parent: 818 - type: Transform - uid: 238 components: - - pos: 11.5,-19.5 + - type: Transform + pos: 11.5,-19.5 parent: 818 - type: Transform - uid: 239 components: - - pos: -8.5,-19.5 + - type: Transform + pos: -8.5,-19.5 parent: 818 - type: Transform - uid: 733 components: - - pos: -8.5,-5.5 + - type: Transform + pos: -8.5,-5.5 parent: 818 - type: Transform - uid: 741 components: - - pos: -7.5,-3.5 + - type: Transform + pos: -7.5,-3.5 parent: 818 - type: Transform - proto: PottedPlantRandomPlastic entities: - uid: 708 components: - - pos: -13.5,1.5 + - type: Transform + pos: -13.5,1.5 parent: 818 - type: Transform - uid: 755 components: - - pos: -13.5,-3.5 + - type: Transform + pos: -13.5,-3.5 parent: 818 - type: Transform - proto: Poweredlight entities: - uid: 150 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-5.5 parent: 818 - type: Transform - uid: 188 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 818 - type: Transform - uid: 195 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 818 - type: Transform - uid: 209 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-5.5 parent: 818 - type: Transform - uid: 341 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 818 - type: Transform - uid: 634 components: - - pos: 9.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-16.5 parent: 818 - type: Transform - uid: 636 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-11.5 parent: 818 - type: Transform - uid: 649 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-11.5 parent: 818 - type: Transform - uid: 650 components: - - pos: -10.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-16.5 parent: 818 - type: Transform - uid: 687 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,1.5 parent: 818 - type: Transform - uid: 701 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,3.5 parent: 818 - type: Transform - uid: 702 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,3.5 parent: 818 - type: Transform - uid: 715 components: - - pos: -0.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,5.5 parent: 818 - type: Transform - uid: 717 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 818 - type: Transform - uid: 742 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 818 - type: Transform - proto: RandomSpawner entities: - uid: 895 components: - - pos: -4.5,4.5 + - type: Transform + pos: -4.5,4.5 parent: 818 - type: Transform - proto: RandomVending entities: - uid: 835 components: - - pos: 9.5,-20.5 + - type: Transform + pos: 9.5,-20.5 parent: 818 - type: Transform - uid: 836 components: - - pos: -10.5,-20.5 + - type: Transform + pos: -10.5,-20.5 parent: 818 - type: Transform - proto: RandomVendingDrinks entities: - uid: 692 components: - - pos: 11.5,-5.5 + - type: Transform + pos: 11.5,-5.5 parent: 818 - type: Transform - proto: RandomVendingSnacks entities: - uid: 834 components: - - pos: 11.5,-6.5 + - type: Transform + pos: 11.5,-6.5 parent: 818 - type: Transform - proto: ReinforcedWindow entities: - uid: 19 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-20.5 parent: 818 - type: Transform - uid: 20 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-20.5 parent: 818 - type: Transform - uid: 21 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 818 - type: Transform - uid: 22 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-21.5 parent: 818 - type: Transform - uid: 24 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-19.5 parent: 818 - type: Transform - uid: 25 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,-21.5 parent: 818 - type: Transform - uid: 26 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-21.5 parent: 818 - type: Transform - uid: 27 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 818 - type: Transform - uid: 28 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-20.5 parent: 818 - type: Transform - uid: 29 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-19.5 parent: 818 - type: Transform - uid: 30 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-21.5 parent: 818 - type: Transform - uid: 31 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-21.5 parent: 818 - type: Transform - uid: 32 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 818 - type: Transform - uid: 33 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 818 - type: Transform - uid: 34 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 818 - type: Transform - uid: 35 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 818 - type: Transform - uid: 36 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,-21.5 parent: 818 - type: Transform - uid: 37 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,-20.5 parent: 818 - type: Transform - uid: 38 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-20.5 parent: 818 - type: Transform - uid: 39 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 818 - type: Transform - uid: 91 components: - - pos: -14.5,-12.5 + - type: Transform + pos: -14.5,-12.5 parent: 818 - type: Transform - uid: 93 components: - - pos: -14.5,-14.5 + - type: Transform + pos: -14.5,-14.5 parent: 818 - type: Transform - uid: 94 components: - - pos: -6.5,-13.5 + - type: Transform + pos: -6.5,-13.5 parent: 818 - type: Transform - uid: 95 components: - - pos: -6.5,-12.5 + - type: Transform + pos: -6.5,-12.5 parent: 818 - type: Transform - uid: 100 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 818 - type: Transform - uid: 105 components: - - pos: 5.5,-12.5 + - type: Transform + pos: 5.5,-12.5 parent: 818 - type: Transform - uid: 106 components: - - pos: 5.5,-14.5 + - type: Transform + pos: 5.5,-14.5 parent: 818 - type: Transform - uid: 107 components: - - pos: 13.5,-12.5 + - type: Transform + pos: 13.5,-12.5 parent: 818 - type: Transform - uid: 108 components: - - pos: 13.5,-13.5 + - type: Transform + pos: 13.5,-13.5 parent: 818 - type: Transform - uid: 109 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-8.5 parent: 818 - type: Transform - uid: 110 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 818 - type: Transform - uid: 111 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-6.5 parent: 818 - type: Transform - uid: 113 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 818 - type: Transform - uid: 115 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-7.5 parent: 818 - type: Transform - uid: 116 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 818 - type: Transform - uid: 117 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 818 - type: Transform - uid: 118 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 818 - type: Transform - uid: 121 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 818 - type: Transform - uid: 122 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-7.5 parent: 818 - type: Transform - uid: 123 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-6.5 parent: 818 - type: Transform - uid: 159 components: - - pos: -14.5,-13.5 + - type: Transform + pos: -14.5,-13.5 parent: 818 - type: Transform - uid: 160 components: - - pos: -14.5,-15.5 + - type: Transform + pos: -14.5,-15.5 parent: 818 - type: Transform - uid: 161 components: - - pos: -6.5,-14.5 + - type: Transform + pos: -6.5,-14.5 parent: 818 - type: Transform - uid: 162 components: - - pos: -6.5,-15.5 + - type: Transform + pos: -6.5,-15.5 parent: 818 - type: Transform - uid: 163 components: - - pos: 5.5,-13.5 + - type: Transform + pos: 5.5,-13.5 parent: 818 - type: Transform - uid: 164 components: - - pos: 13.5,-15.5 + - type: Transform + pos: 13.5,-15.5 parent: 818 - type: Transform - uid: 165 components: - - pos: 5.5,-15.5 + - type: Transform + pos: 5.5,-15.5 parent: 818 - type: Transform - uid: 166 components: - - pos: 13.5,-14.5 + - type: Transform + pos: 13.5,-14.5 parent: 818 - type: Transform - uid: 185 components: - - pos: -5.5,-2.5 + - type: Transform + pos: -5.5,-2.5 parent: 818 - type: Transform - uid: 186 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 818 - type: Transform - uid: 192 components: - - pos: 4.5,-2.5 + - type: Transform + pos: 4.5,-2.5 parent: 818 - type: Transform - uid: 196 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 818 - type: Transform - uid: 198 components: - - pos: -3.5,-2.5 + - type: Transform + pos: -3.5,-2.5 parent: 818 - type: Transform - uid: 232 components: - - pos: -4.5,-2.5 + - type: Transform + pos: -4.5,-2.5 parent: 818 - type: Transform - uid: 240 components: - - pos: -12.5,-4.5 + - type: Transform + pos: -12.5,-4.5 parent: 818 - type: Transform - uid: 241 components: - - pos: 11.5,-4.5 + - type: Transform + pos: 11.5,-4.5 parent: 818 - type: Transform - uid: 242 components: - - pos: 7.5,-4.5 + - type: Transform + pos: 7.5,-4.5 parent: 818 - type: Transform - uid: 243 components: - - pos: -8.5,-4.5 + - type: Transform + pos: -8.5,-4.5 parent: 818 - type: Transform - uid: 268 components: - - pos: -14.5,-2.5 + - type: Transform + pos: -14.5,-2.5 parent: 818 - type: Transform - uid: 269 components: - - pos: -14.5,-1.5 + - type: Transform + pos: -14.5,-1.5 parent: 818 - type: Transform - uid: 270 components: - - pos: -14.5,-0.5 + - type: Transform + pos: -14.5,-0.5 parent: 818 - type: Transform - uid: 271 components: - - pos: -14.5,0.5 + - type: Transform + pos: -14.5,0.5 parent: 818 - type: Transform - uid: 272 components: - - pos: 13.5,-2.5 + - type: Transform + pos: 13.5,-2.5 parent: 818 - type: Transform - uid: 273 components: - - pos: 13.5,-1.5 + - type: Transform + pos: 13.5,-1.5 parent: 818 - type: Transform - uid: 274 components: - - pos: 13.5,-0.5 + - type: Transform + pos: 13.5,-0.5 parent: 818 - type: Transform - uid: 275 components: - - pos: 13.5,0.5 + - type: Transform + pos: 13.5,0.5 parent: 818 - type: Transform - uid: 284 components: - - pos: -13.5,4.5 + - type: Transform + pos: -13.5,4.5 parent: 818 - type: Transform - uid: 285 components: - - pos: -12.5,4.5 + - type: Transform + pos: -12.5,4.5 parent: 818 - type: Transform - uid: 286 components: - - pos: -10.5,5.5 + - type: Transform + pos: -10.5,5.5 parent: 818 - type: Transform - uid: 287 components: - - pos: -11.5,5.5 + - type: Transform + pos: -11.5,5.5 parent: 818 - type: Transform - uid: 288 components: - - pos: -8.5,4.5 + - type: Transform + pos: -8.5,4.5 parent: 818 - type: Transform - uid: 289 components: - - pos: -8.5,5.5 + - type: Transform + pos: -8.5,5.5 parent: 818 - type: Transform - uid: 290 components: - - pos: -12.5,5.5 + - type: Transform + pos: -12.5,5.5 parent: 818 - type: Transform - uid: 291 components: - - pos: -13.5,3.5 + - type: Transform + pos: -13.5,3.5 parent: 818 - type: Transform - uid: 292 components: - - pos: -9.5,5.5 + - type: Transform + pos: -9.5,5.5 parent: 818 - type: Transform - uid: 293 components: - - pos: 6.5,3.5 + - type: Transform + pos: 6.5,3.5 parent: 818 - type: Transform - uid: 294 components: - - pos: -7.5,3.5 + - type: Transform + pos: -7.5,3.5 parent: 818 - type: Transform - uid: 295 components: - - pos: -7.5,4.5 + - type: Transform + pos: -7.5,4.5 parent: 818 - type: Transform - uid: 308 components: - - pos: 6.5,4.5 + - type: Transform + pos: 6.5,4.5 parent: 818 - type: Transform - uid: 309 components: - - pos: 7.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 818 - type: Transform - uid: 310 components: - - pos: 7.5,5.5 + - type: Transform + pos: 7.5,5.5 parent: 818 - type: Transform - uid: 311 components: - - pos: 8.5,5.5 + - type: Transform + pos: 8.5,5.5 parent: 818 - type: Transform - uid: 312 components: - - pos: 9.5,5.5 + - type: Transform + pos: 9.5,5.5 parent: 818 - type: Transform - uid: 313 components: - - pos: 10.5,5.5 + - type: Transform + pos: 10.5,5.5 parent: 818 - type: Transform - uid: 314 components: - - pos: 11.5,5.5 + - type: Transform + pos: 11.5,5.5 parent: 818 - type: Transform - uid: 315 components: - - pos: 11.5,4.5 + - type: Transform + pos: 11.5,4.5 parent: 818 - type: Transform - uid: 316 components: - - pos: 12.5,4.5 + - type: Transform + pos: 12.5,4.5 parent: 818 - type: Transform - uid: 317 components: - - pos: 12.5,3.5 + - type: Transform + pos: 12.5,3.5 parent: 818 - type: Transform - proto: SignNanotrasen1 entities: - uid: 721 components: - - pos: -2.5,-2.5 + - type: Transform + pos: -2.5,-2.5 parent: 818 - type: Transform - proto: SignNanotrasen2 entities: - uid: 722 components: - - pos: -1.5,-2.5 + - type: Transform + pos: -1.5,-2.5 parent: 818 - type: Transform - proto: SignNanotrasen3 entities: - uid: 719 components: - - pos: -0.5,-2.5 + - type: Transform + pos: -0.5,-2.5 parent: 818 - type: Transform - proto: SignNanotrasen4 entities: - uid: 801 components: - - pos: 0.5,-2.5 + - type: Transform + pos: 0.5,-2.5 parent: 818 - type: Transform - proto: SignNanotrasen5 entities: - uid: 802 components: - - pos: 1.5,-2.5 + - type: Transform + pos: 1.5,-2.5 parent: 818 - type: Transform - proto: SignNosmoking entities: - uid: 720 components: - - pos: -7.5,2.5 + - type: Transform + pos: -7.5,2.5 parent: 818 - type: Transform - proto: SignShipDock entities: - uid: 200 components: - - pos: 6.5,-4.5 + - type: Transform + pos: 6.5,-4.5 parent: 818 - type: Transform - uid: 245 components: - - pos: -7.5,-4.5 + - type: Transform + pos: -7.5,-4.5 parent: 818 - type: Transform - proto: SignSpace entities: - uid: 571 components: - - pos: 12.5,-18.5 + - type: Transform + pos: 12.5,-18.5 parent: 818 - type: Transform - uid: 640 components: - - pos: -7.5,-18.5 + - type: Transform + pos: -7.5,-18.5 parent: 818 - type: Transform - uid: 688 components: - - pos: -13.5,-18.5 + - type: Transform + pos: -13.5,-18.5 parent: 818 - type: Transform - uid: 689 components: - - pos: -7.5,-9.5 + - type: Transform + pos: -7.5,-9.5 parent: 818 - type: Transform - uid: 691 components: - - pos: -13.5,-9.5 + - type: Transform + pos: -13.5,-9.5 parent: 818 - type: Transform - uid: 705 components: - - pos: 12.5,-9.5 + - type: Transform + pos: 12.5,-9.5 parent: 818 - type: Transform - uid: 709 components: - - pos: 6.5,-9.5 + - type: Transform + pos: 6.5,-9.5 parent: 818 - type: Transform - uid: 817 components: - - pos: 6.5,-18.5 + - type: Transform + pos: 6.5,-18.5 parent: 818 - type: Transform - uid: 819 components: - - pos: 4.5,7.5 + - type: Transform + pos: 4.5,7.5 parent: 818 - type: Transform - proto: SinkWide entities: - uid: 913 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,3.5 parent: 818 - type: Transform - proto: SmallLight entities: - uid: 598 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,2.5 parent: 818 - type: Transform - uid: 641 components: - - pos: -14.5,-17.5 + - type: Transform + pos: -14.5,-17.5 parent: 818 - type: Transform - uid: 642 components: - - pos: -6.5,-17.5 + - type: Transform + pos: -6.5,-17.5 parent: 818 - type: Transform - uid: 643 components: - - pos: -14.5,-10.5 + - type: Transform + pos: -14.5,-10.5 parent: 818 - type: Transform - uid: 644 components: - - pos: -6.5,-10.5 + - type: Transform + pos: -6.5,-10.5 parent: 818 - type: Transform - uid: 645 components: - - pos: 5.5,-10.5 + - type: Transform + pos: 5.5,-10.5 parent: 818 - type: Transform - uid: 646 components: - - pos: 13.5,-10.5 + - type: Transform + pos: 13.5,-10.5 parent: 818 - type: Transform - uid: 647 components: - - pos: 13.5,-17.5 + - type: Transform + pos: 13.5,-17.5 parent: 818 - type: Transform - uid: 648 components: - - pos: 5.5,-17.5 + - type: Transform + pos: 5.5,-17.5 parent: 818 - type: Transform - uid: 917 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,7.5 parent: 818 - type: Transform - proto: SMESBasic entities: - uid: 805 components: - - pos: -2.5,8.5 + - type: Transform + pos: -2.5,8.5 parent: 818 - type: Transform - proto: soda_dispenser entities: - uid: 795 components: - - pos: -10.5,4.5 + - type: Transform + pos: -10.5,4.5 parent: 818 - type: Transform - proto: SpaceVillainArcadeFilled entities: - uid: 731 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-2.5 parent: 818 - type: Transform - uid: 732 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-0.5 parent: 818 - type: Transform - proto: SpawnPointLatejoin entities: - uid: 763 components: - - pos: -7.5,-15.5 + - type: Transform + pos: -7.5,-15.5 parent: 818 - type: Transform - uid: 764 components: - - pos: -7.5,-14.5 + - type: Transform + pos: -7.5,-14.5 parent: 818 - type: Transform - uid: 765 components: - - pos: -7.5,-13.5 + - type: Transform + pos: -7.5,-13.5 parent: 818 - type: Transform - uid: 766 components: - - pos: -7.5,-12.5 + - type: Transform + pos: -7.5,-12.5 parent: 818 - type: Transform - uid: 767 components: - - pos: -9.5,-15.5 + - type: Transform + pos: -9.5,-15.5 parent: 818 - type: Transform - uid: 768 components: - - pos: -9.5,-14.5 + - type: Transform + pos: -9.5,-14.5 parent: 818 - type: Transform - uid: 769 components: - - pos: -9.5,-13.5 + - type: Transform + pos: -9.5,-13.5 parent: 818 - type: Transform - uid: 770 components: - - pos: -9.5,-12.5 + - type: Transform + pos: -9.5,-12.5 parent: 818 - type: Transform - uid: 771 components: - - pos: -11.5,-15.5 + - type: Transform + pos: -11.5,-15.5 parent: 818 - type: Transform - uid: 772 components: - - pos: -11.5,-14.5 + - type: Transform + pos: -11.5,-14.5 parent: 818 - type: Transform - uid: 773 components: - - pos: -11.5,-13.5 + - type: Transform + pos: -11.5,-13.5 parent: 818 - type: Transform - uid: 774 components: - - pos: -11.5,-12.5 + - type: Transform + pos: -11.5,-12.5 parent: 818 - type: Transform - uid: 775 components: - - pos: -13.5,-15.5 + - type: Transform + pos: -13.5,-15.5 parent: 818 - type: Transform - uid: 776 components: - - pos: -13.5,-14.5 + - type: Transform + pos: -13.5,-14.5 parent: 818 - type: Transform - uid: 777 components: - - pos: -13.5,-13.5 + - type: Transform + pos: -13.5,-13.5 parent: 818 - type: Transform - uid: 778 components: - - pos: -13.5,-12.5 + - type: Transform + pos: -13.5,-12.5 parent: 818 - type: Transform - uid: 779 components: - - pos: 6.5,-15.5 + - type: Transform + pos: 6.5,-15.5 parent: 818 - type: Transform - uid: 780 components: - - pos: 6.5,-14.5 + - type: Transform + pos: 6.5,-14.5 parent: 818 - type: Transform - uid: 781 components: - - pos: 6.5,-13.5 + - type: Transform + pos: 6.5,-13.5 parent: 818 - type: Transform - uid: 782 components: - - pos: 6.5,-12.5 + - type: Transform + pos: 6.5,-12.5 parent: 818 - type: Transform - uid: 783 components: - - pos: 8.5,-15.5 + - type: Transform + pos: 8.5,-15.5 parent: 818 - type: Transform - uid: 784 components: - - pos: 8.5,-14.5 + - type: Transform + pos: 8.5,-14.5 parent: 818 - type: Transform - uid: 785 components: - - pos: 8.5,-13.5 + - type: Transform + pos: 8.5,-13.5 parent: 818 - type: Transform - uid: 786 components: - - pos: 8.5,-12.5 + - type: Transform + pos: 8.5,-12.5 parent: 818 - type: Transform - uid: 787 components: - - pos: 10.5,-15.5 + - type: Transform + pos: 10.5,-15.5 parent: 818 - type: Transform - uid: 788 components: - - pos: 10.5,-14.5 + - type: Transform + pos: 10.5,-14.5 parent: 818 - type: Transform - uid: 789 components: - - pos: 10.5,-13.5 + - type: Transform + pos: 10.5,-13.5 parent: 818 - type: Transform - uid: 790 components: - - pos: 10.5,-12.5 + - type: Transform + pos: 10.5,-12.5 parent: 818 - type: Transform - uid: 791 components: - - pos: 12.5,-15.5 + - type: Transform + pos: 12.5,-15.5 parent: 818 - type: Transform - uid: 792 components: - - pos: 12.5,-14.5 + - type: Transform + pos: 12.5,-14.5 parent: 818 - type: Transform - uid: 793 components: - - pos: 12.5,-13.5 + - type: Transform + pos: 12.5,-13.5 parent: 818 - type: Transform - uid: 794 components: - - pos: 12.5,-12.5 + - type: Transform + pos: 12.5,-12.5 parent: 818 - type: Transform - proto: SS13Memorial entities: - uid: 594 components: - - pos: -0.5,4.5 + - type: Transform + pos: -0.5,4.5 parent: 818 - type: Transform - proto: Stool entities: - uid: 119 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,-20.5 parent: 818 - type: Transform - uid: 639 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-20.5 parent: 818 - type: Transform - uid: 723 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-20.5 parent: 818 - type: Transform - uid: 724 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-20.5 parent: 818 - type: Transform - uid: 729 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-1.5 parent: 818 - type: Transform - uid: 730 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-2.5 parent: 818 - type: Transform - uid: 738 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-0.5 parent: 818 - type: Transform - uid: 740 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,0.5 parent: 818 - type: Transform - proto: StoolBar entities: - uid: 230 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,1.5 parent: 818 - type: Transform - uid: 342 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,1.5 parent: 818 - type: Transform - uid: 433 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,1.5 parent: 818 - type: Transform - proto: SubstationBasic entities: - uid: 807 components: - - pos: -0.5,8.5 + - type: Transform + pos: -0.5,8.5 parent: 818 - type: Transform - proto: TableCarpet entities: - uid: 572 components: - - pos: 9.5,0.5 + - type: Transform + pos: 9.5,0.5 parent: 818 - type: Transform - uid: 573 components: - - pos: 9.5,-0.5 + - type: Transform + pos: 9.5,-0.5 parent: 818 - type: Transform - uid: 574 components: - - pos: 10.5,-0.5 + - type: Transform + pos: 10.5,-0.5 parent: 818 - type: Transform - uid: 576 components: - - pos: 10.5,0.5 + - type: Transform + pos: 10.5,0.5 parent: 818 - type: Transform - proto: TableReinforced entities: - uid: 585 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 818 - type: Transform - uid: 707 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,4.5 parent: 818 - type: Transform - uid: 751 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,4.5 parent: 818 - type: Transform - uid: 796 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,2.5 parent: 818 - type: Transform - uid: 797 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,2.5 parent: 818 - type: Transform - uid: 798 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,2.5 parent: 818 - type: Transform - proto: TableWood entities: - uid: 441 components: - - pos: 12.5,0.5 + - type: Transform + pos: 12.5,0.5 parent: 818 - type: Transform - uid: 575 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 818 - type: Transform - uid: 587 components: - - pos: 12.5,-2.5 + - type: Transform + pos: 12.5,-2.5 parent: 818 - type: Transform - uid: 706 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 818 - type: Transform - uid: 750 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 818 - type: Transform - uid: 756 components: - - pos: 8.5,4.5 + - type: Transform + pos: 8.5,4.5 parent: 818 - type: Transform - proto: TelecomServerFilled entities: - uid: 919 components: - - pos: -1.5,8.5 + - type: Transform + pos: -1.5,8.5 parent: 818 - type: Transform - proto: VendingMachineBooze entities: - uid: 753 components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,4.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -9.5,4.5 parent: 818 - type: Transform - proto: VendingMachineCigs entities: - uid: 744 components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,1.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -7.5,1.5 parent: 818 - type: Transform - proto: VendingMachineCola entities: - uid: 635 components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-5.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -12.5,-5.5 parent: 818 - type: Transform - proto: VendingMachineGames entities: - uid: 748 components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,1.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 6.5,1.5 parent: 818 - type: Transform - proto: VendingMachineSnack entities: - uid: 637 components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-6.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -12.5,-6.5 parent: 818 - type: Transform - proto: WallRiveted entities: - uid: 10 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 818 - type: Transform - uid: 23 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-21.5 parent: 818 - type: Transform - uid: 40 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-21.5 parent: 818 - type: Transform - uid: 41 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-18.5 parent: 818 - type: Transform - uid: 42 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-18.5 parent: 818 - type: Transform - uid: 43 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,-18.5 parent: 818 - type: Transform - uid: 44 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-18.5 parent: 818 - type: Transform - uid: 45 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,-18.5 parent: 818 - type: Transform - uid: 46 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-18.5 parent: 818 - type: Transform - uid: 47 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-18.5 parent: 818 - type: Transform - uid: 48 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-18.5 parent: 818 - type: Transform - uid: 49 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-18.5 parent: 818 - type: Transform - uid: 50 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 818 - type: Transform - uid: 51 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-18.5 parent: 818 - type: Transform - uid: 52 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-18.5 parent: 818 - type: Transform - uid: 53 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-9.5 parent: 818 - type: Transform - uid: 54 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-9.5 parent: 818 - type: Transform - uid: 55 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-9.5 parent: 818 - type: Transform - uid: 56 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 818 - type: Transform - uid: 57 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 818 - type: Transform - uid: 58 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 818 - type: Transform - uid: 59 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 818 - type: Transform - uid: 60 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 818 - type: Transform - uid: 61 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-11.5 parent: 818 - type: Transform - uid: 62 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-11.5 parent: 818 - type: Transform - uid: 63 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-11.5 parent: 818 - type: Transform - uid: 64 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-11.5 parent: 818 - type: Transform - uid: 65 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-16.5 parent: 818 - type: Transform - uid: 66 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-16.5 parent: 818 - type: Transform - uid: 67 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-16.5 parent: 818 - type: Transform - uid: 68 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-16.5 parent: 818 - type: Transform - uid: 69 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 818 - type: Transform - uid: 70 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-16.5 parent: 818 - type: Transform - uid: 71 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-16.5 parent: 818 - type: Transform - uid: 72 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,-16.5 parent: 818 - type: Transform - uid: 73 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-16.5 parent: 818 - type: Transform - uid: 74 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-11.5 parent: 818 - type: Transform - uid: 75 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,-11.5 parent: 818 - type: Transform - uid: 76 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-11.5 parent: 818 - type: Transform - uid: 77 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-9.5 parent: 818 - type: Transform - uid: 78 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,-9.5 parent: 818 - type: Transform - uid: 79 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-9.5 parent: 818 - type: Transform - uid: 80 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 818 - type: Transform - uid: 81 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-9.5 parent: 818 - type: Transform - uid: 82 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,-9.5 parent: 818 - type: Transform - uid: 83 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-11.5 parent: 818 - type: Transform - uid: 84 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-11.5 parent: 818 - type: Transform - uid: 85 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,-11.5 parent: 818 - type: Transform - uid: 86 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-16.5 parent: 818 - type: Transform - uid: 87 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-16.5 parent: 818 - type: Transform - uid: 88 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,-16.5 parent: 818 - type: Transform - uid: 89 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-4.5 parent: 818 - type: Transform - uid: 90 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-4.5 parent: 818 - type: Transform - uid: 92 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 818 - type: Transform - uid: 112 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 818 - type: Transform - uid: 114 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-5.5 parent: 818 - type: Transform - uid: 120 components: - - pos: 5.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,1.5 parent: 818 - type: Transform - uid: 154 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-5.5 parent: 818 - type: Transform - uid: 158 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-5.5 parent: 818 - type: Transform - uid: 179 components: - - pos: -2.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-2.5 parent: 818 - type: Transform - uid: 180 components: - - pos: 5.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-3.5 parent: 818 - type: Transform - uid: 182 components: - - pos: 1.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-2.5 parent: 818 - type: Transform - uid: 187 components: - - pos: -6.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-2.5 parent: 818 - type: Transform - uid: 189 components: - - pos: 5.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-4.5 parent: 818 - type: Transform - uid: 190 components: - - pos: 1.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,9.5 parent: 818 - type: Transform - uid: 193 components: - - pos: 5.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-2.5 parent: 818 - type: Transform - uid: 199 components: - - pos: -6.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-4.5 parent: 818 - type: Transform - uid: 202 components: - - pos: -6.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,1.5 parent: 818 - type: Transform - uid: 207 components: - - pos: -6.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-3.5 parent: 818 - type: Transform - uid: 217 components: - - pos: -4.5,3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,3.5 parent: 818 - type: Transform - uid: 222 components: - - pos: -2.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,9.5 parent: 818 - type: Transform - uid: 223 components: - - pos: -0.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,9.5 parent: 818 - type: Transform - uid: 225 components: - - pos: -1.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,9.5 parent: 818 - type: Transform - uid: 231 components: - - pos: -4.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,9.5 parent: 818 - type: Transform - uid: 258 components: - - pos: -14.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-4.5 parent: 818 - type: Transform - uid: 259 components: - - pos: 13.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-3.5 parent: 818 - type: Transform - uid: 260 components: - - pos: 13.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-4.5 parent: 818 - type: Transform - uid: 261 components: - - pos: -14.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-3.5 parent: 818 - type: Transform - uid: 262 components: - - pos: 13.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,1.5 parent: 818 - type: Transform - uid: 263 components: - - pos: 13.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,2.5 parent: 818 - type: Transform - uid: 264 components: - - pos: 12.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,2.5 parent: 818 - type: Transform - uid: 265 components: - - pos: -14.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,1.5 parent: 818 - type: Transform - uid: 266 components: - - pos: -14.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,2.5 parent: 818 - type: Transform - uid: 267 components: - - pos: -13.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,2.5 parent: 818 - type: Transform - uid: 304 components: - - pos: -7.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,2.5 parent: 818 - type: Transform - uid: 306 components: - - pos: -6.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,2.5 parent: 818 - type: Transform - uid: 307 components: - - pos: 6.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,2.5 parent: 818 - type: Transform - uid: 340 components: - - pos: 5.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,2.5 parent: 818 - type: Transform - uid: 343 components: - - pos: 0.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,9.5 parent: 818 - type: Transform - uid: 351 components: - - pos: -3.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,9.5 parent: 818 - type: Transform - uid: 401 components: - - pos: -5.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,2.5 parent: 818 - type: Transform - uid: 403 components: - - pos: 4.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,9.5 parent: 818 - type: Transform - uid: 405 components: - - pos: -1.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,6.5 parent: 818 - type: Transform - uid: 406 components: - - pos: 4.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,2.5 parent: 818 - type: Transform - uid: 407 components: - - pos: 2.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,6.5 parent: 818 - type: Transform - uid: 408 components: - - pos: 2.5,4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,4.5 parent: 818 - type: Transform - uid: 409 components: - - pos: 2.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,5.5 parent: 818 - type: Transform - uid: 414 components: - - pos: 3.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,9.5 parent: 818 - type: Transform - uid: 420 components: - - pos: 2.5,3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,3.5 parent: 818 - type: Transform - uid: 578 components: - - pos: -3.5,3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,3.5 parent: 818 - type: Transform - uid: 581 components: - - pos: -3.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,5.5 parent: 818 - type: Transform - uid: 582 components: - - pos: -3.5,4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,4.5 parent: 818 - type: Transform - uid: 583 components: - - pos: -3.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,6.5 parent: 818 - type: Transform - uid: 588 components: - - pos: -2.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,6.5 parent: 818 - type: Transform - uid: 602 components: - - pos: 0.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,6.5 parent: 818 - type: Transform - uid: 693 components: - - pos: 1.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,6.5 parent: 818 - type: Transform - uid: 711 components: - - pos: -1.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-2.5 parent: 818 - type: Transform - uid: 712 components: - - pos: -0.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-2.5 parent: 818 - type: Transform - uid: 713 components: - - pos: 0.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-2.5 parent: 818 - type: Transform - uid: 725 components: - - pos: -5.5,4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,4.5 parent: 818 - type: Transform - uid: 726 components: - - pos: -5.5,3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,3.5 parent: 818 - type: Transform - uid: 736 components: - - pos: -5.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,5.5 parent: 818 - type: Transform - uid: 739 components: - - pos: -5.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,6.5 parent: 818 - type: Transform - uid: 743 components: - - pos: -5.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,7.5 parent: 818 - type: Transform - uid: 745 components: - - pos: -5.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,8.5 parent: 818 - type: Transform - uid: 746 components: - - pos: 2.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,9.5 parent: 818 - type: Transform - uid: 754 components: - - pos: 4.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,7.5 parent: 818 - type: Transform - uid: 757 components: - - pos: 4.5,3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,3.5 parent: 818 - type: Transform - uid: 758 components: - - pos: 4.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,6.5 parent: 818 - type: Transform - uid: 762 components: - - pos: 4.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,5.5 parent: 818 - type: Transform - uid: 799 components: - - pos: 4.5,4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,4.5 parent: 818 - type: Transform - uid: 800 components: - - pos: -5.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,9.5 parent: 818 - type: Transform - uid: 804 components: - - pos: -0.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,6.5 parent: 818 - type: Transform - proto: WarpPoint entities: - uid: 638 components: - - pos: -0.5,1.5 + - type: Transform + pos: -0.5,1.5 parent: 818 - type: Transform - - location: Terminal - type: WarpPoint + - type: WarpPoint + location: Terminal - proto: Windoor entities: - uid: 806 components: - - pos: -8.5,2.5 + - type: Transform + pos: -8.5,2.5 parent: 818 - type: Transform - uid: 841 components: - - pos: -2.5,3.5 + - type: Transform + pos: -2.5,3.5 parent: 818 - type: Transform - proto: WindowReinforcedDirectional entities: - uid: 181 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 818 - type: Transform - uid: 204 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,8.5 parent: 818 - type: Transform - uid: 600 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,8.5 parent: 818 - type: Transform - uid: 659 components: - - pos: 9.5,-15.5 + - type: Transform + pos: 9.5,-15.5 parent: 818 - type: Transform - uid: 660 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-12.5 parent: 818 - type: Transform - uid: 661 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-12.5 parent: 818 - type: Transform - uid: 662 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-13.5 parent: 818 - type: Transform - uid: 663 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-14.5 parent: 818 - type: Transform - uid: 664 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-15.5 parent: 818 - type: Transform - uid: 665 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-15.5 parent: 818 - type: Transform - uid: 666 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-14.5 parent: 818 - type: Transform - uid: 667 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-13.5 parent: 818 - type: Transform - uid: 668 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 818 - type: Transform - uid: 669 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-12.5 parent: 818 - type: Transform - uid: 670 components: - - pos: -10.5,-15.5 + - type: Transform + pos: -10.5,-15.5 parent: 818 - type: Transform - uid: 671 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-15.5 parent: 818 - type: Transform - uid: 672 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-14.5 parent: 818 - type: Transform - uid: 673 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-13.5 parent: 818 - type: Transform - uid: 674 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-12.5 parent: 818 - type: Transform - uid: 675 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-12.5 parent: 818 - type: Transform - uid: 676 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-13.5 parent: 818 - type: Transform - uid: 677 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-14.5 parent: 818 - type: Transform - uid: 678 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-15.5 parent: 818 - type: Transform - uid: 679 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-16.5 parent: 818 - type: Transform - uid: 680 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,-16.5 parent: 818 - type: Transform - uid: 681 components: - - pos: -11.5,-11.5 + - type: Transform + pos: -11.5,-11.5 parent: 818 - type: Transform - uid: 682 components: - - pos: -9.5,-11.5 + - type: Transform + pos: -9.5,-11.5 parent: 818 - type: Transform - uid: 683 components: - - pos: 10.5,-11.5 + - type: Transform + pos: 10.5,-11.5 parent: 818 - type: Transform - uid: 684 components: - - pos: 8.5,-11.5 + - type: Transform + pos: 8.5,-11.5 parent: 818 - type: Transform - uid: 685 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-16.5 parent: 818 - type: Transform - uid: 686 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-16.5 parent: 818 - type: Transform - uid: 837 components: - - pos: 1.5,3.5 + - type: Transform + pos: 1.5,3.5 parent: 818 - type: Transform - uid: 838 components: - - pos: 0.5,3.5 + - type: Transform + pos: 0.5,3.5 parent: 818 - type: Transform - uid: 839 components: - - pos: -0.5,3.5 + - type: Transform + pos: -0.5,3.5 parent: 818 - type: Transform - uid: 840 components: - - pos: -1.5,3.5 + - type: Transform + pos: -1.5,3.5 parent: 818 - type: Transform ... diff --git a/Resources/Maps/Salvage/hauling-shuttle.yml b/Resources/Maps/Salvage/hauling-shuttle.yml new file mode 100644 index 00000000000..abae4b5f493 --- /dev/null +++ b/Resources/Maps/Salvage/hauling-shuttle.yml @@ -0,0 +1,1433 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 29: FloorDark + 34: FloorDarkMono + 76: FloorRGlass + 89: FloorSteel + 90: FloorSteelBurnt + 93: FloorSteelDamaged + 100: FloorSteelMono + 104: FloorTechMaint + 120: Lattice + 121: Plating + 123: PlatingBurnt + 124: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: 3.713037,4.5250416 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eQAAAAAAfAAAAAAAXQAAAAAEeQAAAAAAWgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWgAAAAABewAAAAAAeAAAAAAAewAAAAAAeQAAAAAATAAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACXQAAAAAEfAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADIgAAAAABIgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWgAAAAAAeQAAAAAAewAAAAAAfAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAZAAAAAACZAAAAAABXQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAZAAAAAADZAAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAATAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAADZAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: -4,2 + 1: -3,2 + 2: 8,2 + 3: 9,2 + 5: 2,-5 + 6: 3,-5 + 8: 2,-6 + 9: 3,-6 + 22: 2,4 + 23: 3,4 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 24: 1,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 12: 1,-7 + 13: 4,-6 + 14: 2,-7 + 15: 3,-7 + 16: 1,-8 + 17: 4,-7 + 18: 5,-6 + 30: 2,0 + 31: 4,2 + 43: 9,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 10: 2,-6 + 11: 3,-5 + 19: 2,-5 + 20: 3,-4 + 21: 2,-2 + 32: 2,2 + 33: 2,1 + 34: 4,1 + 35: 3,2 + 41: 9,2 + 42: 8,2 + 46: 3,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 36: 1,1 + 37: 4,0 + 38: 10,2 + 39: 10,2 + 40: 9,3 + 44: 8,1 + 45: 9,0 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 25: 9,-1 + 26: 9,1 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 27: -4,-1 + 28: -4,1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 15 + 1,0: + 0: 1 + 0,-1: + 0: 61440 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockAssembly + entities: + - uid: 36 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 +- proto: AirlockCommand + entities: + - uid: 87 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 88 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,3.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 69 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 71 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,1.5 + parent: 1 +- proto: AirlockExternalGlass + entities: + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 +- proto: AirlockShuttle + entities: + - uid: 34 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 46 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 147 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 +- proto: CableHV + entities: + - uid: 115 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 +- proto: CableMV + entities: + - uid: 117 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: CarpetBlack + entities: + - uid: 183 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 +- proto: Chair + entities: + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 121 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 +- proto: ComputerFrame + entities: + - uid: 120 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 +- proto: CrateEmptySpawner + entities: + - uid: 192 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 +- proto: CrateFilledSpawner + entities: + - uid: 185 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 +- proto: CratePartsT3 + entities: + - uid: 187 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: CratePlasma + entities: + - uid: 191 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 +- proto: CrateTrashCartFilled + entities: + - uid: 190 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 136 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 +- proto: GasPort + entities: + - uid: 153 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasVentPump + entities: + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: Girder + entities: + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 +- proto: Grille + entities: + - uid: 72 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 +- proto: LightBulbBroken + entities: + - uid: 37 + components: + - type: Transform + pos: 1.1375012,-6.0876493 + parent: 1 +- proto: MachineFrame + entities: + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 100 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 +- proto: PortableGeneratorPacman + entities: + - uid: 112 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 122 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: PowerCellMediumPrinted + entities: + - uid: 201 + components: + - type: Transform + pos: 4.476626,2.5094805 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 194 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: PowerCellSmallPrinted + entities: + - uid: 202 + components: + - type: Transform + pos: 4.617251,2.6032305 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 89 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 90 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - uid: 91 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 92 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 93 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - uid: 94 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 +- proto: PoweredSmallLightEmpty + entities: + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 +- proto: Rack + entities: + - uid: 109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 +- proto: SalvageCanisterSpawner + entities: + - uid: 195 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 +- proto: SalvageMobSpawner + entities: + - uid: 198 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 +- proto: SalvageMobSpawner75 + entities: + - uid: 199 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 53 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: SpawnMobBearSalvage + entities: + - uid: 200 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 +- proto: SpawnMobCobraSalvage + entities: + - uid: 196 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 +- proto: SpawnMobSpiderSalvage + entities: + - uid: 197 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: SubstationBasicEmpty + entities: + - uid: 113 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 +- proto: Table + entities: + - uid: 108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 +- proto: UnfinishedMachineFrame + entities: + - uid: 96 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 1 +- proto: VendingMachineSnack + entities: + - uid: 128 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: VendingMachineSovietSoda + entities: + - uid: 126 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 2 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 3 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 4 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 5 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 6 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 10 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 12 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 13 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 16 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 17 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 18 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 19 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 20 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 21 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 23 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 25 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 27 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 28 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 29 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 30 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 31 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 32 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 33 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 35 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 38 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 39 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 40 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 41 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 42 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 43 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 45 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 47 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 48 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 49 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 50 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 51 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 52 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,0.5 + parent: 1 +... diff --git a/Resources/Maps/Salvage/small-cargo.yml b/Resources/Maps/Salvage/small-cargo.yml new file mode 100644 index 00000000000..a96102afae5 --- /dev/null +++ b/Resources/Maps/Salvage/small-cargo.yml @@ -0,0 +1,703 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 34: FloorDarkMono + 89: FloorSteel + 90: FloorSteelBurnt + 93: FloorSteelDamaged + 120: Lattice + 121: Plating + 123: PlatingBurnt + 124: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -3.9375,-2.390625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: WQAAAAAAIgAAAAAAIgAAAAAAWgAAAAAAeQAAAAAAfAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABIgAAAAAAIgAAAAACWQAAAAABeQAAAAAAewAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAfAAAAAACeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeQAAAAAAeQAAAAAAfAAAAAABeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAfAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWgAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAeQAAAAAAewAAAAAAWgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABIgAAAAABIgAAAAACXQAAAAABeQAAAAAAeQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: 1,-1 + 1: 2,-1 + 2: 2,0 + 3: 1,0 + 4: 1,1 + 5: 2,1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 14 + 1,0: + 0: 21879 + 0,-1: + 0: 65467 + 0,-2: + 0: 8192 + 1,-1: + 0: 29968 + -1,-2: + 0: 34944 + -1,-1: + 0: 34952 + -1,0: + 0: 2184 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockMining + entities: + - uid: 4 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 35 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 55 + - uid: 40 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 55 + - uid: 41 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 55 + - uid: 42 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 55 +- proto: CableApcExtension + entities: + - uid: 66 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 43 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 +- proto: Chair + entities: + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 +- proto: ClothingBackpackSatchelSalvage + entities: + - uid: 30 + components: + - type: Transform + pos: 5.896863,0.5284245 + parent: 1 +- proto: ClothingBeltSalvageWebbing + entities: + - uid: 31 + components: + - type: Transform + pos: 5.631238,1.1377995 + parent: 1 +- proto: Grille + entities: + - uid: 16 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 +- proto: JetpackBlueFilled + entities: + - uid: 34 + components: + - type: Transform + pos: 2.491333,-0.46232176 + parent: 1 +- proto: MiningWindow + entities: + - uid: 9 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 +- proto: Pickaxe + entities: + - uid: 61 + components: + - type: Transform + pos: 6.0332375,-1.7667565 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 6.1113625,-2.0636315 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 18 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 53 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +- proto: SalvageCanisterSpawner + entities: + - uid: 21 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 23 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 +- proto: SalvageMobSpawner + entities: + - uid: 26 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: SalvageMobSpawner75 + entities: + - uid: 25 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 +- proto: SheetPlasteel + entities: + - uid: 63 + components: + - type: Transform + pos: 1.2676125,-1.8917565 + parent: 1 +- proto: SignalButton + entities: + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 35: + - Pressed: Toggle + 40: + - Pressed: Toggle + 42: + - Pressed: Toggle + 41: + - Pressed: Toggle +- proto: SignCargoDock + entities: + - uid: 32 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: SignSpace + entities: + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 +- proto: SMESMachineCircuitboard + entities: + - uid: 33 + components: + - type: Transform + pos: 2.0003514,4.4618874 + parent: 1 +- proto: SpaceTickSpawner + entities: + - uid: 29 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 +- proto: WallMining + entities: + - uid: 2 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 3 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 5 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 6 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 12 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 36 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 37 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 38 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 39 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 47 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 48 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 94 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,2.5 + parent: 1 +... diff --git a/Resources/Maps/Salvage/small-chapel.yml b/Resources/Maps/Salvage/small-chapel.yml new file mode 100644 index 00000000000..606761ca6aa --- /dev/null +++ b/Resources/Maps/Salvage/small-chapel.yml @@ -0,0 +1,982 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorAstroGrass + 19: FloorBrokenWood + 29: FloorDark + 34: FloorDarkMono + 118: FloorWood + 120: Lattice + 121: Plating + 123: PlatingBurnt + 124: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -4.922083,-2.395518 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: fAAAAAACeAAAAAAAEwAAAAAGAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAewAAAAAAdgAAAAACewAAAAAAdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAABdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAIgAAAAAAIgAAAAAAIgAAAAACIgAAAAABfAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABIgAAAAACIgAAAAABHQAAAAACIgAAAAABEwAAAAADewAAAAAAewAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACIgAAAAAAdgAAAAADdgAAAAADfAAAAAACEwAAAAAEeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAADDAAAAAADDAAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAABDAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAABDAAAAAAADAAAAAACDAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAACDAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAfAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 25: 0.52870417,9.102388 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 26: 0.93495417,7.8211384 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 27: 2.4505792,9.102388 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 28: 2.2943292,6.9305134 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 29: 0.52870417,10.102388 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 48: 2,4 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Bot + decals: + 0: 0,5 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 30: 0.90370417,7.9773884 + 31: 2.6849542,9.227388 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 33: 3.1224542,6.7898884 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 32: -0.47129583,8.399263 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 37: 0.41932917,9.446138 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 34: 0.57557917,7.1336384 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 35: 3.1380792,7.8367634 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 38: -0.15879583,8.289888 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 39: 2.3880792,7.0086384 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 36: 3.0755792,9.711763 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 2: 1.2318292,8.571138 + 7: -0.79942083,9.993013 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 6: 3.6849542,9.821138 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 5: 2.8412042,7.1180134 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 1: 0.51307917,7.6805134 + 4: 3.5287042,8.039888 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 3: 0.30995417,8.555513 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 8: -0.90879583,9.180513 + - node: + color: '#FFFFFFFF' + id: Grassb4 + decals: + 9: 3.0443292,10.008638 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 10: 0.15370417,10.008638 + 11: 1.7630792,6.8680134 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 12: 1.4037042,9.774263 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 13: -0.049420834,6.9773884 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 14: 2.7630792,8.071138 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 15: 4.216204,7.7898884 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 16: -0.58067083,8.196138 + 17: 2.3099542,9.993013 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 18: 3.2318292,8.821138 + - node: + color: '#FFFFFFFF' + id: Rock01 + decals: + 19: 0.059954166,7.8992634 + - node: + color: '#FFFFFFFF' + id: Rock02 + decals: + 20: 3.3099542,7.6023884 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 21: 2.7005792,9.930513 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 22: -0.50254583,9.289888 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 23: 0.95057917,6.9461384 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 24: 4.013079,9.321138 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 46: 4,3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 47: 1,3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 40: 4,4 + 41: 4,4 + 42: 4,5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 44: 2,3 + 45: 3,3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 43: 1,4 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65527 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 1,0: + 0: 30481 + 1,1: + 0: 13311 + 1,2: + 0: 13107 + 2,0: + 0: 4352 + 2,1: + 0: 49 + -1,0: + 0: 52292 + -1,1: + 0: 52428 + -1,2: + 0: 52428 + 0,-1: + 0: 21760 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockAssembly + entities: + - uid: 48 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: AltarSpawner + entities: + - uid: 52 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 +- proto: Ash + entities: + - uid: 47 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 46 + - type: Physics + canCollide: False +- proto: BarricadeBlock + entities: + - uid: 55 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: BloodTomatoSeeds + entities: + - uid: 51 + components: + - type: Transform + pos: 4.5964127,8.285444 + parent: 1 +- proto: BookshelfFilled + entities: + - uid: 62 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,5.5 + parent: 1 +- proto: BoxCandle + entities: + - uid: 81 + components: + - type: Transform + pos: -0.4730544,3.508305 + parent: 1 +- proto: BoxFolderClipboard + entities: + - uid: 73 + components: + - type: Transform + pos: 3.715365,3.6293457 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 82 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 31 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 +- proto: ComfyChair + entities: + - uid: 61 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 +- proto: CounterWoodFrame + entities: + - uid: 56 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: CrateCoffin + entities: + - uid: 32 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 +- proto: CrateEmptySpawner + entities: + - uid: 80 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 +- proto: CrateFilledSpawner + entities: + - uid: 78 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: CrateFunATV + entities: + - uid: 77 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 +- proto: CrateStoneGrave + entities: + - uid: 34 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 +- proto: CrateWoodenGrave + entities: + - uid: 36 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 +- proto: FaxMachineBase + entities: + - uid: 67 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 +- proto: FoodBadRecipe + entities: + - uid: 45 + components: + - type: Transform + pos: -0.23692083,8.415081 + parent: 1 +- proto: Girder + entities: + - uid: 15 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 +- proto: Lamp + entities: + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.527865,4.551221 + parent: 1 +- proto: LuxuryPen + entities: + - uid: 74 + components: + - type: Transform + pos: 3.60599,3.4730957 + parent: 1 +- proto: PaperBin10 + entities: + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 68 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 49 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 +- proto: Rack + entities: + - uid: 69 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +- proto: RandomServiceCorpseSpawner + entities: + - uid: 42 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 43 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 79 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: Shovel + entities: + - uid: 50 + components: + - type: Transform + pos: 0.74745417,8.873986 + parent: 1 +- proto: SpaceTickSpawner + entities: + - uid: 64 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 76 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 44 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 +- proto: TableWood + entities: + - uid: 57 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 +- proto: Urn + entities: + - uid: 46 + components: + - type: Transform + pos: -0.51817083,8.774456 + parent: 1 + - type: Storage + storedItems: + 47: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 47 +- proto: WallSolid + entities: + - uid: 2 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 3 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 4 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 5 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 6 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 10 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 12 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 13 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 17 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 18 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 19 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 20 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 21 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 22 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 23 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 24 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 25 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 26 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 27 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 28 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,6.5 + parent: 1 +- proto: WindoorSecureChapelLocked + entities: + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 +- proto: WoodenSupport + entities: + - uid: 53 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 +... diff --git a/Resources/Maps/Salvage/small-chef.yml b/Resources/Maps/Salvage/small-chef.yml new file mode 100644 index 00000000000..e99dfa19d56 --- /dev/null +++ b/Resources/Maps/Salvage/small-chef.yml @@ -0,0 +1,606 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 34: FloorDarkMono + 91: FloorSteelCheckerDark + 118: FloorWood + 120: Lattice + 121: Plating + 123: PlatingBurnt + 124: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -1.828125,-2.828125 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: dgAAAAADdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAWwAAAAADfAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAWwAAAAACWwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADIgAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAfAAAAAABewAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADewAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAABdgAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAfAAAAAABdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAdgAAAAADdgAAAAAD + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAewAAAAAAdgAAAAAAdgAAAAABdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAfAAAAAACdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 1911 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockFreezerLocked + entities: + - uid: 13 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,4.5 + parent: 1 +- proto: AirlockKitchenLocked + entities: + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,3.5 + parent: 1 +- proto: CarpetBlue + entities: + - uid: 22 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: ChairWood + entities: + - uid: 38 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 +- proto: ClothingOuterWinterChef + entities: + - uid: 77 + components: + - type: Transform + pos: 5.1107388,5.6938953 + parent: 1 +- proto: CrateFreezer + entities: + - uid: 45 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 46 + - 47 + - 48 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMaterialCardboard + entities: + - uid: 79 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 +- proto: CrateServiceBureaucracy + entities: + - uid: 78 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: DeskBell + entities: + - uid: 59 + components: + - type: Transform + pos: 4.438133,0.6241846 + parent: 1 +- proto: DrinkMugDog + entities: + - uid: 69 + components: + - type: Transform + pos: 2.276869,1.7492268 + parent: 1 +- proto: ElectricGrillMachineCircuitboard + entities: + - uid: 74 + components: + - type: Transform + pos: 6.073503,2.5341048 + parent: 1 +- proto: FoodBreadMeat + entities: + - uid: 48 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 45 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBreadMeatSlice + entities: + - uid: 46 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 45 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 45 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPlateSmallTrash + entities: + - uid: 64 + components: + - type: Transform + pos: 1.6577215,1.5817139 + parent: 1 +- proto: FoodPlateTrash + entities: + - uid: 63 + components: + - type: Transform + pos: -0.9047785,1.8004639 + parent: 1 +- proto: FoodShakerPepper + entities: + - uid: 66 + components: + - type: Transform + pos: 2.6889715,1.5035889 + parent: 1 +- proto: FoodShakerSalt + entities: + - uid: 65 + components: + - type: Transform + pos: 2.7045965,1.8004639 + parent: 1 +- proto: Fork + entities: + - uid: 67 + components: + - type: Transform + pos: -0.23875594,1.6784225 + parent: 1 +- proto: Girder + entities: + - uid: 2 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 70 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 55 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 56 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 +- proto: NoticeBoard + entities: + - uid: 19 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 +- proto: Paper + entities: + - uid: 60 + components: + - type: Transform + pos: 4.631294,1.2491845 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 4.490669,1.0929345 + parent: 1 +- proto: Poweredlight + entities: + - uid: 20 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 21 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,3.5 + parent: 1 +- proto: RandomPosterLegit + entities: + - uid: 75 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 17 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 4 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: SpawnMobKangarooSalvage + entities: + - uid: 72 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: Spoon + entities: + - uid: 68 + components: + - type: Transform + pos: -0.41063094,1.5377975 + parent: 1 +- proto: Table + entities: + - uid: 53 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 +- proto: TableFrame + entities: + - uid: 52 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 10 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 +- proto: TableWood + entities: + - uid: 34 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: VendingMachineCondiments + entities: + - uid: 62 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 +- proto: VendingMachineRestockChefvend + entities: + - uid: 58 + components: + - type: Transform + pos: 8.656883,2.5304346 + parent: 1 +- proto: VendingMachineRestockChemVend + entities: + - uid: 57 + components: + - type: Transform + pos: 8.406883,2.6241846 + parent: 1 +- proto: WallReinforced + entities: + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 16 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,4.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 3 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 6 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-0.5 + parent: 1 +... diff --git a/Resources/Maps/Salvage/small-party.yml b/Resources/Maps/Salvage/small-party.yml new file mode 100644 index 00000000000..73f383f7810 --- /dev/null +++ b/Resources/Maps/Salvage/small-party.yml @@ -0,0 +1,567 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 29: FloorDark + 118: FloorWood + 120: Lattice + 121: Plating + 123: PlatingBurnt + 124: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -1.4375,-2.546875 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: dgAAAAACdgAAAAACdgAAAAABdgAAAAAAHQAAAAADewAAAAAAfAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABHQAAAAABHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABdgAAAAAAdgAAAAAAHQAAAAADHQAAAAADHQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAHQAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACewAAAAAAHQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAAAfAAAAAABewAAAAAAAAAAAAAAHQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 819 + -1,0: + 0: 2184 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AcousticGuitarInstrument + entities: + - uid: 30 + components: + - type: Transform + pos: 1.2823238,1.4904933 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 38 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 +- proto: Chair + entities: + - uid: 32 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 +- proto: ClothingHeadHatPartyGreen + entities: + - uid: 66 + components: + - type: Transform + pos: -1.3735623,2.7773314 + parent: 1 +- proto: ClothingHeadHatPartyRed + entities: + - uid: 67 + components: + - type: Transform + pos: -1.5454373,2.5585814 + parent: 1 +- proto: ClothingHeadHatPartyYellow + entities: + - uid: 68 + components: + - type: Transform + pos: -1.6079373,2.8398314 + parent: 1 +- proto: CrateFunParty + entities: + - uid: 65 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 +- proto: FoodCakeBirthday + entities: + - uid: 71 + components: + - type: Transform + pos: 5.4858127,3.7148314 + parent: 1 +- proto: FoodCakeBirthdaySlice + entities: + - uid: 72 + components: + - type: Transform + pos: 5.5795627,3.2929564 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 5.4233127,3.0429564 + parent: 1 +- proto: GlowstickBase + entities: + - uid: 69 + components: + - type: Transform + pos: -0.38918734,4.4179564 + parent: 1 +- proto: GlowstickYellow + entities: + - uid: 70 + components: + - type: Transform + pos: 5.2201877,0.55858135 + parent: 1 +- proto: MachineFrame + entities: + - uid: 78 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 77 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 28 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - uid: 29 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 +- proto: Railing + entities: + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 20 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 +- proto: SalvageCanisterSpawner + entities: + - uid: 75 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 74 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 +- proto: SpawnMobBearSalvage + entities: + - uid: 76 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +- proto: SynthesizerInstrument + entities: + - uid: 31 + components: + - type: Transform + pos: 2.6573238,1.2873683 + parent: 1 +- proto: TableCounterWood + entities: + - uid: 2 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: TableFrame + entities: + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 22 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 23 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 24 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 25 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 26 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 27 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 +- proto: WindoorTheatreLocked + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 +... diff --git a/Resources/Maps/Salvage/small-syndicate.yml b/Resources/Maps/Salvage/small-syndicate.yml new file mode 100644 index 00000000000..e1e8aa80892 --- /dev/null +++ b/Resources/Maps/Salvage/small-syndicate.yml @@ -0,0 +1,982 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 29: FloorDark + 34: FloorDarkMono + 91: FloorSteelCheckerDark + 105: FloorTechMaint2 + 120: Lattice + 121: Plating + 123: PlatingBurnt + 124: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -3.03125,-0.78125 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eQAAAAAAIgAAAAACHQAAAAADIgAAAAABeQAAAAAAWwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADHQAAAAABIgAAAAABeQAAAAAAWwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACHQAAAAAAIgAAAAABeQAAAAAAWwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAABeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAewAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAfAAAAAABeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACewAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 0: 1,0 + 1: 1,2 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 2: 3,0 + 3: 3,2 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65023 + 1: 512 + 0,1: + 0: 3839 + 1,0: + 0: 30583 + 1,1: + 0: 23 + 0,-2: + 0: 29456 + 1,-1: + 0: 30481 + -1,0: + 0: 36044 + -1,-1: + 0: 52224 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 51.48652 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 68 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirlockAssembly + entities: + - uid: 28 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: AirlockExternalGlass + entities: + - uid: 31 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: AirlockGlassShuttleSyndicate + entities: + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 +- proto: AirlockSyndicateGlass + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 61 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 +- proto: BorgChargerCircuitboard + entities: + - uid: 77 + components: + - type: Transform + pos: 2.376959,-3.492951 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 100 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 122 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 59 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 +- proto: CigPackSyndicate + entities: + - uid: 23 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 22 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatSyndieMAA + entities: + - uid: 25 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 22 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerShuttle + entities: + - uid: 67 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 +- proto: CrateEmptySpawner + entities: + - uid: 79 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: CrateFilledSpawner + entities: + - uid: 80 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: CrateServiceCustomSmokable + entities: + - uid: 78 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 +- proto: FoodSnackSyndi + entities: + - uid: 24 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 22 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GasPipeBend + entities: + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 +- proto: GasPipeFourway + entities: + - uid: 91 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: GasPipeHalf + entities: + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 88 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 +- proto: GasPort + entities: + - uid: 86 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasVentPump + entities: + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: Grille + entities: + - uid: 44 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 48 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 +- proto: JetpackBlackFilled + entities: + - uid: 130 + components: + - type: Transform + pos: 1.859375,0.828125 + parent: 1 +- proto: LockerSyndicatePersonal + entities: + - uid: 22 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 27.09326 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23 + - 24 + - 25 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MachineFrame + entities: + - uid: 32 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: PosterContrabandFreeSyndicateEncryptionKey + entities: + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 71 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: PoweredSmallLightEmpty + entities: + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 +- proto: Rack + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 81 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: SalvageMobSpawner + entities: + - uid: 83 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: SalvageMobSpawner75 + entities: + - uid: 82 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: SignArmory + entities: + - uid: 14 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: SpawnMobCobraSalvage + entities: + - uid: 85 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 126 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: UnfinishedMachineFrame + entities: + - uid: 34 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 2 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 3 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 5 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 6 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 10 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 12 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 13 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 16 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 17 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 18 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 19 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 26 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 35 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 36 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 37 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 38 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +... diff --git a/Resources/Maps/Salvage/small-tesla.yml b/Resources/Maps/Salvage/small-tesla.yml new file mode 100644 index 00000000000..61f5792f3f1 --- /dev/null +++ b/Resources/Maps/Salvage/small-tesla.yml @@ -0,0 +1,370 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -2.359375,-0.625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 51 + 0,-1: + 0: 12288 + -1,-1: + 0: 32768 + -1,0: + 0: 136 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay +- proto: Catwalk + entities: + - uid: 9 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 48 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 2 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 25 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 +- proto: GrilleSpawner + entities: + - uid: 12 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 44 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 5 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 +- proto: SolarPanel + entities: + - uid: 52 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 +- proto: SolarPanelBroken + entities: + - uid: 50 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 +- proto: TeslaCoil + entities: + - uid: 4 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 +- proto: TeslaGenerator + entities: + - uid: 46 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: TeslaGroundingRod + entities: + - uid: 3 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: UnfinishedMachineFrame + entities: + - uid: 45 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/cargo_core.yml b/Resources/Maps/Shuttles/cargo_core.yml new file mode 100644 index 00000000000..b68562f2151 --- /dev/null +++ b/Resources/Maps/Shuttles/cargo_core.yml @@ -0,0 +1,1165 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 89: FloorSteel + 100: FloorSteelMono + 104: FloorTechMaint + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: Cargo shuttle + - type: Transform + pos: -1.828125,2.078125 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eQAAAAAAZAAAAAAAZAAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 10: 0,-5 + 11: 0,-3 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: 2,0 + 1: -1,-3 + 2: -1,-5 + - node: + color: '#79150047' + id: CheckerNWSE + decals: + 3: 1,-7 + 4: 1,-5 + 5: 1,-4 + 6: 1,-3 + 7: 1,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 12: 0,-5 + 13: 1,-3 + 14: 2,1 + 15: 1,-7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 16: 0,-4 + 17: 0,-1 + 18: 1,-6 + 19: 1,-9 + 20: 2,-8 + 21: 1,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 22: 1,-4 + 23: 1,-1 + 24: 1,1 + 25: 1,-8 + 26: -1,-3 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 8: 1,-6 + 9: 1,-2 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 4095 + 1,0: + 0: 273 + -1,0: + 0: 2184 + 0,-3: + 0: 65280 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-3: + 0: 4352 + 1,-2: + 0: 4369 + 1,-1: + 0: 4369 + -1,-3: + 0: 34816 + -1,-2: + 0: 34952 + -1,-1: + 0: 34952 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: CargoShuttle +- proto: AirAlarm + entities: + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: AirCanister + entities: + - uid: 147 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 1 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 139 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 135 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 137 + - uid: 136 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 138 +- proto: CableApcExtension + entities: + - uid: 104 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 +- proto: CableHV + entities: + - uid: 99 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 +- proto: CableMV + entities: + - uid: 102 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 +- proto: CargoPallet + entities: + - uid: 55 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 60 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 2 + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 2 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 2 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 2 + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 2 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 21 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 92 + - uid: 75 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 92 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 92 + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 92 +- proto: GasPassiveVent + entities: + - uid: 143 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasPipeBend + entities: + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 2 +- proto: GasPipeStraight + entities: + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 2 +- proto: GasPort + entities: + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasPressurePump + entities: + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasVentPump + entities: + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasVentScrubber + entities: + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GeneratorBasic15kW + entities: + - uid: 96 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 133 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 +- proto: Grille + entities: + - uid: 17 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 93 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 72 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 73 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 2 +- proto: ShuttleWindow + entities: + - uid: 3 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 4 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 + - uid: 30 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 135: + - Pressed: Toggle + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 136: + - Pressed: Toggle +- proto: SMESBasic + entities: + - uid: 97 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 94 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 22 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 +- proto: Thruster + entities: + - uid: 13 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 2 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 92 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 74: + - Left: Forward + - Right: Reverse + - Middle: Off + 77: + - Left: Forward + - Right: Reverse + - Middle: Off + 76: + - Left: Forward + - Right: Reverse + - Middle: Off + 75: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: WallShuttle + entities: + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 10 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 12 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 24 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 25 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 2 + - uid: 31 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 2 + - uid: 32 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 33 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 + - uid: 34 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 35 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 36 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 2 + - uid: 37 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 38 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 41 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 42 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + - uid: 43 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 44 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 57 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 2 +... diff --git a/Resources/Maps/Shuttles/emergency_box.yml b/Resources/Maps/Shuttles/emergency_box.yml index a1aeb2589e9..c0cef0a7424 100644 --- a/Resources/Maps/Shuttles/emergency_box.yml +++ b/Resources/Maps/Shuttles/emergency_box.yml @@ -22,12 +22,13 @@ entities: entities: - uid: 1 components: - - name: grid - type: MetaData - - pos: 0.06253052,0.58707 + - type: MetaData + name: NT Evac Box + - type: Transform + pos: 0.06253052,0.58707 parent: invalid - type: Transform - - chunks: + - type: MapGrid + chunks: 0,0: ind: 0,0 tiles: eQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAXAAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAXAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACXAAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAXAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADXAAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAXAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAWQAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADHgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHgAAAAAAWwAAAAAAWwAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWwAAAAAAWwAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAXQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHgAAAAACWwAAAAAAWwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -44,24 +45,24 @@ entities: ind: 1,-1 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: MapGrid - type: Broadphase - - bodyStatus: InAir + - type: Physics + bodyStatus: InAir angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - type: OccluderTree - type: SpreaderGrid - type: Shuttle - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: + - type: DecalGrid + chunkCollection: version: 2 nodes: - node: @@ -375,8 +376,8 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 165: 1,-1 - type: DecalGrid - - version: 2 + - type: GridAtmosphere + version: 2 data: tiles: 0,0: @@ -484,7 +485,6 @@ entities: - 0 - 0 chunkSize: 4 - type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap @@ -492,3498 +492,3760 @@ entities: entities: - uid: 526 components: - - pos: 14.5,0.5 + - type: Transform + pos: 14.5,0.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - proto: Airlock entities: - uid: 417 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,8.5 parent: 1 - type: Transform - proto: AirlockCommandLocked entities: - uid: 124 components: - - pos: 16.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,5.5 parent: 1 - type: Transform - proto: AirlockEngineeringGlass entities: - uid: 91 components: - - pos: 13.5,-2.5 + - type: Transform + pos: 13.5,-2.5 parent: 1 - type: Transform - proto: AirlockEVAGlassLocked entities: - uid: 434 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,10.5 parent: 1 - type: Transform - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 5 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 1 - type: Transform - uid: 168 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,7.5 parent: 1 - type: Transform - uid: 248 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-0.5 parent: 1 - type: Transform - uid: 407 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,9.5 parent: 1 - type: Transform - proto: AirlockExternalLocked entities: - uid: 184 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,12.5 parent: 1 - type: Transform - - links: + - type: DeviceLinkSink + links: - 420 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 420: - DoorStatus: DoorBolt - type: DeviceLinkSource - uid: 420 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,14.5 parent: 1 - type: Transform - - links: + - type: DeviceLinkSink + links: - 184 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 184: - DoorStatus: DoorBolt - type: DeviceLinkSource - proto: AirlockMedical entities: - uid: 128 components: - - pos: 7.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-1.5 parent: 1 - type: Transform - proto: AirlockSecurityGlassLocked entities: - uid: 66 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,8.5 parent: 1 - type: Transform - proto: APCSuperCapacity entities: - uid: 528 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,-4.5 parent: 1 - type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 580 components: - - pos: 0.5,9.5 + - type: Transform + pos: 0.5,9.5 parent: 1 - type: Transform - uid: 581 components: - - pos: 0.5,7.5 + - type: Transform + pos: 0.5,7.5 parent: 1 - type: Transform - uid: 582 components: - - pos: 0.5,1.5 + - type: Transform + pos: 0.5,1.5 parent: 1 - type: Transform - uid: 583 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 1 - type: Transform - proto: BookHowToSurvive entities: - uid: 210 components: - - pos: 17.702461,3.5919065 + - type: Transform + pos: 17.702461,3.5919065 parent: 1 - type: Transform - proto: BoxFolderClipboard entities: - uid: 506 components: - - pos: 18.38288,11.560461 + - type: Transform + pos: 18.38288,11.560461 parent: 1 - type: Transform - proto: CableApcExtension entities: - uid: 6 components: - - pos: 2.5,11.5 + - type: Transform + pos: 2.5,11.5 parent: 1 - type: Transform - uid: 12 components: - - pos: 15.5,11.5 + - type: Transform + pos: 15.5,11.5 parent: 1 - type: Transform - uid: 14 components: - - pos: 1.5,8.5 + - type: Transform + pos: 1.5,8.5 parent: 1 - type: Transform - uid: 16 components: - - pos: 2.5,8.5 + - type: Transform + pos: 2.5,8.5 parent: 1 - type: Transform - uid: 17 components: - - pos: 15.5,-1.5 + - type: Transform + pos: 15.5,-1.5 parent: 1 - type: Transform - uid: 18 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 1 - type: Transform - uid: 20 components: - - pos: 7.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 1 - type: Transform - uid: 23 components: - - pos: 7.5,5.5 + - type: Transform + pos: 7.5,5.5 parent: 1 - type: Transform - uid: 26 components: - - pos: 7.5,3.5 + - type: Transform + pos: 7.5,3.5 parent: 1 - type: Transform - uid: 27 components: - - pos: 7.5,2.5 + - type: Transform + pos: 7.5,2.5 parent: 1 - type: Transform - uid: 28 components: - - pos: 11.5,6.5 + - type: Transform + pos: 11.5,6.5 parent: 1 - type: Transform - uid: 29 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 1 - type: Transform - uid: 32 components: - - pos: 10.5,6.5 + - type: Transform + pos: 10.5,6.5 parent: 1 - type: Transform - uid: 33 components: - - pos: 9.5,6.5 + - type: Transform + pos: 9.5,6.5 parent: 1 - type: Transform - uid: 34 components: - - pos: 2.5,6.5 + - type: Transform + pos: 2.5,6.5 parent: 1 - type: Transform - uid: 39 components: - - pos: 9.5,-3.5 + - type: Transform + pos: 9.5,-3.5 parent: 1 - type: Transform - uid: 52 components: - - pos: 2.5,-1.5 + - type: Transform + pos: 2.5,-1.5 parent: 1 - type: Transform - uid: 61 components: - - pos: 8.5,6.5 + - type: Transform + pos: 8.5,6.5 parent: 1 - type: Transform - uid: 62 components: - - pos: 6.5,6.5 + - type: Transform + pos: 6.5,6.5 parent: 1 - type: Transform - uid: 65 components: - - pos: 5.5,6.5 + - type: Transform + pos: 5.5,6.5 parent: 1 - type: Transform - uid: 170 components: - - pos: 9.5,11.5 + - type: Transform + pos: 9.5,11.5 parent: 1 - type: Transform - uid: 174 components: - - pos: 3.5,7.5 + - type: Transform + pos: 3.5,7.5 parent: 1 - type: Transform - uid: 185 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 1 - type: Transform - uid: 186 components: - - pos: 3.5,6.5 + - type: Transform + pos: 3.5,6.5 parent: 1 - type: Transform - uid: 196 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 1 - type: Transform - uid: 197 components: - - pos: 3.5,9.5 + - type: Transform + pos: 3.5,9.5 parent: 1 - type: Transform - uid: 199 components: - - pos: 15.5,12.5 + - type: Transform + pos: 15.5,12.5 parent: 1 - type: Transform - uid: 200 components: - - pos: 17.5,10.5 + - type: Transform + pos: 17.5,10.5 parent: 1 - type: Transform - uid: 201 components: - - pos: 12.5,11.5 + - type: Transform + pos: 12.5,11.5 parent: 1 - type: Transform - uid: 259 components: - - pos: 4.5,11.5 + - type: Transform + pos: 4.5,11.5 parent: 1 - type: Transform - uid: 265 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 1 - type: Transform - uid: 276 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 1 - type: Transform - uid: 305 components: - - pos: 15.5,-3.5 + - type: Transform + pos: 15.5,-3.5 parent: 1 - type: Transform - uid: 306 components: - - pos: 15.5,-2.5 + - type: Transform + pos: 15.5,-2.5 parent: 1 - type: Transform - uid: 307 components: - - pos: 14.5,-2.5 + - type: Transform + pos: 14.5,-2.5 parent: 1 - type: Transform - uid: 308 components: - - pos: 13.5,-2.5 + - type: Transform + pos: 13.5,-2.5 parent: 1 - type: Transform - uid: 309 components: - - pos: 12.5,-2.5 + - type: Transform + pos: 12.5,-2.5 parent: 1 - type: Transform - uid: 310 components: - - pos: 12.5,-1.5 + - type: Transform + pos: 12.5,-1.5 parent: 1 - type: Transform - uid: 311 components: - - pos: 12.5,-0.5 + - type: Transform + pos: 12.5,-0.5 parent: 1 - type: Transform - uid: 312 components: - - pos: 12.5,0.5 + - type: Transform + pos: 12.5,0.5 parent: 1 - type: Transform - uid: 313 components: - - pos: 12.5,1.5 + - type: Transform + pos: 12.5,1.5 parent: 1 - type: Transform - uid: 314 components: - - pos: 15.5,13.5 + - type: Transform + pos: 15.5,13.5 parent: 1 - type: Transform - uid: 315 components: - - pos: 16.5,10.5 + - type: Transform + pos: 16.5,10.5 parent: 1 - type: Transform - uid: 316 components: - - pos: 15.5,10.5 + - type: Transform + pos: 15.5,10.5 parent: 1 - type: Transform - uid: 318 components: - - pos: 7.5,1.5 + - type: Transform + pos: 7.5,1.5 parent: 1 - type: Transform - uid: 319 components: - - pos: 7.5,0.5 + - type: Transform + pos: 7.5,0.5 parent: 1 - type: Transform - uid: 320 components: - - pos: 7.5,-1.5 + - type: Transform + pos: 7.5,-1.5 parent: 1 - type: Transform - uid: 321 components: - - pos: 7.5,-0.5 + - type: Transform + pos: 7.5,-0.5 parent: 1 - type: Transform - uid: 322 components: - - pos: 7.5,-2.5 + - type: Transform + pos: 7.5,-2.5 parent: 1 - type: Transform - uid: 323 components: - - pos: 7.5,-3.5 + - type: Transform + pos: 7.5,-3.5 parent: 1 - type: Transform - uid: 325 components: - - pos: 3.5,10.5 + - type: Transform + pos: 3.5,10.5 parent: 1 - type: Transform - uid: 328 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 1 - type: Transform - uid: 329 components: - - pos: 2.5,2.5 + - type: Transform + pos: 2.5,2.5 parent: 1 - type: Transform - uid: 330 components: - - pos: 2.5,3.5 + - type: Transform + pos: 2.5,3.5 parent: 1 - type: Transform - uid: 331 components: - - pos: 2.5,4.5 + - type: Transform + pos: 2.5,4.5 parent: 1 - type: Transform - uid: 332 components: - - pos: 2.5,5.5 + - type: Transform + pos: 2.5,5.5 parent: 1 - type: Transform - uid: 338 components: - - pos: 7.5,6.5 + - type: Transform + pos: 7.5,6.5 parent: 1 - type: Transform - uid: 339 components: - - pos: 7.5,7.5 + - type: Transform + pos: 7.5,7.5 parent: 1 - type: Transform - uid: 340 components: - - pos: 7.5,8.5 + - type: Transform + pos: 7.5,8.5 parent: 1 - type: Transform - uid: 341 components: - - pos: 7.5,9.5 + - type: Transform + pos: 7.5,9.5 parent: 1 - type: Transform - uid: 342 components: - - pos: 7.5,10.5 + - type: Transform + pos: 7.5,10.5 parent: 1 - type: Transform - uid: 353 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 1 - type: Transform - uid: 355 components: - - pos: 12.5,5.5 + - type: Transform + pos: 12.5,5.5 parent: 1 - type: Transform - uid: 356 components: - - pos: 13.5,5.5 + - type: Transform + pos: 13.5,5.5 parent: 1 - type: Transform - uid: 357 components: - - pos: 14.5,5.5 + - type: Transform + pos: 14.5,5.5 parent: 1 - type: Transform - uid: 358 components: - - pos: 14.5,6.5 + - type: Transform + pos: 14.5,6.5 parent: 1 - type: Transform - uid: 359 components: - - pos: 14.5,7.5 + - type: Transform + pos: 14.5,7.5 parent: 1 - type: Transform - uid: 363 components: - - pos: 15.5,5.5 + - type: Transform + pos: 15.5,5.5 parent: 1 - type: Transform - uid: 364 components: - - pos: 12.5,4.5 + - type: Transform + pos: 12.5,4.5 parent: 1 - type: Transform - uid: 365 components: - - pos: 12.5,3.5 + - type: Transform + pos: 12.5,3.5 parent: 1 - type: Transform - uid: 366 components: - - pos: 12.5,2.5 + - type: Transform + pos: 12.5,2.5 parent: 1 - type: Transform - uid: 367 components: - - pos: 16.5,5.5 + - type: Transform + pos: 16.5,5.5 parent: 1 - type: Transform - uid: 368 components: - - pos: 17.5,5.5 + - type: Transform + pos: 17.5,5.5 parent: 1 - type: Transform - uid: 369 components: - - pos: 18.5,5.5 + - type: Transform + pos: 18.5,5.5 parent: 1 - type: Transform - uid: 370 components: - - pos: 18.5,6.5 + - type: Transform + pos: 18.5,6.5 parent: 1 - type: Transform - uid: 371 components: - - pos: 19.5,5.5 + - type: Transform + pos: 19.5,5.5 parent: 1 - type: Transform - uid: 372 components: - - pos: 18.5,7.5 + - type: Transform + pos: 18.5,7.5 parent: 1 - type: Transform - uid: 373 components: - - pos: 18.5,8.5 + - type: Transform + pos: 18.5,8.5 parent: 1 - type: Transform - uid: 374 components: - - pos: 18.5,9.5 + - type: Transform + pos: 18.5,9.5 parent: 1 - type: Transform - uid: 375 components: - - pos: 18.5,10.5 + - type: Transform + pos: 18.5,10.5 parent: 1 - type: Transform - uid: 376 components: - - pos: 18.5,11.5 + - type: Transform + pos: 18.5,11.5 parent: 1 - type: Transform - uid: 399 components: - - pos: 3.5,11.5 + - type: Transform + pos: 3.5,11.5 parent: 1 - type: Transform - uid: 409 components: - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 1 - type: Transform - uid: 410 components: - - pos: 5.5,-3.5 + - type: Transform + pos: 5.5,-3.5 parent: 1 - type: Transform - uid: 411 components: - - pos: 8.5,-3.5 + - type: Transform + pos: 8.5,-3.5 parent: 1 - type: Transform - uid: 412 components: - - pos: 8.5,-3.5 + - type: Transform + pos: 8.5,-3.5 parent: 1 - type: Transform - uid: 413 components: - - pos: 12.5,-3.5 + - type: Transform + pos: 12.5,-3.5 parent: 1 - type: Transform - uid: 414 components: - - pos: 11.5,-3.5 + - type: Transform + pos: 11.5,-3.5 parent: 1 - type: Transform - uid: 415 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 1 - type: Transform - uid: 416 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 1 - type: Transform - uid: 418 components: - - pos: 19.5,11.5 + - type: Transform + pos: 19.5,11.5 parent: 1 - type: Transform - uid: 519 components: - - pos: 11.5,11.5 + - type: Transform + pos: 11.5,11.5 parent: 1 - type: Transform - uid: 570 components: - - pos: 15.5,-4.5 + - type: Transform + pos: 15.5,-4.5 parent: 1 - type: Transform - uid: 572 components: - - pos: 12.5,6.5 + - type: Transform + pos: 12.5,6.5 parent: 1 - type: Transform - uid: 573 components: - - pos: 15.5,-0.5 + - type: Transform + pos: 15.5,-0.5 parent: 1 - type: Transform - uid: 574 components: - - pos: 15.5,0.5 + - type: Transform + pos: 15.5,0.5 parent: 1 - type: Transform - uid: 575 components: - - pos: 16.5,0.5 + - type: Transform + pos: 16.5,0.5 parent: 1 - type: Transform - uid: 576 components: - - pos: 19.5,4.5 + - type: Transform + pos: 19.5,4.5 parent: 1 - type: Transform - uid: 577 components: - - pos: 19.5,3.5 + - type: Transform + pos: 19.5,3.5 parent: 1 - type: Transform - proto: CableHV entities: - uid: 48 components: - - pos: 16.5,2.5 + - type: Transform + pos: 16.5,2.5 parent: 1 - type: Transform - uid: 291 components: - - pos: 15.5,1.5 + - type: Transform + pos: 15.5,1.5 parent: 1 - type: Transform - uid: 292 components: - - pos: 16.5,1.5 + - type: Transform + pos: 16.5,1.5 parent: 1 - type: Transform - uid: 296 components: - - pos: 17.5,1.5 + - type: Transform + pos: 17.5,1.5 parent: 1 - type: Transform - uid: 297 components: - - pos: 17.5,0.5 + - type: Transform + pos: 17.5,0.5 parent: 1 - type: Transform - uid: 564 components: - - pos: 15.5,2.5 + - type: Transform + pos: 15.5,2.5 parent: 1 - type: Transform - uid: 579 components: - - pos: 17.5,2.5 + - type: Transform + pos: 17.5,2.5 parent: 1 - type: Transform - proto: CableMV entities: - uid: 293 components: - - pos: 17.5,0.5 + - type: Transform + pos: 17.5,0.5 parent: 1 - type: Transform - uid: 295 components: - - pos: 16.5,0.5 + - type: Transform + pos: 16.5,0.5 parent: 1 - type: Transform - uid: 298 components: - - pos: 15.5,0.5 + - type: Transform + pos: 15.5,0.5 parent: 1 - type: Transform - uid: 299 components: - - pos: 15.5,-0.5 + - type: Transform + pos: 15.5,-0.5 parent: 1 - type: Transform - uid: 300 components: - - pos: 15.5,-1.5 + - type: Transform + pos: 15.5,-1.5 parent: 1 - type: Transform - uid: 301 components: - - pos: 15.5,-2.5 + - type: Transform + pos: 15.5,-2.5 parent: 1 - type: Transform - uid: 302 components: - - pos: 15.5,-3.5 + - type: Transform + pos: 15.5,-3.5 parent: 1 - type: Transform - uid: 571 components: - - pos: 15.5,-4.5 + - type: Transform + pos: 15.5,-4.5 parent: 1 - type: Transform - proto: CableTerminal entities: - uid: 290 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,1.5 parent: 1 - type: Transform - proto: Catwalk entities: - uid: 426 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-0.5 parent: 1 - type: Transform - uid: 427 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,1.5 parent: 1 - type: Transform - uid: 428 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,1.5 parent: 1 - type: Transform - uid: 429 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 16.5,1.5 parent: 1 - type: Transform - uid: 432 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 17.5,0.5 parent: 1 - type: Transform - uid: 433 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 17.5,1.5 parent: 1 - type: Transform - uid: 555 components: - - pos: 15.5,0.5 + - type: Transform + pos: 15.5,0.5 parent: 1 - type: Transform - uid: 556 components: - - pos: 15.5,-0.5 + - type: Transform + pos: 15.5,-0.5 parent: 1 - type: Transform - proto: Chair entities: - uid: 4 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 16.5,9.5 parent: 1 - type: Transform - uid: 282 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,-3.5 parent: 1 - type: Transform - proto: ChairGreyscale entities: - uid: 243 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 1 - type: Transform - proto: ChairOfficeDark entities: - uid: 117 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,10.5 parent: 1 - type: Transform - uid: 212 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,5.5 parent: 1 - type: Transform - uid: 213 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,8.5 parent: 1 - type: Transform - uid: 214 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,10.5 parent: 1 - type: Transform - uid: 278 components: - - pos: 2.5,11.5 + - type: Transform + pos: 2.5,11.5 parent: 1 - type: Transform - proto: ChairPilotSeat entities: - uid: 15 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,1.5 parent: 1 - type: Transform - uid: 19 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,4.5 parent: 1 - type: Transform - uid: 35 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - type: Transform - uid: 40 components: - - pos: 8.5,7.5 + - type: Transform + pos: 8.5,7.5 parent: 1 - type: Transform - uid: 41 components: - - pos: 9.5,7.5 + - type: Transform + pos: 9.5,7.5 parent: 1 - type: Transform - uid: 42 components: - - pos: 10.5,7.5 + - type: Transform + pos: 10.5,7.5 parent: 1 - type: Transform - uid: 44 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - type: Transform - uid: 45 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,4.5 parent: 1 - type: Transform - uid: 46 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,5.5 parent: 1 - type: Transform - uid: 47 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 1 - type: Transform - uid: 50 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,4.5 parent: 1 - type: Transform - uid: 51 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,2.5 parent: 1 - type: Transform - uid: 53 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 1 - type: Transform - uid: 54 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,3.5 parent: 1 - type: Transform - uid: 55 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,5.5 parent: 1 - type: Transform - uid: 58 components: - - pos: 5.5,7.5 + - type: Transform + pos: 5.5,7.5 parent: 1 - type: Transform - uid: 59 components: - - pos: 11.5,7.5 + - type: Transform + pos: 11.5,7.5 parent: 1 - type: Transform - uid: 98 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - type: Transform - uid: 100 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,3.5 parent: 1 - type: Transform - uid: 123 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 1 - type: Transform - uid: 126 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - type: Transform - uid: 154 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 1 - type: Transform - uid: 155 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 1 - type: Transform - uid: 156 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,1.5 parent: 1 - type: Transform - uid: 219 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,-1.5 parent: 1 - type: Transform - uid: 220 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,-2.5 parent: 1 - type: Transform - uid: 239 components: - - pos: 6.5,7.5 + - type: Transform + pos: 6.5,7.5 parent: 1 - type: Transform - uid: 251 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,4.5 parent: 1 - type: Transform - uid: 262 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,3.5 parent: 1 - type: Transform - uid: 304 components: - - pos: 3.5,7.5 + - type: Transform + pos: 3.5,7.5 parent: 1 - type: Transform - uid: 354 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,2.5 parent: 1 - type: Transform - uid: 508 components: - - pos: 4.5,7.5 + - type: Transform + pos: 4.5,7.5 parent: 1 - type: Transform - uid: 513 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 1 - type: Transform - uid: 514 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,5.5 parent: 1 - type: Transform - uid: 515 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,4.5 parent: 1 - type: Transform - uid: 516 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 1 - type: Transform - uid: 517 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 13.5,3.5 parent: 1 - type: Transform - uid: 518 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,3.5 parent: 1 - type: Transform - uid: 543 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 1 - type: Transform - uid: 546 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,2.5 parent: 1 - type: Transform - uid: 547 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,6.5 parent: 1 - type: Transform - uid: 565 components: - - pos: 13.5,7.5 + - type: Transform + pos: 13.5,7.5 parent: 1 - type: Transform - uid: 566 components: - - pos: 12.5,7.5 + - type: Transform + pos: 12.5,7.5 parent: 1 - type: Transform - proto: CigaretteSpent entities: - uid: 558 components: - - pos: 19.002337,9.878916 + - type: Transform + pos: 19.002337,9.878916 parent: 1 - type: Transform - uid: 568 components: - - pos: 14.886385,-1.0698383 + - type: Transform + pos: 14.886385,-1.0698383 parent: 1 - type: Transform - proto: CigPackRed entities: - uid: 217 components: - - pos: 17.342344,3.6574845 + - type: Transform + pos: 17.342344,3.6574845 parent: 1 - type: Transform - proto: ClosetEmergencyFilledRandom entities: - uid: 86 components: - - pos: 6.5,11.5 + - type: Transform + pos: 6.5,11.5 parent: 1 - type: Transform - uid: 246 components: - - pos: 15.5,3.5 + - type: Transform + pos: 15.5,3.5 parent: 1 - type: Transform - uid: 264 components: - - pos: 6.5,10.5 + - type: Transform + pos: 6.5,10.5 parent: 1 - type: Transform - proto: ClosetFireFilled entities: - uid: 88 components: - - pos: 6.5,9.5 + - type: Transform + pos: 6.5,9.5 parent: 1 - type: Transform - uid: 269 components: - - pos: 15.5,7.5 + - type: Transform + pos: 15.5,7.5 parent: 1 - type: Transform - proto: ClosetMaintenanceFilledRandom entities: - uid: 419 components: - - pos: 12.5,11.5 + - type: Transform + pos: 12.5,11.5 parent: 1 - type: Transform - uid: 533 components: - - pos: 9.5,10.5 + - type: Transform + pos: 9.5,10.5 parent: 1 - type: Transform - proto: ClosetWallEmergencyFilledRandom entities: - uid: 273 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-4.5 parent: 1 - type: Transform - proto: ClothingBackpackDuffelSurgeryFilled entities: - uid: 234 components: - - pos: 5.4924736,-3.3224797 + - type: Transform + pos: 5.4924736,-3.3224797 parent: 1 - type: Transform - proto: ClothingMaskBreath entities: - uid: 509 components: - - pos: 18.746365,3.4395046 + - type: Transform + pos: 18.746365,3.4395046 parent: 1 - type: Transform - proto: ComputerAlert entities: - uid: 202 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,9.5 parent: 1 - type: Transform - proto: ComputerComms entities: - uid: 204 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,6.5 parent: 1 - type: Transform - proto: ComputerCrewMonitoring entities: - uid: 207 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,10.5 parent: 1 - type: Transform - proto: ComputerEmergencyShuttle entities: - uid: 203 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,5.5 parent: 1 - type: Transform - proto: ComputerStationRecords entities: - uid: 206 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,4.5 parent: 1 - type: Transform - proto: ComputerSurveillanceWirelessCameraMonitor entities: - uid: 205 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,8.5 parent: 1 - type: Transform - proto: CrateEngineeringToolbox entities: - uid: 87 components: - - pos: 12.5,9.5 + - type: Transform + pos: 12.5,9.5 parent: 1 - type: Transform - proto: CrateFilledSpawner entities: - uid: 10 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 1 - type: Transform - uid: 326 components: - - pos: 11.5,9.5 + - type: Transform + pos: 11.5,9.5 parent: 1 - type: Transform - uid: 361 components: - - pos: 9.5,9.5 + - type: Transform + pos: 9.5,9.5 parent: 1 - type: Transform - uid: 481 components: - - pos: 11.5,11.5 + - type: Transform + pos: 11.5,11.5 parent: 1 - type: Transform - uid: 495 components: - - pos: 10.5,9.5 + - type: Transform + pos: 10.5,9.5 parent: 1 - type: Transform - proto: CrateMaterialSteel entities: - uid: 504 components: - - pos: 9.5,11.5 + - type: Transform + pos: 9.5,11.5 parent: 1 - type: Transform - proto: Crowbar entities: - uid: 335 components: - - pos: 5.5403957,-2.8794582 + - type: Transform + pos: 5.5403957,-2.8794582 parent: 1 - type: Transform - proto: CrowbarRed entities: - uid: 169 components: - - pos: 1.545907,-1.5395434 + - type: Transform + pos: 1.545907,-1.5395434 parent: 1 - type: Transform - uid: 510 components: - - pos: 18.35574,3.5332546 + - type: Transform + pos: 18.35574,3.5332546 parent: 1 - type: Transform - uid: 548 components: - - pos: 3.561532,-1.6020434 + - type: Transform + pos: 3.561532,-1.6020434 parent: 1 - type: Transform - proto: DefibrillatorCabinetFilled entities: - uid: 592 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-4.5 parent: 1 - type: Transform - uid: 593 components: - - pos: 5.5,8.5 + - type: Transform + pos: 5.5,8.5 parent: 1 - type: Transform - proto: EmergencyLight entities: - uid: 263 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-3.5 parent: 1 - type: Transform - uid: 268 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,4.5 parent: 1 - type: Transform - uid: 521 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,6.5 parent: 1 - type: Transform - uid: 522 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 1 - type: Transform - uid: 523 components: - - pos: 4.5,0.5 + - type: Transform + pos: 4.5,0.5 parent: 1 - type: Transform - uid: 524 components: - - pos: 10.5,0.5 + - type: Transform + pos: 10.5,0.5 parent: 1 - type: Transform - uid: 525 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,9.5 parent: 1 - type: Transform - proto: ExtinguisherCabinetFilled entities: - uid: 221 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,8.5 parent: 1 - type: Transform - uid: 222 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-2.5 parent: 1 - type: Transform - uid: 317 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 19.5,12.5 parent: 1 - type: Transform - uid: 324 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 1 - type: Transform - uid: 589 components: - - pos: 10.5,5.5 + - type: Transform + pos: 10.5,5.5 parent: 1 - type: Transform - uid: 590 components: - - pos: 4.5,1.5 + - type: Transform + pos: 4.5,1.5 parent: 1 - type: Transform - uid: 591 components: - - pos: 6.5,8.5 + - type: Transform + pos: 6.5,8.5 parent: 1 - type: Transform - proto: FireAxeCabinetFilled entities: - uid: 215 components: - - pos: 17.5,8.5 + - type: Transform + pos: 17.5,8.5 parent: 1 - type: Transform - proto: FoodBoxDonut entities: - uid: 195 components: - - pos: 1.4663568,11.604567 + - type: Transform + pos: 1.4663568,11.604567 parent: 1 - type: Transform - proto: GasOutletInjector entities: - uid: 435 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,-1.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - proto: GasPassiveVent entities: - uid: 436 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,-3.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - proto: GasPipeBend entities: - uid: 158 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,5.5 parent: 1 - type: Transform - uid: 177 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 1 - type: Transform - uid: 190 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,10.5 parent: 1 - type: Transform - uid: 437 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,-1.5 parent: 1 - type: Transform - uid: 438 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-3.5 parent: 1 - type: Transform - uid: 439 components: - - pos: 14.5,-2.5 + - type: Transform + pos: 14.5,-2.5 parent: 1 - type: Transform - uid: 441 components: - - pos: 15.5,0.5 + - type: Transform + pos: 15.5,0.5 parent: 1 - type: Transform - uid: 455 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - type: Transform - uid: 498 components: - - pos: 18.5,5.5 + - type: Transform + pos: 18.5,5.5 parent: 1 - type: Transform - proto: GasPipeFourway entities: - uid: 452 components: - - pos: 7.5,0.5 + - type: Transform + pos: 7.5,0.5 parent: 1 - type: Transform - uid: 487 components: - - pos: 14.5,5.5 + - type: Transform + pos: 14.5,5.5 parent: 1 - type: Transform - proto: GasPipeStraight entities: - uid: 173 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - type: Transform - uid: 175 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - type: Transform - uid: 180 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - type: Transform - uid: 256 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,7.5 parent: 1 - type: Transform - uid: 283 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,-3.5 parent: 1 - type: Transform - uid: 284 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,-1.5 parent: 1 - type: Transform - uid: 346 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-0.5 parent: 1 - type: Transform - uid: 440 components: - - pos: 15.5,-0.5 + - type: Transform + pos: 15.5,-0.5 parent: 1 - type: Transform - uid: 442 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,-3.5 parent: 1 - type: Transform - uid: 443 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-2.5 parent: 1 - type: Transform - uid: 445 components: - - pos: 12.5,-1.5 + - type: Transform + pos: 12.5,-1.5 parent: 1 - type: Transform - uid: 446 components: - - pos: 12.5,-0.5 + - type: Transform + pos: 12.5,-0.5 parent: 1 - type: Transform - uid: 448 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,0.5 parent: 1 - type: Transform - uid: 449 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,0.5 parent: 1 - type: Transform - uid: 450 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - type: Transform - uid: 451 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,0.5 parent: 1 - type: Transform - uid: 453 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - type: Transform - uid: 454 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-1.5 parent: 1 - type: Transform - uid: 456 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,0.5 parent: 1 - type: Transform - uid: 457 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - type: Transform - uid: 459 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 1 - type: Transform - uid: 460 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 1 - type: Transform - uid: 461 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 1 - type: Transform - uid: 462 components: - - pos: 2.5,2.5 + - type: Transform + pos: 2.5,2.5 parent: 1 - type: Transform - uid: 463 components: - - pos: 2.5,3.5 + - type: Transform + pos: 2.5,3.5 parent: 1 - type: Transform - uid: 464 components: - - pos: 2.5,4.5 + - type: Transform + pos: 2.5,4.5 parent: 1 - type: Transform - uid: 465 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,5.5 parent: 1 - type: Transform - uid: 469 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 1 - type: Transform - uid: 470 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,3.5 parent: 1 - type: Transform - uid: 471 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,4.5 parent: 1 - type: Transform - uid: 472 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,2.5 parent: 1 - type: Transform - uid: 473 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,5.5 parent: 1 - type: Transform - uid: 476 components: - - pos: 12.5,4.5 + - type: Transform + pos: 12.5,4.5 parent: 1 - type: Transform - uid: 477 components: - - pos: 12.5,3.5 + - type: Transform + pos: 12.5,3.5 parent: 1 - type: Transform - uid: 478 components: - - pos: 12.5,2.5 + - type: Transform + pos: 12.5,2.5 parent: 1 - type: Transform - uid: 479 components: - - pos: 12.5,1.5 + - type: Transform + pos: 12.5,1.5 parent: 1 - type: Transform - uid: 480 components: - - pos: 7.5,6.5 + - type: Transform + pos: 7.5,6.5 parent: 1 - type: Transform - uid: 482 components: - - pos: 7.5,8.5 + - type: Transform + pos: 7.5,8.5 parent: 1 - type: Transform - uid: 483 components: - - pos: 7.5,9.5 + - type: Transform + pos: 7.5,9.5 parent: 1 - type: Transform - uid: 485 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,10.5 parent: 1 - type: Transform - uid: 486 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,10.5 parent: 1 - type: Transform - uid: 488 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,5.5 parent: 1 - type: Transform - uid: 489 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,5.5 parent: 1 - type: Transform - uid: 490 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,5.5 parent: 1 - type: Transform - uid: 491 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,5.5 parent: 1 - type: Transform - uid: 493 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,6.5 parent: 1 - type: Transform - uid: 494 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,7.5 parent: 1 - type: Transform - uid: 549 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,7.5 parent: 1 - type: Transform - proto: GasPipeTJunction entities: - uid: 176 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,7.5 parent: 1 - type: Transform - uid: 444 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-2.5 parent: 1 - type: Transform - uid: 447 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,0.5 parent: 1 - type: Transform - uid: 458 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 1 - type: Transform - proto: GasPort entities: - uid: 289 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,0.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - proto: GasVentPump entities: - uid: 127 components: - - pos: 3.5,10.5 + - type: Transform + pos: 3.5,10.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - uid: 171 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - uid: 492 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,10.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - uid: 499 components: - - pos: 2.5,6.5 + - type: Transform + pos: 2.5,6.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - uid: 500 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,4.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - uid: 501 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,4.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - uid: 502 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-3.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - uid: 503 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-2.5 parent: 1 - type: Transform - - joinedGrid: 1 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 1 - proto: GeneratorBasic15kW entities: - uid: 294 components: - - pos: 15.5,1.5 + - type: Transform + pos: 15.5,1.5 parent: 1 - type: Transform - uid: 520 components: - - pos: 16.5,1.5 + - type: Transform + pos: 16.5,1.5 parent: 1 - type: Transform - proto: GeneratorWallmountAPU entities: - uid: 562 components: - - pos: 15.5,2.5 + - type: Transform + pos: 15.5,2.5 parent: 1 - type: Transform - uid: 563 components: - - pos: 16.5,2.5 + - type: Transform + pos: 16.5,2.5 parent: 1 - type: Transform - uid: 578 components: - - pos: 17.5,2.5 + - type: Transform + pos: 17.5,2.5 parent: 1 - type: Transform - proto: GravityGeneratorMini entities: - uid: 288 components: - - pos: 14.5,-0.5 + - type: Transform + pos: 14.5,-0.5 parent: 1 - type: Transform - proto: Grille entities: - uid: 7 components: - - pos: 0.5,4.5 + - type: Transform + pos: 0.5,4.5 parent: 1 - type: Transform - uid: 8 components: - - pos: 0.5,5.5 + - type: Transform + pos: 0.5,5.5 parent: 1 - type: Transform - uid: 122 components: - - pos: 9.5,-1.5 + - type: Transform + pos: 9.5,-1.5 parent: 1 - type: Transform - uid: 157 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - type: Transform - uid: 161 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,10.5 parent: 1 - type: Transform - uid: 172 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 1 - type: Transform - uid: 198 components: - - pos: 1.5,8.5 + - type: Transform + pos: 1.5,8.5 parent: 1 - type: Transform - uid: 232 components: - - pos: 5.5,-1.5 + - type: Transform + pos: 5.5,-1.5 parent: 1 - type: Transform - uid: 233 components: - - pos: 8.5,-1.5 + - type: Transform + pos: 8.5,-1.5 parent: 1 - type: Transform - uid: 336 components: - - pos: 6.5,-1.5 + - type: Transform + pos: 6.5,-1.5 parent: 1 - type: Transform - uid: 401 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - type: Transform - uid: 497 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,12.5 parent: 1 - type: Transform - uid: 529 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 1 - type: Transform - uid: 530 components: - - pos: 10.5,2.5 + - type: Transform + pos: 10.5,2.5 parent: 1 - type: Transform - uid: 531 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 1 - type: Transform - uid: 532 components: - - pos: 4.5,2.5 + - type: Transform + pos: 4.5,2.5 parent: 1 - type: Transform - uid: 537 components: - - pos: 21.5,9.5 + - type: Transform + pos: 21.5,9.5 parent: 1 - type: Transform - uid: 538 components: - - pos: 21.5,8.5 + - type: Transform + pos: 21.5,8.5 parent: 1 - type: Transform - uid: 539 components: - - pos: 21.5,7.5 + - type: Transform + pos: 21.5,7.5 parent: 1 - type: Transform - uid: 540 components: - - pos: 21.5,6.5 + - type: Transform + pos: 21.5,6.5 parent: 1 - type: Transform - uid: 541 components: - - pos: 21.5,5.5 + - type: Transform + pos: 21.5,5.5 parent: 1 - type: Transform - uid: 544 components: - - pos: 16.5,6.5 + - type: Transform + pos: 16.5,6.5 parent: 1 - type: Transform - uid: 545 components: - - pos: 16.5,4.5 + - type: Transform + pos: 16.5,4.5 parent: 1 - type: Transform - uid: 553 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-1.5 parent: 1 - type: Transform - uid: 554 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-3.5 parent: 1 - type: Transform - proto: Gyroscope entities: - uid: 285 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,1.5 parent: 1 - type: Transform - proto: MaintenanceWeaponSpawner entities: - uid: 334 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 1 - type: Transform - uid: 431 components: - - pos: 11.5,10.5 + - type: Transform + pos: 11.5,10.5 parent: 1 - type: Transform - proto: MedkitBurnFilled entities: - uid: 181 components: - - pos: 3.545907,-1.5707934 + - type: Transform + pos: 3.545907,-1.5707934 parent: 1 - type: Transform - uid: 237 components: - - pos: 5.4778957,-2.3013332 + - type: Transform + pos: 5.4778957,-2.3013332 parent: 1 - type: Transform - proto: MedkitFilled entities: - uid: 119 components: - - pos: 1.514657,-1.5395434 + - type: Transform + pos: 1.514657,-1.5395434 parent: 1 - type: Transform - uid: 187 components: - - pos: 5.4778957,-2.6294582 + - type: Transform + pos: 5.4778957,-2.6294582 parent: 1 - type: Transform - proto: Pen entities: - uid: 507 components: - - pos: 18.69538,11.716711 + - type: Transform + pos: 18.69538,11.716711 parent: 1 - type: Transform - proto: PosterContrabandTools entities: - uid: 560 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,1.5 parent: 1 - type: Transform - proto: PosterLegitCleanliness entities: - uid: 99 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-3.5 parent: 1 - type: Transform - proto: PosterLegitHelpOthers entities: - uid: 559 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 20.5,11.5 parent: 1 - type: Transform - proto: PosterLegitIan entities: - uid: 43 components: - - pos: 20.5,3.5 + - type: Transform + pos: 20.5,3.5 parent: 1 - type: Transform - proto: PosterLegitNanotrasenLogo entities: - uid: 586 components: - - pos: 10.5,1.5 + - type: Transform + pos: 10.5,1.5 parent: 1 - type: Transform - uid: 587 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 1 - type: Transform - uid: 588 components: - - pos: 16.5,7.5 + - type: Transform + pos: 16.5,7.5 parent: 1 - type: Transform - proto: PosterLegitReportCrimes entities: - uid: 347 components: - - pos: 11.5,8.5 + - type: Transform + pos: 11.5,8.5 parent: 1 - type: Transform - proto: PottedPlantRandomPlastic entities: - uid: 218 components: - - pos: 11.5,-3.5 + - type: Transform + pos: 11.5,-3.5 parent: 1 - type: Transform - proto: PowerCellRecharger entities: - uid: 567 components: - - pos: 19.5,3.5 + - type: Transform + pos: 19.5,3.5 parent: 1 - type: Transform - proto: Poweredlight entities: - uid: 163 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-0.5 parent: 1 - type: Transform - uid: 223 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 1 - type: Transform - uid: 230 components: - - pos: 18.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,11.5 parent: 1 - type: Transform - uid: 242 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-2.5 parent: 1 - type: Transform - uid: 254 components: - - pos: 9.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,7.5 parent: 1 - type: Transform - uid: 255 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-3.5 parent: 1 - type: Transform - uid: 257 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,3.5 parent: 1 - type: Transform - uid: 474 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 1 - type: Transform - uid: 475 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,3.5 parent: 1 - type: Transform - uid: 561 components: - - pos: 3.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,11.5 parent: 1 - type: Transform - uid: 594 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,-2.5 parent: 1 - type: Transform - proto: PoweredSmallLight entities: - uid: 60 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,9.5 parent: 1 - type: Transform - uid: 183 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,7.5 parent: 1 - type: Transform - uid: 189 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-3.5 parent: 1 - type: Transform - uid: 244 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,6.5 parent: 1 - type: Transform - uid: 247 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,3.5 parent: 1 - type: Transform - uid: 250 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,11.5 parent: 1 - type: Transform - uid: 258 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,1.5 parent: 1 - type: Transform - uid: 279 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,7.5 parent: 1 - type: Transform - uid: 343 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,3.5 parent: 1 - type: Transform - uid: 344 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,3.5 parent: 1 - type: Transform - proto: Rack entities: - uid: 13 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 1 - type: Transform - uid: 208 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,7.5 parent: 1 - type: Transform - uid: 281 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 - type: Transform - uid: 421 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 14.5,10.5 parent: 1 - type: Transform - proto: SalvageMaterialCrateSpawner entities: - uid: 484 components: - - pos: 10.5,10.5 + - type: Transform + pos: 10.5,10.5 parent: 1 - type: Transform - proto: Screen entities: - uid: 270 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,-0.5 parent: 1 - type: Transform - uid: 271 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,12.5 parent: 1 - type: Transform - uid: 272 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,12.5 parent: 1 - type: Transform - uid: 466 components: - - pos: 4.5,3.5 + - type: Transform + pos: 4.5,3.5 parent: 1 - type: Transform - uid: 512 components: - - pos: 10.5,3.5 + - type: Transform + pos: 10.5,3.5 parent: 1 - type: Transform - uid: 542 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,12.5 parent: 1 - type: Transform - proto: ShotGunCabinetFilled entities: - uid: 585 components: - - pos: 3.5,12.5 + - type: Transform + pos: 3.5,12.5 parent: 1 - type: Transform - proto: ShuttleWindow entities: - uid: 56 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,4.5 parent: 1 - type: Transform - uid: 57 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 1 - type: Transform - uid: 82 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,10.5 parent: 1 - type: Transform - uid: 101 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-3.5 parent: 1 - type: Transform - uid: 102 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-1.5 parent: 1 - type: Transform - uid: 140 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.5,9.5 parent: 1 - type: Transform - uid: 141 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.5,8.5 parent: 1 - type: Transform - uid: 142 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,7.5 parent: 1 - type: Transform - uid: 143 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,6.5 parent: 1 - type: Transform - uid: 144 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,5.5 parent: 1 - type: Transform - uid: 150 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 16.5,4.5 parent: 1 - type: Transform - uid: 160 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - type: Transform - uid: 162 components: - - pos: 16.5,6.5 + - type: Transform + pos: 16.5,6.5 parent: 1 - type: Transform - uid: 235 components: - - pos: 5.5,-1.5 + - type: Transform + pos: 5.5,-1.5 parent: 1 - type: Transform - uid: 252 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,2.5 parent: 1 - type: Transform - uid: 260 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,4.5 parent: 1 - type: Transform - uid: 267 components: - - pos: 8.5,-1.5 + - type: Transform + pos: 8.5,-1.5 parent: 1 - type: Transform - uid: 275 components: - - pos: 6.5,-1.5 + - type: Transform + pos: 6.5,-1.5 parent: 1 - type: Transform - uid: 327 components: - - pos: 9.5,-1.5 + - type: Transform + pos: 9.5,-1.5 parent: 1 - type: Transform - uid: 345 components: - - pos: 1.5,8.5 + - type: Transform + pos: 1.5,8.5 parent: 1 - type: Transform - uid: 402 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - type: Transform - uid: 408 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 1 - type: Transform - uid: 423 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,12.5 parent: 1 - type: Transform - uid: 551 components: - - pos: 0.5,5.5 + - type: Transform + pos: 0.5,5.5 parent: 1 - type: Transform - uid: 552 components: - - pos: 0.5,4.5 + - type: Transform + pos: 0.5,4.5 parent: 1 - type: Transform - proto: Sink entities: - uid: 467 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 1 - type: Transform - proto: SMESBasic entities: - uid: 287 components: - - pos: 17.5,1.5 + - type: Transform + pos: 17.5,1.5 parent: 1 - type: Transform - proto: SpawnMobMedibot entities: - uid: 584 components: - - pos: 8.5,-2.5 + - type: Transform + pos: 8.5,-2.5 parent: 1 - type: Transform - proto: StasisBed entities: - uid: 224 components: - - pos: 9.5,-2.5 + - type: Transform + pos: 9.5,-2.5 parent: 1 - type: Transform - uid: 303 components: - - pos: 9.5,-3.5 + - type: Transform + pos: 9.5,-3.5 parent: 1 - type: Transform - proto: SubstationBasic entities: - uid: 286 components: - - pos: 17.5,0.5 + - type: Transform + pos: 17.5,0.5 parent: 1 - type: Transform - proto: SuitStorageEVA entities: - uid: 333 components: - - pos: 14.5,11.5 + - type: Transform + pos: 14.5,11.5 parent: 1 - type: Transform - uid: 550 components: - - pos: 14.5,9.5 + - type: Transform + pos: 14.5,9.5 parent: 1 - type: Transform - proto: Table entities: - uid: 209 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,3.5 parent: 1 - type: Transform - uid: 211 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,3.5 parent: 1 - type: Transform - uid: 216 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,11.5 parent: 1 - type: Transform - uid: 226 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-2.5 parent: 1 - type: Transform - uid: 227 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - type: Transform - uid: 505 components: - - pos: 17.5,3.5 + - type: Transform + pos: 17.5,3.5 parent: 1 - type: Transform - uid: 569 components: - - pos: 14.5,-3.5 + - type: Transform + pos: 14.5,-3.5 parent: 1 - type: Transform - proto: TableReinforced entities: - uid: 404 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,10.5 parent: 1 - type: Transform - uid: 534 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,11.5 parent: 1 - type: Transform - proto: Thruster entities: - uid: 67 components: - - pos: 2.5,13.5 + - type: Transform + pos: 2.5,13.5 parent: 1 - type: Transform - uid: 68 components: - - pos: 12.5,13.5 + - type: Transform + pos: 12.5,13.5 parent: 1 - type: Transform - uid: 70 components: - - pos: 1.5,13.5 + - type: Transform + pos: 1.5,13.5 parent: 1 - type: Transform - uid: 191 components: - - pos: 10.5,13.5 + - type: Transform + pos: 10.5,13.5 parent: 1 - type: Transform - uid: 194 components: - - pos: 4.5,13.5 + - type: Transform + pos: 4.5,13.5 parent: 1 - type: Transform - uid: 245 components: - - pos: 11.5,13.5 + - type: Transform + pos: 11.5,13.5 parent: 1 - type: Transform - uid: 350 components: - - pos: 13.5,13.5 + - type: Transform + pos: 13.5,13.5 parent: 1 - type: Transform - uid: 362 components: - - pos: 3.5,13.5 + - type: Transform + pos: 3.5,13.5 parent: 1 - type: Transform - uid: 379 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-4.5 parent: 1 - type: Transform - uid: 380 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 16.5,-5.5 parent: 1 - type: Transform - uid: 384 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 17.5,-5.5 parent: 1 - type: Transform - uid: 385 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-3.5 parent: 1 - type: Transform - uid: 386 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 1 - type: Transform - uid: 387 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-5.5 parent: 1 - type: Transform - uid: 388 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-5.5 parent: 1 - type: Transform - uid: 389 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,-5.5 parent: 1 - type: Transform - uid: 390 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-5.5 parent: 1 - type: Transform - uid: 393 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-5.5 parent: 1 - type: Transform - uid: 394 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-5.5 parent: 1 - type: Transform - uid: 395 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-5.5 parent: 1 - type: Transform - uid: 396 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-5.5 parent: 1 - type: Transform - uid: 397 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,0.5 parent: 1 - type: Transform - uid: 405 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,1.5 parent: 1 - type: Transform - uid: 406 components: - - pos: 18.5,13.5 + - type: Transform + pos: 18.5,13.5 parent: 1 - type: Transform - uid: 424 components: - - pos: 17.5,13.5 + - type: Transform + pos: 17.5,13.5 parent: 1 - type: Transform - proto: ToolboxElectricalFilled entities: - uid: 527 components: - - pos: 14.443532,-1.3515654 + - type: Transform + pos: 14.443532,-1.3515654 parent: 1 - type: Transform - proto: ToolboxEmergencyFilled entities: - uid: 511 components: - - pos: 20.51042,7.624368 + - type: Transform + pos: 20.51042,7.624368 parent: 1 - type: Transform - proto: VendingMachineWallMedical entities: - uid: 557 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,2.5 parent: 1 - type: Transform - proto: WallPlastitanium entities: - uid: 166 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,13.5 parent: 1 - type: Transform - uid: 192 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,13.5 parent: 1 - type: Transform - uid: 337 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,13.5 parent: 1 - type: Transform - uid: 377 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,-5.5 parent: 1 - type: Transform - uid: 381 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-5.5 parent: 1 - type: Transform - uid: 391 components: - - pos: 9.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-5.5 parent: 1 - type: Transform - uid: 392 components: - - pos: 13.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-5.5 parent: 1 - type: Transform - uid: 398 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,-0.5 parent: 1 - type: Transform - uid: 400 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,13.5 parent: 1 - type: Transform - proto: WallPlastitaniumDiagonal entities: - uid: 382 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-5.5 parent: 1 - type: Transform - proto: WallShuttle entities: - uid: 2 components: - - pos: 0.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-1.5 parent: 1 - type: Transform - uid: 3 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,8.5 parent: 1 - type: Transform - uid: 9 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,12.5 parent: 1 - type: Transform - uid: 11 components: - - pos: 0.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,8.5 parent: 1 - type: Transform - uid: 21 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,8.5 parent: 1 - type: Transform - uid: 22 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 1 - type: Transform - uid: 24 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,8.5 parent: 1 - type: Transform - uid: 25 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,8.5 parent: 1 - type: Transform - uid: 30 components: - - pos: 9.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,12.5 parent: 1 - type: Transform - uid: 31 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 15.5,-4.5 parent: 1 - type: Transform - uid: 36 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,11.5 parent: 1 - type: Transform - uid: 37 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,10.5 parent: 1 - type: Transform - uid: 38 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,9.5 parent: 1 - type: Transform - uid: 49 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,5.5 parent: 1 - type: Transform - uid: 63 components: - - pos: 4.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-2.5 parent: 1 - type: Transform - uid: 64 components: - - pos: 4.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-1.5 parent: 1 - type: Transform - uid: 69 components: - - pos: 4.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-3.5 parent: 1 - type: Transform - uid: 71 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 - type: Transform - uid: 72 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-4.5 parent: 1 - type: Transform - uid: 73 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-4.5 parent: 1 - type: Transform - uid: 74 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-4.5 parent: 1 - type: Transform - uid: 75 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 1 - type: Transform - uid: 76 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 1 - type: Transform - uid: 77 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,-4.5 parent: 1 - type: Transform - uid: 78 components: - - pos: 10.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-4.5 parent: 1 - type: Transform - uid: 79 components: - - pos: 10.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-3.5 parent: 1 - type: Transform - uid: 80 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 14.5,8.5 parent: 1 - type: Transform - uid: 81 components: - - pos: 10.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-1.5 parent: 1 - type: Transform - uid: 83 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,9.5 parent: 1 - type: Transform - uid: 84 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,8.5 parent: 1 - type: Transform - uid: 85 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,11.5 parent: 1 - type: Transform - uid: 89 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,-1.5 parent: 1 - type: Transform - uid: 90 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-4.5 parent: 1 - type: Transform - uid: 92 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,-4.5 parent: 1 - type: Transform - uid: 93 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,-1.5 parent: 1 - type: Transform - uid: 94 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,-0.5 parent: 1 - type: Transform - uid: 95 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,0.5 parent: 1 - type: Transform - uid: 96 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,1.5 parent: 1 - type: Transform - uid: 97 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,-4.5 parent: 1 - type: Transform - uid: 103 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-2.5 parent: 1 - type: Transform - uid: 104 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 1 - type: Transform - uid: 105 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,-0.5 parent: 1 - type: Transform - uid: 106 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 16.5,3.5 parent: 1 - type: Transform - uid: 107 components: - - pos: 13.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,2.5 parent: 1 - type: Transform - uid: 108 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,2.5 parent: 1 - type: Transform - uid: 109 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 15.5,2.5 parent: 1 - type: Transform - uid: 110 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,2.5 parent: 1 - type: Transform - uid: 111 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-0.5 parent: 1 - type: Transform - uid: 112 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,-2.5 parent: 1 - type: Transform - uid: 113 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,-3.5 parent: 1 - type: Transform - uid: 114 components: - - pos: 18.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,0.5 parent: 1 - type: Transform - uid: 115 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-4.5 parent: 1 - type: Transform - uid: 116 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,-4.5 parent: 1 - type: Transform - uid: 118 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,12.5 parent: 1 - type: Transform - uid: 120 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 14.5,12.5 parent: 1 - type: Transform - uid: 121 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,12.5 parent: 1 - type: Transform - uid: 125 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,8.5 parent: 1 - type: Transform - uid: 129 components: - - pos: 16.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,7.5 parent: 1 - type: Transform - uid: 130 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 1 - type: Transform - uid: 131 components: - - pos: 12.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,8.5 parent: 1 - type: Transform - uid: 132 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,2.5 parent: 1 - type: Transform - uid: 133 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,12.5 parent: 1 - type: Transform - uid: 134 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,12.5 parent: 1 - type: Transform - uid: 135 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,12.5 parent: 1 - type: Transform - uid: 138 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 20.5,11.5 parent: 1 - type: Transform - uid: 139 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,10.5 parent: 1 - type: Transform - uid: 145 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,4.5 parent: 1 - type: Transform - uid: 146 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 20.5,3.5 parent: 1 - type: Transform - uid: 149 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,2.5 parent: 1 - type: Transform - uid: 151 components: - - pos: 18.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,1.5 parent: 1 - type: Transform - uid: 152 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,11.5 parent: 1 - type: Transform - uid: 153 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,9.5 parent: 1 - type: Transform - uid: 159 components: - - pos: 13.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-3.5 parent: 1 - type: Transform - uid: 167 components: - - pos: 0.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,2.5 parent: 1 - type: Transform - uid: 178 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,12.5 parent: 1 - type: Transform - uid: 179 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,12.5 parent: 1 - type: Transform - uid: 182 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,14.5 parent: 1 - type: Transform - uid: 188 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,8.5 parent: 1 - type: Transform - uid: 193 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,8.5 parent: 1 - type: Transform - uid: 225 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 1 - type: Transform - uid: 228 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,12.5 parent: 1 - type: Transform - uid: 229 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - type: Transform - uid: 231 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,12.5 parent: 1 - type: Transform - uid: 236 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - type: Transform - uid: 238 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-2.5 parent: 1 - type: Transform - uid: 240 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,1.5 parent: 1 - type: Transform - uid: 241 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - type: Transform - uid: 249 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,8.5 parent: 1 - type: Transform - uid: 253 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 1 - type: Transform - uid: 261 components: - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,1.5 parent: 1 - type: Transform - uid: 274 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,13.5 parent: 1 - type: Transform - uid: 280 components: - - pos: 1.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-2.5 parent: 1 - type: Transform - uid: 348 components: - - pos: 0.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-2.5 parent: 1 - type: Transform - uid: 349 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,12.5 parent: 1 - type: Transform - uid: 351 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 14.5,13.5 parent: 1 - type: Transform - uid: 352 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 14.5,14.5 parent: 1 - type: Transform - uid: 360 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,12.5 parent: 1 - type: Transform - uid: 378 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-4.5 parent: 1 - type: Transform - uid: 383 components: - - pos: 0.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,0.5 parent: 1 - type: Transform - uid: 403 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,6.5 parent: 1 - type: Transform - uid: 422 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,12.5 parent: 1 - type: Transform - uid: 425 components: - - pos: 2.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-2.5 parent: 1 - type: Transform - uid: 430 components: - - pos: 3.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-2.5 parent: 1 - type: Transform - uid: 468 components: - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,12.5 parent: 1 - type: Transform - uid: 535 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,11.5 parent: 1 - type: Transform - uid: 536 components: - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,10.5 parent: 1 - type: Transform - proto: WallShuttleDiagonal entities: - uid: 136 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,12.5 parent: 1 - type: Transform - uid: 137 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.5,11.5 parent: 1 - type: Transform - uid: 147 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 21.5,3.5 parent: 1 - type: Transform - uid: 148 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 20.5,2.5 parent: 1 - type: Transform - proto: WaterTankFull entities: - uid: 496 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 1 - type: Transform - proto: WeaponCapacitorRecharger entities: - uid: 277 components: - - pos: 1.5,10.5 + - type: Transform + pos: 1.5,10.5 parent: 1 - type: Transform - proto: WeldingFuelTankFull entities: - uid: 266 components: - - pos: 12.5,10.5 + - type: Transform + pos: 12.5,10.5 parent: 1 - type: Transform - proto: WindoorSecureEngineeringLocked entities: - uid: 164 components: - - pos: 14.5,-0.5 + - type: Transform + pos: 14.5,-0.5 parent: 1 - type: Transform - uid: 165 components: - - pos: 15.5,-0.5 + - type: Transform + pos: 15.5,-0.5 parent: 1 - type: Transform ... diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index 8fa0c774bd1..5eb17e54d58 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -616,7 +616,7 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 179 -- proto: AlwaysPoweredLightLED +- proto: AlwaysPoweredWallLight entities: - uid: 59 components: diff --git a/Resources/Maps/aspid.yml b/Resources/Maps/aspid.yml index e3e76367ca6..3dd1a16fd03 100644 --- a/Resources/Maps/aspid.yml +++ b/Resources/Maps/aspid.yml @@ -1,125667 +1,125663 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 17: FloorBlueCircuit - 20: FloorCarpetClown - 29: FloorDark - 30: FloorDarkDiagonal - 32: FloorDarkHerringbone - 33: FloorDarkMini - 34: FloorDarkMono - 36: FloorDarkPavement - 37: FloorDarkPavementVertical - 38: FloorDarkPlastic - 40: FloorDirt - 41: FloorEighties - 44: FloorFreezer - 45: FloorGlass - 48: FloorGrassDark - 54: FloorGreenCircuit - 58: FloorHydro - 62: FloorLino - 64: FloorMetalDiamond - 65: FloorMime - 69: FloorMono - 75: FloorPlastic - 77: FloorReinforced - 89: FloorSteel - 92: FloorSteelCheckerLight - 96: FloorSteelDirty - 97: FloorSteelHerringbone - 99: FloorSteelMini - 100: FloorSteelMono - 101: FloorSteelOffset - 102: FloorSteelPavement - 103: FloorSteelPavementVertical - 104: FloorTechMaint - 105: FloorTechMaint2 - 108: FloorWhite - 109: FloorWhiteDiagonal - 112: FloorWhiteMini - 113: FloorWhiteMono - 117: FloorWhitePlastic - 118: FloorWood - 119: FloorWoodTile - 120: Lattice - 121: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - - type: Transform - pos: 0.13793182,0.57805127 - parent: 6526 - - type: MapGrid - chunks: - -1,-1: - ind: -1,-1 - tiles: eQAAAAAAZAAAAAACZAAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADWQAAAAABZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABYwAAAAACYwAAAAAAYwAAAAABYwAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAZAAAAAADZAAAAAACYwAAAAAAYwAAAAABYwAAAAADYwAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLQAAAAAAWQAAAAADWQAAAAABLQAAAAAAeQAAAAAAZAAAAAAAZAAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABLQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAAAKQAAAAAAeQAAAAAAHQAAAAACLQAAAAAAHQAAAAACHQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAADLQAAAAAAHQAAAAAAHQAAAAACLQAAAAAAKQAAAAAAKQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAABKQAAAAAAeQAAAAAAHQAAAAABLQAAAAAAHQAAAAABHQAAAAACLQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAADHQAAAAABLQAAAAAAHQAAAAABHQAAAAADLQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADFAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: FAAAAAAAFAAAAAAAHQAAAAADLQAAAAAAHQAAAAACHQAAAAADLQAAAAAAHQAAAAADHQAAAAADLQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABLQAAAAAAFAAAAAAAeQAAAAAAIgAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACLQAAAAAAHQAAAAACHQAAAAABLQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAADHQAAAAADLQAAAAAAHQAAAAADHQAAAAACLQAAAAAAQQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAADQQAAAAAAQQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACLQAAAAAAHQAAAAADHQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABLQAAAAAAHQAAAAABHQAAAAADLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAALQAAAAAAHQAAAAADHQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAD - version: 6 - 0,-1: - ind: 0,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAABWQAAAAABWQAAAAABeQAAAAAAIgAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAADWQAAAAAAWQAAAAABeQAAAAAAEQAAAAAAWQAAAAAAWQAAAAACLQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAAAWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAIgAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADLQAAAAAAHQAAAAADZAAAAAABbAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACLQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA - version: 6 - 0,0: - ind: 0,0 - tiles: HQAAAAADHQAAAAACLQAAAAAAHQAAAAACeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAADLQAAAAAAIgAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAZAAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABLQAAAAAAHQAAAAAAIgAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAACIQAAAAADIQAAAAADIQAAAAACHQAAAAACHQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABLQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAACIQAAAAAAIQAAAAABIQAAAAADHQAAAAACIgAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABIQAAAAAAIQAAAAABIQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAACHQAAAAABIQAAAAADIQAAAAABIQAAAAAAHQAAAAADHQAAAAADZAAAAAACWQAAAAAAWQAAAAADWQAAAAACHQAAAAAAHQAAAAACLQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAZAAAAAACZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAD - version: 6 - -1,1: - ind: -1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACHQAAAAACIgAAAAADeQAAAAAAWQAAAAABWQAAAAACIgAAAAAAIgAAAAADIgAAAAADIgAAAAAAIgAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADHQAAAAACIgAAAAACeQAAAAAAWQAAAAABWQAAAAADIgAAAAABIgAAAAAAIgAAAAADIgAAAAABIgAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABLQAAAAAAHQAAAAAAIgAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAcAAAAAAAcAAAAAACcAAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACHQAAAAADIgAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAACeQAAAAAAWQAAAAADLQAAAAAAHQAAAAACeQAAAAAAIQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADZAAAAAABbAAAAAACcAAAAAABcAAAAAABcAAAAAAAbAAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAIQAAAAACWQAAAAACWQAAAAAAWQAAAAACZAAAAAACeQAAAAAAbAAAAAACcAAAAAACcAAAAAADcAAAAAACbAAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAADeQAAAAAAWQAAAAACLQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACcAAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACLQAAAAAAcAAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAADIgAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADZAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADLQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAB - version: 6 - 0,1: - ind: 0,1 - tiles: WQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAcQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADcQAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAcAAAAAAAcAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAABaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAABcAAAAAABcAAAAAAAcAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAADbQAAAAACbAAAAAACeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAbAAAAAABcAAAAAADcAAAAAADcAAAAAACbAAAAAADbAAAAAADbAAAAAADeQAAAAAAbAAAAAACbQAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbQAAAAAAbAAAAAACeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABWQAAAAADeQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAWQAAAAADeQAAAAAAcAAAAAAAcAAAAAAAbAAAAAADeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADWQAAAAABeQAAAAAAcAAAAAAAcAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAWQAAAAACeQAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAbAAAAAAAbAAAAAAA - version: 6 - 1,0: - ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAALQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACZAAAAAACZAAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAZAAAAAACeQAAAAAAWQAAAAABWQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAZAAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAZAAAAAABZAAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACLQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAAAHQAAAAAAWQAAAAABWQAAAAADLQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAALQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAC - version: 6 - 1,-1: - ind: 1,-1 - tiles: EQAAAAAAEQAAAAAAIQAAAAAAIQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAABIQAAAAADIQAAAAABIgAAAAAAIgAAAAABIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAIQAAAAACIQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAHQAAAAABIgAAAAABIgAAAAABHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAaAAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAALQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAOgAAAAAAWQAAAAABOgAAAAAAWQAAAAAAOgAAAAAAWQAAAAAAOgAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABOgAAAAAAWQAAAAADOgAAAAAAWQAAAAAAOgAAAAAAWQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAACWQAAAAABLQAAAAAAOgAAAAAAZAAAAAAAOgAAAAAAWQAAAAAAOgAAAAAAWQAAAAABOgAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADOgAAAAAAWQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAB - version: 6 - 1,1: - ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZgAAAAABZgAAAAAAZgAAAAACZgAAAAADYQAAAAABMAAAAAABMAAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZgAAAAABZgAAAAADZgAAAAACYQAAAAADYQAAAAACMAAAAAADMAAAAAADeQAAAAAAWQAAAAABWQAAAAABLQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZgAAAAABZgAAAAAAYQAAAAACYQAAAAADYQAAAAACZwAAAAABZwAAAAABZAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAMAAAAAADMAAAAAABMAAAAAABYQAAAAABZwAAAAACZwAAAAACZwAAAAACZAAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMAAAAAACMAAAAAABMAAAAAACZwAAAAABZwAAAAABZwAAAAABZwAAAAADZAAAAAACWQAAAAACWQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMAAAAAADMAAAAAAAMAAAAAABZwAAAAAAZwAAAAACZwAAAAABZwAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAACZAAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADLQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAABdQAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAZAAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACbAAAAAAAbAAAAAAAdQAAAAABdQAAAAAAdQAAAAACbAAAAAAAbAAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACLQAAAAAAbAAAAAADbAAAAAAAdQAAAAAAdQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACcQAAAAABeQAAAAAAdQAAAAADdQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAALQAAAAAAbAAAAAAAeQAAAAAAJgAAAAADJgAAAAACJgAAAAADJgAAAAABeQAAAAAAZAAAAAAAWQAAAAABZAAAAAADZAAAAAACZAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAA - version: 6 - -2,-1: - ind: -2,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAALAAAAAAALAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAZAAAAAACZAAAAAACWQAAAAAAWQAAAAABWQAAAAADLAAAAAAALAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACLQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAKQAAAAAAKQAAAAAALQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAALQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAFAAAAAAAFAAAAAAA - version: 6 - -2,1: - ind: -2,1 - tiles: WQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABLQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACIgAAAAAAHQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAWQAAAAACWQAAAAABIgAAAAABHQAAAAACHQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADLQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACWQAAAAADZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAADIQAAAAACeQAAAAAAHQAAAAABHQAAAAABWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACWQAAAAABIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAWQAAAAACWQAAAAAAWQAAAAADZQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAACZQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAA - version: 6 - -2,0: - ind: -2,0 - tiles: WQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAALQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAACQQAAAAAALQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAQQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAASwAAAAADQQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAALQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAADeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADLQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAD - version: 6 - 2,-1: - ind: 2,-1 - tiles: eQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: WQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAD - version: 6 - 2,1: - ind: 2,1 - tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACWQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACIgAAAAADWQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACZAAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACIgAAAAACHQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAC - version: 6 - -3,0: - ind: -3,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAACWQAAAAACeQAAAAAAZAAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABZAAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAZAAAAAADWQAAAAACZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABZAAAAAACWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAZAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAACZAAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADIgAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAD - version: 6 - -3,1: - ind: -3,1 - tiles: JAAAAAAAJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAHQAAAAAAIgAAAAABeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAADIgAAAAADIgAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAIgAAAAADIgAAAAACIgAAAAACIgAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAIgAAAAADIgAAAAAAIgAAAAADIgAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAB - version: 6 - 3,0: - ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,1: - ind: 3,1 - tiles: aQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,2: - ind: 2,2 - tiles: WQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACMAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAMAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAACHQAAAAACHQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAIgAAAAABWQAAAAACWQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAADHQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAABeQAAAAAAJAAAAAADJAAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAdgAAAAACdgAAAAACeQAAAAAA - version: 6 - 3,2: - ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,2: - ind: 1,2 - tiles: bAAAAAAAeQAAAAAAJgAAAAACJgAAAAAAJgAAAAABJgAAAAACeQAAAAAAZAAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADZAAAAAAAWQAAAAACWQAAAAABWQAAAAAAbAAAAAAAeQAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAABeQAAAAAAZAAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABZAAAAAABWQAAAAADWQAAAAAALQAAAAAAbAAAAAAAeQAAAAAAJgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAZAAAAAACWQAAAAACWQAAAAACWQAAAAAAZAAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABZAAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACLQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAACeQAAAAAAWQAAAAABWQAAAAAAcAAAAAADcAAAAAACcAAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAMAAAAAACZwAAAAAAZwAAAAACeQAAAAAAWQAAAAADWQAAAAACcAAAAAACcAAAAAACcAAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAMAAAAAABZwAAAAAAZwAAAAABeQAAAAAAWQAAAAADWQAAAAADcAAAAAAAcAAAAAABcAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAHQAAAAABHQAAAAABJQAAAAACJQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACJQAAAAACJQAAAAABdQAAAAAAdQAAAAACdQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAALQAAAAAAHQAAAAABHQAAAAAAJQAAAAABJQAAAAABeQAAAAAAdQAAAAADdQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADJQAAAAADeQAAAAAAdQAAAAACdQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABLQAAAAAAJAAAAAADJAAAAAADIAAAAAAAIAAAAAAA - version: 6 - 3,-1: - ind: 3,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,-1: - ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAADWQAAAAAA - version: 6 - -4,1: - ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJAAAAAABJAAAAAADJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,2: - ind: 0,2 - tiles: WQAAAAAAeQAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAbAAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAACeQAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADbAAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAeQAAAAAAcAAAAAAAcAAAAAAAbAAAAAAAbAAAAAADbAAAAAADcQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAIgAAAAADHQAAAAABIgAAAAAAIQAAAAADIQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABIgAAAAADHQAAAAADIgAAAAABIQAAAAADIQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAB - version: 6 - -1,2: - ind: -1,2 - tiles: QAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADLQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZAAAAAAAZAAAAAACZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADLQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACLQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAD - version: 6 - -2,2: - ind: -2,2 - tiles: WQAAAAABWQAAAAADeQAAAAAAWQAAAAAAZQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACLQAAAAAAWQAAAAABWQAAAAADWQAAAAAAZQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAALQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACZAAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAYAAAAAAAIgAAAAADHQAAAAABHQAAAAAAIgAAAAABHQAAAAADHQAAAAABIgAAAAADIgAAAAABIgAAAAABIgAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAA - version: 6 - -3,2: - ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABJAAAAAACJAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMAAAAAABMAAAAAACMAAAAAABMAAAAAADWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAADZAAAAAACWQAAAAADaQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAKAAAAAAAYAAAAAAAKAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABYAAAAAAAKAAAAAADYAAAAAAAKAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAYAAAAAAAKAAAAAABYAAAAAAAKAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA - version: 6 - -4,2: - ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJAAAAAABJAAAAAAAJAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA - version: 6 - 0,-2: - ind: 0,-2 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAIQAAAAACIQAAAAAAHQAAAAADZAAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABIQAAAAABIQAAAAAAHQAAAAAAZAAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABIgAAAAABIgAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABIgAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAZAAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAABaAAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAABeQAAAAAAeQAAAAAAIgAAAAAB - version: 6 - -1,-2: - ind: -1,-2 - tiles: eQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAACIgAAAAACIgAAAAACIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAACIgAAAAABIgAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAACIgAAAAACIgAAAAADIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAACIgAAAAADIgAAAAACIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAADIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -3,3: - ind: -3,3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,3: - ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,3: - ind: -2,3 - tiles: YAAAAAAAYAAAAAAAIgAAAAACHQAAAAACHQAAAAABIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAADIgAAAAADIgAAAAABIgAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADYAAAAAAAYAAAAAAAeQAAAAAAIgAAAAACIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAZAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADdgAAAAADeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -1,3: - ind: -1,3 - tiles: eQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAIgAAAAACHQAAAAADHQAAAAADIgAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAACIQAAAAAAIQAAAAACHQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAIgAAAAABIgAAAAABeQAAAAAAWQAAAAADLQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACIgAAAAABHQAAAAAAHQAAAAABIgAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADWQAAAAAAWQAAAAAAWQAAAAABLQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABIgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAZAAAAAABWQAAAAADWQAAAAAAWQAAAAACHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLQAAAAAA - version: 6 - 0,3: - ind: 0,3 - tiles: WQAAAAABeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAIgAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADIgAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABIgAAAAABHQAAAAADHQAAAAADHQAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAdgAAAAABdwAAAAAAdwAAAAABdgAAAAABdgAAAAADdwAAAAADdwAAAAACdgAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAaQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAABdgAAAAABdwAAAAABdwAAAAABdwAAAAAAdwAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAACdwAAAAABdgAAAAABdgAAAAABdwAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 1,3: - ind: 1,3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAHQAAAAACHQAAAAADHQAAAAABJQAAAAACJQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAALQAAAAAAHQAAAAABHQAAAAAAJQAAAAAAJQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAIgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,3: - ind: 2,3 - tiles: HQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAHQAAAAACHQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAADJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABLQAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,4: - ind: -1,4 - tiles: aAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAABWQAAAAACWQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAADWQAAAAABWQAAAAABeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAADcAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAABcAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADLQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADLQAAAAAAHQAAAAADLQAAAAAAHQAAAAACLQAAAAAA - version: 6 - -2,4: - ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,4: - ind: 0,4 - tiles: WQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADLQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAALQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAALQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAADdgAAAAABdgAAAAADdgAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAIgAAAAACeQAAAAAAHQAAAAADHQAAAAAAdgAAAAADdgAAAAACdgAAAAACHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADLQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABLQAAAAAAHQAAAAABLQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,4: - ind: 1,4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,5: - ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACLQAAAAAAHQAAAAAAHQAAAAACHQAAAAACLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADLQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACLQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAHQAAAAAAHQAAAAADLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,5: - ind: 0,5 - tiles: HQAAAAABHQAAAAABHQAAAAADLQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABLQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABLQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABIgAAAAADWQAAAAABWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAC - version: 6 - 1,-2: - ind: 1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADIQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAIQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABIQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAEQAAAAAAEQAAAAAAIQAAAAADIQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIQAAAAADIQAAAAAAIgAAAAACIgAAAAABIgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,-3: - ind: 1,-3 - tiles: eAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-3: - ind: 0,-3 - tiles: eQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAIgAAAAABIgAAAAAAHQAAAAACHQAAAAABIgAAAAABIgAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACZAAAAAACeQAAAAAAeQAAAAAA - version: 6 - -1,-3: - ind: -1,-3 - tiles: eQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAcAAAAAAAcAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAcAAAAAAAcAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -1,-4: - ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 0,-4: - ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-5: - ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-5: - ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,3: - ind: 3,3 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,4: - ind: 2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,4: - ind: 3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,4: - ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,4: - ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: Shuttle - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 4878: -43,28 - 4879: -43,27 - 4898: -46,27 - 4899: -46,28 - 5069: -9,-53 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 5068: -6,61 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 5007: -6,-31 - 5008: -6,-29 - 5009: -6,-27 - 5010: -6,-23 - 5011: -6,-21 - 5012: -6,-25 - 5070: 7,-53 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 1139: -16,-27 - 1140: -15,-27 - 1141: -16,-28 - 1142: -15,-28 - 1143: -16,-29 - 1144: -15,-29 - 1145: -16,-30 - 1146: -15,-30 - 1147: -14,-27 - 1148: -14,-28 - 1149: -14,-29 - 1150: -14,-30 - 1528: 4,-37 - 1529: 5,-37 - 1530: 8,-37 - 1531: 9,-37 - 1820: 7,-22 - 2198: 27,23 - 2199: 27,26 - 2200: 48,42 - 2201: 27,43 - 2202: 18,36 - 2203: 7,34 - 2204: -10,23 - 2205: -22,25 - 2206: -16,30 - 2207: -25,38 - 2208: -31,22 - 2209: -46,44 - 2210: -18,53 - 2211: 4,52 - 2212: -4,57 - 2213: -3,68 - 2214: 2,70 - 2215: -8,76 - 2216: -2,27 - 2217: 45,12 - 2218: 33,7 - 2219: 45,-7 - 2220: 17,-4 - 2221: 10,-16 - 2222: -8,-15 - 2223: 3,2 - 2224: -14,1 - 2225: 11,7 - 2226: 7,-6 - 2227: -18,-20 - 2228: -39,-3 - 2229: -46,12 - 2230: -35,16 - 2231: -24,15 - 2232: 14,47 - 2233: -34,-9 - 4863: -37,24 - 5100: 16,29 - - node: - color: '#52B4E996' - id: BotGreyscale - decals: - 459: -2,72 - 460: -1,72 - 461: 0,72 - 1807: 1,47 - 1808: 1,46 - 1809: 3,47 - 1810: 3,46 - 1811: 18,-11 - 1812: 19,-11 - 1813: 14,-24 - 1814: 15,-24 - - node: - color: '#52B4E996' - id: BotLeftGreyscale - decals: - 2074: 27,5 - 2075: 27,6 - 2076: 27,4 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 1078: -15,20 - 1079: -15,19 - 1080: -15,18 - 1081: -15,17 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: BotRight - decals: - 4882: -41,24 - 4883: -41,22 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 673: -6,78 - 674: -6,81 - 675: 4,81 - 676: 4,78 - 677: 1,79 - 678: -3,79 - 679: -1,79 - 680: -1,80 - 681: -5,79 - 682: -5,80 - 683: 3,79 - 684: 3,80 - 685: 27,43 - 686: 27,45 - 687: 27,47 - 688: 27,49 - 689: 34,49 - 690: 34,47 - 691: 34,45 - 692: 34,43 - 1289: -1,10 - 1290: -1,-3 - 1291: -1,-5 - 1292: 2,-5 - 1293: 2,-3 - 1294: 2,0 - 1295: 2,2 - 1296: 2,5 - 1297: 2,7 - 1298: 2,10 - 1299: -4,10 - 1300: -4,7 - 1301: -1,7 - 1302: -1,5 - 1303: -4,5 - 1304: -13,2 - 1305: -13,0 - 1306: -10,0 - 1307: -10,2 - 1308: -7,2 - 1309: -7,0 - 1310: -4,2 - 1311: -1,0 - 1312: -1,2 - 1313: -4,-5 - 1314: -4,-3 - 4755: -13,-5 - 4756: -13,-3 - 4757: -10,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 32: -2,80 - 38: 2,80 - 39: 1,83 - 40: -2,83 - 41: 5,82 - 42: -5,82 - 1063: -16,22 - 1441: 9,9 - 1610: 6,-25 - 1704: 18,-22 - 1747: -11,-18 - 1803: 5,47 - 2062: 13,54 - 2097: 18,-34 - 4759: 19,-14 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 31: -4,80 - 37: 0,80 - 43: -7,82 - 44: -3,83 - 45: 0,83 - 46: 3,82 - 1061: -18,22 - 1445: 7,9 - 1587: 4,-18 - 1607: 5,-25 - 1734: 18,-14 - 1804: 4,47 - 2063: 8,54 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 1446: 9,6 - 1608: 6,-26 - 1705: 18,-26 - 1733: 19,-18 - 1805: 5,46 - 1821: 7,-27 - 2064: 13,53 - 2094: 18,-38 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 567: -20,44 - 1444: 7,6 - 1609: 5,-26 - 1732: 18,-18 - 1806: 4,46 - 2065: 8,53 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndE - decals: - 591: -13,49 - 594: -15,59 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndN - decals: - 1697: 17,-23 - 1838: -4,83 - 1839: -1,83 - 1840: 2,83 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndS - decals: - 1698: 17,-25 - 1835: -4,82 - 1836: -1,82 - 1837: 2,82 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndW - decals: - 592: -14,49 - 593: -16,59 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 1741: 13,-25 - 1790: 0,45 - 2096: 18,-35 - 2098: 17,-34 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 2132: 29,2 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 27: -3,77 - 414: -3,76 - 1717: 17,-10 - 1742: 13,-23 - 1789: 0,48 - 2095: 18,-37 - 2099: 17,-38 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 28: 1,77 - 415: 1,76 - 1718: 20,-10 - 2131: 29,7 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 22: -3,76 - 30: -2,79 - 35: 2,79 - 49: -2,82 - 50: 5,81 - 60: 1,82 - 432: 0,74 - 433: 0,73 - 434: 0,71 - 435: 0,70 - 523: -9,51 - 524: -9,52 - 525: -9,53 - 526: -9,54 - 527: -9,55 - 528: -9,56 - 529: -9,57 - 579: -7,47 - 580: -7,48 - 581: -7,49 - 582: -7,50 - 624: -6,57 - 625: -6,56 - 626: -6,55 - 627: -6,54 - 628: -6,53 - 629: -6,52 - 978: -10,27 - 979: -10,28 - 980: -10,29 - 981: -10,30 - 982: -10,31 - 983: -10,32 - 984: -10,33 - 985: -10,34 - 990: -15,20 - 991: -15,19 - 992: -15,18 - 993: -15,17 - 1064: -16,21 - 1127: -14,27 - 1128: -14,28 - 1442: 9,8 - 1443: 9,7 - 1538: 13,-24 - 1700: 17,-24 - 1701: 18,-24 - 1702: 18,-23 - 1703: 18,-25 - 1735: 19,-15 - 1736: 19,-16 - 1737: 19,-17 - 1745: -11,-19 - 1746: -11,-20 - 1787: 0,47 - 1788: 0,46 - 1822: 7,-26 - 1823: 7,-25 - 1824: 7,-24 - 1918: -37,28 - 1919: -37,27 - 1920: -37,23 - 1921: -37,26 - 1922: -37,25 - 1956: -35,-1 - 1957: -35,-2 - 1958: -35,-3 - 1959: -35,-4 - 1960: -35,-5 - 1961: -35,-6 - 4861: -37,24 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 12: -2,76 - 13: -1,76 - 14: 0,76 - 33: -3,80 - 34: 1,80 - 422: 2,74 - 423: 3,74 - 424: 4,74 - 425: 5,74 - 426: 6,74 - 427: 7,74 - 506: -20,42 - 507: -19,42 - 508: -18,42 - 509: -17,42 - 510: -16,42 - 596: -5,49 - 604: -4,49 - 610: -23,48 - 611: -22,48 - 636: -15,50 - 637: -14,50 - 638: -13,50 - 639: -12,50 - 1062: -17,22 - 1131: 18,34 - 1132: 19,34 - 1133: 20,34 - 1134: 21,34 - 1450: 8,9 - 1588: 5,-18 - 1589: 6,-18 - 1590: 7,-18 - 1707: 17,-22 - 1748: -12,-18 - 1749: -13,-18 - 1750: -14,-18 - 1751: -15,-18 - 1847: -37,11 - 1848: -36,11 - 1849: -35,11 - 1979: 26,-12 - 1980: 27,-12 - 1981: 28,-12 - 1982: 29,-12 - 1983: 30,-12 - 2030: 41,44 - 2031: 42,44 - 2032: 43,44 - 2033: 44,44 - 2066: 9,54 - 2067: 10,54 - 2068: 11,54 - 2069: 12,54 - 4776: 22,-17 - 4777: 21,-17 - 4778: 20,-17 - 4779: 20,-15 - 4780: 21,-15 - 4781: 22,-15 - 4782: 15,-15 - 4783: 16,-15 - 4784: 17,-15 - 4785: 15,-17 - 4786: 16,-17 - 4787: 17,-17 - 4824: 18,-13 - 4825: 19,-13 - 4886: -46,28 - 4887: -45,28 - - node: - color: '#D4D4D479' - id: BrickTileDarkLineS - decals: - 4818: 18,-12 - 4819: 19,-12 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 24: -2,77 - 25: -1,77 - 26: 0,77 - 386: -3,76 - 387: 1,76 - 388: 2,76 - 389: 3,76 - 390: 4,76 - 391: 5,76 - 392: 6,76 - 393: 7,76 - 394: -4,76 - 395: -5,76 - 396: -6,76 - 397: -7,76 - 398: -8,76 - 399: -9,76 - 416: 2,70 - 417: 3,70 - 418: 4,70 - 419: 5,70 - 420: 6,70 - 421: 7,70 - 485: -4,44 - 486: -5,44 - 487: -6,44 - 488: -7,44 - 489: -8,44 - 490: -9,44 - 491: -10,44 - 492: -11,44 - 493: -12,44 - 494: -13,44 - 495: -14,44 - 496: -15,44 - 497: -16,44 - 498: -17,44 - 499: -18,44 - 500: -19,44 - 501: -20,40 - 502: -19,40 - 503: -18,40 - 504: -17,40 - 505: -16,40 - 595: -5,49 - 605: -4,49 - 608: -23,47 - 609: -22,47 - 616: -17,58 - 617: -16,58 - 618: -15,58 - 619: -14,58 - 640: -15,48 - 641: -14,48 - 642: -13,48 - 643: -12,48 - 1086: -10,17 - 1087: -9,17 - 1088: -8,17 - 1447: 8,6 - 1706: 17,-26 - 1715: 18,-10 - 1716: 19,-10 - 1825: 6,-27 - 1826: 5,-27 - 1827: 4,-27 - 1844: -37,9 - 1845: -36,9 - 1846: -35,9 - 1974: 26,-14 - 1975: 27,-14 - 1976: 28,-14 - 1977: 29,-14 - 1978: 30,-14 - 2026: 41,42 - 2027: 42,42 - 2028: 43,42 - 2029: 44,42 - 2070: 9,53 - 2071: 10,53 - 2072: 11,53 - 2073: 12,53 - 4764: 22,-15 - 4765: 21,-15 - 4766: 20,-15 - 4767: 17,-15 - 4768: 16,-15 - 4769: 15,-15 - 4770: 15,-17 - 4771: 16,-17 - 4772: 17,-17 - 4773: 20,-17 - 4774: 21,-17 - 4775: 22,-17 - 4822: 18,-13 - 4823: 19,-13 - 4884: -45,27 - 4885: -46,27 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 23: 1,76 - 29: -4,79 - 36: 0,79 - 47: -7,81 - 48: -3,82 - 61: 0,82 - 428: -2,70 - 429: -2,71 - 430: -2,73 - 431: -2,74 - 511: -20,45 - 512: -20,46 - 513: -20,47 - 514: -20,48 - 515: -20,49 - 516: -20,50 - 517: -20,51 - 518: -20,52 - 519: -20,53 - 520: -17,54 - 521: -17,56 - 522: -17,55 - 530: -12,57 - 970: -12,27 - 971: -12,28 - 972: -12,29 - 973: -12,30 - 974: -12,31 - 975: -12,32 - 976: -12,33 - 977: -12,34 - 1056: -19,17 - 1057: -19,18 - 1058: -19,19 - 1059: -19,20 - 1060: -18,21 - 1448: 7,7 - 1449: 7,8 - 1532: 21,-27 - 1591: 4,-19 - 1592: 4,-20 - 1593: 4,-21 - 1594: 4,-22 - 1699: 17,-24 - 1738: 18,-17 - 1739: 18,-16 - 1740: 18,-15 - 1759: -14,-38 - 1760: -14,-37 - 1761: -14,-36 - 1762: -14,-35 - 1763: -14,-34 - 1764: -14,-33 - 1765: -14,-32 - 1766: -14,-25 - 1767: -14,-24 - 1768: -14,-23 - 1769: -14,-22 - 1912: -40,17 - 1913: -40,18 - 1914: -40,19 - 1915: -40,20 - 1916: -40,29 - 1917: -40,30 - 1950: -37,-1 - 1951: -37,-2 - 1952: -37,-3 - 1953: -37,-4 - 1954: -37,-5 - 1955: -37,-6 - 2129: 29,4 - 2130: 29,5 - 4864: -43,26 - 4865: -43,25 - 4866: -43,24 - 4867: -43,23 - 4868: -43,22 - 4869: -43,21 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelBox - decals: - 654: -4,-13 - 655: -1,-13 - 656: 2,-13 - 657: -1,-9 - 658: -1,18 - 659: -1,21 - 660: -1,24 - 661: -1,27 - 662: -1,30 - 663: -1,33 - 664: -1,41 - 665: -1,44 - 666: -1,46 - 667: -1,49 - 668: -1,53 - 669: -1,56 - 670: -1,60 - 671: -1,63 - 672: -1,66 - 703: 10,67 - 704: 11,68 - 705: 10,69 - 1664: -32,37 - 1665: -32,33 - 1666: -32,30 - 1667: -32,27 - 1668: -32,24 - 1669: -32,21 - 1670: -32,18 - 1671: -32,14 - 1672: -32,10 - 1673: -32,7 - 1674: -32,4 - 1675: -32,1 - 1676: -32,-2 - 1677: -32,-5 - 1678: -32,-9 - 1679: 31,-9 - 1680: 31,-5 - 1681: 31,-2 - 1682: 31,1 - 1683: 31,4 - 1684: 31,7 - 1685: 31,10 - 1686: 31,14 - 1687: 31,18 - 1688: 31,21 - 1689: 31,24 - 1690: 31,27 - 1691: 31,30 - 1692: 31,33 - 1693: 31,37 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 733: 21,42 - 1026: -14,23 - 1196: -10,-13 - 1218: 11,-13 - 1236: -8,-12 - 1633: 4,19 - 1660: -45,41 - 5031: -40,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 734: 19,42 - 916: -22,34 - 1012: -22,25 - 1027: -20,23 - 1197: -13,-13 - 1219: 8,-13 - 1262: 6,-12 - 1644: -6,19 - 1661: -48,41 - 1895: -36,7 - 1940: -4,57 - 2156: 26,18 - 5030: -43,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 731: 21,40 - 1194: -10,-15 - 1217: 11,-15 - 2150: 23,20 - 5033: -40,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 732: 19,40 - 918: -22,32 - 923: -19,30 - 1195: -13,-15 - 1216: 8,-15 - 1896: -36,4 - 1935: -4,52 - 5032: -43,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndN - decals: - 2020: -28,33 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndS - decals: - 2021: -28,30 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 921: -19,32 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 693: 29,40 - 694: 29,41 - 735: 21,41 - 994: -12,17 - 995: -12,18 - 996: -12,19 - 997: -12,20 - 998: -10,21 - 999: -10,22 - 1000: -10,23 - 1025: -14,22 - 1198: -10,-14 - 1220: 11,-14 - 1232: -8,-16 - 1233: -8,-15 - 1234: -8,-14 - 1235: -8,-13 - 1533: 13,-21 - 1534: 13,-22 - 1535: 13,-23 - 1536: 13,-25 - 1537: 13,-26 - 1539: 13,-27 - 1540: 13,-28 - 1541: 13,-29 - 1542: 13,-30 - 1543: 13,-35 - 1544: 13,-36 - 1545: 13,-37 - 1546: 13,-38 - 1630: 4,16 - 1631: 4,17 - 1632: 4,18 - 1663: -45,40 - 1860: -39,-3 - 1861: -39,-2 - 1862: -39,-1 - 1863: -39,0 - 1864: -38,3 - 1865: -38,4 - 1866: -38,5 - 1867: -38,6 - 1868: -38,7 - 1874: -35,1 - 1875: -35,2 - 2022: -28,32 - 2023: -28,31 - 2151: 23,21 - 2152: 23,22 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 736: 20,42 - 911: -21,34 - 912: -20,34 - 913: -19,34 - 914: -18,34 - 915: -17,34 - 1001: -11,25 - 1002: -12,25 - 1003: -13,25 - 1004: -14,25 - 1005: -15,25 - 1006: -16,25 - 1007: -17,25 - 1008: -18,25 - 1009: -19,25 - 1010: -20,25 - 1011: -21,25 - 1202: -12,-13 - 1203: -11,-13 - 1222: 9,-13 - 1223: 10,-13 - 1227: -14,-16 - 1228: -14,-12 - 1229: -14,-13 - 1237: -9,-12 - 1238: -10,-12 - 1239: -11,-12 - 1240: -12,-12 - 1241: -13,-12 - 1242: -15,-12 - 1255: 13,-12 - 1256: 12,-12 - 1257: 11,-12 - 1258: 10,-12 - 1259: 9,-12 - 1260: 8,-12 - 1261: 7,-12 - 1280: -14,-15 - 1634: 3,19 - 1635: 2,19 - 1636: 1,19 - 1648: -5,19 - 1649: -4,19 - 1650: -3,19 - 1658: -47,41 - 1659: -46,41 - 1898: -35,7 - 1899: -34,7 - 1941: -3,57 - 2155: 27,18 - 5034: -41,-6 - 5035: -42,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 738: 20,40 - 919: -21,32 - 920: -20,32 - 924: -18,30 - 925: -17,30 - 926: -16,30 - 927: -15,30 - 928: -14,30 - 1200: -12,-15 - 1201: -11,-15 - 1224: 9,-15 - 1225: 10,-15 - 1226: -14,-16 - 1230: -14,-13 - 1231: -14,-12 - 1279: -14,-15 - 1900: -35,4 - 1901: -34,4 - 1934: -3,52 - 2153: 21,20 - 2167: 22,20 - 5036: -42,-7 - 5037: -41,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 695: 32,41 - 696: 32,40 - 737: 19,41 - 917: -22,33 - 922: -19,31 - 1013: -22,24 - 1014: -22,23 - 1015: -22,22 - 1016: -22,21 - 1017: -22,20 - 1018: -22,19 - 1019: -22,18 - 1020: -22,17 - 1028: -20,22 - 1199: -13,-14 - 1221: 8,-14 - 1263: 6,-13 - 1264: 6,-14 - 1265: 6,-15 - 1266: 6,-16 - 1547: 9,-21 - 1548: 9,-22 - 1549: 9,-23 - 1550: 9,-24 - 1551: 9,-25 - 1552: 9,-26 - 1553: 9,-27 - 1554: 4,-33 - 1555: 4,-34 - 1556: 4,-35 - 1557: 11,-36 - 1558: 11,-37 - 1559: 11,-38 - 1645: -6,18 - 1646: -6,17 - 1647: -6,16 - 1662: -48,40 - 1857: -44,-1 - 1858: -44,-2 - 1859: -44,-3 - 1869: -41,7 - 1870: -41,8 - 1871: -41,9 - 1872: -41,10 - 1873: -41,11 - 1897: -36,6 - 1936: -4,53 - 1937: -4,54 - 1938: -4,55 - 1939: -4,56 - 2024: -28,31 - 2025: -28,32 - 2149: 26,17 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 55: -2,80 - 1708: 18,-22 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 56: 5,82 - 829: 12,28 - 886: 7,34 - 1640: 4,19 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNe - decals: - 64: 1,83 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 69: -2,83 - 1075: -16,22 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 78: 2,80 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNe - decals: - 70: -5,82 - 1247: -8,-12 - 1756: -11,-18 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 787: 12,28 - 869: 5,24 - 885: 7,34 - 904: 6,33 - 1108: -5,23 - 2140: -17,-40 - 2145: 16,-40 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 54: -4,80 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw - decals: - 57: 3,82 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNw - decals: - 63: 0,83 - 1906: -36,7 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 68: -3,83 - 941: -22,34 - 1047: -22,25 - 1076: -18,22 - 1651: -6,19 - - node: - color: '#D56F18EF' - id: BrickTileWhiteCornerNw - decals: - 848: 2,25 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 77: 0,80 - 1943: -4,57 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNw - decals: - 71: -7,82 - 1271: 6,-12 - 1602: 4,-18 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 839: 2,25 - 870: 3,24 - 905: 4,33 - 1109: -7,23 - 2142: -18,-40 - 2143: 15,-40 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 1709: 18,-26 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSe - decals: - 891: 7,30 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 1119: -4,21 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSe - decals: - 1828: 7,-27 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 867: 4,22 - 868: 5,23 - 876: 7,30 - 906: 6,31 - 1103: -4,21 - 1104: -5,22 - 2139: -17,-41 - 2144: 16,-41 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSw - decals: - 811: 8,26 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSw - decals: - 1904: -36,4 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSw - decals: - 934: -19,30 - 939: -22,32 - - node: - color: '#D56F18EF' - id: BrickTileWhiteCornerSw - decals: - 844: 2,21 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 568: -20,44 - 1948: -4,52 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 777: 8,26 - 843: 2,21 - 866: 3,22 - 902: 4,31 - 1110: -7,22 - 2141: -18,-41 - 2146: 15,-41 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndN - decals: - 821: 11,27 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndS - decals: - 822: 11,23 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNe - decals: - 1744: 13,-25 - 1792: 0,45 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNw - decals: - 2134: 29,2 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSe - decals: - 1721: 17,-10 - 1743: 13,-23 - 1791: 0,48 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSe - decals: - 873: 4,23 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 1722: 20,-10 - 2133: 29,7 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerSw - decals: - 809: 8,27 - 810: 10,26 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSw - decals: - 936: -19,32 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSw - decals: - 775: 10,26 - 778: 8,27 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 53: -2,79 - 436: 0,74 - 437: 0,73 - 438: 0,71 - 439: 0,70 - 1586: 13,-24 - 1710: 18,-25 - 1711: 18,-24 - 1712: 18,-23 - 1793: 0,46 - 1794: 0,47 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 59: 5,81 - 794: 12,22 - 795: 12,23 - 796: 12,24 - 797: 12,25 - 798: 12,26 - 799: 12,27 - 887: 7,33 - 888: 7,32 - 889: 7,31 - 1641: 4,18 - 1642: 4,17 - 1643: 4,16 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 65: 1,82 - 1876: -35,1 - 1877: -35,2 - 1878: -39,-3 - 1879: -39,-2 - 1880: -39,-1 - 1881: -39,0 - 1882: -38,7 - 1883: -38,6 - 1884: -38,5 - 1885: -38,4 - 1886: -38,3 - 1923: -37,28 - 1924: -37,27 - 1925: -37,26 - 1926: -37,25 - 1927: -37,23 - 4862: -37,24 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 66: -2,82 - 1029: -12,17 - 1030: -12,18 - 1031: -12,19 - 1032: -12,20 - 1033: -10,21 - 1034: -10,22 - 1035: -10,23 - 1065: -15,20 - 1066: -15,19 - 1067: -15,18 - 1068: -15,17 - 1074: -16,21 - 1120: -4,22 - 1121: -4,23 - 1122: -4,24 - 1129: -14,27 - 1130: -14,28 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineE - decals: - 853: 8,24 - 854: 8,23 - 855: 8,22 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 76: 2,79 - 547: -9,51 - 548: -9,52 - 549: -9,53 - 550: -9,54 - 551: -9,55 - 552: -9,56 - 553: -9,57 - 583: -7,50 - 584: -7,49 - 585: -7,48 - 586: -7,47 - 630: -6,57 - 631: -6,56 - 632: -6,55 - 633: -6,54 - 634: -6,53 - 635: -6,52 - 1962: -35,-6 - 1963: -35,-5 - 1964: -35,-4 - 1965: -35,-3 - 1966: -35,-2 - 1967: -35,-1 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 1243: -8,-16 - 1244: -8,-15 - 1245: -8,-14 - 1246: -8,-13 - 1560: 13,-21 - 1561: 13,-22 - 1562: 13,-23 - 1563: 13,-25 - 1564: 13,-26 - 1565: 13,-27 - 1566: 13,-28 - 1567: 13,-29 - 1568: 13,-30 - 1569: 13,-35 - 1570: 13,-36 - 1571: 13,-37 - 1572: 13,-38 - 1757: -11,-19 - 1758: -11,-20 - 1832: 7,-26 - 1833: 7,-25 - 1834: 7,-24 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - decals: - 788: 12,27 - 789: 12,26 - 790: 12,25 - 791: 12,24 - 792: 12,23 - 793: 12,22 - 823: 11,24 - 824: 11,25 - 825: 11,26 - 832: 8,22 - 833: 8,23 - 834: 8,24 - 877: 7,31 - 878: 7,32 - 879: 7,33 - 907: 6,32 - 1105: -4,22 - 1106: -4,23 - 1107: -4,24 - 4997: 3,29 - 4998: 3,30 - 4999: 3,31 - 5000: 3,32 - 5001: 3,33 - 5002: 3,34 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 52: -3,80 - 450: 2,74 - 451: 3,74 - 452: 4,74 - 453: 6,74 - 454: 5,74 - 455: 7,74 - 1713: 17,-22 - 4788: 17,-15 - 4803: 20,-15 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 58: 4,82 - 800: 11,28 - 801: 10,28 - 802: 9,28 - 803: 7,28 - 804: 8,28 - 805: 6,28 - 882: 4,34 - 883: 5,34 - 890: 6,34 - 1135: 18,34 - 1136: 20,34 - 1137: 19,34 - 1138: 21,34 - 1637: 1,19 - 1638: 2,19 - 1639: 3,19 - 4791: 15,-17 - 4798: 22,-17 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 4790: 15,-15 - 4805: 22,-15 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 1854: -37,11 - 1855: -36,11 - 1856: -35,11 - 1907: -35,7 - 1908: -34,7 - 4789: 16,-15 - 4804: 21,-15 - 4890: -46,28 - 4891: -45,28 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 942: -21,34 - 943: -20,34 - 944: -19,34 - 945: -18,34 - 946: -17,34 - 1036: -11,25 - 1037: -12,25 - 1038: -13,25 - 1039: -14,25 - 1040: -15,25 - 1041: -16,25 - 1042: -17,25 - 1043: -18,25 - 1044: -19,25 - 1045: -20,25 - 1046: -21,25 - 1077: -17,22 - 1652: -5,19 - 1653: -4,19 - 1654: -3,19 - - node: - color: '#D4D4D426' - id: BrickTileWhiteLineN - decals: - 4816: 18,-12 - 4817: 19,-12 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineN - decals: - 849: 3,25 - 850: 4,25 - 851: 5,25 - 852: 6,25 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 75: 1,80 - 569: -20,42 - 570: -19,42 - 571: -18,42 - 572: -17,42 - 573: -16,42 - 597: -5,49 - 606: -4,49 - 612: -23,48 - 613: -22,48 - 648: -15,50 - 649: -14,50 - 650: -13,50 - 651: -12,50 - 1942: -3,57 - 1984: 26,-12 - 1985: 27,-12 - 1986: 28,-12 - 1987: 29,-12 - 1988: 30,-12 - 2034: 41,44 - 2035: 42,44 - 2036: 43,44 - 2037: 44,44 - 4792: 16,-17 - 4799: 21,-17 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 72: -6,82 - 1248: -9,-12 - 1249: -10,-12 - 1250: -11,-12 - 1251: -12,-12 - 1252: -13,-12 - 1253: -14,-12 - 1254: -15,-12 - 1272: 7,-12 - 1273: 8,-12 - 1274: 9,-12 - 1275: 10,-12 - 1276: 11,-12 - 1277: 12,-12 - 1278: 13,-12 - 1595: 7,-18 - 1596: 6,-18 - 1597: 5,-18 - 1752: -15,-18 - 1753: -14,-18 - 1754: -13,-18 - 1755: -12,-18 - 4793: 17,-17 - 4802: 20,-17 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 781: 6,28 - 782: 7,28 - 783: 8,28 - 784: 9,28 - 785: 10,28 - 786: 11,28 - 835: 6,25 - 836: 5,25 - 837: 4,25 - 838: 3,25 - 871: 4,24 - 880: 5,34 - 881: 4,34 - 884: 6,34 - 908: 5,33 - 1112: -6,23 - 4994: 4,28 - 4995: 3,28 - 4996: 2,28 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 400: -3,76 - 401: -4,76 - 402: -5,76 - 403: -6,76 - 404: -7,76 - 405: -8,76 - 406: -9,76 - 407: 1,76 - 408: 2,76 - 409: 3,76 - 410: 4,76 - 411: 5,76 - 412: 6,76 - 413: 7,76 - 444: 2,70 - 445: 3,70 - 446: 4,70 - 447: 6,70 - 448: 5,70 - 449: 7,70 - 1714: 17,-26 - 1719: 18,-10 - 1720: 19,-10 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 806: 6,27 - 807: 7,27 - 808: 9,26 - 892: 6,30 - 893: 5,30 - 4796: 15,-15 - 4797: 22,-15 - - node: - color: '#5A5A605A' - id: BrickTileWhiteLineS - decals: - 3: -2,76 - 4: -1,76 - 5: 0,76 - - node: - color: '#5A5A60FF' - id: BrickTileWhiteLineS - decals: - 6: -2,76 - 7: -1,76 - 8: 0,76 - - node: - color: '#A4610696' - id: BrickTileWhiteLineS - decals: - 1851: -37,9 - 1852: -36,9 - 1853: -35,9 - 1902: -34,4 - 1903: -35,4 - 4888: -45,27 - 4889: -46,27 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 929: -14,30 - 930: -15,30 - 931: -16,30 - 932: -17,30 - 933: -18,30 - 937: -20,32 - 938: -21,32 - 1089: -10,17 - 1090: -9,17 - 1091: -8,17 - 1115: -8,21 - 1116: -7,21 - 1117: -6,21 - 1118: -5,21 - 4806: 16,-17 - 4811: 21,-17 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineS - decals: - 4809: 15,-17 - 4810: 22,-17 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineS - decals: - 4807: 17,-17 - 4808: 20,-17 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineS - decals: - 856: 3,21 - 857: 4,21 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 531: -19,44 - 532: -18,44 - 533: -17,44 - 534: -16,44 - 535: -15,44 - 536: -14,44 - 537: -13,44 - 538: -12,44 - 539: -11,44 - 540: -10,44 - 541: -9,44 - 542: -8,44 - 543: -7,44 - 544: -6,44 - 545: -5,44 - 546: -4,44 - 574: -20,40 - 575: -19,40 - 576: -18,40 - 577: -17,40 - 578: -16,40 - 598: -5,49 - 607: -4,49 - 614: -23,47 - 615: -22,47 - 620: -17,58 - 621: -16,58 - 622: -15,58 - 623: -14,58 - 644: -15,48 - 645: -14,48 - 646: -13,48 - 647: -12,48 - 1949: -3,52 - 1989: 26,-14 - 1990: 27,-14 - 1991: 28,-14 - 1992: 29,-14 - 1993: 30,-14 - 2038: 41,42 - 2039: 42,42 - 2040: 43,42 - 2041: 44,42 - 4795: 16,-15 - 4800: 21,-15 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 1829: 6,-27 - 1830: 5,-27 - 1831: 4,-27 - 4794: 17,-15 - 4801: 20,-15 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 776: 9,26 - 779: 7,27 - 780: 6,27 - 830: 3,21 - 831: 4,21 - 874: 5,30 - 875: 6,30 - 909: 5,31 - 1101: -6,21 - 1102: -5,21 - 1111: -6,22 - 1113: -7,21 - 1114: -8,21 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 51: -4,79 - 440: -2,74 - 441: -2,73 - 442: -2,71 - 443: -2,70 - 2135: 29,4 - 2136: 29,5 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 812: 10,25 - 813: 10,24 - 814: 10,23 - 815: 10,22 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 62: 0,82 - 1887: -41,11 - 1888: -41,10 - 1889: -41,9 - 1890: -41,8 - 1891: -41,7 - 1892: -44,-1 - 1893: -44,-2 - 1894: -44,-3 - 1905: -36,6 - 1928: -40,30 - 1929: -40,29 - 1930: -40,20 - 1931: -40,19 - 1932: -40,18 - 1933: -40,17 - 4870: -43,26 - 4871: -43,25 - 4872: -43,24 - 4873: -43,23 - 4874: -43,22 - 4875: -43,21 - 5038: -41,6 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 67: -3,82 - 935: -19,31 - 940: -22,33 - 1048: -22,24 - 1049: -22,23 - 1050: -22,22 - 1051: -22,21 - 1052: -22,20 - 1053: -22,19 - 1054: -22,18 - 1055: -22,17 - 1069: -19,17 - 1070: -19,18 - 1071: -19,19 - 1072: -19,20 - 1073: -18,21 - 1655: -6,18 - 1656: -6,17 - 1657: -6,16 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineW - decals: - 845: 2,22 - 846: 2,23 - 847: 2,24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 74: 0,79 - 554: -12,57 - 555: -17,56 - 556: -17,55 - 557: -17,54 - 558: -20,53 - 559: -20,52 - 560: -20,51 - 561: -20,50 - 562: -20,49 - 563: -20,48 - 564: -20,47 - 565: -20,46 - 566: -20,45 - 1944: -4,56 - 1945: -4,55 - 1946: -4,54 - 1947: -4,53 - 1968: -37,-6 - 1969: -37,-5 - 1970: -37,-4 - 1971: -37,-3 - 1972: -37,-2 - 1973: -37,-1 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 73: -7,81 - 1267: 6,-16 - 1268: 6,-15 - 1269: 6,-14 - 1270: 6,-13 - 1573: 11,-38 - 1574: 11,-37 - 1575: 11,-36 - 1576: 4,-35 - 1577: 4,-34 - 1578: 4,-33 - 1579: 9,-27 - 1580: 9,-26 - 1581: 9,-25 - 1582: 9,-24 - 1583: 9,-23 - 1584: 9,-22 - 1585: 9,-21 - 1598: 4,-22 - 1599: 4,-21 - 1600: 4,-20 - 1601: 4,-19 - 1770: -14,-22 - 1771: -14,-23 - 1772: -14,-24 - 1773: -14,-25 - 1774: -14,-32 - 1775: -14,-33 - 1776: -14,-34 - 1777: -14,-35 - 1778: -14,-36 - 1779: -14,-37 - 1780: -14,-38 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - decals: - 771: 10,22 - 772: 10,23 - 773: 10,24 - 774: 10,25 - 826: 11,26 - 827: 11,25 - 828: 11,24 - 840: 2,24 - 841: 2,23 - 842: 2,22 - 872: 3,23 - 910: 4,32 - - node: - color: '#80C71FA4' - id: Busha1 - decals: - 4733: -47.70598,40.43374 - - node: - color: '#80C71FAB' - id: Busha1 - decals: - 2159: 22.65236,20.282064 - - node: - color: '#FFFFFF7F' - id: Busha1 - decals: - 2108: 32.123173,40.915573 - - node: - color: '#80C71FA4' - id: Busha2 - decals: - 4735: -45.230186,40.743168 - - node: - color: '#80C71FCA' - id: Busha2 - decals: - 2158: 22.247696,21.53798 - - node: - color: '#FFFFFF7F' - id: Busha2 - decals: - 2107: 28.87165,40.802044 - 2109: 32.094776,39.978962 - - node: - color: '#FFFFFF7F' - id: Busha3 - decals: - 2110: 28.928446,39.978962 - - node: - color: '#80C71FA4' - id: Bushb1 - decals: - 4732: -46.05545,40.68423 - 4736: -47.396503,39.873817 - - node: - color: '#80C71FCA' - id: Bushb1 - decals: - 2157: 21.225384,20.367212 - - node: - color: '#FFFFFF7F' - id: Bushb1 - decals: - 2111: 28.857452,41.01491 - 2112: 32.123173,41.043293 - - node: - color: '#80C71FAB' - id: Bushb3 - decals: - 2160: 26.187859,16.8762 - - node: - color: '#80C71FA4' - id: Bushc2 - decals: - 4734: -45.30387,39.903286 - - node: - color: '#FFFFFF7F' - id: Bushf1 - decals: - 2103: 28.885849,40.418884 - 2104: 32.13737,41.057484 - - node: - color: '#80C71FAB' - id: Bushf2 - decals: - 2161: 26.99719,17.621233 - - node: - color: '#FFFFFF7F' - id: Bushf3 - decals: - 2101: 32.108974,39.865433 - 2102: 28.87165,41.01491 - - node: - color: '#FFFFFF7F' - id: Bushg3 - decals: - 2105: 28.843252,39.879623 - 2106: 32.165768,40.518223 - - node: - color: '#DE3A3A96' - id: CautionGreyscale - decals: - 602: -4.9917116,48.825462 - 603: -3.992663,48.8136 - - node: - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: CautionGreyscale - decals: - 652: -22.808884,47.519577 - 653: -21.814968,47.519577 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 5106: 22,27 - 5107: 21,27 - 5108: 20,27 - 5109: 20,26 - 5110: 21,26 - 5111: 22,26 - 5112: 19,26 - 5113: 18,26 - 5114: 18,27 - 5115: 19,27 - 5116: 19,28 - 5117: 18,28 - 5118: 18,29 - 5119: 19,29 - - node: - color: '#79150096' - id: CheckerNESW - decals: - 1315: -3,11 - 1316: -3,10 - 1317: -3,9 - 1318: -3,8 - 1319: -3,7 - 1320: 1,11 - 1321: 1,10 - 1322: 1,8 - 1323: 1,9 - 1324: 1,7 - 1325: 0,8 - 1326: -1,8 - 1327: -2,8 - 1328: -2,9 - 1329: -1,9 - 1330: 0,9 - 1331: -3,6 - 1332: -3,5 - 1333: -3,4 - 1334: -3,3 - 1335: -2,4 - 1336: -1,4 - 1337: 0,4 - 1338: -2,3 - 1339: -1,3 - 1340: 0,3 - 1341: 1,3 - 1342: 1,4 - 1343: 1,5 - 1344: 1,6 - 1345: -3,2 - 1346: -3,1 - 1347: -3,0 - 1348: -3,-1 - 1349: -3,-2 - 1350: -2,-1 - 1351: -2,-2 - 1352: -1,-2 - 1353: -1,-1 - 1354: 0,-1 - 1355: 0,-2 - 1356: 1,-2 - 1357: 1,-1 - 1358: 1,0 - 1359: 1,1 - 1360: 1,2 - 1361: 1,-3 - 1362: 1,-4 - 1363: 1,-5 - 1364: 1,-6 - 1365: -3,-6 - 1366: -3,-5 - 1367: -3,-4 - 1368: -3,-3 - 1369: -4,-2 - 1370: -5,-2 - 1371: -6,-2 - 1372: -7,-2 - 1373: -7,-1 - 1374: -6,-1 - 1375: -5,-1 - 1376: -4,-1 - 1377: -14,-1 - 1378: -14,-2 - 1379: -13,-2 - 1380: -12,-1 - 1381: -12,-2 - 1382: -13,-1 - 1383: -11,-1 - 1384: -11,-2 - 1385: -10,-2 - 1386: -10,-1 - 1387: -9,-1 - 1388: -9,-2 - 1389: -8,-2 - 1390: -8,-1 - 1391: -14,3 - 1392: -13,3 - 1393: -12,3 - 1394: -11,3 - 1395: -10,3 - 1396: -9,3 - 1397: -8,3 - 1398: -6,3 - 1399: -7,3 - 1400: -5,3 - 1401: -4,3 - 1402: -14,4 - 1403: -13,4 - 1404: -12,4 - 1405: -11,4 - 1406: -4,4 - - node: - color: '#3E5C23A8' - id: CheckerNWSE - decals: - 1451: 6,6 - 1452: 6,7 - 1453: 6,8 - 1454: 6,9 - 1455: 6,10 - 1456: 7,10 - 1457: 8,10 - 1458: 9,10 - 1459: 10,10 - 1460: 10,9 - 1461: 10,8 - 1462: 10,7 - 1463: 10,6 - 1464: 10,5 - 1465: 9,5 - 1466: 8,5 - 1467: 7,5 - 1468: 6,5 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 5082: 14,31 - 5083: 15,31 - 5084: 16,31 - 5085: 16,32 - 5086: 15,32 - 5087: 14,32 - 5088: 14,33 - 5089: 15,33 - 5090: 16,33 - 5091: 16,34 - 5092: 15,34 - 5093: 14,34 - 5094: 15,30 - - node: - color: '#79150096' - id: CheckerNWSE - decals: - 1514: 9,-7 - 1515: 10,-7 - 1516: 11,-7 - - node: - color: '#B02E26FF' - id: CheckerNWSE - decals: - 5047: -9,63 - 5048: -9,64 - 5049: -9,62 - 5050: -8,62 - 5051: -8,63 - 5052: -8,64 - 5053: -7,61 - 5054: -7,60 - 5055: -6,60 - 5056: -6,61 - 5057: -5,61 - 5058: -5,60 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 1151: -13,-30 - 1152: -13,-29 - 1153: -13,-28 - 1154: -13,-27 - 5046: -10,60 - 5123: 13,18 - - node: - color: '#52B4E996' - id: DeliveryGreyscale - decals: - 2077: 27,3 - - node: - color: '#334E6DC8' - id: DiagonalCheckerAOverlay - decals: - 2050: 13,53 - 2051: 13,54 - 2052: 11,54 - 2053: 12,54 - 2054: 12,53 - 2055: 11,53 - 2056: 10,53 - 2057: 10,54 - 2058: 9,54 - 2059: 9,53 - 2060: 8,53 - 2061: 8,54 - - node: - color: '#52B4E996' - id: DiagonalCheckerAOverlay - decals: - 816: 11,23 - 817: 11,24 - 818: 11,25 - 819: 11,26 - 820: 11,27 - 894: 4,31 - 895: 4,32 - 896: 4,33 - 897: 6,33 - 898: 6,32 - 899: 6,31 - 900: 5,31 - 901: 5,32 - 903: 5,33 - - node: - color: '#83543273' - id: Dirt - decals: - 2234: 6,-9 - 2235: 4,-9 - 2236: 2,-9 - 2237: 0,-9 - 2238: -2,-9 - 2239: -4,-9 - 2240: -6,-9 - 2241: -7,-9 - 2242: -9,-9 - 2243: -11,-9 - 2244: -13,-9 - 2245: -15,-9 - 2246: -17,-9 - 2247: -18,-9 - 2248: -19,-9 - 2249: -21,-9 - 2250: -23,-9 - 2251: -25,-9 - 2252: -27,-9 - 2253: -30,-9 - 2254: -32,-9 - 2255: -32,-7 - 2256: -32,-4 - 2257: -32,-1 - 2258: -32,0 - 2259: -32,4 - 2260: -32,8 - 2261: -32,12 - 2262: -32,14 - 2263: -34,14 - 2264: -36,14 - 2265: -38,14 - 2266: -39,14 - 2267: -42,14 - 2268: -44,14 - 2269: -46,14 - 2270: -48,14 - 2271: -50,14 - 2272: -48,14 - 2273: -46,14 - 2274: -44,14 - 2275: -42,14 - 2276: -40,14 - 2277: -38,14 - 2278: -36,14 - 2279: -29,14 - 2280: -27,14 - 2281: -25,14 - 2282: -23,14 - 2283: -21,14 - 2284: -19,14 - 2285: -17,14 - 2286: -15,14 - 2287: -13,14 - 2288: -11,14 - 2289: -9,14 - 2290: -7,14 - 2291: -5,14 - 2292: -3,14 - 2293: -1,14 - 2294: 1,14 - 2295: 3,14 - 2296: 5,14 - 2297: 7,14 - 2298: 9,14 - 2299: 11,14 - 2300: 13,14 - 2301: 15,14 - 2302: 17,14 - 2303: 19,14 - 2304: 21,14 - 2305: 23,14 - 2306: 25,14 - 2307: 27,14 - 2308: 29,14 - 2309: 31,14 - 2310: 33,14 - 2311: 35,14 - 2312: 37,14 - 2313: 39,14 - 2314: 41,14 - 2315: 43,14 - 2316: 45,14 - 2317: 47,14 - 2318: 49,14 - 2319: 30,14 - 2320: 30,15 - 2321: 30,17 - 2322: 30,19 - 2323: 30,22 - 2324: 30,24 - 2325: 30,26 - 2326: 30,28 - 2327: 30,30 - 2328: 30,32 - 2329: 30,34 - 2330: 31,28 - 2331: 31,24 - 2332: 31,20 - 2333: 32,19 - 2334: 31,10 - 2335: 31,6 - 2336: 30,5 - 2337: 28,3 - - node: - cleanable: True - color: '#83543273' - id: Dirt - decals: - 2338: 27,3 - 2339: 27,4 - 2340: 27,5 - 2341: 27,6 - 2342: 28,6 - 2343: 29,6 - 2344: 29,5 - 2345: 31,5 - 2346: 32,6 - 2347: 32,11 - 2348: 32,14 - 2349: 26,14 - 2350: 21,14 - 2351: 18,14 - 2352: 16,14 - 2353: 14,14 - 2354: 10,14 - 2355: 5,14 - 2356: 2,14 - 2357: -4,14 - 2358: -7,14 - 2359: -10,14 - 2360: -13,14 - 2361: -15,14 - 2362: -19,14 - 2363: -21,14 - 2364: -26,14 - 2365: -28,13 - 2366: -30,13 - 2367: -33,14 - 2368: -35,14 - 2369: -37,13 - 2370: -39,14 - 2371: -41,14 - 2372: -39,15 - 2373: -38,15 - 2374: -37,14 - 2375: -48,13 - 2376: -50,13 - 2377: -51,15 - 2378: -51,13 - 2379: -53,13 - 2380: -53,15 - 2381: -51,14 - 2382: -34,4 - 2383: -34,6 - 2384: -34,7 - 2385: -34,5 - 2386: -36,5 - 2387: -36,4 - 2388: -36,6 - 2389: -36,7 - 2390: -35,7 - 2391: -31,7 - 2392: -31,6 - 2393: -31,4 - 2394: -34,4 - 2395: -36,2 - 2396: -37,2 - 2397: -39,2 - 2398: -40,0 - 2399: -42,2 - 2400: -43,2 - 2401: -44,2 - 2402: -45,2 - 2403: -44,4 - 2404: -43,4 - 2405: -43,4 - 2406: -42,4 - 2407: -40,4 - 2408: -39,6 - 2409: -39,5 - 2410: -40,6 - 2411: -41,8 - 2412: -41,10 - 2413: -41,10 - 2414: -39,7 - 2415: -38,7 - 2416: -41,-1 - 2417: -42,-3 - 2418: -41,-3 - 2419: -42,-2 - 2420: -42,-1 - 2421: -39,-2 - 2422: -39,1 - 2423: -37,1 - 2424: -36,-3 - 2425: -35,-5 - 2426: -35,-5 - 2427: -37,-3 - 2428: -40,-2 - 2429: -35,-6 - 2430: -36,-5 - 2431: -36,-4 - 2432: -37,-3 - 2433: -37,-2 - 2434: -33,-5 - 2435: -32,-5 - 2436: -33,-5 - 2437: -32,-3 - 2438: -32,-2 - 2439: -32,1 - 2440: -32,4 - 2441: -32,8 - 2442: -32,5 - 2443: -32,6 - 2444: -33,7 - 2445: -33,6 - 2446: -33,4 - 2447: -33,3 - 2448: -32,2 - 2449: -32,3 - 2450: -31,0 - 2451: -31,1 - 2452: -32,-6 - 2453: -31,-7 - 2454: -31,-8 - 2455: -30,-8 - 2456: -29,-9 - 2457: -28,-9 - 2458: -27,-8 - 2459: -28,-8 - 2460: -27,-9 - 2461: -28,-10 - 2462: -27,-10 - 2463: -29,-10 - 2464: -25,-9 - 2465: -21,-9 - 2466: -19,-9 - 2467: -17,-9 - 2468: -14,-9 - 2469: -11,-9 - 2470: -9,-9 - 2471: -6,-9 - 2472: -4,-9 - 2473: -2,-9 - 2474: 2,-9 - 2475: 4,-9 - 2476: 6,-9 - 2477: 9,-9 - 2478: 11,-9 - 2479: 13,-9 - 2480: 15,-9 - 2481: 18,-9 - 2482: 20,-9 - 2483: 23,-9 - 2484: 25,-9 - 2485: 27,-9 - 2486: 30,-9 - 2487: 32,-9 - 2488: 35,-9 - 2489: 37,-9 - 2490: 39,-9 - 2491: 42,-9 - 2492: 44,-9 - 2493: 46,-9 - 2494: 48,-9 - 2495: 46,-10 - 2496: 46,-9 - 2497: 47,-9 - 2498: 48,-10 - 2499: 49,-10 - 2500: 49,-9 - 2501: 50,-8 - 2502: 51,-8 - 2503: 50,-8 - 2504: 50,-10 - 2505: 48,-10 - 2506: 44,-10 - 2507: 38,-10 - 2508: 39,-10 - 2509: 41,-10 - 2510: 40,-9 - 2511: 38,-9 - 2512: 38,-10 - 2513: 37,-9 - 2514: 34,-8 - 2515: 33,-8 - 2516: 32,-8 - 2517: 32,-7 - 2518: 30,-8 - 2519: 30,-7 - 2520: 29,-8 - 2521: 29,-10 - 2522: 30,-10 - 2523: 26,-11 - 2524: 27,-10 - 2525: 27,-11 - 2526: 27,-12 - 2527: 27,-13 - 2528: 28,-13 - 2529: 28,-14 - 2530: 28,-15 - 2531: 27,-14 - 2532: 28,-14 - 2533: 27,-9 - 2534: 30,-5 - 2535: 30,-2 - 2536: 32,-2 - 2537: 31,-3 - 2538: 30,-4 - 2539: 30,-4 - 2540: 31,-6 - 2541: 32,-5 - 2542: 30,-1 - 2543: 30,2 - 2544: 29,3 - 2545: 33,3 - 2546: 34,0 - 2547: 34,2 - 2548: 34,5 - 2549: 34,1 - 2550: 32,0 - 2551: 29,4 - 2552: 31,8 - 2553: 32,11 - 2554: 30,14 - 2555: 35,13 - 2556: 39,12 - 2557: 42,14 - 2558: 45,14 - 2559: 50,13 - 2560: 51,13 - 2561: 51,15 - 2562: 50,15 - 2563: 51,15 - 2564: 49,15 - 2565: 48,15 - 2566: 48,17 - 2567: 48,17 - 2568: 48,15 - 2569: 46,15 - 2570: 46,16 - 2571: 46,17 - 2572: 46,15 - 2573: 45,13 - 2574: 48,13 - 2575: 50,13 - 2576: 49,13 - 2577: 46,13 - 2578: 42,13 - 2579: 40,14 - 2580: 39,14 - 2581: 36,13 - 2582: 34,15 - 2583: 31,14 - 2584: 30,13 - 2585: 27,13 - 2586: 26,14 - 2587: 24,15 - 2588: 22,14 - 2589: 21,13 - 2590: 30,16 - 2591: 31,18 - 2592: 29,20 - 2593: 31,22 - 2594: 30,24 - 2595: 28,26 - 2596: 29,26 - 2597: 28,26 - 2598: 28,28 - 2599: 27,25 - 2600: 28,25 - 2601: 28,25 - 2602: 29,25 - 2603: 28,28 - 2604: 29,32 - 2605: 29,32 - 2606: 29,33 - 2607: 27,33 - 2608: 27,32 - 2609: 26,32 - 2610: 25,33 - 2611: 25,35 - 2612: 25,35 - 2613: 26,35 - 2614: 25,36 - 2615: 27,36 - 2616: 25,36 - 2617: 26,36 - 2618: 27,36 - 2619: 30,36 - 2620: 30,37 - 2621: 30,38 - 2622: 31,41 - 2623: 30,41 - 2624: 31,40 - 2625: 30,44 - 2626: 30,45 - 2627: 31,46 - 2628: 31,44 - 2629: 30,47 - 2630: 31,49 - 2631: 32,47 - 2632: 35,47 - 2633: 34,48 - 2634: 31,47 - 2635: 28,47 - 2636: 27,47 - 2637: 27,45 - 2638: 27,43 - 2639: 27,47 - 2640: 27,49 - 2641: 29,47 - 2642: 31,48 - 2643: 32,37 - 2644: 34,37 - 2645: 37,37 - 2646: 41,38 - 2647: 46,37 - 2648: 34,38 - 2649: 34,38 - 2650: 36,38 - 2651: 35,38 - 2652: 35,37 - 2653: 39,37 - 2654: 45,36 - 2655: 41,37 - 2656: 41,39 - 2657: 43,40 - 2658: 42,40 - 2659: 41,40 - 2660: 42,40 - 2661: 41,40 - 2662: 45,40 - 2663: 47,41 - 2664: 47,43 - 2665: 47,44 - 2666: 46,42 - 2667: 47,38 - 2668: 47,37 - 2669: 48,40 - 2670: 48,38 - 2671: 49,37 - 2672: 49,36 - 2673: 50,38 - 2674: 51,38 - 2675: 51,38 - 2676: 48,38 - 2677: 51,36 - 2678: 50,36 - 2679: 49,36 - 2680: 51,36 - 2681: 49,38 - 2682: 48,36 - 2683: 48,35 - 2684: 48,35 - 2685: 49,34 - 2686: 47,35 - 2687: 44,36 - 2688: 46,35 - 2689: 46,35 - 2690: 46,36 - 2691: 46,34 - 2692: 46,34 - 2693: 46,37 - 2694: 43,36 - 2695: 43,36 - 2696: 45,38 - 2697: 44,38 - 2698: 45,39 - 2699: 42,39 - 2700: 46,37 - 2701: 43,37 - 2702: 41,37 - 2703: 44,38 - 2704: 45,38 - 2705: 38,37 - 2706: 41,37 - 2707: 42,37 - 2708: 40,37 - 2709: 42,39 - 2710: 41,40 - 2711: 45,43 - 2712: 45,43 - 2713: 44,43 - 2714: 41,43 - 2715: 41,43 - 2716: 43,43 - 2717: 44,43 - 2718: 41,43 - 2719: 44,42 - 2720: 43,42 - 2721: 27,37 - 2722: 25,38 - 2723: 24,38 - 2724: 25,38 - 2725: 26,38 - 2726: 22,40 - 2727: 22,42 - 2728: 20,42 - 2729: 18,41 - 2730: 17,40 - 2731: 18,39 - 2732: 19,41 - 2733: 22,41 - 2734: 22,40 - 2735: 24,38 - 2736: 17,38 - 2737: 14,39 - 2738: 14,41 - 2739: 14,42 - 2740: 13,42 - 2741: 12,44 - 2742: 12,45 - 2743: 14,45 - 2744: 16,46 - 2745: 17,46 - 2746: 18,46 - 2747: 18,45 - 2748: 18,45 - 2749: 18,46 - 2750: 17,46 - 2751: 18,45 - 2752: 20,45 - 2753: 21,45 - 2754: 21,46 - 2755: 21,47 - 2756: 21,48 - 2757: 20,49 - 2758: 16,50 - 2759: 15,47 - 2760: 15,48 - 2761: 15,49 - 2762: 14,44 - 2763: 15,37 - 2764: 13,38 - 2765: 11,38 - 2766: 7,38 - 2767: 12,38 - 2768: 12,38 - 2769: 7,36 - 2770: 3,36 - 2771: 0,36 - 2772: 0,37 - 2773: 5,37 - 2774: 4,37 - 2775: -5,37 - 2776: -9,37 - 2777: -12,37 - 2778: -13,37 - 2779: -7,37 - 2780: -6,37 - 2781: -13,38 - 2782: -18,37 - 2783: -22,37 - 2784: -27,37 - 2785: -29,37 - 2786: -13,42 - 2787: -14,42 - 2788: -14,41 - 2789: -13,41 - 2790: -13,42 - 2791: -15,40 - 2792: -13,40 - 2793: -13,41 - 2794: -14,40 - 2795: -14,40 - 2796: -13,42 - 2797: -13,42 - 2798: -14,40 - 2799: -13,42 - 2800: -11,42 - 2801: -10,41 - 2802: -11,40 - 2803: -11,42 - 2804: -11,41 - 2805: -10,41 - 2806: -11,42 - 2807: -11,40 - 2808: -10,40 - 2809: -10,42 - 2810: -10,40 - 2811: -10,41 - 2812: -10,42 - 2813: -10,42 - 2814: -10,42 - 2815: -7,42 - 2816: -7,41 - 2817: -7,40 - 2818: -7,42 - 2819: -7,40 - 2820: -7,40 - 2821: -8,42 - 2822: -7,40 - 2823: -7,42 - 2824: -8,41 - 2825: -7,42 - 2826: -7,42 - 2827: -4,42 - 2828: -4,41 - 2829: -5,41 - 2830: -5,40 - 2831: -4,40 - 2832: -4,41 - 2833: -5,42 - 2834: -5,42 - 2835: -4,40 - 2836: -4,40 - 2837: -5,42 - 2838: -5,40 - 2839: -4,42 - 2840: -4,42 - 2841: -4,42 - 2842: -5,41 - 2843: -4,44 - 2844: -5,45 - 2845: -7,45 - 2846: -9,46 - 2847: -6,44 - 2848: -8,45 - 2849: -7,44 - 2850: -8,46 - 2851: -12,46 - 2852: -10,44 - 2853: -11,45 - 2854: -13,46 - 2855: -11,45 - 2856: -10,43 - 2857: -13,45 - 2858: -12,43 - 2859: -14,45 - 2860: -15,46 - 2861: -13,44 - 2862: -16,46 - 2863: -14,45 - 2864: -17,46 - 2865: -18,47 - 2866: -18,50 - 2867: -17,52 - 2868: -17,46 - 2869: -18,48 - 2870: -19,48 - 2871: -20,47 - 2872: -20,48 - 2873: -22,48 - 2874: -22,47 - 2875: -23,47 - 2876: -23,48 - 2877: -24,48 - 2878: -22,49 - 2879: -23,46 - 2880: -24,46 - 2881: -22,46 - 2882: -22,49 - 2883: -23,49 - 2884: -22,46 - 2885: -25,48 - 2886: -26,47 - 2887: -26,47 - 2888: -25,48 - 2889: -29,47 - 2890: -29,48 - 2891: -28,48 - 2892: -29,47 - 2893: -28,48 - 2894: -31,47 - 2895: -32,48 - 2896: -36,48 - 2897: -35,47 - 2898: -33,47 - 2899: -34,48 - 2900: -35,48 - 2901: -32,48 - 2902: -32,46 - 2903: -32,45 - 2904: -32,43 - 2905: -34,43 - 2906: -35,43 - 2907: -30,42 - 2908: -30,43 - 2909: -36,43 - 2910: -35,43 - 2911: -31,42 - 2912: -30,43 - 2913: -34,43 - 2914: -27,42 - 2915: -28,43 - 2916: -28,45 - 2917: -29,45 - 2918: -29,44 - 2919: -29,43 - 2920: -18,49 - 2921: -18,52 - 2922: -16,54 - 2923: -15,55 - 2924: -14,53 - 2925: -11,54 - 2926: -11,59 - 2927: -14,59 - 2928: -16,59 - 2929: -14,59 - 2930: -14,59 - 2931: -9,54 - 2932: -9,53 - 2933: -8,55 - 2934: -7,56 - 2935: -7,54 - 2936: -6,53 - 2937: -7,53 - 2938: -8,55 - 2939: -11,55 - 2940: -9,51 - 2941: -10,50 - 2942: -6,50 - 2943: -3,50 - 2944: -2,50 - 2945: -5,50 - 2946: -8,50 - 2947: -6,50 - 2948: -2,50 - 2949: -2,50 - 2950: -4,50 - 2951: -4,50 - 2952: -2,51 - 2953: -2,51 - 2954: -4,53 - 2955: -4,53 - 2956: -4,54 - 2957: -1,52 - 2958: -1,54 - 2959: 0,57 - 2960: 0,60 - 2961: 0,56 - 2962: 0,54 - 2963: 0,52 - 2964: -2,53 - 2965: -1,56 - 2966: -2,59 - 2967: -1,60 - 2968: -1,64 - 2969: -1,66 - 2970: 0,68 - 2971: 0,67 - 2972: 0,66 - 2973: 0,62 - 2974: 0,59 - 2975: -2,61 - 2976: -1,66 - 2977: -1,69 - 2978: -2,65 - 2979: -1,68 - 2980: -2,71 - 2981: -2,74 - 2982: -1,77 - 2983: 0,67 - 2984: 0,71 - 2985: 0,75 - 2986: 0,78 - 2987: -3,77 - 2988: -5,78 - 2989: -4,79 - 2990: -3,80 - 2991: -4,78 - 2992: -6,77 - 2993: -6,80 - 2994: -4,81 - 2995: -1,81 - 2996: 1,82 - 2997: 3,81 - 2998: 4,81 - 2999: 4,78 - 3000: 5,77 - 3001: 6,76 - 3002: 2,76 - 3003: 1,78 - 3004: -1,79 - 3005: -4,78 - 3006: 1,79 - 3007: 2,79 - 3008: 2,80 - 3009: 4,80 - 3010: 4,78 - 3011: -2,77 - 3012: -6,78 - 3013: -6,80 - 3014: -4,82 - 3015: -8,76 - 3016: -8,75 - 3017: -6,76 - 3018: -6,74 - 3019: -9,72 - 3020: -8,72 - 3021: -9,71 - 3022: -9,70 - 3023: -9,69 - 3024: -8,70 - 3025: -8,69 - 3026: -9,69 - 3027: -9,72 - 3028: -6,75 - 3029: -6,76 - 3030: 1,67 - 3031: 4,67 - 3032: 8,67 - 3033: 9,68 - 3034: 10,69 - 3035: 13,69 - 3036: 7,66 - 3037: 6,67 - 3038: 7,66 - 3039: 9,67 - 3040: 7,66 - 3041: 6,66 - 3042: 9,66 - 3043: 8,66 - 3044: 1,67 - 3045: -1,66 - 3046: 0,62 - 3047: -1,59 - 3048: 1,56 - 3049: 3,55 - 3050: 2,56 - 3051: 3,56 - 3052: 4,56 - 3053: 5,55 - 3054: 7,53 - 3055: 10,53 - 3056: 11,53 - 3057: 14,54 - 3058: 13,55 - 3059: 10,54 - 3060: 7,54 - 3061: 6,52 - 3062: 8,52 - 3063: 11,52 - 3064: 13,52 - 3065: 14,52 - 3066: 11,52 - 3067: 7,52 - 3068: 5,53 - 3069: 3,53 - 3070: 4,53 - 3071: 1,53 - 3072: 0,52 - 3073: 2,52 - 3074: 4,53 - 3075: 0,53 - 3076: 0,50 - 3077: -1,50 - 3078: -1,49 - 3079: -1,47 - 3080: -1,45 - 3081: -1,47 - 3082: -3,48 - 3083: -2,47 - 3084: -2,47 - 3085: -2,48 - 3086: -1,48 - 3087: -1,46 - 3088: -1,44 - 3089: -1,44 - 3090: -2,40 - 3091: -2,39 - 3092: -3,38 - 3093: -4,37 - 3094: -2,38 - 3095: -2,40 - 3096: -2,38 - 3097: -4,38 - 3098: 0,40 - 3099: 0,38 - 3100: 2,37 - 3101: 1,38 - 3102: 0,39 - 3103: -1,40 - 3104: -1,41 - 3105: -1,43 - 3106: -1,44 - 3107: -1,44 - 3108: 1,37 - 3109: 2,37 - 3110: 5,37 - 3111: 10,37 - 3112: 5,37 - 3113: 12,37 - 3114: 15,37 - 3115: 20,37 - 3116: 20,37 - 3117: 11,37 - 3118: 2,37 - 3119: -1,35 - 3120: -1,33 - 3121: -1,31 - 3122: -1,29 - 3123: -1,28 - 3124: -1,28 - 3125: -1,26 - 3126: -1,24 - 3127: -1,22 - 3128: -1,21 - 3129: -1,20 - 3130: -1,18 - 3131: -5,18 - 3132: -6,18 - 3133: -7,18 - 3134: -6,17 - 3135: -7,17 - 3136: -10,17 - 3137: -12,17 - 3138: -9,17 - 3139: -7,17 - 3140: -11,18 - 3141: -9,18 - 3142: -8,17 - 3143: -10,17 - 3144: -6,17 - 3145: -3,17 - 3146: 1,17 - 3147: 5,17 - 3148: 3,18 - 3149: 5,18 - 3150: 5,17 - 3151: 11,19 - 3152: 11,23 - 3153: 11,22 - 3154: 11,21 - 3155: 10,23 - 3156: 10,24 - 3157: 10,26 - 3158: 11,27 - 3159: 11,25 - 3160: 10,26 - 3161: 9,27 - 3162: 7,28 - 3163: 6,28 - 3164: 8,27 - 3165: 6,25 - 3166: 4,23 - 3167: 3,22 - 3168: 7,23 - 3169: 5,24 - 3170: 3,24 - 3171: 7,27 - 3172: 6,28 - 3173: 6,30 - 3174: 6,33 - 3175: 5,34 - 3176: 4,33 - 3177: 4,32 - 3178: 4,31 - 3179: 4,29 - 3180: 3,27 - 3181: 4,27 - 3182: 4,27 - 3183: 4,29 - 3184: 5,32 - 3185: 5,33 - 3186: 6,31 - 3187: 6,29 - 3188: 7,29 - 3189: 7,31 - 3190: 8,28 - 3191: 11,28 - 3192: 11,28 - 3193: 13,28 - 3194: 12,28 - 3195: 19,29 - 3196: 19,30 - 3197: 19,29 - 3198: 19,31 - 3199: 19,32 - 3200: 20,33 - 3201: 20,34 - 3202: 20,33 - 3203: 19,31 - 3204: 18,31 - 3205: 18,33 - 3206: 19,26 - 3207: 21,26 - 3208: 21,26 - 3209: 21,27 - 3210: 20,32 - 3211: 20,33 - 3212: 20,33 - 3213: 19,32 - 3214: 19,31 - 3215: 19,34 - 3216: 19,34 - 3217: 20,33 - 3218: 20,31 - 3219: 20,31 - 3220: 20,32 - 3221: 20,33 - 3222: 20,34 - 3223: 20,32 - 3224: 19,32 - 3225: 19,34 - 3226: 19,31 - 3227: 11,22 - 3228: 10,23 - 3229: 10,25 - 3230: 18,14 - 3231: 20,14 - 3232: 25,14 - 3233: 23,14 - 3234: 23,17 - 3235: 25,19 - 3236: 26,21 - 3237: 27,22 - 3238: 26,21 - 3239: 24,19 - 3240: 23,18 - 3241: 22,18 - 3242: 22,19 - 3243: 24,20 - 3244: 26,22 - 3245: 27,22 - 3246: 27,20 - 3247: 24,18 - 3248: 23,18 - 3249: 27,20 - 3250: 26,20 - 3251: 25,18 - 3252: 25,17 - 3253: 24,17 - 3254: 24,16 - 3255: 23,15 - 3256: 23,16 - 3257: 25,16 - 3258: 25,16 - 3259: 24,16 - 3260: 25,17 - 3261: 28,19 - 3262: 29,20 - 3263: 29,21 - 3264: 28,19 - 3265: 28,20 - 3266: 29,21 - 3267: 29,22 - 3268: 27,25 - 3269: 30,31 - 3270: 30,28 - 3271: 31,26 - 3272: 31,19 - 3273: 31,18 - 3274: 33,16 - 3275: 39,14 - 3276: 44,15 - 3277: 19,13 - 3278: 18,13 - 3279: 17,14 - 3280: 17,13 - 3281: 18,13 - 3282: 19,15 - 3283: 18,14 - 3284: 18,15 - 3285: 23,16 - 3286: 22,17 - 3287: 25,21 - 3288: 27,21 - 3289: 28,21 - 3290: 27,19 - 3291: 27,21 - 3292: 25,18 - 3293: 24,17 - 3308: 10,-12 - 3309: 11,-12 - 3310: 11,-13 - 3311: 11,-15 - 3312: 11,-16 - 3313: 12,-17 - 3314: 11,-15 - 3315: 10,-11 - 3316: 8,-14 - 3317: 5,-16 - 3318: 6,-16 - 3319: 10,-12 - 3320: 12,-14 - 3321: 12,-17 - 3322: 12,-18 - 3323: 11,-14 - 3324: 9,-12 - 3325: 9,-13 - 3326: 5,-13 - 3327: 4,-10 - 3328: 4,-11 - 3329: 4,-13 - 3330: 4,-14 - 3331: 2,-14 - 3332: 4,-11 - 3333: 4,-12 - 3334: 3,-13 - 3335: -4,-14 - 3336: -6,-13 - 3337: -6,-11 - 3338: -7,-8 - 3339: -3,-13 - 3340: -6,-11 - 3341: -7,-9 - 3342: -5,-14 - 3343: -5,-10 - 3344: -1,-11 - 3345: 0,-11 - 3346: -5,-14 - 3347: -6,-11 - 3348: -8,-9 - 3349: -12,-9 - 3350: -10,-10 - 3351: -15,-10 - 3352: -19,-10 - 3353: -19,-13 - 3354: -19,-16 - 3355: -19,-19 - 3356: -16,-10 - 3357: -18,-18 - 3358: -19,-19 - 3359: -17,-12 - 3360: -18,-12 - 3361: -18,-13 - 3362: -19,-12 - 3363: -19,-10 - 3364: -17,-10 - 3365: -15,-9 - 3366: -11,-9 - 3367: -20,-10 - 3368: -20,-10 - 3369: -18,-17 - 3370: -17,-19 - 3371: -17,-20 - 3372: -17,-20 - 3373: -9,-14 - 3374: -13,-12 - 3375: -11,-13 - 3376: -10,-15 - 3377: -10,-15 - 3378: -14,-13 - 3379: -10,-13 - 3380: -9,-16 - 3381: -9,-15 - 3382: -10,-16 - 3383: -9,-16 - 3384: -13,-16 - 3385: -13,-15 - 3386: -13,-13 - 3387: -13,-14 - 3388: -13,-18 - 3389: -13,-19 - 3390: -13,-20 - 3391: -14,-19 - 3392: -12,-19 - 3393: -11,-19 - 3394: -15,-19 - 3395: -8,-19 - 3396: -8,-21 - 3397: -8,-26 - 3398: -8,-28 - 3399: -7,-30 - 3400: -6,-32 - 3401: -9,-34 - 3402: -6,-36 - 3403: -9,-37 - 3404: -10,-39 - 3405: -10,-41 - 3406: -7,-41 - 3407: -9,-39 - 3408: -10,-36 - 3409: -11,-34 - 3410: -10,-38 - 3411: -10,-41 - 3412: -7,-39 - 3413: -7,-33 - 3442: -14,-38 - 3443: -13,-37 - 3444: -13,-35 - 3445: -13,-32 - 3446: -13,-24 - 3447: -13,-24 - 3448: -12,-23 - 3449: -12,-22 - 3450: -13,-22 - 3451: -13,-22 - 3452: -13,-23 - 3453: -13,-24 - 3454: -12,-25 - 3455: 12,-21 - 3456: 12,-22 - 3457: 12,-23 - 3458: 12,-25 - 3459: 12,-27 - 3460: 12,-29 - 3461: 12,-31 - 3462: 12,-33 - 3463: 12,-35 - 3464: 12,-36 - 3465: 12,-37 - 3466: 12,-38 - 3467: 12,-37 - 3468: 12,-35 - 3469: 12,-33 - 3470: 12,-31 - 3471: 12,-29 - 3472: 12,-27 - 3473: 12,-25 - 3474: 12,-23 - 3475: 12,-21 - 3476: 12,-21 - 3477: 12,-25 - 3478: 12,-27 - 3479: 12,-29 - 3480: 12,-34 - 3512: 11,-21 - 3513: 11,-23 - 3514: 11,-25 - 3515: 11,-27 - 3516: 11,-30 - 3517: 11,-32 - 3518: 11,-35 - 3519: 11,-36 - 3520: 11,-35 - 3521: 11,-33 - 3522: 11,-30 - 3523: 11,-27 - 3524: 11,-24 - 3525: 11,-21 - 3526: 13,-24 - 3527: 13,-24 - 3528: 12,-24 - 3529: 11,-24 - 3530: 10,-25 - 3531: 9,-25 - 3532: 10,-25 - 3533: 7,-26 - 3534: 6,-27 - 3535: 4,-26 - 3536: 6,-25 - 3537: 7,-25 - 3538: 10,-21 - 3539: 8,-21 - 3540: 6,-21 - 3541: 5,-20 - 3542: 5,-19 - 3543: 7,-19 - 3545: 7,-18 - 3546: 7,-20 - 3548: 5,-21 - 3549: 5,-21 - 3551: 6,-19 - 3552: 5,-19 - 3553: 6,-20 - 3554: 6,-21 - 3555: 5,-21 - 3560: 10,-21 - 3561: 9,-21 - 3562: 10,-22 - 3563: 9,-22 - 3564: 10,-23 - 3565: 9,-22 - 3566: 11,-22 - 3599: 6,-35 - 3600: 11,-34 - 3601: 7,-37 - 3602: 6,-37 - 3603: 7,-38 - 3604: 7,-37 - 3605: 6,-37 - 3606: 6,-38 - 3607: 6,-38 - 3608: 6,-38 - 3609: 5,-38 - 3610: 4,-40 - 3633: 17,-37 - 3634: 18,-37 - 3635: 18,-37 - 3636: 18,-36 - 3637: 18,-35 - 3638: 18,-35 - 3639: 18,-34 - 3640: 18,-35 - 3641: 18,-35 - 3642: 17,-35 - 3643: 17,-35 - 3644: 17,-34 - 3645: 17,-34 - 3646: 17,-34 - 3647: 17,-34 - 3648: 18,-36 - 3649: 18,-36 - 3650: 18,-36 - 3651: 18,-36 - 3652: 18,-36 - 3663: 15,-41 - 3664: 15,-40 - 3665: 16,-40 - 3666: 16,-41 - 3667: 15,-41 - 3668: 15,-40 - 3669: 15,-38 - 3670: 15,-37 - 3671: 15,-37 - 3672: 15,-38 - 3673: 16,-41 - 3674: 16,-40 - 3675: 15,-41 - 3676: 15,-40 - 3677: 8,-38 - 3678: 9,-39 - 3679: 9,-41 - 3680: 4,-42 - 3681: 4,-39 - 3682: 5,-41 - 3683: -14,-38 - 3684: -13,-35 - 3685: -13,-32 - 3686: -13,-24 - 3687: -12,-23 - 3688: -13,-30 - 3689: -14,-30 - 3690: -16,-27 - 3691: -13,-27 - 3692: -14,-28 - 3693: -16,-29 - 3694: -16,-29 - 3695: -15,-27 - 3696: -13,-28 - 3697: -13,-29 - 3698: -14,-30 - 3699: -13,-29 - 3700: -13,-27 - 3701: -12,-29 - 3702: -7,-6 - 3703: -7,-4 - 3704: -5,-2 - 3705: -2,1 - 3706: -1,4 - 3707: 0,7 - 3708: 2,10 - 3709: 1,8 - 3710: 1,4 - 3711: -3,6 - 3712: -3,11 - 3713: -3,5 - 3714: 1,1 - 3715: -3,-2 - 3716: -1,-5 - 3717: 1,-6 - 3718: 1,-4 - 3719: 1,0 - 3720: 1,4 - 3721: 1,9 - 3722: 2,11 - 3723: 2,7 - 3724: 2,2 - 3725: 3,-2 - 3726: 3,-7 - 3727: 2,-4 - 3728: 1,0 - 3729: 1,5 - 3730: 1,8 - 3731: 1,11 - 3732: -2,11 - 3733: -4,7 - 3734: -4,2 - 3735: -3,-2 - 3736: 7,-5 - 3737: 5,-1 - 3738: 11,-5 - 3739: 11,-3 - 3740: 11,-3 - 3741: 9,-5 - 3742: 8,-5 - 3743: 10,-1 - 3744: 8,-1 - 3745: 11,-1 - 3746: 11,-1 - 3747: 11,-2 - 3748: 11,-1 - 3749: 10,2 - 3750: 10,2 - 3751: 11,2 - 3752: 11,1 - 3753: 10,1 - 3754: 11,1 - 3755: 11,1 - 3756: 12,2 - 3757: 12,2 - 3770: 8,5 - 3771: 7,6 - 3772: 6,8 - 3773: 7,9 - 3774: 9,10 - 3775: 10,9 - 3776: 10,7 - 3777: 7,6 - 3778: 5,11 - 3779: 5,11 - 3780: 5,9 - 3781: 6,6 - 3782: 7,5 - 3783: 11,7 - 3784: 10,10 - 3785: 6,5 - 3786: 5,5 - 3787: 5,5 - 3788: 3,5 - 3789: 4,5 - 3790: 5,5 - 3791: 2,5 - 3792: 3,5 - 3793: 3,5 - 3794: 5,-4 - 3795: 5,-5 - 3796: 6,-5 - 3797: 5,-5 - 3798: 4,-5 - 3810: 5,-3 - 3811: 5,-3 - 3812: 3,-3 - 3813: 3,-2 - 3814: 3,-1 - 3815: 3,-4 - 3816: 2,-6 - 3817: 1,-6 - 3818: 1,-6 - 3819: 1,-5 - 3820: 2,-5 - 3821: 3,-3 - 3822: 3,-2 - 3823: 9,-8 - 3824: 10,-7 - 3825: 11,-7 - 3826: 9,-7 - 3827: 11,-7 - 3828: 10,-7 - 3829: 9,-8 - 3830: 10,-8 - 3831: 10,-9 - 3832: 7,-8 - 3833: 8,-8 - 3834: 7,-8 - 3835: 8,-8 - 3836: 10,-8 - 3837: 10,-7 - 3838: 11,-7 - 3839: 12,-8 - 3840: 13,-8 - 3841: 14,-8 - 3842: 12,-8 - 3843: 13,-9 - 3844: 11,-8 - 3845: 10,-7 - 3846: 9,-8 - 3847: 8,-8 - 3848: 6,-8 - 3849: 9,-8 - 3850: 9,-7 - 3851: 8,-9 - 3862: -3,-1 - 3863: -4,1 - 3864: -4,3 - 3865: -4,4 - 3866: -7,3 - 3867: -9,2 - 3868: -11,-1 - 3869: -11,-1 - 3870: -13,-2 - 3871: -13,-2 - 3872: -15,1 - 3873: -14,0 - 3874: -14,2 - 3875: -14,3 - 3876: -14,4 - 3877: -13,2 - 3878: -13,1 - 3879: -12,0 - 3880: -10,1 - 3881: -9,2 - 3882: -8,2 - 3883: -7,1 - 3884: -8,2 - 3885: -6,0 - 3886: -3,2 - 3887: -3,4 - 3888: -2,6 - 3889: 0,6 - 3896: 3,6 - 3897: 2,6 - 3900: -10,7 - 3901: -9,6 - 3902: -9,6 - 3903: -8,6 - 3904: -7,6 - 3905: -10,7 - 3906: -10,6 - 3907: -10,8 - 3908: -9,8 - 3909: -10,8 - 3910: -11,7 - 3911: -10,6 - 3912: -9,6 - 3913: -9,7 - 3914: -7,8 - 3915: -5,7 - 3916: -5,6 - 3917: -5,5 - 3918: -5,4 - 3919: -8,4 - 3920: -9,4 - 3921: -8,4 - 3922: -9,4 - 3923: -9,4 - 3924: -7,4 - 3925: -5,10 - 3926: -5,10 - 3927: -4,10 - 3928: -4,11 - 3929: -4,11 - 3930: -3,11 - 3931: -4,9 - 3932: -3,10 - 3933: -3,7 - 3934: -3,5 - 3935: -3,3 - 3936: -3,0 - 3937: -3,-2 - 3938: -3,0 - 3939: -3,4 - 3940: -3,8 - 3941: -3,11 - 3942: -3,1 - 3943: -3,-2 - 3944: -3,-5 - 3945: -3,-6 - 4036: -44,43 - 4037: -44,42 - 4038: -44,40 - 4039: -43,38 - 4040: -43,37 - 4041: -43,37 - 4042: -44,39 - 4043: -44,42 - 4044: -45,44 - 4045: -46,43 - 4046: -47,43 - 4047: -48,44 - 4048: -45,43 - 4049: -44,43 - 4050: -45,43 - 4051: -47,43 - 4052: -49,43 - 4053: -49,41 - 4054: -49,39 - 4055: -51,38 - 4056: -51,38 - 4057: -51,37 - 4058: -51,36 - 4059: -51,36 - 4060: -46,36 - 4061: -44,36 - 4062: -49,36 - 4063: -51,36 - 4064: -47,37 - 4065: -51,38 - 4066: -50,38 - 4067: -46,37 - 4068: -43,37 - 4069: -38,37 - 4070: -45,37 - 4071: -51,36 - 4072: -47,36 - 4073: -41,36 - 4074: -44,37 - 4075: -38,37 - 4076: -33,37 - 4077: -38,36 - 4078: -39,36 - 4079: -41,36 - 4080: -39,36 - 4081: -39,37 - 4082: -40,37 - 4083: -40,36 - 4084: -37,37 - 4085: -37,36 - 4086: -41,37 - 4087: -42,37 - 4088: -36,37 - 4089: -35,37 - 4090: -33,36 - 4091: -35,36 - 4092: -35,36 - 4093: -37,37 - 4094: -35,38 - 4095: -30,36 - 4096: -31,36 - 4097: -31,35 - 4098: -31,35 - 4099: -30,37 - 4100: -30,36 - 4101: -31,35 - 4102: -30,33 - 4103: -29,33 - 4104: -27,32 - 4105: -28,31 - 4106: -29,30 - 4107: -30,30 - 4108: -32,30 - 4109: -29,30 - 4110: -28,31 - 4111: -29,33 - 4112: -31,33 - 4113: -31,32 - 4114: -28,33 - 4115: -28,31 - 4116: -28,32 - 4117: -28,33 - 4118: -28,32 - 4119: -28,30 - 4120: -28,30 - 4121: -27,30 - 4122: -27,31 - 4123: -27,33 - 4166: -39,19 - 4167: -39,18 - 4168: -39,20 - 4169: -39,23 - 4170: -39,23 - 4171: -38,26 - 4172: -39,29 - 4173: -38,28 - 4174: -39,26 - 4175: -39,23 - 4176: -39,21 - 4177: -39,27 - 4178: -38,26 - 4179: -38,21 - 4180: -38,19 - 4181: -39,21 - 4182: -39,29 - 4183: -39,27 - 4184: -39,21 - 4185: -39,24 - 4186: -40,27 - 4187: -39,25 - 4188: -39,24 - 4189: -39,26 - 4190: -37,26 - 4191: -37,23 - 4192: -38,20 - 4193: -39,19 - 4194: -39,18 - 4195: -40,18 - 4196: -38,21 - 4197: -38,26 - 4198: -42,26 - 4199: -42,25 - 4200: -41,25 - 4201: -42,25 - 4202: -41,26 - 4203: -41,26 - 4233: -38,15 - 4234: -36,15 - 4235: -36,15 - 4236: -35,15 - 4237: -39,4 - 4238: -40,3 - 4239: -40,2 - 4240: -40,0 - 4241: -40,-1 - 4242: -41,-1 - 4243: -41,-2 - 4244: -42,-2 - 4245: -43,-3 - 4246: -36,2 - 4247: -36,2 - 4248: -36,1 - 4249: -37,2 - 4250: -36,1 - 4251: -40,9 - 4252: -41,9 - 4253: -39,10 - 4254: -39,10 - 4255: -37,10 - 4256: -38,10 - 4257: -37,10 - 4258: -35,10 - 4259: -35,10 - 4260: -36,11 - 4261: -37,10 - 4301: -4,13 - 4302: 2,13 - 4303: 1,13 - 4304: 1,13 - 4305: -3,13 - 4306: -3,13 - 4307: -4,13 - 4308: -5,13 - 4309: -5,13 - 4310: -2,13 - 4311: -2,13 - 4312: 3,13 - 4313: 3,13 - 4314: 0,13 - 4315: 0,13 - 4327: -5,16 - 4328: -4,16 - 4329: -6,16 - 4330: -3,18 - 4331: -3,19 - 4332: 1,18 - 4333: 1,17 - 4334: 1,17 - 4335: 3,16 - 4336: 4,16 - 4337: 2,16 - 4362: 15,47 - 4363: 15,46 - 4364: 14,46 - 4365: 15,47 - 4402: 5,74 - 4403: 5,75 - 4404: 5,76 - 4405: 4,77 - 4406: 4,80 - 4407: 5,81 - 4408: 1,81 - 4409: -2,81 - 4410: 1,82 - 4411: 0,82 - 4412: 1,82 - 4413: 0,83 - 4414: 1,83 - 4415: 1,82 - 4416: 0,83 - 4417: 0,82 - 4418: -1,81 - 4419: -4,81 - 4420: -7,81 - 4421: -5,81 - 4422: 2,79 - 4423: 0,79 - 4424: 0,79 - 4425: -4,76 - 4426: -5,76 - 4427: -6,74 - 4428: -7,74 - 4429: -8,73 - 4430: -9,72 - 4431: -9,73 - 4432: -8,72 - 4433: -8,74 - 4434: -9,70 - 4435: -9,69 - 4436: -8,70 - 4437: 9,66 - 4438: 10,69 - 4439: 12,69 - 4440: 13,58 - 4441: 13,60 - 4442: 12,56 - 4443: 13,56 - 4444: 8,56 - 4445: 8,56 - 4446: 8,56 - 4447: 14,60 - 4448: 14,60 - 4449: 14,61 - 4450: 14,60 - 4451: 22,58 - 4452: 23,57 - 4453: 27,56 - 4454: 28,56 - 4455: 28,55 - 4456: 28,54 - 4457: 34,55 - 4458: 34,54 - 4459: 33,54 - 4460: 30,55 - 4461: 30,56 - 4462: 30,54 - 4463: 31,54 - 4464: 32,54 - 4472: 46,36 - 4473: 46,34 - 4524: 32,16 - 4525: 32,15 - 4526: 32,13 - 4527: 32,11 - 4528: 32,13 - 4557: 34,1 - 4558: 36,1 - 4559: 37,1 - 4560: 37,1 - 4561: 36,1 - 4562: 35,1 - 4563: 35,3 - 4564: 37,3 - 4565: 19,-4 - 4566: 18,-5 - 4567: 17,-6 - 4568: 17,-5 - 4569: 17,-4 - 4570: 18,-6 - 4571: 21,-6 - 4572: 19,-4 - 4573: 22,-4 - 4574: 21,-5 - 4575: 20,-6 - 4576: 22,-6 - 4577: 21,-4 - 4578: 21,-4 - 4579: 19,-5 - 4580: 20,-4 - 4581: 20,-4 - 4582: 20,-5 - 4583: 17,-4 - 4598: -9,-6 - 4599: -9,-5 - 4600: -9,-3 - 4601: -11,-2 - 4602: -10,-2 - 4603: -9,-3 - 4604: -9,-5 - 4605: -16,1 - 4606: -14,0 - 4607: -14,0 - 4608: -14,0 - 4609: -14,-1 - 4610: -13,0 - 4611: -13,1 - 4618: -10,-9 - 4619: -9,-10 - 4620: -6,-10 - 4621: -4,-11 - 4622: -2,-11 - 4623: -6,-14 - 4624: -6,-13 - 4625: 4,-14 - 4626: 4,-13 - 4627: 3,-11 - 4628: 3,-9 - 4629: 1,-9 - 4630: 5,-9 - 4631: 7,-9 - 4632: 8,-10 - 4633: 3,-5 - 4634: 4,-5 - 4635: 3,-5 - 4685: 12,9 - 4686: 13,9 - 4687: 14,9 - 4688: 14,8 - 4689: 14,7 - 4690: 15,9 - 4691: 15,10 - 4692: 15,10 - 4693: 13,10 - 4694: 9,10 - 4695: 6,10 - 4696: 6,8 - 4697: 7,6 - 4698: 7,9 - 4699: 8,8 - 4700: 7,7 - 4701: 8,7 - 4702: 8,9 - 4703: 8,6 - 4704: 8,7 - 4705: 8,9 - 4706: 7,10 - 4707: 6,11 - 4708: 8,11 - 4709: 10,10 - 4710: 10,6 - 4713: 14,38 - 4714: 15,38 - 4715: 14,38 - 4716: 15,38 - 4717: 14,38 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A461065E' - id: Dirt - decals: - 4931: -42,22 - 4932: -41,22 - 4933: -41,22 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A46106A4' - id: Dirt - decals: - 4934: -41,22 - 4935: -42,22 - 4936: -42,24 - 4937: -42,24 - 4938: -41,24 - 4939: -42,23 - 4940: -43,23 - 4941: -39,22 - 4942: -40,22 - 4943: -40,24 - 4944: -40,25 - 4945: -40,26 - 4946: -42,27 - 4947: -43,27 - 4948: -41,28 - 4949: -40,28 - 4950: -41,27 - 4951: -44,27 - 4952: -44,28 - 4953: -45,28 - 4954: -46,27 - 4955: -47,28 - 4956: -47,27 - 4957: -46,28 - 4958: -38,23 - 4959: -38,24 - 4960: -38,27 - 4961: -38,29 - 4962: -42,24 - 4963: -42,22 - 4964: -41,21 - 4965: -43,21 - 4966: -42,21 - 4967: -43,22 - 4968: -43,25 - 4969: -43,24 - 4970: -41,24 - 4971: -41,22 - 4972: -41,24 - 4973: -40,20 - 4974: -38,17 - 4975: -38,22 - - node: - cleanable: True - color: '#83543273' - id: DirtHeavy - decals: - 3294: 29,6 - 3299: 46,-10 - 3300: 48,-10 - 3414: -13,-41 - 3415: -11,-41 - 3416: -11,-40 - 3417: -10,-37 - 3418: -9,-34 - 3419: -7,-37 - 3420: -8,-40 - 3421: -6,-39 - 3422: -7,-34 - 3423: -7,-28 - 3424: -7,-24 - 3425: -7,-26 - 3426: -7,-30 - 3427: -9,-35 - 3428: -10,-38 - 3429: -10,-40 - 3481: 12,-37 - 3482: 12,-35 - 3483: 12,-34 - 3484: 12,-30 - 3485: 12,-28 - 3486: 12,-26 - 3487: 12,-23 - 3488: 12,-21 - 3489: 12,-20 - 3544: 6,-19 - 3547: 5,-19 - 3550: 5,-20 - 3567: 11,-22 - 3568: 11,-24 - 3569: 11,-27 - 3570: 11,-29 - 3571: 11,-32 - 3572: 11,-34 - 3573: 11,-36 - 3594: 7,-35 - 3595: 5,-35 - 3596: 9,-34 - 3597: 10,-34 - 3598: 8,-35 - 3611: 4,-39 - 3612: 6,-38 - 3613: 7,-38 - 3614: 7,-37 - 3615: 8,-38 - 3616: 9,-39 - 3617: 18,-38 - 3618: 18,-37 - 3619: 17,-37 - 3620: 17,-35 - 3621: 17,-34 - 3622: 17,-34 - 3656: 18,-36 - 3657: 18,-36 - 3658: 16,-41 - 3758: 10,1 - 3759: 10,1 - 3760: 12,2 - 3809: 8,-1 - 3852: 8,-8 - 3894: 3,4 - 3895: 2,4 - 3946: -3,-6 - 3947: -5,-6 - 3948: -3,-4 - 3949: -4,-2 - 3950: -3,1 - 3951: -4,4 - 3952: -4,6 - 3953: -3,8 - 3954: -5,9 - 3955: -3,10 - 3968: 3,14 - 3969: -1,17 - 3970: 0,20 - 3971: -1,25 - 3972: -1,30 - 3973: -1,33 - 3974: -1,36 - 3975: -2,38 - 3976: -1,49 - 3977: -1,50 - 3978: -2,50 - 4002: -7,48 - 4003: -8,48 - 4004: -9,46 - 4005: -10,45 - 4006: -11,45 - 4007: -13,45 - 4008: -16,45 - 4009: -17,45 - 4010: -9,46 - 4011: -7,46 - 4012: -5,45 - 4013: -7,46 - 4014: -8,48 - 4015: -9,49 - 4016: -11,53 - 4017: -14,55 - 4018: -17,53 - 4019: -13,53 - 4020: -12,54 - 4021: -14,53 - 4022: -16,53 - 4023: -18,52 - 4024: -19,51 - 4025: -19,50 - 4026: -19,48 - 4027: -20,48 - 4028: -20,47 - 4029: -20,47 - 4030: -18,46 - 4031: -16,45 - 4124: -27,33 - 4125: -30,33 - 4126: -29,33 - 4134: -29,33 - 4135: -27,30 - 4262: -41,10 - 4263: -40,10 - 4264: -40,9 - 4265: -40,8 - 4266: -39,5 - 4267: -39,4 - 4268: -39,5 - 4269: -40,2 - 4292: -38,6 - 4293: -39,4 - 4294: -38,3 - 4295: -39,3 - 4296: -38,2 - 4297: -38,1 - 4298: -36,2 - 4299: -36,4 - 4300: -36,3 - 4316: -5,13 - 4317: -3,13 - 4318: -2,13 - 4319: 1,13 - 4320: 2,13 - 4366: 15,47 - 4367: 15,47 - 4368: 15,46 - 4369: 14,46 - 4370: 15,45 - 4371: 15,44 - 4372: 2,56 - 4373: 2,54 - 4374: 3,53 - 4375: 4,53 - 4376: 2,53 - 4377: 4,54 - 4378: 4,56 - 4379: 4,56 - 4380: 5,55 - 4381: -2,54 - 4382: -2,54 - 4383: -2,70 - 4384: -2,70 - 4385: -2,68 - 4386: -2,68 - 4387: 0,68 - 4388: -2,67 - 4389: -3,67 - 4390: -3,67 - 4465: 32,54 - 4466: 33,54 - 4474: 46,36 - 4475: 45,36 - 4476: 46,36 - 4477: 49,36 - 4478: 48,36 - 4479: 48,35 - 4480: 48,34 - 4481: 48,35 - 4482: 48,36 - 4511: 27,25 - 4512: 29,25 - 4513: 30,26 - 4514: 30,23 - 4515: 30,24 - 4516: 30,25 - 4517: 30,24 - 4518: 32,19 - 4519: 32,16 - 4520: 32,15 - 4521: 33,15 - 4522: 32,15 - 4523: 32,16 - 4529: 39,14 - 4530: 41,15 - 4531: 42,15 - 4532: 45,14 - 4533: 46,15 - 4534: 48,15 - 4535: 47,15 - 4536: 49,15 - 4537: 49,13 - 4538: 45,15 - 4584: 17,-4 - 4585: 16,-5 - 4586: 16,-6 - 4587: 18,-5 - 4588: 18,-4 - 4589: 19,-6 - 4590: 20,-6 - 4591: 20,-4 - 4592: 20,-5 - 4593: 20,-5 - 4594: 21,-6 - 4595: 21,-4 - 4596: 22,-3 - 4597: 20,-3 - 4612: -12,-10 - 4613: -13,-10 - 4614: -12,-9 - 4615: -13,-10 - 4616: -12,-10 - 4617: -11,-10 - 4636: 3,-5 - 4637: 2,-6 - 4718: 14,38 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A4610696' - id: DirtHeavy - decals: - 4900: -40,21 - 4901: -41,22 - 4902: -43,23 - 4903: -43,27 - 4904: -43,28 - 4905: -42,28 - 4906: -46,28 - 4907: -45,28 - 4908: -45,27 - 4909: -47,27 - 4910: -38,20 - 4911: -41,20 - 4912: -42,27 - 4913: -41,24 - 4914: -42,24 - - node: - cleanable: True - color: '#83543273' - id: DirtLight - decals: - 3295: 29,6 - 3297: 46,-10 - 3298: 48,-10 - 3301: 46,-10 - 3304: 18,-9 - 3305: 22,-9 - 3490: 12,-36 - 3491: 12,-34 - 3492: 12,-30 - 3493: 12,-28 - 3494: 12,-26 - 3495: 12,-24 - 3496: 12,-22 - 3497: 12,-20 - 3498: 12,-18 - 3499: 12,-18 - 3500: 11,-19 - 3501: 12,-19 - 3556: 6,-21 - 3557: 5,-19 - 3591: 9,-35 - 3592: 7,-35 - 3593: 8,-35 - 3659: 15,-40 - 3660: 16,-40 - 3799: 5,-5 - 3800: 7,-5 - 3801: 10,-5 - 3802: 11,-2 - 3853: 9,-8 - 3854: 10,-8 - 3855: 10,-9 - 3856: 10,-9 - 3857: 9,-9 - 3858: 9,-9 - 3859: 12,-9 - 3860: 11,-8 - 3861: 11,-9 - 3890: -1,6 - 3898: -8,6 - 3899: -11,7 - 3956: 1,11 - 3957: 2,10 - 3958: 1,8 - 3959: 1,6 - 3960: 2,4 - 3961: 0,2 - 3962: 2,0 - 3963: 1,-3 - 3964: 2,-5 - 3965: 1,-6 - 3966: 1,4 - 3967: 2,7 - 3979: -2,48 - 3980: -2,50 - 4032: -44,43 - 4033: -44,43 - 4127: -31,31 - 4128: -31,30 - 4129: -29,30 - 4130: -32,33 - 4131: -31,33 - 4132: -31,30 - 4133: -29,30 - 4136: -27,31 - 4137: -27,32 - 4270: -41,-1 - 4271: -42,-2 - 4272: -40,-1 - 4273: -40,2 - 4274: -37,2 - 4275: -36,2 - 4276: -36,4 - 4277: -35,4 - 4283: -39,10 - 4284: -36,10 - 4285: -35,10 - 4286: -37,10 - 4287: -38,10 - 4288: -36,11 - 4289: -41,10 - 4290: -41,9 - 4291: -42,9 - 4321: 1,13 - 4322: 3,13 - 4323: 5,14 - 4324: 5,14 - 4325: 3,15 - 4326: 2,15 - 4338: 3,16 - 4339: 3,16 - 4340: 4,17 - 4341: 4,18 - 4342: 3,18 - 4351: 6,28 - 4352: 7,28 - 4353: 7,29 - 4354: 6,29 - 4355: 6,30 - 4356: 3,31 - 4357: 3,33 - 4358: 5,29 - 4359: 4,28 - 4360: 4,28 - 4361: 4,30 - 4539: 46,15 - 4540: 46,17 - 4541: 46,17 - 4542: 48,17 - 4543: 49,17 - 4544: 49,17 - 4545: 48,17 - 4638: 3,-5 - 4639: 3,-5 - 4640: 2,-6 - 4719: 15,38 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A461065E' - id: DirtLight - decals: - 4928: -41,22 - 4929: -42,23 - 4930: -41,23 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 4832: 46,-11 - 4833: 45,-11 - 4834: 46,-13 - 4835: 47,-14 - 4836: 48,-12 - 4837: 48,-12 - 4838: 48,-14 - 4839: 47,-14 - 4840: 49,-15 - 4841: 49,-8 - 4842: 48,-8 - - node: - cleanable: True - color: '#83543273' - id: DirtMedium - decals: - 3296: 28,-14 - 3302: 48,-10 - 3303: 37,-9 - 3306: 11,-9 - 3307: 9,-9 - 3430: -10,-42 - 3431: -10,-37 - 3432: -10,-34 - 3433: -8,-33 - 3434: -14,-36 - 3435: -13,-33 - 3436: -12,-37 - 3437: -13,-36 - 3438: -12,-34 - 3439: -13,-34 - 3440: -13,-36 - 3441: -13,-37 - 3502: 11,-19 - 3503: 11,-18 - 3504: 12,-18 - 3505: 12,-20 - 3506: 12,-22 - 3507: 12,-25 - 3508: 12,-28 - 3509: 12,-30 - 3510: 12,-34 - 3511: 12,-36 - 3558: 7,-21 - 3559: 7,-21 - 3574: 11,-37 - 3575: 11,-35 - 3576: 11,-32 - 3577: 11,-29 - 3578: 11,-26 - 3579: 11,-24 - 3580: 7,-31 - 3581: 6,-31 - 3582: 5,-35 - 3583: 6,-34 - 3584: 7,-34 - 3585: 6,-35 - 3586: 7,-35 - 3587: 6,-35 - 3588: 8,-34 - 3589: 10,-34 - 3590: 10,-35 - 3623: 17,-37 - 3624: 17,-36 - 3625: 17,-35 - 3626: 17,-35 - 3627: 17,-37 - 3628: 18,-37 - 3629: 18,-35 - 3630: 18,-34 - 3631: 18,-36 - 3632: 18,-37 - 3653: 17,-36 - 3654: 17,-36 - 3655: 18,-35 - 3661: 15,-40 - 3662: 15,-40 - 3761: 11,3 - 3762: 10,2 - 3763: 11,1 - 3764: 11,1 - 3765: 12,2 - 3766: 12,2 - 3767: 12,2 - 3768: 10,1 - 3769: 10,1 - 3803: 5,-1 - 3804: 8,2 - 3805: 8,-1 - 3806: 9,-5 - 3807: 6,-5 - 3808: 11,-5 - 3891: -3,5 - 3892: -4,6 - 3893: -2,5 - 3981: -7,50 - 3982: -7,47 - 3983: -8,50 - 3984: -9,47 - 3985: -9,46 - 3986: -14,45 - 3987: -16,45 - 3988: -19,47 - 3989: -19,49 - 3990: -17,53 - 3991: -15,54 - 3992: -13,54 - 3993: -11,55 - 3994: -10,57 - 3995: -9,55 - 3996: -9,55 - 3997: -9,55 - 3998: -7,48 - 3999: -7,48 - 4000: -7,50 - 4001: -7,50 - 4034: -44,43 - 4035: -44,43 - 4138: -27,33 - 4139: -27,30 - 4140: -33,25 - 4141: -33,24 - 4142: -33,22 - 4143: -33,20 - 4144: -33,17 - 4145: -36,13 - 4146: -43,13 - 4147: -48,14 - 4148: -50,14 - 4149: -46,14 - 4150: -45,14 - 4151: -45,14 - 4152: -46,15 - 4153: -48,15 - 4154: -49,13 - 4155: -42,14 - 4156: -39,15 - 4157: -38,15 - 4158: -36,15 - 4159: -39,17 - 4160: -38,17 - 4161: -38,18 - 4162: -39,16 - 4163: -38,18 - 4164: -39,19 - 4165: -38,17 - 4204: -41,26 - 4205: -42,25 - 4206: -42,25 - 4207: -41,25 - 4208: -38,28 - 4209: -38,29 - 4210: -38,28 - 4211: -40,29 - 4212: -40,29 - 4213: -39,27 - 4214: -39,25 - 4215: -38,23 - 4216: -39,21 - 4217: -39,20 - 4218: -39,19 - 4219: -41,18 - 4220: -40,17 - 4221: -40,18 - 4222: -39,17 - 4223: -38,18 - 4224: -38,15 - 4225: -39,15 - 4226: -38,14 - 4227: -37,15 - 4228: -36,14 - 4229: -36,15 - 4230: -36,16 - 4231: -36,16 - 4232: -36,16 - 4278: -36,2 - 4279: -36,3 - 4280: -35,4 - 4281: -38,6 - 4282: -38,7 - 4343: 3,17 - 4344: 4,17 - 4345: 3,18 - 4346: 3,18 - 4347: 3,17 - 4348: 4,27 - 4349: 7,30 - 4350: 6,30 - 4391: -3,67 - 4392: -3,67 - 4393: -2,68 - 4394: 0,68 - 4395: 0,70 - 4396: 0,74 - 4397: 2,76 - 4398: 3,76 - 4399: 5,76 - 4400: 5,75 - 4401: 5,74 - 4467: 32,54 - 4468: 31,54 - 4469: 40,47 - 4470: 44,43 - 4471: 42,43 - 4483: 47,36 - 4484: 47,37 - 4485: 47,36 - 4486: 47,37 - 4487: 47,37 - 4488: 45,37 - 4489: 45,35 - 4490: 43,36 - 4491: 42,37 - 4492: 41,37 - 4493: 41,40 - 4494: 41,40 - 4495: 39,37 - 4496: 39,36 - 4497: 36,38 - 4498: 34,38 - 4499: 32,38 - 4500: 29,37 - 4501: 30,36 - 4502: 30,38 - 4503: 31,38 - 4504: 31,38 - 4505: 31,38 - 4506: 28,26 - 4507: 27,25 - 4508: 27,25 - 4509: 29,29 - 4510: 30,27 - 4546: 46,15 - 4547: 48,15 - 4548: 46,16 - 4549: 46,17 - 4550: 46,16 - 4551: 34,5 - 4552: 34,5 - 4553: 35,5 - 4554: 34,3 - 4555: 34,3 - 4556: 34,1 - 4641: 2,-6 - 4642: 1,-5 - 4643: 0,-1 - 4644: 1,0 - 4645: 0,0 - 4646: -2,1 - 4647: -2,0 - 4648: 1,3 - 4649: 1,9 - 4650: -2,6 - 4651: -6,0 - 4652: -8,-2 - 4653: -10,-2 - 4654: -11,-1 - 4655: -7,-1 - 4656: -6,-1 - 4657: -4,-1 - 4658: -5,-1 - 4659: -5,0 - 4660: -8,3 - 4661: -9,3 - 4662: -9,3 - 4663: -7,3 - 4664: -4,6 - 4665: 7,4 - 4666: 6,5 - 4667: 6,7 - 4668: 10,10 - 4669: 10,8 - 4670: 10,5 - 4671: 8,5 - 4672: 9,5 - 4673: 13,9 - 4674: 14,8 - 4675: 14,8 - 4676: 14,9 - 4677: 13,10 - 4678: 14,9 - 4679: 15,10 - 4680: 15,9 - 4681: 13,10 - 4682: 15,10 - 4683: 14,10 - 4684: 13,9 - 4720: 14,38 - 4721: 15,38 - 4722: 15,38 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A461065E' - id: DirtMedium - decals: - 4919: -43,27 - 4920: -43,28 - 4921: -46,28 - 4922: -46,27 - 4923: -41,24 - 4924: -40,21 - 4925: -41,27 - 4926: -41,23 - 4927: -41,22 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#A4610696' - id: DirtMedium - decals: - 4915: -42,22 - 4916: -43,24 - 4917: -42,25 - 4918: -42,28 - - node: - color: '#80C71FA4' - id: Flowersbr1 - decals: - 4740: -45.480713,39.888554 - - node: - color: '#80C71FA4' - id: Flowersbr2 - decals: - 4742: -47.82387,40.787373 - - node: - color: '#80C71FAE' - id: Flowerspv2 - decals: - 2178: 22.31159,21.239965 - - node: - color: '#80C71FAE' - id: Flowerspv3 - decals: - 2177: 22.119907,20.303352 - - node: - color: '#80C71FA4' - id: Flowersy1 - decals: - 4737: -45.40703,40.65476 - 4739: -46.468082,40.168514 - - node: - color: '#80C71FAE' - id: Flowersy2 - decals: - 2174: 21.097595,20.409784 - 2179: 21.012402,21.21868 - 2180: 22.780151,20.0692 - - node: - color: '#80C71FA4' - id: Flowersy3 - decals: - 4741: -46.61545,40.787373 - - node: - color: '#80C71FAE' - id: Flowersy3 - decals: - 2173: 22.013416,21.53798 - 2175: 26.379543,16.769766 - 2181: 21.928225,20.32464 - - node: - color: '#80C71FA4' - id: Flowersy4 - decals: - 4738: -47.750187,39.991695 - - node: - color: '#80C71FAE' - id: Flowersy4 - decals: - 2176: 27.061085,17.45094 - - node: - color: '#18A2D50C' - id: FullTileOverlayGreyscale - decals: - 747: 24,31 - 748: 24,32 - 749: 24,33 - 750: 24,34 - 751: 24,31 - 752: 24,32 - 753: 24,33 - 754: 24,34 - - node: - color: '#18A2D522' - id: FullTileOverlayGreyscale - decals: - 739: 25,34 - 740: 26,34 - 741: 25,33 - 742: 26,33 - 743: 25,32 - 744: 26,32 - 745: 27,32 - 746: 27,33 - - node: - color: '#D5188D95' - id: FullTileOverlayGreyscale - decals: - 697: 17,45 - 698: 17,46 - 699: 17,47 - 700: 18,47 - 701: 18,45 - 702: 18,46 - - node: - color: '#80C71FAB' - id: Grassa1 - decals: - 2169: 20.991104,21.857279 - 2171: 26.975891,16.94006 - - node: - color: '#80C71FB4' - id: Grassa1 - decals: - 2194: 20.92721,20.19692 - - node: - color: '#80C71FA4' - id: Grassa2 - decals: - 4724: -47.73545,40.050636 - 4728: -47.764923,40.698963 - 4730: -46.24703,40.743168 - 4731: -46.084923,39.918022 - - node: - color: '#80C71FB4' - id: Grassa2 - decals: - 2195: 22.865343,21.921139 - 2196: 26.358244,16.94006 - - node: - color: '#80C71F95' - id: Grassa3 - decals: - 2190: 22.247696,20.388498 - - node: - color: '#80C71FA4' - id: Grassa3 - decals: - 4725: -45.421764,40.669495 - - node: - color: '#80C71FA4' - id: Grassa4 - decals: - 4726: -45.40703,39.918022 - - node: - color: '#80C71FAB' - id: Grassa4 - decals: - 2168: 21.885628,21.303825 - - node: - color: '#80C71FB4' - id: Grassa4 - decals: - 2191: 21.992119,21.3464 - 2197: 27.124979,17.599947 - - node: - color: '#80C71FA4' - id: Grassa5 - decals: - 4727: -46.60071,39.873817 - - node: - color: '#80C71FAB' - id: Grassa5 - decals: - 2170: 26.209158,17.685093 - 2172: 21.566154,21.814705 - - node: - color: '#80C71FB4' - id: Grassa5 - decals: - 2192: 21.523558,20.409784 - 2193: 20.756824,21.835993 - - node: - color: '#80C71FA4' - id: Grassb2 - decals: - 4748: -46.541767,41.02313 - 4750: -44.994396,39.829613 - - node: - color: '#80C71FAB' - id: Grassb2 - decals: - 2164: 27.188873,17.578661 - 2165: 20.92721,20.111773 - 2166: 23.057028,20.239492 - - node: - color: '#80C71FAB' - id: Grassb3 - decals: - 2162: 21.821733,20.154345 - 2163: 26.954594,16.897486 - - node: - color: '#80C71FA4' - id: Grassb4 - decals: - 4744: -45.392292,40.65476 - 4747: -47.88282,40.743168 - 4749: -47.853344,39.991695 - 4751: -45.30387,40.919987 - - node: - color: '#80C71F95' - id: Grassc1 - decals: - 2187: 27.061085,17.770239 - - node: - color: '#80C71FA4' - id: Grassc1 - decals: - 4746: -46.52703,40.301125 - - node: - color: '#FFFFFF7F' - id: Grassc1 - decals: - 2116: 32.165768,40.007343 - - node: - color: '#80C71F95' - id: Grassc2 - decals: - 2186: 26.081367,17.770239 - - node: - color: '#80C71FA4' - id: Grassc2 - decals: - 4729: -46.29124,40.640026 - - node: - color: '#FFFFFF7F' - id: Grassc2 - decals: - 2115: 32.108974,40.943954 - - node: - color: '#80C71F95' - id: Grassc3 - decals: - 2185: 26.52863,16.897486 - - node: - color: '#80C71FA4' - id: Grassc3 - decals: - 4743: -47.70598,40.0359 - - node: - color: '#FFFFFF7F' - id: Grassc3 - decals: - 2113: 28.90005,40.85881 - - node: - color: '#80C71F95' - id: Grassc4 - decals: - 2182: 21.054998,20.45236 - - node: - color: '#FFFFFF7F' - id: Grassc4 - decals: - 2114: 28.87165,40.035725 - - node: - color: '#FFFFFFEF' - id: Grassd1 - decals: - 2119: 32.13737,39.978962 - - node: - color: '#FFFFFFEF' - id: Grassd2 - decals: - 2117: 28.90005,40.049915 - - node: - color: '#80C71FA4' - id: Grassd3 - decals: - 4745: -45.30387,39.976963 - - node: - color: '#FFFFFFEF' - id: Grassd3 - decals: - 2118: 28.942644,41.057484 - - node: - color: '#80C71F95' - id: Grasse1 - decals: - 2188: 26.379543,17.025208 - 2189: 21.331875,20.494932 - - node: - color: '#FFFFFFEF' - id: Grasse1 - decals: - 2120: 32.15157,40.943954 - - node: - color: '#80C71F95' - id: Grasse2 - decals: - 2183: 22.375484,21.729559 - - node: - color: '#80C71F95' - id: Grasse3 - decals: - 2184: 22.65236,20.175632 - - node: - color: '#5A5A6015' - id: HalfTileOverlayGreyscale - decals: - 9: -2,76 - 10: -1,76 - 11: 0,76 - - node: - color: '#D4D4D426' - id: HalfTileOverlayGreyscale - decals: - 4812: 19,-12 - 4813: 18,-12 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 17: -2,77 - 18: -1,77 - 19: 0,77 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 5142: 15,17 - - node: - color: '#5A5A605A' - id: HalfTileOverlayGreyscale180 - decals: - 0: -2,76 - 1: -1,76 - 2: 0,76 - - node: - color: '#D4D4D40C' - id: HalfTileOverlayGreyscale180 - decals: - 4814: 18,-12 - 4815: 19,-12 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 16: 1,76 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 5143: 14,19 - - node: - color: '#D381C9FF' - id: HalfTileOverlayGreyscale270 - decals: - 954: -12,27 - 955: -12,28 - 956: -12,29 - 957: -12,30 - 958: -12,31 - 959: -12,32 - 960: -12,33 - 961: -12,34 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 15: -3,76 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 5136: 16,18 - 5137: 16,19 - - node: - color: '#D381C9FF' - id: HalfTileOverlayGreyscale90 - decals: - 962: -10,27 - 963: -10,28 - 964: -10,29 - 965: -10,30 - 966: -10,31 - 967: -10,32 - 968: -10,33 - 969: -10,34 - - node: - angle: 1.5707963267948966 rad - color: '#A46105C0' - id: LoadingArea - decals: - 1910: -36,5 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 5029: -43,1 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 5067: -9,61 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 4880: -42,24 - 4881: -42,22 - 5028: -43,5 - - node: - angle: -1.5707963267948966 rad - color: '#52B4E996' - id: LoadingAreaGreyscale - decals: - 2079: 28,6 - - node: - angle: 1.5707963267948966 rad - color: '#52B4E996' - id: LoadingAreaGreyscale - decals: - 2078: 28,3 - - node: - color: '#334E6DC8' - id: MiniTileCheckerAOverlay - decals: - 1694: 17,-25 - 1695: 17,-24 - 1696: 17,-23 - 1723: 18,-18 - 1724: 19,-18 - 1725: 19,-17 - 1726: 18,-17 - 1727: 18,-16 - 1728: 19,-16 - 1729: 19,-15 - 1730: 18,-15 - 1731: 18,-14 - 1799: 4,46 - 1800: 5,46 - 1801: 5,47 - 1802: 4,47 - 4758: 19,-14 - - node: - color: '#52B4E996' - id: MiniTileCheckerAOverlay - decals: - 1170: -13,-15 - 1171: -13,-14 - 1172: -13,-13 - 1173: -12,-13 - 1174: -11,-13 - 1175: -10,-13 - 1176: -10,-14 - 1177: -10,-15 - 1178: -11,-15 - 1179: -12,-15 - 1180: -12,-14 - 1181: -11,-14 - - node: - color: '#52B4E9FF' - id: MiniTileCheckerAOverlay - decals: - 722: 19,40 - 723: 19,41 - 724: 19,42 - 725: 20,42 - 726: 21,42 - 727: 21,41 - 728: 21,40 - 729: 20,40 - 730: 20,41 - - node: - color: '#D381C996' - id: MiniTileCheckerAOverlay - decals: - 1021: -14,23 - 1022: -14,22 - - node: - color: '#EFB34196' - id: MiniTileCheckerAOverlay - decals: - 1603: 5,-26 - 1604: 5,-25 - 1605: 6,-25 - 1606: 6,-26 - - node: - color: '#3E5C23A8' - id: MiniTileCheckerBOverlay - decals: - 1429: 7,9 - 1430: 8,9 - 1431: 9,9 - 1432: 7,8 - 1433: 8,8 - 1434: 9,8 - 1435: 7,7 - 1436: 8,7 - 1437: 9,7 - 1438: 7,6 - 1439: 8,6 - 1440: 9,6 - - node: - color: '#D381C996' - id: MiniTileCheckerBOverlay - decals: - 1023: -20,23 - 1024: -20,22 - 1095: -7,22 - 1096: -6,22 - 1097: -5,22 - 1098: -5,23 - 1099: -6,23 - 1100: -7,23 - - node: - color: '#D56F18EF' - id: MiniTileCheckerBOverlay - decals: - 858: 3,22 - 859: 3,23 - 860: 3,24 - 861: 4,24 - 862: 5,24 - 863: 5,23 - 864: 4,23 - 865: 4,22 - - node: - color: '#DE3A3A96' - id: MiniTileCheckerBOverlay - decals: - 587: -14,49 - 588: -13,49 - 589: -16,59 - 590: -15,59 - - node: - color: '#EFB34196' - id: MiniTileCheckerBOverlay - decals: - 1182: -13,-13 - 1183: -12,-13 - 1184: -11,-13 - 1185: -10,-13 - 1186: -10,-14 - 1187: -10,-15 - 1188: -11,-15 - 1189: -12,-15 - 1190: -13,-15 - 1191: -13,-14 - 1192: -12,-14 - 1193: -11,-14 - 1204: 8,-13 - 1205: 8,-14 - 1206: 8,-15 - 1207: 9,-15 - 1208: 9,-14 - 1209: 9,-13 - 1210: 10,-13 - 1211: 10,-14 - 1212: 10,-15 - 1213: 11,-15 - 1214: 11,-14 - 1215: 11,-13 - - node: - color: '#52B4E996' - id: MiniTileOverlay - decals: - 4976: 4,27 - 4977: 3,27 - 4978: 2,27 - 4979: 2,28 - 4980: 4,28 - 4981: 3,28 - 4982: 3,29 - 4983: 2,29 - 4984: 2,30 - 4985: 3,30 - 4986: 3,31 - 4987: 2,31 - 4988: 2,32 - 4989: 3,32 - 4990: 3,33 - 4991: 2,33 - 4992: 3,34 - 4993: 2,34 - - node: - color: '#18A2D50C' - id: MonoOverlay - decals: - 755: 27,31 - 756: 26,31 - 757: 25,31 - 758: 23,31 - 759: 23,32 - 760: 23,33 - 761: 23,34 - 762: 27,34 - 763: 27,34 - 764: 27,31 - 765: 26,31 - 766: 25,31 - 767: 23,31 - 768: 23,32 - 769: 23,33 - 770: 23,34 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 213: -2,58 - 214: -2,59 - 215: -2,60 - 216: -2,61 - 217: -2,62 - 218: -2,63 - 219: -2,64 - 220: -2,65 - 221: -2,66 - 222: -2,68 - 223: 0,68 - 224: -1,68 - 225: 2,68 - 226: 3,68 - 227: 4,68 - 228: 5,68 - 229: 6,68 - 230: 7,68 - 2137: -2,67 - 2138: 1,68 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 168: 5,15 - 169: 6,15 - 170: 7,15 - 171: 8,15 - 172: 9,15 - 173: 10,15 - 174: 11,15 - 175: 12,15 - 176: 13,15 - 177: 14,15 - 178: 15,15 - 179: 16,15 - 180: 17,15 - 5099: 14,29 - 5129: 11,18 - 5131: 9,20 - 5132: 8,20 - 5133: 7,20 - 5134: 6,20 - 5135: 6,19 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale - decals: - 1505: 4,-8 - 1506: 5,-8 - 1507: 6,-8 - 1508: 7,-8 - 1509: 8,-8 - 1510: 9,-8 - 1511: 10,-8 - 1512: 11,-8 - 1513: 12,-8 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 279: -33,-7 - 280: -33,-6 - 281: -33,-5 - 282: -33,-4 - 283: -33,-3 - 284: -33,-2 - 285: -33,-1 - 286: -33,0 - 287: -33,1 - 288: -33,2 - 289: -33,3 - 290: -33,8 - 291: -33,9 - 292: -33,10 - 293: -33,11 - 294: -33,12 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 181: -2,38 - 182: -3,38 - 183: -2,39 - 184: -2,40 - 185: -2,41 - 186: -4,38 - 187: -5,38 - 188: -7,38 - 189: -6,38 - 190: -8,38 - 191: -9,38 - 192: -10,38 - 193: -11,38 - 194: -12,38 - 195: -13,38 - 196: -14,38 - 197: -15,38 - 198: -16,38 - 199: -17,38 - 200: -18,38 - 201: -19,38 - 202: -20,38 - 203: -21,38 - 204: -22,38 - 205: -23,38 - 206: -2,42 - 207: -2,43 - 208: -2,44 - 209: -2,46 - 210: -2,45 - 211: -2,47 - 212: -2,51 - 599: -2,48 - 600: -2,49 - 601: -2,50 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 20: -3,77 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 134: 0,20 - 135: 0,21 - 136: 0,22 - 137: 0,23 - 138: 0,24 - 139: 0,25 - 140: 0,27 - 141: 0,26 - 142: 0,28 - 143: 0,29 - 144: 0,30 - 145: 0,31 - 146: 0,32 - 147: 0,33 - 148: 0,34 - 149: 0,35 - 150: 0,36 - 151: 1,36 - 152: 2,36 - 153: 3,36 - 154: 4,36 - 155: 5,36 - 156: 6,36 - 157: 7,36 - 158: 8,36 - 159: 9,36 - 160: 10,36 - 161: 11,36 - 162: 12,36 - 163: 13,36 - 164: 14,36 - 165: 15,36 - 166: 16,36 - 167: 17,36 - 5101: 16,27 - 5102: 15,27 - 5103: 14,27 - 5104: 13,27 - 5105: 17,27 - 5130: 10,19 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale180 - decals: - 1483: -6,13 - 1484: -7,13 - 1485: -8,13 - 1486: -9,13 - 1487: -10,13 - 1488: -11,13 - 1489: -12,13 - 1490: -13,13 - 1491: -14,13 - 1492: -15,13 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 295: -34,13 - 296: -35,13 - 297: -36,13 - 298: -37,13 - 299: -39,13 - 300: -38,13 - 301: -41,13 - 302: -42,13 - 303: -43,13 - 304: -44,13 - 305: -45,13 - 1850: -40,13 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 21: 1,77 - 462: 1,66 - 463: 3,66 - 464: 2,66 - 465: 4,66 - 466: 5,66 - 467: 6,66 - 468: 7,66 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 367: -2,-14 - 368: -4,-14 - 369: -6,-14 - 370: -6,-12 - 371: -6,-10 - 372: -8,-10 - 373: -10,-10 - 374: -12,-10 - 375: -14,-10 - 376: -16,-10 - 5121: 9,18 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - decals: - 1469: 5,13 - 1470: 6,13 - 1471: 8,13 - 1472: 7,13 - 1473: 9,13 - 1474: 10,13 - 1475: 11,13 - 1476: 12,13 - 1477: 13,13 - 1478: 14,13 - 1479: 15,13 - 1480: 16,13 - 1481: 17,13 - 1482: 4,13 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 246: 2,52 - 247: 1,52 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 318: -33,16 - 319: -33,17 - 320: -33,18 - 321: -33,19 - 322: -33,20 - 323: -33,21 - 324: -33,22 - 325: -33,23 - 326: -33,24 - 327: -33,25 - 328: -33,26 - 329: -33,28 - 330: -33,27 - 331: -33,29 - 332: -33,30 - 333: -33,31 - 334: -33,32 - 335: -33,33 - 336: -33,34 - 337: -33,35 - 338: -33,36 - 339: -34,36 - 340: -35,36 - 341: -36,36 - 342: -37,36 - 343: -38,36 - 344: -39,36 - 345: -40,36 - 346: -41,36 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 96: -2,20 - 97: -2,21 - 98: -2,22 - 99: -2,23 - 100: -2,24 - 101: -2,25 - 102: -2,26 - 103: -2,27 - 104: -2,28 - 105: -2,29 - 106: -2,30 - 107: -2,31 - 108: -2,32 - 109: -2,33 - 110: -2,34 - 111: -2,35 - 112: -2,36 - 113: -3,36 - 114: -4,36 - 115: -5,36 - 116: -6,36 - 117: -7,36 - 118: -8,36 - 119: -9,36 - 120: -10,36 - 121: -11,36 - 122: -12,36 - 123: -13,36 - 124: -14,36 - 125: -15,36 - 126: -16,36 - 127: -17,36 - 128: -18,36 - 129: -19,36 - 130: -20,36 - 131: -21,36 - 132: -22,36 - 133: -23,36 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 347: 5,-10 - 348: 6,-10 - 349: 7,-10 - 350: 8,-10 - 351: 9,-10 - 352: 11,-10 - 353: 10,-10 - 354: 12,-10 - 355: 13,-10 - 356: 14,-10 - 361: 4,-14 - 362: 3,-14 - 363: 2,-14 - 364: 1,-14 - 365: 0,-14 - 366: -1,-14 - 377: -15,-10 - 378: -13,-10 - 379: -11,-10 - 380: -9,-10 - 381: -7,-10 - 382: -6,-11 - 383: -6,-13 - 384: -5,-14 - 385: -3,-14 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 231: 0,65 - 232: 0,64 - 233: 0,63 - 234: 0,62 - 235: 0,61 - 236: 0,60 - 237: 0,59 - 238: 0,58 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 5122: 8,17 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - decals: - 1493: -6,-8 - 1494: -7,-8 - 1495: -8,-8 - 1496: -9,-8 - 1497: -10,-8 - 1498: -11,-8 - 1499: -12,-8 - 1500: -13,-8 - 1501: -14,-8 - 1502: -15,-8 - 1503: -16,-8 - 1504: -17,-8 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 239: 1,57 - 240: 2,57 - 241: 2,56 - 242: 2,55 - 243: 2,54 - 244: 2,53 - 245: 2,52 - 248: 0,51 - 249: 0,50 - 250: 0,44 - 251: 0,43 - 252: 0,42 - 253: 0,41 - 254: 0,40 - 255: 0,39 - 256: 0,38 - 257: 1,38 - 258: 2,38 - 259: 3,38 - 260: 4,38 - 261: 5,38 - 262: 7,38 - 263: 6,38 - 264: 8,38 - 265: 9,38 - 266: 10,38 - 267: 11,38 - 268: 13,38 - 269: 12,38 - 270: 16,38 - 271: 17,38 - 272: 18,38 - 273: 19,38 - 274: 20,38 - 275: 21,38 - 276: 22,38 - 277: 23,38 - 278: 24,38 - 1785: 0,49 - 1786: 0,48 - 4711: 14,38 - 4712: 15,38 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 306: -45,15 - 307: -44,15 - 308: -43,15 - 309: -42,15 - 310: -41,15 - 311: -40,15 - 312: -39,15 - 313: -38,15 - 314: -37,15 - 315: -36,15 - 316: -35,15 - 317: -34,15 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 79: -7,15 - 80: -8,15 - 81: -9,15 - 82: -10,15 - 83: -11,15 - 84: -12,15 - 85: -13,15 - 86: -14,15 - 87: -15,15 - 88: -16,15 - 89: -17,15 - 90: -18,15 - 91: -19,15 - 92: -20,15 - 93: -21,15 - 94: -22,15 - 95: -23,15 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 357: 4,-11 - 358: 4,-12 - 359: 4,-13 - 360: 4,-14 - - node: - color: '#FFFFFFFF' - id: Rock03 - decals: - 2154: 22.524572,21.835993 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 2080: -4,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 2081: -3,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 2082: -2,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 2083: -1,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 2084: 0,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 2085: 1,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 2086: 2,14 - - node: - angle: 1.5707963267948966 rad - color: '#A46105C0' - id: StandClear - decals: - 1909: -36,5 - - node: - color: '#A4610696' - id: StandClear - decals: - 1911: -38,16 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 989: -7,27 - 1155: -12,-27 - 1156: -12,-28 - 1157: -12,-29 - 1158: -12,-30 - 1611: 8,-25 - 1612: 8,-21 - 1613: 11,-20 - 1614: 12,-20 - 1615: 11,-17 - 1616: 12,-17 - 1617: 10,-11 - 1618: 11,-11 - 1619: -12,-11 - 1620: -13,-11 - 1621: -13,-17 - 1622: -10,-19 - 1623: -13,-21 - 1624: 12,-39 - 1625: 6,-36 - 1626: 7,-36 - 1627: 6,-32 - 1628: 7,-32 - 1629: -20,-19 - 1819: -9,-17 - 1841: -42,9 - 1842: -38,10 - 1843: -36,3 - 2147: -20,-13 - 2148: -21,-13 - 4723: -40,12 - - node: - color: '#52B4E996' - id: StandClearGreyscale - decals: - 456: -2,72 - 457: -1,72 - 458: 0,72 - 1795: 1,47 - 1796: 1,46 - 1797: 3,47 - 1798: 3,46 - 1815: 15,-24 - 1816: 14,-24 - 1817: 18,-11 - 1818: 19,-11 - 4820: 18,-13 - 4821: 19,-13 - - node: - color: '#A4610696' - id: StandClearGreyscale - decals: - 4892: -44,27 - 4893: -44,28 - - node: - color: '#D381C9FF' - id: StandClearGreyscale - decals: - 4828: -16,35 - 4829: -15,35 - 4830: -14,35 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 5120: 9,17 - 5139: 14,20 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 5141: 16,17 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 5128: 11,19 - 5140: 14,17 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 5138: 16,20 - - node: - color: '#FFFFFFFF' - id: VentSmall - decals: - 5045: -9,60 - - node: - color: '#79150096' - id: WarnBox - decals: - 1283: -15,-13 - 1284: -15,-12 - - node: - color: '#791500FF' - id: WarnBox - decals: - 1285: -15,-13 - 1286: -15,-12 - - node: - color: '#DE3A3AFF' - id: WarnBox - decals: - 1123: -10,25 - 1281: -15,-15 - 1282: -15,-16 - - node: - color: '#52B4E996' - id: WarnBoxGreyscale - decals: - 1287: -15,-13 - 1288: -15,-12 - - node: - color: '#52B4E9FF' - id: WarnBoxGreyscale - decals: - 1124: -10,24 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 1527: 8,-39 - 2123: -22,-16 - 4826: -14,35 - 5017: -40,4 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 1526: 5,-39 - 2122: -24,-16 - 4831: -16,35 - 4857: 25,31 - 5016: -42,4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 951: -14,32 - 1525: 8,-42 - 2121: -22,-18 - 5018: -40,0 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 950: -16,32 - 1524: 5,-42 - 2124: -24,-18 - 4847: -7,-18 - 4849: 13,-34 - 4858: 27,34 - 5015: -42,0 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 5014: 13,-31 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 2092: 19,-33 - - node: - color: '#FFFFFFFF' - id: WarnFullGreyscale - decals: - 5065: -9,61 - 5066: -8,60 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 952: -14,33 - 953: -14,34 - 1159: -12,-38 - 1160: -12,-37 - 1161: -12,-36 - 1162: -12,-35 - 1163: -12,-34 - 1164: -12,-33 - 1165: -12,-32 - 1166: -12,-25 - 1167: -12,-24 - 1168: -12,-23 - 1169: -12,-22 - 1522: 8,-40 - 1523: 8,-41 - 1783: 12,-18 - 1784: 12,-19 - 2125: -22,-17 - 4760: 20,-12 - 4761: 20,-13 - 4851: 23,34 - 4852: 23,33 - 4853: 23,32 - 4854: 23,31 - 4894: -45,27 - 4895: -45,28 - 5022: -40,1 - 5023: -40,2 - 5024: -40,3 - 5042: -10,62 - 5043: -10,63 - 5044: -10,64 - 5062: -8,62 - 5063: -8,63 - 5064: -8,64 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnLineE - decals: - 5013: 13,-32 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleE - decals: - 5124: 12,18 - 5125: 12,19 - 5126: 12,17 - 5127: 12,20 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleN - decals: - 5095: 9,32 - 5096: 10,32 - 5097: 11,32 - 5098: 12,32 - 5145: 15,20 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleW - decals: - 5144: 14,18 - - node: - color: '#FFA500FF' - id: WarnLineN - decals: - 4844: -28,-29 - 4845: 26,-29 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 947: -15,32 - 986: -8,32 - 987: -7,32 - 988: -6,32 - 1517: 6,-42 - 1518: 7,-42 - 2093: 18,-33 - 2100: 17,-33 - 2128: -23,-18 - 4848: -6,-18 - 4859: -29,49 - 4860: -28,49 - 5020: -41,0 - 5021: -41,0 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 948: -16,33 - 949: -16,34 - 1125: -15,27 - 1126: -15,28 - 1519: 5,-41 - 1520: 5,-40 - 1781: 11,-19 - 1782: 11,-18 - 2087: 19,-35 - 2088: 19,-34 - 2089: 19,-36 - 2090: 19,-37 - 2091: 19,-38 - 2127: -24,-17 - 4762: 17,-13 - 4763: 17,-12 - 4850: 13,-33 - 4876: -43,27 - 4877: -43,28 - 4896: -46,28 - 4897: -46,27 - 5025: -42,1 - 5026: -42,2 - 5027: -42,3 - - node: - color: '#FFA500FF' - id: WarnLineW - decals: - 4843: -28,-29 - 4846: 26,-29 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 1092: -10,18 - 1093: -9,18 - 1094: -8,18 - 1521: 6,-39 - 2126: -23,-16 - 4827: -15,35 - 4855: 27,31 - 4856: 26,31 - 5019: -41,4 - 5039: -5,59 - 5040: -6,59 - 5041: -7,59 - 5059: -5,61 - 5060: -6,61 - 5061: -7,61 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerNe - decals: - 1998: 43,51 - 2015: 46,48 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerNe - decals: - 1411: -5,8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 707: 14,61 - 1083: -24,21 - 5071: -7,-3 - 5072: -6,-5 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerNw - decals: - 1999: 41,51 - 2004: 40,49 - 2016: 45,48 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerNw - decals: - 1422: -12,8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 706: 7,61 - 5073: -9,-3 - 5074: -10,-5 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerSe - decals: - 2013: 46,46 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerSe - decals: - 1407: -5,4 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 2049: 14,56 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerSw - decals: - 2007: 40,46 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerSw - decals: - 1416: -10,4 - 1420: -12,6 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 2048: 7,56 - - node: - color: '#E7B795FF' - id: WoodTrimThinInnerNe - decals: - 2003: 43,46 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 481: 3,70 - 5080: -7,-5 - - node: - color: '#E7B795FF' - id: WoodTrimThinInnerNw - decals: - 2002: 41,49 - 2018: 45,46 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 482: 7,70 - 5075: -9,-5 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 483: 3,74 - - node: - color: '#FFD381FF' - id: WoodTrimThinInnerSw - decals: - 1418: -10,6 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 484: 7,74 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineE - decals: - 1994: 43,47 - 1995: 43,48 - 1996: 43,49 - 1997: 43,50 - 2014: 46,47 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineE - decals: - 1408: -5,5 - 1409: -5,6 - 1410: -5,7 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 475: 3,71 - 476: 3,72 - 477: 3,73 - 718: 14,57 - 719: 14,58 - 720: 14,59 - 721: 14,60 - 1084: -24,20 - 1085: -24,19 - 5078: -6,-6 - 5079: -7,-4 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineN - decals: - 2000: 42,51 - 2019: 44,46 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineN - decals: - 1423: -11,8 - 1424: -10,8 - 1425: -9,8 - 1426: -8,8 - 1427: -7,8 - 1428: -6,8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 469: 4,70 - 470: 5,70 - 471: 6,70 - 708: 8,61 - 709: 9,61 - 710: 10,61 - 711: 11,61 - 712: 12,61 - 713: 13,61 - 1082: -25,21 - 5003: 5,59 - 5004: 3,59 - 5005: 2,59 - 5006: 4,59 - 5081: -8,-3 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineS - decals: - 2008: 41,46 - 2009: 42,46 - 2010: 43,46 - 2011: 44,46 - 2012: 45,46 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineS - decals: - 1412: -6,4 - 1413: -7,4 - 1414: -8,4 - 1415: -9,4 - 1419: -11,6 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 472: 4,74 - 473: 5,74 - 474: 6,74 - 2042: 8,56 - 2043: 9,56 - 2044: 10,56 - 2045: 11,56 - 2046: 12,56 - 2047: 13,56 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineW - decals: - 2001: 41,50 - 2005: 40,48 - 2006: 40,47 - 2017: 45,47 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineW - decals: - 1417: -10,5 - 1421: -12,7 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 478: 7,71 - 479: 7,72 - 480: 7,73 - 714: 7,60 - 715: 7,59 - 716: 7,58 - 717: 7,57 - 5076: -9,-4 - 5077: -10,-6 - - node: - color: '#80C71F76' - id: grasssnowa2 - decals: - 4754: -45.348083,39.888554 - - node: - color: '#80C71F76' - id: grasssnowb1 - decals: - 4753: -45.952293,40.610558 - - node: - color: '#80C71F76' - id: grasssnowc1 - decals: - 4752: -47.55861,40.00643 - - type: GridAtmosphere - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - -1,0: - 0: 65535 - 0,-1: - 0: 65535 - 0,0: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - 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: 13119 - 1: 52416 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 61167 - 1: 4368 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 65535 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - -8,-4: - 0: 53247 - 1: 12288 - -8,-3: - 1: 3 - 0: 65532 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,4: - 0: 65535 - -7,5: - 0: 65531 - 2: 4 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 9,-4: - 0: 65535 - 9,-3: - 0: 65535 - 9,-2: - 0: 8191 - 10,-4: - 0: 63999 - 10,-3: - 0: 65535 - 10,-2: - 0: 4095 - 11,-4: - 0: 65535 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 9,2: - 0: 63487 - 9,3: - 0: 65535 - 10,2: - 0: 61440 - 10,3: - 0: 65535 - 11,2: - 0: 65280 - 11,3: - 0: 65535 - 8,4: - 0: 32767 - 8,5: - 0: 13107 - 8,6: - 0: 13107 - 8,7: - 0: 13107 - 9,4: - 0: 255 - 10,4: - 0: 255 - 11,4: - 0: 4095 - -12,-4: - 0: 61440 - -12,-3: - 0: 65535 - -12,-2: - 0: 36863 - 3: 16384 - -12,-1: - 0: 65224 - 3: 4 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -11,-1: - 0: 65535 - -11,-4: - 0: 64640 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -10,-1: - 0: 65535 - -9,-4: - 0: 32767 - 1: 32768 - -9,-3: - 0: 65527 - 1: 8 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -12,2: - 0: 63694 - 3: 1024 - -12,3: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -11,0: - 0: 65535 - -11,1: - 0: 65535 - -11,2: - 0: 65519 - 4: 16 - -11,3: - 0: 65535 - -10,0: - 0: 65535 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -12,4: - 0: 65535 - -12,6: - 0: 61164 - -12,5: - 0: 52428 - -12,7: - 0: 3822 - -11,4: - 0: 65535 - -11,5: - 0: 65535 - -11,6: - 0: 65535 - -11,7: - 0: 65535 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - 12,2: - 0: 65280 - 12,3: - 0: 65535 - 13,2: - 0: 4096 - 13,3: - 0: 4369 - 12,4: - 0: 4095 - 13,4: - 0: 17 - 8,8: - 0: 65527 - 8,9: - 0: 65535 - 8,10: - 0: 65535 - 8,11: - 0: 65535 - 9,8: - 0: 65280 - 9,9: - 0: 65535 - 9,10: - 0: 65535 - 9,11: - 0: 65535 - 10,8: - 0: 65280 - 10,9: - 0: 65535 - 10,10: - 0: 65535 - 10,11: - 0: 65535 - 11,8: - 0: 65520 - 11,9: - 0: 65535 - 11,10: - 0: 65535 - 11,11: - 0: 65535 - 12,8: - 0: 63344 - 12,9: - 0: 65535 - 12,10: - 0: 30591 - 12,11: - 0: 8183 - 13,8: - 0: 4096 - 13,9: - 0: 4369 - 13,10: - 0: 4369 - 13,11: - 0: 4369 - 4,8: - 0: 65535 - 4,9: - 0: 65535 - 4,10: - 0: 65535 - 4,11: - 0: 65535 - 5,8: - 0: 65535 - 5,9: - 0: 65535 - 5,10: - 0: 65535 - 5,11: - 0: 65535 - 6,8: - 0: 65535 - 6,9: - 0: 65535 - 6,10: - 0: 65535 - 6,11: - 0: 65535 - 7,8: - 0: 65535 - 7,9: - 0: 65535 - 7,10: - 0: 65535 - 7,11: - 0: 65535 - 12,-4: - 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 30719 - 13,-3: - 0: 4368 - 13,-2: - 0: 17 - -14,-3: - 0: 52416 - -14,-2: - 0: 204 - -13,-4: - 0: 61440 - -13,-3: - 0: 65535 - -13,-2: - 0: 4095 - -14,3: - 0: 52428 - -13,2: - 0: 61440 - -13,3: - 0: 65535 - -14,4: - 0: 2252 - -13,4: - 0: 65535 - 0,8: - 0: 65535 - 0,9: - 0: 65535 - 0,10: - 0: 65535 - 0,11: - 0: 65535 - 1,8: - 0: 65535 - 1,9: - 0: 65535 - 1,10: - 0: 65535 - 1,11: - 0: 65535 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 2,10: - 0: 65535 - 2,11: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 65535 - 3,10: - 0: 65535 - 3,11: - 0: 65535 - -4,8: - 0: 65535 - -4,9: - 0: 65535 - -4,10: - 0: 65535 - -4,11: - 0: 65535 - -3,8: - 0: 65535 - -3,9: - 0: 65535 - -3,10: - 0: 65535 - -3,11: - 0: 65535 - -2,8: - 0: 65535 - -2,9: - 0: 65535 - -2,10: - 0: 65535 - -2,11: - 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -1,10: - 0: 65535 - -1,11: - 0: 65535 - -8,8: - 0: 65535 - -8,9: - 0: 65535 - -8,10: - 0: 65535 - -8,11: - 0: 65535 - -7,8: - 0: 65535 - -7,9: - 0: 65535 - -7,10: - 0: 65535 - -7,11: - 0: 65535 - -6,8: - 0: 65535 - -6,9: - 0: 65535 - -6,10: - 0: 65535 - -6,11: - 0: 65535 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 65535 - -5,11: - 0: 65535 - -12,8: - 0: 65527 - -12,9: - 0: 65535 - -12,10: - 0: 65535 - -12,11: - 0: 65535 - -11,8: - 0: 65535 - -11,9: - 0: 65535 - -11,10: - 0: 65535 - -11,11: - 0: 65535 - -10,8: - 0: 65535 - -10,9: - 0: 65535 - -10,10: - 0: 65535 - -10,11: - 0: 65535 - -9,8: - 0: 65535 - -9,9: - 0: 65535 - -9,10: - 0: 65535 - -9,11: - 0: 65535 - -14,8: - 0: 52352 - -14,9: - 0: 52428 - -14,10: - 0: 17484 - -13,8: - 0: 65535 - -13,9: - 0: 65535 - -13,10: - 0: 65535 - -13,11: - 0: 57343 - 0,-8: - 0: 65279 - 3: 256 - 0,-7: - 5: 1 - 0: 65278 - 3: 256 - 0,-6: - 3: 1 - 0: 65278 - 6: 256 - 0,-5: - 7: 1 - 0: 65534 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 62463 - 3: 3072 - -1,-7: - 0: 62451 - 5: 12 - 3: 3072 - -1,-6: - 0: 62451 - 3: 12 - 6: 3072 - -1,-5: - 0: 65523 - 7: 12 - -12,12: - 0: 61439 - -12,13: - 0: 58111 - -11,12: - 0: 65535 - -11,13: - 0: 65279 - -11,14: - 0: 36463 - -10,12: - 0: 65535 - -10,13: - 0: 65535 - -10,14: - 0: 45055 - -10,15: - 0: 43690 - -9,12: - 0: 65535 - -9,13: - 0: 65535 - -9,14: - 0: 4095 - -9,15: - 0: 15 - -13,12: - 0: 20477 - -13,13: - 0: 204 - -8,12: - 0: 65535 - -8,13: - 0: 65535 - -8,14: - 0: 65535 - -8,15: - 0: 3871 - -7,12: - 0: 65535 - -7,13: - 0: 65535 - -7,14: - 0: 65535 - -7,15: - 0: 3855 - -6,12: - 0: 65535 - -6,13: - 0: 65535 - -6,14: - 0: 65535 - -6,15: - 0: 53199 - -5,12: - 0: 65535 - -5,13: - 0: 65535 - -5,14: - 0: 65535 - -5,15: - 0: 65535 - -4,12: - 0: 65535 - -4,13: - 0: 65535 - -4,14: - 0: 65535 - -4,15: - 0: 65535 - -3,12: - 0: 65535 - -3,13: - 0: 65535 - -3,14: - 0: 65535 - -3,15: - 0: 65535 - -2,12: - 0: 65535 - -2,13: - 0: 65535 - -2,14: - 0: 65535 - -2,15: - 0: 65535 - -1,12: - 0: 65535 - -1,13: - 0: 65535 - -1,14: - 0: 65535 - -1,15: - 0: 65535 - 0,12: - 0: 65535 - 0,13: - 0: 65535 - 0,14: - 0: 65535 - 0,15: - 0: 65535 - 1,12: - 0: 65535 - 1,13: - 0: 65535 - 1,14: - 0: 65535 - 1,15: - 0: 65535 - 2,12: - 0: 65535 - 2,13: - 0: 65535 - 2,14: - 0: 65535 - 2,15: - 0: 65535 - 3,12: - 0: 65535 - 3,13: - 0: 65535 - 3,14: - 0: 65535 - 3,15: - 0: 65535 - 4,12: - 0: 65535 - 4,13: - 0: 65535 - 4,14: - 0: 65535 - 4,15: - 0: 65535 - 5,12: - 0: 65535 - 5,13: - 0: 65535 - 5,14: - 0: 65535 - 5,15: - 0: 7967 - 6,12: - 0: 65535 - 6,13: - 0: 65535 - 6,14: - 0: 65535 - 6,15: - 0: 3855 - 7,12: - 0: 65535 - 7,13: - 0: 65535 - 7,14: - 0: 32767 - 7,15: - 0: 1871 - 8,12: - 0: 65535 - 8,13: - 0: 65535 - 8,14: - 0: 36863 - 8,15: - 0: 34959 - 9,12: - 0: 65535 - 9,13: - 0: 65535 - 9,14: - 0: 65535 - 9,15: - 0: 43775 - 10,12: - 0: 65535 - 10,13: - 0: 62463 - 10,14: - 0: 1895 - 11,12: - 0: 16383 - 11,13: - 0: 12863 - -4,16: - 0: 65535 - -4,17: - 0: 65535 - -4,18: - 0: 36639 - -4,19: - 0: 34952 - -3,16: - 0: 65535 - -3,17: - 0: 65535 - -3,18: - 0: 61423 - -3,19: - 0: 65262 - -2,16: - 0: 65535 - -2,17: - 0: 65535 - -2,18: - 0: 65535 - -2,19: - 0: 65535 - -1,16: - 0: 65535 - -1,17: - 0: 65535 - -1,18: - 0: 65535 - -1,19: - 0: 65535 - -6,16: - 0: 19660 - -6,17: - 0: 12 - -5,16: - 0: 4095 - -5,17: - 0: 15 - 0,16: - 0: 65535 - 0,17: - 0: 65535 - 0,18: - 0: 65535 - 0,19: - 0: 65535 - 1,16: - 0: 65535 - 1,17: - 0: 65535 - 1,18: - 0: 65535 - 1,19: - 0: 65535 - 2,16: - 0: 65535 - 2,17: - 0: 65535 - 2,18: - 0: 48959 - 2,19: - 0: 64443 - 3,16: - 0: 32767 - 3: 32768 - 3,17: - 0: 30591 - 3,18: - 0: 1863 - 4,16: - 0: 4095 - 3: 61440 - 4,17: - 0: 15 - 5,16: - 0: 4369 - 5,17: - 0: 1 - -3,20: - 0: 40925 - -3,21: - 0: 3592 - -2,20: - 0: 65535 - -2,21: - 0: 60303 - -1,20: - 0: 65535 - -1,21: - 0: 61695 - 0,20: - 0: 65535 - 0,21: - 0: 63743 - 1,20: - 0: 65535 - 1,21: - 0: 15887 - 2,20: - 0: 18261 - -9,-5: - 0: 65535 - -8,-5: - 0: 65535 - -8,-6: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65535 - -7,-8: - 0: 65466 - -7,-7: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 - -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 65535 - 5,-7: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - 8,-5: - 0: 65535 - 4,-11: - 0: 63474 - 4,-10: - 0: 65535 - 4,-9: - 0: 65535 - 5,-10: - 0: 48063 - 5,-9: - 0: 64443 - 0,-12: - 3: 13073 - 0: 52462 - 0,-11: - 3: 4355 - 0: 61180 - 0,-10: - 3: 1 - 0: 65534 - 0,-9: - 3: 273 - 0: 65262 - 1,-12: - 0: 65535 - 1,-11: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-12: - 0: 65535 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-12: - 0: 63359 - 3,-11: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - -4,-12: - 0: 65535 - -4,-11: - 0: 65535 - -4,-10: - 0: 65535 - -4,-9: - 0: 65535 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -2,-9: - 0: 65535 - -1,-12: - 0: 51 - 3: 65484 - -1,-11: - 3: 52367 - 0: 13168 - -1,-10: - 0: 65523 - 3: 12 - -1,-9: - 0: 62259 - 3: 3276 - -6,-10: - 0: 61167 - -6,-9: - 0: 65262 - -5,-10: - 0: 65535 - -5,-9: - 0: 65535 - -5,-11: - 0: 65530 - -5,-12: - 0: 41518 - -4,-13: - 0: 52352 - -3,-14: - 0: 65518 - -3,-13: - 0: 65535 - -3,-15: - 0: 60620 - -3,-16: - 0: 51336 - -2,-16: - 0: 30583 - -2,-15: - 0: 65535 - -2,-14: - 0: 65535 - -2,-13: - 0: 65535 - -1,-13: - 0: 16320 - 3: 49152 - 0,-13: - 3: 4096 - 0: 61336 - 0,-15: - 0: 34952 - 0,-14: - 0: 34952 - 1,-16: - 0: 65535 - 1,-15: - 0: 65535 - 1,-14: - 0: 65535 - 1,-13: - 0: 65535 - 2,-15: - 0: 12561 - 2,-14: - 0: 30515 - 2,-13: - 0: 65527 - -3,-18: - 0: 34944 - -3,-17: - 0: 34952 - -2,-18: - 0: 13105 - -2,-17: - 0: 29491 - 1,-18: - 0: 61156 - 1,-17: - 0: 65262 - 12,12: - 0: 4383 - 12,13: - 0: 1 - 13,12: - 0: 1 - 2,-16: - 0: 4096 - 3,-13: - 0: 4352 - -10,-5: - 0: 65535 - -10,-6: - 0: 61166 - -9,-6: - 0: 65535 - -9,-7: - 0: 65521 - -8,-7: - 0: 65535 - 8,-6: - 0: 65535 - 9,-6: - 0: 13107 - 9,-5: - 0: 30583 - 9,-1: - 0: 65527 - 9,0: - 0: 65535 - 9,1: - 0: 65535 - -14,11: - 0: 3140 - -12,14: - 0: 14 - 2,21: - 0: 768 - -10,-7: - 0: 8928 - -9,-8: - 0: 61440 - -8,-8: - 0: 63985 - 6,-8: - 0: 65506 - 6,-7: - 0: 65535 - 7,-8: - 0: 62002 - 7,-7: - 0: 65527 - 8,-8: - 0: 28672 - 8,-7: - 0: 30708 - 9,-7: - 0: 8752 - 4,-12: - 0: 8739 - 5,-11: - 0: 8752 - 6,-9: - 0: 61440 - 7,-9: - 0: 12288 - -8,-9: - 0: 61440 - -7,-9: - 0: 63624 - -7,-10: - 0: 34952 - -6,-11: - 0: 41696 - 13,-4: - 0: 273 - -11,15: - 0: 34952 - -8,17: - 0: 3967 - -8,18: - 0: 3967 - -8,19: - 0: 3967 - -7,16: - 0: 4352 - -7,17: - 0: 4369 - -7,18: - 0: 4369 - -7,19: - 0: 4369 - 6,16: - 0: 17408 - 6,17: - 0: 19532 - 6,18: - 0: 19532 - 6,19: - 0: 19532 - 7,17: - 0: 4095 - 7,18: - 0: 4095 - 7,19: - 0: 4095 - 10,-5: - 0: 65535 - 11,-6: - 0: 64799 - 11,-5: - 0: 65535 - 8,17: - 0: 36863 - 8,18: - 0: 36863 - 8,19: - 0: 36863 - 8,16: - 0: 34952 - 9,16: - 0: 44970 - 9,17: - 0: 43770 - 9,18: - 0: 43770 - 9,19: - 0: 64250 - 10,17: - 0: 4095 - 10,18: - 0: 4095 - 10,19: - 0: 4095 - 11,17: - 0: 3967 - 11,18: - 0: 3967 - 11,19: - 0: 3967 - 8,20: - 0: 143 - 9,20: - 0: 248 - 10,20: - 0: 15 - 11,20: - 0: 15 - 6,20: - 0: 12 - 7,20: - 0: 15 - 12,20: - 0: 1 - 12,16: - 0: 4352 - 12,17: - 0: 4369 - 12,18: - 0: 4369 - 12,19: - 0: 4369 - -12,17: - 0: 4095 - -12,18: - 0: 4095 - -12,19: - 0: 4095 - -11,17: - 0: 36863 - -11,18: - 0: 36863 - -11,19: - 0: 36863 - -11,16: - 0: 34952 - -10,17: - 0: 43770 - -10,18: - 0: 43770 - -10,19: - 0: 64250 - -10,16: - 0: 43690 - -9,17: - 0: 4095 - -9,18: - 0: 4095 - -9,19: - 0: 4095 - -13,16: - 0: 17408 - -13,17: - 0: 19532 - -13,18: - 0: 19532 - -13,19: - 0: 19532 - -13,20: - 0: 12 - -12,20: - 0: 15 - -11,20: - 0: 143 - -10,20: - 0: 248 - -9,20: - 0: 15 - -8,20: - 0: 15 - -7,20: - 0: 1 - 12,-6: - 0: 62799 - 12,-5: - 0: 65535 - 13,-5: - 0: 4369 - 10,-6: - 0: 32782 - 13,-6: - 0: 1 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 21.824879 - - 82.10312 - - 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 - - volume: 2500 - temperature: 293.15 - moles: - - 21.938612 - - 82.53097 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 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 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - type: BecomesStation - id: Aspid - - type: Joint - joints: - docking21483: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21483 - localAnchorB: -5,0.5 - localAnchorA: 38,3.5 - damping: 791.64215 - stiffness: 7105.7637 - docking21482: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21482 - localAnchorB: -5,-1.5 - localAnchorA: 38,1.5 - damping: 791.64215 - stiffness: 7105.7637 - - type: SpreaderGrid - - type: GridPathfinding - - uid: 6526 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: Parallax - parallax: AspidParallax - - type: LoadedMap - - type: GridTree - - type: MovedGrids - - uid: 8756 - components: - - type: MetaData - - type: Transform - pos: 43.1,3.5 - parent: 6526 - - type: MapGrid - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAAAJgAAAAACJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAADJgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACJgAAAAAAIgAAAAACJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAJgAAAAADJgAAAAAB - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADJgAAAAAAIgAAAAACJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,0: - ind: 0,0 - tiles: IgAAAAADJgAAAAAAIgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABZAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAZAAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACJgAAAAAAIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: Shuttle - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 0: 0,-2 - 1: 2,-2 - 2: 0,0 - 3: 2,0 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 4: -4,0 - 5: -4,-2 - 6: -2,0 - 7: -2,-2 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Bot - decals: - 8: -2,-2 - 9: -4,-2 - 10: -4,0 - 11: -2,0 - 12: 0,0 - 13: 0,-2 - 14: 2,-2 - 15: 2,0 - 16: 1,-4 - 17: 1,-5 - 18: -3,-4 - 19: -3,-5 - 20: -1,-4 - - node: - cleanable: True - color: '#83543273' - id: Dirt - decals: - 21: -4,0 - 22: -4,-1 - 23: -1,-1 - 24: 0,0 - 25: -1,-2 - 26: -2,-2 - 27: -2,-4 - 28: -2,-5 - 29: 0,-5 - 30: 0,-4 - 31: 0,-2 - 32: 0,-1 - 33: -1,2 - 34: -2,2 - 35: 0,-1 - 36: 2,0 - 37: 2,-1 - 38: 2,-2 - 39: 2,0 - 40: 1,0 - - type: GridAtmosphere - version: 2 - data: - tiles: - -1,-1: - 0: 65533 - 1: 2 - -1,0: - 0: 61439 - 0,0: - 0: 14335 - 0,-1: - 0: 65533 - 1: 2 - -2,-1: - 0: 34952 - -1,-2: - 0: 65534 - -1,-3: - 0: 49152 - -2,0: - 0: 136 - -1,1: - 0: 206 - 0,1: - 0: 19 - 0,-3: - 0: 4096 - 0,-2: - 0: 30579 - 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: - - 15.142283 - - 56.963825 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - type: Joint - joints: - docking21483: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21483 - localAnchorB: -5,0.5 - localAnchorA: 38,3.5 - damping: 791.64215 - stiffness: 7105.7637 - docking21482: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21482 - localAnchorB: -5,-1.5 - localAnchorA: 38,1.5 - damping: 791.64215 - stiffness: 7105.7637 - - type: SpreaderGrid - - type: GridPathfinding -- proto: AcousticGuitarInstrument - entities: - - uid: 9102 - components: - - type: Transform - pos: 6.605979,-25.237396 - parent: 1 -- proto: AirAlarm - entities: - - uid: 8754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 1 - - type: DeviceList - devices: - - 8752 - - 8751 - - 8753 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1 - - type: DeviceList - devices: - - 5769 - - 5770 - - 5771 - - 5772 - - 8926 - - 5783 - - 5784 - - 5785 - - 9048 - - 5760 - - 5759 - - 5758 - - 5757 - - 5779 - - 5780 - - 5781 - - 5778 - - 5777 - - 5776 - - 14635 - - 14636 - - 14633 - - 5390 - - 14659 - - 14660 - - 14672 - - 14683 - - 14697 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,75.5 - parent: 1 - - type: DeviceList - devices: - - 6125 - - 6124 - - 6122 - - 6123 - - 17332 - - 16339 - - 16334 - - 16332 - - 16327 - - 16331 - - 16328 - - 16348 - - 16349 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,71.5 - parent: 1 - - type: DeviceList - devices: - - 6125 - - 16348 - - 16349 - - 17335 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,71.5 - parent: 1 - - type: DeviceList - devices: - - 6120 - - 6121 - - 6123 - - 6122 - - 16285 - - 16287 - - 16286 - - 16288 - - 17335 - - 17338 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,65.5 - parent: 1 - - type: DeviceList - devices: - - 6121 - - 6120 - - 6127 - - 6128 - - 6126 - - 6115 - - 6114 - - 6113 - - 6129 - - 16240 - - 16241 - - 17332 - - 16283 - - 16284 - - 17341 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,63.5 - parent: 1 - - type: DeviceList - devices: - - 6129 - - 16238 - - 16239 - - 17338 - - 17344 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,51.5 - parent: 1 - - type: DeviceList - devices: - - 6119 - - 6118 - - 16196 - - 16195 - - 16214 - - 16206 - - 17347 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17349 - components: - - type: Transform - pos: 2.5,58.5 - parent: 1 - - type: DeviceList - devices: - - 6113 - - 6114 - - 6115 - - 6110 - - 6111 - - 6112 - - 6119 - - 6118 - - 6116 - - 6117 - - 17338 - - 17344 - - 17350 - - 15982 - - 15981 - - 17351 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,43.5 - parent: 1 - - type: DeviceList - devices: - - 6130 - - 6131 - - 6110 - - 6111 - - 6112 - - 6133 - - 6132 - - 5635 - - 5636 - - 5637 - - 15921 - - 15922 - - 15945 - - 15944 - - 17347 - - 17354 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17355 - components: - - type: Transform - pos: -12.5,57.5 - parent: 1 - - type: DeviceList - devices: - - 6116 - - 6117 - - 17363 - - 17362 - - 17364 - - 16017 - - 16018 - - 16049 - - 16050 - - 17365 - - 17347 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17358 - components: - - type: Transform - pos: -5.5,65.5 - parent: 1 - - type: DeviceList - devices: - - 15999 - - 16037 - - 16040 - - 15998 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,45.5 - parent: 1 - - type: DeviceList - devices: - - 17368 - - 17369 - - 17370 - - 17371 - - 6130 - - 6131 - - 16142 - - 16141 - - 16006 - - 16007 - - 17354 - - 16183 - - 16191 - - 16184 - - 16189 - - 16185 - - 16188 - - 16186 - - 16187 - - 16095 - - 16094 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17373 - components: - - type: Transform - pos: -33.5,50.5 - parent: 1 - - type: DeviceList - devices: - - 7022 - - 7023 - - 16143 - - 16175 - - 16155 - - 16158 - - 16156 - - 16157 - - 16171 - - 16170 - - 16169 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17376 - components: - - type: Transform - pos: -47.5,45.5 - parent: 1 - - type: DeviceList - devices: - - 7898 - - 7899 - - 7894 - - 7895 - - 15910 - - 15908 - - 17375 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17386 - components: - - type: Transform - pos: -38.5,39.5 - parent: 1 - - type: DeviceList - devices: - - 7898 - - 7899 - - 7894 - - 7895 - - 5835 - - 5833 - - 5834 - - 15909 - - 15907 - - 17378 - - 15911 - - 15906 - - 17387 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17389 - components: - - type: Transform - pos: -22.5,39.5 - parent: 1 - - type: DeviceList - devices: - - 5632 - - 5633 - - 5634 - - 5839 - - 5840 - - 5841 - - 6138 - - 6136 - - 15859 - - 15860 - - 17387 - - 17390 - - 15226 - - 15225 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17394 - components: - - type: Transform - pos: -14.5,39.5 - parent: 1 - - type: DeviceList - devices: - - 9591 - - 9590 - - 9589 - - 5633 - - 5632 - - 5634 - - 6134 - - 6135 - - 6137 - - 15225 - - 15226 - - 17391 - - 17393 - - 17395 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17396 - components: - - type: Transform - pos: 4.5,39.5 - parent: 1 - - type: DeviceList - devices: - - 5644 - - 5645 - - 5646 - - 5640 - - 5639 - - 5638 - - 5637 - - 5636 - - 5635 - - 9591 - - 9590 - - 9589 - - 17398 - - 15200 - - 566 - - 15172 - - 15173 - - 15154 - - 15155 - - 17350 - - 17390 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,35.5 - parent: 1 - - type: DeviceList - devices: - - 5631 - - 5630 - - 5629 - - 5688 - - 5689 - - 5690 - - 5691 - - 5687 - - 5686 - - 7267 - - 7268 - - 5708 - - 5709 - - 5710 - - 15155 - - 15154 - - 15094 - - 17402 - - 17401 - - 15095 - - 14983 - - 15076 - - 15075 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,41.5 - parent: 1 - - type: DeviceList - devices: - - 5686 - - 5687 - - 5689 - - 5688 - - 15101 - - 15102 - - 17405 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,44.5 - parent: 1 - - type: DeviceList - devices: - - 5691 - - 5690 - - 15129 - - 15148 - - 15147 - - 15130 - - 15133 - - 15132 - - 15146 - - 15131 - - 17405 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,47.5 - parent: 1 - - type: DeviceList - devices: - - 5712 - - 5711 - - 14988 - - 14987 - - 15001 - - 15002 - - 15029 - - 15028 - - 15031 - - 15030 - - 17402 - - 14983 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17412 - components: - - type: Transform - pos: 36.5,39.5 - parent: 1 - - type: DeviceList - devices: - - 5694 - - 5693 - - 5692 - - 5700 - - 5699 - - 5698 - - 5697 - - 5708 - - 5709 - - 5710 - - 5711 - - 5712 - - 15036 - - 15037 - - 14983 - - 17402 - - 17413 - - 17405 - - 17414 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,35.5 - parent: 1 - - type: DeviceList - devices: - - 5692 - - 5693 - - 5694 - - 6344 - - 6345 - - 6346 - - 15065 - - 15054 - - 15066 - - 15067 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,26.5 - parent: 1 - - type: DeviceList - devices: - - 5704 - - 5703 - - 5702 - - 5701 - - 5725 - - 5726 - - 5727 - - 7269 - - 17420 - - 5697 - - 5698 - - 5699 - - 5700 - - 17402 - - 14983 - - 14954 - - 14955 - - 14899 - - 14900 - - 17421 - - 17422 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,19.5 - parent: 1 - - type: DeviceList - devices: - - 5727 - - 5726 - - 5725 - - 5724 - - 5723 - - 5722 - - 14906 - - 14907 - - 17413 - - 17422 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 1 - - type: DeviceList - devices: - - 5722 - - 5723 - - 5724 - - 5685 - - 5684 - - 5683 - - 5701 - - 5702 - - 5703 - - 5704 - - 5719 - - 5720 - - 5721 - - 5717 - - 5716 - - 5715 - - 14917 - - 14916 - - 17413 - - 17421 - - 17427 - - 17428 - - 17429 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,12.5 - parent: 1 - - type: DeviceList - devices: - - 5717 - - 5716 - - 5715 - - 14879 - - 14880 - - 17422 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17433 - components: - - type: Transform - pos: 16.5,16.5 - parent: 1 - - type: DeviceList - devices: - - 5683 - - 5684 - - 5685 - - 5623 - - 5624 - - 5625 - - 14929 - - 14928 - - 17422 - - 17434 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17439 - components: - - type: Transform - pos: -8.5,16.5 - parent: 1 - - type: DeviceList - devices: - - 5623 - - 5624 - - 5625 - - 5663 - - 5662 - - 5661 - - 5772 - - 5771 - - 5769 - - 5620 - - 5621 - - 5622 - - 5655 - - 5654 - - 5653 - - 5658 - - 5659 - - 5660 - - 15382 - - 15381 - - 15480 - - 15479 - - 17398 - - 17437 - - 17438 - - 17469 - - 17468 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,24.5 - parent: 1 - - type: DeviceList - devices: - - 5657 - - 5656 - - 4341 - - 15294 - - 15295 - - 15316 - - 15317 - - 17437 - - 17442 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,23.5 - parent: 1 - - type: DeviceList - devices: - - 6363 - - 4341 - - 4344 - - 4338 - - 4340 - - 6364 - - 4343 - - 6365 - - 15458 - - 15457 - - 15447 - - 15452 - - 15411 - - 8694 - - 17443 - - 15459 - - 15460 - - 15265 - - 15266 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,29.5 - parent: 1 - - type: DeviceList - devices: - - 6138 - - 6134 - - 6135 - - 6137 - - 6363 - - 15263 - - 15264 - - 15265 - - 15266 - - 17390 - - 17391 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 1 - - type: DeviceList - devices: - - 17449 - - 6365 - - 15283 - - 15284 - - 17442 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17452 - components: - - type: Transform - pos: 8.5,21.5 - parent: 1 - - type: DeviceList - devices: - - 6399 - - 6400 - - 6398 - - 15499 - - 15500 - - 17453 - - 17438 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,24.5 - parent: 1 - - type: DeviceList - devices: - - 6398 - - 6391 - - 6392 - - 6396 - - 6394 - - 6395 - - 6393 - - 17457 - - 15537 - - 15579 - - 17458 - - 17459 - - 17462 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,25.5 - parent: 1 - - type: DeviceList - devices: - - 15562 - - 15566 - - 15578 - - 15558 - - 12901 - - 17453 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,33.5 - parent: 1 - - type: DeviceList - devices: - - 15550 - - 15544 - - 17453 - - 6394 - - 6395 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17464 - components: - - type: Transform - pos: 3.5,26.5 - parent: 1 - - type: DeviceList - devices: - - 5667 - - 5668 - - 6392 - - 6391 - - 6393 - - 15524 - - 15525 - - 17453 - - 17438 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,26.5 - parent: 1 - - type: DeviceList - devices: - - 5638 - - 5639 - - 5640 - - 5648 - - 5651 - - 5652 - - 5658 - - 5659 - - 5660 - - 5664 - - 5665 - - 5666 - - 15325 - - 15326 - - 15352 - - 15351 - - 17438 - - 17437 - - 17434 - - 17393 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17470 - components: - - type: Transform - pos: -24.5,16.5 - parent: 1 - - type: DeviceList - devices: - - 5620 - - 5621 - - 5622 - - 5673 - - 5672 - - 5671 - - 5670 - - 15609 - - 15610 - - 17434 - - 17472 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,9.5 - parent: 1 - - type: DeviceList - devices: - - 5670 - - 17481 - - 17480 - - 17468 - - 17484 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,28.5 - parent: 1 - - type: DeviceList - devices: - - 5677 - - 5678 - - 5679 - - 5838 - - 5837 - - 5836 - - 15830 - - 15827 - - 15828 - - 15829 - - 15826 - - 15831 - - 17387 - - 17472 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,26.5 - parent: 1 - - type: DeviceList - devices: - - 5832 - - 5831 - - 15680 - - 15681 - - 17379 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17492 - components: - - type: Transform - pos: -45.5,16.5 - parent: 1 - - type: DeviceList - devices: - - 5674 - - 5675 - - 5676 - - 5824 - - 5832 - - 5831 - - 15668 - - 15669 - - 17472 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,8.5 - parent: 1 - - type: DeviceList - devices: - - 5821 - - 5822 - - 5823 - - 6656 - - 6667 - - 5825 - - 5824 - - 15710 - - 15757 - - 15701 - - 15700 - - 17484 - - 6650 - - 15743 - - 15742 - - 15728 - - 15729 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,2.5 - parent: 1 - - type: DeviceList - devices: - - 5808 - - 5810 - - 5809 - - 5820 - - 5819 - - 5818 - - 5817 - - 5670 - - 5680 - - 5681 - - 5682 - - 6649 - - 6666 - - 15778 - - 15777 - - 15742 - - 15743 - - 15696 - - 15695 - - 15701 - - 15700 - - 17472 - - 17499 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17501 - components: - - type: Transform - pos: -27.5,-6.5 - parent: 1 - - type: DeviceList - devices: - - 9431 - - 9430 - - 9429 - - 5809 - - 5810 - - 5808 - - 15775 - - 15776 - - 17484 - - 17502 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17504 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 1 - - type: DeviceList - devices: - - 9429 - - 9430 - - 9431 - - 5619 - - 800 - - 797 - - 15774 - - 15773 - - 14570 - - 14569 - - 14571 - - 14572 - - 17505 - - 17499 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-10.5 - parent: 1 - - type: DeviceList - devices: - - 797 - - 800 - - 5619 - - 5765 - - 5766 - - 5746 - - 5747 - - 5748 - - 5757 - - 5758 - - 5759 - - 5760 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5628 - - 5627 - - 5626 - - 5768 - - 5767 - - 5789 - - 5788 - - 5787 - - 14751 - - 14750 - - 17509 - - 17510 - - 17511 - - 17469 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 1 - - type: DeviceList - devices: - - 5746 - - 5747 - - 5748 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5763 - - 5764 - - 5761 - - 5762 - - 2774 - - 14225 - - 17505 - - 17510 - - 17511 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - - type: DeviceList - devices: - - 5789 - - 5788 - - 5787 - - 9048 - - 5785 - - 5784 - - 5783 - - 9014 - - 9013 - - 9049 - - 14718 - - 14720 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - - type: DeviceList - devices: - - 8926 - - 9014 - - 9013 - - 9049 - - 14749 - - 14748 - - 17469 - - 17434 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,6.5 - parent: 1 - - type: DeviceList - devices: - - 5791 - - 5790 - - 5792 - - 17520 - - 14840 - - 14841 - - 14857 - - 14856 - - 17428 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 1 - - type: DeviceList - devices: - - 5719 - - 5720 - - 5721 - - 17520 - - 5792 - - 5790 - - 5807 - - 5806 - - 5805 - - 14827 - - 14826 - - 14815 - - 14816 - - 14844 - - 14842 - - 17422 - - 17524 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17525 - components: - - type: Transform - pos: 43.5,-6.5 - parent: 1 - - type: DeviceList - devices: - - 5800 - - 5799 - - 5798 - - 14792 - - 14793 - - 17524 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-10.5 - parent: 1 - - type: DeviceList - devices: - - 5800 - - 5799 - - 5798 - - 5807 - - 5806 - - 5805 - - 5793 - - 3584 - - 5795 - - 5796 - - 5797 - - 5801 - - 5802 - - 14772 - - 14771 - - 14807 - - 14808 - - 17529 - - 17530 - - 14761 - - 14760 - - 16358 - - 16359 - - 17428 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17532 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 1 - - type: DeviceList - devices: - - 5628 - - 5627 - - 5626 - - 5795 - - 5796 - - 5797 - - 3458 - - 17533 - - 14298 - - 10903 - - 14286 - - 14285 - - 14295 - - 14296 - - 17524 - - 17505 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-16.5 - parent: 1 - - type: DeviceList - devices: - - 5766 - - 5765 - - 5763 - - 5764 - - 7107 - - 7106 - - 2759 - - 2760 - - 17509 - - 17505 - - 2741 - - 2745 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1 - - type: DeviceList - devices: - - 7106 - - 7108 - - 7109 - - 7166 - - 7173 - - 7174 - - 7175 - - 2737 - - 2740 - - 17510 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 1 - - type: DeviceList - devices: - - 7170 - - 17542 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-16.5 - parent: 1 - - type: DeviceList - devices: - - 5767 - - 5768 - - 5761 - - 5762 - - 7171 - - 7172 - - 14312 - - 14254 - - 17505 - - 17509 - - 17542 - - 14319 - - 14318 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 1 - - type: DeviceList - devices: - - 7261 - - 7172 - - 7171 - - 7170 - - 7169 - - 9028 - - 9030 - - 9029 - - 11931 - - 17545 - - 17546 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 1 - - type: DeviceList - devices: - - 9029 - - 9030 - - 9028 - - 7168 - - 7167 - - 7164 - - 7165 - - 7161 - - 7162 - - 7163 - - 14389 - - 17542 - - type: AtmosDevice - joinedGrid: 1 -- proto: AirAlarmElectronics - entities: - - uid: 9128 - components: - - type: Transform - pos: 13.596838,-24.666937 - parent: 1 -- proto: AirCanister - entities: - - uid: 6412 - components: - - type: Transform - pos: -9.5,24.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 8733 - components: - - type: Transform - pos: -14.5,-12.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 8734 - components: - - type: Transform - pos: -14.5,-11.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 9976 - components: - - type: Transform - pos: -31.5,-24.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10063 - components: - - type: Transform - pos: -31.5,-14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10092 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10122 - components: - - type: Transform - pos: 32.5,-24.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10929 - components: - - type: Transform - pos: 26.5,-20.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 11051 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13173 - components: - - type: Transform - pos: -23.5,-0.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13174 - components: - - type: Transform - pos: -24.5,-0.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13380 - components: - - type: Transform - pos: -24.5,27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13416 - components: - - type: Transform - pos: -18.5,61.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13852 - components: - - type: Transform - pos: 18.5,54.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14000 - components: - - type: Transform - pos: 12.5,64.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14013 - components: - - type: Transform - pos: 7.5,40.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14037 - components: - - type: Transform - pos: 25.5,56.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: Airlock - entities: - - uid: 8263 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,48.5 - parent: 1 - - uid: 8388 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,42.5 - parent: 1 - - uid: 8389 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,44.5 - parent: 1 - - uid: 8390 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,45.5 - parent: 1 - - uid: 8595 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,4.5 - parent: 1 - - uid: 9877 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-19.5 - parent: 1 - - uid: 9938 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-32.5 - parent: 1 - - uid: 10943 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-20.5 - parent: 1 -- proto: AirlockArmoryGlassLocked - entities: - - uid: 256 - components: - - type: Transform - pos: -9.5,58.5 - parent: 1 - - uid: 525 - components: - - type: Transform - pos: -8.5,58.5 - parent: 1 -- proto: AirlockArmoryLocked - entities: - - uid: 8208 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,51.5 - parent: 1 -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 2239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-16.5 - parent: 1 - - uid: 7103 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 1 - - uid: 7104 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 1 - - uid: 7105 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 1 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 7113 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-10.5 - parent: 1 - - uid: 7114 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-10.5 - parent: 1 -- proto: AirlockBarGlassLocked - entities: - - uid: 4040 - components: - - type: Transform - pos: -9.5,5.5 - parent: 1 -- proto: AirlockBarLocked - entities: - - uid: 9240 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,9.5 - parent: 1 -- proto: AirlockBrigGlassLocked - entities: - - uid: 8204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,50.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8207 - - type: DeviceLinkSource - linkedPorts: - 8207: - - DoorStatus: Close - - uid: 8205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,48.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8206 - - 8207 - - type: DeviceLinkSource - linkedPorts: - 8206: - - DoorStatus: Close - - uid: 8206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8205 - - type: DeviceLinkSource - linkedPorts: - 8205: - - DoorStatus: Close - - uid: 8207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,50.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8204 - - type: DeviceLinkSource - linkedPorts: - 8205: - - DoorStatus: Close - 8204: - - DoorStatus: Close - - uid: 8469 - components: - - type: Transform - pos: 1.5,63.5 - parent: 1 -- proto: AirlockBrigLocked - entities: - - uid: 8202 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,48.5 - parent: 1 - - uid: 8203 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,47.5 - parent: 1 - - uid: 8470 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,60.5 - parent: 1 -- proto: AirlockCaptainLocked - entities: - - uid: 6791 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,75.5 - parent: 1 -- proto: AirlockCargoGlassLocked - entities: - - uid: 255 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 1 - - uid: 4141 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 1 - - uid: 9354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,10.5 - parent: 1 -- proto: AirlockCargoLocked - entities: - - uid: 156 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,12.5 - parent: 1 - - uid: 9353 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,3.5 - parent: 1 -- proto: AirlockChapelLocked - entities: - - uid: 8380 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,50.5 - parent: 1 - - uid: 14049 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,53.5 - parent: 1 -- proto: AirlockChemistryLocked - entities: - - uid: 8529 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,26.5 - parent: 1 -- proto: AirlockChiefEngineerGlassLocked - entities: - - uid: 9113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 1 -- proto: AirlockChiefEngineerLocked - entities: - - uid: 12404 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,71.5 - parent: 1 -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 7148 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,30.5 - parent: 1 -- proto: AirlockCommandGlassLocked - entities: - - uid: 6792 - components: - - type: Transform - pos: -1.5,75.5 - parent: 1 - - uid: 6793 - components: - - type: Transform - pos: 0.5,75.5 - parent: 1 - - uid: 6794 - components: - - type: Transform - pos: 5.5,75.5 - parent: 1 - - uid: 6795 - components: - - type: Transform - pos: -1.5,69.5 - parent: 1 - - uid: 6796 - components: - - type: Transform - pos: 0.5,69.5 - parent: 1 -- proto: AirlockCommandLocked - entities: - - uid: 8894 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 8756 -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 9075 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 1 - - uid: 9076 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 1 - - uid: 9077 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 1 - - uid: 9078 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 1 - - uid: 9112 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 1 - - uid: 9136 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 1 - - uid: 9137 - components: - - type: Transform - pos: 6.5,-31.5 - parent: 1 - - uid: 9138 - components: - - type: Transform - pos: 7.5,-35.5 - parent: 1 - - uid: 9139 - components: - - type: Transform - pos: 6.5,-35.5 - parent: 1 -- proto: AirlockEngineeringLocked - entities: - - uid: 9073 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-10.5 - parent: 1 - - uid: 9074 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-10.5 - parent: 1 - - uid: 9977 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-16.5 - parent: 1 - - uid: 10869 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-19.5 - parent: 1 - - uid: 11076 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,1.5 - parent: 1 - - uid: 12403 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,28.5 - parent: 1 - - uid: 12820 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,52.5 - parent: 1 - - uid: 13158 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,23.5 - parent: 1 - - uid: 13299 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 1 - - uid: 13440 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,53.5 - parent: 1 -- proto: AirlockExternalAtmosphericsLocked - entities: - - uid: 4167 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-15.5 - parent: 1 - - uid: 4171 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-15.5 - parent: 1 -- proto: AirlockExternalGlass - entities: - - uid: 6222 - components: - - type: Transform - pos: 46.5,16.5 - parent: 1 - - uid: 6225 - components: - - type: Transform - pos: 50.5,-7.5 - parent: 1 - - uid: 6477 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 1 - - uid: 6522 - components: - - type: Transform - pos: 35.5,1.5 - parent: 1 - - uid: 6559 - components: - - type: Transform - pos: 48.5,16.5 - parent: 1 - - uid: 6560 - components: - - type: Transform - pos: 46.5,35.5 - parent: 1 - - uid: 6561 - components: - - type: Transform - pos: 48.5,35.5 - parent: 1 - - uid: 6563 - components: - - type: Transform - pos: 50.5,36.5 - parent: 1 - - uid: 6564 - components: - - type: Transform - pos: 50.5,38.5 - parent: 1 - - uid: 6565 - components: - - type: Transform - pos: 50.5,13.5 - parent: 1 - - uid: 6566 - components: - - type: Transform - pos: 50.5,15.5 - parent: 1 - - uid: 6638 - components: - - type: Transform - pos: -51.5,-9.5 - parent: 1 - - uid: 6639 - components: - - type: Transform - pos: -51.5,-8.5 - parent: 1 - - uid: 6640 - components: - - type: Transform - pos: -51.5,-7.5 - parent: 1 - - uid: 6641 - components: - - type: Transform - pos: -49.5,-10.5 - parent: 1 - - uid: 6642 - components: - - type: Transform - pos: -48.5,-10.5 - parent: 1 - - uid: 6643 - components: - - type: Transform - pos: -47.5,-10.5 - parent: 1 - - uid: 7176 - components: - - type: Transform - pos: -51.5,13.5 - parent: 1 - - uid: 7177 - components: - - type: Transform - pos: -51.5,15.5 - parent: 1 - - uid: 7182 - components: - - type: Transform - pos: -51.5,36.5 - parent: 1 - - uid: 7183 - components: - - type: Transform - pos: -51.5,38.5 - parent: 1 - - uid: 7419 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 1 - - uid: 7423 - components: - - type: Transform - pos: 26.5,-27.5 - parent: 1 - - uid: 8597 - components: - - type: Transform - pos: 35.5,3.5 - parent: 1 - - uid: 8872 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 8756 - - uid: 8873 - components: - - type: Transform - pos: -2.5,0.5 - parent: 8756 - - uid: 8874 - components: - - type: Transform - pos: 1.5,0.5 - parent: 8756 - - uid: 8875 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 8756 -- proto: AirlockExternalGlassAtmosphericsLocked - entities: - - uid: 7110 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 1 - - uid: 7111 - components: - - type: Transform - pos: -13.5,-42.5 - parent: 1 -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 2971 - components: - - type: Transform - pos: -44.5,2.5 - parent: 1 - - uid: 4162 - components: - - type: Transform - pos: -44.5,4.5 - parent: 1 - - uid: 7814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,28.5 - parent: 1 - - uid: 7917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,27.5 - parent: 1 -- proto: AirlockExternalGlassEngineeringLocked - entities: - - uid: 7150 - components: - - type: Transform - pos: 12.5,-42.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7151 - - type: DeviceLinkSource - linkedPorts: - 7151: - - DoorStatus: DoorBolt - - uid: 7151 - components: - - type: Transform - pos: 12.5,-38.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7150 - - type: DeviceLinkSource - linkedPorts: - 7150: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlassLocked - entities: - - uid: 932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,56.5 - parent: 1 - - type: DeviceLinkSink - links: - - 10149 - - type: DeviceLinkSource - linkedPorts: - 10149: - - DoorStatus: DoorBolt - - uid: 2250 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 1 - - uid: 10149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,53.5 - parent: 1 - - type: DeviceLinkSink - links: - - 932 - - type: DeviceLinkSource - linkedPorts: - 932: - - DoorStatus: DoorBolt - - uid: 10150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,56.5 - parent: 1 - - type: DeviceLinkSink - links: - - 10151 - - type: DeviceLinkSource - linkedPorts: - 10151: - - DoorStatus: DoorBolt - - uid: 10151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,53.5 - parent: 1 - - type: DeviceLinkSink - links: - - 10150 - - type: DeviceLinkSource - linkedPorts: - 10150: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 2061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-7.5 - parent: 1 - - uid: 6514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-14.5 - parent: 1 -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 2 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,18.5 - parent: 1 - - uid: 26 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,18.5 - parent: 1 - - uid: 50 - components: - - type: Transform - pos: 46.5,33.5 - parent: 1 - - uid: 52 - components: - - type: Transform - pos: 48.5,33.5 - parent: 1 -- proto: AirlockExternalGlassShuttleEscape - entities: - - uid: 7427 - components: - - type: Transform - pos: -27.5,-29.5 - parent: 1 - - uid: 7631 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 1 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 87 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,15.5 - parent: 1 - - uid: 89 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,13.5 - parent: 1 - - uid: 467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,15.5 - parent: 1 - - uid: 763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,13.5 - parent: 1 - - uid: 764 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-7.5 - parent: 1 - - uid: 765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-9.5 - parent: 1 - - uid: 767 - components: - - type: Transform - pos: -49.5,-12.5 - parent: 1 - - uid: 768 - components: - - type: Transform - pos: -47.5,-12.5 - parent: 1 - - uid: 1298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,36.5 - parent: 1 - - uid: 1299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,38.5 - parent: 1 - - uid: 2145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,36.5 - parent: 1 - - uid: 2146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,38.5 - parent: 1 - - uid: 3160 - components: - - type: Transform - pos: -48.5,-12.5 - parent: 1 - - uid: 3168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-8.5 - parent: 1 -- proto: AirlockExternalLocked - entities: - - uid: 4128 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,67.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4160 - - type: DeviceLinkSource - linkedPorts: - 4160: - - DoorStatus: DoorBolt - - uid: 4160 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,67.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4128 - - type: DeviceLinkSource - linkedPorts: - 4128: - - DoorStatus: DoorBolt - - uid: 6359 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,71.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1694 - - type: DeviceLinkSource - linkedPorts: - 1694: - - DoorStatus: DoorBolt -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 4221 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,4.5 - parent: 1 - - uid: 6630 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,0.5 - parent: 1 -- proto: AirlockGlass - entities: - - uid: 127 - components: - - type: Transform - pos: 20.5,13.5 - parent: 1 - - uid: 1881 - components: - - type: Transform - pos: -29.5,30.5 - parent: 1 - - uid: 3054 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 1 - - uid: 3055 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 1 - - uid: 3056 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 1 - - uid: 3057 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 1 - - uid: 3058 - components: - - type: Transform - pos: 2.5,12.5 - parent: 1 - - uid: 3059 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1 - - uid: 3060 - components: - - type: Transform - pos: -2.5,12.5 - parent: 1 - - uid: 3061 - components: - - type: Transform - pos: -3.5,12.5 - parent: 1 - - uid: 3527 - components: - - type: Transform - pos: 14.5,39.5 - parent: 1 - - uid: 3528 - components: - - type: Transform - pos: 15.5,39.5 - parent: 1 - - uid: 3990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 1 - - uid: 4161 - components: - - type: Transform - pos: 20.5,15.5 - parent: 1 - - uid: 5647 - components: - - type: Transform - pos: -33.5,15.5 - parent: 1 - - uid: 5649 - components: - - type: Transform - pos: -33.5,14.5 - parent: 1 - - uid: 5650 - components: - - type: Transform - pos: -33.5,13.5 - parent: 1 - - uid: 5814 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 1 - - uid: 5815 - components: - - type: Transform - pos: -17.5,-10.5 - parent: 1 - - uid: 5816 - components: - - type: Transform - pos: -18.5,-10.5 - parent: 1 - - uid: 6038 - components: - - type: Transform - pos: -33.5,38.5 - parent: 1 - - uid: 6039 - components: - - type: Transform - pos: -33.5,37.5 - parent: 1 - - uid: 6040 - components: - - type: Transform - pos: -33.5,36.5 - parent: 1 - - uid: 6041 - components: - - type: Transform - pos: 26.5,-6.5 - parent: 1 - - uid: 6042 - components: - - type: Transform - pos: 25.5,-6.5 - parent: 1 - - uid: 6043 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 1 - - uid: 6044 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 1 - - uid: 6045 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 1 - - uid: 6361 - components: - - type: Transform - pos: -29.5,33.5 - parent: 1 - - uid: 6887 - components: - - type: Transform - pos: 31.5,39.5 - parent: 1 - - uid: 6888 - components: - - type: Transform - pos: 30.5,39.5 - parent: 1 - - uid: 6889 - components: - - type: Transform - pos: 31.5,42.5 - parent: 1 - - uid: 6890 - components: - - type: Transform - pos: 30.5,42.5 - parent: 1 - - uid: 7879 - components: - - type: Transform - pos: 33.5,15.5 - parent: 1 - - uid: 7880 - components: - - type: Transform - pos: 33.5,14.5 - parent: 1 - - uid: 7881 - components: - - type: Transform - pos: 33.5,13.5 - parent: 1 - - uid: 7891 - components: - - type: Transform - pos: 33.5,38.5 - parent: 1 - - uid: 7892 - components: - - type: Transform - pos: 33.5,37.5 - parent: 1 - - uid: 7893 - components: - - type: Transform - pos: 33.5,36.5 - parent: 1 - - uid: 8466 - components: - - type: Transform - pos: 3.5,53.5 - parent: 1 - - uid: 8467 - components: - - type: Transform - pos: 3.5,56.5 - parent: 1 - - uid: 9306 - components: - - type: Transform - pos: 20.5,14.5 - parent: 1 - - uid: 18224 - components: - - type: Transform - pos: -13.5,15.5 - parent: 1 - - uid: 18225 - components: - - type: Transform - pos: -13.5,14.5 - parent: 1 - - uid: 18226 - components: - - type: Transform - pos: -13.5,13.5 - parent: 1 - - uid: 18227 - components: - - type: Transform - pos: -1.5,39.5 - parent: 1 - - uid: 18228 - components: - - type: Transform - pos: -0.5,39.5 - parent: 1 - - uid: 18229 - components: - - type: Transform - pos: 0.5,39.5 - parent: 1 - - uid: 18230 - components: - - type: Transform - pos: -17.5,38.5 - parent: 1 - - uid: 18231 - components: - - type: Transform - pos: -17.5,37.5 - parent: 1 - - uid: 18232 - components: - - type: Transform - pos: -17.5,36.5 - parent: 1 - - uid: 18233 - components: - - type: Transform - pos: 13.5,38.5 - parent: 1 - - uid: 18234 - components: - - type: Transform - pos: 13.5,37.5 - parent: 1 - - uid: 18235 - components: - - type: Transform - pos: 13.5,36.5 - parent: 1 -- proto: AirlockGlassShuttle - entities: - - uid: 1771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,28.5 - parent: 1 - - uid: 1772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,27.5 - parent: 1 - - uid: 2030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - - type: Docking - dockJointId: docking21483 - dockedWith: 8865 - - uid: 2047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - - type: Docking - dockJointId: docking21482 - dockedWith: 8864 - - uid: 6932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,4.5 - parent: 1 - - uid: 6933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,2.5 - parent: 1 - - uid: 8864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 8756 - - type: Docking - dockJointId: docking21482 - dockedWith: 2047 - - uid: 8865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,0.5 - parent: 8756 - - type: Docking - dockJointId: docking21483 - dockedWith: 2030 - - uid: 8866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 8756 - - uid: 8867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 8756 -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 1766 - components: - - type: Transform - pos: 25.5,35.5 - parent: 1 - - uid: 2070 - components: - - type: Transform - pos: 26.5,35.5 - parent: 1 - - uid: 6930 - components: - - type: Transform - pos: 28.5,32.5 - parent: 1 - - uid: 6931 - components: - - type: Transform - pos: 28.5,33.5 - parent: 1 - - uid: 9276 - components: - - type: Transform - pos: 23.5,8.5 - parent: 1 -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 9275 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,10.5 - parent: 1 -- proto: AirlockHeadOfSecurityGlassLocked - entities: - - uid: 8220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,59.5 - parent: 1 -- proto: AirlockHydroGlassLocked - entities: - - uid: 563 - components: - - type: Transform - pos: 4.5,5.5 - parent: 1 - - uid: 9046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 1 -- proto: AirlockJanitorLocked - entities: - - uid: 4158 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 - parent: 1 -- proto: AirlockKitchenGlassLocked - entities: - - uid: 612 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 1 -- proto: AirlockMaint - entities: - - uid: 8596 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,1.5 - parent: 1 -- proto: AirlockMaintAtmoLocked - entities: - - uid: 7112 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-15.5 - parent: 1 - - uid: 8714 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-36.5 - parent: 1 -- proto: AirlockMaintBarLocked - entities: - - uid: 9241 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,11.5 - parent: 1 -- proto: AirlockMaintCaptainLocked - entities: - - uid: 1694 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,69.5 - parent: 1 - - type: DeviceLinkSink - links: - - 6359 - - type: DeviceLinkSource - linkedPorts: - 6359: - - DoorStatus: DoorBolt -- proto: AirlockMaintCargoLocked - entities: - - uid: 9453 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,-8.5 - parent: 1 -- proto: AirlockMaintChapelLocked - entities: - - uid: 8379 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,51.5 - parent: 1 -- proto: AirlockMaintCommandLocked - entities: - - uid: 6934 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,30.5 - parent: 1 -- proto: AirlockMaintEngiLocked - entities: - - uid: 9192 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-15.5 - parent: 1 - - uid: 10417 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 1 -- proto: AirlockMaintHOPLocked - entities: - - uid: 9274 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,2.5 - parent: 1 -- proto: AirlockMaintHydroLocked - entities: - - uid: 4230 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,6.5 - parent: 1 - - uid: 4231 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,7.5 - parent: 1 -- proto: AirlockMaintJanitorLocked - entities: - - uid: 8328 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,-2.5 - parent: 1 -- proto: AirlockMaintKitchenLocked - entities: - - uid: 8576 - components: - - type: MetaData - flags: PvsPriority - name: Freezer Hatch - - type: Transform - pos: 13.5,2.5 - parent: 1 -- proto: AirlockMaintLocked - entities: - - uid: 770 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,50.5 - parent: 1 - - uid: 771 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,50.5 - parent: 1 - - uid: 3920 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-10.5 - parent: 1 - - uid: 6779 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-38.5 - parent: 1 - - uid: 8308 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,45.5 - parent: 1 - - uid: 8309 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,45.5 - parent: 1 - - uid: 8310 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,50.5 - parent: 1 - - uid: 8311 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,50.5 - parent: 1 - - uid: 8312 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,39.5 - parent: 1 - - uid: 8313 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,67.5 - parent: 1 - - uid: 8314 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,51.5 - parent: 1 - - uid: 8315 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,41.5 - parent: 1 - - uid: 8316 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,48.5 - parent: 1 - - uid: 8317 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,45.5 - parent: 1 - - uid: 8318 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,45.5 - parent: 1 - - uid: 8319 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,40.5 - parent: 1 - - uid: 8320 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,39.5 - parent: 1 - - uid: 8321 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,39.5 - parent: 1 - - uid: 8322 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,35.5 - parent: 1 - - uid: 8323 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,35.5 - parent: 1 - - uid: 8324 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,44.5 - parent: 1 - - uid: 8325 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,25.5 - parent: 1 - - uid: 8326 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,16.5 - parent: 1 - - uid: 8329 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-5.5 - parent: 1 - - uid: 8330 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,12.5 - parent: 1 - - uid: 8331 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,0.5 - parent: 1 - - uid: 8332 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-6.5 - parent: 1 - - uid: 8333 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,1.5 - parent: 1 - - uid: 8334 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,12.5 - parent: 1 - - uid: 8335 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,7.5 - parent: 1 - - uid: 8336 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-7.5 - parent: 1 - - uid: 8337 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-20.5 - parent: 1 - - uid: 8338 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-10.5 - parent: 1 - - uid: 8339 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,-10.5 - parent: 1 - - uid: 8693 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,16.5 - parent: 1 - - uid: 9891 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,65.5 - parent: 1 - - uid: 9907 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-38.5 - parent: 1 - - uid: 13347 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,17.5 - parent: 1 - - uid: 13348 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,23.5 - parent: 1 - - uid: 13367 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,23.5 - parent: 1 -- proto: AirlockMaintMedLocked - entities: - - uid: 2614 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,21.5 - parent: 1 - - uid: 8505 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,27.5 - parent: 1 - - uid: 8522 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,22.5 - parent: 1 -- proto: AirlockMaintRnDLocked - entities: - - uid: 8607 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,26.5 - parent: 1 - - uid: 8608 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,17.5 - parent: 1 -- proto: AirlockMaintSalvageLocked - entities: - - uid: 9371 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,21.5 - parent: 1 -- proto: AirlockMaintSecLocked - entities: - - uid: 1909 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,58.5 - parent: 1 - - uid: 8213 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,55.5 - parent: 1 - - uid: 9361 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,-6.5 - parent: 1 - - uid: 9408 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-14.5 - parent: 1 - - uid: 9424 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,43.5 - parent: 1 -- proto: AirlockMaintTheatreLocked - entities: - - uid: 9247 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-5.5 - parent: 1 - - uid: 9248 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-0.5 - parent: 1 - - uid: 9249 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,5.5 - parent: 1 -- proto: AirlockMedicalGlass - entities: - - uid: 8665 - components: - - type: Transform - pos: 5.5,18.5 - parent: 1 - - uid: 8671 - components: - - type: Transform - pos: 5.5,17.5 - parent: 1 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 908 - components: - - type: Transform - pos: 6.5,29.5 - parent: 1 - - uid: 952 - components: - - type: Transform - pos: 7.5,29.5 - parent: 1 - - uid: 3689 - components: - - type: Transform - pos: 13.5,27.5 - parent: 1 - - uid: 3722 - components: - - type: Transform - pos: 12.5,21.5 - parent: 1 - - uid: 4208 - components: - - type: Transform - pos: 17.5,28.5 - parent: 1 - - uid: 6405 - components: - - type: Transform - pos: 11.5,21.5 - parent: 1 - - uid: 8501 - components: - - type: Transform - pos: 17.5,27.5 - parent: 1 - - uid: 8502 - components: - - type: Transform - pos: 10.5,29.5 - parent: 1 - - uid: 8523 - components: - - type: Transform - pos: 13.5,28.5 - parent: 1 - - uid: 8555 - components: - - type: Transform - pos: 11.5,29.5 - parent: 1 -- proto: AirlockMedicalLocked - entities: - - uid: 3721 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,30.5 - parent: 1 - - uid: 4210 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,32.5 - parent: 1 -- proto: AirlockMedicalScienceLocked - entities: - - uid: 8604 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,35.5 - parent: 1 - - uid: 8605 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,29.5 - parent: 1 -- proto: AirlockQuartermasterGlassLocked - entities: - - uid: 9358 - components: - - type: Transform - pos: -41.5,9.5 - parent: 1 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 8621 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,23.5 - parent: 1 -- proto: AirlockSalvageLocked - entities: - - uid: 537 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,16.5 - parent: 1 -- proto: AirlockScienceGlassLocked - entities: - - uid: 8606 - components: - - type: Transform - pos: -14.5,26.5 - parent: 1 - - uid: 8609 - components: - - type: Transform - pos: -19.5,19.5 - parent: 1 - - uid: 8610 - components: - - type: Transform - pos: -19.5,18.5 - parent: 1 - - uid: 8611 - components: - - type: Transform - pos: -10.5,26.5 - parent: 1 - - uid: 8612 - components: - - type: Transform - pos: -8.5,33.5 - parent: 1 - - uid: 8613 - components: - - type: Transform - pos: -6.5,31.5 - parent: 1 - - uid: 8619 - components: - - type: Transform - pos: -8.5,22.5 - parent: 1 -- proto: AirlockScienceLocked - entities: - - uid: 8650 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 1 - - uid: 8651 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,17.5 - parent: 1 - - uid: 8652 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 1 - - uid: 8653 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,17.5 - parent: 1 -- proto: AirlockSecurityGlass - entities: - - uid: 8255 - components: - - type: Transform - pos: -29.5,47.5 - parent: 1 - - uid: 8256 - components: - - type: Transform - pos: -29.5,48.5 - parent: 1 - - uid: 8258 - components: - - type: Transform - pos: -36.5,45.5 - parent: 1 - - uid: 8259 - components: - - type: Transform - pos: -36.5,43.5 - parent: 1 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 3192 - components: - - type: Transform - pos: 39.5,48.5 - parent: 1 - - uid: 8211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,47.5 - parent: 1 - - uid: 8212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,48.5 - parent: 1 - - uid: 8214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,43.5 - parent: 1 - - uid: 8215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,43.5 - parent: 1 - - uid: 8216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,43.5 - parent: 1 - - uid: 8217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,43.5 - parent: 1 - - uid: 8218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,43.5 - parent: 1 - - uid: 8219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,55.5 - parent: 1 - - uid: 9359 - components: - - type: Transform - pos: -37.5,-1.5 - parent: 1 - - uid: 9360 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 1 - - uid: 9407 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 1 - - uid: 9425 - components: - - type: Transform - pos: 45.5,43.5 - parent: 1 -- proto: AirlockSecurityLocked - entities: - - uid: 8209 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,47.5 - parent: 1 - - uid: 8210 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,48.5 - parent: 1 -- proto: AirlockServiceCaptainLocked - entities: - - uid: 1693 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,71.5 - parent: 1 -- proto: AirlockTheatreLocked - entities: - - uid: 9244 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,0.5 - parent: 1 - - uid: 9245 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,4.5 - parent: 1 - - uid: 9246 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-3.5 - parent: 1 -- proto: AirSensor - entities: - - uid: 8751 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 1 - - uid: 8752 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 1 - - uid: 8753 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17332 - components: - - type: Transform - pos: -0.5,72.5 - parent: 1 - - uid: 17335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,78.5 - parent: 1 - - uid: 17338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,67.5 - parent: 1 - - uid: 17341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,62.5 - parent: 1 - - uid: 17344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,56.5 - parent: 1 - - uid: 17347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,57.5 - parent: 1 - - uid: 17350 - components: - - type: Transform - pos: -0.5,47.5 - parent: 1 - - uid: 17351 - components: - - type: Transform - pos: -5.5,56.5 - parent: 1 - - uid: 17354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,53.5 - parent: 1 - - uid: 17365 - components: - - type: Transform - pos: -18.5,46.5 - parent: 1 - - uid: 17372 - components: - - type: Transform - pos: -25.5,48.5 - parent: 1 - - uid: 17375 - components: - - type: Transform - pos: -48.5,37.5 - parent: 1 - - uid: 17378 - components: - - type: Transform - pos: -46.5,42.5 - parent: 1 - - uid: 17379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,14.5 - parent: 1 - - uid: 17387 - components: - - type: Transform - pos: -31.5,38.5 - parent: 1 - - uid: 17390 - components: - - type: Transform - pos: -14.5,37.5 - parent: 1 - - uid: 17391 - components: - - type: Transform - pos: -23.5,37.5 - parent: 1 - - uid: 17393 - components: - - type: Transform - pos: -6.5,37.5 - parent: 1 - - uid: 17395 - components: - - type: Transform - pos: -16.5,31.5 - parent: 1 - - uid: 17398 - components: - - type: Transform - pos: -0.5,25.5 - parent: 1 - - uid: 17401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,42.5 - parent: 1 - - uid: 17405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,37.5 - parent: 1 - - uid: 17413 - components: - - type: Transform - pos: 31.5,26.5 - parent: 1 - - uid: 17414 - components: - - type: Transform - pos: 46.5,39.5 - parent: 1 - - uid: 17421 - components: - - type: Transform - pos: 24.5,19.5 - parent: 1 - - uid: 17422 - components: - - type: Transform - pos: 29.5,14.5 - parent: 1 - - uid: 17427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,14.5 - parent: 1 - - uid: 17428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,2.5 - parent: 1 - - uid: 17429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,14.5 - parent: 1 - - uid: 17434 - components: - - type: Transform - pos: -8.5,14.5 - parent: 1 - - uid: 17437 - components: - - type: Transform - pos: -4.5,18.5 - parent: 1 - - uid: 17438 - components: - - type: Transform - pos: 3.5,18.5 - parent: 1 - - uid: 17442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,24.5 - parent: 1 - - uid: 17443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,18.5 - parent: 1 - - uid: 17453 - components: - - type: Transform - pos: 10.5,27.5 - parent: 1 - - uid: 17457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,23.5 - parent: 1 - - uid: 17458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,30.5 - parent: 1 - - uid: 17459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,28.5 - parent: 1 - - uid: 17462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,32.5 - parent: 1 - - uid: 17468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,14.5 - parent: 1 - - uid: 17469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - - uid: 17472 - components: - - type: Transform - pos: -32.5,14.5 - parent: 1 - - uid: 17484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,2.5 - parent: 1 - - uid: 17485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,25.5 - parent: 1 - - uid: 17499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 1 - - uid: 17502 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 1 - - uid: 17505 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 1 - - uid: 17509 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 1 - - uid: 17510 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 1 - - uid: 17511 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 1 - - uid: 17524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 1 - - uid: 17529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-8.5 - parent: 1 - - uid: 17530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-8.5 - parent: 1 - - uid: 17542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-23.5 - parent: 1 - - uid: 17545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 1 - - uid: 17546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 1 -- proto: AltarSpawner - entities: - - uid: 4401 - components: - - type: Transform - pos: 30.5,47.5 - parent: 1 - - uid: 17626 - components: - - type: Transform - pos: 31.5,47.5 - parent: 1 -- proto: AltarToolbox - entities: - - uid: 6993 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 1 -- proto: AmeController - entities: - - uid: 9144 - components: - - type: Transform - pos: 4.5,-37.5 - parent: 1 -- proto: AnomalyScanner - entities: - - uid: 3447 - components: - - type: Transform - pos: -18.56863,17.749208 - parent: 1 - - uid: 4701 - components: - - type: Transform - pos: -18.171062,17.493765 - parent: 1 -- proto: APCBasic - entities: - - uid: 8819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 8756 - - uid: 9405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-19.5 - parent: 1 - - uid: 9764 - components: - - type: Transform - pos: -31.5,-13.5 - parent: 1 - - uid: 10145 - components: - - type: Transform - pos: 29.5,-14.5 - parent: 1 - - uid: 10308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,7.5 - parent: 1 - - uid: 10442 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 1 - - uid: 10458 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 1 - - uid: 10545 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 1 - - uid: 10595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-16.5 - parent: 1 - - uid: 10650 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 1 - - uid: 10693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 1 - - uid: 10723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-38.5 - parent: 1 - - uid: 10991 - components: - - type: Transform - pos: 44.5,-6.5 - parent: 1 - - uid: 11083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,5.5 - parent: 1 - - uid: 11109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 1 - - uid: 11235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 1 - - uid: 11281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1 - - uid: 11339 - components: - - type: Transform - pos: 24.5,23.5 - parent: 1 - - uid: 11375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,75.5 - parent: 1 - - uid: 11376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,74.5 - parent: 1 - - uid: 11377 - components: - - type: Transform - pos: 6.5,75.5 - parent: 1 - - uid: 11551 - components: - - type: Transform - pos: -24.5,49.5 - parent: 1 - - uid: 11552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,50.5 - parent: 1 - - uid: 11573 - components: - - type: Transform - pos: -42.5,44.5 - parent: 1 - - uid: 11610 - components: - - type: Transform - pos: -30.5,57.5 - parent: 1 - - uid: 11862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,56.5 - parent: 1 - - uid: 12023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 1 - - uid: 12024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,32.5 - parent: 1 - - uid: 12025 - components: - - type: Transform - pos: -17.5,26.5 - parent: 1 - - uid: 12026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,23.5 - parent: 1 - - uid: 12027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,32.5 - parent: 1 - - uid: 12325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,25.5 - parent: 1 - - uid: 12405 - components: - - type: Transform - pos: 10.5,62.5 - parent: 1 - - uid: 12406 - components: - - type: Transform - pos: 27.5,51.5 - parent: 1 - - uid: 12407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,42.5 - parent: 1 - - uid: 12408 - components: - - type: Transform - pos: 41.5,41.5 - parent: 1 - - uid: 12460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,46.5 - parent: 1 - - uid: 12862 - components: - - type: Transform - pos: 20.5,30.5 - parent: 1 - - uid: 12863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,31.5 - parent: 1 - - uid: 12864 - components: - - type: Transform - pos: 5.5,26.5 - parent: 1 - - uid: 12865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,19.5 - parent: 1 - - uid: 13196 - components: - - type: Transform - pos: -11.5,5.5 - parent: 1 - - uid: 13197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,8.5 - parent: 1 - - uid: 13198 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 1 -- proto: APCElectronics - entities: - - uid: 9127 - components: - - type: Transform - pos: 13.367671,-24.354437 - parent: 1 -- proto: AppraisalTool - entities: - - uid: 9332 - components: - - type: Transform - pos: -42.699795,7.55936 - parent: 1 - - uid: 9389 - components: - - type: Transform - pos: -43.303722,-2.4856074 - parent: 1 -- proto: Ash - entities: - - uid: 6945 - components: - - type: Transform - pos: 31.405294,56.585308 - parent: 1 -- proto: AtmosDeviceFanTiny - entities: - - uid: 609 - components: - - type: Transform - pos: 13.5,2.5 - parent: 1 - - uid: 845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - - uid: 1996 - components: - - type: Transform - pos: 51.5,-7.5 - parent: 1 - - uid: 2031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - - uid: 2036 - components: - - type: Transform - pos: 51.5,-14.5 - parent: 1 - - uid: 2606 - components: - - type: Transform - pos: -47.5,2.5 - parent: 1 - - uid: 2609 - components: - - type: Transform - pos: -47.5,4.5 - parent: 1 - - uid: 6771 - components: - - type: Transform - pos: 52.5,13.5 - parent: 1 - - uid: 6772 - components: - - type: Transform - pos: 52.5,15.5 - parent: 1 - - uid: 6773 - components: - - type: Transform - pos: 48.5,18.5 - parent: 1 - - uid: 6774 - components: - - type: Transform - pos: 46.5,18.5 - parent: 1 - - uid: 6775 - components: - - type: Transform - pos: 46.5,33.5 - parent: 1 - - uid: 6776 - components: - - type: Transform - pos: 48.5,33.5 - parent: 1 - - uid: 6777 - components: - - type: Transform - pos: 52.5,36.5 - parent: 1 - - uid: 6778 - components: - - type: Transform - pos: 52.5,38.5 - parent: 1 - - uid: 7127 - components: - - type: Transform - pos: 11.5,0.5 - parent: 1 - - uid: 7128 - components: - - type: Transform - pos: 11.5,4.5 - parent: 1 - - uid: 7420 - components: - - type: Transform - pos: -27.5,-29.5 - parent: 1 - - uid: 7633 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 1 - - uid: 7936 - components: - - type: Transform - pos: -46.5,27.5 - parent: 1 - - uid: 7937 - components: - - type: Transform - pos: -46.5,28.5 - parent: 1 - - uid: 8868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 8756 - - uid: 8869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 8756 - - uid: 8870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 8756 - - uid: 8871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 8756 - - uid: 17637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,36.5 - parent: 1 - - uid: 17638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,38.5 - parent: 1 - - uid: 17639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,15.5 - parent: 1 - - uid: 17640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,13.5 - parent: 1 - - uid: 17641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-7.5 - parent: 1 - - uid: 17642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-8.5 - parent: 1 - - uid: 17643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-9.5 - parent: 1 - - uid: 17644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-12.5 - parent: 1 - - uid: 17645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-12.5 - parent: 1 - - uid: 17646 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-12.5 - parent: 1 -- proto: AtmosFixBlockerMarker - entities: - - uid: 2706 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 1 - - uid: 2716 - components: - - type: Transform - pos: -3.5,-43.5 - parent: 1 - - uid: 2729 - components: - - type: Transform - pos: -3.5,-45.5 - parent: 1 - - uid: 7045 - components: - - type: Transform - pos: -1.5,-25.5 - parent: 1 - - uid: 7046 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 1 - - uid: 7047 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 1 - - uid: 7048 - components: - - type: Transform - pos: -1.5,-29.5 - parent: 1 - - uid: 7049 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 1 - - uid: 7050 - components: - - type: Transform - pos: 0.5,-29.5 - parent: 1 - - uid: 7051 - components: - - type: Transform - pos: -1.5,-33.5 - parent: 1 - - uid: 7052 - components: - - type: Transform - pos: -1.5,-34.5 - parent: 1 - - uid: 7053 - components: - - type: Transform - pos: -1.5,-35.5 - parent: 1 - - uid: 7054 - components: - - type: Transform - pos: -0.5,-33.5 - parent: 1 - - uid: 7055 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 1 - - uid: 7056 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 1 - - uid: 7057 - components: - - type: Transform - pos: 0.5,-33.5 - parent: 1 - - uid: 7058 - components: - - type: Transform - pos: 0.5,-34.5 - parent: 1 - - uid: 7059 - components: - - type: Transform - pos: 0.5,-35.5 - parent: 1 - - uid: 7060 - components: - - type: Transform - pos: -1.5,-39.5 - parent: 1 - - uid: 7061 - components: - - type: Transform - pos: -1.5,-40.5 - parent: 1 - - uid: 7062 - components: - - type: Transform - pos: -1.5,-41.5 - parent: 1 - - uid: 7063 - components: - - type: Transform - pos: -0.5,-39.5 - parent: 1 - - uid: 7064 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 1 - - uid: 7065 - components: - - type: Transform - pos: -0.5,-41.5 - parent: 1 - - uid: 7066 - components: - - type: Transform - pos: 0.5,-39.5 - parent: 1 - - uid: 7067 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 1 - - uid: 7068 - components: - - type: Transform - pos: 0.5,-41.5 - parent: 1 - - uid: 7069 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 1 - - uid: 7070 - components: - - type: Transform - pos: -2.5,-43.5 - parent: 1 - - uid: 7071 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 1 - - uid: 7072 - components: - - type: Transform - pos: -2.5,-45.5 - parent: 1 - - uid: 7073 - components: - - type: Transform - pos: -1.5,-43.5 - parent: 1 - - uid: 7074 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 1 - - uid: 7075 - components: - - type: Transform - pos: -1.5,-45.5 - parent: 1 - - uid: 7076 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 1 - - uid: 7077 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 1 - - uid: 7078 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 1 - - uid: 7079 - components: - - type: Transform - pos: 0.5,-43.5 - parent: 1 - - uid: 7080 - components: - - type: Transform - pos: 0.5,-44.5 - parent: 1 - - uid: 7081 - components: - - type: Transform - pos: 0.5,-45.5 - parent: 1 - - uid: 7082 - components: - - type: Transform - pos: 1.5,-43.5 - parent: 1 - - uid: 7083 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 1 - - uid: 7084 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 1 - - uid: 7085 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 1 - - uid: 7086 - components: - - type: Transform - pos: -1.5,-47.5 - parent: 1 - - uid: 7087 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 1 - - uid: 7088 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 1 - - uid: 7089 - components: - - type: Transform - pos: -0.5,-47.5 - parent: 1 - - uid: 7090 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 1 - - uid: 7091 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 1 - - uid: 7092 - components: - - type: Transform - pos: 0.5,-47.5 - parent: 1 - - uid: 7093 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 1 - - uid: 7876 - components: - - type: Transform - pos: -1.5,-23.5 - parent: 1 - - uid: 7877 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 1 - - uid: 7878 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 1 -- proto: AtmosFixFreezerMarker - entities: - - uid: 7129 - components: - - type: Transform - pos: 10.5,3.5 - parent: 1 - - uid: 7130 - components: - - type: Transform - pos: 10.5,2.5 - parent: 1 - - uid: 7131 - components: - - type: Transform - pos: 10.5,1.5 - parent: 1 - - uid: 7132 - components: - - type: Transform - pos: 11.5,3.5 - parent: 1 - - uid: 7133 - components: - - type: Transform - pos: 11.5,2.5 - parent: 1 - - uid: 7134 - components: - - type: Transform - pos: 11.5,1.5 - parent: 1 - - uid: 7135 - components: - - type: Transform - pos: 12.5,3.5 - parent: 1 - - uid: 7136 - components: - - type: Transform - pos: 12.5,2.5 - parent: 1 - - uid: 7137 - components: - - type: Transform - pos: 12.5,1.5 - parent: 1 - - uid: 9854 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 1 - - uid: 9855 - components: - - type: Transform - pos: -32.5,-12.5 - parent: 1 - - uid: 9856 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 1 - - uid: 9857 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 1 - - uid: 9858 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 1 - - uid: 9859 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 1 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 7036 - components: - - type: Transform - pos: -1.5,-21.5 - parent: 1 - - uid: 7037 - components: - - type: Transform - pos: -0.5,-21.5 - parent: 1 - - uid: 7038 - components: - - type: Transform - pos: 0.5,-21.5 - parent: 1 -- proto: AtmosFixOxygenMarker - entities: - - uid: 7039 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 1 - - uid: 7040 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 1 - - uid: 7041 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 1 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 7042 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 1 - - uid: 7043 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 1 - - uid: 7044 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 1 -- proto: Autolathe - entities: - - uid: 3552 - components: - - type: Transform - pos: -4.5,24.5 - parent: 1 - - uid: 4159 - components: - - type: Transform - pos: -34.5,1.5 - parent: 1 - - uid: 4214 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 1 -- proto: BagpipeInstrument - entities: - - uid: 8618 - components: - - type: Transform - pos: -3.6259267,26.581953 - parent: 1 -- proto: BananaPhoneInstrument - entities: - - uid: 6459 - components: - - type: Transform - pos: -15.461665,-0.34175533 - parent: 1 -- proto: BannerEngineering - entities: - - uid: 8567 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 1 - - uid: 8570 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 1 -- proto: BannerMedical - entities: - - uid: 8569 - components: - - type: Transform - pos: 2.5,17.5 - parent: 1 -- proto: BannerScience - entities: - - uid: 8568 - components: - - type: Transform - pos: -3.5,17.5 - parent: 1 -- proto: Barricade - entities: - - uid: 1710 - components: - - type: Transform - pos: -36.5,52.5 - parent: 1 - - uid: 2491 - components: - - type: Transform - pos: 21.5,9.5 - parent: 1 - - uid: 4453 - components: - - type: Transform - pos: -30.5,55.5 - parent: 1 - - uid: 4455 - components: - - type: Transform - pos: -33.5,55.5 - parent: 1 - - uid: 4456 - components: - - type: Transform - pos: -35.5,55.5 - parent: 1 - - uid: 4457 - components: - - type: Transform - pos: -27.5,56.5 - parent: 1 - - uid: 4458 - components: - - type: Transform - pos: -26.5,57.5 - parent: 1 - - uid: 5554 - components: - - type: Transform - pos: -19.5,8.5 - parent: 1 - - uid: 6658 - components: - - type: Transform - pos: -45.5,-9.5 - parent: 1 - - uid: 6659 - components: - - type: Transform - pos: -49.5,-7.5 - parent: 1 - - uid: 6660 - components: - - type: Transform - pos: -48.5,-6.5 - parent: 1 - - uid: 6992 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 1 - - uid: 10942 - components: - - type: Transform - pos: 33.5,-18.5 - parent: 1 - - uid: 10954 - components: - - type: Transform - pos: 37.5,-12.5 - parent: 1 - - uid: 13381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,27.5 - parent: 1 - - uid: 13452 - components: - - type: Transform - pos: -45.5,48.5 - parent: 1 - - uid: 13479 - components: - - type: Transform - pos: -13.5,68.5 - parent: 1 -- proto: BarricadeDirectional - entities: - - uid: 8180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,52.5 - parent: 1 - - uid: 9642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,52.5 - parent: 1 -- proto: BarSignOfficerBeersky - entities: - - uid: 538 - components: - - type: Transform - pos: -0.5,12.5 - parent: 1 - - uid: 1670 - components: - - type: Transform - pos: -28.5,59.5 - parent: 1 - - uid: 4023 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 1 -- proto: BaseGasCondenser - entities: - - uid: 8563 - components: - - type: Transform - pos: 5.5,25.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: Basketball - entities: - - uid: 8261 - components: - - type: Transform - pos: -38.63891,43.594166 - parent: 1 -- proto: BassGuitarInstrument - entities: - - uid: 17737 - components: - - type: Transform - pos: 6.633194,-70.24802 - parent: 1 -- proto: Bed - entities: - - uid: 1991 - components: - - type: Transform - pos: -13.5,60.5 - parent: 1 - - uid: 2449 - components: - - type: Transform - pos: 4.5,-23.5 - parent: 1 - - uid: 3262 - components: - - type: Transform - pos: 26.5,52.5 - parent: 1 - - uid: 3558 - components: - - type: Transform - pos: -25.5,19.5 - parent: 1 - - uid: 3666 - components: - - type: Transform - pos: 9.5,31.5 - parent: 1 - - uid: 3681 - components: - - type: Transform - pos: 9.5,30.5 - parent: 1 - - uid: 4175 - components: - - type: Transform - pos: 11.5,40.5 - parent: 1 - - uid: 4176 - components: - - type: Transform - pos: 11.5,46.5 - parent: 1 - - uid: 4177 - components: - - type: Transform - pos: 18.5,47.5 - parent: 1 - - uid: 4178 - components: - - type: Transform - pos: 46.5,48.5 - parent: 1 - - uid: 4317 - components: - - type: Transform - pos: -38.5,42.5 - parent: 1 - - uid: 4318 - components: - - type: Transform - pos: -38.5,46.5 - parent: 1 - - uid: 4387 - components: - - type: Transform - pos: 26.5,8.5 - parent: 1 - - uid: 4423 - components: - - type: Transform - pos: 14.5,34.5 - parent: 1 - - uid: 6476 - components: - - type: Transform - pos: -17.5,1.5 - parent: 1 - - uid: 6480 - components: - - type: Transform - pos: 33.5,-17.5 - parent: 1 - - uid: 6482 - components: - - type: Transform - pos: -10.5,40.5 - parent: 1 - - uid: 6486 - components: - - type: Transform - pos: -17.5,3.5 - parent: 1 - - uid: 6487 - components: - - type: Transform - pos: -17.5,-2.5 - parent: 1 - - uid: 6489 - components: - - type: Transform - pos: -4.5,40.5 - parent: 1 - - uid: 6490 - components: - - type: Transform - pos: -7.5,40.5 - parent: 1 - - uid: 6494 - components: - - type: Transform - pos: -13.5,40.5 - parent: 1 - - uid: 6506 - components: - - type: Transform - pos: -10.5,10.5 - parent: 1 - - uid: 6797 - components: - - type: Transform - pos: -5.5,72.5 - parent: 1 - - uid: 7024 - components: - - type: Transform - pos: -23.5,1.5 - parent: 1 - - uid: 9326 - components: - - type: Transform - pos: -42.5,11.5 - parent: 1 - - uid: 9868 - components: - - type: Transform - pos: -36.5,-21.5 - parent: 1 -- proto: BedsheetBlack - entities: - - uid: 7344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,52.5 - parent: 1 - - uid: 13319 - components: - - type: Transform - pos: -10.5,10.5 - parent: 1 -- proto: BedsheetBrown - entities: - - uid: 6843 - components: - - type: Transform - pos: 46.5,48.5 - parent: 1 -- proto: BedsheetCaptain - entities: - - uid: 6801 - components: - - type: Transform - pos: -5.5,72.5 - parent: 1 -- proto: BedsheetCE - entities: - - uid: 4199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-23.5 - parent: 1 -- proto: BedsheetClown - entities: - - uid: 6612 - components: - - type: Transform - pos: -17.5,1.5 - parent: 1 -- proto: BedsheetCMO - entities: - - uid: 4422 - components: - - type: Transform - pos: 14.5,34.5 - parent: 1 -- proto: BedsheetCosmos - entities: - - uid: 6623 - components: - - type: Transform - pos: -17.5,-2.5 - parent: 1 -- proto: BedsheetHOP - entities: - - uid: 2490 - components: - - type: Transform - pos: 26.5,8.5 - parent: 1 -- proto: BedsheetHOS - entities: - - uid: 6817 - components: - - type: Transform - pos: -13.5,60.5 - parent: 1 -- proto: BedsheetMedical - entities: - - uid: 9386 - components: - - type: Transform - pos: 2.5,29.5 - parent: 1 - - uid: 9484 - components: - - type: Transform - pos: 2.5,31.5 - parent: 1 - - uid: 9486 - components: - - type: Transform - pos: 2.5,34.5 - parent: 1 -- proto: BedsheetMime - entities: - - uid: 6620 - components: - - type: Transform - pos: -17.5,3.5 - parent: 1 -- proto: BedsheetOrange - entities: - - uid: 8238 - components: - - type: Transform - pos: -13.5,40.5 - parent: 1 - - uid: 8239 - components: - - type: Transform - pos: -10.5,40.5 - parent: 1 - - uid: 8240 - components: - - type: Transform - pos: -7.5,40.5 - parent: 1 - - uid: 8241 - components: - - type: Transform - pos: -4.5,40.5 - parent: 1 -- proto: BedsheetQM - entities: - - uid: 9324 - components: - - type: Transform - pos: -42.5,11.5 - parent: 1 -- proto: BedsheetRD - entities: - - uid: 3559 - components: - - type: Transform - pos: -25.5,19.5 - parent: 1 -- proto: BedsheetSpawner - entities: - - uid: 6940 - components: - - type: Transform - pos: 11.5,40.5 - parent: 1 - - uid: 6941 - components: - - type: Transform - pos: 11.5,46.5 - parent: 1 - - uid: 6942 - components: - - type: Transform - pos: 18.5,47.5 - parent: 1 - - uid: 7025 - components: - - type: Transform - pos: -23.5,1.5 - parent: 1 - - uid: 8260 - components: - - type: Transform - pos: -38.5,42.5 - parent: 1 - - uid: 9871 - components: - - type: Transform - pos: -36.5,-21.5 - parent: 1 - - uid: 10384 - components: - - type: Transform - pos: 33.5,-17.5 - parent: 1 -- proto: BedsheetSyndie - entities: - - uid: 4319 - components: - - type: Transform - pos: -38.5,46.5 - parent: 1 -- proto: BlastDoor - entities: - - uid: 4135 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,24.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7826 - - uid: 7923 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,22.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7826 - - uid: 9406 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-15.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9404 -- proto: BlastDoorBridgeOpen - entities: - - uid: 4282 - components: - - type: Transform - pos: -9.5,76.5 - parent: 1 - - uid: 4283 - components: - - type: Transform - pos: -9.5,77.5 - parent: 1 - - uid: 4284 - components: - - type: Transform - pos: -8.5,79.5 - parent: 1 - - uid: 4285 - components: - - type: Transform - pos: -8.5,80.5 - parent: 1 - - uid: 4286 - components: - - type: Transform - pos: -7.5,82.5 - parent: 1 - - uid: 4287 - components: - - type: Transform - pos: -6.5,83.5 - parent: 1 - - uid: 4288 - components: - - type: Transform - pos: -5.5,83.5 - parent: 1 - - uid: 4289 - components: - - type: Transform - pos: -3.5,84.5 - parent: 1 - - uid: 4290 - components: - - type: Transform - pos: -2.5,84.5 - parent: 1 - - uid: 4291 - components: - - type: Transform - pos: -1.5,84.5 - parent: 1 - - uid: 4292 - components: - - type: Transform - pos: 0.5,84.5 - parent: 1 - - uid: 4293 - components: - - type: Transform - pos: 1.5,84.5 - parent: 1 - - uid: 4294 - components: - - type: Transform - pos: 2.5,84.5 - parent: 1 - - uid: 4295 - components: - - type: Transform - pos: 5.5,83.5 - parent: 1 - - uid: 4296 - components: - - type: Transform - pos: 4.5,83.5 - parent: 1 - - uid: 4297 - components: - - type: Transform - pos: 6.5,82.5 - parent: 1 - - uid: 4298 - components: - - type: Transform - pos: 7.5,80.5 - parent: 1 - - uid: 4299 - components: - - type: Transform - pos: 7.5,79.5 - parent: 1 - - uid: 4300 - components: - - type: Transform - pos: 8.5,77.5 - parent: 1 - - uid: 4301 - components: - - type: Transform - pos: 8.5,76.5 - parent: 1 - - uid: 4302 - components: - - type: Transform - pos: 0.5,72.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4305 - - uid: 4303 - components: - - type: Transform - pos: -0.5,72.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4305 - - uid: 4304 - components: - - type: Transform - pos: -1.5,72.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4305 -- proto: BlastDoorExterior3Open - entities: - - uid: 9643 - components: - - type: Transform - pos: -13.5,39.5 - parent: 1 - - uid: 9644 - components: - - type: Transform - pos: -12.5,39.5 - parent: 1 - - uid: 9645 - components: - - type: Transform - pos: -9.5,39.5 - parent: 1 - - uid: 9646 - components: - - type: Transform - pos: -10.5,39.5 - parent: 1 - - uid: 9647 - components: - - type: Transform - pos: -6.5,39.5 - parent: 1 - - uid: 9648 - components: - - type: Transform - pos: -7.5,39.5 - parent: 1 - - uid: 9649 - components: - - type: Transform - pos: -3.5,39.5 - parent: 1 - - uid: 9650 - components: - - type: Transform - pos: -4.5,39.5 - parent: 1 - - uid: 9651 - components: - - type: Transform - pos: -3.5,48.5 - parent: 1 - - uid: 9652 - components: - - type: Transform - pos: -3.5,49.5 - parent: 1 - - uid: 9653 - components: - - type: Transform - pos: -3.5,50.5 - parent: 1 - - uid: 9654 - components: - - type: Transform - pos: -4.5,53.5 - parent: 1 - - uid: 9655 - components: - - type: Transform - pos: -4.5,54.5 - parent: 1 - - uid: 9656 - components: - - type: Transform - pos: -4.5,56.5 - parent: 1 - - uid: 9657 - components: - - type: Transform - pos: -4.5,57.5 - parent: 1 -- proto: BlastDoorOpen - entities: - - uid: 1048 - components: - - type: Transform - pos: -6.5,27.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8572 - - uid: 2129 - components: - - type: Transform - pos: -44.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 2291 - - uid: 2130 - components: - - type: Transform - pos: -47.5,1.5 - parent: 1 - - type: DeviceLinkSink - links: - - 2128 - - uid: 2607 - components: - - type: Transform - pos: -44.5,1.5 - parent: 1 - - type: DeviceLinkSink - links: - - 2291 - - uid: 2610 - components: - - type: Transform - pos: -47.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 2612 - - uid: 2813 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-26.5 - parent: 1 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - type: Airtight - airBlocked: True - - type: DeviceLinkSink - links: - - 8738 - - uid: 2814 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-27.5 - parent: 1 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - type: Airtight - airBlocked: True - - type: DeviceLinkSink - links: - - 8738 - - uid: 2821 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-28.5 - parent: 1 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - type: Airtight - airBlocked: True - - type: DeviceLinkSink - links: - - 8738 - - uid: 2822 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-29.5 - parent: 1 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - type: Airtight - airBlocked: True - - type: DeviceLinkSink - links: - - 8738 - - uid: 3050 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8749 - - uid: 3051 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8750 - - uid: 3052 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8750 - - uid: 3053 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8750 - - uid: 3066 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-38.5 - parent: 1 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - type: Airtight - airBlocked: True - - type: DeviceLinkSink - links: - - 17649 - - uid: 4205 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-23.5 - parent: 1 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - type: Airtight - airBlocked: True - - type: DeviceLinkSink - links: - - 17648 -- proto: BlastDoorWindowsOpen - entities: - - uid: 18360 - components: - - type: Transform - pos: -9.5,74.5 - parent: 1 - - uid: 18361 - components: - - type: Transform - pos: -9.5,73.5 - parent: 1 - - uid: 18362 - components: - - type: Transform - pos: -9.5,72.5 - parent: 1 -- proto: BodyBag_Folded - entities: - - uid: 6946 - components: - - type: Transform - pos: 33.33633,56.840748 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.3955739 - - 12.773826 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6947 - components: - - type: Transform - pos: 33.648705,56.61369 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.1239278 - - 11.75192 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: Bola - entities: - - uid: 8195 - components: - - type: Transform - pos: -16.57336,48.668964 - parent: 1 - - uid: 9421 - components: - - type: Transform - pos: 41.316933,42.55459 - parent: 1 -- proto: BookAtmosAirAlarms - entities: - - uid: 9185 - components: - - type: Transform - pos: 6.038775,-21.429781 - parent: 1 -- proto: BookAtmosDistro - entities: - - uid: 9183 - components: - - type: Transform - pos: 7.4437623,-15.369677 - parent: 1 -- proto: BookAtmosVentsMore - entities: - - uid: 9184 - components: - - type: Transform - pos: -11.074379,-15.383043 - parent: 1 -- proto: BookAtmosWaste - entities: - - uid: 9186 - components: - - type: Transform - pos: -13.559183,-33.321575 - parent: 1 -- proto: BookBase - entities: - - uid: 10101 - components: - - type: Transform - pos: -35.309326,-21.379847 - parent: 1 -- proto: BookRandom - entities: - - uid: 8374 - components: - - type: Transform - pos: 29.490294,49.539463 - parent: 1 - - uid: 8377 - components: - - type: Transform - pos: 24.466179,53.695103 - parent: 1 - - uid: 9270 - components: - - type: Transform - pos: 24.172997,11.661996 - parent: 1 - - uid: 13472 - components: - - type: Transform - pos: -17.602375,64.72776 - parent: 1 - - uid: 13477 - components: - - type: Transform - pos: -12.50277,64.65098 - parent: 1 -- proto: BooksBag - entities: - - uid: 564 - components: - - type: Transform - pos: -25.599146,3.2273636 - parent: 1 -- proto: Bookshelf - entities: - - uid: 6474 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-33.5 - parent: 1 - - uid: 9265 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,11.5 - parent: 1 - - uid: 9866 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-20.5 - parent: 1 -- proto: BookshelfFilled - entities: - - uid: 579 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,11.5 - parent: 1 - - uid: 591 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,9.5 - parent: 1 - - uid: 785 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,11.5 - parent: 1 - - uid: 790 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,11.5 - parent: 1 - - uid: 3020 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,64.5 - parent: 1 -- proto: BoozeDispenser - entities: - - uid: 4043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,7.5 - parent: 1 - - uid: 4451 - components: - - type: Transform - pos: -34.5,56.5 - parent: 1 -- proto: BorgCharger - entities: - - uid: 2602 - components: - - type: Transform - pos: -16.5,34.5 - parent: 1 - - uid: 2605 - components: - - type: Transform - pos: -17.5,34.5 - parent: 1 - - uid: 2646 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 1 -- proto: BoxBeanbag - entities: - - uid: 13331 - components: - - type: Transform - pos: -9.5083065,10.722602 - parent: 1 -- proto: BoxBodyBag - entities: - - uid: 3705 - components: - - type: Transform - pos: 18.323305,31.666723 - parent: 1 -- proto: BoxBottle - entities: - - uid: 8534 - components: - - type: Transform - pos: 6.2325087,22.657133 - parent: 1 -- proto: BoxFlashbang - entities: - - uid: 18430 - components: - - type: Transform - pos: -16.611473,48.986847 - parent: 1 -- proto: BoxFolderBlack - entities: - - uid: 1934 - components: - - type: Transform - pos: 9.125238,57.460705 - parent: 1 - - uid: 1935 - components: - - type: Transform - pos: 12.500238,57.648205 - parent: 1 - - uid: 8080 - components: - - type: Transform - pos: -0.32539943,82.85567 - parent: 1 - - uid: 8657 - components: - - type: Transform - pos: -23.526514,19.927814 - parent: 1 - - uid: 9107 - components: - - type: Transform - pos: 5.668479,-25.549896 - parent: 1 -- proto: BoxFolderBlue - entities: - - uid: 3445 - components: - - type: Transform - pos: -9.412775,27.467733 - parent: 1 - - uid: 8078 - components: - - type: Transform - pos: -0.5525799,82.65699 - parent: 1 - - uid: 8517 - components: - - type: Transform - pos: 7.566098,19.575048 - parent: 1 -- proto: BoxFolderClipboard - entities: - - uid: 9636 - components: - - type: Transform - pos: -38.639683,-6.348105 - parent: 1 -- proto: BoxFolderGrey - entities: - - uid: 3446 - components: - - type: Transform - pos: -9.554764,27.609644 - parent: 1 - - uid: 8105 - components: - - type: Transform - pos: 6.4373384,71.640045 - parent: 1 - - uid: 8658 - components: - - type: Transform - pos: -23.384525,19.700756 - parent: 1 - - uid: 9218 - components: - - type: Transform - pos: 25.298811,4.565318 - parent: 1 - - uid: 9219 - components: - - type: Transform - pos: 25.548811,4.5861516 - parent: 1 - - uid: 9337 - components: - - type: Transform - pos: -43.574795,8.288526 - parent: 1 -- proto: BoxFolderRed - entities: - - uid: 7284 - components: - - type: Transform - pos: 5.333919,63.8167 - parent: 1 - - uid: 7289 - components: - - type: Transform - pos: 3.0905108,61.46098 - parent: 1 - - uid: 8232 - components: - - type: Transform - pos: -19.604881,52.742233 - parent: 1 - - uid: 8233 - components: - - type: Transform - pos: -12.990286,56.554054 - parent: 1 - - uid: 8246 - components: - - type: Transform - pos: -13.392934,47.51383 - parent: 1 - - uid: 8344 - components: - - type: Transform - pos: -16.417713,58.622196 - parent: 1 - - uid: 8361 - components: - - type: Transform - pos: 42.90648,50.630825 - parent: 1 -- proto: BoxFolderWhite - entities: - - uid: 7285 - components: - - type: Transform - pos: 5.6462917,63.53288 - parent: 1 - - uid: 8079 - components: - - type: Transform - pos: 2.6563458,82.571846 - parent: 1 - - uid: 8493 - components: - - type: Transform - pos: 15.860265,32.633404 - parent: 1 -- proto: BoxFolderYellow - entities: - - uid: 8104 - components: - - type: Transform - pos: 4.5346994,73.39974 - parent: 1 - - uid: 9106 - components: - - type: Transform - pos: 5.460146,-25.362396 - parent: 1 - - uid: 9178 - components: - - type: Transform - pos: 13.689603,-12.275042 - parent: 1 - - uid: 9179 - components: - - type: Transform - pos: 13.41877,-12.462542 - parent: 1 - - uid: 9335 - components: - - type: Transform - pos: -43.637295,8.517693 - parent: 1 - - uid: 9336 - components: - - type: Transform - pos: -43.366463,8.267693 - parent: 1 - - uid: 18179 - components: - - type: Transform - pos: -35.620438,12.58034 - parent: 1 -- proto: BoxHandcuff - entities: - - uid: 18431 - components: - - type: Transform - pos: -16.528141,49.174347 - parent: 1 -- proto: BoxLightbulb - entities: - - uid: 18095 - components: - - type: Transform - pos: -46.66187,46.44237 - parent: 1 -- proto: BoxMousetrap - entities: - - uid: 6634 - components: - - type: Transform - pos: 12.496991,1.4858572 - parent: 1 -- proto: BoxTrashbag - entities: - - uid: 9255 - components: - - type: Transform - pos: 16.332394,-5.251412 - parent: 1 -- proto: BoxZiptie - entities: - - uid: 8194 - components: - - type: Transform - pos: -16.340641,49.341015 - parent: 1 -- proto: BrbSign - entities: - - uid: 9213 - components: - - type: Transform - pos: 25.652977,4.377818 - parent: 1 -- proto: BriefcaseBrownFilled - entities: - - uid: 7286 - components: - - type: Transform - pos: 4.538786,64.696556 - parent: 1 - - uid: 8120 - components: - - type: Transform - pos: 13.062738,57.648205 - parent: 1 -- proto: BrigTimer - entities: - - uid: 7666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,43.5 - parent: 1 - - uid: 7667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,43.5 - parent: 1 - - uid: 7668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,43.5 - parent: 1 - - uid: 7669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,43.5 - parent: 1 -- proto: Bucket - entities: - - uid: 9006 - components: - - type: Transform - pos: 8.547974,11.674014 - parent: 1 - - uid: 10965 - components: - - type: Transform - pos: 37.59104,-15.971035 - parent: 1 -- proto: ButchCleaver - entities: - - uid: 10645 - components: - - type: Transform - pos: 8.613402,-2.6485355 - parent: 1 -- proto: CableApcExtension - entities: - - uid: 101 - components: - - type: Transform - pos: 51.5,-7.5 - parent: 1 - - uid: 168 - components: - - type: Transform - pos: 48.5,-12.5 - parent: 1 - - uid: 661 - components: - - type: Transform - pos: -23.5,10.5 - parent: 1 - - uid: 663 - components: - - type: Transform - pos: -23.5,9.5 - parent: 1 - - uid: 664 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 1 - - uid: 2002 - components: - - type: Transform - pos: 47.5,-12.5 - parent: 1 - - uid: 2003 - components: - - type: Transform - pos: 48.5,-14.5 - parent: 1 - - uid: 2037 - components: - - type: Transform - pos: 51.5,-14.5 - parent: 1 - - uid: 2038 - components: - - type: Transform - pos: 48.5,-13.5 - parent: 1 - - uid: 2039 - components: - - type: Transform - pos: 49.5,-14.5 - parent: 1 - - uid: 2052 - components: - - type: Transform - pos: 45.5,-12.5 - parent: 1 - - uid: 2057 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 1 - - uid: 2059 - components: - - type: Transform - pos: 50.5,-7.5 - parent: 1 - - uid: 2060 - components: - - type: Transform - pos: 46.5,-12.5 - parent: 1 - - uid: 2618 - components: - - type: Transform - pos: 15.5,30.5 - parent: 1 - - uid: 2622 - components: - - type: Transform - pos: -42.5,1.5 - parent: 1 - - uid: 2635 - components: - - type: Transform - pos: -17.5,30.5 - parent: 1 - - uid: 2644 - components: - - type: Transform - pos: -17.5,31.5 - parent: 1 - - uid: 2654 - components: - - type: Transform - pos: 15.5,29.5 - parent: 1 - - uid: 2657 - components: - - type: Transform - pos: 14.5,18.5 - parent: 1 - - uid: 3023 - components: - - type: Transform - pos: -35.5,11.5 - parent: 1 - - uid: 3679 - components: - - type: Transform - pos: 14.5,67.5 - parent: 1 - - uid: 3687 - components: - - type: Transform - pos: 13.5,18.5 - parent: 1 - - uid: 5533 - components: - - type: Transform - pos: -42.5,0.5 - parent: 1 - - uid: 6000 - components: - - type: Transform - pos: -29.5,-17.5 - parent: 1 - - uid: 6022 - components: - - type: Transform - pos: -18.5,-31.5 - parent: 1 - - uid: 6402 - components: - - type: Transform - pos: 13.5,67.5 - parent: 1 - - uid: 6521 - components: - - type: Transform - pos: 48.5,-10.5 - parent: 1 - - uid: 6525 - components: - - type: Transform - pos: 48.5,-11.5 - parent: 1 - - uid: 6546 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 1 - - uid: 6547 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 1 - - uid: 6770 - components: - - type: Transform - pos: 26.5,-27.5 - parent: 1 - - uid: 7422 - components: - - type: Transform - pos: 26.5,-25.5 - parent: 1 - - uid: 7652 - components: - - type: Transform - pos: -27.5,-28.5 - parent: 1 - - uid: 7661 - components: - - type: Transform - pos: 26.5,-28.5 - parent: 1 - - uid: 7662 - components: - - type: Transform - pos: 26.5,-26.5 - parent: 1 - - uid: 7938 - components: - - type: Transform - pos: -42.5,24.5 - parent: 1 - - uid: 7939 - components: - - type: Transform - pos: -42.5,23.5 - parent: 1 - - uid: 7940 - components: - - type: Transform - pos: -42.5,22.5 - parent: 1 - - uid: 7941 - components: - - type: Transform - pos: -43.5,22.5 - parent: 1 - - uid: 7942 - components: - - type: Transform - pos: -44.5,22.5 - parent: 1 - - uid: 7943 - components: - - type: Transform - pos: -45.5,22.5 - parent: 1 - - uid: 7944 - components: - - type: Transform - pos: -45.5,21.5 - parent: 1 - - uid: 8009 - components: - - type: Transform - pos: -45.5,20.5 - parent: 1 - - uid: 8140 - components: - - type: Transform - pos: -43.5,24.5 - parent: 1 - - uid: 8141 - components: - - type: Transform - pos: -44.5,24.5 - parent: 1 - - uid: 8142 - components: - - type: Transform - pos: -45.5,24.5 - parent: 1 - - uid: 8143 - components: - - type: Transform - pos: -42.5,27.5 - parent: 1 - - uid: 8144 - components: - - type: Transform - pos: -43.5,27.5 - parent: 1 - - uid: 8146 - components: - - type: Transform - pos: -44.5,27.5 - parent: 1 - - uid: 8151 - components: - - type: Transform - pos: -45.5,27.5 - parent: 1 - - uid: 8152 - components: - - type: Transform - pos: -45.5,28.5 - parent: 1 - - uid: 8156 - components: - - type: Transform - pos: -42.5,26.5 - parent: 1 - - uid: 8157 - components: - - type: Transform - pos: -42.5,28.5 - parent: 1 - - uid: 8158 - components: - - type: Transform - pos: -41.5,28.5 - parent: 1 - - uid: 8159 - components: - - type: Transform - pos: -40.5,28.5 - parent: 1 - - uid: 8160 - components: - - type: Transform - pos: -39.5,28.5 - parent: 1 - - uid: 8193 - components: - - type: Transform - pos: -2.5,1.5 - parent: 1 - - uid: 8434 - components: - - type: Transform - pos: 12.5,18.5 - parent: 1 - - uid: 8518 - components: - - type: Transform - pos: -44.5,2.5 - parent: 1 - - uid: 8598 - components: - - type: Transform - pos: -45.5,2.5 - parent: 1 - - uid: 8599 - components: - - type: Transform - pos: -46.5,2.5 - parent: 1 - - uid: 8600 - components: - - type: Transform - pos: -45.5,4.5 - parent: 1 - - uid: 8601 - components: - - type: Transform - pos: -46.5,4.5 - parent: 1 - - uid: 8701 - components: - - type: Transform - pos: -44.5,4.5 - parent: 1 - - uid: 8830 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 8756 - - uid: 8831 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 8756 - - uid: 8832 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 8756 - - uid: 8833 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 8756 - - uid: 8834 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 8756 - - uid: 8835 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 8756 - - uid: 8836 - components: - - type: Transform - pos: 1.5,0.5 - parent: 8756 - - uid: 8837 - components: - - type: Transform - pos: 0.5,0.5 - parent: 8756 - - uid: 8838 - components: - - type: Transform - pos: 0.5,1.5 - parent: 8756 - - uid: 8839 - components: - - type: Transform - pos: 0.5,2.5 - parent: 8756 - - uid: 8840 - components: - - type: Transform - pos: 0.5,3.5 - parent: 8756 - - uid: 8841 - components: - - type: Transform - pos: -0.5,3.5 - parent: 8756 - - uid: 8842 - components: - - type: Transform - pos: -1.5,3.5 - parent: 8756 - - uid: 8843 - components: - - type: Transform - pos: -1.5,2.5 - parent: 8756 - - uid: 8844 - components: - - type: Transform - pos: -1.5,1.5 - parent: 8756 - - uid: 8845 - components: - - type: Transform - pos: -1.5,0.5 - parent: 8756 - - uid: 8846 - components: - - type: Transform - pos: -2.5,0.5 - parent: 8756 - - uid: 8847 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 8756 - - uid: 8848 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 8756 - - uid: 8849 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 8756 - - uid: 8850 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 8756 - - uid: 8851 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 8756 - - uid: 8852 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 8756 - - uid: 8853 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 8756 - - uid: 8854 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 8756 - - uid: 8855 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 8756 - - uid: 8856 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 8756 - - uid: 9620 - components: - - type: Transform - pos: 19.5,28.5 - parent: 1 - - uid: 9718 - components: - - type: Transform - pos: -9.5,46.5 - parent: 1 - - uid: 9737 - components: - - type: Transform - pos: -22.5,-19.5 - parent: 1 - - uid: 9738 - components: - - type: Transform - pos: -22.5,-18.5 - parent: 1 - - uid: 9739 - components: - - type: Transform - pos: -21.5,-18.5 - parent: 1 - - uid: 9740 - components: - - type: Transform - pos: -20.5,-18.5 - parent: 1 - - uid: 9741 - components: - - type: Transform - pos: -20.5,-17.5 - parent: 1 - - uid: 9742 - components: - - type: Transform - pos: -20.5,-16.5 - parent: 1 - - uid: 9743 - components: - - type: Transform - pos: -20.5,-15.5 - parent: 1 - - uid: 9744 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 1 - - uid: 9745 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 1 - - uid: 9746 - components: - - type: Transform - pos: -23.5,-16.5 - parent: 1 - - uid: 9747 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 1 - - uid: 9748 - components: - - type: Transform - pos: -22.5,-20.5 - parent: 1 - - uid: 9749 - components: - - type: Transform - pos: -22.5,-21.5 - parent: 1 - - uid: 9750 - components: - - type: Transform - pos: -22.5,-22.5 - parent: 1 - - uid: 9751 - components: - - type: Transform - pos: -22.5,-23.5 - parent: 1 - - uid: 9752 - components: - - type: Transform - pos: -21.5,-20.5 - parent: 1 - - uid: 9753 - components: - - type: Transform - pos: -20.5,-20.5 - parent: 1 - - uid: 9754 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 1 - - uid: 9755 - components: - - type: Transform - pos: -20.5,-22.5 - parent: 1 - - uid: 9756 - components: - - type: Transform - pos: -20.5,-23.5 - parent: 1 - - uid: 9757 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 1 - - uid: 9758 - components: - - type: Transform - pos: -23.5,-20.5 - parent: 1 - - uid: 9759 - components: - - type: Transform - pos: -24.5,-20.5 - parent: 1 - - uid: 9760 - components: - - type: Transform - pos: -24.5,-21.5 - parent: 1 - - uid: 9761 - components: - - type: Transform - pos: -24.5,-22.5 - parent: 1 - - uid: 9762 - components: - - type: Transform - pos: -24.5,-23.5 - parent: 1 - - uid: 9763 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 1 - - uid: 9776 - components: - - type: Transform - pos: -31.5,-13.5 - parent: 1 - - uid: 9777 - components: - - type: Transform - pos: -31.5,-14.5 - parent: 1 - - uid: 9778 - components: - - type: Transform - pos: -31.5,-15.5 - parent: 1 - - uid: 9779 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 1 - - uid: 9780 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 1 - - uid: 9781 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 1 - - uid: 9782 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 1 - - uid: 9783 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 1 - - uid: 9784 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 1 - - uid: 9785 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 1 - - uid: 9786 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 1 - - uid: 9787 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 1 - - uid: 9788 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 1 - - uid: 9789 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 1 - - uid: 9790 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 1 - - uid: 9791 - components: - - type: Transform - pos: -27.5,-14.5 - parent: 1 - - uid: 9792 - components: - - type: Transform - pos: -27.5,-13.5 - parent: 1 - - uid: 9793 - components: - - type: Transform - pos: -27.5,-12.5 - parent: 1 - - uid: 9794 - components: - - type: Transform - pos: -27.5,-11.5 - parent: 1 - - uid: 9795 - components: - - type: Transform - pos: -32.5,-16.5 - parent: 1 - - uid: 9796 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 1 - - uid: 9797 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 1 - - uid: 9798 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 1 - - uid: 9799 - components: - - type: Transform - pos: -35.5,-15.5 - parent: 1 - - uid: 9800 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 1 - - uid: 9801 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 1 - - uid: 9802 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 1 - - uid: 9803 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 1 - - uid: 9804 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 1 - - uid: 9805 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 1 - - uid: 9806 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 1 - - uid: 9807 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 1 - - uid: 9808 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 1 - - uid: 9809 - components: - - type: Transform - pos: -37.5,-11.5 - parent: 1 - - uid: 9810 - components: - - type: Transform - pos: -38.5,-11.5 - parent: 1 - - uid: 9811 - components: - - type: Transform - pos: -39.5,-11.5 - parent: 1 - - uid: 9812 - components: - - type: Transform - pos: -40.5,-11.5 - parent: 1 - - uid: 9813 - components: - - type: Transform - pos: -40.5,-10.5 - parent: 1 - - uid: 9814 - components: - - type: Transform - pos: -40.5,-9.5 - parent: 1 - - uid: 9818 - components: - - type: Transform - pos: -44.5,-9.5 - parent: 1 - - uid: 9819 - components: - - type: Transform - pos: -45.5,-9.5 - parent: 1 - - uid: 9820 - components: - - type: Transform - pos: -46.5,-9.5 - parent: 1 - - uid: 9821 - components: - - type: Transform - pos: -47.5,-9.5 - parent: 1 - - uid: 9822 - components: - - type: Transform - pos: -48.5,-9.5 - parent: 1 - - uid: 9823 - components: - - type: Transform - pos: -49.5,-9.5 - parent: 1 - - uid: 9824 - components: - - type: Transform - pos: -50.5,-9.5 - parent: 1 - - uid: 9825 - components: - - type: Transform - pos: -51.5,-9.5 - parent: 1 - - uid: 9826 - components: - - type: Transform - pos: -52.5,-9.5 - parent: 1 - - uid: 9827 - components: - - type: Transform - pos: -49.5,-10.5 - parent: 1 - - uid: 9828 - components: - - type: Transform - pos: -49.5,-11.5 - parent: 1 - - uid: 9829 - components: - - type: Transform - pos: -47.5,-10.5 - parent: 1 - - uid: 9830 - components: - - type: Transform - pos: -47.5,-11.5 - parent: 1 - - uid: 9831 - components: - - type: Transform - pos: -50.5,-8.5 - parent: 1 - - uid: 9832 - components: - - type: Transform - pos: -50.5,-7.5 - parent: 1 - - uid: 9833 - components: - - type: Transform - pos: -51.5,-7.5 - parent: 1 - - uid: 9834 - components: - - type: Transform - pos: -52.5,-7.5 - parent: 1 - - uid: 9835 - components: - - type: Transform - pos: -49.5,-7.5 - parent: 1 - - uid: 9836 - components: - - type: Transform - pos: -48.5,-7.5 - parent: 1 - - uid: 9837 - components: - - type: Transform - pos: -47.5,-7.5 - parent: 1 - - uid: 9838 - components: - - type: Transform - pos: -46.5,-7.5 - parent: 1 - - uid: 9839 - components: - - type: Transform - pos: -45.5,-7.5 - parent: 1 - - uid: 9840 - components: - - type: Transform - pos: -45.5,-8.5 - parent: 1 - - uid: 9990 - components: - - type: Transform - pos: -29.5,-18.5 - parent: 1 - - uid: 9991 - components: - - type: Transform - pos: -29.5,-19.5 - parent: 1 - - uid: 9992 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 1 - - uid: 9993 - components: - - type: Transform - pos: -29.5,-21.5 - parent: 1 - - uid: 9994 - components: - - type: Transform - pos: -29.5,-22.5 - parent: 1 - - uid: 9995 - components: - - type: Transform - pos: -29.5,-23.5 - parent: 1 - - uid: 9996 - components: - - type: Transform - pos: -30.5,-23.5 - parent: 1 - - uid: 9997 - components: - - type: Transform - pos: -31.5,-23.5 - parent: 1 - - uid: 9998 - components: - - type: Transform - pos: -31.5,-22.5 - parent: 1 - - uid: 9999 - components: - - type: Transform - pos: -31.5,-21.5 - parent: 1 - - uid: 10000 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 1 - - uid: 10001 - components: - - type: Transform - pos: -31.5,-19.5 - parent: 1 - - uid: 10002 - components: - - type: Transform - pos: -32.5,-19.5 - parent: 1 - - uid: 10003 - components: - - type: Transform - pos: -33.5,-19.5 - parent: 1 - - uid: 10004 - components: - - type: Transform - pos: -34.5,-19.5 - parent: 1 - - uid: 10005 - components: - - type: Transform - pos: -28.5,-22.5 - parent: 1 - - uid: 10006 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 1 - - uid: 10007 - components: - - type: Transform - pos: -26.5,-22.5 - parent: 1 - - uid: 10008 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 1 - - uid: 10009 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 1 - - uid: 10010 - components: - - type: Transform - pos: -29.5,-26.5 - parent: 1 - - uid: 10011 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 1 - - uid: 10012 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 1 - - uid: 10013 - components: - - type: Transform - pos: -26.5,-26.5 - parent: 1 - - uid: 10014 - components: - - type: Transform - pos: -25.5,-26.5 - parent: 1 - - uid: 10015 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 1 - - uid: 10016 - components: - - type: Transform - pos: -23.5,-26.5 - parent: 1 - - uid: 10017 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 1 - - uid: 10018 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 1 - - uid: 10019 - components: - - type: Transform - pos: -20.5,-26.5 - parent: 1 - - uid: 10020 - components: - - type: Transform - pos: -20.5,-27.5 - parent: 1 - - uid: 10021 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 1 - - uid: 10022 - components: - - type: Transform - pos: -20.5,-29.5 - parent: 1 - - uid: 10023 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 1 - - uid: 10024 - components: - - type: Transform - pos: -20.5,-31.5 - parent: 1 - - uid: 10025 - components: - - type: Transform - pos: -19.5,-31.5 - parent: 1 - - uid: 10026 - components: - - type: Transform - pos: -19.5,-32.5 - parent: 1 - - uid: 10027 - components: - - type: Transform - pos: -19.5,-33.5 - parent: 1 - - uid: 10028 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 1 - - uid: 10029 - components: - - type: Transform - pos: -19.5,-35.5 - parent: 1 - - uid: 10030 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 1 - - uid: 10031 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 1 - - uid: 10032 - components: - - type: Transform - pos: -18.5,-18.5 - parent: 1 - - uid: 10033 - components: - - type: Transform - pos: -17.5,-18.5 - parent: 1 - - uid: 10034 - components: - - type: Transform - pos: -16.5,-18.5 - parent: 1 - - uid: 10035 - components: - - type: Transform - pos: -16.5,-19.5 - parent: 1 - - uid: 10036 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 1 - - uid: 10037 - components: - - type: Transform - pos: -16.5,-21.5 - parent: 1 - - uid: 10038 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 1 - - uid: 10039 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 1 - - uid: 10040 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 1 - - uid: 10041 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 1 - - uid: 10042 - components: - - type: Transform - pos: -18.5,-24.5 - parent: 1 - - uid: 10043 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 1 - - uid: 10044 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 1 - - uid: 10045 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 1 - - uid: 10046 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 1 - - uid: 10047 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 1 - - uid: 10049 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 1 - - uid: 10050 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 1 - - uid: 10051 - components: - - type: Transform - pos: -16.5,-32.5 - parent: 1 - - uid: 10052 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 1 - - uid: 10053 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 1 - - uid: 10054 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 1 - - uid: 10055 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 1 - - uid: 10056 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 1 - - uid: 10057 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 1 - - uid: 10058 - components: - - type: Transform - pos: -16.5,-39.5 - parent: 1 - - uid: 10059 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 1 - - uid: 10164 - components: - - type: Transform - pos: 29.5,-14.5 - parent: 1 - - uid: 10165 - components: - - type: Transform - pos: 29.5,-13.5 - parent: 1 - - uid: 10166 - components: - - type: Transform - pos: 29.5,-12.5 - parent: 1 - - uid: 10167 - components: - - type: Transform - pos: 29.5,-11.5 - parent: 1 - - uid: 10168 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 1 - - uid: 10169 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 1 - - uid: 10170 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 1 - - uid: 10171 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 1 - - uid: 10172 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 1 - - uid: 10173 - components: - - type: Transform - pos: 28.5,-15.5 - parent: 1 - - uid: 10174 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 1 - - uid: 10175 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 1 - - uid: 10176 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 1 - - uid: 10177 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 1 - - uid: 10178 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 1 - - uid: 10179 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 1 - - uid: 10180 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 1 - - uid: 10181 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 1 - - uid: 10182 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 1 - - uid: 10183 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 1 - - uid: 10184 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 1 - - uid: 10185 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 1 - - uid: 10186 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 1 - - uid: 10187 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 1 - - uid: 10188 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 1 - - uid: 10189 - components: - - type: Transform - pos: 24.5,-24.5 - parent: 1 - - uid: 10190 - components: - - type: Transform - pos: 23.5,-24.5 - parent: 1 - - uid: 10191 - components: - - type: Transform - pos: 22.5,-24.5 - parent: 1 - - uid: 10192 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 1 - - uid: 10193 - components: - - type: Transform - pos: 22.5,-26.5 - parent: 1 - - uid: 10194 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 1 - - uid: 10195 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 1 - - uid: 10196 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 1 - - uid: 10197 - components: - - type: Transform - pos: 21.5,-29.5 - parent: 1 - - uid: 10198 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 1 - - uid: 10199 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 1 - - uid: 10200 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 1 - - uid: 10201 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 1 - - uid: 10202 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 1 - - uid: 10203 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 1 - - uid: 10204 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 1 - - uid: 10205 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 1 - - uid: 10206 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 1 - - uid: 10207 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 1 - - uid: 10208 - components: - - type: Transform - pos: 15.5,-34.5 - parent: 1 - - uid: 10209 - components: - - type: Transform - pos: 15.5,-35.5 - parent: 1 - - uid: 10210 - components: - - type: Transform - pos: 16.5,-34.5 - parent: 1 - - uid: 10211 - components: - - type: Transform - pos: 17.5,-34.5 - parent: 1 - - uid: 10212 - components: - - type: Transform - pos: 18.5,-34.5 - parent: 1 - - uid: 10213 - components: - - type: Transform - pos: 19.5,-34.5 - parent: 1 - - uid: 10214 - components: - - type: Transform - pos: 19.5,-35.5 - parent: 1 - - uid: 10215 - components: - - type: Transform - pos: 19.5,-36.5 - parent: 1 - - uid: 10216 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 1 - - uid: 10217 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 1 - - uid: 10218 - components: - - type: Transform - pos: 15.5,-36.5 - parent: 1 - - uid: 10219 - components: - - type: Transform - pos: 15.5,-37.5 - parent: 1 - - uid: 10220 - components: - - type: Transform - pos: 15.5,-38.5 - parent: 1 - - uid: 10221 - components: - - type: Transform - pos: 15.5,-39.5 - parent: 1 - - uid: 10222 - components: - - type: Transform - pos: 15.5,-40.5 - parent: 1 - - uid: 10223 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 1 - - uid: 10224 - components: - - type: Transform - pos: 31.5,-15.5 - parent: 1 - - uid: 10225 - components: - - type: Transform - pos: 32.5,-15.5 - parent: 1 - - uid: 10226 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 1 - - uid: 10227 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 1 - - uid: 10228 - components: - - type: Transform - pos: 32.5,-12.5 - parent: 1 - - uid: 10229 - components: - - type: Transform - pos: 32.5,-11.5 - parent: 1 - - uid: 10230 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 1 - - uid: 10231 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 1 - - uid: 10232 - components: - - type: Transform - pos: 35.5,-11.5 - parent: 1 - - uid: 10233 - components: - - type: Transform - pos: 36.5,-11.5 - parent: 1 - - uid: 10234 - components: - - type: Transform - pos: 37.5,-11.5 - parent: 1 - - uid: 10235 - components: - - type: Transform - pos: 38.5,-11.5 - parent: 1 - - uid: 10236 - components: - - type: Transform - pos: 39.5,-11.5 - parent: 1 - - uid: 10237 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 1 - - uid: 10238 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 1 - - uid: 10239 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 1 - - uid: 10240 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 1 - - uid: 10241 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 1 - - uid: 10242 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 1 - - uid: 10243 - components: - - type: Transform - pos: 30.5,-22.5 - parent: 1 - - uid: 10244 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 1 - - uid: 10245 - components: - - type: Transform - pos: 30.5,-24.5 - parent: 1 - - uid: 10246 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1 - - uid: 10247 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 1 - - uid: 10248 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 1 - - uid: 10249 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 1 - - uid: 10250 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 1 - - uid: 10251 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 1 - - uid: 10252 - components: - - type: Transform - pos: 27.5,-24.5 - parent: 1 - - uid: 10253 - components: - - type: Transform - pos: 26.5,-24.5 - parent: 1 - - uid: 10254 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 1 - - uid: 10255 - components: - - type: Transform - pos: 31.5,-20.5 - parent: 1 - - uid: 10256 - components: - - type: Transform - pos: 32.5,-20.5 - parent: 1 - - uid: 10257 - components: - - type: Transform - pos: 33.5,-20.5 - parent: 1 - - uid: 10258 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 1 - - uid: 10259 - components: - - type: Transform - pos: 35.5,-20.5 - parent: 1 - - uid: 10261 - components: - - type: Transform - pos: 37.5,-13.5 - parent: 1 - - uid: 10262 - components: - - type: Transform - pos: 37.5,-14.5 - parent: 1 - - uid: 10263 - components: - - type: Transform - pos: 37.5,-15.5 - parent: 1 - - uid: 10264 - components: - - type: Transform - pos: 37.5,-16.5 - parent: 1 - - uid: 10265 - components: - - type: Transform - pos: 37.5,-17.5 - parent: 1 - - uid: 10266 - components: - - type: Transform - pos: 36.5,-15.5 - parent: 1 - - uid: 10267 - components: - - type: Transform - pos: 35.5,-15.5 - parent: 1 - - uid: 10268 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 1 - - uid: 10269 - components: - - type: Transform - pos: 34.5,-18.5 - parent: 1 - - uid: 10270 - components: - - type: Transform - pos: 31.5,-24.5 - parent: 1 - - uid: 10271 - components: - - type: Transform - pos: 32.5,-24.5 - parent: 1 - - uid: 10309 - components: - - type: Transform - pos: -41.5,7.5 - parent: 1 - - uid: 10310 - components: - - type: Transform - pos: -42.5,7.5 - parent: 1 - - uid: 10311 - components: - - type: Transform - pos: -43.5,7.5 - parent: 1 - - uid: 10312 - components: - - type: Transform - pos: -44.5,7.5 - parent: 1 - - uid: 10313 - components: - - type: Transform - pos: -44.5,8.5 - parent: 1 - - uid: 10314 - components: - - type: Transform - pos: -44.5,9.5 - parent: 1 - - uid: 10315 - components: - - type: Transform - pos: -43.5,9.5 - parent: 1 - - uid: 10316 - components: - - type: Transform - pos: -43.5,10.5 - parent: 1 - - uid: 10317 - components: - - type: Transform - pos: -43.5,11.5 - parent: 1 - - uid: 10318 - components: - - type: Transform - pos: -42.5,11.5 - parent: 1 - - uid: 10319 - components: - - type: Transform - pos: -40.5,7.5 - parent: 1 - - uid: 10320 - components: - - type: Transform - pos: -39.5,7.5 - parent: 1 - - uid: 10321 - components: - - type: Transform - pos: -38.5,7.5 - parent: 1 - - uid: 10322 - components: - - type: Transform - pos: -37.5,7.5 - parent: 1 - - uid: 10323 - components: - - type: Transform - pos: -36.5,7.5 - parent: 1 - - uid: 10324 - components: - - type: Transform - pos: -35.5,7.5 - parent: 1 - - uid: 10325 - components: - - type: Transform - pos: -34.5,7.5 - parent: 1 - - uid: 10326 - components: - - type: Transform - pos: -33.5,7.5 - parent: 1 - - uid: 10327 - components: - - type: Transform - pos: -33.5,6.5 - parent: 1 - - uid: 10328 - components: - - type: Transform - pos: -33.5,5.5 - parent: 1 - - uid: 10329 - components: - - type: Transform - pos: -33.5,4.5 - parent: 1 - - uid: 10330 - components: - - type: Transform - pos: -34.5,4.5 - parent: 1 - - uid: 10331 - components: - - type: Transform - pos: -35.5,4.5 - parent: 1 - - uid: 10332 - components: - - type: Transform - pos: -36.5,4.5 - parent: 1 - - uid: 10333 - components: - - type: Transform - pos: -37.5,4.5 - parent: 1 - - uid: 10334 - components: - - type: Transform - pos: -38.5,4.5 - parent: 1 - - uid: 10335 - components: - - type: Transform - pos: -39.5,4.5 - parent: 1 - - uid: 10336 - components: - - type: Transform - pos: -40.5,4.5 - parent: 1 - - uid: 10337 - components: - - type: Transform - pos: -40.5,5.5 - parent: 1 - - uid: 10338 - components: - - type: Transform - pos: -40.5,6.5 - parent: 1 - - uid: 10339 - components: - - type: Transform - pos: -40.5,3.5 - parent: 1 - - uid: 10340 - components: - - type: Transform - pos: -40.5,2.5 - parent: 1 - - uid: 10341 - components: - - type: Transform - pos: -40.5,1.5 - parent: 1 - - uid: 10342 - components: - - type: Transform - pos: -40.5,0.5 - parent: 1 - - uid: 10343 - components: - - type: Transform - pos: -40.5,-0.5 - parent: 1 - - uid: 10344 - components: - - type: Transform - pos: -40.5,-1.5 - parent: 1 - - uid: 10345 - components: - - type: Transform - pos: -40.5,-2.5 - parent: 1 - - uid: 10346 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 1 - - uid: 10347 - components: - - type: Transform - pos: -40.5,-4.5 - parent: 1 - - uid: 10348 - components: - - type: Transform - pos: -40.5,-5.5 - parent: 1 - - uid: 10349 - components: - - type: Transform - pos: -40.5,-6.5 - parent: 1 - - uid: 10350 - components: - - type: Transform - pos: -40.5,-7.5 - parent: 1 - - uid: 10351 - components: - - type: Transform - pos: -39.5,-1.5 - parent: 1 - - uid: 10352 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 1 - - uid: 10353 - components: - - type: Transform - pos: -37.5,-1.5 - parent: 1 - - uid: 10354 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 1 - - uid: 10355 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 1 - - uid: 10356 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 1 - - uid: 10357 - components: - - type: Transform - pos: -38.5,2.5 - parent: 1 - - uid: 10358 - components: - - type: Transform - pos: -37.5,2.5 - parent: 1 - - uid: 10359 - components: - - type: Transform - pos: -36.5,2.5 - parent: 1 - - uid: 10360 - components: - - type: Transform - pos: -35.5,2.5 - parent: 1 - - uid: 10361 - components: - - type: Transform - pos: -34.5,2.5 - parent: 1 - - uid: 10362 - components: - - type: Transform - pos: -39.5,2.5 - parent: 1 - - uid: 10363 - components: - - type: Transform - pos: -41.5,2.5 - parent: 1 - - uid: 10364 - components: - - type: Transform - pos: -42.5,2.5 - parent: 1 - - uid: 10365 - components: - - type: Transform - pos: -43.5,2.5 - parent: 1 - - uid: 10366 - components: - - type: Transform - pos: -42.5,4.5 - parent: 1 - - uid: 10367 - components: - - type: Transform - pos: -43.5,4.5 - parent: 1 - - uid: 10368 - components: - - type: Transform - pos: -41.5,4.5 - parent: 1 - - uid: 10369 - components: - - type: Transform - pos: -41.5,-1.5 - parent: 1 - - uid: 10370 - components: - - type: Transform - pos: -42.5,-1.5 - parent: 1 - - uid: 10371 - components: - - type: Transform - pos: -43.5,-1.5 - parent: 1 - - uid: 10372 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 1 - - uid: 10373 - components: - - type: Transform - pos: -42.5,-5.5 - parent: 1 - - uid: 10374 - components: - - type: Transform - pos: -43.5,-5.5 - parent: 1 - - uid: 10375 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 1 - - uid: 10376 - components: - - type: Transform - pos: -34.5,-3.5 - parent: 1 - - uid: 10377 - components: - - type: Transform - pos: -34.5,-4.5 - parent: 1 - - uid: 10378 - components: - - type: Transform - pos: -34.5,-5.5 - parent: 1 - - uid: 10379 - components: - - type: Transform - pos: -39.5,8.5 - parent: 1 - - uid: 10380 - components: - - type: Transform - pos: -39.5,9.5 - parent: 1 - - uid: 10381 - components: - - type: Transform - pos: -39.5,10.5 - parent: 1 - - uid: 10382 - components: - - type: Transform - pos: -39.5,11.5 - parent: 1 - - uid: 10443 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 1 - - uid: 10444 - components: - - type: Transform - pos: 17.5,-21.5 - parent: 1 - - uid: 10445 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 1 - - uid: 10446 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 1 - - uid: 10447 - components: - - type: Transform - pos: 17.5,-22.5 - parent: 1 - - uid: 10448 - components: - - type: Transform - pos: 17.5,-23.5 - parent: 1 - - uid: 10449 - components: - - type: Transform - pos: 17.5,-24.5 - parent: 1 - - uid: 10450 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 1 - - uid: 10451 - components: - - type: Transform - pos: 17.5,-26.5 - parent: 1 - - uid: 10452 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 1 - - uid: 10453 - components: - - type: Transform - pos: 18.5,-23.5 - parent: 1 - - uid: 10454 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 1 - - uid: 10455 - components: - - type: Transform - pos: 19.5,-22.5 - parent: 1 - - uid: 10456 - components: - - type: Transform - pos: 19.5,-24.5 - parent: 1 - - uid: 10457 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 1 - - uid: 10470 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 1 - - uid: 10471 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 1 - - uid: 10472 - components: - - type: Transform - pos: 5.5,-29.5 - parent: 1 - - uid: 10473 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 1 - - uid: 10474 - components: - - type: Transform - pos: 6.5,-28.5 - parent: 1 - - uid: 10475 - components: - - type: Transform - pos: 7.5,-28.5 - parent: 1 - - uid: 10476 - components: - - type: Transform - pos: 8.5,-28.5 - parent: 1 - - uid: 10477 - components: - - type: Transform - pos: 8.5,-29.5 - parent: 1 - - uid: 10478 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 1 - - uid: 10479 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 1 - - uid: 10480 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 1 - - uid: 10481 - components: - - type: Transform - pos: 7.5,-32.5 - parent: 1 - - uid: 10482 - components: - - type: Transform - pos: 7.5,-33.5 - parent: 1 - - uid: 10483 - components: - - type: Transform - pos: 7.5,-34.5 - parent: 1 - - uid: 10484 - components: - - type: Transform - pos: 7.5,-35.5 - parent: 1 - - uid: 10485 - components: - - type: Transform - pos: 7.5,-36.5 - parent: 1 - - uid: 10486 - components: - - type: Transform - pos: 7.5,-37.5 - parent: 1 - - uid: 10487 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 1 - - uid: 10488 - components: - - type: Transform - pos: 7.5,-39.5 - parent: 1 - - uid: 10489 - components: - - type: Transform - pos: 7.5,-40.5 - parent: 1 - - uid: 10490 - components: - - type: Transform - pos: 6.5,-36.5 - parent: 1 - - uid: 10491 - components: - - type: Transform - pos: 5.5,-36.5 - parent: 1 - - uid: 10492 - components: - - type: Transform - pos: 4.5,-36.5 - parent: 1 - - uid: 10493 - components: - - type: Transform - pos: 4.5,-37.5 - parent: 1 - - uid: 10494 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 1 - - uid: 10495 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 1 - - uid: 10496 - components: - - type: Transform - pos: 4.5,-40.5 - parent: 1 - - uid: 10497 - components: - - type: Transform - pos: 4.5,-41.5 - parent: 1 - - uid: 10498 - components: - - type: Transform - pos: 8.5,-36.5 - parent: 1 - - uid: 10499 - components: - - type: Transform - pos: 9.5,-36.5 - parent: 1 - - uid: 10500 - components: - - type: Transform - pos: 9.5,-37.5 - parent: 1 - - uid: 10501 - components: - - type: Transform - pos: 9.5,-38.5 - parent: 1 - - uid: 10502 - components: - - type: Transform - pos: 9.5,-39.5 - parent: 1 - - uid: 10503 - components: - - type: Transform - pos: 9.5,-40.5 - parent: 1 - - uid: 10504 - components: - - type: Transform - pos: 9.5,-41.5 - parent: 1 - - uid: 10505 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 1 - - uid: 10506 - components: - - type: Transform - pos: 9.5,-34.5 - parent: 1 - - uid: 10507 - components: - - type: Transform - pos: 10.5,-34.5 - parent: 1 - - uid: 10508 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 1 - - uid: 10509 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 1 - - uid: 10510 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 1 - - uid: 10511 - components: - - type: Transform - pos: 12.5,-36.5 - parent: 1 - - uid: 10512 - components: - - type: Transform - pos: 12.5,-37.5 - parent: 1 - - uid: 10513 - components: - - type: Transform - pos: 12.5,-38.5 - parent: 1 - - uid: 10514 - components: - - type: Transform - pos: 12.5,-39.5 - parent: 1 - - uid: 10515 - components: - - type: Transform - pos: 12.5,-40.5 - parent: 1 - - uid: 10516 - components: - - type: Transform - pos: 12.5,-41.5 - parent: 1 - - uid: 10517 - components: - - type: Transform - pos: 12.5,-42.5 - parent: 1 - - uid: 10518 - components: - - type: Transform - pos: 12.5,-43.5 - parent: 1 - - uid: 10519 - components: - - type: Transform - pos: 12.5,-44.5 - parent: 1 - - uid: 10520 - components: - - type: Transform - pos: 12.5,-45.5 - parent: 1 - - uid: 10521 - components: - - type: Transform - pos: 12.5,-46.5 - parent: 1 - - uid: 10522 - components: - - type: Transform - pos: 12.5,-47.5 - parent: 1 - - uid: 10523 - components: - - type: Transform - pos: 13.5,-34.5 - parent: 1 - - uid: 10524 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 1 - - uid: 10525 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 1 - - uid: 10526 - components: - - type: Transform - pos: 13.5,-31.5 - parent: 1 - - uid: 10527 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 1 - - uid: 10528 - components: - - type: Transform - pos: 13.5,-29.5 - parent: 1 - - uid: 10529 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 1 - - uid: 10530 - components: - - type: Transform - pos: 11.5,-29.5 - parent: 1 - - uid: 10531 - components: - - type: Transform - pos: 10.5,-29.5 - parent: 1 - - uid: 10532 - components: - - type: Transform - pos: 9.5,-29.5 - parent: 1 - - uid: 10533 - components: - - type: Transform - pos: 5.5,-29.5 - parent: 1 - - uid: 10534 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 1 - - uid: 10535 - components: - - type: Transform - pos: 4.5,-29.5 - parent: 1 - - uid: 10536 - components: - - type: Transform - pos: 4.5,-28.5 - parent: 1 - - uid: 10537 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 1 - - uid: 10538 - components: - - type: Transform - pos: 5.5,-33.5 - parent: 1 - - uid: 10539 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 1 - - uid: 10540 - components: - - type: Transform - pos: 6.5,-34.5 - parent: 1 - - uid: 10549 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 1 - - uid: 10550 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 1 - - uid: 10551 - components: - - type: Transform - pos: 10.5,-21.5 - parent: 1 - - uid: 10552 - components: - - type: Transform - pos: 10.5,-22.5 - parent: 1 - - uid: 10553 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 1 - - uid: 10554 - components: - - type: Transform - pos: 10.5,-24.5 - parent: 1 - - uid: 10555 - components: - - type: Transform - pos: 10.5,-25.5 - parent: 1 - - uid: 10556 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 1 - - uid: 10557 - components: - - type: Transform - pos: 11.5,-26.5 - parent: 1 - - uid: 10558 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 1 - - uid: 10559 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 1 - - uid: 10560 - components: - - type: Transform - pos: 13.5,-25.5 - parent: 1 - - uid: 10561 - components: - - type: Transform - pos: 13.5,-24.5 - parent: 1 - - uid: 10562 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 1 - - uid: 10563 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 1 - - uid: 10564 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 1 - - uid: 10565 - components: - - type: Transform - pos: 13.5,-20.5 - parent: 1 - - uid: 10566 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 1 - - uid: 10567 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 1 - - uid: 10568 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 1 - - uid: 10569 - components: - - type: Transform - pos: 11.5,-18.5 - parent: 1 - - uid: 10570 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 1 - - uid: 10571 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 1 - - uid: 10572 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 1 - - uid: 10573 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 1 - - uid: 10574 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 1 - - uid: 10575 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 1 - - uid: 10576 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 1 - - uid: 10577 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 1 - - uid: 10578 - components: - - type: Transform - pos: 4.5,-19.5 - parent: 1 - - uid: 10579 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 1 - - uid: 10580 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 1 - - uid: 10581 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 1 - - uid: 10582 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 1 - - uid: 10583 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 1 - - uid: 10584 - components: - - type: Transform - pos: 9.5,-24.5 - parent: 1 - - uid: 10585 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 1 - - uid: 10586 - components: - - type: Transform - pos: 7.5,-24.5 - parent: 1 - - uid: 10587 - components: - - type: Transform - pos: 6.5,-24.5 - parent: 1 - - uid: 10588 - components: - - type: Transform - pos: 5.5,-24.5 - parent: 1 - - uid: 10589 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 1 - - uid: 10590 - components: - - type: Transform - pos: 4.5,-25.5 - parent: 1 - - uid: 10591 - components: - - type: Transform - pos: 4.5,-26.5 - parent: 1 - - uid: 10592 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 1 - - uid: 10593 - components: - - type: Transform - pos: 6.5,-26.5 - parent: 1 - - uid: 10594 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 1 - - uid: 10596 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 1 - - uid: 10597 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 1 - - uid: 10598 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 1 - - uid: 10599 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 1 - - uid: 10600 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 1 - - uid: 10601 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 1 - - uid: 10602 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 1 - - uid: 10603 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 1 - - uid: 10604 - components: - - type: Transform - pos: 3.5,-12.5 - parent: 1 - - uid: 10605 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 1 - - uid: 10606 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 1 - - uid: 10607 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 1 - - uid: 10608 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 1 - - uid: 10609 - components: - - type: Transform - pos: 8.5,-12.5 - parent: 1 - - uid: 10610 - components: - - type: Transform - pos: 9.5,-12.5 - parent: 1 - - uid: 10611 - components: - - type: Transform - pos: 10.5,-12.5 - parent: 1 - - uid: 10612 - components: - - type: Transform - pos: 11.5,-12.5 - parent: 1 - - uid: 10613 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 1 - - uid: 10614 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 1 - - uid: 10615 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 1 - - uid: 10616 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 1 - - uid: 10617 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 1 - - uid: 10618 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 1 - - uid: 10619 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 1 - - uid: 10620 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 1 - - uid: 10621 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 1 - - uid: 10622 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 1 - - uid: 10623 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 1 - - uid: 10624 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 1 - - uid: 10625 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 1 - - uid: 10626 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 1 - - uid: 10627 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1 - - uid: 10628 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 1 - - uid: 10629 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 1 - - uid: 10630 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 1 - - uid: 10648 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 1 - - uid: 10649 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 1 - - uid: 10651 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 1 - - uid: 10652 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 1 - - uid: 10653 - components: - - type: Transform - pos: 19.5,-12.5 - parent: 1 - - uid: 10654 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 1 - - uid: 10655 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 1 - - uid: 10656 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 1 - - uid: 10657 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 1 - - uid: 10658 - components: - - type: Transform - pos: 19.5,-17.5 - parent: 1 - - uid: 10659 - components: - - type: Transform - pos: 19.5,-18.5 - parent: 1 - - uid: 10660 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 1 - - uid: 10661 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 1 - - uid: 10665 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 1 - - uid: 10666 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 1 - - uid: 10724 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 1 - - uid: 10725 - components: - - type: Transform - pos: -11.5,-37.5 - parent: 1 - - uid: 10726 - components: - - type: Transform - pos: -12.5,-37.5 - parent: 1 - - uid: 10727 - components: - - type: Transform - pos: -13.5,-37.5 - parent: 1 - - uid: 10728 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 1 - - uid: 10729 - components: - - type: Transform - pos: -13.5,-39.5 - parent: 1 - - uid: 10730 - components: - - type: Transform - pos: -13.5,-40.5 - parent: 1 - - uid: 10731 - components: - - type: Transform - pos: -13.5,-41.5 - parent: 1 - - uid: 10732 - components: - - type: Transform - pos: -13.5,-42.5 - parent: 1 - - uid: 10733 - components: - - type: Transform - pos: -13.5,-43.5 - parent: 1 - - uid: 10734 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 1 - - uid: 10735 - components: - - type: Transform - pos: -13.5,-45.5 - parent: 1 - - uid: 10736 - components: - - type: Transform - pos: -13.5,-46.5 - parent: 1 - - uid: 10737 - components: - - type: Transform - pos: -13.5,-47.5 - parent: 1 - - uid: 10738 - components: - - type: Transform - pos: -12.5,-47.5 - parent: 1 - - uid: 10739 - components: - - type: Transform - pos: -11.5,-47.5 - parent: 1 - - uid: 10740 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 1 - - uid: 10741 - components: - - type: Transform - pos: -9.5,-47.5 - parent: 1 - - uid: 10742 - components: - - type: Transform - pos: -8.5,-47.5 - parent: 1 - - uid: 10743 - components: - - type: Transform - pos: -7.5,-47.5 - parent: 1 - - uid: 10744 - components: - - type: Transform - pos: -6.5,-47.5 - parent: 1 - - uid: 10745 - components: - - type: Transform - pos: -5.5,-47.5 - parent: 1 - - uid: 10746 - components: - - type: Transform - pos: -4.5,-47.5 - parent: 1 - - uid: 10747 - components: - - type: Transform - pos: -3.5,-47.5 - parent: 1 - - uid: 10748 - components: - - type: Transform - pos: -10.5,-38.5 - parent: 1 - - uid: 10749 - components: - - type: Transform - pos: -9.5,-38.5 - parent: 1 - - uid: 10750 - components: - - type: Transform - pos: -8.5,-38.5 - parent: 1 - - uid: 10751 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 1 - - uid: 10752 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 1 - - uid: 10753 - components: - - type: Transform - pos: -5.5,-38.5 - parent: 1 - - uid: 10754 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 1 - - uid: 10755 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 1 - - uid: 10756 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 1 - - uid: 10757 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 1 - - uid: 10758 - components: - - type: Transform - pos: -4.5,-37.5 - parent: 1 - - uid: 10759 - components: - - type: Transform - pos: -4.5,-36.5 - parent: 1 - - uid: 10760 - components: - - type: Transform - pos: -4.5,-35.5 - parent: 1 - - uid: 10761 - components: - - type: Transform - pos: -4.5,-34.5 - parent: 1 - - uid: 10762 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 1 - - uid: 10763 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 1 - - uid: 10764 - components: - - type: Transform - pos: -4.5,-31.5 - parent: 1 - - uid: 10765 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 1 - - uid: 10766 - components: - - type: Transform - pos: -4.5,-29.5 - parent: 1 - - uid: 10767 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 1 - - uid: 10768 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 1 - - uid: 10769 - components: - - type: Transform - pos: -4.5,-26.5 - parent: 1 - - uid: 10770 - components: - - type: Transform - pos: -4.5,-25.5 - parent: 1 - - uid: 10771 - components: - - type: Transform - pos: -4.5,-24.5 - parent: 1 - - uid: 10772 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 1 - - uid: 10773 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 1 - - uid: 10774 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 1 - - uid: 10775 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 1 - - uid: 10776 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 1 - - uid: 10777 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 1 - - uid: 10778 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 1 - - uid: 10779 - components: - - type: Transform - pos: -2.5,-18.5 - parent: 1 - - uid: 10780 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 1 - - uid: 10781 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 1 - - uid: 10782 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 1 - - uid: 10783 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 1 - - uid: 10784 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 1 - - uid: 10785 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 1 - - uid: 10786 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 1 - - uid: 10787 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 1 - - uid: 10788 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 1 - - uid: 10789 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 1 - - uid: 10790 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 1 - - uid: 10791 - components: - - type: Transform - pos: 1.5,-26.5 - parent: 1 - - uid: 10792 - components: - - type: Transform - pos: 1.5,-27.5 - parent: 1 - - uid: 10793 - components: - - type: Transform - pos: 1.5,-28.5 - parent: 1 - - uid: 10794 - components: - - type: Transform - pos: 1.5,-29.5 - parent: 1 - - uid: 10795 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 1 - - uid: 10796 - components: - - type: Transform - pos: 1.5,-31.5 - parent: 1 - - uid: 10797 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 1 - - uid: 10798 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 1 - - uid: 10799 - components: - - type: Transform - pos: 1.5,-34.5 - parent: 1 - - uid: 10800 - components: - - type: Transform - pos: 1.5,-35.5 - parent: 1 - - uid: 10801 - components: - - type: Transform - pos: 1.5,-36.5 - parent: 1 - - uid: 10802 - components: - - type: Transform - pos: 1.5,-37.5 - parent: 1 - - uid: 10803 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 1 - - uid: 10804 - components: - - type: Transform - pos: 1.5,-39.5 - parent: 1 - - uid: 10805 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 1 - - uid: 10806 - components: - - type: Transform - pos: 1.5,-41.5 - parent: 1 - - uid: 10807 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 1 - - uid: 10808 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 1 - - uid: 10809 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 1 - - uid: 10810 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 1 - - uid: 10811 - components: - - type: Transform - pos: -11.5,-36.5 - parent: 1 - - uid: 10812 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 1 - - uid: 10813 - components: - - type: Transform - pos: -11.5,-34.5 - parent: 1 - - uid: 10814 - components: - - type: Transform - pos: -11.5,-33.5 - parent: 1 - - uid: 10815 - components: - - type: Transform - pos: -11.5,-32.5 - parent: 1 - - uid: 10816 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 1 - - uid: 10817 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 1 - - uid: 10818 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 1 - - uid: 10819 - components: - - type: Transform - pos: -11.5,-28.5 - parent: 1 - - uid: 10820 - components: - - type: Transform - pos: -11.5,-27.5 - parent: 1 - - uid: 10821 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 1 - - uid: 10822 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 1 - - uid: 10823 - components: - - type: Transform - pos: -11.5,-24.5 - parent: 1 - - uid: 10824 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 1 - - uid: 10825 - components: - - type: Transform - pos: -11.5,-22.5 - parent: 1 - - uid: 10826 - components: - - type: Transform - pos: -11.5,-21.5 - parent: 1 - - uid: 10827 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 1 - - uid: 10828 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 1 - - uid: 10829 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 1 - - uid: 10830 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 1 - - uid: 10831 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 1 - - uid: 10832 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 1 - - uid: 10833 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 1 - - uid: 10834 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 1 - - uid: 10835 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 1 - - uid: 10836 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 1 - - uid: 10837 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 1 - - uid: 10838 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 1 - - uid: 10839 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 1 - - uid: 10840 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 1 - - uid: 10841 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 1 - - uid: 10842 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 1 - - uid: 10843 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 1 - - uid: 10844 - components: - - type: Transform - pos: -1.5,-12.5 - parent: 1 - - uid: 10845 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 1 - - uid: 10846 - components: - - type: Transform - pos: -9.5,-12.5 - parent: 1 - - uid: 10847 - components: - - type: Transform - pos: -10.5,-12.5 - parent: 1 - - uid: 10848 - components: - - type: Transform - pos: -11.5,-12.5 - parent: 1 - - uid: 10849 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 1 - - uid: 10850 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 1 - - uid: 10851 - components: - - type: Transform - pos: -14.5,-12.5 - parent: 1 - - uid: 10852 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 1 - - uid: 10853 - components: - - type: Transform - pos: -14.5,-14.5 - parent: 1 - - uid: 10854 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 1 - - uid: 10855 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 1 - - uid: 10856 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 1 - - uid: 10857 - components: - - type: Transform - pos: -11.5,-15.5 - parent: 1 - - uid: 10858 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 1 - - uid: 10859 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 1 - - uid: 10860 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 1 - - uid: 10861 - components: - - type: Transform - pos: -12.5,-16.5 - parent: 1 - - uid: 10862 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 1 - - uid: 10863 - components: - - type: Transform - pos: -12.5,-18.5 - parent: 1 - - uid: 10864 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 1 - - uid: 10865 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 1 - - uid: 10866 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 1 - - uid: 10867 - components: - - type: Transform - pos: -11.5,-18.5 - parent: 1 - - uid: 10868 - components: - - type: Transform - pos: -10.5,-18.5 - parent: 1 - - uid: 10971 - components: - - type: Transform - pos: -24.5,36.5 - parent: 1 - - uid: 10992 - components: - - type: Transform - pos: 44.5,-6.5 - parent: 1 - - uid: 10993 - components: - - type: Transform - pos: 45.5,-6.5 - parent: 1 - - uid: 10994 - components: - - type: Transform - pos: 46.5,-6.5 - parent: 1 - - uid: 10995 - components: - - type: Transform - pos: 47.5,-6.5 - parent: 1 - - uid: 10996 - components: - - type: Transform - pos: 48.5,-6.5 - parent: 1 - - uid: 10997 - components: - - type: Transform - pos: 49.5,-6.5 - parent: 1 - - uid: 10998 - components: - - type: Transform - pos: 49.5,-7.5 - parent: 1 - - uid: 11001 - components: - - type: Transform - pos: 49.5,-8.5 - parent: 1 - - uid: 11002 - components: - - type: Transform - pos: 49.5,-9.5 - parent: 1 - - uid: 11005 - components: - - type: Transform - pos: 48.5,-9.5 - parent: 1 - - uid: 11006 - components: - - type: Transform - pos: 47.5,-9.5 - parent: 1 - - uid: 11007 - components: - - type: Transform - pos: 46.5,-9.5 - parent: 1 - - uid: 11008 - components: - - type: Transform - pos: 45.5,-9.5 - parent: 1 - - uid: 11009 - components: - - type: Transform - pos: 44.5,-9.5 - parent: 1 - - uid: 11010 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 1 - - uid: 11011 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 1 - - uid: 11012 - components: - - type: Transform - pos: 41.5,-9.5 - parent: 1 - - uid: 11013 - components: - - type: Transform - pos: 40.5,-9.5 - parent: 1 - - uid: 11014 - components: - - type: Transform - pos: 39.5,-9.5 - parent: 1 - - uid: 11015 - components: - - type: Transform - pos: 38.5,-9.5 - parent: 1 - - uid: 11016 - components: - - type: Transform - pos: 37.5,-9.5 - parent: 1 - - uid: 11017 - components: - - type: Transform - pos: 36.5,-9.5 - parent: 1 - - uid: 11018 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 1 - - uid: 11019 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 1 - - uid: 11020 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 1 - - uid: 11021 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 1 - - uid: 11022 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 1 - - uid: 11023 - components: - - type: Transform - pos: 34.5,-7.5 - parent: 1 - - uid: 11024 - components: - - type: Transform - pos: 35.5,-7.5 - parent: 1 - - uid: 11025 - components: - - type: Transform - pos: 36.5,-7.5 - parent: 1 - - uid: 11026 - components: - - type: Transform - pos: 37.5,-7.5 - parent: 1 - - uid: 11027 - components: - - type: Transform - pos: 38.5,-7.5 - parent: 1 - - uid: 11028 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 1 - - uid: 11029 - components: - - type: Transform - pos: 40.5,-7.5 - parent: 1 - - uid: 11030 - components: - - type: Transform - pos: 41.5,-7.5 - parent: 1 - - uid: 11031 - components: - - type: Transform - pos: 42.5,-7.5 - parent: 1 - - uid: 11032 - components: - - type: Transform - pos: 43.5,-7.5 - parent: 1 - - uid: 11033 - components: - - type: Transform - pos: 44.5,-7.5 - parent: 1 - - uid: 11110 - components: - - type: Transform - pos: 23.5,-3.5 - parent: 1 - - uid: 11111 - components: - - type: Transform - pos: 22.5,-3.5 - parent: 1 - - uid: 11112 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 1 - - uid: 11113 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 1 - - uid: 11114 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 1 - - uid: 11115 - components: - - type: Transform - pos: 18.5,-3.5 - parent: 1 - - uid: 11116 - components: - - type: Transform - pos: 17.5,-3.5 - parent: 1 - - uid: 11117 - components: - - type: Transform - pos: 16.5,-3.5 - parent: 1 - - uid: 11118 - components: - - type: Transform - pos: 18.5,-2.5 - parent: 1 - - uid: 11119 - components: - - type: Transform - pos: 18.5,-1.5 - parent: 1 - - uid: 11120 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1 - - uid: 11121 - components: - - type: Transform - pos: 18.5,0.5 - parent: 1 - - uid: 11122 - components: - - type: Transform - pos: 18.5,1.5 - parent: 1 - - uid: 11123 - components: - - type: Transform - pos: 18.5,2.5 - parent: 1 - - uid: 11124 - components: - - type: Transform - pos: 18.5,-4.5 - parent: 1 - - uid: 11125 - components: - - type: Transform - pos: 18.5,-5.5 - parent: 1 - - uid: 11126 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 1 - - uid: 11127 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 1 - - uid: 11128 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 1 - - uid: 11129 - components: - - type: Transform - pos: 19.5,-8.5 - parent: 1 - - uid: 11130 - components: - - type: Transform - pos: 19.5,-9.5 - parent: 1 - - uid: 11131 - components: - - type: Transform - pos: 20.5,-9.5 - parent: 1 - - uid: 11132 - components: - - type: Transform - pos: 21.5,-9.5 - parent: 1 - - uid: 11133 - components: - - type: Transform - pos: 22.5,-9.5 - parent: 1 - - uid: 11134 - components: - - type: Transform - pos: 23.5,-9.5 - parent: 1 - - uid: 11135 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 1 - - uid: 11136 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 1 - - uid: 11137 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 1 - - uid: 11138 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 1 - - uid: 11139 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 1 - - uid: 11140 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 1 - - uid: 11141 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 1 - - uid: 11142 - components: - - type: Transform - pos: 31.5,-9.5 - parent: 1 - - uid: 11143 - components: - - type: Transform - pos: 31.5,-8.5 - parent: 1 - - uid: 11144 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 1 - - uid: 11145 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 1 - - uid: 11146 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 1 - - uid: 11147 - components: - - type: Transform - pos: 31.5,-4.5 - parent: 1 - - uid: 11148 - components: - - type: Transform - pos: 31.5,-3.5 - parent: 1 - - uid: 11149 - components: - - type: Transform - pos: 31.5,-2.5 - parent: 1 - - uid: 11150 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 1 - - uid: 11151 - components: - - type: Transform - pos: 31.5,-0.5 - parent: 1 - - uid: 11152 - components: - - type: Transform - pos: 31.5,0.5 - parent: 1 - - uid: 11153 - components: - - type: Transform - pos: 32.5,0.5 - parent: 1 - - uid: 11154 - components: - - type: Transform - pos: 33.5,0.5 - parent: 1 - - uid: 11155 - components: - - type: Transform - pos: 34.5,0.5 - parent: 1 - - uid: 11156 - components: - - type: Transform - pos: 25.5,-8.5 - parent: 1 - - uid: 11157 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 1 - - uid: 11158 - components: - - type: Transform - pos: 25.5,-6.5 - parent: 1 - - uid: 11159 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 1 - - uid: 11160 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 1 - - uid: 11161 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 1 - - uid: 11162 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 1 - - uid: 11163 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 1 - - uid: 11164 - components: - - type: Transform - pos: 25.5,-1.5 - parent: 1 - - uid: 11165 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 1 - - uid: 11166 - components: - - type: Transform - pos: 25.5,0.5 - parent: 1 - - uid: 11167 - components: - - type: Transform - pos: 26.5,0.5 - parent: 1 - - uid: 11168 - components: - - type: Transform - pos: 27.5,0.5 - parent: 1 - - uid: 11169 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 1 - - uid: 11170 - components: - - type: Transform - pos: 27.5,-1.5 - parent: 1 - - uid: 11171 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 1 - - uid: 11172 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 1 - - uid: 11173 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 1 - - uid: 11174 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 1 - - uid: 11175 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 1 - - uid: 11176 - components: - - type: Transform - pos: 22.5,5.5 - parent: 1 - - uid: 11177 - components: - - type: Transform - pos: 23.5,5.5 - parent: 1 - - uid: 11178 - components: - - type: Transform - pos: 24.5,5.5 - parent: 1 - - uid: 11179 - components: - - type: Transform - pos: 25.5,5.5 - parent: 1 - - uid: 11180 - components: - - type: Transform - pos: 25.5,4.5 - parent: 1 - - uid: 11181 - components: - - type: Transform - pos: 25.5,3.5 - parent: 1 - - uid: 11182 - components: - - type: Transform - pos: 25.5,2.5 - parent: 1 - - uid: 11183 - components: - - type: Transform - pos: 24.5,2.5 - parent: 1 - - uid: 11184 - components: - - type: Transform - pos: 23.5,2.5 - parent: 1 - - uid: 11185 - components: - - type: Transform - pos: 22.5,2.5 - parent: 1 - - uid: 11186 - components: - - type: Transform - pos: 21.5,2.5 - parent: 1 - - uid: 11187 - components: - - type: Transform - pos: 21.5,3.5 - parent: 1 - - uid: 11188 - components: - - type: Transform - pos: 21.5,4.5 - parent: 1 - - uid: 11189 - components: - - type: Transform - pos: 21.5,5.5 - parent: 1 - - uid: 11190 - components: - - type: Transform - pos: 21.5,6.5 - parent: 1 - - uid: 11191 - components: - - type: Transform - pos: 21.5,7.5 - parent: 1 - - uid: 11192 - components: - - type: Transform - pos: 21.5,8.5 - parent: 1 - - uid: 11193 - components: - - type: Transform - pos: 20.5,8.5 - parent: 1 - - uid: 11194 - components: - - type: Transform - pos: 19.5,8.5 - parent: 1 - - uid: 11195 - components: - - type: Transform - pos: 18.5,8.5 - parent: 1 - - uid: 11196 - components: - - type: Transform - pos: 18.5,9.5 - parent: 1 - - uid: 11197 - components: - - type: Transform - pos: 18.5,10.5 - parent: 1 - - uid: 11198 - components: - - type: Transform - pos: 18.5,11.5 - parent: 1 - - uid: 11199 - components: - - type: Transform - pos: 21.5,1.5 - parent: 1 - - uid: 11200 - components: - - type: Transform - pos: 23.5,6.5 - parent: 1 - - uid: 11201 - components: - - type: Transform - pos: 23.5,7.5 - parent: 1 - - uid: 11202 - components: - - type: Transform - pos: 23.5,8.5 - parent: 1 - - uid: 11203 - components: - - type: Transform - pos: 23.5,9.5 - parent: 1 - - uid: 11204 - components: - - type: Transform - pos: 23.5,10.5 - parent: 1 - - uid: 11205 - components: - - type: Transform - pos: 24.5,10.5 - parent: 1 - - uid: 11206 - components: - - type: Transform - pos: 25.5,10.5 - parent: 1 - - uid: 11207 - components: - - type: Transform - pos: 26.5,10.5 - parent: 1 - - uid: 11208 - components: - - type: Transform - pos: 27.5,10.5 - parent: 1 - - uid: 11209 - components: - - type: Transform - pos: 28.5,10.5 - parent: 1 - - uid: 11210 - components: - - type: Transform - pos: 29.5,10.5 - parent: 1 - - uid: 11211 - components: - - type: Transform - pos: 30.5,10.5 - parent: 1 - - uid: 11212 - components: - - type: Transform - pos: 31.5,10.5 - parent: 1 - - uid: 11213 - components: - - type: Transform - pos: 32.5,10.5 - parent: 1 - - uid: 11214 - components: - - type: Transform - pos: 32.5,9.5 - parent: 1 - - uid: 11215 - components: - - type: Transform - pos: 32.5,8.5 - parent: 1 - - uid: 11216 - components: - - type: Transform - pos: 32.5,7.5 - parent: 1 - - uid: 11218 - components: - - type: Transform - pos: 32.5,5.5 - parent: 1 - - uid: 11219 - components: - - type: Transform - pos: 32.5,4.5 - parent: 1 - - uid: 11220 - components: - - type: Transform - pos: 32.5,3.5 - parent: 1 - - uid: 11221 - components: - - type: Transform - pos: 33.5,3.5 - parent: 1 - - uid: 11222 - components: - - type: Transform - pos: 34.5,3.5 - parent: 1 - - uid: 11223 - components: - - type: Transform - pos: 31.5,3.5 - parent: 1 - - uid: 11224 - components: - - type: Transform - pos: 30.5,3.5 - parent: 1 - - uid: 11225 - components: - - type: Transform - pos: 29.5,3.5 - parent: 1 - - uid: 11226 - components: - - type: Transform - pos: 28.5,3.5 - parent: 1 - - uid: 11227 - components: - - type: Transform - pos: 27.5,3.5 - parent: 1 - - uid: 11228 - components: - - type: Transform - pos: 26.5,3.5 - parent: 1 - - uid: 11229 - components: - - type: Transform - pos: 25.5,3.5 - parent: 1 - - uid: 11230 - components: - - type: Transform - pos: 26.5,4.5 - parent: 1 - - uid: 11231 - components: - - type: Transform - pos: 26.5,6.5 - parent: 1 - - uid: 11232 - components: - - type: Transform - pos: 26.5,5.5 - parent: 1 - - uid: 11233 - components: - - type: Transform - pos: 24.5,3.5 - parent: 1 - - uid: 11234 - components: - - type: Transform - pos: 23.5,3.5 - parent: 1 - - uid: 11245 - components: - - type: Transform - pos: 16.5,9.5 - parent: 1 - - uid: 11246 - components: - - type: Transform - pos: 15.5,9.5 - parent: 1 - - uid: 11247 - components: - - type: Transform - pos: 14.5,9.5 - parent: 1 - - uid: 11248 - components: - - type: Transform - pos: 13.5,9.5 - parent: 1 - - uid: 11249 - components: - - type: Transform - pos: 12.5,9.5 - parent: 1 - - uid: 11250 - components: - - type: Transform - pos: 11.5,9.5 - parent: 1 - - uid: 11251 - components: - - type: Transform - pos: 10.5,9.5 - parent: 1 - - uid: 11252 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1 - - uid: 11253 - components: - - type: Transform - pos: 8.5,9.5 - parent: 1 - - uid: 11254 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1 - - uid: 11255 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1 - - uid: 11256 - components: - - type: Transform - pos: 5.5,9.5 - parent: 1 - - uid: 11257 - components: - - type: Transform - pos: 5.5,10.5 - parent: 1 - - uid: 11258 - components: - - type: Transform - pos: 5.5,11.5 - parent: 1 - - uid: 11259 - components: - - type: Transform - pos: 6.5,11.5 - parent: 1 - - uid: 11260 - components: - - type: Transform - pos: 7.5,11.5 - parent: 1 - - uid: 11261 - components: - - type: Transform - pos: 8.5,11.5 - parent: 1 - - uid: 11262 - components: - - type: Transform - pos: 9.5,11.5 - parent: 1 - - uid: 11263 - components: - - type: Transform - pos: 10.5,11.5 - parent: 1 - - uid: 11264 - components: - - type: Transform - pos: 11.5,11.5 - parent: 1 - - uid: 11265 - components: - - type: Transform - pos: 11.5,10.5 - parent: 1 - - uid: 11266 - components: - - type: Transform - pos: 11.5,8.5 - parent: 1 - - uid: 11267 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1 - - uid: 11268 - components: - - type: Transform - pos: 11.5,6.5 - parent: 1 - - uid: 11269 - components: - - type: Transform - pos: 11.5,5.5 - parent: 1 - - uid: 11270 - components: - - type: Transform - pos: 11.5,4.5 - parent: 1 - - uid: 11271 - components: - - type: Transform - pos: 11.5,3.5 - parent: 1 - - uid: 11272 - components: - - type: Transform - pos: 10.5,5.5 - parent: 1 - - uid: 11273 - components: - - type: Transform - pos: 9.5,5.5 - parent: 1 - - uid: 11274 - components: - - type: Transform - pos: 8.5,5.5 - parent: 1 - - uid: 11275 - components: - - type: Transform - pos: 7.5,5.5 - parent: 1 - - uid: 11276 - components: - - type: Transform - pos: 6.5,5.5 - parent: 1 - - uid: 11277 - components: - - type: Transform - pos: 5.5,5.5 - parent: 1 - - uid: 11278 - components: - - type: Transform - pos: 5.5,6.5 - parent: 1 - - uid: 11279 - components: - - type: Transform - pos: 5.5,7.5 - parent: 1 - - uid: 11280 - components: - - type: Transform - pos: 5.5,8.5 - parent: 1 - - uid: 11289 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 1 - - uid: 11290 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 1 - - uid: 11291 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 1 - - uid: 11292 - components: - - type: Transform - pos: 14.5,0.5 - parent: 1 - - uid: 11293 - components: - - type: Transform - pos: 14.5,1.5 - parent: 1 - - uid: 11294 - components: - - type: Transform - pos: 14.5,2.5 - parent: 1 - - uid: 11295 - components: - - type: Transform - pos: 14.5,3.5 - parent: 1 - - uid: 11296 - components: - - type: Transform - pos: 14.5,4.5 - parent: 1 - - uid: 11297 - components: - - type: Transform - pos: 14.5,5.5 - parent: 1 - - uid: 11298 - components: - - type: Transform - pos: 14.5,6.5 - parent: 1 - - uid: 11299 - components: - - type: Transform - pos: 15.5,6.5 - parent: 1 - - uid: 11300 - components: - - type: Transform - pos: 16.5,6.5 - parent: 1 - - uid: 11301 - components: - - type: Transform - pos: 17.5,6.5 - parent: 1 - - uid: 11302 - components: - - type: Transform - pos: 18.5,6.5 - parent: 1 - - uid: 11303 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 1 - - uid: 11304 - components: - - type: Transform - pos: 14.5,-3.5 - parent: 1 - - uid: 11305 - components: - - type: Transform - pos: 14.5,-4.5 - parent: 1 - - uid: 11306 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 1 - - uid: 11307 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 1 - - uid: 11308 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 1 - - uid: 11309 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 1 - - uid: 11310 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 1 - - uid: 11311 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 1 - - uid: 11312 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 1 - - uid: 11313 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 1 - - uid: 11314 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 1 - - uid: 11315 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 1 - - uid: 11316 - components: - - type: Transform - pos: 5.5,0.5 - parent: 1 - - uid: 11317 - components: - - type: Transform - pos: 5.5,1.5 - parent: 1 - - uid: 11318 - components: - - type: Transform - pos: 5.5,2.5 - parent: 1 - - uid: 11319 - components: - - type: Transform - pos: 6.5,2.5 - parent: 1 - - uid: 11320 - components: - - type: Transform - pos: 7.5,2.5 - parent: 1 - - uid: 11321 - components: - - type: Transform - pos: 8.5,2.5 - parent: 1 - - uid: 11322 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1 - - uid: 11323 - components: - - type: Transform - pos: 8.5,0.5 - parent: 1 - - uid: 11324 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1 - - uid: 11325 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 1 - - uid: 11326 - components: - - type: Transform - pos: 11.5,0.5 - parent: 1 - - uid: 11327 - components: - - type: Transform - pos: 11.5,1.5 - parent: 1 - - uid: 11328 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 1 - - uid: 11329 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 1 - - uid: 11330 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 1 - - uid: 11331 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 1 - - uid: 11332 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 1 - - uid: 11333 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 1 - - uid: 11334 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 1 - - uid: 11335 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 1 - - uid: 11336 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 1 - - uid: 11337 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 1 - - uid: 11338 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 1 - - uid: 11425 - components: - - type: Transform - pos: 6.5,75.5 - parent: 1 - - uid: 11426 - components: - - type: Transform - pos: 6.5,74.5 - parent: 1 - - uid: 11427 - components: - - type: Transform - pos: 6.5,73.5 - parent: 1 - - uid: 11428 - components: - - type: Transform - pos: 6.5,72.5 - parent: 1 - - uid: 11429 - components: - - type: Transform - pos: 6.5,71.5 - parent: 1 - - uid: 11430 - components: - - type: Transform - pos: 6.5,70.5 - parent: 1 - - uid: 11431 - components: - - type: Transform - pos: 7.5,74.5 - parent: 1 - - uid: 11432 - components: - - type: Transform - pos: 8.5,74.5 - parent: 1 - - uid: 11433 - components: - - type: Transform - pos: 8.5,73.5 - parent: 1 - - uid: 11434 - components: - - type: Transform - pos: 8.5,72.5 - parent: 1 - - uid: 11435 - components: - - type: Transform - pos: 5.5,74.5 - parent: 1 - - uid: 11436 - components: - - type: Transform - pos: 4.5,74.5 - parent: 1 - - uid: 11437 - components: - - type: Transform - pos: 3.5,74.5 - parent: 1 - - uid: 11438 - components: - - type: Transform - pos: 2.5,74.5 - parent: 1 - - uid: 11439 - components: - - type: Transform - pos: 1.5,74.5 - parent: 1 - - uid: 11440 - components: - - type: Transform - pos: 2.5,75.5 - parent: 1 - - uid: 11441 - components: - - type: Transform - pos: 3.5,75.5 - parent: 1 - - uid: 11442 - components: - - type: Transform - pos: 1.5,73.5 - parent: 1 - - uid: 11443 - components: - - type: Transform - pos: 1.5,72.5 - parent: 1 - - uid: 11444 - components: - - type: Transform - pos: 1.5,71.5 - parent: 1 - - uid: 11445 - components: - - type: Transform - pos: 1.5,70.5 - parent: 1 - - uid: 11446 - components: - - type: Transform - pos: 1.5,69.5 - parent: 1 - - uid: 11447 - components: - - type: Transform - pos: 2.5,69.5 - parent: 1 - - uid: 11448 - components: - - type: Transform - pos: 3.5,69.5 - parent: 1 - - uid: 11449 - components: - - type: Transform - pos: 4.5,69.5 - parent: 1 - - uid: 11450 - components: - - type: Transform - pos: 5.5,69.5 - parent: 1 - - uid: 11451 - components: - - type: Transform - pos: 6.5,69.5 - parent: 1 - - uid: 11452 - components: - - type: Transform - pos: 7.5,69.5 - parent: 1 - - uid: 11453 - components: - - type: Transform - pos: 8.5,69.5 - parent: 1 - - uid: 11454 - components: - - type: Transform - pos: 8.5,70.5 - parent: 1 - - uid: 11455 - components: - - type: Transform - pos: 8.5,71.5 - parent: 1 - - uid: 11456 - components: - - type: Transform - pos: 8.5,68.5 - parent: 1 - - uid: 11457 - components: - - type: Transform - pos: 9.5,68.5 - parent: 1 - - uid: 11458 - components: - - type: Transform - pos: 10.5,68.5 - parent: 1 - - uid: 11459 - components: - - type: Transform - pos: 11.5,68.5 - parent: 1 - - uid: 11460 - components: - - type: Transform - pos: 12.5,68.5 - parent: 1 - - uid: 11461 - components: - - type: Transform - pos: 12.5,69.5 - parent: 1 - - uid: 11462 - components: - - type: Transform - pos: 12.5,70.5 - parent: 1 - - uid: 11463 - components: - - type: Transform - pos: 12.5,67.5 - parent: 1 - - uid: 11464 - components: - - type: Transform - pos: 12.5,66.5 - parent: 1 - - uid: 11465 - components: - - type: Transform - pos: 7.5,68.5 - parent: 1 - - uid: 11466 - components: - - type: Transform - pos: 6.5,68.5 - parent: 1 - - uid: 11467 - components: - - type: Transform - pos: 5.5,68.5 - parent: 1 - - uid: 11468 - components: - - type: Transform - pos: 4.5,68.5 - parent: 1 - - uid: 11469 - components: - - type: Transform - pos: 3.5,68.5 - parent: 1 - - uid: 11470 - components: - - type: Transform - pos: 2.5,68.5 - parent: 1 - - uid: 11471 - components: - - type: Transform - pos: 1.5,68.5 - parent: 1 - - uid: 11472 - components: - - type: Transform - pos: 0.5,68.5 - parent: 1 - - uid: 11473 - components: - - type: Transform - pos: -0.5,68.5 - parent: 1 - - uid: 11474 - components: - - type: Transform - pos: -1.5,68.5 - parent: 1 - - uid: 11475 - components: - - type: Transform - pos: -1.5,69.5 - parent: 1 - - uid: 11476 - components: - - type: Transform - pos: -1.5,70.5 - parent: 1 - - uid: 11477 - components: - - type: Transform - pos: -1.5,71.5 - parent: 1 - - uid: 11478 - components: - - type: Transform - pos: -1.5,72.5 - parent: 1 - - uid: 11479 - components: - - type: Transform - pos: -1.5,73.5 - parent: 1 - - uid: 11480 - components: - - type: Transform - pos: -1.5,74.5 - parent: 1 - - uid: 11481 - components: - - type: Transform - pos: 0.5,69.5 - parent: 1 - - uid: 11482 - components: - - type: Transform - pos: 0.5,70.5 - parent: 1 - - uid: 11483 - components: - - type: Transform - pos: 0.5,71.5 - parent: 1 - - uid: 11484 - components: - - type: Transform - pos: 0.5,72.5 - parent: 1 - - uid: 11485 - components: - - type: Transform - pos: 0.5,73.5 - parent: 1 - - uid: 11486 - components: - - type: Transform - pos: 0.5,74.5 - parent: 1 - - uid: 11487 - components: - - type: Transform - pos: -3.5,75.5 - parent: 1 - - uid: 11488 - components: - - type: Transform - pos: -3.5,76.5 - parent: 1 - - uid: 11489 - components: - - type: Transform - pos: 0.5,77.5 - parent: 1 - - uid: 11490 - components: - - type: Transform - pos: 1.5,77.5 - parent: 1 - - uid: 11491 - components: - - type: Transform - pos: 2.5,77.5 - parent: 1 - - uid: 11492 - components: - - type: Transform - pos: 3.5,77.5 - parent: 1 - - uid: 11493 - components: - - type: Transform - pos: 4.5,77.5 - parent: 1 - - uid: 11494 - components: - - type: Transform - pos: 5.5,77.5 - parent: 1 - - uid: 11495 - components: - - type: Transform - pos: -0.5,77.5 - parent: 1 - - uid: 11496 - components: - - type: Transform - pos: -1.5,77.5 - parent: 1 - - uid: 11497 - components: - - type: Transform - pos: -2.5,77.5 - parent: 1 - - uid: 11498 - components: - - type: Transform - pos: -3.5,77.5 - parent: 1 - - uid: 11499 - components: - - type: Transform - pos: 7.5,76.5 - parent: 1 - - uid: 11500 - components: - - type: Transform - pos: 6.5,77.5 - parent: 1 - - uid: 11501 - components: - - type: Transform - pos: -4.5,77.5 - parent: 1 - - uid: 11502 - components: - - type: Transform - pos: -5.5,77.5 - parent: 1 - - uid: 11503 - components: - - type: Transform - pos: -6.5,77.5 - parent: 1 - - uid: 11504 - components: - - type: Transform - pos: -7.5,77.5 - parent: 1 - - uid: 11505 - components: - - type: Transform - pos: -8.5,77.5 - parent: 1 - - uid: 11506 - components: - - type: Transform - pos: -5.5,78.5 - parent: 1 - - uid: 11507 - components: - - type: Transform - pos: -5.5,79.5 - parent: 1 - - uid: 11508 - components: - - type: Transform - pos: -5.5,80.5 - parent: 1 - - uid: 11509 - components: - - type: Transform - pos: -5.5,81.5 - parent: 1 - - uid: 11510 - components: - - type: Transform - pos: -5.5,82.5 - parent: 1 - - uid: 11511 - components: - - type: Transform - pos: 4.5,78.5 - parent: 1 - - uid: 11512 - components: - - type: Transform - pos: 4.5,79.5 - parent: 1 - - uid: 11513 - components: - - type: Transform - pos: 4.5,80.5 - parent: 1 - - uid: 11514 - components: - - type: Transform - pos: 4.5,81.5 - parent: 1 - - uid: 11515 - components: - - type: Transform - pos: 4.5,82.5 - parent: 1 - - uid: 11516 - components: - - type: Transform - pos: 3.5,81.5 - parent: 1 - - uid: 11517 - components: - - type: Transform - pos: 2.5,81.5 - parent: 1 - - uid: 11518 - components: - - type: Transform - pos: 1.5,81.5 - parent: 1 - - uid: 11519 - components: - - type: Transform - pos: 0.5,81.5 - parent: 1 - - uid: 11520 - components: - - type: Transform - pos: -0.5,81.5 - parent: 1 - - uid: 11521 - components: - - type: Transform - pos: -1.5,81.5 - parent: 1 - - uid: 11522 - components: - - type: Transform - pos: -2.5,81.5 - parent: 1 - - uid: 11523 - components: - - type: Transform - pos: -3.5,81.5 - parent: 1 - - uid: 11524 - components: - - type: Transform - pos: -4.5,81.5 - parent: 1 - - uid: 11525 - components: - - type: Transform - pos: -0.5,82.5 - parent: 1 - - uid: 11526 - components: - - type: Transform - pos: -0.5,83.5 - parent: 1 - - uid: 11527 - components: - - type: Transform - pos: -0.5,84.5 - parent: 1 - - uid: 11528 - components: - - type: Transform - pos: -1.5,84.5 - parent: 1 - - uid: 11529 - components: - - type: Transform - pos: -2.5,84.5 - parent: 1 - - uid: 11530 - components: - - type: Transform - pos: -3.5,84.5 - parent: 1 - - uid: 11531 - components: - - type: Transform - pos: 0.5,84.5 - parent: 1 - - uid: 11532 - components: - - type: Transform - pos: 1.5,84.5 - parent: 1 - - uid: 11533 - components: - - type: Transform - pos: 2.5,84.5 - parent: 1 - - uid: 11534 - components: - - type: Transform - pos: -4.5,74.5 - parent: 1 - - uid: 11535 - components: - - type: Transform - pos: -5.5,74.5 - parent: 1 - - uid: 11536 - components: - - type: Transform - pos: -6.5,74.5 - parent: 1 - - uid: 11537 - components: - - type: Transform - pos: -7.5,74.5 - parent: 1 - - uid: 11538 - components: - - type: Transform - pos: -8.5,74.5 - parent: 1 - - uid: 11539 - components: - - type: Transform - pos: -8.5,73.5 - parent: 1 - - uid: 11540 - components: - - type: Transform - pos: -8.5,72.5 - parent: 1 - - uid: 11541 - components: - - type: Transform - pos: -8.5,71.5 - parent: 1 - - uid: 11542 - components: - - type: Transform - pos: -8.5,70.5 - parent: 1 - - uid: 11543 - components: - - type: Transform - pos: -8.5,69.5 - parent: 1 - - uid: 11544 - components: - - type: Transform - pos: -9.5,69.5 - parent: 1 - - uid: 11545 - components: - - type: Transform - pos: -10.5,69.5 - parent: 1 - - uid: 11546 - components: - - type: Transform - pos: -10.5,70.5 - parent: 1 - - uid: 11547 - components: - - type: Transform - pos: -7.5,72.5 - parent: 1 - - uid: 11548 - components: - - type: Transform - pos: -6.5,72.5 - parent: 1 - - uid: 11549 - components: - - type: Transform - pos: -5.5,72.5 - parent: 1 - - uid: 11550 - components: - - type: Transform - pos: -5.5,73.5 - parent: 1 - - uid: 11611 - components: - - type: Transform - pos: -30.5,57.5 - parent: 1 - - uid: 11612 - components: - - type: Transform - pos: -30.5,56.5 - parent: 1 - - uid: 11613 - components: - - type: Transform - pos: -31.5,56.5 - parent: 1 - - uid: 11614 - components: - - type: Transform - pos: -32.5,56.5 - parent: 1 - - uid: 11615 - components: - - type: Transform - pos: -33.5,56.5 - parent: 1 - - uid: 11616 - components: - - type: Transform - pos: -34.5,56.5 - parent: 1 - - uid: 11617 - components: - - type: Transform - pos: -35.5,56.5 - parent: 1 - - uid: 11618 - components: - - type: Transform - pos: -35.5,55.5 - parent: 1 - - uid: 11619 - components: - - type: Transform - pos: -35.5,54.5 - parent: 1 - - uid: 11620 - components: - - type: Transform - pos: -35.5,53.5 - parent: 1 - - uid: 11621 - components: - - type: Transform - pos: -35.5,52.5 - parent: 1 - - uid: 11622 - components: - - type: Transform - pos: -34.5,52.5 - parent: 1 - - uid: 11623 - components: - - type: Transform - pos: -33.5,52.5 - parent: 1 - - uid: 11624 - components: - - type: Transform - pos: -32.5,52.5 - parent: 1 - - uid: 11625 - components: - - type: Transform - pos: -31.5,52.5 - parent: 1 - - uid: 11626 - components: - - type: Transform - pos: -30.5,52.5 - parent: 1 - - uid: 11627 - components: - - type: Transform - pos: -29.5,52.5 - parent: 1 - - uid: 11628 - components: - - type: Transform - pos: -28.5,52.5 - parent: 1 - - uid: 11629 - components: - - type: Transform - pos: -27.5,52.5 - parent: 1 - - uid: 11630 - components: - - type: Transform - pos: -27.5,53.5 - parent: 1 - - uid: 11631 - components: - - type: Transform - pos: -27.5,54.5 - parent: 1 - - uid: 11632 - components: - - type: Transform - pos: -27.5,55.5 - parent: 1 - - uid: 11633 - components: - - type: Transform - pos: -27.5,56.5 - parent: 1 - - uid: 11634 - components: - - type: Transform - pos: -28.5,56.5 - parent: 1 - - uid: 11635 - components: - - type: Transform - pos: -29.5,56.5 - parent: 1 - - uid: 11636 - components: - - type: Transform - pos: -27.5,57.5 - parent: 1 - - uid: 11637 - components: - - type: Transform - pos: -26.5,57.5 - parent: 1 - - uid: 11638 - components: - - type: Transform - pos: -25.5,57.5 - parent: 1 - - uid: 11639 - components: - - type: Transform - pos: -24.5,57.5 - parent: 1 - - uid: 11640 - components: - - type: Transform - pos: -24.5,56.5 - parent: 1 - - uid: 11641 - components: - - type: Transform - pos: -24.5,55.5 - parent: 1 - - uid: 11642 - components: - - type: Transform - pos: -24.5,54.5 - parent: 1 - - uid: 11643 - components: - - type: Transform - pos: -24.5,53.5 - parent: 1 - - uid: 11644 - components: - - type: Transform - pos: -24.5,52.5 - parent: 1 - - uid: 11645 - components: - - type: Transform - pos: -24.5,51.5 - parent: 1 - - uid: 11646 - components: - - type: Transform - pos: -36.5,52.5 - parent: 1 - - uid: 11647 - components: - - type: Transform - pos: -37.5,52.5 - parent: 1 - - uid: 11648 - components: - - type: Transform - pos: -38.5,52.5 - parent: 1 - - uid: 11649 - components: - - type: Transform - pos: -38.5,53.5 - parent: 1 - - uid: 11650 - components: - - type: Transform - pos: -38.5,54.5 - parent: 1 - - uid: 11651 - components: - - type: Transform - pos: -38.5,55.5 - parent: 1 - - uid: 11652 - components: - - type: Transform - pos: -42.5,44.5 - parent: 1 - - uid: 11653 - components: - - type: Transform - pos: -43.5,44.5 - parent: 1 - - uid: 11654 - components: - - type: Transform - pos: -43.5,45.5 - parent: 1 - - uid: 11655 - components: - - type: Transform - pos: -43.5,46.5 - parent: 1 - - uid: 11656 - components: - - type: Transform - pos: -43.5,47.5 - parent: 1 - - uid: 11657 - components: - - type: Transform - pos: -43.5,48.5 - parent: 1 - - uid: 11658 - components: - - type: Transform - pos: -43.5,49.5 - parent: 1 - - uid: 11659 - components: - - type: Transform - pos: -43.5,50.5 - parent: 1 - - uid: 11660 - components: - - type: Transform - pos: -43.5,51.5 - parent: 1 - - uid: 11661 - components: - - type: Transform - pos: -42.5,51.5 - parent: 1 - - uid: 11662 - components: - - type: Transform - pos: -41.5,51.5 - parent: 1 - - uid: 11663 - components: - - type: Transform - pos: -44.5,48.5 - parent: 1 - - uid: 11665 - components: - - type: Transform - pos: -46.5,48.5 - parent: 1 - - uid: 11666 - components: - - type: Transform - pos: -47.5,48.5 - parent: 1 - - uid: 11667 - components: - - type: Transform - pos: -42.5,43.5 - parent: 1 - - uid: 11668 - components: - - type: Transform - pos: -43.5,43.5 - parent: 1 - - uid: 11669 - components: - - type: Transform - pos: -44.5,43.5 - parent: 1 - - uid: 11670 - components: - - type: Transform - pos: -45.5,43.5 - parent: 1 - - uid: 11671 - components: - - type: Transform - pos: -46.5,43.5 - parent: 1 - - uid: 11672 - components: - - type: Transform - pos: -47.5,43.5 - parent: 1 - - uid: 11673 - components: - - type: Transform - pos: -48.5,43.5 - parent: 1 - - uid: 11674 - components: - - type: Transform - pos: -49.5,43.5 - parent: 1 - - uid: 11675 - components: - - type: Transform - pos: -49.5,42.5 - parent: 1 - - uid: 11676 - components: - - type: Transform - pos: -49.5,41.5 - parent: 1 - - uid: 11677 - components: - - type: Transform - pos: -49.5,40.5 - parent: 1 - - uid: 11678 - components: - - type: Transform - pos: -49.5,39.5 - parent: 1 - - uid: 11679 - components: - - type: Transform - pos: -49.5,38.5 - parent: 1 - - uid: 11680 - components: - - type: Transform - pos: -49.5,37.5 - parent: 1 - - uid: 11681 - components: - - type: Transform - pos: -49.5,36.5 - parent: 1 - - uid: 11682 - components: - - type: Transform - pos: -49.5,35.5 - parent: 1 - - uid: 11683 - components: - - type: Transform - pos: -49.5,34.5 - parent: 1 - - uid: 11684 - components: - - type: Transform - pos: -50.5,38.5 - parent: 1 - - uid: 11685 - components: - - type: Transform - pos: -51.5,38.5 - parent: 1 - - uid: 11686 - components: - - type: Transform - pos: -52.5,38.5 - parent: 1 - - uid: 11687 - components: - - type: Transform - pos: -50.5,36.5 - parent: 1 - - uid: 11688 - components: - - type: Transform - pos: -51.5,36.5 - parent: 1 - - uid: 11689 - components: - - type: Transform - pos: -52.5,36.5 - parent: 1 - - uid: 11690 - components: - - type: Transform - pos: -48.5,36.5 - parent: 1 - - uid: 11691 - components: - - type: Transform - pos: -47.5,36.5 - parent: 1 - - uid: 11692 - components: - - type: Transform - pos: -47.5,35.5 - parent: 1 - - uid: 11693 - components: - - type: Transform - pos: -47.5,34.5 - parent: 1 - - uid: 11694 - components: - - type: Transform - pos: -46.5,36.5 - parent: 1 - - uid: 11695 - components: - - type: Transform - pos: -45.5,36.5 - parent: 1 - - uid: 11696 - components: - - type: Transform - pos: -44.5,36.5 - parent: 1 - - uid: 11697 - components: - - type: Transform - pos: -43.5,36.5 - parent: 1 - - uid: 11698 - components: - - type: Transform - pos: -42.5,36.5 - parent: 1 - - uid: 11699 - components: - - type: Transform - pos: -41.5,36.5 - parent: 1 - - uid: 11700 - components: - - type: Transform - pos: -40.5,36.5 - parent: 1 - - uid: 11701 - components: - - type: Transform - pos: -39.5,36.5 - parent: 1 - - uid: 11702 - components: - - type: Transform - pos: -38.5,36.5 - parent: 1 - - uid: 11703 - components: - - type: Transform - pos: -37.5,36.5 - parent: 1 - - uid: 11704 - components: - - type: Transform - pos: -36.5,36.5 - parent: 1 - - uid: 11705 - components: - - type: Transform - pos: -35.5,36.5 - parent: 1 - - uid: 11706 - components: - - type: Transform - pos: -34.5,36.5 - parent: 1 - - uid: 11707 - components: - - type: Transform - pos: -34.5,37.5 - parent: 1 - - uid: 11708 - components: - - type: Transform - pos: -34.5,38.5 - parent: 1 - - uid: 11709 - components: - - type: Transform - pos: -35.5,38.5 - parent: 1 - - uid: 11710 - components: - - type: Transform - pos: -36.5,38.5 - parent: 1 - - uid: 11711 - components: - - type: Transform - pos: -37.5,38.5 - parent: 1 - - uid: 11712 - components: - - type: Transform - pos: -38.5,38.5 - parent: 1 - - uid: 11713 - components: - - type: Transform - pos: -39.5,38.5 - parent: 1 - - uid: 11714 - components: - - type: Transform - pos: -40.5,38.5 - parent: 1 - - uid: 11715 - components: - - type: Transform - pos: -41.5,38.5 - parent: 1 - - uid: 11716 - components: - - type: Transform - pos: -42.5,38.5 - parent: 1 - - uid: 11717 - components: - - type: Transform - pos: -42.5,39.5 - parent: 1 - - uid: 11718 - components: - - type: Transform - pos: -42.5,40.5 - parent: 1 - - uid: 11719 - components: - - type: Transform - pos: -42.5,41.5 - parent: 1 - - uid: 11720 - components: - - type: Transform - pos: -42.5,42.5 - parent: 1 - - uid: 11721 - components: - - type: Transform - pos: -33.5,38.5 - parent: 1 - - uid: 11722 - components: - - type: Transform - pos: -32.5,38.5 - parent: 1 - - uid: 11723 - components: - - type: Transform - pos: -31.5,38.5 - parent: 1 - - uid: 11724 - components: - - type: Transform - pos: -30.5,38.5 - parent: 1 - - uid: 11725 - components: - - type: Transform - pos: -29.5,38.5 - parent: 1 - - uid: 11726 - components: - - type: Transform - pos: -28.5,38.5 - parent: 1 - - uid: 11727 - components: - - type: Transform - pos: -27.5,38.5 - parent: 1 - - uid: 11728 - components: - - type: Transform - pos: -26.5,38.5 - parent: 1 - - uid: 11729 - components: - - type: Transform - pos: -25.5,38.5 - parent: 1 - - uid: 11730 - components: - - type: Transform - pos: -24.5,38.5 - parent: 1 - - uid: 11731 - components: - - type: Transform - pos: -24.5,49.5 - parent: 1 - - uid: 11732 - components: - - type: Transform - pos: -24.5,48.5 - parent: 1 - - uid: 11733 - components: - - type: Transform - pos: -24.5,47.5 - parent: 1 - - uid: 11734 - components: - - type: Transform - pos: -25.5,47.5 - parent: 1 - - uid: 11735 - components: - - type: Transform - pos: -26.5,47.5 - parent: 1 - - uid: 11736 - components: - - type: Transform - pos: -27.5,47.5 - parent: 1 - - uid: 11737 - components: - - type: Transform - pos: -28.5,47.5 - parent: 1 - - uid: 11738 - components: - - type: Transform - pos: -29.5,47.5 - parent: 1 - - uid: 11739 - components: - - type: Transform - pos: -30.5,47.5 - parent: 1 - - uid: 11740 - components: - - type: Transform - pos: -31.5,47.5 - parent: 1 - - uid: 11741 - components: - - type: Transform - pos: -32.5,47.5 - parent: 1 - - uid: 11742 - components: - - type: Transform - pos: -33.5,47.5 - parent: 1 - - uid: 11743 - components: - - type: Transform - pos: -34.5,47.5 - parent: 1 - - uid: 11744 - components: - - type: Transform - pos: -35.5,47.5 - parent: 1 - - uid: 11745 - components: - - type: Transform - pos: -35.5,48.5 - parent: 1 - - uid: 11746 - components: - - type: Transform - pos: -36.5,48.5 - parent: 1 - - uid: 11747 - components: - - type: Transform - pos: -37.5,48.5 - parent: 1 - - uid: 11748 - components: - - type: Transform - pos: -38.5,48.5 - parent: 1 - - uid: 11749 - components: - - type: Transform - pos: -32.5,48.5 - parent: 1 - - uid: 11750 - components: - - type: Transform - pos: -30.5,46.5 - parent: 1 - - uid: 11751 - components: - - type: Transform - pos: -30.5,45.5 - parent: 1 - - uid: 11752 - components: - - type: Transform - pos: -30.5,44.5 - parent: 1 - - uid: 11753 - components: - - type: Transform - pos: -30.5,43.5 - parent: 1 - - uid: 11754 - components: - - type: Transform - pos: -30.5,42.5 - parent: 1 - - uid: 11755 - components: - - type: Transform - pos: -29.5,42.5 - parent: 1 - - uid: 11756 - components: - - type: Transform - pos: -28.5,42.5 - parent: 1 - - uid: 11757 - components: - - type: Transform - pos: -27.5,42.5 - parent: 1 - - uid: 11758 - components: - - type: Transform - pos: -26.5,42.5 - parent: 1 - - uid: 11759 - components: - - type: Transform - pos: -26.5,43.5 - parent: 1 - - uid: 11760 - components: - - type: Transform - pos: -26.5,44.5 - parent: 1 - - uid: 11761 - components: - - type: Transform - pos: -30.5,41.5 - parent: 1 - - uid: 11762 - components: - - type: Transform - pos: -31.5,41.5 - parent: 1 - - uid: 11763 - components: - - type: Transform - pos: -32.5,41.5 - parent: 1 - - uid: 11764 - components: - - type: Transform - pos: -34.5,41.5 - parent: 1 - - uid: 11765 - components: - - type: Transform - pos: -35.5,41.5 - parent: 1 - - uid: 11766 - components: - - type: Transform - pos: -31.5,43.5 - parent: 1 - - uid: 11767 - components: - - type: Transform - pos: -32.5,43.5 - parent: 1 - - uid: 11768 - components: - - type: Transform - pos: -33.5,43.5 - parent: 1 - - uid: 11769 - components: - - type: Transform - pos: -34.5,43.5 - parent: 1 - - uid: 11770 - components: - - type: Transform - pos: -35.5,43.5 - parent: 1 - - uid: 11771 - components: - - type: Transform - pos: -36.5,43.5 - parent: 1 - - uid: 11772 - components: - - type: Transform - pos: -37.5,43.5 - parent: 1 - - uid: 11773 - components: - - type: Transform - pos: -38.5,43.5 - parent: 1 - - uid: 11774 - components: - - type: Transform - pos: -39.5,43.5 - parent: 1 - - uid: 11775 - components: - - type: Transform - pos: -39.5,42.5 - parent: 1 - - uid: 11776 - components: - - type: Transform - pos: -35.5,46.5 - parent: 1 - - uid: 11777 - components: - - type: Transform - pos: -35.5,45.5 - parent: 1 - - uid: 11778 - components: - - type: Transform - pos: -35.5,44.5 - parent: 1 - - uid: 11779 - components: - - type: Transform - pos: -36.5,45.5 - parent: 1 - - uid: 11780 - components: - - type: Transform - pos: -37.5,45.5 - parent: 1 - - uid: 11781 - components: - - type: Transform - pos: -38.5,45.5 - parent: 1 - - uid: 11782 - components: - - type: Transform - pos: -39.5,45.5 - parent: 1 - - uid: 11783 - components: - - type: Transform - pos: -39.5,46.5 - parent: 1 - - uid: 11784 - components: - - type: Transform - pos: -20.5,50.5 - parent: 1 - - uid: 11785 - components: - - type: Transform - pos: -19.5,50.5 - parent: 1 - - uid: 11786 - components: - - type: Transform - pos: -18.5,50.5 - parent: 1 - - uid: 11787 - components: - - type: Transform - pos: -17.5,50.5 - parent: 1 - - uid: 11788 - components: - - type: Transform - pos: -16.5,50.5 - parent: 1 - - uid: 11789 - components: - - type: Transform - pos: -16.5,51.5 - parent: 1 - - uid: 11790 - components: - - type: Transform - pos: -16.5,52.5 - parent: 1 - - uid: 11791 - components: - - type: Transform - pos: -16.5,53.5 - parent: 1 - - uid: 11792 - components: - - type: Transform - pos: -16.5,54.5 - parent: 1 - - uid: 11793 - components: - - type: Transform - pos: -16.5,55.5 - parent: 1 - - uid: 11794 - components: - - type: Transform - pos: -16.5,56.5 - parent: 1 - - uid: 11795 - components: - - type: Transform - pos: -15.5,56.5 - parent: 1 - - uid: 11796 - components: - - type: Transform - pos: -14.5,56.5 - parent: 1 - - uid: 11797 - components: - - type: Transform - pos: -13.5,56.5 - parent: 1 - - uid: 11798 - components: - - type: Transform - pos: -12.5,56.5 - parent: 1 - - uid: 11799 - components: - - type: Transform - pos: -12.5,55.5 - parent: 1 - - uid: 11800 - components: - - type: Transform - pos: -12.5,54.5 - parent: 1 - - uid: 11801 - components: - - type: Transform - pos: -12.5,53.5 - parent: 1 - - uid: 11802 - components: - - type: Transform - pos: -12.5,52.5 - parent: 1 - - uid: 11803 - components: - - type: Transform - pos: -12.5,51.5 - parent: 1 - - uid: 11804 - components: - - type: Transform - pos: -12.5,50.5 - parent: 1 - - uid: 11805 - components: - - type: Transform - pos: -12.5,49.5 - parent: 1 - - uid: 11806 - components: - - type: Transform - pos: -12.5,48.5 - parent: 1 - - uid: 11807 - components: - - type: Transform - pos: -12.5,47.5 - parent: 1 - - uid: 11808 - components: - - type: Transform - pos: -12.5,46.5 - parent: 1 - - uid: 11809 - components: - - type: Transform - pos: -12.5,45.5 - parent: 1 - - uid: 11810 - components: - - type: Transform - pos: -12.5,44.5 - parent: 1 - - uid: 11811 - components: - - type: Transform - pos: -12.5,43.5 - parent: 1 - - uid: 11812 - components: - - type: Transform - pos: -12.5,42.5 - parent: 1 - - uid: 11813 - components: - - type: Transform - pos: -12.5,41.5 - parent: 1 - - uid: 11814 - components: - - type: Transform - pos: -12.5,40.5 - parent: 1 - - uid: 11815 - components: - - type: Transform - pos: -12.5,39.5 - parent: 1 - - uid: 11816 - components: - - type: Transform - pos: -13.5,39.5 - parent: 1 - - uid: 11817 - components: - - type: Transform - pos: -13.5,44.5 - parent: 1 - - uid: 11818 - components: - - type: Transform - pos: -14.5,44.5 - parent: 1 - - uid: 11819 - components: - - type: Transform - pos: -15.5,44.5 - parent: 1 - - uid: 11820 - components: - - type: Transform - pos: -16.5,44.5 - parent: 1 - - uid: 11821 - components: - - type: Transform - pos: -17.5,44.5 - parent: 1 - - uid: 11822 - components: - - type: Transform - pos: -17.5,43.5 - parent: 1 - - uid: 11823 - components: - - type: Transform - pos: -17.5,42.5 - parent: 1 - - uid: 11824 - components: - - type: Transform - pos: -17.5,41.5 - parent: 1 - - uid: 11825 - components: - - type: Transform - pos: -17.5,40.5 - parent: 1 - - uid: 11826 - components: - - type: Transform - pos: -17.5,39.5 - parent: 1 - - uid: 11831 - components: - - type: Transform - pos: -18.5,44.5 - parent: 1 - - uid: 11832 - components: - - type: Transform - pos: -19.5,44.5 - parent: 1 - - uid: 11833 - components: - - type: Transform - pos: -19.5,45.5 - parent: 1 - - uid: 11834 - components: - - type: Transform - pos: -19.5,46.5 - parent: 1 - - uid: 11835 - components: - - type: Transform - pos: -19.5,47.5 - parent: 1 - - uid: 11836 - components: - - type: Transform - pos: -19.5,48.5 - parent: 1 - - uid: 11837 - components: - - type: Transform - pos: -19.5,49.5 - parent: 1 - - uid: 11838 - components: - - type: Transform - pos: -19.5,50.5 - parent: 1 - - uid: 11864 - components: - - type: Transform - pos: -7.5,56.5 - parent: 1 - - uid: 11865 - components: - - type: Transform - pos: -8.5,56.5 - parent: 1 - - uid: 11866 - components: - - type: Transform - pos: -9.5,56.5 - parent: 1 - - uid: 11867 - components: - - type: Transform - pos: -10.5,56.5 - parent: 1 - - uid: 11868 - components: - - type: Transform - pos: -10.5,57.5 - parent: 1 - - uid: 11869 - components: - - type: Transform - pos: -10.5,58.5 - parent: 1 - - uid: 11870 - components: - - type: Transform - pos: -10.5,59.5 - parent: 1 - - uid: 11871 - components: - - type: Transform - pos: -11.5,59.5 - parent: 1 - - uid: 11872 - components: - - type: Transform - pos: -12.5,59.5 - parent: 1 - - uid: 11873 - components: - - type: Transform - pos: -13.5,59.5 - parent: 1 - - uid: 11874 - components: - - type: Transform - pos: -14.5,59.5 - parent: 1 - - uid: 11875 - components: - - type: Transform - pos: -15.5,59.5 - parent: 1 - - uid: 11876 - components: - - type: Transform - pos: -16.5,59.5 - parent: 1 - - uid: 11877 - components: - - type: Transform - pos: -9.5,59.5 - parent: 1 - - uid: 11878 - components: - - type: Transform - pos: -8.5,59.5 - parent: 1 - - uid: 11879 - components: - - type: Transform - pos: -7.5,59.5 - parent: 1 - - uid: 11880 - components: - - type: Transform - pos: -6.5,59.5 - parent: 1 - - uid: 11881 - components: - - type: Transform - pos: -5.5,59.5 - parent: 1 - - uid: 11882 - components: - - type: Transform - pos: -5.5,60.5 - parent: 1 - - uid: 11883 - components: - - type: Transform - pos: -5.5,61.5 - parent: 1 - - uid: 11884 - components: - - type: Transform - pos: -5.5,62.5 - parent: 1 - - uid: 11885 - components: - - type: Transform - pos: -5.5,63.5 - parent: 1 - - uid: 11886 - components: - - type: Transform - pos: -5.5,64.5 - parent: 1 - - uid: 11887 - components: - - type: Transform - pos: -6.5,64.5 - parent: 1 - - uid: 11888 - components: - - type: Transform - pos: -7.5,64.5 - parent: 1 - - uid: 11889 - components: - - type: Transform - pos: -8.5,64.5 - parent: 1 - - uid: 11890 - components: - - type: Transform - pos: -8.5,63.5 - parent: 1 - - uid: 11891 - components: - - type: Transform - pos: -8.5,62.5 - parent: 1 - - uid: 11892 - components: - - type: Transform - pos: -8.5,61.5 - parent: 1 - - uid: 11893 - components: - - type: Transform - pos: -9.5,61.5 - parent: 1 - - uid: 11894 - components: - - type: Transform - pos: -7.5,60.5 - parent: 1 - - uid: 11895 - components: - - type: Transform - pos: -6.5,56.5 - parent: 1 - - uid: 11896 - components: - - type: Transform - pos: -5.5,56.5 - parent: 1 - - uid: 11897 - components: - - type: Transform - pos: -5.5,55.5 - parent: 1 - - uid: 11898 - components: - - type: Transform - pos: -5.5,54.5 - parent: 1 - - uid: 11899 - components: - - type: Transform - pos: -5.5,53.5 - parent: 1 - - uid: 11900 - components: - - type: Transform - pos: -5.5,52.5 - parent: 1 - - uid: 11901 - components: - - type: Transform - pos: -4.5,54.5 - parent: 1 - - uid: 11902 - components: - - type: Transform - pos: -3.5,54.5 - parent: 1 - - uid: 11903 - components: - - type: Transform - pos: -2.5,54.5 - parent: 1 - - uid: 11904 - components: - - type: Transform - pos: -1.5,54.5 - parent: 1 - - uid: 11905 - components: - - type: Transform - pos: -3.5,53.5 - parent: 1 - - uid: 11906 - components: - - type: Transform - pos: -3.5,52.5 - parent: 1 - - uid: 11907 - components: - - type: Transform - pos: -3.5,55.5 - parent: 1 - - uid: 11908 - components: - - type: Transform - pos: -3.5,56.5 - parent: 1 - - uid: 11909 - components: - - type: Transform - pos: -1.5,53.5 - parent: 1 - - uid: 11910 - components: - - type: Transform - pos: -1.5,52.5 - parent: 1 - - uid: 11911 - components: - - type: Transform - pos: -1.5,51.5 - parent: 1 - - uid: 11912 - components: - - type: Transform - pos: -1.5,50.5 - parent: 1 - - uid: 11913 - components: - - type: Transform - pos: -1.5,49.5 - parent: 1 - - uid: 11914 - components: - - type: Transform - pos: -1.5,48.5 - parent: 1 - - uid: 11915 - components: - - type: Transform - pos: -2.5,48.5 - parent: 1 - - uid: 11916 - components: - - type: Transform - pos: -3.5,48.5 - parent: 1 - - uid: 11917 - components: - - type: Transform - pos: -4.5,48.5 - parent: 1 - - uid: 11918 - components: - - type: Transform - pos: -5.5,48.5 - parent: 1 - - uid: 11919 - components: - - type: Transform - pos: -6.5,48.5 - parent: 1 - - uid: 11920 - components: - - type: Transform - pos: -7.5,48.5 - parent: 1 - - uid: 11921 - components: - - type: Transform - pos: -8.5,48.5 - parent: 1 - - uid: 11922 - components: - - type: Transform - pos: -9.5,48.5 - parent: 1 - - uid: 11923 - components: - - type: Transform - pos: -9.5,49.5 - parent: 1 - - uid: 11924 - components: - - type: Transform - pos: -9.5,50.5 - parent: 1 - - uid: 11925 - components: - - type: Transform - pos: -9.5,51.5 - parent: 1 - - uid: 11926 - components: - - type: Transform - pos: -9.5,52.5 - parent: 1 - - uid: 11927 - components: - - type: Transform - pos: -9.5,53.5 - parent: 1 - - uid: 11928 - components: - - type: Transform - pos: -9.5,54.5 - parent: 1 - - uid: 11929 - components: - - type: Transform - pos: -9.5,55.5 - parent: 1 - - uid: 11930 - components: - - type: Transform - pos: -9.5,47.5 - parent: 1 - - uid: 11932 - components: - - type: Transform - pos: -9.5,45.5 - parent: 1 - - uid: 11933 - components: - - type: Transform - pos: -9.5,44.5 - parent: 1 - - uid: 11934 - components: - - type: Transform - pos: -9.5,43.5 - parent: 1 - - uid: 11935 - components: - - type: Transform - pos: -9.5,42.5 - parent: 1 - - uid: 11936 - components: - - type: Transform - pos: -9.5,41.5 - parent: 1 - - uid: 11937 - components: - - type: Transform - pos: -9.5,40.5 - parent: 1 - - uid: 11938 - components: - - type: Transform - pos: -9.5,39.5 - parent: 1 - - uid: 11939 - components: - - type: Transform - pos: -10.5,39.5 - parent: 1 - - uid: 11940 - components: - - type: Transform - pos: -6.5,43.5 - parent: 1 - - uid: 11941 - components: - - type: Transform - pos: -6.5,44.5 - parent: 1 - - uid: 11942 - components: - - type: Transform - pos: -6.5,45.5 - parent: 1 - - uid: 11943 - components: - - type: Transform - pos: -6.5,46.5 - parent: 1 - - uid: 11944 - components: - - type: Transform - pos: -6.5,47.5 - parent: 1 - - uid: 11945 - components: - - type: Transform - pos: -6.5,42.5 - parent: 1 - - uid: 11946 - components: - - type: Transform - pos: -6.5,41.5 - parent: 1 - - uid: 11947 - components: - - type: Transform - pos: -6.5,40.5 - parent: 1 - - uid: 11948 - components: - - type: Transform - pos: -6.5,39.5 - parent: 1 - - uid: 11949 - components: - - type: Transform - pos: -7.5,39.5 - parent: 1 - - uid: 11950 - components: - - type: Transform - pos: -3.5,39.5 - parent: 1 - - uid: 11951 - components: - - type: Transform - pos: -3.5,40.5 - parent: 1 - - uid: 11952 - components: - - type: Transform - pos: -3.5,41.5 - parent: 1 - - uid: 11953 - components: - - type: Transform - pos: -3.5,42.5 - parent: 1 - - uid: 11954 - components: - - type: Transform - pos: -3.5,43.5 - parent: 1 - - uid: 11955 - components: - - type: Transform - pos: -3.5,44.5 - parent: 1 - - uid: 11956 - components: - - type: Transform - pos: -3.5,45.5 - parent: 1 - - uid: 11957 - components: - - type: Transform - pos: -3.5,46.5 - parent: 1 - - uid: 11958 - components: - - type: Transform - pos: -3.5,47.5 - parent: 1 - - uid: 11959 - components: - - type: Transform - pos: -4.5,47.5 - parent: 1 - - uid: 11960 - components: - - type: Transform - pos: -23.5,47.5 - parent: 1 - - uid: 11961 - components: - - type: Transform - pos: -22.5,47.5 - parent: 1 - - uid: 11962 - components: - - type: Transform - pos: -22.5,48.5 - parent: 1 - - uid: 11963 - components: - - type: Transform - pos: -21.5,52.5 - parent: 1 - - uid: 11964 - components: - - type: Transform - pos: -21.5,51.5 - parent: 1 - - uid: 11965 - components: - - type: Transform - pos: -21.5,53.5 - parent: 1 - - uid: 11966 - components: - - type: Transform - pos: -21.5,54.5 - parent: 1 - - uid: 11967 - components: - - type: Transform - pos: -21.5,55.5 - parent: 1 - - uid: 11968 - components: - - type: Transform - pos: -21.5,56.5 - parent: 1 - - uid: 11969 - components: - - type: Transform - pos: -21.5,57.5 - parent: 1 - - uid: 11970 - components: - - type: Transform - pos: -20.5,57.5 - parent: 1 - - uid: 11971 - components: - - type: Transform - pos: -19.5,57.5 - parent: 1 - - uid: 11972 - components: - - type: Transform - pos: -19.5,58.5 - parent: 1 - - uid: 11973 - components: - - type: Transform - pos: -19.5,59.5 - parent: 1 - - uid: 11974 - components: - - type: Transform - pos: -19.5,60.5 - parent: 1 - - uid: 11975 - components: - - type: Transform - pos: -19.5,61.5 - parent: 1 - - uid: 11976 - components: - - type: Transform - pos: -19.5,62.5 - parent: 1 - - uid: 11977 - components: - - type: Transform - pos: -18.5,62.5 - parent: 1 - - uid: 11978 - components: - - type: Transform - pos: -17.5,62.5 - parent: 1 - - uid: 11979 - components: - - type: Transform - pos: -16.5,62.5 - parent: 1 - - uid: 11980 - components: - - type: Transform - pos: -15.5,62.5 - parent: 1 - - uid: 11981 - components: - - type: Transform - pos: -14.5,62.5 - parent: 1 - - uid: 11982 - components: - - type: Transform - pos: -13.5,62.5 - parent: 1 - - uid: 11983 - components: - - type: Transform - pos: -13.5,63.5 - parent: 1 - - uid: 11984 - components: - - type: Transform - pos: -13.5,64.5 - parent: 1 - - uid: 11985 - components: - - type: Transform - pos: -13.5,65.5 - parent: 1 - - uid: 11986 - components: - - type: Transform - pos: -13.5,66.5 - parent: 1 - - uid: 11987 - components: - - type: Transform - pos: -13.5,67.5 - parent: 1 - - uid: 11988 - components: - - type: Transform - pos: -13.5,68.5 - parent: 1 - - uid: 11989 - components: - - type: Transform - pos: -13.5,69.5 - parent: 1 - - uid: 11990 - components: - - type: Transform - pos: -13.5,70.5 - parent: 1 - - uid: 11991 - components: - - type: Transform - pos: -12.5,67.5 - parent: 1 - - uid: 11992 - components: - - type: Transform - pos: -11.5,67.5 - parent: 1 - - uid: 11993 - components: - - type: Transform - pos: -10.5,67.5 - parent: 1 - - uid: 11994 - components: - - type: Transform - pos: -9.5,67.5 - parent: 1 - - uid: 11995 - components: - - type: Transform - pos: -8.5,67.5 - parent: 1 - - uid: 11996 - components: - - type: Transform - pos: -7.5,67.5 - parent: 1 - - uid: 11997 - components: - - type: Transform - pos: -6.5,67.5 - parent: 1 - - uid: 11998 - components: - - type: Transform - pos: -5.5,67.5 - parent: 1 - - uid: 11999 - components: - - type: Transform - pos: -4.5,67.5 - parent: 1 - - uid: 12000 - components: - - type: Transform - pos: -4.5,68.5 - parent: 1 - - uid: 12001 - components: - - type: Transform - pos: -4.5,69.5 - parent: 1 - - uid: 12002 - components: - - type: Transform - pos: -4.5,70.5 - parent: 1 - - uid: 12003 - components: - - type: Transform - pos: -3.5,70.5 - parent: 1 - - uid: 12004 - components: - - type: Transform - pos: -1.5,47.5 - parent: 1 - - uid: 12005 - components: - - type: Transform - pos: -1.5,46.5 - parent: 1 - - uid: 12006 - components: - - type: Transform - pos: -1.5,45.5 - parent: 1 - - uid: 12007 - components: - - type: Transform - pos: -1.5,44.5 - parent: 1 - - uid: 12008 - components: - - type: Transform - pos: -1.5,43.5 - parent: 1 - - uid: 12009 - components: - - type: Transform - pos: -1.5,42.5 - parent: 1 - - uid: 12010 - components: - - type: Transform - pos: -1.5,41.5 - parent: 1 - - uid: 12011 - components: - - type: Transform - pos: -1.5,40.5 - parent: 1 - - uid: 12012 - components: - - type: Transform - pos: -22.5,46.5 - parent: 1 - - uid: 12013 - components: - - type: Transform - pos: -21.5,46.5 - parent: 1 - - uid: 12014 - components: - - type: Transform - pos: -21.5,45.5 - parent: 1 - - uid: 12015 - components: - - type: Transform - pos: -21.5,44.5 - parent: 1 - - uid: 12016 - components: - - type: Transform - pos: -21.5,43.5 - parent: 1 - - uid: 12017 - components: - - type: Transform - pos: -21.5,42.5 - parent: 1 - - uid: 12018 - components: - - type: Transform - pos: -21.5,41.5 - parent: 1 - - uid: 12019 - components: - - type: Transform - pos: -21.5,40.5 - parent: 1 - - uid: 12060 - components: - - type: Transform - pos: -12.5,32.5 - parent: 1 - - uid: 12061 - components: - - type: Transform - pos: -11.5,32.5 - parent: 1 - - uid: 12062 - components: - - type: Transform - pos: -10.5,32.5 - parent: 1 - - uid: 12063 - components: - - type: Transform - pos: -9.5,32.5 - parent: 1 - - uid: 12064 - components: - - type: Transform - pos: -9.5,33.5 - parent: 1 - - uid: 12065 - components: - - type: Transform - pos: -8.5,33.5 - parent: 1 - - uid: 12066 - components: - - type: Transform - pos: -7.5,33.5 - parent: 1 - - uid: 12067 - components: - - type: Transform - pos: -6.5,33.5 - parent: 1 - - uid: 12068 - components: - - type: Transform - pos: -6.5,32.5 - parent: 1 - - uid: 12069 - components: - - type: Transform - pos: -6.5,31.5 - parent: 1 - - uid: 12070 - components: - - type: Transform - pos: -6.5,30.5 - parent: 1 - - uid: 12071 - components: - - type: Transform - pos: -6.5,29.5 - parent: 1 - - uid: 12072 - components: - - type: Transform - pos: -6.5,28.5 - parent: 1 - - uid: 12073 - components: - - type: Transform - pos: -6.5,27.5 - parent: 1 - - uid: 12074 - components: - - type: Transform - pos: -9.5,31.5 - parent: 1 - - uid: 12075 - components: - - type: Transform - pos: -9.5,30.5 - parent: 1 - - uid: 12076 - components: - - type: Transform - pos: -9.5,29.5 - parent: 1 - - uid: 12077 - components: - - type: Transform - pos: -9.5,28.5 - parent: 1 - - uid: 12078 - components: - - type: Transform - pos: -9.5,27.5 - parent: 1 - - uid: 12079 - components: - - type: Transform - pos: -10.5,27.5 - parent: 1 - - uid: 12080 - components: - - type: Transform - pos: -11.5,27.5 - parent: 1 - - uid: 12081 - components: - - type: Transform - pos: -11.5,28.5 - parent: 1 - - uid: 12082 - components: - - type: Transform - pos: -11.5,29.5 - parent: 1 - - uid: 12083 - components: - - type: Transform - pos: -11.5,30.5 - parent: 1 - - uid: 12084 - components: - - type: Transform - pos: -11.5,31.5 - parent: 1 - - uid: 12085 - components: - - type: Transform - pos: -11.5,33.5 - parent: 1 - - uid: 12086 - components: - - type: Transform - pos: -11.5,34.5 - parent: 1 - - uid: 12087 - components: - - type: Transform - pos: -10.5,34.5 - parent: 1 - - uid: 12088 - components: - - type: Transform - pos: -20.5,31.5 - parent: 1 - - uid: 12089 - components: - - type: Transform - pos: -20.5,30.5 - parent: 1 - - uid: 12090 - components: - - type: Transform - pos: -20.5,29.5 - parent: 1 - - uid: 12091 - components: - - type: Transform - pos: -20.5,28.5 - parent: 1 - - uid: 12092 - components: - - type: Transform - pos: -20.5,32.5 - parent: 1 - - uid: 12093 - components: - - type: Transform - pos: -20.5,33.5 - parent: 1 - - uid: 12094 - components: - - type: Transform - pos: -20.5,34.5 - parent: 1 - - uid: 12095 - components: - - type: Transform - pos: -20.5,35.5 - parent: 1 - - uid: 12096 - components: - - type: Transform - pos: -20.5,36.5 - parent: 1 - - uid: 12097 - components: - - type: Transform - pos: -21.5,36.5 - parent: 1 - - uid: 12098 - components: - - type: Transform - pos: -22.5,36.5 - parent: 1 - - uid: 12099 - components: - - type: Transform - pos: -23.5,36.5 - parent: 1 - - uid: 12101 - components: - - type: Transform - pos: -25.5,36.5 - parent: 1 - - uid: 12102 - components: - - type: Transform - pos: -26.5,36.5 - parent: 1 - - uid: 12103 - components: - - type: Transform - pos: -27.5,36.5 - parent: 1 - - uid: 12104 - components: - - type: Transform - pos: -28.5,36.5 - parent: 1 - - uid: 12105 - components: - - type: Transform - pos: -19.5,36.5 - parent: 1 - - uid: 12106 - components: - - type: Transform - pos: -18.5,36.5 - parent: 1 - - uid: 12107 - components: - - type: Transform - pos: -17.5,36.5 - parent: 1 - - uid: 12108 - components: - - type: Transform - pos: -16.5,36.5 - parent: 1 - - uid: 12109 - components: - - type: Transform - pos: -15.5,36.5 - parent: 1 - - uid: 12110 - components: - - type: Transform - pos: -14.5,36.5 - parent: 1 - - uid: 12111 - components: - - type: Transform - pos: -13.5,36.5 - parent: 1 - - uid: 12112 - components: - - type: Transform - pos: -12.5,36.5 - parent: 1 - - uid: 12113 - components: - - type: Transform - pos: -11.5,36.5 - parent: 1 - - uid: 12114 - components: - - type: Transform - pos: -10.5,36.5 - parent: 1 - - uid: 12115 - components: - - type: Transform - pos: -9.5,36.5 - parent: 1 - - uid: 12116 - components: - - type: Transform - pos: -8.5,36.5 - parent: 1 - - uid: 12117 - components: - - type: Transform - pos: -7.5,36.5 - parent: 1 - - uid: 12118 - components: - - type: Transform - pos: -6.5,36.5 - parent: 1 - - uid: 12119 - components: - - type: Transform - pos: -5.5,36.5 - parent: 1 - - uid: 12120 - components: - - type: Transform - pos: -4.5,36.5 - parent: 1 - - uid: 12121 - components: - - type: Transform - pos: -3.5,36.5 - parent: 1 - - uid: 12122 - components: - - type: Transform - pos: -2.5,36.5 - parent: 1 - - uid: 12123 - components: - - type: Transform - pos: -19.5,32.5 - parent: 1 - - uid: 12124 - components: - - type: Transform - pos: -18.5,32.5 - parent: 1 - - uid: 12125 - components: - - type: Transform - pos: -17.5,32.5 - parent: 1 - - uid: 12126 - components: - - type: Transform - pos: -16.5,32.5 - parent: 1 - - uid: 12127 - components: - - type: Transform - pos: -15.5,32.5 - parent: 1 - - uid: 12128 - components: - - type: Transform - pos: -14.5,32.5 - parent: 1 - - uid: 12129 - components: - - type: Transform - pos: -14.5,31.5 - parent: 1 - - uid: 12130 - components: - - type: Transform - pos: -14.5,30.5 - parent: 1 - - uid: 12131 - components: - - type: Transform - pos: -14.5,29.5 - parent: 1 - - uid: 12132 - components: - - type: Transform - pos: -14.5,28.5 - parent: 1 - - uid: 12133 - components: - - type: Transform - pos: -14.5,27.5 - parent: 1 - - uid: 12134 - components: - - type: Transform - pos: -14.5,33.5 - parent: 1 - - uid: 12135 - components: - - type: Transform - pos: -14.5,34.5 - parent: 1 - - uid: 12136 - components: - - type: Transform - pos: -17.5,26.5 - parent: 1 - - uid: 12137 - components: - - type: Transform - pos: -17.5,25.5 - parent: 1 - - uid: 12138 - components: - - type: Transform - pos: -17.5,24.5 - parent: 1 - - uid: 12139 - components: - - type: Transform - pos: -16.5,24.5 - parent: 1 - - uid: 12140 - components: - - type: Transform - pos: -15.5,24.5 - parent: 1 - - uid: 12141 - components: - - type: Transform - pos: -14.5,24.5 - parent: 1 - - uid: 12142 - components: - - type: Transform - pos: -13.5,24.5 - parent: 1 - - uid: 12143 - components: - - type: Transform - pos: -12.5,24.5 - parent: 1 - - uid: 12144 - components: - - type: Transform - pos: -11.5,24.5 - parent: 1 - - uid: 12145 - components: - - type: Transform - pos: -10.5,24.5 - parent: 1 - - uid: 12146 - components: - - type: Transform - pos: -10.5,23.5 - parent: 1 - - uid: 12147 - components: - - type: Transform - pos: -10.5,22.5 - parent: 1 - - uid: 12148 - components: - - type: Transform - pos: -10.5,21.5 - parent: 1 - - uid: 12149 - components: - - type: Transform - pos: -11.5,21.5 - parent: 1 - - uid: 12150 - components: - - type: Transform - pos: -11.5,20.5 - parent: 1 - - uid: 12151 - components: - - type: Transform - pos: -11.5,19.5 - parent: 1 - - uid: 12152 - components: - - type: Transform - pos: -11.5,18.5 - parent: 1 - - uid: 12153 - components: - - type: Transform - pos: -18.5,24.5 - parent: 1 - - uid: 12154 - components: - - type: Transform - pos: -19.5,24.5 - parent: 1 - - uid: 12155 - components: - - type: Transform - pos: -20.5,24.5 - parent: 1 - - uid: 12156 - components: - - type: Transform - pos: -20.5,23.5 - parent: 1 - - uid: 12157 - components: - - type: Transform - pos: -20.5,22.5 - parent: 1 - - uid: 12158 - components: - - type: Transform - pos: -20.5,21.5 - parent: 1 - - uid: 12159 - components: - - type: Transform - pos: -20.5,20.5 - parent: 1 - - uid: 12160 - components: - - type: Transform - pos: -20.5,19.5 - parent: 1 - - uid: 12161 - components: - - type: Transform - pos: -20.5,18.5 - parent: 1 - - uid: 12162 - components: - - type: Transform - pos: -20.5,17.5 - parent: 1 - - uid: 12163 - components: - - type: Transform - pos: -19.5,18.5 - parent: 1 - - uid: 12164 - components: - - type: Transform - pos: -18.5,18.5 - parent: 1 - - uid: 12165 - components: - - type: Transform - pos: -17.5,18.5 - parent: 1 - - uid: 12166 - components: - - type: Transform - pos: -16.5,18.5 - parent: 1 - - uid: 12167 - components: - - type: Transform - pos: -15.5,18.5 - parent: 1 - - uid: 12168 - components: - - type: Transform - pos: -14.5,18.5 - parent: 1 - - uid: 12169 - components: - - type: Transform - pos: -16.5,19.5 - parent: 1 - - uid: 12170 - components: - - type: Transform - pos: -16.5,20.5 - parent: 1 - - uid: 12171 - components: - - type: Transform - pos: -16.5,21.5 - parent: 1 - - uid: 12172 - components: - - type: Transform - pos: -16.5,22.5 - parent: 1 - - uid: 12173 - components: - - type: Transform - pos: -21.5,23.5 - parent: 1 - - uid: 12174 - components: - - type: Transform - pos: -22.5,23.5 - parent: 1 - - uid: 12175 - components: - - type: Transform - pos: -23.5,23.5 - parent: 1 - - uid: 12176 - components: - - type: Transform - pos: -24.5,23.5 - parent: 1 - - uid: 12177 - components: - - type: Transform - pos: -25.5,23.5 - parent: 1 - - uid: 12178 - components: - - type: Transform - pos: -24.5,22.5 - parent: 1 - - uid: 12179 - components: - - type: Transform - pos: -24.5,21.5 - parent: 1 - - uid: 12180 - components: - - type: Transform - pos: -24.5,20.5 - parent: 1 - - uid: 12181 - components: - - type: Transform - pos: -24.5,19.5 - parent: 1 - - uid: 12182 - components: - - type: Transform - pos: -20.5,27.5 - parent: 1 - - uid: 12183 - components: - - type: Transform - pos: -21.5,27.5 - parent: 1 - - uid: 12184 - components: - - type: Transform - pos: -22.5,27.5 - parent: 1 - - uid: 12185 - components: - - type: Transform - pos: -23.5,27.5 - parent: 1 - - uid: 12186 - components: - - type: Transform - pos: -23.5,28.5 - parent: 1 - - uid: 12187 - components: - - type: Transform - pos: -23.5,29.5 - parent: 1 - - uid: 12188 - components: - - type: Transform - pos: -23.5,30.5 - parent: 1 - - uid: 12189 - components: - - type: Transform - pos: -23.5,31.5 - parent: 1 - - uid: 12190 - components: - - type: Transform - pos: -23.5,32.5 - parent: 1 - - uid: 12191 - components: - - type: Transform - pos: -23.5,33.5 - parent: 1 - - uid: 12192 - components: - - type: Transform - pos: -23.5,34.5 - parent: 1 - - uid: 12193 - components: - - type: Transform - pos: -23.5,35.5 - parent: 1 - - uid: 12194 - components: - - type: Transform - pos: -23.5,26.5 - parent: 1 - - uid: 12195 - components: - - type: Transform - pos: -23.5,25.5 - parent: 1 - - uid: 12196 - components: - - type: Transform - pos: -24.5,25.5 - parent: 1 - - uid: 12197 - components: - - type: Transform - pos: -25.5,25.5 - parent: 1 - - uid: 12198 - components: - - type: Transform - pos: -26.5,25.5 - parent: 1 - - uid: 12199 - components: - - type: Transform - pos: -27.5,25.5 - parent: 1 - - uid: 12200 - components: - - type: Transform - pos: -27.5,24.5 - parent: 1 - - uid: 12201 - components: - - type: Transform - pos: -27.5,23.5 - parent: 1 - - uid: 12202 - components: - - type: Transform - pos: -27.5,22.5 - parent: 1 - - uid: 12203 - components: - - type: Transform - pos: -27.5,21.5 - parent: 1 - - uid: 12204 - components: - - type: Transform - pos: -27.5,20.5 - parent: 1 - - uid: 12205 - components: - - type: Transform - pos: -27.5,19.5 - parent: 1 - - uid: 12206 - components: - - type: Transform - pos: -27.5,18.5 - parent: 1 - - uid: 12207 - components: - - type: Transform - pos: -27.5,17.5 - parent: 1 - - uid: 12208 - components: - - type: Transform - pos: -26.5,17.5 - parent: 1 - - uid: 12209 - components: - - type: Transform - pos: -25.5,17.5 - parent: 1 - - uid: 12210 - components: - - type: Transform - pos: -28.5,23.5 - parent: 1 - - uid: 12211 - components: - - type: Transform - pos: -25.5,32.5 - parent: 1 - - uid: 12212 - components: - - type: Transform - pos: -26.5,32.5 - parent: 1 - - uid: 12213 - components: - - type: Transform - pos: -27.5,32.5 - parent: 1 - - uid: 12214 - components: - - type: Transform - pos: -28.5,32.5 - parent: 1 - - uid: 12215 - components: - - type: Transform - pos: -28.5,33.5 - parent: 1 - - uid: 12216 - components: - - type: Transform - pos: -29.5,33.5 - parent: 1 - - uid: 12217 - components: - - type: Transform - pos: -30.5,33.5 - parent: 1 - - uid: 12218 - components: - - type: Transform - pos: -30.5,32.5 - parent: 1 - - uid: 12219 - components: - - type: Transform - pos: -30.5,31.5 - parent: 1 - - uid: 12220 - components: - - type: Transform - pos: -30.5,30.5 - parent: 1 - - uid: 12221 - components: - - type: Transform - pos: -30.5,29.5 - parent: 1 - - uid: 12222 - components: - - type: Transform - pos: -30.5,28.5 - parent: 1 - - uid: 12223 - components: - - type: Transform - pos: -30.5,27.5 - parent: 1 - - uid: 12224 - components: - - type: Transform - pos: -30.5,26.5 - parent: 1 - - uid: 12225 - components: - - type: Transform - pos: -30.5,25.5 - parent: 1 - - uid: 12226 - components: - - type: Transform - pos: -30.5,24.5 - parent: 1 - - uid: 12227 - components: - - type: Transform - pos: -30.5,23.5 - parent: 1 - - uid: 12228 - components: - - type: Transform - pos: -30.5,22.5 - parent: 1 - - uid: 12229 - components: - - type: Transform - pos: -30.5,21.5 - parent: 1 - - uid: 12230 - components: - - type: Transform - pos: -30.5,20.5 - parent: 1 - - uid: 12231 - components: - - type: Transform - pos: -30.5,19.5 - parent: 1 - - uid: 12232 - components: - - type: Transform - pos: -30.5,18.5 - parent: 1 - - uid: 12233 - components: - - type: Transform - pos: -30.5,17.5 - parent: 1 - - uid: 12234 - components: - - type: Transform - pos: -27.5,31.5 - parent: 1 - - uid: 12235 - components: - - type: Transform - pos: -27.5,30.5 - parent: 1 - - uid: 12246 - components: - - type: Transform - pos: -8.5,23.5 - parent: 1 - - uid: 12247 - components: - - type: Transform - pos: -7.5,23.5 - parent: 1 - - uid: 12248 - components: - - type: Transform - pos: -6.5,23.5 - parent: 1 - - uid: 12249 - components: - - type: Transform - pos: -5.5,23.5 - parent: 1 - - uid: 12250 - components: - - type: Transform - pos: -4.5,23.5 - parent: 1 - - uid: 12251 - components: - - type: Transform - pos: -3.5,23.5 - parent: 1 - - uid: 12252 - components: - - type: Transform - pos: -5.5,22.5 - parent: 1 - - uid: 12253 - components: - - type: Transform - pos: -5.5,21.5 - parent: 1 - - uid: 12254 - components: - - type: Transform - pos: -5.5,20.5 - parent: 1 - - uid: 12255 - components: - - type: Transform - pos: -5.5,19.5 - parent: 1 - - uid: 12256 - components: - - type: Transform - pos: -5.5,18.5 - parent: 1 - - uid: 12257 - components: - - type: Transform - pos: -5.5,17.5 - parent: 1 - - uid: 12258 - components: - - type: Transform - pos: -4.5,19.5 - parent: 1 - - uid: 12259 - components: - - type: Transform - pos: -3.5,19.5 - parent: 1 - - uid: 12260 - components: - - type: Transform - pos: -2.5,19.5 - parent: 1 - - uid: 12261 - components: - - type: Transform - pos: -1.5,19.5 - parent: 1 - - uid: 12262 - components: - - type: Transform - pos: -1.5,20.5 - parent: 1 - - uid: 12263 - components: - - type: Transform - pos: -1.5,21.5 - parent: 1 - - uid: 12264 - components: - - type: Transform - pos: -1.5,22.5 - parent: 1 - - uid: 12265 - components: - - type: Transform - pos: -1.5,23.5 - parent: 1 - - uid: 12266 - components: - - type: Transform - pos: -1.5,24.5 - parent: 1 - - uid: 12267 - components: - - type: Transform - pos: -1.5,25.5 - parent: 1 - - uid: 12268 - components: - - type: Transform - pos: -1.5,26.5 - parent: 1 - - uid: 12269 - components: - - type: Transform - pos: -1.5,27.5 - parent: 1 - - uid: 12270 - components: - - type: Transform - pos: -1.5,28.5 - parent: 1 - - uid: 12271 - components: - - type: Transform - pos: -1.5,29.5 - parent: 1 - - uid: 12272 - components: - - type: Transform - pos: -1.5,30.5 - parent: 1 - - uid: 12273 - components: - - type: Transform - pos: -1.5,31.5 - parent: 1 - - uid: 12274 - components: - - type: Transform - pos: -1.5,32.5 - parent: 1 - - uid: 12275 - components: - - type: Transform - pos: -1.5,33.5 - parent: 1 - - uid: 12276 - components: - - type: Transform - pos: -1.5,34.5 - parent: 1 - - uid: 12277 - components: - - type: Transform - pos: -5.5,16.5 - parent: 1 - - uid: 12278 - components: - - type: Transform - pos: -5.5,15.5 - parent: 1 - - uid: 12279 - components: - - type: Transform - pos: -6.5,15.5 - parent: 1 - - uid: 12280 - components: - - type: Transform - pos: -7.5,15.5 - parent: 1 - - uid: 12281 - components: - - type: Transform - pos: -8.5,15.5 - parent: 1 - - uid: 12282 - components: - - type: Transform - pos: -9.5,15.5 - parent: 1 - - uid: 12283 - components: - - type: Transform - pos: -10.5,15.5 - parent: 1 - - uid: 12284 - components: - - type: Transform - pos: -11.5,15.5 - parent: 1 - - uid: 12285 - components: - - type: Transform - pos: -12.5,15.5 - parent: 1 - - uid: 12286 - components: - - type: Transform - pos: -4.5,15.5 - parent: 1 - - uid: 12287 - components: - - type: Transform - pos: -3.5,15.5 - parent: 1 - - uid: 12288 - components: - - type: Transform - pos: -2.5,15.5 - parent: 1 - - uid: 12289 - components: - - type: Transform - pos: -1.5,15.5 - parent: 1 - - uid: 12326 - components: - - type: Transform - pos: -35.5,25.5 - parent: 1 - - uid: 12327 - components: - - type: Transform - pos: -36.5,25.5 - parent: 1 - - uid: 12328 - components: - - type: Transform - pos: -37.5,25.5 - parent: 1 - - uid: 12329 - components: - - type: Transform - pos: -38.5,25.5 - parent: 1 - - uid: 12330 - components: - - type: Transform - pos: -39.5,25.5 - parent: 1 - - uid: 12331 - components: - - type: Transform - pos: -40.5,25.5 - parent: 1 - - uid: 12332 - components: - - type: Transform - pos: -41.5,25.5 - parent: 1 - - uid: 12333 - components: - - type: Transform - pos: -42.5,25.5 - parent: 1 - - uid: 12337 - components: - - type: Transform - pos: -38.5,26.5 - parent: 1 - - uid: 12338 - components: - - type: Transform - pos: -38.5,27.5 - parent: 1 - - uid: 12339 - components: - - type: Transform - pos: -38.5,28.5 - parent: 1 - - uid: 12340 - components: - - type: Transform - pos: -38.5,29.5 - parent: 1 - - uid: 12341 - components: - - type: Transform - pos: -38.5,30.5 - parent: 1 - - uid: 12342 - components: - - type: Transform - pos: -38.5,24.5 - parent: 1 - - uid: 12343 - components: - - type: Transform - pos: -38.5,23.5 - parent: 1 - - uid: 12344 - components: - - type: Transform - pos: -38.5,22.5 - parent: 1 - - uid: 12345 - components: - - type: Transform - pos: -38.5,21.5 - parent: 1 - - uid: 12346 - components: - - type: Transform - pos: -38.5,20.5 - parent: 1 - - uid: 12347 - components: - - type: Transform - pos: -38.5,19.5 - parent: 1 - - uid: 12348 - components: - - type: Transform - pos: -38.5,18.5 - parent: 1 - - uid: 12349 - components: - - type: Transform - pos: -38.5,17.5 - parent: 1 - - uid: 12350 - components: - - type: Transform - pos: -37.5,17.5 - parent: 1 - - uid: 12351 - components: - - type: Transform - pos: -37.5,16.5 - parent: 1 - - uid: 12352 - components: - - type: Transform - pos: -37.5,15.5 - parent: 1 - - uid: 12353 - components: - - type: Transform - pos: -38.5,15.5 - parent: 1 - - uid: 12354 - components: - - type: Transform - pos: -39.5,15.5 - parent: 1 - - uid: 12355 - components: - - type: Transform - pos: -40.5,15.5 - parent: 1 - - uid: 12356 - components: - - type: Transform - pos: -41.5,15.5 - parent: 1 - - uid: 12357 - components: - - type: Transform - pos: -42.5,15.5 - parent: 1 - - uid: 12358 - components: - - type: Transform - pos: -43.5,15.5 - parent: 1 - - uid: 12359 - components: - - type: Transform - pos: -44.5,15.5 - parent: 1 - - uid: 12360 - components: - - type: Transform - pos: -45.5,15.5 - parent: 1 - - uid: 12361 - components: - - type: Transform - pos: -46.5,15.5 - parent: 1 - - uid: 12362 - components: - - type: Transform - pos: -47.5,15.5 - parent: 1 - - uid: 12363 - components: - - type: Transform - pos: -48.5,15.5 - parent: 1 - - uid: 12364 - components: - - type: Transform - pos: -49.5,15.5 - parent: 1 - - uid: 12365 - components: - - type: Transform - pos: -50.5,15.5 - parent: 1 - - uid: 12366 - components: - - type: Transform - pos: -52.5,15.5 - parent: 1 - - uid: 12367 - components: - - type: Transform - pos: -51.5,15.5 - parent: 1 - - uid: 12368 - components: - - type: Transform - pos: -49.5,16.5 - parent: 1 - - uid: 12369 - components: - - type: Transform - pos: -49.5,17.5 - parent: 1 - - uid: 12370 - components: - - type: Transform - pos: -47.5,16.5 - parent: 1 - - uid: 12371 - components: - - type: Transform - pos: -47.5,17.5 - parent: 1 - - uid: 12372 - components: - - type: Transform - pos: -49.5,14.5 - parent: 1 - - uid: 12373 - components: - - type: Transform - pos: -49.5,13.5 - parent: 1 - - uid: 12374 - components: - - type: Transform - pos: -50.5,13.5 - parent: 1 - - uid: 12375 - components: - - type: Transform - pos: -51.5,13.5 - parent: 1 - - uid: 12376 - components: - - type: Transform - pos: -52.5,13.5 - parent: 1 - - uid: 12377 - components: - - type: Transform - pos: -36.5,15.5 - parent: 1 - - uid: 12378 - components: - - type: Transform - pos: -35.5,15.5 - parent: 1 - - uid: 12379 - components: - - type: Transform - pos: -35.5,16.5 - parent: 1 - - uid: 12380 - components: - - type: Transform - pos: -35.5,17.5 - parent: 1 - - uid: 12381 - components: - - type: Transform - pos: -35.5,18.5 - parent: 1 - - uid: 12382 - components: - - type: Transform - pos: -35.5,19.5 - parent: 1 - - uid: 12383 - components: - - type: Transform - pos: -35.5,20.5 - parent: 1 - - uid: 12384 - components: - - type: Transform - pos: -35.5,21.5 - parent: 1 - - uid: 12385 - components: - - type: Transform - pos: -34.5,21.5 - parent: 1 - - uid: 12386 - components: - - type: Transform - pos: -34.5,22.5 - parent: 1 - - uid: 12387 - components: - - type: Transform - pos: -34.5,23.5 - parent: 1 - - uid: 12388 - components: - - type: Transform - pos: -34.5,24.5 - parent: 1 - - uid: 12389 - components: - - type: Transform - pos: -34.5,25.5 - parent: 1 - - uid: 12390 - components: - - type: Transform - pos: -34.5,26.5 - parent: 1 - - uid: 12391 - components: - - type: Transform - pos: -34.5,27.5 - parent: 1 - - uid: 12392 - components: - - type: Transform - pos: -34.5,28.5 - parent: 1 - - uid: 12393 - components: - - type: Transform - pos: -34.5,29.5 - parent: 1 - - uid: 12394 - components: - - type: Transform - pos: -34.5,30.5 - parent: 1 - - uid: 12395 - components: - - type: Transform - pos: -34.5,31.5 - parent: 1 - - uid: 12396 - components: - - type: Transform - pos: -34.5,32.5 - parent: 1 - - uid: 12397 - components: - - type: Transform - pos: -34.5,33.5 - parent: 1 - - uid: 12398 - components: - - type: Transform - pos: -35.5,33.5 - parent: 1 - - uid: 12399 - components: - - type: Transform - pos: -36.5,33.5 - parent: 1 - - uid: 12400 - components: - - type: Transform - pos: -37.5,33.5 - parent: 1 - - uid: 12401 - components: - - type: Transform - pos: -38.5,33.5 - parent: 1 - - uid: 12402 - components: - - type: Transform - pos: -38.5,34.5 - parent: 1 - - uid: 12543 - components: - - type: Transform - pos: 41.5,41.5 - parent: 1 - - uid: 12544 - components: - - type: Transform - pos: 41.5,42.5 - parent: 1 - - uid: 12545 - components: - - type: Transform - pos: 41.5,43.5 - parent: 1 - - uid: 12546 - components: - - type: Transform - pos: 41.5,44.5 - parent: 1 - - uid: 12547 - components: - - type: Transform - pos: 42.5,44.5 - parent: 1 - - uid: 12548 - components: - - type: Transform - pos: 43.5,44.5 - parent: 1 - - uid: 12549 - components: - - type: Transform - pos: 44.5,44.5 - parent: 1 - - uid: 12550 - components: - - type: Transform - pos: 44.5,43.5 - parent: 1 - - uid: 12551 - components: - - type: Transform - pos: 45.5,43.5 - parent: 1 - - uid: 12552 - components: - - type: Transform - pos: 46.5,43.5 - parent: 1 - - uid: 12553 - components: - - type: Transform - pos: 47.5,43.5 - parent: 1 - - uid: 12554 - components: - - type: Transform - pos: 48.5,43.5 - parent: 1 - - uid: 12555 - components: - - type: Transform - pos: 48.5,42.5 - parent: 1 - - uid: 12556 - components: - - type: Transform - pos: 48.5,41.5 - parent: 1 - - uid: 12557 - components: - - type: Transform - pos: 48.5,40.5 - parent: 1 - - uid: 12558 - components: - - type: Transform - pos: 48.5,39.5 - parent: 1 - - uid: 12559 - components: - - type: Transform - pos: 48.5,38.5 - parent: 1 - - uid: 12560 - components: - - type: Transform - pos: 48.5,37.5 - parent: 1 - - uid: 12561 - components: - - type: Transform - pos: 48.5,36.5 - parent: 1 - - uid: 12562 - components: - - type: Transform - pos: 48.5,35.5 - parent: 1 - - uid: 12563 - components: - - type: Transform - pos: 48.5,34.5 - parent: 1 - - uid: 12564 - components: - - type: Transform - pos: 47.5,36.5 - parent: 1 - - uid: 12565 - components: - - type: Transform - pos: 46.5,36.5 - parent: 1 - - uid: 12566 - components: - - type: Transform - pos: 45.5,36.5 - parent: 1 - - uid: 12567 - components: - - type: Transform - pos: 44.5,36.5 - parent: 1 - - uid: 12568 - components: - - type: Transform - pos: 43.5,36.5 - parent: 1 - - uid: 12569 - components: - - type: Transform - pos: 42.5,36.5 - parent: 1 - - uid: 12570 - components: - - type: Transform - pos: 41.5,36.5 - parent: 1 - - uid: 12571 - components: - - type: Transform - pos: 40.5,36.5 - parent: 1 - - uid: 12572 - components: - - type: Transform - pos: 39.5,36.5 - parent: 1 - - uid: 12573 - components: - - type: Transform - pos: 38.5,36.5 - parent: 1 - - uid: 12574 - components: - - type: Transform - pos: 37.5,36.5 - parent: 1 - - uid: 12575 - components: - - type: Transform - pos: 36.5,36.5 - parent: 1 - - uid: 12576 - components: - - type: Transform - pos: 35.5,36.5 - parent: 1 - - uid: 12577 - components: - - type: Transform - pos: 34.5,36.5 - parent: 1 - - uid: 12578 - components: - - type: Transform - pos: 34.5,37.5 - parent: 1 - - uid: 12579 - components: - - type: Transform - pos: 34.5,38.5 - parent: 1 - - uid: 12580 - components: - - type: Transform - pos: 34.5,39.5 - parent: 1 - - uid: 12581 - components: - - type: Transform - pos: 34.5,40.5 - parent: 1 - - uid: 12582 - components: - - type: Transform - pos: 35.5,40.5 - parent: 1 - - uid: 12583 - components: - - type: Transform - pos: 36.5,40.5 - parent: 1 - - uid: 12584 - components: - - type: Transform - pos: 37.5,40.5 - parent: 1 - - uid: 12585 - components: - - type: Transform - pos: 38.5,40.5 - parent: 1 - - uid: 12586 - components: - - type: Transform - pos: 39.5,40.5 - parent: 1 - - uid: 12587 - components: - - type: Transform - pos: 39.5,41.5 - parent: 1 - - uid: 12588 - components: - - type: Transform - pos: 39.5,42.5 - parent: 1 - - uid: 12589 - components: - - type: Transform - pos: 39.5,43.5 - parent: 1 - - uid: 12590 - components: - - type: Transform - pos: 39.5,44.5 - parent: 1 - - uid: 12591 - components: - - type: Transform - pos: 40.5,43.5 - parent: 1 - - uid: 12592 - components: - - type: Transform - pos: 38.5,44.5 - parent: 1 - - uid: 12593 - components: - - type: Transform - pos: 38.5,45.5 - parent: 1 - - uid: 12594 - components: - - type: Transform - pos: 38.5,46.5 - parent: 1 - - uid: 12595 - components: - - type: Transform - pos: 38.5,47.5 - parent: 1 - - uid: 12596 - components: - - type: Transform - pos: 38.5,48.5 - parent: 1 - - uid: 12597 - components: - - type: Transform - pos: 39.5,48.5 - parent: 1 - - uid: 12598 - components: - - type: Transform - pos: 40.5,48.5 - parent: 1 - - uid: 12599 - components: - - type: Transform - pos: 41.5,48.5 - parent: 1 - - uid: 12600 - components: - - type: Transform - pos: 42.5,48.5 - parent: 1 - - uid: 12601 - components: - - type: Transform - pos: 43.5,48.5 - parent: 1 - - uid: 12602 - components: - - type: Transform - pos: 42.5,49.5 - parent: 1 - - uid: 12603 - components: - - type: Transform - pos: 42.5,50.5 - parent: 1 - - uid: 12604 - components: - - type: Transform - pos: 42.5,51.5 - parent: 1 - - uid: 12605 - components: - - type: Transform - pos: 43.5,47.5 - parent: 1 - - uid: 12606 - components: - - type: Transform - pos: 43.5,46.5 - parent: 1 - - uid: 12607 - components: - - type: Transform - pos: 44.5,46.5 - parent: 1 - - uid: 12608 - components: - - type: Transform - pos: 45.5,46.5 - parent: 1 - - uid: 12609 - components: - - type: Transform - pos: 43.5,37.5 - parent: 1 - - uid: 12610 - components: - - type: Transform - pos: 43.5,38.5 - parent: 1 - - uid: 12611 - components: - - type: Transform - pos: 43.5,39.5 - parent: 1 - - uid: 12612 - components: - - type: Transform - pos: 43.5,40.5 - parent: 1 - - uid: 12613 - components: - - type: Transform - pos: 43.5,41.5 - parent: 1 - - uid: 12614 - components: - - type: Transform - pos: 43.5,42.5 - parent: 1 - - uid: 12615 - components: - - type: Transform - pos: 43.5,43.5 - parent: 1 - - uid: 12616 - components: - - type: Transform - pos: 46.5,35.5 - parent: 1 - - uid: 12617 - components: - - type: Transform - pos: 46.5,34.5 - parent: 1 - - uid: 12618 - components: - - type: Transform - pos: 50.5,36.5 - parent: 1 - - uid: 12619 - components: - - type: Transform - pos: 51.5,36.5 - parent: 1 - - uid: 12620 - components: - - type: Transform - pos: 51.5,38.5 - parent: 1 - - uid: 12621 - components: - - type: Transform - pos: 50.5,38.5 - parent: 1 - - uid: 12622 - components: - - type: Transform - pos: 49.5,38.5 - parent: 1 - - uid: 12623 - components: - - type: Transform - pos: 49.5,36.5 - parent: 1 - - uid: 12624 - components: - - type: Transform - pos: 27.5,51.5 - parent: 1 - - uid: 12625 - components: - - type: Transform - pos: 27.5,50.5 - parent: 1 - - uid: 12626 - components: - - type: Transform - pos: 27.5,49.5 - parent: 1 - - uid: 12627 - components: - - type: Transform - pos: 27.5,48.5 - parent: 1 - - uid: 12628 - components: - - type: Transform - pos: 27.5,47.5 - parent: 1 - - uid: 12629 - components: - - type: Transform - pos: 27.5,46.5 - parent: 1 - - uid: 12630 - components: - - type: Transform - pos: 27.5,45.5 - parent: 1 - - uid: 12631 - components: - - type: Transform - pos: 27.5,44.5 - parent: 1 - - uid: 12632 - components: - - type: Transform - pos: 27.5,43.5 - parent: 1 - - uid: 12633 - components: - - type: Transform - pos: 28.5,43.5 - parent: 1 - - uid: 12634 - components: - - type: Transform - pos: 29.5,43.5 - parent: 1 - - uid: 12635 - components: - - type: Transform - pos: 30.5,43.5 - parent: 1 - - uid: 12636 - components: - - type: Transform - pos: 31.5,43.5 - parent: 1 - - uid: 12637 - components: - - type: Transform - pos: 32.5,43.5 - parent: 1 - - uid: 12638 - components: - - type: Transform - pos: 33.5,43.5 - parent: 1 - - uid: 12639 - components: - - type: Transform - pos: 34.5,43.5 - parent: 1 - - uid: 12640 - components: - - type: Transform - pos: 34.5,44.5 - parent: 1 - - uid: 12641 - components: - - type: Transform - pos: 34.5,45.5 - parent: 1 - - uid: 12642 - components: - - type: Transform - pos: 34.5,46.5 - parent: 1 - - uid: 12643 - components: - - type: Transform - pos: 34.5,47.5 - parent: 1 - - uid: 12644 - components: - - type: Transform - pos: 34.5,48.5 - parent: 1 - - uid: 12645 - components: - - type: Transform - pos: 34.5,49.5 - parent: 1 - - uid: 12646 - components: - - type: Transform - pos: 33.5,49.5 - parent: 1 - - uid: 12647 - components: - - type: Transform - pos: 32.5,49.5 - parent: 1 - - uid: 12648 - components: - - type: Transform - pos: 31.5,49.5 - parent: 1 - - uid: 12649 - components: - - type: Transform - pos: 30.5,49.5 - parent: 1 - - uid: 12650 - components: - - type: Transform - pos: 29.5,49.5 - parent: 1 - - uid: 12651 - components: - - type: Transform - pos: 28.5,49.5 - parent: 1 - - uid: 12652 - components: - - type: Transform - pos: 31.5,50.5 - parent: 1 - - uid: 12653 - components: - - type: Transform - pos: 31.5,51.5 - parent: 1 - - uid: 12654 - components: - - type: Transform - pos: 32.5,51.5 - parent: 1 - - uid: 12655 - components: - - type: Transform - pos: 32.5,52.5 - parent: 1 - - uid: 12656 - components: - - type: Transform - pos: 32.5,53.5 - parent: 1 - - uid: 12657 - components: - - type: Transform - pos: 32.5,54.5 - parent: 1 - - uid: 12658 - components: - - type: Transform - pos: 32.5,55.5 - parent: 1 - - uid: 12659 - components: - - type: Transform - pos: 32.5,56.5 - parent: 1 - - uid: 12660 - components: - - type: Transform - pos: 31.5,55.5 - parent: 1 - - uid: 12661 - components: - - type: Transform - pos: 30.5,55.5 - parent: 1 - - uid: 12662 - components: - - type: Transform - pos: 33.5,55.5 - parent: 1 - - uid: 12663 - components: - - type: Transform - pos: 34.5,55.5 - parent: 1 - - uid: 12664 - components: - - type: Transform - pos: 33.5,51.5 - parent: 1 - - uid: 12665 - components: - - type: Transform - pos: 34.5,51.5 - parent: 1 - - uid: 12666 - components: - - type: Transform - pos: 35.5,51.5 - parent: 1 - - uid: 12667 - components: - - type: Transform - pos: 36.5,51.5 - parent: 1 - - uid: 12668 - components: - - type: Transform - pos: 36.5,52.5 - parent: 1 - - uid: 12669 - components: - - type: Transform - pos: 36.5,53.5 - parent: 1 - - uid: 12670 - components: - - type: Transform - pos: 36.5,54.5 - parent: 1 - - uid: 12671 - components: - - type: Transform - pos: 36.5,50.5 - parent: 1 - - uid: 12672 - components: - - type: Transform - pos: 36.5,49.5 - parent: 1 - - uid: 12673 - components: - - type: Transform - pos: 36.5,48.5 - parent: 1 - - uid: 12674 - components: - - type: Transform - pos: 36.5,47.5 - parent: 1 - - uid: 12675 - components: - - type: Transform - pos: 36.5,46.5 - parent: 1 - - uid: 12676 - components: - - type: Transform - pos: 36.5,45.5 - parent: 1 - - uid: 12677 - components: - - type: Transform - pos: 36.5,44.5 - parent: 1 - - uid: 12678 - components: - - type: Transform - pos: 36.5,43.5 - parent: 1 - - uid: 12679 - components: - - type: Transform - pos: 30.5,42.5 - parent: 1 - - uid: 12680 - components: - - type: Transform - pos: 30.5,41.5 - parent: 1 - - uid: 12681 - components: - - type: Transform - pos: 30.5,40.5 - parent: 1 - - uid: 12682 - components: - - type: Transform - pos: 30.5,39.5 - parent: 1 - - uid: 12683 - components: - - type: Transform - pos: 30.5,38.5 - parent: 1 - - uid: 12684 - components: - - type: Transform - pos: 29.5,38.5 - parent: 1 - - uid: 12685 - components: - - type: Transform - pos: 28.5,38.5 - parent: 1 - - uid: 12686 - components: - - type: Transform - pos: 27.5,38.5 - parent: 1 - - uid: 12687 - components: - - type: Transform - pos: 26.5,38.5 - parent: 1 - - uid: 12688 - components: - - type: Transform - pos: 25.5,38.5 - parent: 1 - - uid: 12689 - components: - - type: Transform - pos: 26.5,47.5 - parent: 1 - - uid: 12690 - components: - - type: Transform - pos: 25.5,47.5 - parent: 1 - - uid: 12691 - components: - - type: Transform - pos: 26.5,50.5 - parent: 1 - - uid: 12692 - components: - - type: Transform - pos: 25.5,50.5 - parent: 1 - - uid: 12693 - components: - - type: Transform - pos: 25.5,51.5 - parent: 1 - - uid: 12694 - components: - - type: Transform - pos: 25.5,52.5 - parent: 1 - - uid: 12695 - components: - - type: Transform - pos: 25.5,53.5 - parent: 1 - - uid: 12696 - components: - - type: Transform - pos: 25.5,54.5 - parent: 1 - - uid: 12697 - components: - - type: Transform - pos: 24.5,51.5 - parent: 1 - - uid: 12698 - components: - - type: Transform - pos: 23.5,51.5 - parent: 1 - - uid: 12699 - components: - - type: Transform - pos: 22.5,51.5 - parent: 1 - - uid: 12700 - components: - - type: Transform - pos: 22.5,52.5 - parent: 1 - - uid: 12701 - components: - - type: Transform - pos: 22.5,53.5 - parent: 1 - - uid: 12702 - components: - - type: Transform - pos: 22.5,54.5 - parent: 1 - - uid: 12703 - components: - - type: Transform - pos: 22.5,55.5 - parent: 1 - - uid: 12704 - components: - - type: Transform - pos: 22.5,56.5 - parent: 1 - - uid: 12705 - components: - - type: Transform - pos: 22.5,57.5 - parent: 1 - - uid: 12706 - components: - - type: Transform - pos: 23.5,57.5 - parent: 1 - - uid: 12707 - components: - - type: Transform - pos: 24.5,57.5 - parent: 1 - - uid: 12708 - components: - - type: Transform - pos: 25.5,57.5 - parent: 1 - - uid: 12709 - components: - - type: Transform - pos: 26.5,57.5 - parent: 1 - - uid: 12710 - components: - - type: Transform - pos: 27.5,57.5 - parent: 1 - - uid: 12711 - components: - - type: Transform - pos: 28.5,57.5 - parent: 1 - - uid: 12712 - components: - - type: Transform - pos: 28.5,56.5 - parent: 1 - - uid: 12713 - components: - - type: Transform - pos: 28.5,55.5 - parent: 1 - - uid: 12714 - components: - - type: Transform - pos: 28.5,54.5 - parent: 1 - - uid: 12715 - components: - - type: Transform - pos: 28.5,53.5 - parent: 1 - - uid: 12716 - components: - - type: Transform - pos: 28.5,52.5 - parent: 1 - - uid: 12717 - components: - - type: Transform - pos: 29.5,52.5 - parent: 1 - - uid: 12718 - components: - - type: Transform - pos: 29.5,51.5 - parent: 1 - - uid: 12719 - components: - - type: Transform - pos: 30.5,51.5 - parent: 1 - - uid: 12720 - components: - - type: Transform - pos: 24.5,42.5 - parent: 1 - - uid: 12721 - components: - - type: Transform - pos: 23.5,42.5 - parent: 1 - - uid: 12722 - components: - - type: Transform - pos: 22.5,42.5 - parent: 1 - - uid: 12723 - components: - - type: Transform - pos: 21.5,42.5 - parent: 1 - - uid: 12724 - components: - - type: Transform - pos: 20.5,42.5 - parent: 1 - - uid: 12725 - components: - - type: Transform - pos: 19.5,42.5 - parent: 1 - - uid: 12726 - components: - - type: Transform - pos: 18.5,42.5 - parent: 1 - - uid: 12727 - components: - - type: Transform - pos: 17.5,42.5 - parent: 1 - - uid: 12728 - components: - - type: Transform - pos: 25.5,42.5 - parent: 1 - - uid: 12729 - components: - - type: Transform - pos: 25.5,43.5 - parent: 1 - - uid: 12730 - components: - - type: Transform - pos: 25.5,44.5 - parent: 1 - - uid: 12731 - components: - - type: Transform - pos: 25.5,45.5 - parent: 1 - - uid: 12732 - components: - - type: Transform - pos: 24.5,45.5 - parent: 1 - - uid: 12733 - components: - - type: Transform - pos: 23.5,45.5 - parent: 1 - - uid: 12734 - components: - - type: Transform - pos: 22.5,45.5 - parent: 1 - - uid: 12735 - components: - - type: Transform - pos: 22.5,46.5 - parent: 1 - - uid: 12736 - components: - - type: Transform - pos: 22.5,47.5 - parent: 1 - - uid: 12737 - components: - - type: Transform - pos: 22.5,48.5 - parent: 1 - - uid: 12738 - components: - - type: Transform - pos: 22.5,49.5 - parent: 1 - - uid: 12739 - components: - - type: Transform - pos: 21.5,49.5 - parent: 1 - - uid: 12740 - components: - - type: Transform - pos: 20.5,49.5 - parent: 1 - - uid: 12741 - components: - - type: Transform - pos: 19.5,49.5 - parent: 1 - - uid: 12742 - components: - - type: Transform - pos: 18.5,49.5 - parent: 1 - - uid: 12743 - components: - - type: Transform - pos: 17.5,49.5 - parent: 1 - - uid: 12744 - components: - - type: Transform - pos: 16.5,49.5 - parent: 1 - - uid: 12745 - components: - - type: Transform - pos: 16.5,50.5 - parent: 1 - - uid: 12746 - components: - - type: Transform - pos: 16.5,51.5 - parent: 1 - - uid: 12747 - components: - - type: Transform - pos: 16.5,52.5 - parent: 1 - - uid: 12748 - components: - - type: Transform - pos: 17.5,52.5 - parent: 1 - - uid: 12749 - components: - - type: Transform - pos: 18.5,52.5 - parent: 1 - - uid: 12750 - components: - - type: Transform - pos: 19.5,52.5 - parent: 1 - - uid: 12751 - components: - - type: Transform - pos: 20.5,52.5 - parent: 1 - - uid: 12752 - components: - - type: Transform - pos: 20.5,53.5 - parent: 1 - - uid: 12753 - components: - - type: Transform - pos: 15.5,50.5 - parent: 1 - - uid: 12754 - components: - - type: Transform - pos: 15.5,49.5 - parent: 1 - - uid: 12755 - components: - - type: Transform - pos: 15.5,48.5 - parent: 1 - - uid: 12756 - components: - - type: Transform - pos: 15.5,47.5 - parent: 1 - - uid: 12757 - components: - - type: Transform - pos: 15.5,46.5 - parent: 1 - - uid: 12758 - components: - - type: Transform - pos: 15.5,45.5 - parent: 1 - - uid: 12759 - components: - - type: Transform - pos: 15.5,44.5 - parent: 1 - - uid: 12760 - components: - - type: Transform - pos: 15.5,43.5 - parent: 1 - - uid: 12761 - components: - - type: Transform - pos: 15.5,42.5 - parent: 1 - - uid: 12762 - components: - - type: Transform - pos: 15.5,41.5 - parent: 1 - - uid: 12763 - components: - - type: Transform - pos: 15.5,40.5 - parent: 1 - - uid: 12764 - components: - - type: Transform - pos: 16.5,45.5 - parent: 1 - - uid: 12765 - components: - - type: Transform - pos: 17.5,45.5 - parent: 1 - - uid: 12766 - components: - - type: Transform - pos: 18.5,45.5 - parent: 1 - - uid: 12767 - components: - - type: Transform - pos: 19.5,45.5 - parent: 1 - - uid: 12768 - components: - - type: Transform - pos: 20.5,45.5 - parent: 1 - - uid: 12769 - components: - - type: Transform - pos: 21.5,45.5 - parent: 1 - - uid: 12770 - components: - - type: Transform - pos: 14.5,44.5 - parent: 1 - - uid: 12771 - components: - - type: Transform - pos: 13.5,44.5 - parent: 1 - - uid: 12772 - components: - - type: Transform - pos: 12.5,44.5 - parent: 1 - - uid: 12773 - components: - - type: Transform - pos: 11.5,44.5 - parent: 1 - - uid: 12774 - components: - - type: Transform - pos: 14.5,42.5 - parent: 1 - - uid: 12775 - components: - - type: Transform - pos: 13.5,42.5 - parent: 1 - - uid: 12776 - components: - - type: Transform - pos: 12.5,42.5 - parent: 1 - - uid: 12777 - components: - - type: Transform - pos: 11.5,42.5 - parent: 1 - - uid: 12778 - components: - - type: Transform - pos: 14.5,50.5 - parent: 1 - - uid: 12779 - components: - - type: Transform - pos: 13.5,50.5 - parent: 1 - - uid: 12780 - components: - - type: Transform - pos: 12.5,50.5 - parent: 1 - - uid: 12781 - components: - - type: Transform - pos: 11.5,50.5 - parent: 1 - - uid: 12782 - components: - - type: Transform - pos: 10.5,50.5 - parent: 1 - - uid: 12783 - components: - - type: Transform - pos: 9.5,50.5 - parent: 1 - - uid: 12784 - components: - - type: Transform - pos: 9.5,49.5 - parent: 1 - - uid: 12785 - components: - - type: Transform - pos: 9.5,48.5 - parent: 1 - - uid: 12786 - components: - - type: Transform - pos: 9.5,47.5 - parent: 1 - - uid: 12787 - components: - - type: Transform - pos: 9.5,46.5 - parent: 1 - - uid: 12788 - components: - - type: Transform - pos: 9.5,45.5 - parent: 1 - - uid: 12789 - components: - - type: Transform - pos: 9.5,44.5 - parent: 1 - - uid: 12790 - components: - - type: Transform - pos: 9.5,43.5 - parent: 1 - - uid: 12791 - components: - - type: Transform - pos: 9.5,42.5 - parent: 1 - - uid: 12792 - components: - - type: Transform - pos: 9.5,41.5 - parent: 1 - - uid: 12793 - components: - - type: Transform - pos: 8.5,41.5 - parent: 1 - - uid: 12794 - components: - - type: Transform - pos: 7.5,41.5 - parent: 1 - - uid: 12795 - components: - - type: Transform - pos: 6.5,41.5 - parent: 1 - - uid: 12796 - components: - - type: Transform - pos: 5.5,41.5 - parent: 1 - - uid: 12797 - components: - - type: Transform - pos: 4.5,41.5 - parent: 1 - - uid: 12798 - components: - - type: Transform - pos: 3.5,41.5 - parent: 1 - - uid: 12799 - components: - - type: Transform - pos: 2.5,41.5 - parent: 1 - - uid: 12800 - components: - - type: Transform - pos: 6.5,46.5 - parent: 1 - - uid: 12801 - components: - - type: Transform - pos: 5.5,46.5 - parent: 1 - - uid: 12802 - components: - - type: Transform - pos: 4.5,46.5 - parent: 1 - - uid: 12803 - components: - - type: Transform - pos: 3.5,46.5 - parent: 1 - - uid: 12804 - components: - - type: Transform - pos: 2.5,46.5 - parent: 1 - - uid: 12805 - components: - - type: Transform - pos: 1.5,46.5 - parent: 1 - - uid: 12806 - components: - - type: Transform - pos: 0.5,46.5 - parent: 1 - - uid: 12807 - components: - - type: Transform - pos: 0.5,47.5 - parent: 1 - - uid: 12808 - components: - - type: Transform - pos: 0.5,48.5 - parent: 1 - - uid: 12809 - components: - - type: Transform - pos: 0.5,49.5 - parent: 1 - - uid: 12810 - components: - - type: Transform - pos: 0.5,50.5 - parent: 1 - - uid: 12811 - components: - - type: Transform - pos: 0.5,45.5 - parent: 1 - - uid: 12812 - components: - - type: Transform - pos: 0.5,44.5 - parent: 1 - - uid: 12813 - components: - - type: Transform - pos: 0.5,43.5 - parent: 1 - - uid: 12814 - components: - - type: Transform - pos: 0.5,42.5 - parent: 1 - - uid: 12815 - components: - - type: Transform - pos: 0.5,41.5 - parent: 1 - - uid: 12816 - components: - - type: Transform - pos: 0.5,40.5 - parent: 1 - - uid: 12817 - components: - - type: Transform - pos: 5.5,47.5 - parent: 1 - - uid: 12818 - components: - - type: Transform - pos: 5.5,48.5 - parent: 1 - - uid: 12819 - components: - - type: Transform - pos: 5.5,49.5 - parent: 1 - - uid: 12826 - components: - - type: Transform - pos: 36.5,55.5 - parent: 1 - - uid: 12827 - components: - - type: Transform - pos: 37.5,54.5 - parent: 1 - - uid: 12828 - components: - - type: Transform - pos: 37.5,55.5 - parent: 1 - - uid: 12829 - components: - - type: Transform - pos: 37.5,56.5 - parent: 1 - - uid: 12830 - components: - - type: Transform - pos: 37.5,57.5 - parent: 1 - - uid: 12831 - components: - - type: Transform - pos: 37.5,58.5 - parent: 1 - - uid: 12832 - components: - - type: Transform - pos: 37.5,59.5 - parent: 1 - - uid: 12833 - components: - - type: Transform - pos: 37.5,60.5 - parent: 1 - - uid: 12834 - components: - - type: Transform - pos: 17.5,41.5 - parent: 1 - - uid: 12835 - components: - - type: Transform - pos: 17.5,40.5 - parent: 1 - - uid: 12836 - components: - - type: Transform - pos: 17.5,39.5 - parent: 1 - - uid: 12837 - components: - - type: Transform - pos: 17.5,38.5 - parent: 1 - - uid: 12838 - components: - - type: Transform - pos: 16.5,38.5 - parent: 1 - - uid: 12839 - components: - - type: Transform - pos: 15.5,38.5 - parent: 1 - - uid: 12840 - components: - - type: Transform - pos: 15.5,39.5 - parent: 1 - - uid: 12841 - components: - - type: Transform - pos: 13.5,38.5 - parent: 1 - - uid: 12842 - components: - - type: Transform - pos: 12.5,38.5 - parent: 1 - - uid: 12843 - components: - - type: Transform - pos: 11.5,38.5 - parent: 1 - - uid: 12844 - components: - - type: Transform - pos: 10.5,38.5 - parent: 1 - - uid: 12845 - components: - - type: Transform - pos: 9.5,38.5 - parent: 1 - - uid: 12846 - components: - - type: Transform - pos: 8.5,38.5 - parent: 1 - - uid: 12847 - components: - - type: Transform - pos: 7.5,38.5 - parent: 1 - - uid: 12848 - components: - - type: Transform - pos: 6.5,38.5 - parent: 1 - - uid: 12849 - components: - - type: Transform - pos: 5.5,38.5 - parent: 1 - - uid: 12850 - components: - - type: Transform - pos: 4.5,38.5 - parent: 1 - - uid: 12851 - components: - - type: Transform - pos: 3.5,38.5 - parent: 1 - - uid: 12852 - components: - - type: Transform - pos: 2.5,38.5 - parent: 1 - - uid: 12853 - components: - - type: Transform - pos: 1.5,38.5 - parent: 1 - - uid: 12854 - components: - - type: Transform - pos: 0.5,38.5 - parent: 1 - - uid: 12855 - components: - - type: Transform - pos: -8.5,37.5 - parent: 1 - - uid: 12856 - components: - - type: Transform - pos: 18.5,38.5 - parent: 1 - - uid: 12857 - components: - - type: Transform - pos: 19.5,38.5 - parent: 1 - - uid: 12858 - components: - - type: Transform - pos: 20.5,38.5 - parent: 1 - - uid: 12859 - components: - - type: Transform - pos: 21.5,38.5 - parent: 1 - - uid: 12860 - components: - - type: Transform - pos: 22.5,38.5 - parent: 1 - - uid: 12861 - components: - - type: Transform - pos: 23.5,38.5 - parent: 1 - - uid: 12923 - components: - - type: Transform - pos: 2.5,31.5 - parent: 1 - - uid: 12924 - components: - - type: Transform - pos: 3.5,31.5 - parent: 1 - - uid: 12925 - components: - - type: Transform - pos: 4.5,31.5 - parent: 1 - - uid: 12926 - components: - - type: Transform - pos: 5.5,31.5 - parent: 1 - - uid: 12927 - components: - - type: Transform - pos: 6.5,31.5 - parent: 1 - - uid: 12928 - components: - - type: Transform - pos: 7.5,31.5 - parent: 1 - - uid: 12929 - components: - - type: Transform - pos: 8.5,31.5 - parent: 1 - - uid: 12930 - components: - - type: Transform - pos: 9.5,31.5 - parent: 1 - - uid: 12931 - components: - - type: Transform - pos: 10.5,31.5 - parent: 1 - - uid: 12932 - components: - - type: Transform - pos: 11.5,31.5 - parent: 1 - - uid: 12933 - components: - - type: Transform - pos: 12.5,31.5 - parent: 1 - - uid: 12936 - components: - - type: Transform - pos: 15.5,31.5 - parent: 1 - - uid: 12937 - components: - - type: Transform - pos: 16.5,31.5 - parent: 1 - - uid: 12938 - components: - - type: Transform - pos: 16.5,32.5 - parent: 1 - - uid: 12939 - components: - - type: Transform - pos: 16.5,33.5 - parent: 1 - - uid: 12940 - components: - - type: Transform - pos: 16.5,34.5 - parent: 1 - - uid: 12941 - components: - - type: Transform - pos: 2.5,32.5 - parent: 1 - - uid: 12942 - components: - - type: Transform - pos: 2.5,33.5 - parent: 1 - - uid: 12943 - components: - - type: Transform - pos: 2.5,34.5 - parent: 1 - - uid: 12944 - components: - - type: Transform - pos: 5.5,32.5 - parent: 1 - - uid: 12945 - components: - - type: Transform - pos: 5.5,33.5 - parent: 1 - - uid: 12946 - components: - - type: Transform - pos: 5.5,34.5 - parent: 1 - - uid: 12947 - components: - - type: Transform - pos: 10.5,32.5 - parent: 1 - - uid: 12948 - components: - - type: Transform - pos: 10.5,33.5 - parent: 1 - - uid: 12949 - components: - - type: Transform - pos: 10.5,34.5 - parent: 1 - - uid: 12950 - components: - - type: Transform - pos: 4.5,30.5 - parent: 1 - - uid: 12951 - components: - - type: Transform - pos: 4.5,29.5 - parent: 1 - - uid: 12952 - components: - - type: Transform - pos: 4.5,28.5 - parent: 1 - - uid: 12953 - components: - - type: Transform - pos: 4.5,27.5 - parent: 1 - - uid: 12954 - components: - - type: Transform - pos: 10.5,30.5 - parent: 1 - - uid: 12955 - components: - - type: Transform - pos: 6.5,30.5 - parent: 1 - - uid: 12956 - components: - - type: Transform - pos: 5.5,26.5 - parent: 1 - - uid: 12957 - components: - - type: Transform - pos: 6.5,26.5 - parent: 1 - - uid: 12958 - components: - - type: Transform - pos: 6.5,25.5 - parent: 1 - - uid: 12959 - components: - - type: Transform - pos: 6.5,24.5 - parent: 1 - - uid: 12960 - components: - - type: Transform - pos: 6.5,23.5 - parent: 1 - - uid: 12961 - components: - - type: Transform - pos: 6.5,22.5 - parent: 1 - - uid: 12962 - components: - - type: Transform - pos: 7.5,22.5 - parent: 1 - - uid: 12963 - components: - - type: Transform - pos: 8.5,22.5 - parent: 1 - - uid: 12964 - components: - - type: Transform - pos: 9.5,22.5 - parent: 1 - - uid: 12965 - components: - - type: Transform - pos: 9.5,23.5 - parent: 1 - - uid: 12966 - components: - - type: Transform - pos: 5.5,23.5 - parent: 1 - - uid: 12967 - components: - - type: Transform - pos: 4.5,23.5 - parent: 1 - - uid: 12968 - components: - - type: Transform - pos: 3.5,23.5 - parent: 1 - - uid: 12969 - components: - - type: Transform - pos: 2.5,23.5 - parent: 1 - - uid: 12970 - components: - - type: Transform - pos: 2.5,22.5 - parent: 1 - - uid: 12971 - components: - - type: Transform - pos: 2.5,21.5 - parent: 1 - - uid: 12972 - components: - - type: Transform - pos: 3.5,21.5 - parent: 1 - - uid: 12973 - components: - - type: Transform - pos: 3.5,20.5 - parent: 1 - - uid: 12974 - components: - - type: Transform - pos: 3.5,24.5 - parent: 1 - - uid: 12975 - components: - - type: Transform - pos: 3.5,25.5 - parent: 1 - - uid: 12976 - components: - - type: Transform - pos: 10.5,22.5 - parent: 1 - - uid: 12977 - components: - - type: Transform - pos: 10.5,23.5 - parent: 1 - - uid: 12978 - components: - - type: Transform - pos: 10.5,24.5 - parent: 1 - - uid: 12979 - components: - - type: Transform - pos: 10.5,25.5 - parent: 1 - - uid: 12980 - components: - - type: Transform - pos: 10.5,26.5 - parent: 1 - - uid: 12981 - components: - - type: Transform - pos: 10.5,27.5 - parent: 1 - - uid: 12982 - components: - - type: Transform - pos: 9.5,27.5 - parent: 1 - - uid: 12983 - components: - - type: Transform - pos: 8.5,27.5 - parent: 1 - - uid: 12984 - components: - - type: Transform - pos: 7.5,27.5 - parent: 1 - - uid: 12985 - components: - - type: Transform - pos: 6.5,27.5 - parent: 1 - - uid: 12986 - components: - - type: Transform - pos: 11.5,27.5 - parent: 1 - - uid: 12987 - components: - - type: Transform - pos: 12.5,27.5 - parent: 1 - - uid: 12988 - components: - - type: Transform - pos: 12.5,26.5 - parent: 1 - - uid: 12989 - components: - - type: Transform - pos: 12.5,25.5 - parent: 1 - - uid: 12990 - components: - - type: Transform - pos: 12.5,24.5 - parent: 1 - - uid: 12991 - components: - - type: Transform - pos: 12.5,23.5 - parent: 1 - - uid: 12992 - components: - - type: Transform - pos: 12.5,22.5 - parent: 1 - - uid: 12993 - components: - - type: Transform - pos: 11.5,22.5 - parent: 1 - - uid: 12994 - components: - - type: Transform - pos: 17.5,19.5 - parent: 1 - - uid: 12995 - components: - - type: Transform - pos: 16.5,19.5 - parent: 1 - - uid: 12996 - components: - - type: Transform - pos: 15.5,19.5 - parent: 1 - - uid: 12997 - components: - - type: Transform - pos: 14.5,19.5 - parent: 1 - - uid: 12999 - components: - - type: Transform - pos: 12.5,19.5 - parent: 1 - - uid: 13000 - components: - - type: Transform - pos: 11.5,19.5 - parent: 1 - - uid: 13001 - components: - - type: Transform - pos: 10.5,19.5 - parent: 1 - - uid: 13002 - components: - - type: Transform - pos: 9.5,19.5 - parent: 1 - - uid: 13003 - components: - - type: Transform - pos: 8.5,19.5 - parent: 1 - - uid: 13004 - components: - - type: Transform - pos: 7.5,19.5 - parent: 1 - - uid: 13005 - components: - - type: Transform - pos: 6.5,19.5 - parent: 1 - - uid: 13006 - components: - - type: Transform - pos: 6.5,18.5 - parent: 1 - - uid: 13007 - components: - - type: Transform - pos: 5.5,18.5 - parent: 1 - - uid: 13008 - components: - - type: Transform - pos: 4.5,18.5 - parent: 1 - - uid: 13009 - components: - - type: Transform - pos: 3.5,18.5 - parent: 1 - - uid: 13010 - components: - - type: Transform - pos: 2.5,18.5 - parent: 1 - - uid: 13011 - components: - - type: Transform - pos: 1.5,18.5 - parent: 1 - - uid: 13012 - components: - - type: Transform - pos: 4.5,17.5 - parent: 1 - - uid: 13013 - components: - - type: Transform - pos: 4.5,16.5 - parent: 1 - - uid: 13014 - components: - - type: Transform - pos: 4.5,15.5 - parent: 1 - - uid: 13015 - components: - - type: Transform - pos: 3.5,15.5 - parent: 1 - - uid: 13016 - components: - - type: Transform - pos: 2.5,15.5 - parent: 1 - - uid: 13017 - components: - - type: Transform - pos: 1.5,15.5 - parent: 1 - - uid: 13018 - components: - - type: Transform - pos: 0.5,15.5 - parent: 1 - - uid: 13019 - components: - - type: Transform - pos: 5.5,15.5 - parent: 1 - - uid: 13020 - components: - - type: Transform - pos: 6.5,15.5 - parent: 1 - - uid: 13021 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1 - - uid: 13022 - components: - - type: Transform - pos: 8.5,15.5 - parent: 1 - - uid: 13023 - components: - - type: Transform - pos: 9.5,15.5 - parent: 1 - - uid: 13024 - components: - - type: Transform - pos: 10.5,15.5 - parent: 1 - - uid: 13025 - components: - - type: Transform - pos: 11.5,15.5 - parent: 1 - - uid: 13026 - components: - - type: Transform - pos: 12.5,15.5 - parent: 1 - - uid: 13027 - components: - - type: Transform - pos: 13.5,15.5 - parent: 1 - - uid: 13028 - components: - - type: Transform - pos: 14.5,15.5 - parent: 1 - - uid: 13029 - components: - - type: Transform - pos: 15.5,15.5 - parent: 1 - - uid: 13030 - components: - - type: Transform - pos: 16.5,15.5 - parent: 1 - - uid: 13031 - components: - - type: Transform - pos: 17.5,15.5 - parent: 1 - - uid: 13032 - components: - - type: Transform - pos: 18.5,15.5 - parent: 1 - - uid: 13033 - components: - - type: Transform - pos: 19.5,15.5 - parent: 1 - - uid: 13034 - components: - - type: Transform - pos: 19.5,16.5 - parent: 1 - - uid: 13035 - components: - - type: Transform - pos: 19.5,17.5 - parent: 1 - - uid: 13036 - components: - - type: Transform - pos: 19.5,18.5 - parent: 1 - - uid: 13037 - components: - - type: Transform - pos: 19.5,19.5 - parent: 1 - - uid: 13038 - components: - - type: Transform - pos: 18.5,19.5 - parent: 1 - - uid: 13039 - components: - - type: Transform - pos: 20.5,30.5 - parent: 1 - - uid: 13040 - components: - - type: Transform - pos: 20.5,31.5 - parent: 1 - - uid: 13041 - components: - - type: Transform - pos: 20.5,32.5 - parent: 1 - - uid: 13042 - components: - - type: Transform - pos: 20.5,33.5 - parent: 1 - - uid: 13043 - components: - - type: Transform - pos: 20.5,34.5 - parent: 1 - - uid: 13044 - components: - - type: Transform - pos: 19.5,34.5 - parent: 1 - - uid: 13045 - components: - - type: Transform - pos: 21.5,34.5 - parent: 1 - - uid: 13046 - components: - - type: Transform - pos: 20.5,29.5 - parent: 1 - - uid: 13047 - components: - - type: Transform - pos: 20.5,28.5 - parent: 1 - - uid: 13048 - components: - - type: Transform - pos: 20.5,27.5 - parent: 1 - - uid: 13049 - components: - - type: Transform - pos: 20.5,26.5 - parent: 1 - - uid: 13050 - components: - - type: Transform - pos: 21.5,27.5 - parent: 1 - - uid: 13051 - components: - - type: Transform - pos: 22.5,27.5 - parent: 1 - - uid: 13053 - components: - - type: Transform - pos: 18.5,27.5 - parent: 1 - - uid: 13054 - components: - - type: Transform - pos: 18.5,28.5 - parent: 1 - - uid: 13055 - components: - - type: Transform - pos: 17.5,28.5 - parent: 1 - - uid: 13056 - components: - - type: Transform - pos: 16.5,28.5 - parent: 1 - - uid: 13057 - components: - - type: Transform - pos: 15.5,28.5 - parent: 1 - - uid: 13058 - components: - - type: Transform - pos: 14.5,28.5 - parent: 1 - - uid: 13059 - components: - - type: Transform - pos: 23.5,27.5 - parent: 1 - - uid: 13060 - components: - - type: Transform - pos: 24.5,27.5 - parent: 1 - - uid: 13061 - components: - - type: Transform - pos: 24.5,28.5 - parent: 1 - - uid: 13062 - components: - - type: Transform - pos: 24.5,29.5 - parent: 1 - - uid: 13063 - components: - - type: Transform - pos: 24.5,30.5 - parent: 1 - - uid: 13064 - components: - - type: Transform - pos: 24.5,31.5 - parent: 1 - - uid: 13065 - components: - - type: Transform - pos: 24.5,32.5 - parent: 1 - - uid: 13066 - components: - - type: Transform - pos: 24.5,33.5 - parent: 1 - - uid: 13067 - components: - - type: Transform - pos: 24.5,34.5 - parent: 1 - - uid: 13068 - components: - - type: Transform - pos: 25.5,34.5 - parent: 1 - - uid: 13069 - components: - - type: Transform - pos: 26.5,34.5 - parent: 1 - - uid: 13070 - components: - - type: Transform - pos: 27.5,34.5 - parent: 1 - - uid: 13071 - components: - - type: Transform - pos: 27.5,33.5 - parent: 1 - - uid: 13072 - components: - - type: Transform - pos: 27.5,32.5 - parent: 1 - - uid: 13073 - components: - - type: Transform - pos: 27.5,31.5 - parent: 1 - - uid: 13074 - components: - - type: Transform - pos: 24.5,23.5 - parent: 1 - - uid: 13075 - components: - - type: Transform - pos: 24.5,24.5 - parent: 1 - - uid: 13076 - components: - - type: Transform - pos: 24.5,25.5 - parent: 1 - - uid: 13077 - components: - - type: Transform - pos: 25.5,25.5 - parent: 1 - - uid: 13078 - components: - - type: Transform - pos: 26.5,25.5 - parent: 1 - - uid: 13079 - components: - - type: Transform - pos: 27.5,25.5 - parent: 1 - - uid: 13080 - components: - - type: Transform - pos: 28.5,25.5 - parent: 1 - - uid: 13081 - components: - - type: Transform - pos: 29.5,25.5 - parent: 1 - - uid: 13082 - components: - - type: Transform - pos: 30.5,25.5 - parent: 1 - - uid: 13083 - components: - - type: Transform - pos: 31.5,25.5 - parent: 1 - - uid: 13084 - components: - - type: Transform - pos: 32.5,25.5 - parent: 1 - - uid: 13085 - components: - - type: Transform - pos: 32.5,26.5 - parent: 1 - - uid: 13086 - components: - - type: Transform - pos: 32.5,27.5 - parent: 1 - - uid: 13087 - components: - - type: Transform - pos: 32.5,28.5 - parent: 1 - - uid: 13088 - components: - - type: Transform - pos: 32.5,29.5 - parent: 1 - - uid: 13089 - components: - - type: Transform - pos: 32.5,30.5 - parent: 1 - - uid: 13090 - components: - - type: Transform - pos: 32.5,31.5 - parent: 1 - - uid: 13091 - components: - - type: Transform - pos: 32.5,32.5 - parent: 1 - - uid: 13092 - components: - - type: Transform - pos: 32.5,33.5 - parent: 1 - - uid: 13093 - components: - - type: Transform - pos: 32.5,34.5 - parent: 1 - - uid: 13094 - components: - - type: Transform - pos: 32.5,24.5 - parent: 1 - - uid: 13095 - components: - - type: Transform - pos: 32.5,23.5 - parent: 1 - - uid: 13096 - components: - - type: Transform - pos: 32.5,22.5 - parent: 1 - - uid: 13097 - components: - - type: Transform - pos: 32.5,21.5 - parent: 1 - - uid: 13098 - components: - - type: Transform - pos: 32.5,20.5 - parent: 1 - - uid: 13099 - components: - - type: Transform - pos: 32.5,19.5 - parent: 1 - - uid: 13100 - components: - - type: Transform - pos: 32.5,18.5 - parent: 1 - - uid: 13101 - components: - - type: Transform - pos: 32.5,17.5 - parent: 1 - - uid: 13102 - components: - - type: Transform - pos: 32.5,16.5 - parent: 1 - - uid: 13103 - components: - - type: Transform - pos: 32.5,15.5 - parent: 1 - - uid: 13104 - components: - - type: Transform - pos: 32.5,14.5 - parent: 1 - - uid: 13105 - components: - - type: Transform - pos: 32.5,13.5 - parent: 1 - - uid: 13106 - components: - - type: Transform - pos: 31.5,13.5 - parent: 1 - - uid: 13107 - components: - - type: Transform - pos: 30.5,13.5 - parent: 1 - - uid: 13108 - components: - - type: Transform - pos: 29.5,13.5 - parent: 1 - - uid: 13109 - components: - - type: Transform - pos: 28.5,13.5 - parent: 1 - - uid: 13110 - components: - - type: Transform - pos: 27.5,13.5 - parent: 1 - - uid: 13111 - components: - - type: Transform - pos: 26.5,13.5 - parent: 1 - - uid: 13112 - components: - - type: Transform - pos: 25.5,13.5 - parent: 1 - - uid: 13113 - components: - - type: Transform - pos: 24.5,13.5 - parent: 1 - - uid: 13114 - components: - - type: Transform - pos: 23.5,13.5 - parent: 1 - - uid: 13115 - components: - - type: Transform - pos: 22.5,13.5 - parent: 1 - - uid: 13116 - components: - - type: Transform - pos: 21.5,13.5 - parent: 1 - - uid: 13117 - components: - - type: Transform - pos: 23.5,14.5 - parent: 1 - - uid: 13118 - components: - - type: Transform - pos: 23.5,15.5 - parent: 1 - - uid: 13119 - components: - - type: Transform - pos: 23.5,16.5 - parent: 1 - - uid: 13120 - components: - - type: Transform - pos: 23.5,17.5 - parent: 1 - - uid: 13121 - components: - - type: Transform - pos: 23.5,18.5 - parent: 1 - - uid: 13122 - components: - - type: Transform - pos: 23.5,19.5 - parent: 1 - - uid: 13123 - components: - - type: Transform - pos: 24.5,19.5 - parent: 1 - - uid: 13124 - components: - - type: Transform - pos: 24.5,20.5 - parent: 1 - - uid: 13125 - components: - - type: Transform - pos: 24.5,21.5 - parent: 1 - - uid: 13126 - components: - - type: Transform - pos: 24.5,22.5 - parent: 1 - - uid: 13127 - components: - - type: Transform - pos: 25.5,22.5 - parent: 1 - - uid: 13128 - components: - - type: Transform - pos: 26.5,22.5 - parent: 1 - - uid: 13129 - components: - - type: Transform - pos: 27.5,22.5 - parent: 1 - - uid: 13130 - components: - - type: Transform - pos: 27.5,21.5 - parent: 1 - - uid: 13131 - components: - - type: Transform - pos: 28.5,21.5 - parent: 1 - - uid: 13132 - components: - - type: Transform - pos: 29.5,21.5 - parent: 1 - - uid: 13133 - components: - - type: Transform - pos: 30.5,21.5 - parent: 1 - - uid: 13134 - components: - - type: Transform - pos: 31.5,21.5 - parent: 1 - - uid: 13135 - components: - - type: Transform - pos: 29.5,14.5 - parent: 1 - - uid: 13136 - components: - - type: Transform - pos: 29.5,15.5 - parent: 1 - - uid: 13137 - components: - - type: Transform - pos: 29.5,16.5 - parent: 1 - - uid: 13138 - components: - - type: Transform - pos: 29.5,17.5 - parent: 1 - - uid: 13139 - components: - - type: Transform - pos: 30.5,17.5 - parent: 1 - - uid: 13140 - components: - - type: Transform - pos: 31.5,17.5 - parent: 1 - - uid: 13186 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 1 - - uid: 13187 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 1 - - uid: 13188 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 1 - - uid: 13189 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 1 - - uid: 13190 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 1 - - uid: 13191 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 1 - - uid: 13192 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 1 - - uid: 13193 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 1 - - uid: 13194 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 1 - - uid: 13195 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 1 - - uid: 13208 - components: - - type: Transform - pos: 1.5,19.5 - parent: 1 - - uid: 13209 - components: - - type: Transform - pos: 0.5,19.5 - parent: 1 - - uid: 13210 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1 - - uid: 13211 - components: - - type: Transform - pos: 0.5,21.5 - parent: 1 - - uid: 13212 - components: - - type: Transform - pos: 0.5,22.5 - parent: 1 - - uid: 13213 - components: - - type: Transform - pos: 0.5,23.5 - parent: 1 - - uid: 13214 - components: - - type: Transform - pos: 0.5,24.5 - parent: 1 - - uid: 13215 - components: - - type: Transform - pos: 0.5,25.5 - parent: 1 - - uid: 13216 - components: - - type: Transform - pos: 0.5,26.5 - parent: 1 - - uid: 13217 - components: - - type: Transform - pos: 0.5,27.5 - parent: 1 - - uid: 13218 - components: - - type: Transform - pos: 0.5,28.5 - parent: 1 - - uid: 13219 - components: - - type: Transform - pos: 0.5,29.5 - parent: 1 - - uid: 13220 - components: - - type: Transform - pos: 0.5,30.5 - parent: 1 - - uid: 13221 - components: - - type: Transform - pos: 0.5,31.5 - parent: 1 - - uid: 13222 - components: - - type: Transform - pos: 0.5,32.5 - parent: 1 - - uid: 13223 - components: - - type: Transform - pos: 0.5,33.5 - parent: 1 - - uid: 13224 - components: - - type: Transform - pos: 0.5,34.5 - parent: 1 - - uid: 13225 - components: - - type: Transform - pos: 15.5,20.5 - parent: 1 - - uid: 13226 - components: - - type: Transform - pos: 15.5,21.5 - parent: 1 - - uid: 13227 - components: - - type: Transform - pos: 15.5,22.5 - parent: 1 - - uid: 13228 - components: - - type: Transform - pos: 14.5,22.5 - parent: 1 - - uid: 13229 - components: - - type: Transform - pos: 14.5,23.5 - parent: 1 - - uid: 13230 - components: - - type: Transform - pos: 14.5,24.5 - parent: 1 - - uid: 13231 - components: - - type: Transform - pos: 15.5,24.5 - parent: 1 - - uid: 13232 - components: - - type: Transform - pos: 16.5,24.5 - parent: 1 - - uid: 13234 - components: - - type: Transform - pos: 16.5,22.5 - parent: 1 - - uid: 13235 - components: - - type: Transform - pos: 17.5,22.5 - parent: 1 - - uid: 13236 - components: - - type: Transform - pos: 28.5,26.5 - parent: 1 - - uid: 13237 - components: - - type: Transform - pos: 28.5,27.5 - parent: 1 - - uid: 13238 - components: - - type: Transform - pos: 28.5,29.5 - parent: 1 - - uid: 13239 - components: - - type: Transform - pos: 28.5,28.5 - parent: 1 - - uid: 13240 - components: - - type: Transform - pos: 23.5,24.5 - parent: 1 - - uid: 13241 - components: - - type: Transform - pos: 22.5,24.5 - parent: 1 - - uid: 13242 - components: - - type: Transform - pos: 21.5,24.5 - parent: 1 - - uid: 13243 - components: - - type: Transform - pos: 20.5,24.5 - parent: 1 - - uid: 13244 - components: - - type: Transform - pos: 19.5,24.5 - parent: 1 - - uid: 13245 - components: - - type: Transform - pos: 24.5,17.5 - parent: 1 - - uid: 13246 - components: - - type: Transform - pos: 25.5,17.5 - parent: 1 - - uid: 13247 - components: - - type: Transform - pos: 27.5,20.5 - parent: 1 - - uid: 13248 - components: - - type: Transform - pos: 27.5,19.5 - parent: 1 - - uid: 13249 - components: - - type: Transform - pos: 33.5,14.5 - parent: 1 - - uid: 13250 - components: - - type: Transform - pos: 34.5,14.5 - parent: 1 - - uid: 13251 - components: - - type: Transform - pos: 35.5,14.5 - parent: 1 - - uid: 13252 - components: - - type: Transform - pos: 36.5,14.5 - parent: 1 - - uid: 13253 - components: - - type: Transform - pos: 37.5,14.5 - parent: 1 - - uid: 13254 - components: - - type: Transform - pos: 38.5,14.5 - parent: 1 - - uid: 13255 - components: - - type: Transform - pos: 39.5,14.5 - parent: 1 - - uid: 13256 - components: - - type: Transform - pos: 40.5,14.5 - parent: 1 - - uid: 13257 - components: - - type: Transform - pos: 41.5,14.5 - parent: 1 - - uid: 13258 - components: - - type: Transform - pos: 42.5,14.5 - parent: 1 - - uid: 13259 - components: - - type: Transform - pos: 43.5,14.5 - parent: 1 - - uid: 13260 - components: - - type: Transform - pos: 44.5,14.5 - parent: 1 - - uid: 13261 - components: - - type: Transform - pos: 45.5,14.5 - parent: 1 - - uid: 13262 - components: - - type: Transform - pos: 46.5,14.5 - parent: 1 - - uid: 13263 - components: - - type: Transform - pos: 47.5,14.5 - parent: 1 - - uid: 13264 - components: - - type: Transform - pos: 48.5,14.5 - parent: 1 - - uid: 13265 - components: - - type: Transform - pos: 49.5,14.5 - parent: 1 - - uid: 13266 - components: - - type: Transform - pos: 49.5,15.5 - parent: 1 - - uid: 13267 - components: - - type: Transform - pos: 50.5,15.5 - parent: 1 - - uid: 13268 - components: - - type: Transform - pos: 51.5,15.5 - parent: 1 - - uid: 13269 - components: - - type: Transform - pos: 48.5,15.5 - parent: 1 - - uid: 13270 - components: - - type: Transform - pos: 48.5,16.5 - parent: 1 - - uid: 13271 - components: - - type: Transform - pos: 48.5,17.5 - parent: 1 - - uid: 13272 - components: - - type: Transform - pos: 46.5,15.5 - parent: 1 - - uid: 13273 - components: - - type: Transform - pos: 46.5,16.5 - parent: 1 - - uid: 13274 - components: - - type: Transform - pos: 46.5,17.5 - parent: 1 - - uid: 13275 - components: - - type: Transform - pos: 49.5,13.5 - parent: 1 - - uid: 13276 - components: - - type: Transform - pos: 50.5,13.5 - parent: 1 - - uid: 13277 - components: - - type: Transform - pos: 51.5,13.5 - parent: 1 - - uid: 13278 - components: - - type: Transform - pos: 46.5,13.5 - parent: 1 - - uid: 13279 - components: - - type: Transform - pos: 46.5,12.5 - parent: 1 - - uid: 13280 - components: - - type: Transform - pos: -33.5,23.5 - parent: 1 - - uid: 13281 - components: - - type: Transform - pos: -32.5,23.5 - parent: 1 - - uid: 13282 - components: - - type: Transform - pos: -32.5,24.5 - parent: 1 - - uid: 13283 - components: - - type: Transform - pos: -32.5,25.5 - parent: 1 - - uid: 13284 - components: - - type: Transform - pos: -32.5,26.5 - parent: 1 - - uid: 13285 - components: - - type: Transform - pos: -32.5,27.5 - parent: 1 - - uid: 13286 - components: - - type: Transform - pos: -32.5,28.5 - parent: 1 - - uid: 13287 - components: - - type: Transform - pos: -32.5,29.5 - parent: 1 - - uid: 13288 - components: - - type: Transform - pos: -32.5,30.5 - parent: 1 - - uid: 13289 - components: - - type: Transform - pos: -32.5,31.5 - parent: 1 - - uid: 13290 - components: - - type: Transform - pos: -32.5,32.5 - parent: 1 - - uid: 13291 - components: - - type: Transform - pos: -32.5,33.5 - parent: 1 - - uid: 13292 - components: - - type: Transform - pos: -32.5,34.5 - parent: 1 - - uid: 13293 - components: - - type: Transform - pos: -32.5,22.5 - parent: 1 - - uid: 13294 - components: - - type: Transform - pos: -32.5,21.5 - parent: 1 - - uid: 13295 - components: - - type: Transform - pos: -32.5,20.5 - parent: 1 - - uid: 13296 - components: - - type: Transform - pos: -32.5,19.5 - parent: 1 - - uid: 13297 - components: - - type: Transform - pos: -32.5,18.5 - parent: 1 - - uid: 13298 - components: - - type: Transform - pos: -32.5,17.5 - parent: 1 - - uid: 13534 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 1 - - uid: 13535 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1 - - uid: 13536 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 1 - - uid: 13537 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 1 - - uid: 13538 - components: - - type: Transform - pos: -24.5,-2.5 - parent: 1 - - uid: 13539 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 1 - - uid: 13540 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 1 - - uid: 13541 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 1 - - uid: 13542 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 1 - - uid: 13543 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 1 - - uid: 13544 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 1 - - uid: 13545 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 1 - - uid: 13546 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 1 - - uid: 13547 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 1 - - uid: 13548 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 1 - - uid: 13549 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 1 - - uid: 13550 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 1 - - uid: 13551 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 1 - - uid: 13552 - components: - - type: Transform - pos: -27.5,-5.5 - parent: 1 - - uid: 13553 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 1 - - uid: 13554 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 1 - - uid: 13555 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 1 - - uid: 13556 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 1 - - uid: 13557 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 1 - - uid: 13558 - components: - - type: Transform - pos: -27.5,0.5 - parent: 1 - - uid: 13559 - components: - - type: Transform - pos: -27.5,1.5 - parent: 1 - - uid: 13560 - components: - - type: Transform - pos: -28.5,1.5 - parent: 1 - - uid: 13561 - components: - - type: Transform - pos: -29.5,1.5 - parent: 1 - - uid: 13562 - components: - - type: Transform - pos: -30.5,1.5 - parent: 1 - - uid: 13563 - components: - - type: Transform - pos: -30.5,2.5 - parent: 1 - - uid: 13564 - components: - - type: Transform - pos: -30.5,3.5 - parent: 1 - - uid: 13565 - components: - - type: Transform - pos: -30.5,0.5 - parent: 1 - - uid: 13566 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 1 - - uid: 13567 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 1 - - uid: 13568 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 1 - - uid: 13569 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 1 - - uid: 13570 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 1 - - uid: 13571 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 1 - - uid: 13572 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 1 - - uid: 13573 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 1 - - uid: 13574 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 1 - - uid: 13575 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 1 - - uid: 13576 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 1 - - uid: 13577 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 1 - - uid: 13578 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 1 - - uid: 13579 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 1 - - uid: 13580 - components: - - type: Transform - pos: -24.5,-7.5 - parent: 1 - - uid: 13581 - components: - - type: Transform - pos: -23.5,-7.5 - parent: 1 - - uid: 13582 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 1 - - uid: 13583 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 1 - - uid: 13584 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 1 - - uid: 13585 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 1 - - uid: 13586 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 1 - - uid: 13587 - components: - - type: Transform - pos: -17.5,-7.5 - parent: 1 - - uid: 13588 - components: - - type: Transform - pos: -16.5,-7.5 - parent: 1 - - uid: 13589 - components: - - type: Transform - pos: -16.5,-17.5 - parent: 1 - - uid: 13590 - components: - - type: Transform - pos: -16.5,-16.5 - parent: 1 - - uid: 13591 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 1 - - uid: 13592 - components: - - type: Transform - pos: -16.5,-14.5 - parent: 1 - - uid: 13593 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 1 - - uid: 13594 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 1 - - uid: 13595 - components: - - type: Transform - pos: -17.5,-12.5 - parent: 1 - - uid: 13596 - components: - - type: Transform - pos: -18.5,-12.5 - parent: 1 - - uid: 13597 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 1 - - uid: 13598 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 1 - - uid: 13599 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 1 - - uid: 13600 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 1 - - uid: 13601 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 1 - - uid: 13602 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 1 - - uid: 13603 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 1 - - uid: 13604 - components: - - type: Transform - pos: -31.5,-7.5 - parent: 1 - - uid: 13605 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 1 - - uid: 13606 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 1 - - uid: 13607 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 1 - - uid: 13608 - components: - - type: Transform - pos: -19.5,0.5 - parent: 1 - - uid: 13609 - components: - - type: Transform - pos: -19.5,1.5 - parent: 1 - - uid: 13610 - components: - - type: Transform - pos: -19.5,2.5 - parent: 1 - - uid: 13611 - components: - - type: Transform - pos: -19.5,3.5 - parent: 1 - - uid: 13612 - components: - - type: Transform - pos: -19.5,4.5 - parent: 1 - - uid: 13613 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1 - - uid: 13614 - components: - - type: Transform - pos: -19.5,6.5 - parent: 1 - - uid: 13615 - components: - - type: Transform - pos: -19.5,7.5 - parent: 1 - - uid: 13616 - components: - - type: Transform - pos: -18.5,7.5 - parent: 1 - - uid: 13617 - components: - - type: Transform - pos: -17.5,7.5 - parent: 1 - - uid: 13618 - components: - - type: Transform - pos: -16.5,7.5 - parent: 1 - - uid: 13619 - components: - - type: Transform - pos: -15.5,7.5 - parent: 1 - - uid: 13620 - components: - - type: Transform - pos: -15.5,8.5 - parent: 1 - - uid: 13621 - components: - - type: Transform - pos: -15.5,9.5 - parent: 1 - - uid: 13622 - components: - - type: Transform - pos: -15.5,10.5 - parent: 1 - - uid: 13623 - components: - - type: Transform - pos: -15.5,11.5 - parent: 1 - - uid: 13624 - components: - - type: Transform - pos: -21.5,8.5 - parent: 1 - - uid: 13625 - components: - - type: Transform - pos: -22.5,8.5 - parent: 1 - - uid: 13626 - components: - - type: Transform - pos: -23.5,8.5 - parent: 1 - - uid: 13627 - components: - - type: Transform - pos: -24.5,8.5 - parent: 1 - - uid: 13628 - components: - - type: Transform - pos: -25.5,8.5 - parent: 1 - - uid: 13629 - components: - - type: Transform - pos: -26.5,8.5 - parent: 1 - - uid: 13630 - components: - - type: Transform - pos: -27.5,8.5 - parent: 1 - - uid: 13631 - components: - - type: Transform - pos: -28.5,8.5 - parent: 1 - - uid: 13632 - components: - - type: Transform - pos: -24.5,1.5 - parent: 1 - - uid: 13633 - components: - - type: Transform - pos: -24.5,2.5 - parent: 1 - - uid: 13634 - components: - - type: Transform - pos: -24.5,3.5 - parent: 1 - - uid: 13635 - components: - - type: Transform - pos: -24.5,4.5 - parent: 1 - - uid: 13636 - components: - - type: Transform - pos: -24.5,5.5 - parent: 1 - - uid: 13637 - components: - - type: Transform - pos: -24.5,6.5 - parent: 1 - - uid: 13638 - components: - - type: Transform - pos: -24.5,7.5 - parent: 1 - - uid: 13640 - components: - - type: Transform - pos: -24.5,10.5 - parent: 1 - - uid: 13641 - components: - - type: Transform - pos: -24.5,11.5 - parent: 1 - - uid: 13642 - components: - - type: Transform - pos: -23.5,11.5 - parent: 1 - - uid: 13643 - components: - - type: Transform - pos: -22.5,11.5 - parent: 1 - - uid: 13644 - components: - - type: Transform - pos: -22.5,12.5 - parent: 1 - - uid: 13645 - components: - - type: Transform - pos: -22.5,13.5 - parent: 1 - - uid: 13646 - components: - - type: Transform - pos: -23.5,13.5 - parent: 1 - - uid: 13647 - components: - - type: Transform - pos: -24.5,13.5 - parent: 1 - - uid: 13648 - components: - - type: Transform - pos: -25.5,13.5 - parent: 1 - - uid: 13649 - components: - - type: Transform - pos: -26.5,13.5 - parent: 1 - - uid: 13650 - components: - - type: Transform - pos: -27.5,13.5 - parent: 1 - - uid: 13651 - components: - - type: Transform - pos: -28.5,13.5 - parent: 1 - - uid: 13652 - components: - - type: Transform - pos: -29.5,13.5 - parent: 1 - - uid: 13653 - components: - - type: Transform - pos: -30.5,13.5 - parent: 1 - - uid: 13654 - components: - - type: Transform - pos: -30.5,12.5 - parent: 1 - - uid: 13655 - components: - - type: Transform - pos: -30.5,11.5 - parent: 1 - - uid: 13656 - components: - - type: Transform - pos: -30.5,10.5 - parent: 1 - - uid: 13657 - components: - - type: Transform - pos: -30.5,9.5 - parent: 1 - - uid: 13658 - components: - - type: Transform - pos: -30.5,8.5 - parent: 1 - - uid: 13659 - components: - - type: Transform - pos: -30.5,7.5 - parent: 1 - - uid: 13660 - components: - - type: Transform - pos: -30.5,6.5 - parent: 1 - - uid: 13661 - components: - - type: Transform - pos: -21.5,13.5 - parent: 1 - - uid: 13662 - components: - - type: Transform - pos: -20.5,13.5 - parent: 1 - - uid: 13663 - components: - - type: Transform - pos: -19.5,13.5 - parent: 1 - - uid: 13664 - components: - - type: Transform - pos: -18.5,13.5 - parent: 1 - - uid: 13665 - components: - - type: Transform - pos: -17.5,13.5 - parent: 1 - - uid: 13666 - components: - - type: Transform - pos: -16.5,13.5 - parent: 1 - - uid: 13667 - components: - - type: Transform - pos: -15.5,13.5 - parent: 1 - - uid: 13668 - components: - - type: Transform - pos: -14.5,13.5 - parent: 1 - - uid: 13669 - components: - - type: Transform - pos: -13.5,13.5 - parent: 1 - - uid: 13670 - components: - - type: Transform - pos: -12.5,13.5 - parent: 1 - - uid: 13671 - components: - - type: Transform - pos: -11.5,5.5 - parent: 1 - - uid: 13672 - components: - - type: Transform - pos: -11.5,4.5 - parent: 1 - - uid: 13673 - components: - - type: Transform - pos: -11.5,3.5 - parent: 1 - - uid: 13674 - components: - - type: Transform - pos: -11.5,2.5 - parent: 1 - - uid: 13675 - components: - - type: Transform - pos: -11.5,1.5 - parent: 1 - - uid: 13676 - components: - - type: Transform - pos: -11.5,0.5 - parent: 1 - - uid: 13677 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 1 - - uid: 13678 - components: - - type: Transform - pos: -11.5,-1.5 - parent: 1 - - uid: 13679 - components: - - type: Transform - pos: -11.5,-2.5 - parent: 1 - - uid: 13680 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 1 - - uid: 13681 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 1 - - uid: 13682 - components: - - type: Transform - pos: -11.5,-5.5 - parent: 1 - - uid: 13683 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 1 - - uid: 13684 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 1 - - uid: 13685 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 1 - - uid: 13686 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 1 - - uid: 13687 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 1 - - uid: 13688 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 1 - - uid: 13689 - components: - - type: Transform - pos: -12.5,0.5 - parent: 1 - - uid: 13690 - components: - - type: Transform - pos: -13.5,0.5 - parent: 1 - - uid: 13691 - components: - - type: Transform - pos: -14.5,0.5 - parent: 1 - - uid: 13692 - components: - - type: Transform - pos: -15.5,0.5 - parent: 1 - - uid: 13693 - components: - - type: Transform - pos: -16.5,0.5 - parent: 1 - - uid: 13694 - components: - - type: Transform - pos: -17.5,0.5 - parent: 1 - - uid: 13695 - components: - - type: Transform - pos: -12.5,4.5 - parent: 1 - - uid: 13696 - components: - - type: Transform - pos: -13.5,4.5 - parent: 1 - - uid: 13697 - components: - - type: Transform - pos: -14.5,4.5 - parent: 1 - - uid: 13698 - components: - - type: Transform - pos: -15.5,4.5 - parent: 1 - - uid: 13699 - components: - - type: Transform - pos: -16.5,4.5 - parent: 1 - - uid: 13700 - components: - - type: Transform - pos: -17.5,4.5 - parent: 1 - - uid: 13701 - components: - - type: Transform - pos: -10.5,4.5 - parent: 1 - - uid: 13702 - components: - - type: Transform - pos: -9.5,4.5 - parent: 1 - - uid: 13703 - components: - - type: Transform - pos: -9.5,5.5 - parent: 1 - - uid: 13704 - components: - - type: Transform - pos: -9.5,6.5 - parent: 1 - - uid: 13705 - components: - - type: Transform - pos: -9.5,7.5 - parent: 1 - - uid: 13706 - components: - - type: Transform - pos: -9.5,8.5 - parent: 1 - - uid: 13707 - components: - - type: Transform - pos: -8.5,8.5 - parent: 1 - - uid: 13708 - components: - - type: Transform - pos: -8.5,9.5 - parent: 1 - - uid: 13709 - components: - - type: Transform - pos: -8.5,10.5 - parent: 1 - - uid: 13710 - components: - - type: Transform - pos: -8.5,11.5 - parent: 1 - - uid: 13711 - components: - - type: Transform - pos: -9.5,11.5 - parent: 1 - - uid: 13712 - components: - - type: Transform - pos: -10.5,11.5 - parent: 1 - - uid: 13713 - components: - - type: Transform - pos: -11.5,11.5 - parent: 1 - - uid: 13714 - components: - - type: Transform - pos: -12.5,11.5 - parent: 1 - - uid: 13715 - components: - - type: Transform - pos: -13.5,11.5 - parent: 1 - - uid: 13716 - components: - - type: Transform - pos: -13.5,10.5 - parent: 1 - - uid: 13717 - components: - - type: Transform - pos: -7.5,11.5 - parent: 1 - - uid: 13718 - components: - - type: Transform - pos: -6.5,11.5 - parent: 1 - - uid: 13719 - components: - - type: Transform - pos: -8.5,4.5 - parent: 1 - - uid: 13720 - components: - - type: Transform - pos: -7.5,4.5 - parent: 1 - - uid: 13721 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1 - - uid: 13722 - components: - - type: Transform - pos: -5.5,4.5 - parent: 1 - - uid: 13723 - components: - - type: Transform - pos: -4.5,4.5 - parent: 1 - - uid: 13724 - components: - - type: Transform - pos: -4.5,5.5 - parent: 1 - - uid: 13725 - components: - - type: Transform - pos: -4.5,6.5 - parent: 1 - - uid: 13726 - components: - - type: Transform - pos: -4.5,7.5 - parent: 1 - - uid: 13727 - components: - - type: Transform - pos: -4.5,8.5 - parent: 1 - - uid: 13728 - components: - - type: Transform - pos: -4.5,9.5 - parent: 1 - - uid: 13729 - components: - - type: Transform - pos: -4.5,10.5 - parent: 1 - - uid: 13730 - components: - - type: Transform - pos: -4.5,11.5 - parent: 1 - - uid: 13731 - components: - - type: Transform - pos: -3.5,11.5 - parent: 1 - - uid: 13732 - components: - - type: Transform - pos: -2.5,11.5 - parent: 1 - - uid: 13733 - components: - - type: Transform - pos: -1.5,11.5 - parent: 1 - - uid: 13734 - components: - - type: Transform - pos: -0.5,11.5 - parent: 1 - - uid: 13735 - components: - - type: Transform - pos: 0.5,11.5 - parent: 1 - - uid: 13736 - components: - - type: Transform - pos: 1.5,11.5 - parent: 1 - - uid: 13737 - components: - - type: Transform - pos: 2.5,11.5 - parent: 1 - - uid: 13738 - components: - - type: Transform - pos: 2.5,10.5 - parent: 1 - - uid: 13739 - components: - - type: Transform - pos: 2.5,9.5 - parent: 1 - - uid: 13740 - components: - - type: Transform - pos: 2.5,8.5 - parent: 1 - - uid: 13741 - components: - - type: Transform - pos: 2.5,7.5 - parent: 1 - - uid: 13742 - components: - - type: Transform - pos: 2.5,6.5 - parent: 1 - - uid: 13743 - components: - - type: Transform - pos: 2.5,5.5 - parent: 1 - - uid: 13744 - components: - - type: Transform - pos: 2.5,4.5 - parent: 1 - - uid: 13745 - components: - - type: Transform - pos: 2.5,3.5 - parent: 1 - - uid: 13746 - components: - - type: Transform - pos: 2.5,2.5 - parent: 1 - - uid: 13747 - components: - - type: Transform - pos: 2.5,1.5 - parent: 1 - - uid: 13748 - components: - - type: Transform - pos: 2.5,0.5 - parent: 1 - - uid: 13749 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 1 - - uid: 13750 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 1 - - uid: 13751 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 1 - - uid: 13752 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 1 - - uid: 13753 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 1 - - uid: 13754 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 1 - - uid: 13755 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 1 - - uid: 13756 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 1 - - uid: 13757 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 1 - - uid: 13758 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 1 - - uid: 13759 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 1 - - uid: 13760 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 1 - - uid: 13761 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 1 - - uid: 13762 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 1 - - uid: 13763 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 1 - - uid: 13764 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 1 - - uid: 13765 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 1 - - uid: 13766 - components: - - type: Transform - pos: -7.5,-7.5 - parent: 1 - - uid: 13767 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 1 - - uid: 13768 - components: - - type: Transform - pos: -9.5,-7.5 - parent: 1 - - uid: 13769 - components: - - type: Transform - pos: -10.5,-7.5 - parent: 1 - - uid: 13770 - components: - - type: Transform - pos: -11.5,-7.5 - parent: 1 - - uid: 13771 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 1 - - uid: 13772 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 1 - - uid: 13773 - components: - - type: Transform - pos: -14.5,-7.5 - parent: 1 - - uid: 13774 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 1 - - uid: 13775 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 1 - - uid: 13776 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 1 - - uid: 13777 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 1 - - uid: 13778 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 1 - - uid: 13779 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 1 - - uid: 13780 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 1 - - uid: 13781 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 1 - - uid: 13782 - components: - - type: Transform - pos: -8.5,-3.5 - parent: 1 - - uid: 13783 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 1 - - uid: 13784 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 1 - - uid: 13785 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 1 - - uid: 13786 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 1 - - uid: 13787 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 1 - - uid: 13788 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 1 - - uid: 13789 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 1 - - uid: 13790 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 1 - - uid: 13791 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 1 - - uid: 13792 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 1 - - uid: 13794 - components: - - type: Transform - pos: -3.5,1.5 - parent: 1 - - uid: 13795 - components: - - type: Transform - pos: -3.5,2.5 - parent: 1 - - uid: 13796 - components: - - type: Transform - pos: -3.5,3.5 - parent: 1 - - uid: 13797 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1 - - uid: 13798 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1 - - uid: 13799 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1 - - uid: 13800 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1 - - uid: 13801 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1 - - uid: 13802 - components: - - type: Transform - pos: 1.5,4.5 - parent: 1 - - uid: 13803 - components: - - type: Transform - pos: -8.5,3.5 - parent: 1 - - uid: 13804 - components: - - type: Transform - pos: -8.5,2.5 - parent: 1 - - uid: 13805 - components: - - type: Transform - pos: -8.5,1.5 - parent: 1 - - uid: 13806 - components: - - type: Transform - pos: -8.5,0.5 - parent: 1 - - uid: 13807 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 1 - - uid: 13808 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 1 - - uid: 13809 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 1 - - uid: 13810 - components: - - type: Transform - pos: -2.5,0.5 - parent: 1 - - uid: 13811 - components: - - type: Transform - pos: -1.5,0.5 - parent: 1 - - uid: 13812 - components: - - type: Transform - pos: -0.5,0.5 - parent: 1 - - uid: 13813 - components: - - type: Transform - pos: 0.5,0.5 - parent: 1 - - uid: 13814 - components: - - type: Transform - pos: 1.5,0.5 - parent: 1 - - uid: 13815 - components: - - type: Transform - pos: -3.5,8.5 - parent: 1 - - uid: 13816 - components: - - type: Transform - pos: -2.5,8.5 - parent: 1 - - uid: 13817 - components: - - type: Transform - pos: -1.5,8.5 - parent: 1 - - uid: 13818 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 - - uid: 13819 - components: - - type: Transform - pos: 0.5,8.5 - parent: 1 - - uid: 13820 - components: - - type: Transform - pos: 1.5,8.5 - parent: 1 - - uid: 13821 - components: - - type: Transform - pos: -3.5,12.5 - parent: 1 - - uid: 13822 - components: - - type: Transform - pos: -3.5,13.5 - parent: 1 - - uid: 13823 - components: - - type: Transform - pos: -4.5,13.5 - parent: 1 - - uid: 13824 - components: - - type: Transform - pos: -5.5,13.5 - parent: 1 - - uid: 13825 - components: - - type: Transform - pos: -6.5,13.5 - parent: 1 - - uid: 13826 - components: - - type: Transform - pos: -7.5,13.5 - parent: 1 - - uid: 13827 - components: - - type: Transform - pos: -8.5,13.5 - parent: 1 - - uid: 13828 - components: - - type: Transform - pos: -9.5,13.5 - parent: 1 - - uid: 13829 - components: - - type: Transform - pos: -10.5,13.5 - parent: 1 - - uid: 13830 - components: - - type: Transform - pos: -2.5,13.5 - parent: 1 - - uid: 13831 - components: - - type: Transform - pos: -1.5,13.5 - parent: 1 - - uid: 13832 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1 - - uid: 13833 - components: - - type: Transform - pos: 0.5,13.5 - parent: 1 - - uid: 13834 - components: - - type: Transform - pos: 1.5,13.5 - parent: 1 - - uid: 13835 - components: - - type: Transform - pos: 2.5,13.5 - parent: 1 - - uid: 13836 - components: - - type: Transform - pos: 3.5,13.5 - parent: 1 - - uid: 13837 - components: - - type: Transform - pos: 4.5,13.5 - parent: 1 - - uid: 13838 - components: - - type: Transform - pos: 5.5,13.5 - parent: 1 - - uid: 13839 - components: - - type: Transform - pos: 6.5,13.5 - parent: 1 - - uid: 13840 - components: - - type: Transform - pos: 7.5,13.5 - parent: 1 - - uid: 13841 - components: - - type: Transform - pos: 8.5,13.5 - parent: 1 - - uid: 13842 - components: - - type: Transform - pos: 9.5,13.5 - parent: 1 - - uid: 13843 - components: - - type: Transform - pos: 10.5,13.5 - parent: 1 - - uid: 13844 - components: - - type: Transform - pos: 11.5,13.5 - parent: 1 - - uid: 13845 - components: - - type: Transform - pos: 12.5,13.5 - parent: 1 - - uid: 13846 - components: - - type: Transform - pos: 13.5,13.5 - parent: 1 - - uid: 13847 - components: - - type: Transform - pos: 14.5,13.5 - parent: 1 - - uid: 13848 - components: - - type: Transform - pos: 15.5,13.5 - parent: 1 - - uid: 13849 - components: - - type: Transform - pos: 16.5,13.5 - parent: 1 - - uid: 13850 - components: - - type: Transform - pos: 17.5,13.5 - parent: 1 - - uid: 13851 - components: - - type: Transform - pos: 18.5,13.5 - parent: 1 - - uid: 13887 - components: - - type: Transform - pos: 10.5,62.5 - parent: 1 - - uid: 13888 - components: - - type: Transform - pos: 10.5,63.5 - parent: 1 - - uid: 13889 - components: - - type: Transform - pos: 9.5,63.5 - parent: 1 - - uid: 13890 - components: - - type: Transform - pos: 8.5,63.5 - parent: 1 - - uid: 13891 - components: - - type: Transform - pos: 7.5,63.5 - parent: 1 - - uid: 13892 - components: - - type: Transform - pos: 7.5,64.5 - parent: 1 - - uid: 13893 - components: - - type: Transform - pos: 7.5,65.5 - parent: 1 - - uid: 13894 - components: - - type: Transform - pos: 7.5,66.5 - parent: 1 - - uid: 13895 - components: - - type: Transform - pos: 10.5,61.5 - parent: 1 - - uid: 13896 - components: - - type: Transform - pos: 9.5,61.5 - parent: 1 - - uid: 13897 - components: - - type: Transform - pos: 8.5,61.5 - parent: 1 - - uid: 13898 - components: - - type: Transform - pos: 7.5,61.5 - parent: 1 - - uid: 13899 - components: - - type: Transform - pos: 7.5,60.5 - parent: 1 - - uid: 13900 - components: - - type: Transform - pos: 6.5,60.5 - parent: 1 - - uid: 13901 - components: - - type: Transform - pos: 5.5,60.5 - parent: 1 - - uid: 13902 - components: - - type: Transform - pos: 4.5,60.5 - parent: 1 - - uid: 13903 - components: - - type: Transform - pos: 3.5,60.5 - parent: 1 - - uid: 13904 - components: - - type: Transform - pos: 2.5,60.5 - parent: 1 - - uid: 13905 - components: - - type: Transform - pos: 2.5,61.5 - parent: 1 - - uid: 13906 - components: - - type: Transform - pos: 2.5,62.5 - parent: 1 - - uid: 13907 - components: - - type: Transform - pos: 2.5,63.5 - parent: 1 - - uid: 13908 - components: - - type: Transform - pos: 1.5,63.5 - parent: 1 - - uid: 13909 - components: - - type: Transform - pos: 0.5,63.5 - parent: 1 - - uid: 13910 - components: - - type: Transform - pos: 0.5,64.5 - parent: 1 - - uid: 13911 - components: - - type: Transform - pos: 0.5,65.5 - parent: 1 - - uid: 13912 - components: - - type: Transform - pos: 0.5,66.5 - parent: 1 - - uid: 13913 - components: - - type: Transform - pos: 1.5,66.5 - parent: 1 - - uid: 13914 - components: - - type: Transform - pos: 2.5,66.5 - parent: 1 - - uid: 13915 - components: - - type: Transform - pos: 3.5,66.5 - parent: 1 - - uid: 13916 - components: - - type: Transform - pos: 4.5,66.5 - parent: 1 - - uid: 13917 - components: - - type: Transform - pos: 5.5,66.5 - parent: 1 - - uid: 13918 - components: - - type: Transform - pos: 6.5,66.5 - parent: 1 - - uid: 13919 - components: - - type: Transform - pos: 0.5,62.5 - parent: 1 - - uid: 13920 - components: - - type: Transform - pos: 0.5,61.5 - parent: 1 - - uid: 13921 - components: - - type: Transform - pos: 0.5,60.5 - parent: 1 - - uid: 13922 - components: - - type: Transform - pos: 0.5,59.5 - parent: 1 - - uid: 13923 - components: - - type: Transform - pos: 0.5,58.5 - parent: 1 - - uid: 13924 - components: - - type: Transform - pos: 0.5,57.5 - parent: 1 - - uid: 13925 - components: - - type: Transform - pos: 0.5,56.5 - parent: 1 - - uid: 13926 - components: - - type: Transform - pos: 0.5,55.5 - parent: 1 - - uid: 13927 - components: - - type: Transform - pos: 0.5,54.5 - parent: 1 - - uid: 13928 - components: - - type: Transform - pos: 0.5,53.5 - parent: 1 - - uid: 13929 - components: - - type: Transform - pos: 0.5,52.5 - parent: 1 - - uid: 13930 - components: - - type: Transform - pos: 1.5,56.5 - parent: 1 - - uid: 13931 - components: - - type: Transform - pos: 2.5,56.5 - parent: 1 - - uid: 13932 - components: - - type: Transform - pos: 3.5,56.5 - parent: 1 - - uid: 13933 - components: - - type: Transform - pos: 4.5,56.5 - parent: 1 - - uid: 13934 - components: - - type: Transform - pos: 5.5,56.5 - parent: 1 - - uid: 13935 - components: - - type: Transform - pos: 6.5,56.5 - parent: 1 - - uid: 13936 - components: - - type: Transform - pos: 7.5,56.5 - parent: 1 - - uid: 13937 - components: - - type: Transform - pos: 8.5,56.5 - parent: 1 - - uid: 13938 - components: - - type: Transform - pos: 9.5,56.5 - parent: 1 - - uid: 13939 - components: - - type: Transform - pos: 10.5,56.5 - parent: 1 - - uid: 13940 - components: - - type: Transform - pos: 11.5,56.5 - parent: 1 - - uid: 13941 - components: - - type: Transform - pos: 12.5,56.5 - parent: 1 - - uid: 13942 - components: - - type: Transform - pos: 13.5,56.5 - parent: 1 - - uid: 13943 - components: - - type: Transform - pos: 14.5,56.5 - parent: 1 - - uid: 13944 - components: - - type: Transform - pos: 14.5,57.5 - parent: 1 - - uid: 13945 - components: - - type: Transform - pos: 14.5,58.5 - parent: 1 - - uid: 13946 - components: - - type: Transform - pos: 14.5,59.5 - parent: 1 - - uid: 13947 - components: - - type: Transform - pos: 14.5,60.5 - parent: 1 - - uid: 13948 - components: - - type: Transform - pos: 14.5,61.5 - parent: 1 - - uid: 13949 - components: - - type: Transform - pos: 13.5,61.5 - parent: 1 - - uid: 13950 - components: - - type: Transform - pos: 12.5,61.5 - parent: 1 - - uid: 13951 - components: - - type: Transform - pos: 11.5,61.5 - parent: 1 - - uid: 13952 - components: - - type: Transform - pos: 10.5,61.5 - parent: 1 - - uid: 13953 - components: - - type: Transform - pos: 15.5,58.5 - parent: 1 - - uid: 13954 - components: - - type: Transform - pos: 16.5,58.5 - parent: 1 - - uid: 13955 - components: - - type: Transform - pos: 17.5,58.5 - parent: 1 - - uid: 13956 - components: - - type: Transform - pos: 18.5,58.5 - parent: 1 - - uid: 13957 - components: - - type: Transform - pos: 18.5,59.5 - parent: 1 - - uid: 13958 - components: - - type: Transform - pos: 18.5,60.5 - parent: 1 - - uid: 13959 - components: - - type: Transform - pos: 18.5,61.5 - parent: 1 - - uid: 13960 - components: - - type: Transform - pos: 18.5,62.5 - parent: 1 - - uid: 13961 - components: - - type: Transform - pos: 18.5,63.5 - parent: 1 - - uid: 13962 - components: - - type: Transform - pos: 17.5,63.5 - parent: 1 - - uid: 13963 - components: - - type: Transform - pos: 16.5,63.5 - parent: 1 - - uid: 13964 - components: - - type: Transform - pos: 15.5,63.5 - parent: 1 - - uid: 13965 - components: - - type: Transform - pos: 14.5,63.5 - parent: 1 - - uid: 13966 - components: - - type: Transform - pos: 13.5,63.5 - parent: 1 - - uid: 13967 - components: - - type: Transform - pos: 12.5,63.5 - parent: 1 - - uid: 13968 - components: - - type: Transform - pos: 11.5,63.5 - parent: 1 - - uid: 13969 - components: - - type: Transform - pos: 14.5,55.5 - parent: 1 - - uid: 13970 - components: - - type: Transform - pos: 14.5,54.5 - parent: 1 - - uid: 13971 - components: - - type: Transform - pos: 14.5,53.5 - parent: 1 - - uid: 13972 - components: - - type: Transform - pos: 14.5,52.5 - parent: 1 - - uid: 13973 - components: - - type: Transform - pos: 13.5,52.5 - parent: 1 - - uid: 13974 - components: - - type: Transform - pos: 12.5,52.5 - parent: 1 - - uid: 13975 - components: - - type: Transform - pos: 11.5,52.5 - parent: 1 - - uid: 13976 - components: - - type: Transform - pos: 10.5,52.5 - parent: 1 - - uid: 13977 - components: - - type: Transform - pos: 9.5,52.5 - parent: 1 - - uid: 13978 - components: - - type: Transform - pos: 8.5,52.5 - parent: 1 - - uid: 13979 - components: - - type: Transform - pos: 7.5,52.5 - parent: 1 - - uid: 13980 - components: - - type: Transform - pos: 6.5,52.5 - parent: 1 - - uid: 13981 - components: - - type: Transform - pos: 5.5,52.5 - parent: 1 - - uid: 13982 - components: - - type: Transform - pos: 4.5,52.5 - parent: 1 - - uid: 13983 - components: - - type: Transform - pos: 4.5,53.5 - parent: 1 - - uid: 13984 - components: - - type: Transform - pos: 4.5,54.5 - parent: 1 - - uid: 13985 - components: - - type: Transform - pos: 4.5,55.5 - parent: 1 - - uid: 13986 - components: - - type: Transform - pos: 19.5,58.5 - parent: 1 - - uid: 13987 - components: - - type: Transform - pos: 19.5,57.5 - parent: 1 - - uid: 13988 - components: - - type: Transform - pos: 19.5,56.5 - parent: 1 - - uid: 13989 - components: - - type: Transform - pos: 18.5,56.5 - parent: 1 - - uid: 13990 - components: - - type: Transform - pos: 17.5,56.5 - parent: 1 - - uid: 13991 - components: - - type: Transform - pos: 16.5,56.5 - parent: 1 - - uid: 13992 - components: - - type: Transform - pos: 16.5,55.5 - parent: 1 - - uid: 13993 - components: - - type: Transform - pos: 16.5,54.5 - parent: 1 - - uid: 14446 - components: - - type: Transform - pos: 32.5,6.5 - parent: 1 - - uid: 15386 - components: - - type: Transform - pos: -35.5,8.5 - parent: 1 - - uid: 15387 - components: - - type: Transform - pos: -35.5,9.5 - parent: 1 - - uid: 15388 - components: - - type: Transform - pos: -35.5,10.5 - parent: 1 - - uid: 15389 - components: - - type: Transform - pos: -45.5,14.5 - parent: 1 - - uid: 15390 - components: - - type: Transform - pos: -45.5,13.5 - parent: 1 - - uid: 15391 - components: - - type: Transform - pos: -35.5,12.5 - parent: 1 - - uid: 15392 - components: - - type: Transform - pos: -35.5,13.5 - parent: 1 - - uid: 15393 - components: - - type: Transform - pos: -36.5,13.5 - parent: 1 - - uid: 15394 - components: - - type: Transform - pos: -37.5,13.5 - parent: 1 - - uid: 15395 - components: - - type: Transform - pos: -38.5,13.5 - parent: 1 - - uid: 15396 - components: - - type: Transform - pos: -39.5,13.5 - parent: 1 - - uid: 15397 - components: - - type: Transform - pos: -40.5,13.5 - parent: 1 - - uid: 15398 - components: - - type: Transform - pos: -34.5,10.5 - parent: 1 - - uid: 15399 - components: - - type: Transform - pos: -33.5,10.5 - parent: 1 - - uid: 16385 - components: - - type: Transform - pos: -12.5,-43.5 - parent: 1 - - uid: 16386 - components: - - type: Transform - pos: -11.5,-43.5 - parent: 1 - - uid: 16387 - components: - - type: Transform - pos: -10.5,-43.5 - parent: 1 - - uid: 16388 - components: - - type: Transform - pos: 11.5,-43.5 - parent: 1 - - uid: 16389 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 1 - - uid: 16390 - components: - - type: Transform - pos: 9.5,-43.5 - parent: 1 - - uid: 17312 - components: - - type: Transform - pos: 5.5,80.5 - parent: 1 - - uid: 17313 - components: - - type: Transform - pos: 6.5,80.5 - parent: 1 - - uid: 17315 - components: - - type: Transform - pos: -6.5,80.5 - parent: 1 - - uid: 17316 - components: - - type: Transform - pos: -6.5,80.5 - parent: 1 - - uid: 17317 - components: - - type: Transform - pos: -7.5,80.5 - parent: 1 - - uid: 17328 - components: - - type: Transform - pos: 43.5,51.5 - parent: 1 - - uid: 18064 - components: - - type: Transform - pos: 16.5,-40.5 - parent: 1 - - uid: 18066 - components: - - type: Transform - pos: 21.5,-30.5 - parent: 1 - - uid: 18069 - components: - - type: Transform - pos: -17.5,-40.5 - parent: 1 - - uid: 18072 - components: - - type: Transform - pos: -35.5,-19.5 - parent: 1 - - uid: 18073 - components: - - type: Transform - pos: -36.5,-19.5 - parent: 1 - - uid: 18074 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 1 - - uid: 18075 - components: - - type: Transform - pos: -36.5,-21.5 - parent: 1 - - uid: 18094 - components: - - type: Transform - pos: -44.5,51.5 - parent: 1 - - uid: 18132 - components: - - type: Transform - pos: 14.5,38.5 - parent: 1 - - uid: 18133 - components: - - type: Transform - pos: -33.5,41.5 - parent: 1 - - uid: 18134 - components: - - type: Transform - pos: -23.5,57.5 - parent: 1 - - uid: 18135 - components: - - type: Transform - pos: -22.5,57.5 - parent: 1 - - uid: 18197 - components: - - type: Transform - pos: 34.5,4.5 - parent: 1 - - uid: 18198 - components: - - type: Transform - pos: 34.5,5.5 - parent: 1 - - uid: 18199 - components: - - type: Transform - pos: 35.5,3.5 - parent: 1 - - uid: 18200 - components: - - type: Transform - pos: 36.5,3.5 - parent: 1 - - uid: 18201 - components: - - type: Transform - pos: 34.5,1.5 - parent: 1 - - uid: 18202 - components: - - type: Transform - pos: 35.5,1.5 - parent: 1 - - uid: 18203 - components: - - type: Transform - pos: 36.5,1.5 - parent: 1 - - uid: 18204 - components: - - type: Transform - pos: 34.5,6.5 - parent: 1 - - uid: 18259 - components: - - type: Transform - pos: 35.5,6.5 - parent: 1 - - uid: 18260 - components: - - type: Transform - pos: 36.5,6.5 - parent: 1 - - uid: 18318 - components: - - type: Transform - pos: -19.5,63.5 - parent: 1 - - uid: 18319 - components: - - type: Transform - pos: -19.5,64.5 - parent: 1 - - uid: 18467 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 1 - - uid: 18468 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 1 - - uid: 18469 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 1 - - uid: 18470 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 1 -- proto: CableApcStack - entities: - - uid: 7462 - components: - - type: Transform - pos: 22.493486,-23.113226 - parent: 1 - - uid: 8668 - components: - - type: Transform - pos: -6.657152,21.752699 - parent: 1 - - uid: 8710 - components: - - type: Transform - pos: -10.359692,-19.510866 - parent: 1 - - uid: 9126 - components: - - type: Transform - pos: 13.59571,-22.378843 - parent: 1 -- proto: CableApcStack1 - entities: - - uid: 9815 - components: - - type: Transform - pos: -41.44949,-9.492805 - parent: 1 - - uid: 9816 - components: - - type: Transform - pos: -43.623955,-9.494401 - parent: 1 - - uid: 9817 - components: - - type: Transform - pos: -42.65844,-9.466018 - parent: 1 - - uid: 10260 - components: - - type: Transform - pos: 37.522205,-12.480022 - parent: 1 - - uid: 11664 - components: - - type: Transform - pos: -45.537365,48.54528 - parent: 1 -- proto: CableHV - entities: - - uid: 175 - components: - - type: Transform - pos: -44.5,72.5 - parent: 1 - - uid: 177 - components: - - type: Transform - pos: -43.5,72.5 - parent: 1 - - uid: 179 - components: - - type: Transform - pos: -45.5,72.5 - parent: 1 - - uid: 1224 - components: - - type: Transform - pos: -20.5,28.5 - parent: 1 - - uid: 1990 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 1 - - uid: 2048 - components: - - type: Transform - pos: -40.5,72.5 - parent: 1 - - uid: 3036 - components: - - type: Transform - pos: -8.5,-44.5 - parent: 1 - - uid: 3037 - components: - - type: Transform - pos: -8.5,-45.5 - parent: 1 - - uid: 3249 - components: - - type: Transform - pos: -35.5,74.5 - parent: 1 - - uid: 3460 - components: - - type: Transform - pos: 13.5,-40.5 - parent: 1 - - uid: 3566 - components: - - type: Transform - pos: 38.5,-11.5 - parent: 1 - - uid: 3805 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 1 - - uid: 3833 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 1 - - uid: 3834 - components: - - type: Transform - pos: 7.5,-28.5 - parent: 1 - - uid: 4139 - components: - - type: Transform - pos: -8.5,-46.5 - parent: 1 - - uid: 4595 - components: - - type: Transform - pos: -6.5,-70.5 - parent: 1 - - uid: 4596 - components: - - type: Transform - pos: -6.5,-69.5 - parent: 1 - - uid: 4597 - components: - - type: Transform - pos: -6.5,-68.5 - parent: 1 - - uid: 4598 - components: - - type: Transform - pos: -6.5,-67.5 - parent: 1 - - uid: 4599 - components: - - type: Transform - pos: -6.5,-66.5 - parent: 1 - - uid: 4600 - components: - - type: Transform - pos: -6.5,-65.5 - parent: 1 - - uid: 4601 - components: - - type: Transform - pos: -6.5,-64.5 - parent: 1 - - uid: 4602 - components: - - type: Transform - pos: -8.5,-70.5 - parent: 1 - - uid: 4603 - components: - - type: Transform - pos: -8.5,-69.5 - parent: 1 - - uid: 4604 - components: - - type: Transform - pos: -8.5,-68.5 - parent: 1 - - uid: 4605 - components: - - type: Transform - pos: -8.5,-67.5 - parent: 1 - - uid: 4606 - components: - - type: Transform - pos: -8.5,-66.5 - parent: 1 - - uid: 4607 - components: - - type: Transform - pos: -8.5,-65.5 - parent: 1 - - uid: 4608 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 1 - - uid: 4609 - components: - - type: Transform - pos: -7.5,-64.5 - parent: 1 - - uid: 4610 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 1 - - uid: 4611 - components: - - type: Transform - pos: -7.5,-62.5 - parent: 1 - - uid: 4612 - components: - - type: Transform - pos: -7.5,-61.5 - parent: 1 - - uid: 4613 - components: - - type: Transform - pos: -7.5,-60.5 - parent: 1 - - uid: 4614 - components: - - type: Transform - pos: -7.5,-59.5 - parent: 1 - - uid: 4615 - components: - - type: Transform - pos: -7.5,-58.5 - parent: 1 - - uid: 4616 - components: - - type: Transform - pos: -7.5,-57.5 - parent: 1 - - uid: 4617 - components: - - type: Transform - pos: -7.5,-56.5 - parent: 1 - - uid: 4618 - components: - - type: Transform - pos: -7.5,-55.5 - parent: 1 - - uid: 4619 - components: - - type: Transform - pos: -7.5,-54.5 - parent: 1 - - uid: 4620 - components: - - type: Transform - pos: -8.5,-54.5 - parent: 1 - - uid: 4621 - components: - - type: Transform - pos: -9.5,-54.5 - parent: 1 - - uid: 4622 - components: - - type: Transform - pos: -9.5,-53.5 - parent: 1 - - uid: 4624 - components: - - type: Transform - pos: -9.5,-51.5 - parent: 1 - - uid: 4625 - components: - - type: Transform - pos: -9.5,-50.5 - parent: 1 - - uid: 4626 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 1 - - uid: 4627 - components: - - type: Transform - pos: -9.5,-48.5 - parent: 1 - - uid: 4628 - components: - - type: Transform - pos: -9.5,-47.5 - parent: 1 - - uid: 4629 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 1 - - uid: 4630 - components: - - type: Transform - pos: -11.5,-47.5 - parent: 1 - - uid: 4631 - components: - - type: Transform - pos: -12.5,-47.5 - parent: 1 - - uid: 4632 - components: - - type: Transform - pos: -13.5,-47.5 - parent: 1 - - uid: 4633 - components: - - type: Transform - pos: -14.5,-47.5 - parent: 1 - - uid: 4634 - components: - - type: Transform - pos: -15.5,-47.5 - parent: 1 - - uid: 4635 - components: - - type: Transform - pos: -15.5,-46.5 - parent: 1 - - uid: 4636 - components: - - type: Transform - pos: -15.5,-45.5 - parent: 1 - - uid: 4637 - components: - - type: Transform - pos: -15.5,-44.5 - parent: 1 - - uid: 4638 - components: - - type: Transform - pos: -15.5,-43.5 - parent: 1 - - uid: 4639 - components: - - type: Transform - pos: -10.5,-51.5 - parent: 1 - - uid: 4640 - components: - - type: Transform - pos: -11.5,-51.5 - parent: 1 - - uid: 4641 - components: - - type: Transform - pos: -11.5,-50.5 - parent: 1 - - uid: 4642 - components: - - type: Transform - pos: -12.5,-50.5 - parent: 1 - - uid: 4643 - components: - - type: Transform - pos: -12.5,-49.5 - parent: 1 - - uid: 4644 - components: - - type: Transform - pos: -10.5,-53.5 - parent: 1 - - uid: 4645 - components: - - type: Transform - pos: -10.5,-54.5 - parent: 1 - - uid: 4646 - components: - - type: Transform - pos: -10.5,-55.5 - parent: 1 - - uid: 4647 - components: - - type: Transform - pos: -10.5,-56.5 - parent: 1 - - uid: 4648 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 1 - - uid: 4649 - components: - - type: Transform - pos: -9.5,-57.5 - parent: 1 - - uid: 4650 - components: - - type: Transform - pos: -9.5,-58.5 - parent: 1 - - uid: 4651 - components: - - type: Transform - pos: -9.5,-59.5 - parent: 1 - - uid: 4652 - components: - - type: Transform - pos: -8.5,-59.5 - parent: 1 - - uid: 4653 - components: - - type: Transform - pos: -8.5,-60.5 - parent: 1 - - uid: 4654 - components: - - type: Transform - pos: -8.5,-61.5 - parent: 1 - - uid: 4655 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 1 - - uid: 4656 - components: - - type: Transform - pos: -6.5,-62.5 - parent: 1 - - uid: 4657 - components: - - type: Transform - pos: -5.5,-62.5 - parent: 1 - - uid: 4658 - components: - - type: Transform - pos: -5.5,-61.5 - parent: 1 - - uid: 4659 - components: - - type: Transform - pos: -5.5,-60.5 - parent: 1 - - uid: 4660 - components: - - type: Transform - pos: -5.5,-59.5 - parent: 1 - - uid: 4661 - components: - - type: Transform - pos: -4.5,-59.5 - parent: 1 - - uid: 4662 - components: - - type: Transform - pos: -4.5,-58.5 - parent: 1 - - uid: 4663 - components: - - type: Transform - pos: -4.5,-57.5 - parent: 1 - - uid: 4664 - components: - - type: Transform - pos: -4.5,-56.5 - parent: 1 - - uid: 4665 - components: - - type: Transform - pos: -4.5,-55.5 - parent: 1 - - uid: 4666 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 1 - - uid: 4667 - components: - - type: Transform - pos: -4.5,-53.5 - parent: 1 - - uid: 4668 - components: - - type: Transform - pos: 3.5,-53.5 - parent: 1 - - uid: 4669 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 1 - - uid: 4670 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 1 - - uid: 4671 - components: - - type: Transform - pos: 3.5,-56.5 - parent: 1 - - uid: 4672 - components: - - type: Transform - pos: 3.5,-57.5 - parent: 1 - - uid: 4673 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 1 - - uid: 4674 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 1 - - uid: 4675 - components: - - type: Transform - pos: 4.5,-59.5 - parent: 1 - - uid: 4676 - components: - - type: Transform - pos: 4.5,-60.5 - parent: 1 - - uid: 4677 - components: - - type: Transform - pos: 4.5,-61.5 - parent: 1 - - uid: 4678 - components: - - type: Transform - pos: 4.5,-62.5 - parent: 1 - - uid: 4679 - components: - - type: Transform - pos: 5.5,-62.5 - parent: 1 - - uid: 4680 - components: - - type: Transform - pos: 6.5,-64.5 - parent: 1 - - uid: 4681 - components: - - type: Transform - pos: 6.5,-63.5 - parent: 1 - - uid: 4682 - components: - - type: Transform - pos: 6.5,-62.5 - parent: 1 - - uid: 4683 - components: - - type: Transform - pos: 6.5,-61.5 - parent: 1 - - uid: 4684 - components: - - type: Transform - pos: 6.5,-60.5 - parent: 1 - - uid: 4685 - components: - - type: Transform - pos: 6.5,-59.5 - parent: 1 - - uid: 4686 - components: - - type: Transform - pos: 6.5,-58.5 - parent: 1 - - uid: 4687 - components: - - type: Transform - pos: 6.5,-57.5 - parent: 1 - - uid: 4688 - components: - - type: Transform - pos: 6.5,-56.5 - parent: 1 - - uid: 4689 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 1 - - uid: 4690 - components: - - type: Transform - pos: 6.5,-54.5 - parent: 1 - - uid: 4691 - components: - - type: Transform - pos: -8.5,-47.5 - parent: 1 - - uid: 4692 - components: - - type: Transform - pos: -7.5,-47.5 - parent: 1 - - uid: 4693 - components: - - type: Transform - pos: -6.5,-47.5 - parent: 1 - - uid: 4694 - components: - - type: Transform - pos: -5.5,-47.5 - parent: 1 - - uid: 4695 - components: - - type: Transform - pos: -4.5,-47.5 - parent: 1 - - uid: 4696 - components: - - type: Transform - pos: -3.5,-47.5 - parent: 1 - - uid: 4697 - components: - - type: Transform - pos: -3.5,-48.5 - parent: 1 - - uid: 4698 - components: - - type: Transform - pos: -3.5,-49.5 - parent: 1 - - uid: 4704 - components: - - type: Transform - pos: 2.5,-49.5 - parent: 1 - - uid: 4705 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 1 - - uid: 4706 - components: - - type: Transform - pos: 2.5,-47.5 - parent: 1 - - uid: 4707 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 1 - - uid: 4708 - components: - - type: Transform - pos: 4.5,-47.5 - parent: 1 - - uid: 4709 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 1 - - uid: 4710 - components: - - type: Transform - pos: 6.5,-47.5 - parent: 1 - - uid: 4711 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 1 - - uid: 4712 - components: - - type: Transform - pos: 8.5,-47.5 - parent: 1 - - uid: 4713 - components: - - type: Transform - pos: 8.5,-48.5 - parent: 1 - - uid: 4714 - components: - - type: Transform - pos: 8.5,-49.5 - parent: 1 - - uid: 4715 - components: - - type: Transform - pos: 8.5,-50.5 - parent: 1 - - uid: 4716 - components: - - type: Transform - pos: 8.5,-51.5 - parent: 1 - - uid: 4718 - components: - - type: Transform - pos: 8.5,-53.5 - parent: 1 - - uid: 4719 - components: - - type: Transform - pos: 8.5,-54.5 - parent: 1 - - uid: 4720 - components: - - type: Transform - pos: 7.5,-54.5 - parent: 1 - - uid: 4721 - components: - - type: Transform - pos: 9.5,-53.5 - parent: 1 - - uid: 4722 - components: - - type: Transform - pos: 9.5,-54.5 - parent: 1 - - uid: 4723 - components: - - type: Transform - pos: 9.5,-55.5 - parent: 1 - - uid: 4724 - components: - - type: Transform - pos: 9.5,-56.5 - parent: 1 - - uid: 4725 - components: - - type: Transform - pos: 8.5,-56.5 - parent: 1 - - uid: 4726 - components: - - type: Transform - pos: 8.5,-57.5 - parent: 1 - - uid: 4727 - components: - - type: Transform - pos: 8.5,-58.5 - parent: 1 - - uid: 4728 - components: - - type: Transform - pos: 8.5,-59.5 - parent: 1 - - uid: 4729 - components: - - type: Transform - pos: 7.5,-59.5 - parent: 1 - - uid: 4730 - components: - - type: Transform - pos: 7.5,-60.5 - parent: 1 - - uid: 4731 - components: - - type: Transform - pos: 7.5,-61.5 - parent: 1 - - uid: 4732 - components: - - type: Transform - pos: 7.5,-62.5 - parent: 1 - - uid: 4733 - components: - - type: Transform - pos: 9.5,-51.5 - parent: 1 - - uid: 4734 - components: - - type: Transform - pos: 10.5,-51.5 - parent: 1 - - uid: 4735 - components: - - type: Transform - pos: 10.5,-50.5 - parent: 1 - - uid: 4736 - components: - - type: Transform - pos: 11.5,-50.5 - parent: 1 - - uid: 4737 - components: - - type: Transform - pos: 11.5,-49.5 - parent: 1 - - uid: 4738 - components: - - type: Transform - pos: 13.5,-47.5 - parent: 1 - - uid: 4739 - components: - - type: Transform - pos: 14.5,-47.5 - parent: 1 - - uid: 4740 - components: - - type: Transform - pos: 14.5,-46.5 - parent: 1 - - uid: 4741 - components: - - type: Transform - pos: 14.5,-45.5 - parent: 1 - - uid: 4742 - components: - - type: Transform - pos: 14.5,-44.5 - parent: 1 - - uid: 4743 - components: - - type: Transform - pos: 14.5,-43.5 - parent: 1 - - uid: 4744 - components: - - type: Transform - pos: 12.5,-47.5 - parent: 1 - - uid: 4745 - components: - - type: Transform - pos: 12.5,-46.5 - parent: 1 - - uid: 4746 - components: - - type: Transform - pos: 12.5,-45.5 - parent: 1 - - uid: 4747 - components: - - type: Transform - pos: 12.5,-44.5 - parent: 1 - - uid: 4748 - components: - - type: Transform - pos: 12.5,-43.5 - parent: 1 - - uid: 4749 - components: - - type: Transform - pos: 12.5,-42.5 - parent: 1 - - uid: 4750 - components: - - type: Transform - pos: 12.5,-41.5 - parent: 1 - - uid: 4751 - components: - - type: Transform - pos: 12.5,-40.5 - parent: 1 - - uid: 4752 - components: - - type: Transform - pos: 12.5,-39.5 - parent: 1 - - uid: 4753 - components: - - type: Transform - pos: 12.5,-38.5 - parent: 1 - - uid: 4754 - components: - - type: Transform - pos: 12.5,-37.5 - parent: 1 - - uid: 4755 - components: - - type: Transform - pos: 11.5,-37.5 - parent: 1 - - uid: 4756 - components: - - type: Transform - pos: 11.5,-36.5 - parent: 1 - - uid: 4757 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 1 - - uid: 4758 - components: - - type: Transform - pos: 14.5,-35.5 - parent: 1 - - uid: 4759 - components: - - type: Transform - pos: 13.5,-35.5 - parent: 1 - - uid: 4760 - components: - - type: Transform - pos: 13.5,-34.5 - parent: 1 - - uid: 4761 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 1 - - uid: 4762 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 1 - - uid: 4763 - components: - - type: Transform - pos: 7.5,-33.5 - parent: 1 - - uid: 4764 - components: - - type: Transform - pos: 7.5,-34.5 - parent: 1 - - uid: 4765 - components: - - type: Transform - pos: 7.5,-35.5 - parent: 1 - - uid: 4766 - components: - - type: Transform - pos: 7.5,-36.5 - parent: 1 - - uid: 4767 - components: - - type: Transform - pos: 7.5,-37.5 - parent: 1 - - uid: 4768 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 1 - - uid: 4769 - components: - - type: Transform - pos: 7.5,-39.5 - parent: 1 - - uid: 4770 - components: - - type: Transform - pos: 7.5,-40.5 - parent: 1 - - uid: 4771 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 1 - - uid: 4772 - components: - - type: Transform - pos: 6.5,-39.5 - parent: 1 - - uid: 4773 - components: - - type: Transform - pos: 7.5,-32.5 - parent: 1 - - uid: 4774 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 1 - - uid: 4775 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 1 - - uid: 4776 - components: - - type: Transform - pos: 6.5,-30.5 - parent: 1 - - uid: 4777 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 1 - - uid: 4778 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 1 - - uid: 4783 - components: - - type: Transform - pos: 5.5,-29.5 - parent: 1 - - uid: 4784 - components: - - type: Transform - pos: 6.5,-29.5 - parent: 1 - - uid: 4785 - components: - - type: Transform - pos: 7.5,-29.5 - parent: 1 - - uid: 4786 - components: - - type: Transform - pos: 8.5,-29.5 - parent: 1 - - uid: 4787 - components: - - type: Transform - pos: 9.5,-29.5 - parent: 1 - - uid: 4788 - components: - - type: Transform - pos: 10.5,-29.5 - parent: 1 - - uid: 4789 - components: - - type: Transform - pos: 11.5,-29.5 - parent: 1 - - uid: 4790 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 1 - - uid: 4791 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 1 - - uid: 4792 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 1 - - uid: 4793 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 1 - - uid: 4794 - components: - - type: Transform - pos: 12.5,-25.5 - parent: 1 - - uid: 4795 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 1 - - uid: 4796 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 1 - - uid: 4797 - components: - - type: Transform - pos: 12.5,-22.5 - parent: 1 - - uid: 4798 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 1 - - uid: 4799 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 1 - - uid: 4800 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 1 - - uid: 4801 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 1 - - uid: 4802 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 1 - - uid: 4803 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 1 - - uid: 4804 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 1 - - uid: 4805 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 1 - - uid: 4806 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 1 - - uid: 4807 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 1 - - uid: 4808 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 1 - - uid: 4809 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 1 - - uid: 4810 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 1 - - uid: 4811 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 1 - - uid: 4812 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 1 - - uid: 4813 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 1 - - uid: 4814 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 1 - - uid: 4815 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 1 - - uid: 4816 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1 - - uid: 4817 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 1 - - uid: 4818 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 1 - - uid: 4819 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 1 - - uid: 4820 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1 - - uid: 4821 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 1 - - uid: 4822 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 1 - - uid: 4823 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 1 - - uid: 4824 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 1 - - uid: 4825 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 1 - - uid: 4826 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 1 - - uid: 4827 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 1 - - uid: 4828 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 1 - - uid: 4829 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 1 - - uid: 4830 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 1 - - uid: 4831 - components: - - type: Transform - pos: -11.5,-15.5 - parent: 1 - - uid: 4832 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 1 - - uid: 4833 - components: - - type: Transform - pos: -12.5,-16.5 - parent: 1 - - uid: 4834 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 1 - - uid: 4835 - components: - - type: Transform - pos: -12.5,-18.5 - parent: 1 - - uid: 4836 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 1 - - uid: 4837 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 1 - - uid: 4838 - components: - - type: Transform - pos: -12.5,-21.5 - parent: 1 - - uid: 4839 - components: - - type: Transform - pos: -12.5,-22.5 - parent: 1 - - uid: 4840 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 1 - - uid: 4841 - components: - - type: Transform - pos: -12.5,-24.5 - parent: 1 - - uid: 4842 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 1 - - uid: 4843 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 1 - - uid: 4844 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 1 - - uid: 4845 - components: - - type: Transform - pos: -12.5,-27.5 - parent: 1 - - uid: 4846 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 1 - - uid: 4847 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 1 - - uid: 4848 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 1 - - uid: 4849 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 1 - - uid: 4850 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 1 - - uid: 4851 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 1 - - uid: 4852 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 1 - - uid: 4853 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 1 - - uid: 4854 - components: - - type: Transform - pos: -12.5,-35.5 - parent: 1 - - uid: 4855 - components: - - type: Transform - pos: -12.5,-36.5 - parent: 1 - - uid: 4856 - components: - - type: Transform - pos: -13.5,-36.5 - parent: 1 - - uid: 4857 - components: - - type: Transform - pos: -14.5,-36.5 - parent: 1 - - uid: 4858 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 1 - - uid: 4859 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 1 - - uid: 4860 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 1 - - uid: 4861 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 1 - - uid: 4862 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 1 - - uid: 4863 - components: - - type: Transform - pos: -16.5,-32.5 - parent: 1 - - uid: 4864 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 1 - - uid: 4865 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 1 - - uid: 4866 - components: - - type: Transform - pos: -18.5,-31.5 - parent: 1 - - uid: 4867 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 1 - - uid: 4868 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 1 - - uid: 4869 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 1 - - uid: 4870 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 1 - - uid: 4871 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 1 - - uid: 4872 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 1 - - uid: 4873 - components: - - type: Transform - pos: -18.5,-24.5 - parent: 1 - - uid: 4874 - components: - - type: Transform - pos: -19.5,-31.5 - parent: 1 - - uid: 4875 - components: - - type: Transform - pos: -20.5,-31.5 - parent: 1 - - uid: 4876 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 1 - - uid: 4877 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 1 - - uid: 4878 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 1 - - uid: 4879 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 1 - - uid: 4880 - components: - - type: Transform - pos: -16.5,-21.5 - parent: 1 - - uid: 4881 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 1 - - uid: 4882 - components: - - type: Transform - pos: -16.5,-19.5 - parent: 1 - - uid: 4883 - components: - - type: Transform - pos: -16.5,-18.5 - parent: 1 - - uid: 4884 - components: - - type: Transform - pos: -16.5,-17.5 - parent: 1 - - uid: 4885 - components: - - type: Transform - pos: -16.5,-16.5 - parent: 1 - - uid: 4886 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 1 - - uid: 4887 - components: - - type: Transform - pos: -16.5,-14.5 - parent: 1 - - uid: 4888 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 1 - - uid: 4889 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 1 - - uid: 4890 - components: - - type: Transform - pos: -16.5,-11.5 - parent: 1 - - uid: 4891 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 1 - - uid: 4892 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 1 - - uid: 4893 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 1 - - uid: 4894 - components: - - type: Transform - pos: -12.5,-10.5 - parent: 1 - - uid: 4895 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 1 - - uid: 4896 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 1 - - uid: 4897 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 1 - - uid: 4898 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 1 - - uid: 4899 - components: - - type: Transform - pos: -13.5,-9.5 - parent: 1 - - uid: 4900 - components: - - type: Transform - pos: -14.5,-9.5 - parent: 1 - - uid: 4901 - components: - - type: Transform - pos: -15.5,-9.5 - parent: 1 - - uid: 4902 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 1 - - uid: 4903 - components: - - type: Transform - pos: -20.5,-29.5 - parent: 1 - - uid: 4904 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 1 - - uid: 4905 - components: - - type: Transform - pos: -20.5,-27.5 - parent: 1 - - uid: 4906 - components: - - type: Transform - pos: -20.5,-26.5 - parent: 1 - - uid: 4907 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 1 - - uid: 4908 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 1 - - uid: 4909 - components: - - type: Transform - pos: -23.5,-26.5 - parent: 1 - - uid: 4910 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 1 - - uid: 4911 - components: - - type: Transform - pos: -25.5,-26.5 - parent: 1 - - uid: 4912 - components: - - type: Transform - pos: -26.5,-26.5 - parent: 1 - - uid: 4913 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 1 - - uid: 4914 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 1 - - uid: 4915 - components: - - type: Transform - pos: -29.5,-26.5 - parent: 1 - - uid: 4916 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 1 - - uid: 4917 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 1 - - uid: 4918 - components: - - type: Transform - pos: -29.5,-23.5 - parent: 1 - - uid: 4919 - components: - - type: Transform - pos: -29.5,-22.5 - parent: 1 - - uid: 4920 - components: - - type: Transform - pos: -29.5,-21.5 - parent: 1 - - uid: 4921 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 1 - - uid: 4922 - components: - - type: Transform - pos: -29.5,-19.5 - parent: 1 - - uid: 4923 - components: - - type: Transform - pos: -29.5,-18.5 - parent: 1 - - uid: 4924 - components: - - type: Transform - pos: -29.5,-17.5 - parent: 1 - - uid: 4925 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 1 - - uid: 4926 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 1 - - uid: 4927 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 1 - - uid: 4928 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 1 - - uid: 4929 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 1 - - uid: 4930 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 1 - - uid: 4932 - components: - - type: Transform - pos: -3.5,74.5 - parent: 1 - - uid: 4933 - components: - - type: Transform - pos: -3.5,73.5 - parent: 1 - - uid: 4934 - components: - - type: Transform - pos: -3.5,72.5 - parent: 1 - - uid: 4935 - components: - - type: Transform - pos: -3.5,71.5 - parent: 1 - - uid: 4936 - components: - - type: Transform - pos: -3.5,70.5 - parent: 1 - - uid: 4937 - components: - - type: Transform - pos: -4.5,70.5 - parent: 1 - - uid: 4938 - components: - - type: Transform - pos: -4.5,69.5 - parent: 1 - - uid: 4939 - components: - - type: Transform - pos: -4.5,68.5 - parent: 1 - - uid: 4940 - components: - - type: Transform - pos: -4.5,67.5 - parent: 1 - - uid: 4941 - components: - - type: Transform - pos: -3.5,67.5 - parent: 1 - - uid: 4942 - components: - - type: Transform - pos: -2.5,67.5 - parent: 1 - - uid: 4943 - components: - - type: Transform - pos: -1.5,67.5 - parent: 1 - - uid: 4944 - components: - - type: Transform - pos: -5.5,67.5 - parent: 1 - - uid: 4945 - components: - - type: Transform - pos: -6.5,67.5 - parent: 1 - - uid: 4946 - components: - - type: Transform - pos: -7.5,67.5 - parent: 1 - - uid: 4947 - components: - - type: Transform - pos: -8.5,67.5 - parent: 1 - - uid: 4948 - components: - - type: Transform - pos: -9.5,67.5 - parent: 1 - - uid: 4949 - components: - - type: Transform - pos: -10.5,67.5 - parent: 1 - - uid: 4950 - components: - - type: Transform - pos: -11.5,67.5 - parent: 1 - - uid: 4951 - components: - - type: Transform - pos: -12.5,67.5 - parent: 1 - - uid: 4952 - components: - - type: Transform - pos: -13.5,67.5 - parent: 1 - - uid: 4953 - components: - - type: Transform - pos: -13.5,66.5 - parent: 1 - - uid: 4954 - components: - - type: Transform - pos: -13.5,65.5 - parent: 1 - - uid: 4955 - components: - - type: Transform - pos: -13.5,64.5 - parent: 1 - - uid: 4956 - components: - - type: Transform - pos: -13.5,63.5 - parent: 1 - - uid: 4957 - components: - - type: Transform - pos: -13.5,62.5 - parent: 1 - - uid: 4958 - components: - - type: Transform - pos: -14.5,62.5 - parent: 1 - - uid: 4959 - components: - - type: Transform - pos: -15.5,62.5 - parent: 1 - - uid: 4960 - components: - - type: Transform - pos: -16.5,62.5 - parent: 1 - - uid: 4961 - components: - - type: Transform - pos: -17.5,62.5 - parent: 1 - - uid: 4962 - components: - - type: Transform - pos: -18.5,62.5 - parent: 1 - - uid: 4963 - components: - - type: Transform - pos: -19.5,62.5 - parent: 1 - - uid: 4964 - components: - - type: Transform - pos: -19.5,61.5 - parent: 1 - - uid: 4965 - components: - - type: Transform - pos: -19.5,60.5 - parent: 1 - - uid: 4966 - components: - - type: Transform - pos: -19.5,59.5 - parent: 1 - - uid: 4967 - components: - - type: Transform - pos: -19.5,58.5 - parent: 1 - - uid: 4968 - components: - - type: Transform - pos: -19.5,57.5 - parent: 1 - - uid: 4969 - components: - - type: Transform - pos: -20.5,57.5 - parent: 1 - - uid: 4970 - components: - - type: Transform - pos: -21.5,57.5 - parent: 1 - - uid: 4971 - components: - - type: Transform - pos: -21.5,56.5 - parent: 1 - - uid: 4972 - components: - - type: Transform - pos: -21.5,55.5 - parent: 1 - - uid: 4973 - components: - - type: Transform - pos: -21.5,54.5 - parent: 1 - - uid: 4974 - components: - - type: Transform - pos: -21.5,53.5 - parent: 1 - - uid: 4975 - components: - - type: Transform - pos: -21.5,52.5 - parent: 1 - - uid: 4976 - components: - - type: Transform - pos: -21.5,51.5 - parent: 1 - - uid: 4977 - components: - - type: Transform - pos: -21.5,50.5 - parent: 1 - - uid: 4978 - components: - - type: Transform - pos: -21.5,49.5 - parent: 1 - - uid: 4979 - components: - - type: Transform - pos: -21.5,48.5 - parent: 1 - - uid: 4980 - components: - - type: Transform - pos: -21.5,47.5 - parent: 1 - - uid: 4981 - components: - - type: Transform - pos: -21.5,46.5 - parent: 1 - - uid: 4982 - components: - - type: Transform - pos: -21.5,45.5 - parent: 1 - - uid: 4983 - components: - - type: Transform - pos: -21.5,44.5 - parent: 1 - - uid: 4984 - components: - - type: Transform - pos: -21.5,43.5 - parent: 1 - - uid: 4985 - components: - - type: Transform - pos: -21.5,42.5 - parent: 1 - - uid: 4986 - components: - - type: Transform - pos: -21.5,41.5 - parent: 1 - - uid: 4987 - components: - - type: Transform - pos: -21.5,40.5 - parent: 1 - - uid: 4988 - components: - - type: Transform - pos: -21.5,39.5 - parent: 1 - - uid: 4989 - components: - - type: Transform - pos: -21.5,38.5 - parent: 1 - - uid: 4990 - components: - - type: Transform - pos: -21.5,37.5 - parent: 1 - - uid: 4991 - components: - - type: Transform - pos: -21.5,36.5 - parent: 1 - - uid: 4992 - components: - - type: Transform - pos: -22.5,57.5 - parent: 1 - - uid: 4993 - components: - - type: Transform - pos: -23.5,57.5 - parent: 1 - - uid: 4994 - components: - - type: Transform - pos: -24.5,57.5 - parent: 1 - - uid: 4995 - components: - - type: Transform - pos: -24.5,56.5 - parent: 1 - - uid: 4996 - components: - - type: Transform - pos: -24.5,55.5 - parent: 1 - - uid: 4997 - components: - - type: Transform - pos: -24.5,54.5 - parent: 1 - - uid: 4998 - components: - - type: Transform - pos: -24.5,53.5 - parent: 1 - - uid: 4999 - components: - - type: Transform - pos: -24.5,52.5 - parent: 1 - - uid: 5000 - components: - - type: Transform - pos: -24.5,51.5 - parent: 1 - - uid: 5001 - components: - - type: Transform - pos: -24.5,50.5 - parent: 1 - - uid: 5002 - components: - - type: Transform - pos: -0.5,67.5 - parent: 1 - - uid: 5003 - components: - - type: Transform - pos: 0.5,67.5 - parent: 1 - - uid: 5004 - components: - - type: Transform - pos: 1.5,67.5 - parent: 1 - - uid: 5005 - components: - - type: Transform - pos: 2.5,67.5 - parent: 1 - - uid: 5006 - components: - - type: Transform - pos: 3.5,67.5 - parent: 1 - - uid: 5007 - components: - - type: Transform - pos: 4.5,67.5 - parent: 1 - - uid: 5008 - components: - - type: Transform - pos: 5.5,67.5 - parent: 1 - - uid: 5009 - components: - - type: Transform - pos: 6.5,67.5 - parent: 1 - - uid: 5010 - components: - - type: Transform - pos: 7.5,67.5 - parent: 1 - - uid: 5011 - components: - - type: Transform - pos: 7.5,66.5 - parent: 1 - - uid: 5012 - components: - - type: Transform - pos: 7.5,65.5 - parent: 1 - - uid: 5013 - components: - - type: Transform - pos: 7.5,64.5 - parent: 1 - - uid: 5014 - components: - - type: Transform - pos: 7.5,63.5 - parent: 1 - - uid: 5015 - components: - - type: Transform - pos: 8.5,63.5 - parent: 1 - - uid: 5016 - components: - - type: Transform - pos: 9.5,63.5 - parent: 1 - - uid: 5017 - components: - - type: Transform - pos: 10.5,63.5 - parent: 1 - - uid: 5018 - components: - - type: Transform - pos: 11.5,63.5 - parent: 1 - - uid: 5019 - components: - - type: Transform - pos: 12.5,63.5 - parent: 1 - - uid: 5020 - components: - - type: Transform - pos: 13.5,63.5 - parent: 1 - - uid: 5021 - components: - - type: Transform - pos: 14.5,63.5 - parent: 1 - - uid: 5022 - components: - - type: Transform - pos: 15.5,63.5 - parent: 1 - - uid: 5023 - components: - - type: Transform - pos: 16.5,63.5 - parent: 1 - - uid: 5024 - components: - - type: Transform - pos: 17.5,63.5 - parent: 1 - - uid: 5025 - components: - - type: Transform - pos: 18.5,63.5 - parent: 1 - - uid: 5026 - components: - - type: Transform - pos: 18.5,62.5 - parent: 1 - - uid: 5027 - components: - - type: Transform - pos: 18.5,61.5 - parent: 1 - - uid: 5028 - components: - - type: Transform - pos: 18.5,60.5 - parent: 1 - - uid: 5029 - components: - - type: Transform - pos: 18.5,59.5 - parent: 1 - - uid: 5030 - components: - - type: Transform - pos: 18.5,58.5 - parent: 1 - - uid: 5031 - components: - - type: Transform - pos: 19.5,58.5 - parent: 1 - - uid: 5032 - components: - - type: Transform - pos: 19.5,57.5 - parent: 1 - - uid: 5033 - components: - - type: Transform - pos: 19.5,56.5 - parent: 1 - - uid: 5034 - components: - - type: Transform - pos: 18.5,56.5 - parent: 1 - - uid: 5035 - components: - - type: Transform - pos: 17.5,56.5 - parent: 1 - - uid: 5036 - components: - - type: Transform - pos: 16.5,56.5 - parent: 1 - - uid: 5037 - components: - - type: Transform - pos: 20.5,56.5 - parent: 1 - - uid: 5038 - components: - - type: Transform - pos: 21.5,56.5 - parent: 1 - - uid: 5039 - components: - - type: Transform - pos: 22.5,56.5 - parent: 1 - - uid: 5040 - components: - - type: Transform - pos: 22.5,55.5 - parent: 1 - - uid: 5041 - components: - - type: Transform - pos: 22.5,54.5 - parent: 1 - - uid: 5042 - components: - - type: Transform - pos: 22.5,53.5 - parent: 1 - - uid: 5043 - components: - - type: Transform - pos: 22.5,52.5 - parent: 1 - - uid: 5044 - components: - - type: Transform - pos: 22.5,51.5 - parent: 1 - - uid: 5045 - components: - - type: Transform - pos: 22.5,50.5 - parent: 1 - - uid: 5046 - components: - - type: Transform - pos: 22.5,49.5 - parent: 1 - - uid: 5047 - components: - - type: Transform - pos: 22.5,48.5 - parent: 1 - - uid: 5048 - components: - - type: Transform - pos: 22.5,47.5 - parent: 1 - - uid: 5049 - components: - - type: Transform - pos: 22.5,46.5 - parent: 1 - - uid: 5050 - components: - - type: Transform - pos: 22.5,45.5 - parent: 1 - - uid: 5051 - components: - - type: Transform - pos: 23.5,45.5 - parent: 1 - - uid: 5052 - components: - - type: Transform - pos: 24.5,45.5 - parent: 1 - - uid: 5053 - components: - - type: Transform - pos: 25.5,45.5 - parent: 1 - - uid: 5054 - components: - - type: Transform - pos: 25.5,44.5 - parent: 1 - - uid: 5055 - components: - - type: Transform - pos: 25.5,43.5 - parent: 1 - - uid: 5056 - components: - - type: Transform - pos: 25.5,42.5 - parent: 1 - - uid: 5057 - components: - - type: Transform - pos: 25.5,41.5 - parent: 1 - - uid: 5058 - components: - - type: Transform - pos: 25.5,40.5 - parent: 1 - - uid: 5059 - components: - - type: Transform - pos: 25.5,39.5 - parent: 1 - - uid: 5060 - components: - - type: Transform - pos: 25.5,38.5 - parent: 1 - - uid: 5061 - components: - - type: Transform - pos: 25.5,37.5 - parent: 1 - - uid: 5062 - components: - - type: Transform - pos: 25.5,36.5 - parent: 1 - - uid: 5063 - components: - - type: Transform - pos: 16.5,55.5 - parent: 1 - - uid: 5064 - components: - - type: Transform - pos: 16.5,54.5 - parent: 1 - - uid: 5065 - components: - - type: Transform - pos: 16.5,53.5 - parent: 1 - - uid: 5066 - components: - - type: Transform - pos: 16.5,52.5 - parent: 1 - - uid: 5067 - components: - - type: Transform - pos: 16.5,52.5 - parent: 1 - - uid: 5068 - components: - - type: Transform - pos: 17.5,52.5 - parent: 1 - - uid: 5069 - components: - - type: Transform - pos: 18.5,52.5 - parent: 1 - - uid: 5070 - components: - - type: Transform - pos: 19.5,52.5 - parent: 1 - - uid: 5071 - components: - - type: Transform - pos: 20.5,52.5 - parent: 1 - - uid: 5072 - components: - - type: Transform - pos: 20.5,53.5 - parent: 1 - - uid: 5073 - components: - - type: Transform - pos: 20.5,54.5 - parent: 1 - - uid: 5074 - components: - - type: Transform - pos: -20.5,36.5 - parent: 1 - - uid: 5075 - components: - - type: Transform - pos: -19.5,36.5 - parent: 1 - - uid: 5076 - components: - - type: Transform - pos: -18.5,36.5 - parent: 1 - - uid: 5077 - components: - - type: Transform - pos: -17.5,36.5 - parent: 1 - - uid: 5078 - components: - - type: Transform - pos: -16.5,36.5 - parent: 1 - - uid: 5079 - components: - - type: Transform - pos: -15.5,36.5 - parent: 1 - - uid: 5080 - components: - - type: Transform - pos: -14.5,36.5 - parent: 1 - - uid: 5081 - components: - - type: Transform - pos: -13.5,36.5 - parent: 1 - - uid: 5082 - components: - - type: Transform - pos: -12.5,36.5 - parent: 1 - - uid: 5083 - components: - - type: Transform - pos: -11.5,36.5 - parent: 1 - - uid: 5084 - components: - - type: Transform - pos: -10.5,36.5 - parent: 1 - - uid: 5085 - components: - - type: Transform - pos: -9.5,36.5 - parent: 1 - - uid: 5086 - components: - - type: Transform - pos: -8.5,36.5 - parent: 1 - - uid: 5087 - components: - - type: Transform - pos: -7.5,36.5 - parent: 1 - - uid: 5088 - components: - - type: Transform - pos: -6.5,36.5 - parent: 1 - - uid: 5089 - components: - - type: Transform - pos: -5.5,36.5 - parent: 1 - - uid: 5090 - components: - - type: Transform - pos: -4.5,36.5 - parent: 1 - - uid: 5091 - components: - - type: Transform - pos: -3.5,36.5 - parent: 1 - - uid: 5092 - components: - - type: Transform - pos: -2.5,36.5 - parent: 1 - - uid: 5093 - components: - - type: Transform - pos: -1.5,36.5 - parent: 1 - - uid: 5094 - components: - - type: Transform - pos: -0.5,36.5 - parent: 1 - - uid: 5095 - components: - - type: Transform - pos: 0.5,36.5 - parent: 1 - - uid: 5096 - components: - - type: Transform - pos: 1.5,36.5 - parent: 1 - - uid: 5097 - components: - - type: Transform - pos: 2.5,36.5 - parent: 1 - - uid: 5098 - components: - - type: Transform - pos: 3.5,36.5 - parent: 1 - - uid: 5099 - components: - - type: Transform - pos: 4.5,36.5 - parent: 1 - - uid: 5100 - components: - - type: Transform - pos: 5.5,36.5 - parent: 1 - - uid: 5101 - components: - - type: Transform - pos: 6.5,36.5 - parent: 1 - - uid: 5102 - components: - - type: Transform - pos: 7.5,36.5 - parent: 1 - - uid: 5103 - components: - - type: Transform - pos: 8.5,36.5 - parent: 1 - - uid: 5104 - components: - - type: Transform - pos: 9.5,36.5 - parent: 1 - - uid: 5105 - components: - - type: Transform - pos: 10.5,36.5 - parent: 1 - - uid: 5106 - components: - - type: Transform - pos: 11.5,36.5 - parent: 1 - - uid: 5107 - components: - - type: Transform - pos: 12.5,36.5 - parent: 1 - - uid: 5108 - components: - - type: Transform - pos: 13.5,36.5 - parent: 1 - - uid: 5109 - components: - - type: Transform - pos: 14.5,36.5 - parent: 1 - - uid: 5110 - components: - - type: Transform - pos: 15.5,36.5 - parent: 1 - - uid: 5111 - components: - - type: Transform - pos: 16.5,36.5 - parent: 1 - - uid: 5112 - components: - - type: Transform - pos: 17.5,36.5 - parent: 1 - - uid: 5113 - components: - - type: Transform - pos: 18.5,36.5 - parent: 1 - - uid: 5114 - components: - - type: Transform - pos: 19.5,36.5 - parent: 1 - - uid: 5115 - components: - - type: Transform - pos: 20.5,36.5 - parent: 1 - - uid: 5116 - components: - - type: Transform - pos: 21.5,36.5 - parent: 1 - - uid: 5117 - components: - - type: Transform - pos: 22.5,36.5 - parent: 1 - - uid: 5118 - components: - - type: Transform - pos: 23.5,36.5 - parent: 1 - - uid: 5119 - components: - - type: Transform - pos: 24.5,36.5 - parent: 1 - - uid: 5120 - components: - - type: Transform - pos: -1.5,66.5 - parent: 1 - - uid: 5121 - components: - - type: Transform - pos: -1.5,65.5 - parent: 1 - - uid: 5122 - components: - - type: Transform - pos: -1.5,64.5 - parent: 1 - - uid: 5123 - components: - - type: Transform - pos: -1.5,63.5 - parent: 1 - - uid: 5124 - components: - - type: Transform - pos: -1.5,62.5 - parent: 1 - - uid: 5125 - components: - - type: Transform - pos: -1.5,61.5 - parent: 1 - - uid: 5126 - components: - - type: Transform - pos: -1.5,60.5 - parent: 1 - - uid: 5127 - components: - - type: Transform - pos: -1.5,59.5 - parent: 1 - - uid: 5128 - components: - - type: Transform - pos: -1.5,58.5 - parent: 1 - - uid: 5129 - components: - - type: Transform - pos: -1.5,57.5 - parent: 1 - - uid: 5130 - components: - - type: Transform - pos: -1.5,56.5 - parent: 1 - - uid: 5131 - components: - - type: Transform - pos: -1.5,55.5 - parent: 1 - - uid: 5132 - components: - - type: Transform - pos: -1.5,54.5 - parent: 1 - - uid: 5133 - components: - - type: Transform - pos: -1.5,53.5 - parent: 1 - - uid: 5134 - components: - - type: Transform - pos: -1.5,52.5 - parent: 1 - - uid: 5135 - components: - - type: Transform - pos: -1.5,51.5 - parent: 1 - - uid: 5136 - components: - - type: Transform - pos: -1.5,50.5 - parent: 1 - - uid: 5137 - components: - - type: Transform - pos: -1.5,49.5 - parent: 1 - - uid: 5138 - components: - - type: Transform - pos: -1.5,48.5 - parent: 1 - - uid: 5139 - components: - - type: Transform - pos: -1.5,47.5 - parent: 1 - - uid: 5140 - components: - - type: Transform - pos: -1.5,46.5 - parent: 1 - - uid: 5141 - components: - - type: Transform - pos: -1.5,45.5 - parent: 1 - - uid: 5142 - components: - - type: Transform - pos: -1.5,44.5 - parent: 1 - - uid: 5143 - components: - - type: Transform - pos: -1.5,43.5 - parent: 1 - - uid: 5144 - components: - - type: Transform - pos: -1.5,42.5 - parent: 1 - - uid: 5145 - components: - - type: Transform - pos: -1.5,41.5 - parent: 1 - - uid: 5146 - components: - - type: Transform - pos: -1.5,40.5 - parent: 1 - - uid: 5147 - components: - - type: Transform - pos: -1.5,39.5 - parent: 1 - - uid: 5148 - components: - - type: Transform - pos: -1.5,38.5 - parent: 1 - - uid: 5149 - components: - - type: Transform - pos: -1.5,37.5 - parent: 1 - - uid: 5150 - components: - - type: Transform - pos: 0.5,35.5 - parent: 1 - - uid: 5151 - components: - - type: Transform - pos: 0.5,34.5 - parent: 1 - - uid: 5152 - components: - - type: Transform - pos: 0.5,33.5 - parent: 1 - - uid: 5153 - components: - - type: Transform - pos: 0.5,32.5 - parent: 1 - - uid: 5154 - components: - - type: Transform - pos: 0.5,31.5 - parent: 1 - - uid: 5155 - components: - - type: Transform - pos: 0.5,30.5 - parent: 1 - - uid: 5156 - components: - - type: Transform - pos: 0.5,29.5 - parent: 1 - - uid: 5157 - components: - - type: Transform - pos: 0.5,28.5 - parent: 1 - - uid: 5158 - components: - - type: Transform - pos: 0.5,27.5 - parent: 1 - - uid: 5159 - components: - - type: Transform - pos: 0.5,26.5 - parent: 1 - - uid: 5160 - components: - - type: Transform - pos: 0.5,25.5 - parent: 1 - - uid: 5161 - components: - - type: Transform - pos: 0.5,24.5 - parent: 1 - - uid: 5162 - components: - - type: Transform - pos: 0.5,23.5 - parent: 1 - - uid: 5163 - components: - - type: Transform - pos: 0.5,22.5 - parent: 1 - - uid: 5164 - components: - - type: Transform - pos: 0.5,21.5 - parent: 1 - - uid: 5165 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1 - - uid: 5166 - components: - - type: Transform - pos: 0.5,19.5 - parent: 1 - - uid: 5167 - components: - - type: Transform - pos: 0.5,18.5 - parent: 1 - - uid: 5168 - components: - - type: Transform - pos: 0.5,17.5 - parent: 1 - - uid: 5169 - components: - - type: Transform - pos: 0.5,16.5 - parent: 1 - - uid: 5170 - components: - - type: Transform - pos: 0.5,15.5 - parent: 1 - - uid: 5171 - components: - - type: Transform - pos: 0.5,14.5 - parent: 1 - - uid: 5172 - components: - - type: Transform - pos: 0.5,13.5 - parent: 1 - - uid: 5173 - components: - - type: Transform - pos: 25.5,35.5 - parent: 1 - - uid: 5174 - components: - - type: Transform - pos: 24.5,34.5 - parent: 1 - - uid: 5175 - components: - - type: Transform - pos: 24.5,33.5 - parent: 1 - - uid: 5176 - components: - - type: Transform - pos: 24.5,32.5 - parent: 1 - - uid: 5177 - components: - - type: Transform - pos: 24.5,31.5 - parent: 1 - - uid: 5178 - components: - - type: Transform - pos: 24.5,30.5 - parent: 1 - - uid: 5179 - components: - - type: Transform - pos: 24.5,29.5 - parent: 1 - - uid: 5180 - components: - - type: Transform - pos: 24.5,28.5 - parent: 1 - - uid: 5181 - components: - - type: Transform - pos: 24.5,27.5 - parent: 1 - - uid: 5182 - components: - - type: Transform - pos: 24.5,26.5 - parent: 1 - - uid: 5183 - components: - - type: Transform - pos: 24.5,25.5 - parent: 1 - - uid: 5184 - components: - - type: Transform - pos: 24.5,24.5 - parent: 1 - - uid: 5185 - components: - - type: Transform - pos: 23.5,24.5 - parent: 1 - - uid: 5186 - components: - - type: Transform - pos: 22.5,24.5 - parent: 1 - - uid: 5187 - components: - - type: Transform - pos: 21.5,24.5 - parent: 1 - - uid: 5188 - components: - - type: Transform - pos: 20.5,24.5 - parent: 1 - - uid: 5189 - components: - - type: Transform - pos: 19.5,24.5 - parent: 1 - - uid: 5190 - components: - - type: Transform - pos: 19.5,23.5 - parent: 1 - - uid: 5191 - components: - - type: Transform - pos: 19.5,22.5 - parent: 1 - - uid: 5192 - components: - - type: Transform - pos: 19.5,21.5 - parent: 1 - - uid: 5193 - components: - - type: Transform - pos: 19.5,20.5 - parent: 1 - - uid: 5194 - components: - - type: Transform - pos: 19.5,19.5 - parent: 1 - - uid: 5195 - components: - - type: Transform - pos: 19.5,18.5 - parent: 1 - - uid: 5196 - components: - - type: Transform - pos: 19.5,17.5 - parent: 1 - - uid: 5197 - components: - - type: Transform - pos: 19.5,16.5 - parent: 1 - - uid: 5198 - components: - - type: Transform - pos: 19.5,15.5 - parent: 1 - - uid: 5199 - components: - - type: Transform - pos: 19.5,14.5 - parent: 1 - - uid: 5200 - components: - - type: Transform - pos: 19.5,13.5 - parent: 1 - - uid: 5201 - components: - - type: Transform - pos: 18.5,22.5 - parent: 1 - - uid: 5202 - components: - - type: Transform - pos: 17.5,22.5 - parent: 1 - - uid: 5203 - components: - - type: Transform - pos: 16.5,22.5 - parent: 1 - - uid: 5204 - components: - - type: Transform - pos: 15.5,22.5 - parent: 1 - - uid: 5205 - components: - - type: Transform - pos: 14.5,22.5 - parent: 1 - - uid: 5206 - components: - - type: Transform - pos: 14.5,23.5 - parent: 1 - - uid: 5207 - components: - - type: Transform - pos: 14.5,24.5 - parent: 1 - - uid: 5208 - components: - - type: Transform - pos: 14.5,25.5 - parent: 1 - - uid: 5209 - components: - - type: Transform - pos: 15.5,25.5 - parent: 1 - - uid: 5210 - components: - - type: Transform - pos: 16.5,25.5 - parent: 1 - - uid: 5211 - components: - - type: Transform - pos: 18.5,13.5 - parent: 1 - - uid: 5212 - components: - - type: Transform - pos: 17.5,13.5 - parent: 1 - - uid: 5213 - components: - - type: Transform - pos: 16.5,13.5 - parent: 1 - - uid: 5214 - components: - - type: Transform - pos: 15.5,13.5 - parent: 1 - - uid: 5215 - components: - - type: Transform - pos: 14.5,13.5 - parent: 1 - - uid: 5216 - components: - - type: Transform - pos: 13.5,13.5 - parent: 1 - - uid: 5217 - components: - - type: Transform - pos: 12.5,13.5 - parent: 1 - - uid: 5218 - components: - - type: Transform - pos: 11.5,13.5 - parent: 1 - - uid: 5219 - components: - - type: Transform - pos: 10.5,13.5 - parent: 1 - - uid: 5220 - components: - - type: Transform - pos: 9.5,13.5 - parent: 1 - - uid: 5221 - components: - - type: Transform - pos: 8.5,13.5 - parent: 1 - - uid: 5222 - components: - - type: Transform - pos: 7.5,13.5 - parent: 1 - - uid: 5223 - components: - - type: Transform - pos: 6.5,13.5 - parent: 1 - - uid: 5224 - components: - - type: Transform - pos: 5.5,13.5 - parent: 1 - - uid: 5225 - components: - - type: Transform - pos: 4.5,13.5 - parent: 1 - - uid: 5226 - components: - - type: Transform - pos: 3.5,13.5 - parent: 1 - - uid: 5227 - components: - - type: Transform - pos: 2.5,13.5 - parent: 1 - - uid: 5228 - components: - - type: Transform - pos: 1.5,13.5 - parent: 1 - - uid: 5229 - components: - - type: Transform - pos: 26.5,36.5 - parent: 1 - - uid: 5230 - components: - - type: Transform - pos: 27.5,36.5 - parent: 1 - - uid: 5231 - components: - - type: Transform - pos: 28.5,36.5 - parent: 1 - - uid: 5232 - components: - - type: Transform - pos: 29.5,36.5 - parent: 1 - - uid: 5233 - components: - - type: Transform - pos: 30.5,36.5 - parent: 1 - - uid: 5234 - components: - - type: Transform - pos: 31.5,36.5 - parent: 1 - - uid: 5235 - components: - - type: Transform - pos: 32.5,36.5 - parent: 1 - - uid: 5236 - components: - - type: Transform - pos: 32.5,35.5 - parent: 1 - - uid: 5237 - components: - - type: Transform - pos: 32.5,34.5 - parent: 1 - - uid: 5238 - components: - - type: Transform - pos: 32.5,33.5 - parent: 1 - - uid: 5239 - components: - - type: Transform - pos: 32.5,32.5 - parent: 1 - - uid: 5240 - components: - - type: Transform - pos: 32.5,31.5 - parent: 1 - - uid: 5241 - components: - - type: Transform - pos: 32.5,30.5 - parent: 1 - - uid: 5242 - components: - - type: Transform - pos: 32.5,29.5 - parent: 1 - - uid: 5243 - components: - - type: Transform - pos: 32.5,28.5 - parent: 1 - - uid: 5244 - components: - - type: Transform - pos: 32.5,27.5 - parent: 1 - - uid: 5245 - components: - - type: Transform - pos: 32.5,26.5 - parent: 1 - - uid: 5246 - components: - - type: Transform - pos: 32.5,25.5 - parent: 1 - - uid: 5247 - components: - - type: Transform - pos: 32.5,24.5 - parent: 1 - - uid: 5248 - components: - - type: Transform - pos: 32.5,23.5 - parent: 1 - - uid: 5249 - components: - - type: Transform - pos: 32.5,22.5 - parent: 1 - - uid: 5250 - components: - - type: Transform - pos: 32.5,21.5 - parent: 1 - - uid: 5251 - components: - - type: Transform - pos: 32.5,20.5 - parent: 1 - - uid: 5252 - components: - - type: Transform - pos: 32.5,19.5 - parent: 1 - - uid: 5253 - components: - - type: Transform - pos: 32.5,18.5 - parent: 1 - - uid: 5254 - components: - - type: Transform - pos: 32.5,17.5 - parent: 1 - - uid: 5255 - components: - - type: Transform - pos: 32.5,16.5 - parent: 1 - - uid: 5256 - components: - - type: Transform - pos: 32.5,15.5 - parent: 1 - - uid: 5257 - components: - - type: Transform - pos: 32.5,14.5 - parent: 1 - - uid: 5258 - components: - - type: Transform - pos: 32.5,13.5 - parent: 1 - - uid: 5259 - components: - - type: Transform - pos: 32.5,12.5 - parent: 1 - - uid: 5260 - components: - - type: Transform - pos: 32.5,11.5 - parent: 1 - - uid: 5261 - components: - - type: Transform - pos: 32.5,10.5 - parent: 1 - - uid: 5262 - components: - - type: Transform - pos: 32.5,9.5 - parent: 1 - - uid: 5263 - components: - - type: Transform - pos: 32.5,8.5 - parent: 1 - - uid: 5264 - components: - - type: Transform - pos: 32.5,7.5 - parent: 1 - - uid: 5265 - components: - - type: Transform - pos: 31.5,7.5 - parent: 1 - - uid: 5266 - components: - - type: Transform - pos: 31.5,6.5 - parent: 1 - - uid: 5267 - components: - - type: Transform - pos: 31.5,5.5 - parent: 1 - - uid: 5268 - components: - - type: Transform - pos: 31.5,4.5 - parent: 1 - - uid: 5269 - components: - - type: Transform - pos: 31.5,3.5 - parent: 1 - - uid: 5270 - components: - - type: Transform - pos: 31.5,2.5 - parent: 1 - - uid: 5271 - components: - - type: Transform - pos: 31.5,1.5 - parent: 1 - - uid: 5272 - components: - - type: Transform - pos: 18.5,12.5 - parent: 1 - - uid: 5273 - components: - - type: Transform - pos: 31.5,0.5 - parent: 1 - - uid: 5274 - components: - - type: Transform - pos: 32.5,0.5 - parent: 1 - - uid: 5275 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 1 - - uid: 5276 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 1 - - uid: 5277 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 1 - - uid: 5278 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 1 - - uid: 5279 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 1 - - uid: 5280 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 1 - - uid: 5281 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 1 - - uid: 5282 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 1 - - uid: 5283 - components: - - type: Transform - pos: 32.5,-8.5 - parent: 1 - - uid: 5284 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 1 - - uid: 5285 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 1 - - uid: 5286 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 1 - - uid: 5287 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 1 - - uid: 5288 - components: - - type: Transform - pos: 36.5,-9.5 - parent: 1 - - uid: 5289 - components: - - type: Transform - pos: 37.5,-9.5 - parent: 1 - - uid: 5290 - components: - - type: Transform - pos: 18.5,11.5 - parent: 1 - - uid: 5291 - components: - - type: Transform - pos: 18.5,10.5 - parent: 1 - - uid: 5292 - components: - - type: Transform - pos: 18.5,9.5 - parent: 1 - - uid: 5293 - components: - - type: Transform - pos: 18.5,8.5 - parent: 1 - - uid: 5294 - components: - - type: Transform - pos: 18.5,7.5 - parent: 1 - - uid: 5295 - components: - - type: Transform - pos: 18.5,6.5 - parent: 1 - - uid: 5296 - components: - - type: Transform - pos: 17.5,6.5 - parent: 1 - - uid: 5297 - components: - - type: Transform - pos: 16.5,6.5 - parent: 1 - - uid: 5298 - components: - - type: Transform - pos: 15.5,6.5 - parent: 1 - - uid: 5299 - components: - - type: Transform - pos: 14.5,5.5 - parent: 1 - - uid: 5300 - components: - - type: Transform - pos: 14.5,4.5 - parent: 1 - - uid: 5301 - components: - - type: Transform - pos: 14.5,3.5 - parent: 1 - - uid: 5302 - components: - - type: Transform - pos: 14.5,2.5 - parent: 1 - - uid: 5303 - components: - - type: Transform - pos: 14.5,1.5 - parent: 1 - - uid: 5304 - components: - - type: Transform - pos: 14.5,0.5 - parent: 1 - - uid: 5305 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 1 - - uid: 5306 - components: - - type: Transform - pos: 14.5,6.5 - parent: 1 - - uid: 5307 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 1 - - uid: 5308 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 1 - - uid: 5309 - components: - - type: Transform - pos: 14.5,-3.5 - parent: 1 - - uid: 5310 - components: - - type: Transform - pos: 14.5,-4.5 - parent: 1 - - uid: 5311 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 1 - - uid: 5312 - components: - - type: Transform - pos: 14.5,-6.5 - parent: 1 - - uid: 5313 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 1 - - uid: 5314 - components: - - type: Transform - pos: 16.5,-1.5 - parent: 1 - - uid: 5315 - components: - - type: Transform - pos: 17.5,-1.5 - parent: 1 - - uid: 5316 - components: - - type: Transform - pos: 18.5,-1.5 - parent: 1 - - uid: 5317 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1 - - uid: 5318 - components: - - type: Transform - pos: 18.5,0.5 - parent: 1 - - uid: 5319 - components: - - type: Transform - pos: 18.5,1.5 - parent: 1 - - uid: 5320 - components: - - type: Transform - pos: 18.5,2.5 - parent: 1 - - uid: 5321 - components: - - type: Transform - pos: 18.5,3.5 - parent: 1 - - uid: 5322 - components: - - type: Transform - pos: 18.5,4.5 - parent: 1 - - uid: 5323 - components: - - type: Transform - pos: 17.5,4.5 - parent: 1 - - uid: 5324 - components: - - type: Transform - pos: 31.5,-9.5 - parent: 1 - - uid: 5325 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 1 - - uid: 5326 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 1 - - uid: 5327 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 1 - - uid: 5328 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 1 - - uid: 5329 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 1 - - uid: 5330 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 1 - - uid: 5331 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 1 - - uid: 5332 - components: - - type: Transform - pos: 23.5,-9.5 - parent: 1 - - uid: 5333 - components: - - type: Transform - pos: 22.5,-9.5 - parent: 1 - - uid: 5334 - components: - - type: Transform - pos: 21.5,-9.5 - parent: 1 - - uid: 5335 - components: - - type: Transform - pos: 20.5,-9.5 - parent: 1 - - uid: 5336 - components: - - type: Transform - pos: 19.5,-9.5 - parent: 1 - - uid: 5337 - components: - - type: Transform - pos: 18.5,-9.5 - parent: 1 - - uid: 5338 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 1 - - uid: 5339 - components: - - type: Transform - pos: 16.5,-9.5 - parent: 1 - - uid: 5340 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 1 - - uid: 5341 - components: - - type: Transform - pos: 14.5,-9.5 - parent: 1 - - uid: 5342 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 1 - - uid: 5343 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 1 - - uid: 5344 - components: - - type: Transform - pos: 11.5,-9.5 - parent: 1 - - uid: 5345 - components: - - type: Transform - pos: 11.5,-12.5 - parent: 1 - - uid: 5346 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 1 - - uid: 5347 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 1 - - uid: 5349 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 1 - - uid: 5350 - components: - - type: Transform - pos: 10.5,-9.5 - parent: 1 - - uid: 5351 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 1 - - uid: 5352 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 1 - - uid: 5353 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 1 - - uid: 5354 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 1 - - uid: 5355 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 1 - - uid: 5356 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 1 - - uid: 5357 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 1 - - uid: 5358 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 1 - - uid: 5359 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 1 - - uid: 5360 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 1 - - uid: 5361 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1 - - uid: 5362 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 1 - - uid: 5363 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 1 - - uid: 5364 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 1 - - uid: 5365 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 1 - - uid: 5366 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 1 - - uid: 5367 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 1 - - uid: 5368 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 1 - - uid: 5369 - components: - - type: Transform - pos: -8.5,-9.5 - parent: 1 - - uid: 5370 - components: - - type: Transform - pos: -9.5,-9.5 - parent: 1 - - uid: 5371 - components: - - type: Transform - pos: -10.5,-9.5 - parent: 1 - - uid: 5372 - components: - - type: Transform - pos: -11.5,-9.5 - parent: 1 - - uid: 5373 - components: - - type: Transform - pos: -17.5,-9.5 - parent: 1 - - uid: 5374 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 1 - - uid: 5375 - components: - - type: Transform - pos: -19.5,-9.5 - parent: 1 - - uid: 5376 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 1 - - uid: 5377 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 1 - - uid: 5378 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 1 - - uid: 5379 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 1 - - uid: 5380 - components: - - type: Transform - pos: -24.5,-9.5 - parent: 1 - - uid: 5381 - components: - - type: Transform - pos: -25.5,-9.5 - parent: 1 - - uid: 5382 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 1 - - uid: 5383 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 1 - - uid: 5384 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 1 - - uid: 5385 - components: - - type: Transform - pos: -29.5,-9.5 - parent: 1 - - uid: 5386 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 1 - - uid: 5387 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 1 - - uid: 5388 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 1 - - uid: 5389 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 1 - - uid: 5391 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 1 - - uid: 5392 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 1 - - uid: 5393 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 1 - - uid: 5394 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 1 - - uid: 5395 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 1 - - uid: 5396 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 1 - - uid: 5397 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 1 - - uid: 5398 - components: - - type: Transform - pos: -32.5,0.5 - parent: 1 - - uid: 5399 - components: - - type: Transform - pos: -32.5,1.5 - parent: 1 - - uid: 5400 - components: - - type: Transform - pos: -32.5,2.5 - parent: 1 - - uid: 5401 - components: - - type: Transform - pos: -32.5,3.5 - parent: 1 - - uid: 5402 - components: - - type: Transform - pos: -32.5,4.5 - parent: 1 - - uid: 5403 - components: - - type: Transform - pos: -32.5,5.5 - parent: 1 - - uid: 5404 - components: - - type: Transform - pos: -32.5,6.5 - parent: 1 - - uid: 5405 - components: - - type: Transform - pos: -32.5,7.5 - parent: 1 - - uid: 5406 - components: - - type: Transform - pos: -32.5,8.5 - parent: 1 - - uid: 5407 - components: - - type: Transform - pos: -32.5,9.5 - parent: 1 - - uid: 5408 - components: - - type: Transform - pos: -32.5,10.5 - parent: 1 - - uid: 5409 - components: - - type: Transform - pos: -32.5,11.5 - parent: 1 - - uid: 5410 - components: - - type: Transform - pos: -32.5,12.5 - parent: 1 - - uid: 5411 - components: - - type: Transform - pos: -32.5,13.5 - parent: 1 - - uid: 5412 - components: - - type: Transform - pos: -31.5,13.5 - parent: 1 - - uid: 5413 - components: - - type: Transform - pos: -30.5,13.5 - parent: 1 - - uid: 5414 - components: - - type: Transform - pos: -29.5,13.5 - parent: 1 - - uid: 5415 - components: - - type: Transform - pos: -28.5,13.5 - parent: 1 - - uid: 5416 - components: - - type: Transform - pos: -27.5,13.5 - parent: 1 - - uid: 5417 - components: - - type: Transform - pos: -26.5,13.5 - parent: 1 - - uid: 5418 - components: - - type: Transform - pos: -25.5,13.5 - parent: 1 - - uid: 5419 - components: - - type: Transform - pos: -24.5,13.5 - parent: 1 - - uid: 5420 - components: - - type: Transform - pos: -23.5,13.5 - parent: 1 - - uid: 5421 - components: - - type: Transform - pos: -22.5,13.5 - parent: 1 - - uid: 5422 - components: - - type: Transform - pos: -21.5,13.5 - parent: 1 - - uid: 5423 - components: - - type: Transform - pos: -20.5,13.5 - parent: 1 - - uid: 5424 - components: - - type: Transform - pos: -19.5,13.5 - parent: 1 - - uid: 5425 - components: - - type: Transform - pos: -18.5,13.5 - parent: 1 - - uid: 5426 - components: - - type: Transform - pos: -17.5,13.5 - parent: 1 - - uid: 5427 - components: - - type: Transform - pos: -16.5,13.5 - parent: 1 - - uid: 5428 - components: - - type: Transform - pos: -15.5,13.5 - parent: 1 - - uid: 5429 - components: - - type: Transform - pos: -14.5,13.5 - parent: 1 - - uid: 5430 - components: - - type: Transform - pos: -13.5,13.5 - parent: 1 - - uid: 5431 - components: - - type: Transform - pos: -12.5,13.5 - parent: 1 - - uid: 5432 - components: - - type: Transform - pos: -11.5,13.5 - parent: 1 - - uid: 5433 - components: - - type: Transform - pos: -10.5,13.5 - parent: 1 - - uid: 5434 - components: - - type: Transform - pos: -9.5,13.5 - parent: 1 - - uid: 5435 - components: - - type: Transform - pos: -8.5,13.5 - parent: 1 - - uid: 5436 - components: - - type: Transform - pos: -7.5,13.5 - parent: 1 - - uid: 5437 - components: - - type: Transform - pos: -6.5,13.5 - parent: 1 - - uid: 5438 - components: - - type: Transform - pos: -5.5,13.5 - parent: 1 - - uid: 5439 - components: - - type: Transform - pos: -4.5,13.5 - parent: 1 - - uid: 5440 - components: - - type: Transform - pos: -3.5,13.5 - parent: 1 - - uid: 5441 - components: - - type: Transform - pos: -2.5,13.5 - parent: 1 - - uid: 5442 - components: - - type: Transform - pos: -1.5,13.5 - parent: 1 - - uid: 5443 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1 - - uid: 5444 - components: - - type: Transform - pos: -30.5,14.5 - parent: 1 - - uid: 5445 - components: - - type: Transform - pos: -30.5,15.5 - parent: 1 - - uid: 5446 - components: - - type: Transform - pos: -30.5,16.5 - parent: 1 - - uid: 5447 - components: - - type: Transform - pos: -30.5,17.5 - parent: 1 - - uid: 5448 - components: - - type: Transform - pos: -30.5,18.5 - parent: 1 - - uid: 5449 - components: - - type: Transform - pos: -30.5,19.5 - parent: 1 - - uid: 5450 - components: - - type: Transform - pos: -30.5,20.5 - parent: 1 - - uid: 5451 - components: - - type: Transform - pos: -30.5,21.5 - parent: 1 - - uid: 5452 - components: - - type: Transform - pos: -30.5,22.5 - parent: 1 - - uid: 5453 - components: - - type: Transform - pos: -30.5,23.5 - parent: 1 - - uid: 5454 - components: - - type: Transform - pos: -30.5,24.5 - parent: 1 - - uid: 5455 - components: - - type: Transform - pos: -30.5,25.5 - parent: 1 - - uid: 5456 - components: - - type: Transform - pos: -30.5,26.5 - parent: 1 - - uid: 5457 - components: - - type: Transform - pos: -30.5,27.5 - parent: 1 - - uid: 5458 - components: - - type: Transform - pos: -30.5,28.5 - parent: 1 - - uid: 5459 - components: - - type: Transform - pos: -30.5,29.5 - parent: 1 - - uid: 5460 - components: - - type: Transform - pos: -30.5,30.5 - parent: 1 - - uid: 5461 - components: - - type: Transform - pos: -30.5,31.5 - parent: 1 - - uid: 5462 - components: - - type: Transform - pos: -30.5,32.5 - parent: 1 - - uid: 5463 - components: - - type: Transform - pos: -30.5,33.5 - parent: 1 - - uid: 5464 - components: - - type: Transform - pos: -30.5,34.5 - parent: 1 - - uid: 5465 - components: - - type: Transform - pos: -30.5,35.5 - parent: 1 - - uid: 5466 - components: - - type: Transform - pos: -30.5,36.5 - parent: 1 - - uid: 5467 - components: - - type: Transform - pos: -29.5,36.5 - parent: 1 - - uid: 5468 - components: - - type: Transform - pos: -28.5,36.5 - parent: 1 - - uid: 5469 - components: - - type: Transform - pos: -27.5,36.5 - parent: 1 - - uid: 5470 - components: - - type: Transform - pos: -26.5,36.5 - parent: 1 - - uid: 5471 - components: - - type: Transform - pos: -25.5,36.5 - parent: 1 - - uid: 5472 - components: - - type: Transform - pos: -24.5,36.5 - parent: 1 - - uid: 5473 - components: - - type: Transform - pos: -23.5,36.5 - parent: 1 - - uid: 5474 - components: - - type: Transform - pos: -22.5,36.5 - parent: 1 - - uid: 5475 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 1 - - uid: 5476 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 1 - - uid: 5477 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 1 - - uid: 5478 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 1 - - uid: 5479 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 1 - - uid: 5480 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 1 - - uid: 5481 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 1 - - uid: 5482 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 1 - - uid: 5483 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 1 - - uid: 5484 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 1 - - uid: 5485 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 1 - - uid: 5486 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 1 - - uid: 5487 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 1 - - uid: 5488 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 1 - - uid: 5489 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 1 - - uid: 5490 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 1 - - uid: 5491 - components: - - type: Transform - pos: -19.5,0.5 - parent: 1 - - uid: 5492 - components: - - type: Transform - pos: -19.5,1.5 - parent: 1 - - uid: 5493 - components: - - type: Transform - pos: -19.5,2.5 - parent: 1 - - uid: 5494 - components: - - type: Transform - pos: -19.5,3.5 - parent: 1 - - uid: 5495 - components: - - type: Transform - pos: -19.5,4.5 - parent: 1 - - uid: 5496 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1 - - uid: 5497 - components: - - type: Transform - pos: -19.5,6.5 - parent: 1 - - uid: 5498 - components: - - type: Transform - pos: -19.5,7.5 - parent: 1 - - uid: 5499 - components: - - type: Transform - pos: -18.5,7.5 - parent: 1 - - uid: 5500 - components: - - type: Transform - pos: -17.5,7.5 - parent: 1 - - uid: 5501 - components: - - type: Transform - pos: -16.5,7.5 - parent: 1 - - uid: 5502 - components: - - type: Transform - pos: -15.5,7.5 - parent: 1 - - uid: 5503 - components: - - type: Transform - pos: -15.5,8.5 - parent: 1 - - uid: 5504 - components: - - type: Transform - pos: -15.5,9.5 - parent: 1 - - uid: 5505 - components: - - type: Transform - pos: -15.5,10.5 - parent: 1 - - uid: 5506 - components: - - type: Transform - pos: -15.5,11.5 - parent: 1 - - uid: 5507 - components: - - type: Transform - pos: -15.5,12.5 - parent: 1 - - uid: 5508 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 1 - - uid: 5509 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1 - - uid: 5510 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 1 - - uid: 5511 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 1 - - uid: 5512 - components: - - type: Transform - pos: -24.5,-2.5 - parent: 1 - - uid: 5513 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 1 - - uid: 5514 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 1 - - uid: 5515 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 1 - - uid: 5516 - components: - - type: Transform - pos: -23.5,35.5 - parent: 1 - - uid: 5517 - components: - - type: Transform - pos: -23.5,34.5 - parent: 1 - - uid: 5518 - components: - - type: Transform - pos: -23.5,33.5 - parent: 1 - - uid: 5519 - components: - - type: Transform - pos: -23.5,32.5 - parent: 1 - - uid: 5520 - components: - - type: Transform - pos: -23.5,31.5 - parent: 1 - - uid: 5521 - components: - - type: Transform - pos: -23.5,30.5 - parent: 1 - - uid: 5522 - components: - - type: Transform - pos: -23.5,29.5 - parent: 1 - - uid: 5523 - components: - - type: Transform - pos: -23.5,28.5 - parent: 1 - - uid: 5524 - components: - - type: Transform - pos: -23.5,27.5 - parent: 1 - - uid: 5525 - components: - - type: Transform - pos: -23.5,26.5 - parent: 1 - - uid: 5526 - components: - - type: Transform - pos: -23.5,25.5 - parent: 1 - - uid: 5527 - components: - - type: Transform - pos: -22.5,27.5 - parent: 1 - - uid: 5528 - components: - - type: Transform - pos: -21.5,27.5 - parent: 1 - - uid: 5529 - components: - - type: Transform - pos: -20.5,27.5 - parent: 1 - - uid: 5536 - components: - - type: Transform - pos: -21.5,29.5 - parent: 1 - - uid: 5537 - components: - - type: Transform - pos: -21.5,30.5 - parent: 1 - - uid: 5538 - components: - - type: Transform - pos: -24.5,25.5 - parent: 1 - - uid: 5539 - components: - - type: Transform - pos: -25.5,25.5 - parent: 1 - - uid: 5540 - components: - - type: Transform - pos: -26.5,25.5 - parent: 1 - - uid: 5541 - components: - - type: Transform - pos: -27.5,25.5 - parent: 1 - - uid: 5542 - components: - - type: Transform - pos: -27.5,24.5 - parent: 1 - - uid: 5543 - components: - - type: Transform - pos: -27.5,23.5 - parent: 1 - - uid: 5544 - components: - - type: Transform - pos: -27.5,22.5 - parent: 1 - - uid: 5545 - components: - - type: Transform - pos: -27.5,21.5 - parent: 1 - - uid: 5546 - components: - - type: Transform - pos: -27.5,20.5 - parent: 1 - - uid: 5547 - components: - - type: Transform - pos: -27.5,19.5 - parent: 1 - - uid: 5548 - components: - - type: Transform - pos: -27.5,18.5 - parent: 1 - - uid: 5549 - components: - - type: Transform - pos: -27.5,17.5 - parent: 1 - - uid: 5550 - components: - - type: Transform - pos: -26.5,17.5 - parent: 1 - - uid: 5551 - components: - - type: Transform - pos: -25.5,17.5 - parent: 1 - - uid: 5552 - components: - - type: Transform - pos: -25.5,15.5 - parent: 1 - - uid: 5553 - components: - - type: Transform - pos: -25.5,16.5 - parent: 1 - - uid: 5557 - components: - - type: Transform - pos: -28.5,23.5 - parent: 1 - - uid: 5558 - components: - - type: Transform - pos: -29.5,23.5 - parent: 1 - - uid: 5559 - components: - - type: Transform - pos: 39.5,-11.5 - parent: 1 - - uid: 5560 - components: - - type: Transform - pos: 37.5,-11.5 - parent: 1 - - uid: 5561 - components: - - type: Transform - pos: 36.5,-11.5 - parent: 1 - - uid: 5562 - components: - - type: Transform - pos: 35.5,-11.5 - parent: 1 - - uid: 5563 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 1 - - uid: 5564 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 1 - - uid: 5565 - components: - - type: Transform - pos: 32.5,-11.5 - parent: 1 - - uid: 5566 - components: - - type: Transform - pos: 32.5,-12.5 - parent: 1 - - uid: 5567 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 1 - - uid: 5568 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 1 - - uid: 5569 - components: - - type: Transform - pos: 32.5,-15.5 - parent: 1 - - uid: 5570 - components: - - type: Transform - pos: 31.5,-15.5 - parent: 1 - - uid: 5571 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 1 - - uid: 5572 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 1 - - uid: 5573 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 1 - - uid: 5574 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 1 - - uid: 5575 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 1 - - uid: 5576 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 1 - - uid: 5577 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 1 - - uid: 5578 - components: - - type: Transform - pos: 30.5,-22.5 - parent: 1 - - uid: 5579 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 1 - - uid: 5580 - components: - - type: Transform - pos: 30.5,-24.5 - parent: 1 - - uid: 5581 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1 - - uid: 5582 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 1 - - uid: 5583 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 1 - - uid: 5584 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 1 - - uid: 5585 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 1 - - uid: 5586 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 1 - - uid: 5587 - components: - - type: Transform - pos: 10.5,-34.5 - parent: 1 - - uid: 5588 - components: - - type: Transform - pos: 9.5,-34.5 - parent: 1 - - uid: 5589 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 1 - - uid: 5590 - components: - - type: Transform - pos: 13.5,-31.5 - parent: 1 - - uid: 5591 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 1 - - uid: 5592 - components: - - type: Transform - pos: 13.5,-29.5 - parent: 1 - - uid: 5593 - components: - - type: Transform - pos: 15.5,-35.5 - parent: 1 - - uid: 5595 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 1 - - uid: 5596 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 1 - - uid: 5599 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 1 - - uid: 5600 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 1 - - uid: 5601 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 1 - - uid: 5602 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 1 - - uid: 5603 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 1 - - uid: 5604 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 1 - - uid: 5605 - components: - - type: Transform - pos: 21.5,-29.5 - parent: 1 - - uid: 5606 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 1 - - uid: 5607 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 1 - - uid: 5608 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 1 - - uid: 5609 - components: - - type: Transform - pos: 22.5,-26.5 - parent: 1 - - uid: 5610 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 1 - - uid: 5611 - components: - - type: Transform - pos: 22.5,-24.5 - parent: 1 - - uid: 5612 - components: - - type: Transform - pos: 23.5,-24.5 - parent: 1 - - uid: 5613 - components: - - type: Transform - pos: 24.5,-24.5 - parent: 1 - - uid: 5614 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 1 - - uid: 5615 - components: - - type: Transform - pos: 26.5,-24.5 - parent: 1 - - uid: 5616 - components: - - type: Transform - pos: 27.5,-24.5 - parent: 1 - - uid: 5617 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 1 - - uid: 5618 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 1 - - uid: 5706 - components: - - type: Transform - pos: -32.5,74.5 - parent: 1 - - uid: 5813 - components: - - type: Transform - pos: 0.5,-49.5 - parent: 1 - - uid: 5936 - components: - - type: Transform - pos: -25.5,14.5 - parent: 1 - - uid: 5955 - components: - - type: Transform - pos: -20.5,29.5 - parent: 1 - - uid: 5957 - components: - - type: Transform - pos: 5.5,-64.5 - parent: 1 - - uid: 5958 - components: - - type: Transform - pos: 5.5,-65.5 - parent: 1 - - uid: 5959 - components: - - type: Transform - pos: 5.5,-66.5 - parent: 1 - - uid: 5960 - components: - - type: Transform - pos: 5.5,-67.5 - parent: 1 - - uid: 5961 - components: - - type: Transform - pos: 5.5,-68.5 - parent: 1 - - uid: 5962 - components: - - type: Transform - pos: 5.5,-69.5 - parent: 1 - - uid: 5963 - components: - - type: Transform - pos: 5.5,-70.5 - parent: 1 - - uid: 5964 - components: - - type: Transform - pos: 7.5,-70.5 - parent: 1 - - uid: 5965 - components: - - type: Transform - pos: 7.5,-69.5 - parent: 1 - - uid: 5966 - components: - - type: Transform - pos: 7.5,-68.5 - parent: 1 - - uid: 5967 - components: - - type: Transform - pos: 7.5,-67.5 - parent: 1 - - uid: 5968 - components: - - type: Transform - pos: 7.5,-66.5 - parent: 1 - - uid: 5969 - components: - - type: Transform - pos: 7.5,-65.5 - parent: 1 - - uid: 5970 - components: - - type: Transform - pos: 7.5,-64.5 - parent: 1 - - uid: 5971 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 1 - - uid: 5972 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 1 - - uid: 5973 - components: - - type: Transform - pos: -32.5,-16.5 - parent: 1 - - uid: 5974 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 1 - - uid: 5975 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 1 - - uid: 5976 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 1 - - uid: 5977 - components: - - type: Transform - pos: -35.5,-15.5 - parent: 1 - - uid: 5978 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 1 - - uid: 5979 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 1 - - uid: 5980 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 1 - - uid: 5981 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 1 - - uid: 5982 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 1 - - uid: 5983 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 1 - - uid: 5984 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 1 - - uid: 5985 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 1 - - uid: 5986 - components: - - type: Transform - pos: -34.5,-7.5 - parent: 1 - - uid: 5987 - components: - - type: Transform - pos: -33.5,-7.5 - parent: 1 - - uid: 6036 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 1 - - uid: 6037 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 1 - - uid: 6046 - components: - - type: Transform - pos: 39.5,-10.5 - parent: 1 - - uid: 6047 - components: - - type: Transform - pos: 39.5,-9.5 - parent: 1 - - uid: 6048 - components: - - type: Transform - pos: 38.5,-9.5 - parent: 1 - - uid: 6076 - components: - - type: Transform - pos: 15.5,-34.5 - parent: 1 - - uid: 6079 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 1 - - uid: 6080 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 1 - - uid: 6102 - components: - - type: Transform - pos: 25.5,34.5 - parent: 1 - - uid: 6408 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 1 - - uid: 6409 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 1 - - uid: 6410 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 1 - - uid: 6411 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 1 - - uid: 6440 - components: - - type: Transform - pos: -27.5,-5.5 - parent: 1 - - uid: 6441 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 1 - - uid: 6442 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 1 - - uid: 6443 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 1 - - uid: 6444 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 1 - - uid: 6445 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 1 - - uid: 6446 - components: - - type: Transform - pos: -27.5,0.5 - parent: 1 - - uid: 6447 - components: - - type: Transform - pos: -27.5,1.5 - parent: 1 - - uid: 6448 - components: - - type: Transform - pos: -28.5,1.5 - parent: 1 - - uid: 6449 - components: - - type: Transform - pos: -29.5,1.5 - parent: 1 - - uid: 6450 - components: - - type: Transform - pos: -30.5,1.5 - parent: 1 - - uid: 6451 - components: - - type: Transform - pos: -31.5,1.5 - parent: 1 - - uid: 6500 - components: - - type: Transform - pos: 9.5,-28.5 - parent: 1 - - uid: 6519 - components: - - type: Transform - pos: -44.5,74.5 - parent: 1 - - uid: 6520 - components: - - type: Transform - pos: -42.5,74.5 - parent: 1 - - uid: 6527 - components: - - type: Transform - pos: -46.5,72.5 - parent: 1 - - uid: 6529 - components: - - type: Transform - pos: -40.5,74.5 - parent: 1 - - uid: 6539 - components: - - type: Transform - pos: -45.5,74.5 - parent: 1 - - uid: 6540 - components: - - type: Transform - pos: -47.5,74.5 - parent: 1 - - uid: 6541 - components: - - type: Transform - pos: -46.5,74.5 - parent: 1 - - uid: 6548 - components: - - type: Transform - pos: -36.5,74.5 - parent: 1 - - uid: 6572 - components: - - type: Transform - pos: -41.5,74.5 - parent: 1 - - uid: 6573 - components: - - type: Transform - pos: -47.5,72.5 - parent: 1 - - uid: 6574 - components: - - type: Transform - pos: -43.5,74.5 - parent: 1 - - uid: 6576 - components: - - type: Transform - pos: 6.5,-28.5 - parent: 1 - - uid: 6577 - components: - - type: Transform - pos: 8.5,-28.5 - parent: 1 - - uid: 6579 - components: - - type: Transform - pos: 6.5,-27.5 - parent: 1 - - uid: 6580 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 1 - - uid: 6674 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 1 - - uid: 6675 - components: - - type: Transform - pos: 1.5,-49.5 - parent: 1 - - uid: 6677 - components: - - type: Transform - pos: -1.5,-49.5 - parent: 1 - - uid: 6678 - components: - - type: Transform - pos: -2.5,-49.5 - parent: 1 - - uid: 6679 - components: - - type: Transform - pos: 11.5,-48.5 - parent: 1 - - uid: 6682 - components: - - type: Transform - pos: 12.5,-48.5 - parent: 1 - - uid: 6708 - components: - - type: Transform - pos: -35.5,21.5 - parent: 1 - - uid: 6709 - components: - - type: Transform - pos: -35.5,20.5 - parent: 1 - - uid: 6710 - components: - - type: Transform - pos: -35.5,19.5 - parent: 1 - - uid: 6711 - components: - - type: Transform - pos: -32.5,23.5 - parent: 1 - - uid: 6712 - components: - - type: Transform - pos: -33.5,23.5 - parent: 1 - - uid: 6726 - components: - - type: Transform - pos: -34.5,13.5 - parent: 1 - - uid: 6727 - components: - - type: Transform - pos: -35.5,13.5 - parent: 1 - - uid: 6728 - components: - - type: Transform - pos: -33.5,13.5 - parent: 1 - - uid: 6729 - components: - - type: Transform - pos: -35.5,14.5 - parent: 1 - - uid: 6730 - components: - - type: Transform - pos: -35.5,15.5 - parent: 1 - - uid: 6731 - components: - - type: Transform - pos: -35.5,16.5 - parent: 1 - - uid: 6732 - components: - - type: Transform - pos: -35.5,17.5 - parent: 1 - - uid: 6733 - components: - - type: Transform - pos: -35.5,18.5 - parent: 1 - - uid: 6734 - components: - - type: Transform - pos: -34.5,21.5 - parent: 1 - - uid: 6738 - components: - - type: Transform - pos: -34.5,22.5 - parent: 1 - - uid: 6739 - components: - - type: Transform - pos: -34.5,23.5 - parent: 1 - - uid: 6740 - components: - - type: Transform - pos: -34.5,24.5 - parent: 1 - - uid: 6741 - components: - - type: Transform - pos: -34.5,25.5 - parent: 1 - - uid: 6742 - components: - - type: Transform - pos: -34.5,26.5 - parent: 1 - - uid: 6743 - components: - - type: Transform - pos: -34.5,27.5 - parent: 1 - - uid: 6744 - components: - - type: Transform - pos: -34.5,28.5 - parent: 1 - - uid: 6745 - components: - - type: Transform - pos: -34.5,29.5 - parent: 1 - - uid: 6746 - components: - - type: Transform - pos: -34.5,30.5 - parent: 1 - - uid: 6747 - components: - - type: Transform - pos: -34.5,31.5 - parent: 1 - - uid: 6748 - components: - - type: Transform - pos: -34.5,32.5 - parent: 1 - - uid: 6749 - components: - - type: Transform - pos: -34.5,33.5 - parent: 1 - - uid: 6750 - components: - - type: Transform - pos: -35.5,33.5 - parent: 1 - - uid: 6751 - components: - - type: Transform - pos: -36.5,33.5 - parent: 1 - - uid: 6752 - components: - - type: Transform - pos: -37.5,33.5 - parent: 1 - - uid: 6753 - components: - - type: Transform - pos: -38.5,33.5 - parent: 1 - - uid: 6754 - components: - - type: Transform - pos: -38.5,34.5 - parent: 1 - - uid: 6755 - components: - - type: Transform - pos: -38.5,35.5 - parent: 1 - - uid: 6756 - components: - - type: Transform - pos: -38.5,36.5 - parent: 1 - - uid: 6757 - components: - - type: Transform - pos: -37.5,36.5 - parent: 1 - - uid: 6758 - components: - - type: Transform - pos: -36.5,36.5 - parent: 1 - - uid: 6759 - components: - - type: Transform - pos: -35.5,36.5 - parent: 1 - - uid: 6760 - components: - - type: Transform - pos: -34.5,36.5 - parent: 1 - - uid: 6761 - components: - - type: Transform - pos: -33.5,36.5 - parent: 1 - - uid: 6762 - components: - - type: Transform - pos: -32.5,36.5 - parent: 1 - - uid: 6763 - components: - - type: Transform - pos: -31.5,36.5 - parent: 1 - - uid: 6767 - components: - - type: Transform - pos: -41.5,72.5 - parent: 1 - - uid: 6768 - components: - - type: Transform - pos: -42.5,72.5 - parent: 1 - - uid: 7209 - components: - - type: Transform - pos: 21.5,49.5 - parent: 1 - - uid: 7210 - components: - - type: Transform - pos: 20.5,49.5 - parent: 1 - - uid: 7211 - components: - - type: Transform - pos: 19.5,49.5 - parent: 1 - - uid: 7212 - components: - - type: Transform - pos: 18.5,49.5 - parent: 1 - - uid: 7213 - components: - - type: Transform - pos: 17.5,49.5 - parent: 1 - - uid: 7214 - components: - - type: Transform - pos: 16.5,49.5 - parent: 1 - - uid: 7215 - components: - - type: Transform - pos: 16.5,50.5 - parent: 1 - - uid: 7216 - components: - - type: Transform - pos: 16.5,51.5 - parent: 1 - - uid: 7217 - components: - - type: Transform - pos: 15.5,50.5 - parent: 1 - - uid: 7218 - components: - - type: Transform - pos: 14.5,50.5 - parent: 1 - - uid: 7219 - components: - - type: Transform - pos: 13.5,50.5 - parent: 1 - - uid: 7220 - components: - - type: Transform - pos: 12.5,50.5 - parent: 1 - - uid: 7221 - components: - - type: Transform - pos: 11.5,50.5 - parent: 1 - - uid: 7222 - components: - - type: Transform - pos: 10.5,50.5 - parent: 1 - - uid: 7223 - components: - - type: Transform - pos: 9.5,50.5 - parent: 1 - - uid: 7224 - components: - - type: Transform - pos: 9.5,49.5 - parent: 1 - - uid: 7225 - components: - - type: Transform - pos: 9.5,48.5 - parent: 1 - - uid: 7226 - components: - - type: Transform - pos: 9.5,47.5 - parent: 1 - - uid: 7227 - components: - - type: Transform - pos: 9.5,46.5 - parent: 1 - - uid: 7228 - components: - - type: Transform - pos: 9.5,45.5 - parent: 1 - - uid: 7229 - components: - - type: Transform - pos: 9.5,44.5 - parent: 1 - - uid: 7230 - components: - - type: Transform - pos: 9.5,43.5 - parent: 1 - - uid: 7231 - components: - - type: Transform - pos: 9.5,42.5 - parent: 1 - - uid: 7232 - components: - - type: Transform - pos: 9.5,41.5 - parent: 1 - - uid: 7233 - components: - - type: Transform - pos: 8.5,41.5 - parent: 1 - - uid: 7234 - components: - - type: Transform - pos: 7.5,41.5 - parent: 1 - - uid: 7235 - components: - - type: Transform - pos: 6.5,41.5 - parent: 1 - - uid: 7236 - components: - - type: Transform - pos: 5.5,41.5 - parent: 1 - - uid: 7237 - components: - - type: Transform - pos: 4.5,41.5 - parent: 1 - - uid: 7238 - components: - - type: Transform - pos: 3.5,41.5 - parent: 1 - - uid: 7239 - components: - - type: Transform - pos: 2.5,41.5 - parent: 1 - - uid: 7240 - components: - - type: Transform - pos: 1.5,41.5 - parent: 1 - - uid: 7241 - components: - - type: Transform - pos: 0.5,41.5 - parent: 1 - - uid: 7242 - components: - - type: Transform - pos: -0.5,41.5 - parent: 1 - - uid: 7294 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 1 - - uid: 7295 - components: - - type: Transform - pos: 28.5,-15.5 - parent: 1 - - uid: 7296 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 1 - - uid: 7297 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 1 - - uid: 7298 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 1 - - uid: 7299 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 1 - - uid: 7300 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 1 - - uid: 7301 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 1 - - uid: 7322 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 1 - - uid: 7323 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 1 - - uid: 7324 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 1 - - uid: 7325 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 1 - - uid: 7326 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 1 - - uid: 7327 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 1 - - uid: 7328 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 1 - - uid: 7336 - components: - - type: Transform - pos: -31.5,23.5 - parent: 1 - - uid: 7337 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 1 - - uid: 7338 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 1 - - uid: 7339 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 1 - - uid: 7340 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 1 - - uid: 7341 - components: - - type: Transform - pos: 36.5,54.5 - parent: 1 - - uid: 7347 - components: - - type: Transform - pos: 33.5,36.5 - parent: 1 - - uid: 7348 - components: - - type: Transform - pos: 34.5,36.5 - parent: 1 - - uid: 7349 - components: - - type: Transform - pos: 34.5,37.5 - parent: 1 - - uid: 7350 - components: - - type: Transform - pos: 34.5,38.5 - parent: 1 - - uid: 7351 - components: - - type: Transform - pos: 34.5,39.5 - parent: 1 - - uid: 7352 - components: - - type: Transform - pos: 34.5,40.5 - parent: 1 - - uid: 7353 - components: - - type: Transform - pos: 34.5,41.5 - parent: 1 - - uid: 7354 - components: - - type: Transform - pos: 35.5,41.5 - parent: 1 - - uid: 7355 - components: - - type: Transform - pos: 36.5,41.5 - parent: 1 - - uid: 7356 - components: - - type: Transform - pos: 36.5,42.5 - parent: 1 - - uid: 7357 - components: - - type: Transform - pos: 36.5,43.5 - parent: 1 - - uid: 7358 - components: - - type: Transform - pos: 36.5,44.5 - parent: 1 - - uid: 7359 - components: - - type: Transform - pos: 36.5,45.5 - parent: 1 - - uid: 7360 - components: - - type: Transform - pos: 36.5,46.5 - parent: 1 - - uid: 7361 - components: - - type: Transform - pos: 36.5,47.5 - parent: 1 - - uid: 7362 - components: - - type: Transform - pos: 36.5,48.5 - parent: 1 - - uid: 7363 - components: - - type: Transform - pos: 36.5,49.5 - parent: 1 - - uid: 7364 - components: - - type: Transform - pos: 36.5,50.5 - parent: 1 - - uid: 7365 - components: - - type: Transform - pos: 36.5,51.5 - parent: 1 - - uid: 7366 - components: - - type: Transform - pos: 35.5,51.5 - parent: 1 - - uid: 7367 - components: - - type: Transform - pos: 34.5,51.5 - parent: 1 - - uid: 7368 - components: - - type: Transform - pos: 33.5,51.5 - parent: 1 - - uid: 7369 - components: - - type: Transform - pos: 32.5,51.5 - parent: 1 - - uid: 7370 - components: - - type: Transform - pos: 31.5,51.5 - parent: 1 - - uid: 7371 - components: - - type: Transform - pos: 30.5,51.5 - parent: 1 - - uid: 7372 - components: - - type: Transform - pos: 29.5,51.5 - parent: 1 - - uid: 7373 - components: - - type: Transform - pos: 29.5,52.5 - parent: 1 - - uid: 7374 - components: - - type: Transform - pos: 28.5,52.5 - parent: 1 - - uid: 7375 - components: - - type: Transform - pos: 28.5,53.5 - parent: 1 - - uid: 7376 - components: - - type: Transform - pos: 28.5,54.5 - parent: 1 - - uid: 7377 - components: - - type: Transform - pos: 28.5,55.5 - parent: 1 - - uid: 7378 - components: - - type: Transform - pos: 28.5,56.5 - parent: 1 - - uid: 7379 - components: - - type: Transform - pos: 28.5,57.5 - parent: 1 - - uid: 7380 - components: - - type: Transform - pos: 27.5,57.5 - parent: 1 - - uid: 7381 - components: - - type: Transform - pos: 26.5,57.5 - parent: 1 - - uid: 7382 - components: - - type: Transform - pos: 25.5,57.5 - parent: 1 - - uid: 7383 - components: - - type: Transform - pos: 24.5,57.5 - parent: 1 - - uid: 7384 - components: - - type: Transform - pos: 23.5,57.5 - parent: 1 - - uid: 7385 - components: - - type: Transform - pos: 22.5,57.5 - parent: 1 - - uid: 7546 - components: - - type: Transform - pos: 37.5,60.5 - parent: 1 - - uid: 7547 - components: - - type: Transform - pos: 37.5,59.5 - parent: 1 - - uid: 7548 - components: - - type: Transform - pos: 37.5,58.5 - parent: 1 - - uid: 7549 - components: - - type: Transform - pos: 37.5,57.5 - parent: 1 - - uid: 7550 - components: - - type: Transform - pos: 37.5,56.5 - parent: 1 - - uid: 7551 - components: - - type: Transform - pos: 37.5,55.5 - parent: 1 - - uid: 7552 - components: - - type: Transform - pos: 36.5,69.5 - parent: 1 - - uid: 7553 - components: - - type: Transform - pos: 35.5,69.5 - parent: 1 - - uid: 7554 - components: - - type: Transform - pos: 35.5,70.5 - parent: 1 - - uid: 7555 - components: - - type: Transform - pos: 34.5,70.5 - parent: 1 - - uid: 7556 - components: - - type: Transform - pos: 33.5,70.5 - parent: 1 - - uid: 7557 - components: - - type: Transform - pos: 32.5,70.5 - parent: 1 - - uid: 7558 - components: - - type: Transform - pos: 31.5,70.5 - parent: 1 - - uid: 7559 - components: - - type: Transform - pos: 30.5,70.5 - parent: 1 - - uid: 7560 - components: - - type: Transform - pos: 29.5,70.5 - parent: 1 - - uid: 7561 - components: - - type: Transform - pos: 28.5,70.5 - parent: 1 - - uid: 7562 - components: - - type: Transform - pos: 35.5,68.5 - parent: 1 - - uid: 7563 - components: - - type: Transform - pos: 34.5,68.5 - parent: 1 - - uid: 7564 - components: - - type: Transform - pos: 33.5,68.5 - parent: 1 - - uid: 7565 - components: - - type: Transform - pos: 32.5,68.5 - parent: 1 - - uid: 7566 - components: - - type: Transform - pos: 31.5,68.5 - parent: 1 - - uid: 7567 - components: - - type: Transform - pos: 30.5,68.5 - parent: 1 - - uid: 7568 - components: - - type: Transform - pos: 29.5,68.5 - parent: 1 - - uid: 7569 - components: - - type: Transform - pos: 28.5,68.5 - parent: 1 - - uid: 7570 - components: - - type: Transform - pos: 38.5,69.5 - parent: 1 - - uid: 7571 - components: - - type: Transform - pos: 39.5,69.5 - parent: 1 - - uid: 7572 - components: - - type: Transform - pos: 39.5,70.5 - parent: 1 - - uid: 7573 - components: - - type: Transform - pos: 40.5,70.5 - parent: 1 - - uid: 7574 - components: - - type: Transform - pos: 41.5,70.5 - parent: 1 - - uid: 7575 - components: - - type: Transform - pos: 42.5,70.5 - parent: 1 - - uid: 7576 - components: - - type: Transform - pos: 43.5,70.5 - parent: 1 - - uid: 7577 - components: - - type: Transform - pos: 44.5,70.5 - parent: 1 - - uid: 7578 - components: - - type: Transform - pos: 45.5,70.5 - parent: 1 - - uid: 7579 - components: - - type: Transform - pos: 46.5,70.5 - parent: 1 - - uid: 7580 - components: - - type: Transform - pos: 39.5,68.5 - parent: 1 - - uid: 7581 - components: - - type: Transform - pos: 40.5,68.5 - parent: 1 - - uid: 7582 - components: - - type: Transform - pos: 41.5,68.5 - parent: 1 - - uid: 7583 - components: - - type: Transform - pos: 42.5,68.5 - parent: 1 - - uid: 7584 - components: - - type: Transform - pos: 43.5,68.5 - parent: 1 - - uid: 7585 - components: - - type: Transform - pos: 44.5,68.5 - parent: 1 - - uid: 7586 - components: - - type: Transform - pos: 45.5,68.5 - parent: 1 - - uid: 7587 - components: - - type: Transform - pos: 46.5,68.5 - parent: 1 - - uid: 7588 - components: - - type: Transform - pos: 38.5,73.5 - parent: 1 - - uid: 7589 - components: - - type: Transform - pos: 39.5,73.5 - parent: 1 - - uid: 7590 - components: - - type: Transform - pos: 39.5,72.5 - parent: 1 - - uid: 7591 - components: - - type: Transform - pos: 40.5,72.5 - parent: 1 - - uid: 7592 - components: - - type: Transform - pos: 41.5,72.5 - parent: 1 - - uid: 7593 - components: - - type: Transform - pos: 42.5,72.5 - parent: 1 - - uid: 7594 - components: - - type: Transform - pos: 43.5,72.5 - parent: 1 - - uid: 7595 - components: - - type: Transform - pos: 44.5,72.5 - parent: 1 - - uid: 7596 - components: - - type: Transform - pos: 45.5,72.5 - parent: 1 - - uid: 7597 - components: - - type: Transform - pos: 46.5,72.5 - parent: 1 - - uid: 7598 - components: - - type: Transform - pos: 39.5,74.5 - parent: 1 - - uid: 7599 - components: - - type: Transform - pos: 40.5,74.5 - parent: 1 - - uid: 7600 - components: - - type: Transform - pos: 41.5,74.5 - parent: 1 - - uid: 7601 - components: - - type: Transform - pos: 42.5,74.5 - parent: 1 - - uid: 7602 - components: - - type: Transform - pos: 43.5,74.5 - parent: 1 - - uid: 7603 - components: - - type: Transform - pos: 44.5,74.5 - parent: 1 - - uid: 7604 - components: - - type: Transform - pos: 45.5,74.5 - parent: 1 - - uid: 7605 - components: - - type: Transform - pos: 46.5,74.5 - parent: 1 - - uid: 7606 - components: - - type: Transform - pos: 36.5,73.5 - parent: 1 - - uid: 7607 - components: - - type: Transform - pos: 35.5,73.5 - parent: 1 - - uid: 7608 - components: - - type: Transform - pos: 35.5,74.5 - parent: 1 - - uid: 7609 - components: - - type: Transform - pos: 34.5,74.5 - parent: 1 - - uid: 7610 - components: - - type: Transform - pos: 33.5,74.5 - parent: 1 - - uid: 7611 - components: - - type: Transform - pos: 32.5,74.5 - parent: 1 - - uid: 7612 - components: - - type: Transform - pos: 31.5,74.5 - parent: 1 - - uid: 7613 - components: - - type: Transform - pos: 30.5,74.5 - parent: 1 - - uid: 7614 - components: - - type: Transform - pos: 29.5,74.5 - parent: 1 - - uid: 7615 - components: - - type: Transform - pos: 28.5,74.5 - parent: 1 - - uid: 7616 - components: - - type: Transform - pos: 35.5,72.5 - parent: 1 - - uid: 7617 - components: - - type: Transform - pos: 34.5,72.5 - parent: 1 - - uid: 7618 - components: - - type: Transform - pos: 33.5,72.5 - parent: 1 - - uid: 7619 - components: - - type: Transform - pos: 32.5,72.5 - parent: 1 - - uid: 7620 - components: - - type: Transform - pos: 31.5,72.5 - parent: 1 - - uid: 7621 - components: - - type: Transform - pos: 30.5,72.5 - parent: 1 - - uid: 7622 - components: - - type: Transform - pos: 29.5,72.5 - parent: 1 - - uid: 7623 - components: - - type: Transform - pos: 28.5,72.5 - parent: 1 - - uid: 7830 - components: - - type: Transform - pos: -37.5,73.5 - parent: 1 - - uid: 7831 - components: - - type: Transform - pos: -39.5,73.5 - parent: 1 - - uid: 7832 - components: - - type: Transform - pos: -39.5,69.5 - parent: 1 - - uid: 7833 - components: - - type: Transform - pos: -37.5,69.5 - parent: 1 - - uid: 7834 - components: - - type: Transform - pos: -36.5,69.5 - parent: 1 - - uid: 7835 - components: - - type: Transform - pos: -36.5,73.5 - parent: 1 - - uid: 7836 - components: - - type: Transform - pos: -40.5,73.5 - parent: 1 - - uid: 7837 - components: - - type: Transform - pos: -40.5,69.5 - parent: 1 - - uid: 7838 - components: - - type: Transform - pos: -40.5,68.5 - parent: 1 - - uid: 7839 - components: - - type: Transform - pos: -41.5,68.5 - parent: 1 - - uid: 7840 - components: - - type: Transform - pos: -42.5,68.5 - parent: 1 - - uid: 7841 - components: - - type: Transform - pos: -43.5,68.5 - parent: 1 - - uid: 7842 - components: - - type: Transform - pos: -44.5,68.5 - parent: 1 - - uid: 7843 - components: - - type: Transform - pos: -45.5,68.5 - parent: 1 - - uid: 7844 - components: - - type: Transform - pos: -46.5,68.5 - parent: 1 - - uid: 7845 - components: - - type: Transform - pos: -47.5,68.5 - parent: 1 - - uid: 7846 - components: - - type: Transform - pos: -40.5,70.5 - parent: 1 - - uid: 7847 - components: - - type: Transform - pos: -41.5,70.5 - parent: 1 - - uid: 7848 - components: - - type: Transform - pos: -42.5,70.5 - parent: 1 - - uid: 7849 - components: - - type: Transform - pos: -43.5,70.5 - parent: 1 - - uid: 7850 - components: - - type: Transform - pos: -44.5,70.5 - parent: 1 - - uid: 7851 - components: - - type: Transform - pos: -45.5,70.5 - parent: 1 - - uid: 7852 - components: - - type: Transform - pos: -46.5,70.5 - parent: 1 - - uid: 7853 - components: - - type: Transform - pos: -47.5,70.5 - parent: 1 - - uid: 7854 - components: - - type: Transform - pos: -36.5,70.5 - parent: 1 - - uid: 7855 - components: - - type: Transform - pos: -35.5,70.5 - parent: 1 - - uid: 7856 - components: - - type: Transform - pos: -34.5,70.5 - parent: 1 - - uid: 7857 - components: - - type: Transform - pos: -33.5,70.5 - parent: 1 - - uid: 7858 - components: - - type: Transform - pos: -32.5,70.5 - parent: 1 - - uid: 7859 - components: - - type: Transform - pos: -31.5,70.5 - parent: 1 - - uid: 7860 - components: - - type: Transform - pos: -30.5,70.5 - parent: 1 - - uid: 7861 - components: - - type: Transform - pos: -29.5,70.5 - parent: 1 - - uid: 7862 - components: - - type: Transform - pos: -36.5,68.5 - parent: 1 - - uid: 7863 - components: - - type: Transform - pos: -35.5,68.5 - parent: 1 - - uid: 7864 - components: - - type: Transform - pos: -34.5,68.5 - parent: 1 - - uid: 7865 - components: - - type: Transform - pos: -33.5,68.5 - parent: 1 - - uid: 7866 - components: - - type: Transform - pos: -32.5,68.5 - parent: 1 - - uid: 7867 - components: - - type: Transform - pos: -31.5,68.5 - parent: 1 - - uid: 7868 - components: - - type: Transform - pos: -30.5,68.5 - parent: 1 - - uid: 7869 - components: - - type: Transform - pos: -29.5,68.5 - parent: 1 - - uid: 7871 - components: - - type: Transform - pos: -38.5,59.5 - parent: 1 - - uid: 7872 - components: - - type: Transform - pos: -38.5,58.5 - parent: 1 - - uid: 7873 - components: - - type: Transform - pos: -38.5,57.5 - parent: 1 - - uid: 7874 - components: - - type: Transform - pos: -38.5,56.5 - parent: 1 - - uid: 7875 - components: - - type: Transform - pos: -38.5,55.5 - parent: 1 - - uid: 7883 - components: - - type: Transform - pos: -35.5,72.5 - parent: 1 - - uid: 7896 - components: - - type: Transform - pos: -34.5,74.5 - parent: 1 - - uid: 7897 - components: - - type: Transform - pos: -30.5,74.5 - parent: 1 - - uid: 7903 - components: - - type: Transform - pos: -31.5,74.5 - parent: 1 - - uid: 7904 - components: - - type: Transform - pos: -33.5,74.5 - parent: 1 - - uid: 7905 - components: - - type: Transform - pos: -29.5,74.5 - parent: 1 - - uid: 7906 - components: - - type: Transform - pos: -36.5,72.5 - parent: 1 - - uid: 7907 - components: - - type: Transform - pos: -34.5,72.5 - parent: 1 - - uid: 7908 - components: - - type: Transform - pos: -33.5,72.5 - parent: 1 - - uid: 7909 - components: - - type: Transform - pos: -32.5,72.5 - parent: 1 - - uid: 7910 - components: - - type: Transform - pos: -31.5,72.5 - parent: 1 - - uid: 7911 - components: - - type: Transform - pos: -30.5,72.5 - parent: 1 - - uid: 7912 - components: - - type: Transform - pos: -29.5,72.5 - parent: 1 - - uid: 8012 - components: - - type: Transform - pos: -25.5,57.5 - parent: 1 - - uid: 8013 - components: - - type: Transform - pos: -26.5,57.5 - parent: 1 - - uid: 8014 - components: - - type: Transform - pos: -27.5,57.5 - parent: 1 - - uid: 8015 - components: - - type: Transform - pos: -27.5,56.5 - parent: 1 - - uid: 8016 - components: - - type: Transform - pos: -27.5,55.5 - parent: 1 - - uid: 8017 - components: - - type: Transform - pos: -27.5,54.5 - parent: 1 - - uid: 8018 - components: - - type: Transform - pos: -27.5,53.5 - parent: 1 - - uid: 8019 - components: - - type: Transform - pos: -27.5,52.5 - parent: 1 - - uid: 8020 - components: - - type: Transform - pos: -28.5,52.5 - parent: 1 - - uid: 8021 - components: - - type: Transform - pos: -29.5,52.5 - parent: 1 - - uid: 8022 - components: - - type: Transform - pos: -30.5,52.5 - parent: 1 - - uid: 8023 - components: - - type: Transform - pos: -31.5,52.5 - parent: 1 - - uid: 8024 - components: - - type: Transform - pos: -32.5,52.5 - parent: 1 - - uid: 8025 - components: - - type: Transform - pos: -33.5,52.5 - parent: 1 - - uid: 8026 - components: - - type: Transform - pos: -34.5,52.5 - parent: 1 - - uid: 8027 - components: - - type: Transform - pos: -35.5,52.5 - parent: 1 - - uid: 8028 - components: - - type: Transform - pos: -36.5,52.5 - parent: 1 - - uid: 8029 - components: - - type: Transform - pos: -37.5,52.5 - parent: 1 - - uid: 8030 - components: - - type: Transform - pos: -38.5,52.5 - parent: 1 - - uid: 8031 - components: - - type: Transform - pos: -39.5,52.5 - parent: 1 - - uid: 8032 - components: - - type: Transform - pos: -40.5,52.5 - parent: 1 - - uid: 8033 - components: - - type: Transform - pos: -40.5,51.5 - parent: 1 - - uid: 8034 - components: - - type: Transform - pos: -41.5,51.5 - parent: 1 - - uid: 8035 - components: - - type: Transform - pos: -42.5,51.5 - parent: 1 - - uid: 8036 - components: - - type: Transform - pos: -43.5,51.5 - parent: 1 - - uid: 8037 - components: - - type: Transform - pos: -43.5,50.5 - parent: 1 - - uid: 8038 - components: - - type: Transform - pos: -43.5,49.5 - parent: 1 - - uid: 8039 - components: - - type: Transform - pos: -43.5,48.5 - parent: 1 - - uid: 8040 - components: - - type: Transform - pos: -43.5,47.5 - parent: 1 - - uid: 8041 - components: - - type: Transform - pos: -43.5,46.5 - parent: 1 - - uid: 8042 - components: - - type: Transform - pos: -43.5,45.5 - parent: 1 - - uid: 8043 - components: - - type: Transform - pos: -43.5,44.5 - parent: 1 - - uid: 8044 - components: - - type: Transform - pos: -43.5,43.5 - parent: 1 - - uid: 8045 - components: - - type: Transform - pos: -43.5,42.5 - parent: 1 - - uid: 8046 - components: - - type: Transform - pos: -43.5,41.5 - parent: 1 - - uid: 8047 - components: - - type: Transform - pos: -43.5,40.5 - parent: 1 - - uid: 8048 - components: - - type: Transform - pos: -43.5,39.5 - parent: 1 - - uid: 8049 - components: - - type: Transform - pos: -43.5,38.5 - parent: 1 - - uid: 8050 - components: - - type: Transform - pos: -43.5,37.5 - parent: 1 - - uid: 8051 - components: - - type: Transform - pos: -43.5,36.5 - parent: 1 - - uid: 8052 - components: - - type: Transform - pos: -42.5,36.5 - parent: 1 - - uid: 8053 - components: - - type: Transform - pos: -41.5,36.5 - parent: 1 - - uid: 8054 - components: - - type: Transform - pos: -40.5,36.5 - parent: 1 - - uid: 8055 - components: - - type: Transform - pos: -39.5,36.5 - parent: 1 - - uid: 8057 - components: - - type: Transform - pos: -39.5,55.5 - parent: 1 - - uid: 8058 - components: - - type: Transform - pos: -39.5,54.5 - parent: 1 - - uid: 8059 - components: - - type: Transform - pos: -39.5,53.5 - parent: 1 - - uid: 8821 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 8756 - - uid: 8822 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 8756 - - uid: 8823 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 8756 - - uid: 8824 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 8756 - - uid: 9727 - components: - - type: Transform - pos: -17.5,-18.5 - parent: 1 - - uid: 9728 - components: - - type: Transform - pos: -18.5,-18.5 - parent: 1 - - uid: 9729 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 1 - - uid: 9730 - components: - - type: Transform - pos: -20.5,-18.5 - parent: 1 - - uid: 9731 - components: - - type: Transform - pos: -21.5,-18.5 - parent: 1 - - uid: 9732 - components: - - type: Transform - pos: -22.5,-18.5 - parent: 1 - - uid: 9733 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 1 - - uid: 10144 - components: - - type: Transform - pos: 36.5,52.5 - parent: 1 - - uid: 10147 - components: - - type: Transform - pos: 36.5,53.5 - parent: 1 - - uid: 10541 - components: - - type: Transform - pos: 7.5,-41.5 - parent: 1 - - uid: 10542 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 1 - - uid: 10543 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 1 - - uid: 10544 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 1 - - uid: 10663 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 1 - - uid: 10871 - components: - - type: Transform - pos: 27.5,-18.5 - parent: 1 - - uid: 13141 - components: - - type: Transform - pos: 20.5,13.5 - parent: 1 - - uid: 13142 - components: - - type: Transform - pos: 21.5,13.5 - parent: 1 - - uid: 13143 - components: - - type: Transform - pos: 22.5,13.5 - parent: 1 - - uid: 13144 - components: - - type: Transform - pos: 23.5,13.5 - parent: 1 - - uid: 13145 - components: - - type: Transform - pos: 24.5,13.5 - parent: 1 - - uid: 13146 - components: - - type: Transform - pos: 25.5,13.5 - parent: 1 - - uid: 13147 - components: - - type: Transform - pos: 26.5,13.5 - parent: 1 - - uid: 13148 - components: - - type: Transform - pos: 27.5,13.5 - parent: 1 - - uid: 13149 - components: - - type: Transform - pos: 28.5,13.5 - parent: 1 - - uid: 13150 - components: - - type: Transform - pos: 29.5,13.5 - parent: 1 - - uid: 13151 - components: - - type: Transform - pos: 30.5,13.5 - parent: 1 - - uid: 13152 - components: - - type: Transform - pos: 31.5,13.5 - parent: 1 - - uid: 13178 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 1 - - uid: 13179 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 1 - - uid: 14045 - components: - - type: Transform - pos: 36.5,55.5 - parent: 1 - - uid: 14634 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 1 - - uid: 16380 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 1 - - uid: 18454 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 1 - - uid: 18455 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 1 - - uid: 18456 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 1 - - uid: 18458 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 1 - - uid: 18459 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 1 - - uid: 18460 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 1 - - uid: 18461 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 1 - - uid: 18462 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 1 - - uid: 18463 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 1 - - uid: 18464 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 1 -- proto: CableHVStack - entities: - - uid: 9124 - components: - - type: Transform - pos: 13.366544,-22.108011 - parent: 1 -- proto: CableMV - entities: - - uid: 4571 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 1 - - uid: 8825 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 8756 - - uid: 8826 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 8756 - - uid: 8827 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 8756 - - uid: 8828 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 8756 - - uid: 8829 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 8756 - - uid: 9079 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 1 - - uid: 9294 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 1 - - uid: 9734 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 1 - - uid: 9735 - components: - - type: Transform - pos: -22.5,-18.5 - parent: 1 - - uid: 9736 - components: - - type: Transform - pos: -22.5,-19.5 - parent: 1 - - uid: 9765 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 1 - - uid: 9766 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 1 - - uid: 9767 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 1 - - uid: 9768 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 1 - - uid: 9769 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 1 - - uid: 9770 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 1 - - uid: 9771 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 1 - - uid: 9772 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 1 - - uid: 9773 - components: - - type: Transform - pos: -31.5,-15.5 - parent: 1 - - uid: 9774 - components: - - type: Transform - pos: -31.5,-14.5 - parent: 1 - - uid: 9775 - components: - - type: Transform - pos: -31.5,-13.5 - parent: 1 - - uid: 10124 - components: - - type: Transform - pos: -24.5,36.5 - parent: 1 - - uid: 10152 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 1 - - uid: 10153 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 1 - - uid: 10154 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 1 - - uid: 10155 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 1 - - uid: 10156 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1 - - uid: 10157 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 1 - - uid: 10158 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 1 - - uid: 10159 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 1 - - uid: 10160 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 1 - - uid: 10161 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 1 - - uid: 10162 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 1 - - uid: 10163 - components: - - type: Transform - pos: 29.5,-14.5 - parent: 1 - - uid: 10272 - components: - - type: Transform - pos: -32.5,-16.5 - parent: 1 - - uid: 10273 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 1 - - uid: 10274 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 1 - - uid: 10275 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 1 - - uid: 10276 - components: - - type: Transform - pos: -35.5,-15.5 - parent: 1 - - uid: 10277 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 1 - - uid: 10278 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 1 - - uid: 10279 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 1 - - uid: 10280 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 1 - - uid: 10281 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 1 - - uid: 10282 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 1 - - uid: 10283 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 1 - - uid: 10284 - components: - - type: Transform - pos: -37.5,-9.5 - parent: 1 - - uid: 10285 - components: - - type: Transform - pos: -38.5,-9.5 - parent: 1 - - uid: 10286 - components: - - type: Transform - pos: -39.5,-9.5 - parent: 1 - - uid: 10287 - components: - - type: Transform - pos: -40.5,-9.5 - parent: 1 - - uid: 10288 - components: - - type: Transform - pos: -40.5,-8.5 - parent: 1 - - uid: 10289 - components: - - type: Transform - pos: -40.5,-7.5 - parent: 1 - - uid: 10290 - components: - - type: Transform - pos: -40.5,-6.5 - parent: 1 - - uid: 10291 - components: - - type: Transform - pos: -40.5,-5.5 - parent: 1 - - uid: 10292 - components: - - type: Transform - pos: -40.5,-4.5 - parent: 1 - - uid: 10293 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 1 - - uid: 10294 - components: - - type: Transform - pos: -40.5,-2.5 - parent: 1 - - uid: 10295 - components: - - type: Transform - pos: -40.5,-1.5 - parent: 1 - - uid: 10296 - components: - - type: Transform - pos: -40.5,-0.5 - parent: 1 - - uid: 10297 - components: - - type: Transform - pos: -39.5,-0.5 - parent: 1 - - uid: 10298 - components: - - type: Transform - pos: -39.5,0.5 - parent: 1 - - uid: 10299 - components: - - type: Transform - pos: -39.5,1.5 - parent: 1 - - uid: 10300 - components: - - type: Transform - pos: -39.5,2.5 - parent: 1 - - uid: 10301 - components: - - type: Transform - pos: -39.5,3.5 - parent: 1 - - uid: 10302 - components: - - type: Transform - pos: -39.5,4.5 - parent: 1 - - uid: 10303 - components: - - type: Transform - pos: -39.5,5.5 - parent: 1 - - uid: 10304 - components: - - type: Transform - pos: -39.5,6.5 - parent: 1 - - uid: 10305 - components: - - type: Transform - pos: -39.5,7.5 - parent: 1 - - uid: 10306 - components: - - type: Transform - pos: -40.5,7.5 - parent: 1 - - uid: 10307 - components: - - type: Transform - pos: -41.5,7.5 - parent: 1 - - uid: 10386 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 1 - - uid: 10387 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 1 - - uid: 10388 - components: - - type: Transform - pos: 30.5,-22.5 - parent: 1 - - uid: 10389 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 1 - - uid: 10390 - components: - - type: Transform - pos: 30.5,-24.5 - parent: 1 - - uid: 10391 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 1 - - uid: 10392 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 1 - - uid: 10393 - components: - - type: Transform - pos: 27.5,-24.5 - parent: 1 - - uid: 10394 - components: - - type: Transform - pos: 26.5,-24.5 - parent: 1 - - uid: 10395 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 1 - - uid: 10396 - components: - - type: Transform - pos: 24.5,-24.5 - parent: 1 - - uid: 10397 - components: - - type: Transform - pos: 23.5,-24.5 - parent: 1 - - uid: 10398 - components: - - type: Transform - pos: 22.5,-24.5 - parent: 1 - - uid: 10399 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 1 - - uid: 10400 - components: - - type: Transform - pos: 22.5,-26.5 - parent: 1 - - uid: 10401 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 1 - - uid: 10402 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 1 - - uid: 10403 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 1 - - uid: 10404 - components: - - type: Transform - pos: 21.5,-29.5 - parent: 1 - - uid: 10405 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 1 - - uid: 10406 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 1 - - uid: 10407 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 1 - - uid: 10408 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 1 - - uid: 10409 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 1 - - uid: 10410 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 1 - - uid: 10411 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 1 - - uid: 10412 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 1 - - uid: 10413 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 1 - - uid: 10414 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 1 - - uid: 10415 - components: - - type: Transform - pos: 15.5,-34.5 - parent: 1 - - uid: 10416 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 1 - - uid: 10418 - components: - - type: Transform - pos: 13.5,-35.5 - parent: 1 - - uid: 10419 - components: - - type: Transform - pos: 13.5,-34.5 - parent: 1 - - uid: 10420 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 1 - - uid: 10421 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 1 - - uid: 10422 - components: - - type: Transform - pos: 13.5,-31.5 - parent: 1 - - uid: 10423 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 1 - - uid: 10424 - components: - - type: Transform - pos: 13.5,-29.5 - parent: 1 - - uid: 10425 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 1 - - uid: 10426 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 1 - - uid: 10427 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 1 - - uid: 10428 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 1 - - uid: 10429 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 1 - - uid: 10430 - components: - - type: Transform - pos: 12.5,-25.5 - parent: 1 - - uid: 10431 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 1 - - uid: 10432 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 1 - - uid: 10433 - components: - - type: Transform - pos: 12.5,-22.5 - parent: 1 - - uid: 10434 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 1 - - uid: 10435 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 1 - - uid: 10436 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 1 - - uid: 10437 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 1 - - uid: 10438 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 1 - - uid: 10439 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 1 - - uid: 10440 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1 - - uid: 10441 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 1 - - uid: 10459 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 1 - - uid: 10460 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 1 - - uid: 10461 - components: - - type: Transform - pos: 10.5,-34.5 - parent: 1 - - uid: 10462 - components: - - type: Transform - pos: 9.5,-34.5 - parent: 1 - - uid: 10463 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 1 - - uid: 10464 - components: - - type: Transform - pos: 7.5,-34.5 - parent: 1 - - uid: 10465 - components: - - type: Transform - pos: 6.5,-34.5 - parent: 1 - - uid: 10466 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 1 - - uid: 10467 - components: - - type: Transform - pos: 5.5,-33.5 - parent: 1 - - uid: 10468 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 1 - - uid: 10469 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 1 - - uid: 10546 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 1 - - uid: 10547 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 1 - - uid: 10548 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 1 - - uid: 10631 - components: - - type: Transform - pos: 28.5,-15.5 - parent: 1 - - uid: 10632 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 1 - - uid: 10633 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 1 - - uid: 10634 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 1 - - uid: 10635 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 1 - - uid: 10636 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 1 - - uid: 10637 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 1 - - uid: 10638 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 1 - - uid: 10639 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 1 - - uid: 10640 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 1 - - uid: 10641 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 1 - - uid: 10662 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 1 - - uid: 10664 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 1 - - uid: 10667 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 1 - - uid: 10668 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 1 - - uid: 10669 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 1 - - uid: 10670 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 1 - - uid: 10671 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 1 - - uid: 10672 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 1 - - uid: 10673 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 1 - - uid: 10674 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 1 - - uid: 10675 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 1 - - uid: 10676 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 1 - - uid: 10677 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 1 - - uid: 10678 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 1 - - uid: 10679 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 1 - - uid: 10680 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 1 - - uid: 10681 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1 - - uid: 10682 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 1 - - uid: 10683 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 1 - - uid: 10684 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 1 - - uid: 10685 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1 - - uid: 10686 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 1 - - uid: 10687 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 1 - - uid: 10688 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 1 - - uid: 10689 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 1 - - uid: 10690 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 1 - - uid: 10691 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 1 - - uid: 10692 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 1 - - uid: 10694 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 1 - - uid: 10695 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 1 - - uid: 10696 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 1 - - uid: 10697 - components: - - type: Transform - pos: -11.5,-15.5 - parent: 1 - - uid: 10698 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 1 - - uid: 10699 - components: - - type: Transform - pos: -12.5,-16.5 - parent: 1 - - uid: 10700 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 1 - - uid: 10701 - components: - - type: Transform - pos: -12.5,-18.5 - parent: 1 - - uid: 10702 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 1 - - uid: 10703 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 1 - - uid: 10704 - components: - - type: Transform - pos: -12.5,-21.5 - parent: 1 - - uid: 10705 - components: - - type: Transform - pos: -12.5,-22.5 - parent: 1 - - uid: 10706 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 1 - - uid: 10707 - components: - - type: Transform - pos: -12.5,-24.5 - parent: 1 - - uid: 10708 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 1 - - uid: 10709 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 1 - - uid: 10710 - components: - - type: Transform - pos: -12.5,-27.5 - parent: 1 - - uid: 10711 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 1 - - uid: 10712 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 1 - - uid: 10713 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 1 - - uid: 10714 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 1 - - uid: 10715 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 1 - - uid: 10716 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 1 - - uid: 10717 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 1 - - uid: 10718 - components: - - type: Transform - pos: -12.5,-35.5 - parent: 1 - - uid: 10719 - components: - - type: Transform - pos: -12.5,-36.5 - parent: 1 - - uid: 10720 - components: - - type: Transform - pos: -12.5,-37.5 - parent: 1 - - uid: 10721 - components: - - type: Transform - pos: -11.5,-37.5 - parent: 1 - - uid: 10722 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 1 - - uid: 10968 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 1 - - uid: 10969 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 1 - - uid: 10970 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 1 - - uid: 10972 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 1 - - uid: 10973 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 1 - - uid: 10974 - components: - - type: Transform - pos: 31.5,-9.5 - parent: 1 - - uid: 10975 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 1 - - uid: 10976 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 1 - - uid: 10977 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 1 - - uid: 10978 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 1 - - uid: 10979 - components: - - type: Transform - pos: 36.5,-9.5 - parent: 1 - - uid: 10980 - components: - - type: Transform - pos: 37.5,-9.5 - parent: 1 - - uid: 10981 - components: - - type: Transform - pos: 38.5,-9.5 - parent: 1 - - uid: 10982 - components: - - type: Transform - pos: 39.5,-9.5 - parent: 1 - - uid: 10983 - components: - - type: Transform - pos: 40.5,-9.5 - parent: 1 - - uid: 10984 - components: - - type: Transform - pos: 41.5,-9.5 - parent: 1 - - uid: 10985 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 1 - - uid: 10986 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 1 - - uid: 10987 - components: - - type: Transform - pos: 44.5,-9.5 - parent: 1 - - uid: 10988 - components: - - type: Transform - pos: 44.5,-8.5 - parent: 1 - - uid: 10989 - components: - - type: Transform - pos: 44.5,-7.5 - parent: 1 - - uid: 10990 - components: - - type: Transform - pos: 44.5,-6.5 - parent: 1 - - uid: 11084 - components: - - type: Transform - pos: 17.5,4.5 - parent: 1 - - uid: 11085 - components: - - type: Transform - pos: 18.5,4.5 - parent: 1 - - uid: 11086 - components: - - type: Transform - pos: 18.5,3.5 - parent: 1 - - uid: 11087 - components: - - type: Transform - pos: 18.5,2.5 - parent: 1 - - uid: 11088 - components: - - type: Transform - pos: 18.5,1.5 - parent: 1 - - uid: 11089 - components: - - type: Transform - pos: 18.5,0.5 - parent: 1 - - uid: 11090 - components: - - type: Transform - pos: 19.5,0.5 - parent: 1 - - uid: 11091 - components: - - type: Transform - pos: 20.5,0.5 - parent: 1 - - uid: 11092 - components: - - type: Transform - pos: 21.5,0.5 - parent: 1 - - uid: 11093 - components: - - type: Transform - pos: 21.5,1.5 - parent: 1 - - uid: 11094 - components: - - type: Transform - pos: 21.5,2.5 - parent: 1 - - uid: 11095 - components: - - type: Transform - pos: 21.5,3.5 - parent: 1 - - uid: 11096 - components: - - type: Transform - pos: 21.5,4.5 - parent: 1 - - uid: 11097 - components: - - type: Transform - pos: 21.5,5.5 - parent: 1 - - uid: 11098 - components: - - type: Transform - pos: 22.5,5.5 - parent: 1 - - uid: 11099 - components: - - type: Transform - pos: 22.5,0.5 - parent: 1 - - uid: 11100 - components: - - type: Transform - pos: 23.5,0.5 - parent: 1 - - uid: 11101 - components: - - type: Transform - pos: 24.5,0.5 - parent: 1 - - uid: 11102 - components: - - type: Transform - pos: 25.5,0.5 - parent: 1 - - uid: 11103 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 1 - - uid: 11104 - components: - - type: Transform - pos: 25.5,-1.5 - parent: 1 - - uid: 11105 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 1 - - uid: 11106 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 1 - - uid: 11107 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 1 - - uid: 11108 - components: - - type: Transform - pos: 23.5,-3.5 - parent: 1 - - uid: 11236 - components: - - type: Transform - pos: 16.5,9.5 - parent: 1 - - uid: 11237 - components: - - type: Transform - pos: 17.5,9.5 - parent: 1 - - uid: 11238 - components: - - type: Transform - pos: 18.5,9.5 - parent: 1 - - uid: 11239 - components: - - type: Transform - pos: 18.5,8.5 - parent: 1 - - uid: 11240 - components: - - type: Transform - pos: 19.5,8.5 - parent: 1 - - uid: 11241 - components: - - type: Transform - pos: 20.5,8.5 - parent: 1 - - uid: 11242 - components: - - type: Transform - pos: 21.5,8.5 - parent: 1 - - uid: 11243 - components: - - type: Transform - pos: 21.5,7.5 - parent: 1 - - uid: 11244 - components: - - type: Transform - pos: 21.5,6.5 - parent: 1 - - uid: 11282 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 1 - - uid: 11283 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 1 - - uid: 11284 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 1 - - uid: 11285 - components: - - type: Transform - pos: 16.5,-1.5 - parent: 1 - - uid: 11286 - components: - - type: Transform - pos: 17.5,-1.5 - parent: 1 - - uid: 11287 - components: - - type: Transform - pos: 18.5,-1.5 - parent: 1 - - uid: 11288 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1 - - uid: 11378 - components: - - type: Transform - pos: -4.5,74.5 - parent: 1 - - uid: 11379 - components: - - type: Transform - pos: -3.5,74.5 - parent: 1 - - uid: 11380 - components: - - type: Transform - pos: -3.5,75.5 - parent: 1 - - uid: 11381 - components: - - type: Transform - pos: -3.5,76.5 - parent: 1 - - uid: 11382 - components: - - type: Transform - pos: -4.5,76.5 - parent: 1 - - uid: 11383 - components: - - type: Transform - pos: -5.5,76.5 - parent: 1 - - uid: 11384 - components: - - type: Transform - pos: -6.5,76.5 - parent: 1 - - uid: 11385 - components: - - type: Transform - pos: -7.5,76.5 - parent: 1 - - uid: 11386 - components: - - type: Transform - pos: -8.5,76.5 - parent: 1 - - uid: 11387 - components: - - type: Transform - pos: -9.5,76.5 - parent: 1 - - uid: 11388 - components: - - type: Transform - pos: -9.5,77.5 - parent: 1 - - uid: 11389 - components: - - type: Transform - pos: -9.5,78.5 - parent: 1 - - uid: 11390 - components: - - type: Transform - pos: -8.5,78.5 - parent: 1 - - uid: 11391 - components: - - type: Transform - pos: -8.5,79.5 - parent: 1 - - uid: 11392 - components: - - type: Transform - pos: -8.5,80.5 - parent: 1 - - uid: 11393 - components: - - type: Transform - pos: -8.5,81.5 - parent: 1 - - uid: 11394 - components: - - type: Transform - pos: -7.5,81.5 - parent: 1 - - uid: 11395 - components: - - type: Transform - pos: -7.5,82.5 - parent: 1 - - uid: 11396 - components: - - type: Transform - pos: -7.5,83.5 - parent: 1 - - uid: 11397 - components: - - type: Transform - pos: -6.5,83.5 - parent: 1 - - uid: 11398 - components: - - type: Transform - pos: -5.5,83.5 - parent: 1 - - uid: 11399 - components: - - type: Transform - pos: -4.5,83.5 - parent: 1 - - uid: 11400 - components: - - type: Transform - pos: -4.5,84.5 - parent: 1 - - uid: 11401 - components: - - type: Transform - pos: -3.5,84.5 - parent: 1 - - uid: 11402 - components: - - type: Transform - pos: -2.5,84.5 - parent: 1 - - uid: 11403 - components: - - type: Transform - pos: -1.5,84.5 - parent: 1 - - uid: 11404 - components: - - type: Transform - pos: -0.5,84.5 - parent: 1 - - uid: 11405 - components: - - type: Transform - pos: 0.5,84.5 - parent: 1 - - uid: 11406 - components: - - type: Transform - pos: 1.5,84.5 - parent: 1 - - uid: 11407 - components: - - type: Transform - pos: 2.5,84.5 - parent: 1 - - uid: 11408 - components: - - type: Transform - pos: 3.5,84.5 - parent: 1 - - uid: 11409 - components: - - type: Transform - pos: 3.5,83.5 - parent: 1 - - uid: 11410 - components: - - type: Transform - pos: 4.5,83.5 - parent: 1 - - uid: 11411 - components: - - type: Transform - pos: 5.5,83.5 - parent: 1 - - uid: 11412 - components: - - type: Transform - pos: 6.5,83.5 - parent: 1 - - uid: 11413 - components: - - type: Transform - pos: 6.5,82.5 - parent: 1 - - uid: 11414 - components: - - type: Transform - pos: 6.5,81.5 - parent: 1 - - uid: 11415 - components: - - type: Transform - pos: 7.5,81.5 - parent: 1 - - uid: 11416 - components: - - type: Transform - pos: 7.5,80.5 - parent: 1 - - uid: 11417 - components: - - type: Transform - pos: 7.5,79.5 - parent: 1 - - uid: 11418 - components: - - type: Transform - pos: 7.5,78.5 - parent: 1 - - uid: 11419 - components: - - type: Transform - pos: 8.5,78.5 - parent: 1 - - uid: 11420 - components: - - type: Transform - pos: 8.5,77.5 - parent: 1 - - uid: 11421 - components: - - type: Transform - pos: 8.5,76.5 - parent: 1 - - uid: 11422 - components: - - type: Transform - pos: 8.5,75.5 - parent: 1 - - uid: 11423 - components: - - type: Transform - pos: 7.5,75.5 - parent: 1 - - uid: 11424 - components: - - type: Transform - pos: 6.5,75.5 - parent: 1 - - uid: 11553 - components: - - type: Transform - pos: -24.5,50.5 - parent: 1 - - uid: 11554 - components: - - type: Transform - pos: -24.5,49.5 - parent: 1 - - uid: 11555 - components: - - type: Transform - pos: -24.5,51.5 - parent: 1 - - uid: 11556 - components: - - type: Transform - pos: -24.5,52.5 - parent: 1 - - uid: 11557 - components: - - type: Transform - pos: -24.5,53.5 - parent: 1 - - uid: 11558 - components: - - type: Transform - pos: -24.5,54.5 - parent: 1 - - uid: 11559 - components: - - type: Transform - pos: -24.5,55.5 - parent: 1 - - uid: 11560 - components: - - type: Transform - pos: -24.5,56.5 - parent: 1 - - uid: 11561 - components: - - type: Transform - pos: -24.5,57.5 - parent: 1 - - uid: 11562 - components: - - type: Transform - pos: -23.5,57.5 - parent: 1 - - uid: 11563 - components: - - type: Transform - pos: -22.5,57.5 - parent: 1 - - uid: 11564 - components: - - type: Transform - pos: -21.5,57.5 - parent: 1 - - uid: 11565 - components: - - type: Transform - pos: -21.5,56.5 - parent: 1 - - uid: 11566 - components: - - type: Transform - pos: -21.5,55.5 - parent: 1 - - uid: 11567 - components: - - type: Transform - pos: -21.5,54.5 - parent: 1 - - uid: 11568 - components: - - type: Transform - pos: -21.5,53.5 - parent: 1 - - uid: 11569 - components: - - type: Transform - pos: -21.5,52.5 - parent: 1 - - uid: 11570 - components: - - type: Transform - pos: -21.5,51.5 - parent: 1 - - uid: 11571 - components: - - type: Transform - pos: -21.5,50.5 - parent: 1 - - uid: 11572 - components: - - type: Transform - pos: -20.5,50.5 - parent: 1 - - uid: 11574 - components: - - type: Transform - pos: -42.5,44.5 - parent: 1 - - uid: 11575 - components: - - type: Transform - pos: -43.5,44.5 - parent: 1 - - uid: 11576 - components: - - type: Transform - pos: -43.5,45.5 - parent: 1 - - uid: 11577 - components: - - type: Transform - pos: -43.5,46.5 - parent: 1 - - uid: 11578 - components: - - type: Transform - pos: -43.5,47.5 - parent: 1 - - uid: 11579 - components: - - type: Transform - pos: -43.5,48.5 - parent: 1 - - uid: 11580 - components: - - type: Transform - pos: -43.5,49.5 - parent: 1 - - uid: 11581 - components: - - type: Transform - pos: -43.5,50.5 - parent: 1 - - uid: 11582 - components: - - type: Transform - pos: -43.5,51.5 - parent: 1 - - uid: 11583 - components: - - type: Transform - pos: -41.5,51.5 - parent: 1 - - uid: 11584 - components: - - type: Transform - pos: -42.5,51.5 - parent: 1 - - uid: 11585 - components: - - type: Transform - pos: -40.5,51.5 - parent: 1 - - uid: 11586 - components: - - type: Transform - pos: -40.5,52.5 - parent: 1 - - uid: 11587 - components: - - type: Transform - pos: -39.5,52.5 - parent: 1 - - uid: 11588 - components: - - type: Transform - pos: -38.5,52.5 - parent: 1 - - uid: 11589 - components: - - type: Transform - pos: -37.5,52.5 - parent: 1 - - uid: 11590 - components: - - type: Transform - pos: -36.5,52.5 - parent: 1 - - uid: 11591 - components: - - type: Transform - pos: -35.5,52.5 - parent: 1 - - uid: 11592 - components: - - type: Transform - pos: -34.5,52.5 - parent: 1 - - uid: 11593 - components: - - type: Transform - pos: -33.5,52.5 - parent: 1 - - uid: 11594 - components: - - type: Transform - pos: -32.5,52.5 - parent: 1 - - uid: 11595 - components: - - type: Transform - pos: -31.5,52.5 - parent: 1 - - uid: 11596 - components: - - type: Transform - pos: -30.5,52.5 - parent: 1 - - uid: 11597 - components: - - type: Transform - pos: -29.5,52.5 - parent: 1 - - uid: 11598 - components: - - type: Transform - pos: -28.5,52.5 - parent: 1 - - uid: 11599 - components: - - type: Transform - pos: -27.5,52.5 - parent: 1 - - uid: 11600 - components: - - type: Transform - pos: -27.5,53.5 - parent: 1 - - uid: 11601 - components: - - type: Transform - pos: -27.5,54.5 - parent: 1 - - uid: 11602 - components: - - type: Transform - pos: -27.5,55.5 - parent: 1 - - uid: 11603 - components: - - type: Transform - pos: -27.5,56.5 - parent: 1 - - uid: 11604 - components: - - type: Transform - pos: -27.5,57.5 - parent: 1 - - uid: 11605 - components: - - type: Transform - pos: -30.5,57.5 - parent: 1 - - uid: 11606 - components: - - type: Transform - pos: -30.5,56.5 - parent: 1 - - uid: 11607 - components: - - type: Transform - pos: -29.5,56.5 - parent: 1 - - uid: 11608 - components: - - type: Transform - pos: -26.5,57.5 - parent: 1 - - uid: 11609 - components: - - type: Transform - pos: -25.5,57.5 - parent: 1 - - uid: 11839 - components: - - type: Transform - pos: -21.5,49.5 - parent: 1 - - uid: 11840 - components: - - type: Transform - pos: -21.5,48.5 - parent: 1 - - uid: 11841 - components: - - type: Transform - pos: -20.5,48.5 - parent: 1 - - uid: 11842 - components: - - type: Transform - pos: -19.5,48.5 - parent: 1 - - uid: 11843 - components: - - type: Transform - pos: -19.5,49.5 - parent: 1 - - uid: 11844 - components: - - type: Transform - pos: -19.5,50.5 - parent: 1 - - uid: 11845 - components: - - type: Transform - pos: -18.5,50.5 - parent: 1 - - uid: 11846 - components: - - type: Transform - pos: -17.5,50.5 - parent: 1 - - uid: 11847 - components: - - type: Transform - pos: -16.5,50.5 - parent: 1 - - uid: 11848 - components: - - type: Transform - pos: -16.5,51.5 - parent: 1 - - uid: 11849 - components: - - type: Transform - pos: -16.5,52.5 - parent: 1 - - uid: 11850 - components: - - type: Transform - pos: -16.5,53.5 - parent: 1 - - uid: 11851 - components: - - type: Transform - pos: -16.5,54.5 - parent: 1 - - uid: 11852 - components: - - type: Transform - pos: -16.5,55.5 - parent: 1 - - uid: 11853 - components: - - type: Transform - pos: -16.5,56.5 - parent: 1 - - uid: 11854 - components: - - type: Transform - pos: -15.5,56.5 - parent: 1 - - uid: 11855 - components: - - type: Transform - pos: -14.5,56.5 - parent: 1 - - uid: 11856 - components: - - type: Transform - pos: -13.5,56.5 - parent: 1 - - uid: 11857 - components: - - type: Transform - pos: -12.5,56.5 - parent: 1 - - uid: 11858 - components: - - type: Transform - pos: -11.5,56.5 - parent: 1 - - uid: 11859 - components: - - type: Transform - pos: -10.5,56.5 - parent: 1 - - uid: 11860 - components: - - type: Transform - pos: -9.5,56.5 - parent: 1 - - uid: 11861 - components: - - type: Transform - pos: -8.5,56.5 - parent: 1 - - uid: 11863 - components: - - type: Transform - pos: -7.5,56.5 - parent: 1 - - uid: 12020 - components: - - type: Transform - pos: -28.5,56.5 - parent: 1 - - uid: 12028 - components: - - type: Transform - pos: -21.5,30.5 - parent: 1 - - uid: 12029 - components: - - type: Transform - pos: -20.5,30.5 - parent: 1 - - uid: 12030 - components: - - type: Transform - pos: -20.5,31.5 - parent: 1 - - uid: 12031 - components: - - type: Transform - pos: -20.5,29.5 - parent: 1 - - uid: 12032 - components: - - type: Transform - pos: -20.5,28.5 - parent: 1 - - uid: 12033 - components: - - type: Transform - pos: -20.5,27.5 - parent: 1 - - uid: 12034 - components: - - type: Transform - pos: -20.5,26.5 - parent: 1 - - uid: 12035 - components: - - type: Transform - pos: -20.5,25.5 - parent: 1 - - uid: 12036 - components: - - type: Transform - pos: -19.5,25.5 - parent: 1 - - uid: 12037 - components: - - type: Transform - pos: -18.5,25.5 - parent: 1 - - uid: 12038 - components: - - type: Transform - pos: -17.5,25.5 - parent: 1 - - uid: 12039 - components: - - type: Transform - pos: -17.5,26.5 - parent: 1 - - uid: 12040 - components: - - type: Transform - pos: -16.5,25.5 - parent: 1 - - uid: 12041 - components: - - type: Transform - pos: -15.5,25.5 - parent: 1 - - uid: 12042 - components: - - type: Transform - pos: -14.5,25.5 - parent: 1 - - uid: 12043 - components: - - type: Transform - pos: -13.5,25.5 - parent: 1 - - uid: 12044 - components: - - type: Transform - pos: -12.5,25.5 - parent: 1 - - uid: 12045 - components: - - type: Transform - pos: -11.5,25.5 - parent: 1 - - uid: 12046 - components: - - type: Transform - pos: -10.5,25.5 - parent: 1 - - uid: 12047 - components: - - type: Transform - pos: -10.5,24.5 - parent: 1 - - uid: 12048 - components: - - type: Transform - pos: -10.5,23.5 - parent: 1 - - uid: 12049 - components: - - type: Transform - pos: -9.5,23.5 - parent: 1 - - uid: 12050 - components: - - type: Transform - pos: -8.5,23.5 - parent: 1 - - uid: 12051 - components: - - type: Transform - pos: -10.5,26.5 - parent: 1 - - uid: 12052 - components: - - type: Transform - pos: -10.5,27.5 - parent: 1 - - uid: 12053 - components: - - type: Transform - pos: -10.5,28.5 - parent: 1 - - uid: 12054 - components: - - type: Transform - pos: -10.5,29.5 - parent: 1 - - uid: 12055 - components: - - type: Transform - pos: -10.5,30.5 - parent: 1 - - uid: 12056 - components: - - type: Transform - pos: -10.5,31.5 - parent: 1 - - uid: 12057 - components: - - type: Transform - pos: -10.5,32.5 - parent: 1 - - uid: 12058 - components: - - type: Transform - pos: -11.5,32.5 - parent: 1 - - uid: 12059 - components: - - type: Transform - pos: -12.5,32.5 - parent: 1 - - uid: 12236 - components: - - type: Transform - pos: -21.5,27.5 - parent: 1 - - uid: 12237 - components: - - type: Transform - pos: -22.5,27.5 - parent: 1 - - uid: 12238 - components: - - type: Transform - pos: -23.5,27.5 - parent: 1 - - uid: 12239 - components: - - type: Transform - pos: -23.5,28.5 - parent: 1 - - uid: 12240 - components: - - type: Transform - pos: -23.5,29.5 - parent: 1 - - uid: 12241 - components: - - type: Transform - pos: -23.5,30.5 - parent: 1 - - uid: 12242 - components: - - type: Transform - pos: -23.5,31.5 - parent: 1 - - uid: 12243 - components: - - type: Transform - pos: -23.5,32.5 - parent: 1 - - uid: 12244 - components: - - type: Transform - pos: -24.5,32.5 - parent: 1 - - uid: 12245 - components: - - type: Transform - pos: -25.5,32.5 - parent: 1 - - uid: 12290 - components: - - type: Transform - pos: -23.5,33.5 - parent: 1 - - uid: 12291 - components: - - type: Transform - pos: -23.5,34.5 - parent: 1 - - uid: 12292 - components: - - type: Transform - pos: -23.5,35.5 - parent: 1 - - uid: 12293 - components: - - type: Transform - pos: -23.5,36.5 - parent: 1 - - uid: 12295 - components: - - type: Transform - pos: -25.5,36.5 - parent: 1 - - uid: 12296 - components: - - type: Transform - pos: -26.5,36.5 - parent: 1 - - uid: 12297 - components: - - type: Transform - pos: -27.5,36.5 - parent: 1 - - uid: 12298 - components: - - type: Transform - pos: -28.5,36.5 - parent: 1 - - uid: 12299 - components: - - type: Transform - pos: -29.5,36.5 - parent: 1 - - uid: 12300 - components: - - type: Transform - pos: -30.5,36.5 - parent: 1 - - uid: 12301 - components: - - type: Transform - pos: -31.5,36.5 - parent: 1 - - uid: 12302 - components: - - type: Transform - pos: -32.5,36.5 - parent: 1 - - uid: 12303 - components: - - type: Transform - pos: -33.5,36.5 - parent: 1 - - uid: 12304 - components: - - type: Transform - pos: -34.5,36.5 - parent: 1 - - uid: 12305 - components: - - type: Transform - pos: -35.5,36.5 - parent: 1 - - uid: 12306 - components: - - type: Transform - pos: -36.5,36.5 - parent: 1 - - uid: 12307 - components: - - type: Transform - pos: -37.5,36.5 - parent: 1 - - uid: 12308 - components: - - type: Transform - pos: -38.5,36.5 - parent: 1 - - uid: 12309 - components: - - type: Transform - pos: -38.5,35.5 - parent: 1 - - uid: 12310 - components: - - type: Transform - pos: -38.5,34.5 - parent: 1 - - uid: 12311 - components: - - type: Transform - pos: -38.5,33.5 - parent: 1 - - uid: 12312 - components: - - type: Transform - pos: -37.5,33.5 - parent: 1 - - uid: 12313 - components: - - type: Transform - pos: -36.5,33.5 - parent: 1 - - uid: 12314 - components: - - type: Transform - pos: -35.5,33.5 - parent: 1 - - uid: 12315 - components: - - type: Transform - pos: -34.5,33.5 - parent: 1 - - uid: 12316 - components: - - type: Transform - pos: -34.5,32.5 - parent: 1 - - uid: 12317 - components: - - type: Transform - pos: -34.5,31.5 - parent: 1 - - uid: 12318 - components: - - type: Transform - pos: -34.5,30.5 - parent: 1 - - uid: 12319 - components: - - type: Transform - pos: -34.5,29.5 - parent: 1 - - uid: 12320 - components: - - type: Transform - pos: -34.5,28.5 - parent: 1 - - uid: 12321 - components: - - type: Transform - pos: -34.5,27.5 - parent: 1 - - uid: 12322 - components: - - type: Transform - pos: -34.5,26.5 - parent: 1 - - uid: 12323 - components: - - type: Transform - pos: -34.5,25.5 - parent: 1 - - uid: 12324 - components: - - type: Transform - pos: -35.5,25.5 - parent: 1 - - uid: 12409 - components: - - type: Transform - pos: 20.5,54.5 - parent: 1 - - uid: 12410 - components: - - type: Transform - pos: 20.5,53.5 - parent: 1 - - uid: 12411 - components: - - type: Transform - pos: 20.5,52.5 - parent: 1 - - uid: 12412 - components: - - type: Transform - pos: 19.5,52.5 - parent: 1 - - uid: 12413 - components: - - type: Transform - pos: 18.5,52.5 - parent: 1 - - uid: 12414 - components: - - type: Transform - pos: 17.5,52.5 - parent: 1 - - uid: 12415 - components: - - type: Transform - pos: 16.5,52.5 - parent: 1 - - uid: 12416 - components: - - type: Transform - pos: 16.5,53.5 - parent: 1 - - uid: 12417 - components: - - type: Transform - pos: 16.5,54.5 - parent: 1 - - uid: 12418 - components: - - type: Transform - pos: 16.5,55.5 - parent: 1 - - uid: 12419 - components: - - type: Transform - pos: 16.5,56.5 - parent: 1 - - uid: 12420 - components: - - type: Transform - pos: 17.5,56.5 - parent: 1 - - uid: 12421 - components: - - type: Transform - pos: 18.5,56.5 - parent: 1 - - uid: 12422 - components: - - type: Transform - pos: 19.5,56.5 - parent: 1 - - uid: 12423 - components: - - type: Transform - pos: 19.5,57.5 - parent: 1 - - uid: 12424 - components: - - type: Transform - pos: 19.5,58.5 - parent: 1 - - uid: 12425 - components: - - type: Transform - pos: 18.5,58.5 - parent: 1 - - uid: 12426 - components: - - type: Transform - pos: 18.5,59.5 - parent: 1 - - uid: 12427 - components: - - type: Transform - pos: 18.5,60.5 - parent: 1 - - uid: 12428 - components: - - type: Transform - pos: 18.5,61.5 - parent: 1 - - uid: 12429 - components: - - type: Transform - pos: 18.5,62.5 - parent: 1 - - uid: 12430 - components: - - type: Transform - pos: 18.5,63.5 - parent: 1 - - uid: 12431 - components: - - type: Transform - pos: 17.5,63.5 - parent: 1 - - uid: 12432 - components: - - type: Transform - pos: 16.5,63.5 - parent: 1 - - uid: 12433 - components: - - type: Transform - pos: 15.5,63.5 - parent: 1 - - uid: 12434 - components: - - type: Transform - pos: 14.5,63.5 - parent: 1 - - uid: 12435 - components: - - type: Transform - pos: 13.5,63.5 - parent: 1 - - uid: 12436 - components: - - type: Transform - pos: 12.5,63.5 - parent: 1 - - uid: 12437 - components: - - type: Transform - pos: 11.5,63.5 - parent: 1 - - uid: 12438 - components: - - type: Transform - pos: 10.5,63.5 - parent: 1 - - uid: 12439 - components: - - type: Transform - pos: 10.5,62.5 - parent: 1 - - uid: 12440 - components: - - type: Transform - pos: 16.5,51.5 - parent: 1 - - uid: 12441 - components: - - type: Transform - pos: 16.5,50.5 - parent: 1 - - uid: 12442 - components: - - type: Transform - pos: 16.5,49.5 - parent: 1 - - uid: 12443 - components: - - type: Transform - pos: 17.5,49.5 - parent: 1 - - uid: 12444 - components: - - type: Transform - pos: 18.5,49.5 - parent: 1 - - uid: 12445 - components: - - type: Transform - pos: 19.5,49.5 - parent: 1 - - uid: 12446 - components: - - type: Transform - pos: 20.5,49.5 - parent: 1 - - uid: 12447 - components: - - type: Transform - pos: 21.5,49.5 - parent: 1 - - uid: 12448 - components: - - type: Transform - pos: 22.5,49.5 - parent: 1 - - uid: 12449 - components: - - type: Transform - pos: 22.5,48.5 - parent: 1 - - uid: 12450 - components: - - type: Transform - pos: 22.5,47.5 - parent: 1 - - uid: 12451 - components: - - type: Transform - pos: 22.5,46.5 - parent: 1 - - uid: 12452 - components: - - type: Transform - pos: 22.5,45.5 - parent: 1 - - uid: 12453 - components: - - type: Transform - pos: 23.5,45.5 - parent: 1 - - uid: 12454 - components: - - type: Transform - pos: 24.5,45.5 - parent: 1 - - uid: 12455 - components: - - type: Transform - pos: 25.5,45.5 - parent: 1 - - uid: 12456 - components: - - type: Transform - pos: 25.5,44.5 - parent: 1 - - uid: 12457 - components: - - type: Transform - pos: 25.5,43.5 - parent: 1 - - uid: 12458 - components: - - type: Transform - pos: 25.5,42.5 - parent: 1 - - uid: 12459 - components: - - type: Transform - pos: 24.5,42.5 - parent: 1 - - uid: 12461 - components: - - type: Transform - pos: 6.5,46.5 - parent: 1 - - uid: 12462 - components: - - type: Transform - pos: 5.5,46.5 - parent: 1 - - uid: 12463 - components: - - type: Transform - pos: 4.5,46.5 - parent: 1 - - uid: 12464 - components: - - type: Transform - pos: 3.5,46.5 - parent: 1 - - uid: 12465 - components: - - type: Transform - pos: 2.5,46.5 - parent: 1 - - uid: 12466 - components: - - type: Transform - pos: 1.5,46.5 - parent: 1 - - uid: 12467 - components: - - type: Transform - pos: 0.5,46.5 - parent: 1 - - uid: 12468 - components: - - type: Transform - pos: 0.5,47.5 - parent: 1 - - uid: 12469 - components: - - type: Transform - pos: 0.5,48.5 - parent: 1 - - uid: 12470 - components: - - type: Transform - pos: 0.5,49.5 - parent: 1 - - uid: 12471 - components: - - type: Transform - pos: 0.5,50.5 - parent: 1 - - uid: 12472 - components: - - type: Transform - pos: 0.5,51.5 - parent: 1 - - uid: 12473 - components: - - type: Transform - pos: 0.5,52.5 - parent: 1 - - uid: 12474 - components: - - type: Transform - pos: 0.5,53.5 - parent: 1 - - uid: 12475 - components: - - type: Transform - pos: 1.5,53.5 - parent: 1 - - uid: 12476 - components: - - type: Transform - pos: 2.5,53.5 - parent: 1 - - uid: 12477 - components: - - type: Transform - pos: 3.5,53.5 - parent: 1 - - uid: 12478 - components: - - type: Transform - pos: 4.5,53.5 - parent: 1 - - uid: 12479 - components: - - type: Transform - pos: 5.5,53.5 - parent: 1 - - uid: 12480 - components: - - type: Transform - pos: 6.5,53.5 - parent: 1 - - uid: 12481 - components: - - type: Transform - pos: 7.5,53.5 - parent: 1 - - uid: 12482 - components: - - type: Transform - pos: 8.5,53.5 - parent: 1 - - uid: 12483 - components: - - type: Transform - pos: 9.5,53.5 - parent: 1 - - uid: 12484 - components: - - type: Transform - pos: 10.5,53.5 - parent: 1 - - uid: 12485 - components: - - type: Transform - pos: 11.5,53.5 - parent: 1 - - uid: 12486 - components: - - type: Transform - pos: 12.5,53.5 - parent: 1 - - uid: 12487 - components: - - type: Transform - pos: 13.5,53.5 - parent: 1 - - uid: 12488 - components: - - type: Transform - pos: 14.5,53.5 - parent: 1 - - uid: 12489 - components: - - type: Transform - pos: 5.5,47.5 - parent: 1 - - uid: 12490 - components: - - type: Transform - pos: 5.5,48.5 - parent: 1 - - uid: 12491 - components: - - type: Transform - pos: 5.5,49.5 - parent: 1 - - uid: 12492 - components: - - type: Transform - pos: 14.5,54.5 - parent: 1 - - uid: 12493 - components: - - type: Transform - pos: 14.5,55.5 - parent: 1 - - uid: 12494 - components: - - type: Transform - pos: 14.5,56.5 - parent: 1 - - uid: 12495 - components: - - type: Transform - pos: 14.5,57.5 - parent: 1 - - uid: 12496 - components: - - type: Transform - pos: 14.5,58.5 - parent: 1 - - uid: 12497 - components: - - type: Transform - pos: 15.5,58.5 - parent: 1 - - uid: 12498 - components: - - type: Transform - pos: 16.5,58.5 - parent: 1 - - uid: 12499 - components: - - type: Transform - pos: 17.5,58.5 - parent: 1 - - uid: 12500 - components: - - type: Transform - pos: 20.5,56.5 - parent: 1 - - uid: 12501 - components: - - type: Transform - pos: 21.5,56.5 - parent: 1 - - uid: 12502 - components: - - type: Transform - pos: 22.5,56.5 - parent: 1 - - uid: 12503 - components: - - type: Transform - pos: 22.5,57.5 - parent: 1 - - uid: 12504 - components: - - type: Transform - pos: 23.5,57.5 - parent: 1 - - uid: 12505 - components: - - type: Transform - pos: 24.5,57.5 - parent: 1 - - uid: 12506 - components: - - type: Transform - pos: 25.5,57.5 - parent: 1 - - uid: 12507 - components: - - type: Transform - pos: 26.5,57.5 - parent: 1 - - uid: 12508 - components: - - type: Transform - pos: 27.5,57.5 - parent: 1 - - uid: 12509 - components: - - type: Transform - pos: 28.5,57.5 - parent: 1 - - uid: 12510 - components: - - type: Transform - pos: 28.5,56.5 - parent: 1 - - uid: 12511 - components: - - type: Transform - pos: 28.5,55.5 - parent: 1 - - uid: 12512 - components: - - type: Transform - pos: 28.5,54.5 - parent: 1 - - uid: 12513 - components: - - type: Transform - pos: 28.5,53.5 - parent: 1 - - uid: 12514 - components: - - type: Transform - pos: 28.5,52.5 - parent: 1 - - uid: 12515 - components: - - type: Transform - pos: 28.5,51.5 - parent: 1 - - uid: 12516 - components: - - type: Transform - pos: 27.5,51.5 - parent: 1 - - uid: 12517 - components: - - type: Transform - pos: 29.5,52.5 - parent: 1 - - uid: 12518 - components: - - type: Transform - pos: 29.5,51.5 - parent: 1 - - uid: 12519 - components: - - type: Transform - pos: 30.5,51.5 - parent: 1 - - uid: 12520 - components: - - type: Transform - pos: 31.5,51.5 - parent: 1 - - uid: 12521 - components: - - type: Transform - pos: 32.5,51.5 - parent: 1 - - uid: 12522 - components: - - type: Transform - pos: 33.5,51.5 - parent: 1 - - uid: 12523 - components: - - type: Transform - pos: 34.5,51.5 - parent: 1 - - uid: 12524 - components: - - type: Transform - pos: 35.5,51.5 - parent: 1 - - uid: 12525 - components: - - type: Transform - pos: 36.5,51.5 - parent: 1 - - uid: 12526 - components: - - type: Transform - pos: 36.5,50.5 - parent: 1 - - uid: 12527 - components: - - type: Transform - pos: 36.5,49.5 - parent: 1 - - uid: 12528 - components: - - type: Transform - pos: 36.5,48.5 - parent: 1 - - uid: 12529 - components: - - type: Transform - pos: 36.5,47.5 - parent: 1 - - uid: 12530 - components: - - type: Transform - pos: 36.5,46.5 - parent: 1 - - uid: 12531 - components: - - type: Transform - pos: 36.5,45.5 - parent: 1 - - uid: 12532 - components: - - type: Transform - pos: 36.5,44.5 - parent: 1 - - uid: 12533 - components: - - type: Transform - pos: 36.5,43.5 - parent: 1 - - uid: 12534 - components: - - type: Transform - pos: 36.5,42.5 - parent: 1 - - uid: 12535 - components: - - type: Transform - pos: 36.5,41.5 - parent: 1 - - uid: 12536 - components: - - type: Transform - pos: 36.5,40.5 - parent: 1 - - uid: 12537 - components: - - type: Transform - pos: 37.5,40.5 - parent: 1 - - uid: 12538 - components: - - type: Transform - pos: 38.5,40.5 - parent: 1 - - uid: 12539 - components: - - type: Transform - pos: 39.5,40.5 - parent: 1 - - uid: 12540 - components: - - type: Transform - pos: 40.5,40.5 - parent: 1 - - uid: 12541 - components: - - type: Transform - pos: 41.5,40.5 - parent: 1 - - uid: 12542 - components: - - type: Transform - pos: 41.5,41.5 - parent: 1 - - uid: 12866 - components: - - type: Transform - pos: 16.5,25.5 - parent: 1 - - uid: 12867 - components: - - type: Transform - pos: 15.5,25.5 - parent: 1 - - uid: 12868 - components: - - type: Transform - pos: 14.5,25.5 - parent: 1 - - uid: 12869 - components: - - type: Transform - pos: 14.5,24.5 - parent: 1 - - uid: 12870 - components: - - type: Transform - pos: 14.5,23.5 - parent: 1 - - uid: 12871 - components: - - type: Transform - pos: 14.5,22.5 - parent: 1 - - uid: 12872 - components: - - type: Transform - pos: 15.5,22.5 - parent: 1 - - uid: 12873 - components: - - type: Transform - pos: 16.5,22.5 - parent: 1 - - uid: 12874 - components: - - type: Transform - pos: 17.5,22.5 - parent: 1 - - uid: 12875 - components: - - type: Transform - pos: 18.5,22.5 - parent: 1 - - uid: 12876 - components: - - type: Transform - pos: 19.5,22.5 - parent: 1 - - uid: 12877 - components: - - type: Transform - pos: 19.5,21.5 - parent: 1 - - uid: 12878 - components: - - type: Transform - pos: 19.5,20.5 - parent: 1 - - uid: 12879 - components: - - type: Transform - pos: 19.5,19.5 - parent: 1 - - uid: 12880 - components: - - type: Transform - pos: 18.5,19.5 - parent: 1 - - uid: 12881 - components: - - type: Transform - pos: 17.5,19.5 - parent: 1 - - uid: 12882 - components: - - type: Transform - pos: 19.5,23.5 - parent: 1 - - uid: 12883 - components: - - type: Transform - pos: 19.5,24.5 - parent: 1 - - uid: 12884 - components: - - type: Transform - pos: 20.5,24.5 - parent: 1 - - uid: 12885 - components: - - type: Transform - pos: 21.5,24.5 - parent: 1 - - uid: 12886 - components: - - type: Transform - pos: 22.5,24.5 - parent: 1 - - uid: 12887 - components: - - type: Transform - pos: 23.5,24.5 - parent: 1 - - uid: 12888 - components: - - type: Transform - pos: 24.5,24.5 - parent: 1 - - uid: 12889 - components: - - type: Transform - pos: 24.5,23.5 - parent: 1 - - uid: 12890 - components: - - type: Transform - pos: 24.5,25.5 - parent: 1 - - uid: 12891 - components: - - type: Transform - pos: 24.5,26.5 - parent: 1 - - uid: 12892 - components: - - type: Transform - pos: 24.5,27.5 - parent: 1 - - uid: 12893 - components: - - type: Transform - pos: 23.5,27.5 - parent: 1 - - uid: 12894 - components: - - type: Transform - pos: 22.5,27.5 - parent: 1 - - uid: 12895 - components: - - type: Transform - pos: 21.5,27.5 - parent: 1 - - uid: 12896 - components: - - type: Transform - pos: 20.5,27.5 - parent: 1 - - uid: 12897 - components: - - type: Transform - pos: 20.5,28.5 - parent: 1 - - uid: 12898 - components: - - type: Transform - pos: 20.5,29.5 - parent: 1 - - uid: 12899 - components: - - type: Transform - pos: 20.5,30.5 - parent: 1 - - uid: 12902 - components: - - type: Transform - pos: 17.5,28.5 - parent: 1 - - uid: 12903 - components: - - type: Transform - pos: 16.5,28.5 - parent: 1 - - uid: 12904 - components: - - type: Transform - pos: 15.5,28.5 - parent: 1 - - uid: 12905 - components: - - type: Transform - pos: 14.5,28.5 - parent: 1 - - uid: 12906 - components: - - type: Transform - pos: 13.5,28.5 - parent: 1 - - uid: 12907 - components: - - type: Transform - pos: 12.5,28.5 - parent: 1 - - uid: 12908 - components: - - type: Transform - pos: 11.5,28.5 - parent: 1 - - uid: 12909 - components: - - type: Transform - pos: 10.5,28.5 - parent: 1 - - uid: 12910 - components: - - type: Transform - pos: 9.5,28.5 - parent: 1 - - uid: 12911 - components: - - type: Transform - pos: 8.5,28.5 - parent: 1 - - uid: 12912 - components: - - type: Transform - pos: 7.5,28.5 - parent: 1 - - uid: 12913 - components: - - type: Transform - pos: 6.5,28.5 - parent: 1 - - uid: 12914 - components: - - type: Transform - pos: 6.5,27.5 - parent: 1 - - uid: 12915 - components: - - type: Transform - pos: 6.5,26.5 - parent: 1 - - uid: 12916 - components: - - type: Transform - pos: 5.5,26.5 - parent: 1 - - uid: 12917 - components: - - type: Transform - pos: 15.5,21.5 - parent: 1 - - uid: 12918 - components: - - type: Transform - pos: 10.5,29.5 - parent: 1 - - uid: 12919 - components: - - type: Transform - pos: 10.5,30.5 - parent: 1 - - uid: 12920 - components: - - type: Transform - pos: 10.5,31.5 - parent: 1 - - uid: 12921 - components: - - type: Transform - pos: 9.5,31.5 - parent: 1 - - uid: 12922 - components: - - type: Transform - pos: 8.5,31.5 - parent: 1 - - uid: 13491 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 1 - - uid: 13497 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 1 - - uid: 13498 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 1 - - uid: 13499 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 1 - - uid: 13500 - components: - - type: Transform - pos: -24.5,-2.5 - parent: 1 - - uid: 13501 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 1 - - uid: 13502 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 1 - - uid: 13503 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1 - - uid: 13504 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 1 - - uid: 13505 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 1 - - uid: 13506 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 1 - - uid: 13507 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 1 - - uid: 13508 - components: - - type: Transform - pos: -19.5,0.5 - parent: 1 - - uid: 13509 - components: - - type: Transform - pos: -19.5,1.5 - parent: 1 - - uid: 13510 - components: - - type: Transform - pos: -19.5,2.5 - parent: 1 - - uid: 13511 - components: - - type: Transform - pos: -19.5,3.5 - parent: 1 - - uid: 13512 - components: - - type: Transform - pos: -19.5,4.5 - parent: 1 - - uid: 13513 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1 - - uid: 13514 - components: - - type: Transform - pos: -19.5,6.5 - parent: 1 - - uid: 13515 - components: - - type: Transform - pos: -19.5,7.5 - parent: 1 - - uid: 13516 - components: - - type: Transform - pos: -20.5,7.5 - parent: 1 - - uid: 13517 - components: - - type: Transform - pos: -21.5,7.5 - parent: 1 - - uid: 13518 - components: - - type: Transform - pos: -21.5,8.5 - parent: 1 - - uid: 13519 - components: - - type: Transform - pos: -18.5,-0.5 - parent: 1 - - uid: 13520 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 1 - - uid: 13521 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 1 - - uid: 13522 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 1 - - uid: 13523 - components: - - type: Transform - pos: -15.5,0.5 - parent: 1 - - uid: 13524 - components: - - type: Transform - pos: -14.5,0.5 - parent: 1 - - uid: 13525 - components: - - type: Transform - pos: -13.5,0.5 - parent: 1 - - uid: 13526 - components: - - type: Transform - pos: -12.5,0.5 - parent: 1 - - uid: 13527 - components: - - type: Transform - pos: -11.5,0.5 - parent: 1 - - uid: 13528 - components: - - type: Transform - pos: -11.5,1.5 - parent: 1 - - uid: 13529 - components: - - type: Transform - pos: -11.5,2.5 - parent: 1 - - uid: 13530 - components: - - type: Transform - pos: -11.5,3.5 - parent: 1 - - uid: 13531 - components: - - type: Transform - pos: -11.5,4.5 - parent: 1 - - uid: 13532 - components: - - type: Transform - pos: -11.5,5.5 - parent: 1 - - uid: 13533 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 1 - - uid: 14379 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 1 - - uid: 17238 - components: - - type: Transform - pos: 18.5,28.5 - parent: 1 - - uid: 17239 - components: - - type: Transform - pos: 19.5,28.5 - parent: 1 - - uid: 18340 - components: - - type: Transform - pos: -9.5,74.5 - parent: 1 - - uid: 18341 - components: - - type: Transform - pos: -9.5,73.5 - parent: 1 - - uid: 18342 - components: - - type: Transform - pos: -9.5,72.5 - parent: 1 - - uid: 18343 - components: - - type: Transform - pos: -9.5,75.5 - parent: 1 - - uid: 18451 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 1 - - uid: 18452 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 1 - - uid: 18453 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 1 - - uid: 18465 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 1 - - uid: 18466 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 1 - - uid: 18474 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 1 - - uid: 18475 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 1 -- proto: CableMVStack - entities: - - uid: 9125 - components: - - type: Transform - pos: 13.491544,-22.233011 - parent: 1 -- proto: CableTerminal - entities: - - uid: 4779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-30.5 - parent: 1 - - uid: 4780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-30.5 - parent: 1 - - uid: 4781 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-30.5 - parent: 1 - - uid: 4782 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-30.5 - parent: 1 - - uid: 8056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,55.5 - parent: 1 - - uid: 14043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,55.5 - parent: 1 - - uid: 18457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 1 -- proto: CandleGreenSmallInfinite - entities: - - uid: 8900 - components: - - type: Transform - pos: -29.63941,56.42083 - parent: 1 -- proto: CandleRedSmallInfinite - entities: - - uid: 4454 - components: - - type: Transform - pos: -29.780035,56.57708 - parent: 1 -- proto: CannabisSeeds - entities: - - uid: 8276 - components: - - type: Transform - pos: -38.424377,49.4277 - parent: 1 - - uid: 10966 - components: - - type: Transform - pos: 36.56873,-16.396769 - parent: 1 -- proto: CapacitorStockPart - entities: - - uid: 6544 - components: - - type: Transform - pos: 22.399736,-23.44135 - parent: 1 - - uid: 13453 - components: - - type: Transform - pos: -46.782776,46.69757 - parent: 1 -- proto: CarbonDioxideCanister - entities: - - uid: 3028 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3044 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: Carpet - entities: - - uid: 614 - components: - - type: Transform - pos: -24.5,7.5 - parent: 1 - - uid: 667 - components: - - type: Transform - pos: -25.5,8.5 - parent: 1 - - uid: 774 - components: - - type: Transform - pos: -24.5,5.5 - parent: 1 - - uid: 779 - components: - - type: Transform - pos: -25.5,5.5 - parent: 1 - - uid: 780 - components: - - type: Transform - pos: -25.5,6.5 - parent: 1 - - uid: 781 - components: - - type: Transform - pos: -25.5,7.5 - parent: 1 - - uid: 5786 - components: - - type: Transform - pos: -23.5,5.5 - parent: 1 - - uid: 6687 - components: - - type: Transform - pos: -22.5,7.5 - parent: 1 - - uid: 6702 - components: - - type: Transform - pos: -22.5,8.5 - parent: 1 - - uid: 6978 - components: - - type: Transform - pos: 10.5,58.5 - parent: 1 - - uid: 6979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,57.5 - parent: 1 - - uid: 6980 - components: - - type: Transform - pos: 10.5,56.5 - parent: 1 - - uid: 6981 - components: - - type: Transform - pos: 11.5,58.5 - parent: 1 - - uid: 6982 - components: - - type: Transform - pos: 11.5,57.5 - parent: 1 - - uid: 6983 - components: - - type: Transform - pos: 11.5,56.5 - parent: 1 - - uid: 6986 - components: - - type: Transform - pos: 9.5,58.5 - parent: 1 - - uid: 6987 - components: - - type: Transform - pos: 12.5,58.5 - parent: 1 - - uid: 6988 - components: - - type: Transform - pos: 10.5,60.5 - parent: 1 - - uid: 6989 - components: - - type: Transform - pos: 11.5,60.5 - parent: 1 - - uid: 6990 - components: - - type: Transform - pos: 11.5,61.5 - parent: 1 - - uid: 6991 - components: - - type: Transform - pos: 10.5,61.5 - parent: 1 - - uid: 7147 - components: - - type: Transform - pos: -23.5,6.5 - parent: 1 - - uid: 7915 - components: - - type: Transform - pos: -24.5,6.5 - parent: 1 - - uid: 8168 - components: - - type: Transform - pos: -24.5,8.5 - parent: 1 - - uid: 8249 - components: - - type: Transform - pos: -23.5,7.5 - parent: 1 - - uid: 8593 - components: - - type: Transform - pos: -22.5,6.5 - parent: 1 - - uid: 8930 - components: - - type: Transform - pos: -28.5,57.5 - parent: 1 - - uid: 8964 - components: - - type: Transform - pos: -11.5,3.5 - parent: 1 - - uid: 8965 - components: - - type: Transform - pos: -11.5,2.5 - parent: 1 - - uid: 8966 - components: - - type: Transform - pos: -11.5,1.5 - parent: 1 - - uid: 8967 - components: - - type: Transform - pos: -10.5,1.5 - parent: 1 - - uid: 8968 - components: - - type: Transform - pos: -10.5,2.5 - parent: 1 - - uid: 8969 - components: - - type: Transform - pos: -10.5,3.5 - parent: 1 - - uid: 8970 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 1 - - uid: 8971 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 1 - - uid: 8972 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 1 - - uid: 8973 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 1 - - uid: 8974 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 1 - - uid: 8975 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 1 - - uid: 9002 - components: - - type: Transform - pos: -22.5,5.5 - parent: 1 - - uid: 9039 - components: - - type: Transform - pos: -23.5,8.5 - parent: 1 -- proto: CarpetBlack - entities: - - uid: 8400 - components: - - type: Transform - pos: 11.5,46.5 - parent: 1 - - uid: 8401 - components: - - type: Transform - pos: 12.5,46.5 - parent: 1 - - uid: 8403 - components: - - type: Transform - pos: 12.5,45.5 - parent: 1 - - uid: 8405 - components: - - type: Transform - pos: 11.5,45.5 - parent: 1 -- proto: CarpetBlue - entities: - - uid: 8976 - components: - - type: Transform - pos: -5.5,3.5 - parent: 1 - - uid: 8977 - components: - - type: Transform - pos: -5.5,2.5 - parent: 1 - - uid: 8978 - components: - - type: Transform - pos: -5.5,1.5 - parent: 1 - - uid: 8979 - components: - - type: Transform - pos: -4.5,2.5 - parent: 1 - - uid: 8980 - components: - - type: Transform - pos: -4.5,1.5 - parent: 1 - - uid: 8981 - components: - - type: Transform - pos: -4.5,3.5 - parent: 1 -- proto: CarpetChapel - entities: - - uid: 6861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,46.5 - parent: 1 - - uid: 6862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,46.5 - parent: 1 - - uid: 6863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,45.5 - parent: 1 - - uid: 6864 - components: - - type: Transform - pos: 28.5,45.5 - parent: 1 - - uid: 6865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,46.5 - parent: 1 - - uid: 6866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,46.5 - parent: 1 - - uid: 6867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,45.5 - parent: 1 - - uid: 6868 - components: - - type: Transform - pos: 32.5,45.5 - parent: 1 - - uid: 6869 - components: - - type: Transform - pos: 28.5,43.5 - parent: 1 - - uid: 6870 - components: - - type: Transform - pos: 32.5,43.5 - parent: 1 - - uid: 6871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,44.5 - parent: 1 - - uid: 6872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,44.5 - parent: 1 - - uid: 6873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,44.5 - parent: 1 - - uid: 6874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,43.5 - parent: 1 - - uid: 6875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,44.5 - parent: 1 - - uid: 6876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,43.5 - parent: 1 - - uid: 6877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,48.5 - parent: 1 - - uid: 6878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,48.5 - parent: 1 - - uid: 6879 - components: - - type: Transform - pos: 28.5,48.5 - parent: 1 - - uid: 6880 - components: - - type: Transform - pos: 32.5,48.5 - parent: 1 - - uid: 6881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,49.5 - parent: 1 - - uid: 6882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,49.5 - parent: 1 - - uid: 6883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,49.5 - parent: 1 - - uid: 6884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,49.5 - parent: 1 -- proto: CarpetGreen - entities: - - uid: 6691 - components: - - type: Transform - pos: -28.5,6.5 - parent: 1 - - uid: 6692 - components: - - type: Transform - pos: -28.5,5.5 - parent: 1 - - uid: 6694 - components: - - type: Transform - pos: -27.5,6.5 - parent: 1 - - uid: 6695 - components: - - type: Transform - pos: -27.5,5.5 - parent: 1 -- proto: CarpetOrange - entities: - - uid: 617 - components: - - type: Transform - pos: -24.5,10.5 - parent: 1 - - uid: 618 - components: - - type: Transform - pos: -25.5,10.5 - parent: 1 - - uid: 652 - components: - - type: Transform - pos: 2.5,60.5 - parent: 1 - - uid: 6673 - components: - - type: Transform - pos: -26.5,10.5 - parent: 1 - - uid: 9349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,11.5 - parent: 1 - - uid: 9350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,10.5 - parent: 1 - - uid: 9351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,11.5 - parent: 1 - - uid: 9352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - - uid: 9380 - components: - - type: Transform - pos: 2.5,61.5 - parent: 1 - - uid: 9381 - components: - - type: Transform - pos: 3.5,60.5 - parent: 1 - - uid: 9382 - components: - - type: Transform - pos: 3.5,61.5 - parent: 1 - - uid: 9383 - components: - - type: Transform - pos: 4.5,60.5 - parent: 1 - - uid: 9384 - components: - - type: Transform - pos: 4.5,61.5 - parent: 1 -- proto: CarpetPink - entities: - - uid: 526 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 1 - - uid: 527 - components: - - type: Transform - pos: -11.5,-2.5 - parent: 1 - - uid: 528 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 1 - - uid: 529 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 1 - - uid: 530 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 1 - - uid: 3418 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 1 - - uid: 7635 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1 - - uid: 8353 - components: - - type: Transform - pos: 42.5,51.5 - parent: 1 - - uid: 8354 - components: - - type: Transform - pos: 43.5,51.5 - parent: 1 - - uid: 8355 - components: - - type: Transform - pos: 43.5,50.5 - parent: 1 - - uid: 8356 - components: - - type: Transform - pos: 42.5,50.5 - parent: 1 - - uid: 8357 - components: - - type: Transform - pos: 41.5,50.5 - parent: 1 - - uid: 8358 - components: - - type: Transform - pos: 41.5,51.5 - parent: 1 - - uid: 8394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,47.5 - parent: 1 - - uid: 8395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,47.5 - parent: 1 - - uid: 8504 - components: - - type: Transform - pos: -1.5,3.5 - parent: 1 - - uid: 8559 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1 - - uid: 8675 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1 - - uid: 8676 - components: - - type: Transform - pos: 0.5,3.5 - parent: 1 - - uid: 8681 - components: - - type: Transform - pos: -0.5,3.5 - parent: 1 - - uid: 9873 - components: - - type: Transform - pos: -36.5,-21.5 - parent: 1 - - uid: 9874 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 1 - - uid: 9875 - components: - - type: Transform - pos: -35.5,-21.5 - parent: 1 - - uid: 9876 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 1 -- proto: CarpetPurple - entities: - - uid: 8578 - components: - - type: Transform - pos: 0.5,8.5 - parent: 1 - - uid: 8581 - components: - - type: Transform - pos: 0.5,9.5 - parent: 1 - - uid: 8582 - components: - - type: Transform - pos: -1.5,8.5 - parent: 1 - - uid: 8583 - components: - - type: Transform - pos: -1.5,9.5 - parent: 1 - - uid: 8584 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 - - uid: 8632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,20.5 - parent: 1 - - uid: 8633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,19.5 - parent: 1 - - uid: 8634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,20.5 - parent: 1 - - uid: 8635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,19.5 - parent: 1 - - uid: 8636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,20.5 - parent: 1 - - uid: 8637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,19.5 - parent: 1 - - uid: 8672 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1 -- proto: CarpetSBlue - entities: - - uid: 6806 - components: - - type: Transform - pos: -5.5,72.5 - parent: 1 - - uid: 6810 - components: - - type: Transform - pos: -5.5,73.5 - parent: 1 - - uid: 6811 - components: - - type: Transform - pos: -6.5,73.5 - parent: 1 - - uid: 6812 - components: - - type: Transform - pos: -6.5,72.5 - parent: 1 - - uid: 8484 - components: - - type: Transform - pos: 15.5,32.5 - parent: 1 - - uid: 8485 - components: - - type: Transform - pos: 15.5,33.5 - parent: 1 - - uid: 8486 - components: - - type: Transform - pos: 16.5,33.5 - parent: 1 - - uid: 8487 - components: - - type: Transform - pos: 16.5,32.5 - parent: 1 - - uid: 9266 - components: - - type: Transform - pos: 26.5,8.5 - parent: 1 - - uid: 9267 - components: - - type: Transform - pos: 27.5,8.5 - parent: 1 - - uid: 9268 - components: - - type: Transform - pos: 27.5,9.5 - parent: 1 - - uid: 9269 - components: - - type: Transform - pos: 26.5,9.5 - parent: 1 -- proto: Catwalk - entities: - - uid: 749 - components: - - type: Transform - pos: -15.5,11.5 - parent: 1 - - uid: 750 - components: - - type: Transform - pos: -15.5,10.5 - parent: 1 - - uid: 751 - components: - - type: Transform - pos: -15.5,9.5 - parent: 1 - - uid: 985 - components: - - type: Transform - pos: -38.5,74.5 - parent: 1 - - uid: 1501 - components: - - type: Transform - pos: -43.5,45.5 - parent: 1 - - uid: 1618 - components: - - type: Transform - pos: -38.5,73.5 - parent: 1 - - uid: 1621 - components: - - type: Transform - pos: -38.5,52.5 - parent: 1 - - uid: 1662 - components: - - type: Transform - pos: -37.5,52.5 - parent: 1 - - uid: 1665 - components: - - type: Transform - pos: -38.5,75.5 - parent: 1 - - uid: 1785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,20.5 - parent: 1 - - uid: 1987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,21.5 - parent: 1 - - uid: 2147 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 1 - - uid: 2372 - components: - - type: Transform - pos: 7.5,-40.5 - parent: 1 - - uid: 2373 - components: - - type: Transform - pos: 7.5,-39.5 - parent: 1 - - uid: 2375 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 1 - - uid: 2376 - components: - - type: Transform - pos: 6.5,-39.5 - parent: 1 - - uid: 2811 - components: - - type: Transform - pos: 8.5,-52.5 - parent: 1 - - uid: 2836 - components: - - type: Transform - pos: 7.5,-37.5 - parent: 1 - - uid: 2995 - components: - - type: Transform - pos: -3.5,-41.5 - parent: 1 - - uid: 2996 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 1 - - uid: 2997 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 1 - - uid: 2998 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 1 - - uid: 2999 - components: - - type: Transform - pos: -3.5,-37.5 - parent: 1 - - uid: 3000 - components: - - type: Transform - pos: -3.5,-36.5 - parent: 1 - - uid: 3001 - components: - - type: Transform - pos: -3.5,-35.5 - parent: 1 - - uid: 3002 - components: - - type: Transform - pos: -3.5,-34.5 - parent: 1 - - uid: 3003 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 1 - - uid: 3004 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 1 - - uid: 3005 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 1 - - uid: 3006 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 1 - - uid: 3007 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 1 - - uid: 3008 - components: - - type: Transform - pos: -3.5,-28.5 - parent: 1 - - uid: 3009 - components: - - type: Transform - pos: -3.5,-27.5 - parent: 1 - - uid: 3010 - components: - - type: Transform - pos: -3.5,-26.5 - parent: 1 - - uid: 3011 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 1 - - uid: 3012 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 1 - - uid: 3013 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 1 - - uid: 3014 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 1 - - uid: 3015 - components: - - type: Transform - pos: -3.5,-21.5 - parent: 1 - - uid: 3016 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 1 - - uid: 3017 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 1 - - uid: 3018 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 1 - - uid: 3019 - components: - - type: Transform - pos: -3.5,-17.5 - parent: 1 - - uid: 3034 - components: - - type: Transform - pos: -9.5,-31.5 - parent: 1 - - uid: 3035 - components: - - type: Transform - pos: -5.5,-31.5 - parent: 1 - - uid: 3426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-43.5 - parent: 1 - - uid: 3427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-44.5 - parent: 1 - - uid: 3428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-45.5 - parent: 1 - - uid: 3429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-46.5 - parent: 1 - - uid: 3430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-47.5 - parent: 1 - - uid: 3431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-47.5 - parent: 1 - - uid: 3432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-47.5 - parent: 1 - - uid: 3433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-47.5 - parent: 1 - - uid: 3434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-47.5 - parent: 1 - - uid: 3435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-47.5 - parent: 1 - - uid: 3436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-47.5 - parent: 1 - - uid: 3437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-47.5 - parent: 1 - - uid: 3438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-47.5 - parent: 1 - - uid: 3439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-47.5 - parent: 1 - - uid: 3440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-47.5 - parent: 1 - - uid: 3441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-48.5 - parent: 1 - - uid: 3442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-49.5 - parent: 1 - - uid: 3448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-49.5 - parent: 1 - - uid: 3449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-48.5 - parent: 1 - - uid: 3450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-47.5 - parent: 1 - - uid: 3451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-48.5 - parent: 1 - - uid: 3452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-47.5 - parent: 1 - - uid: 3453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-47.5 - parent: 1 - - uid: 3454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-47.5 - parent: 1 - - uid: 3455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-47.5 - parent: 1 - - uid: 3456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-47.5 - parent: 1 - - uid: 3457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-47.5 - parent: 1 - - uid: 3461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-47.5 - parent: 1 - - uid: 3462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-46.5 - parent: 1 - - uid: 3463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-45.5 - parent: 1 - - uid: 3464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-44.5 - parent: 1 - - uid: 3465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-43.5 - parent: 1 - - uid: 3466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-49.5 - parent: 1 - - uid: 3467 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-50.5 - parent: 1 - - uid: 3468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-51.5 - parent: 1 - - uid: 3469 - components: - - type: Transform - pos: -6.5,-31.5 - parent: 1 - - uid: 3470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-53.5 - parent: 1 - - uid: 3471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-54.5 - parent: 1 - - uid: 3472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-54.5 - parent: 1 - - uid: 3473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-54.5 - parent: 1 - - uid: 3474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-55.5 - parent: 1 - - uid: 3475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-56.5 - parent: 1 - - uid: 3476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-57.5 - parent: 1 - - uid: 3477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-58.5 - parent: 1 - - uid: 3478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-59.5 - parent: 1 - - uid: 3479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-60.5 - parent: 1 - - uid: 3480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-61.5 - parent: 1 - - uid: 3481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-62.5 - parent: 1 - - uid: 3482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-63.5 - parent: 1 - - uid: 3483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-64.5 - parent: 1 - - uid: 3484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-65.5 - parent: 1 - - uid: 3485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-66.5 - parent: 1 - - uid: 3486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-67.5 - parent: 1 - - uid: 3487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-68.5 - parent: 1 - - uid: 3488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-69.5 - parent: 1 - - uid: 3489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-70.5 - parent: 1 - - uid: 3490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-70.5 - parent: 1 - - uid: 3491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-69.5 - parent: 1 - - uid: 3492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-68.5 - parent: 1 - - uid: 3493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-67.5 - parent: 1 - - uid: 3494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-66.5 - parent: 1 - - uid: 3495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-65.5 - parent: 1 - - uid: 3496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-64.5 - parent: 1 - - uid: 3497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-63.5 - parent: 1 - - uid: 3498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-62.5 - parent: 1 - - uid: 3499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-61.5 - parent: 1 - - uid: 3500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-60.5 - parent: 1 - - uid: 3501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-59.5 - parent: 1 - - uid: 3502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-58.5 - parent: 1 - - uid: 3503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-57.5 - parent: 1 - - uid: 3504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-56.5 - parent: 1 - - uid: 3505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-55.5 - parent: 1 - - uid: 3506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-54.5 - parent: 1 - - uid: 3507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-54.5 - parent: 1 - - uid: 3508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-54.5 - parent: 1 - - uid: 3509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-53.5 - parent: 1 - - uid: 3510 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 1 - - uid: 3511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-51.5 - parent: 1 - - uid: 3512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-50.5 - parent: 1 - - uid: 3513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-49.5 - parent: 1 - - uid: 3514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-48.5 - parent: 1 - - uid: 4164 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 1 - - uid: 4165 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 1 - - uid: 4166 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 1 - - uid: 4168 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 1 - - uid: 4169 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1 - - uid: 4170 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 1 - - uid: 4172 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 1 - - uid: 4173 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1 - - uid: 4174 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 1 - - uid: 4623 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 1 - - uid: 4717 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 1 - - uid: 5594 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 1 - - uid: 5597 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 1 - - uid: 5598 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 1 - - uid: 5842 - components: - - type: Transform - pos: -21.5,44.5 - parent: 1 - - uid: 5843 - components: - - type: Transform - pos: -21.5,43.5 - parent: 1 - - uid: 5844 - components: - - type: Transform - pos: -21.5,42.5 - parent: 1 - - uid: 5845 - components: - - type: Transform - pos: -21.5,41.5 - parent: 1 - - uid: 5846 - components: - - type: Transform - pos: -21.5,40.5 - parent: 1 - - uid: 5847 - components: - - type: Transform - pos: -21.5,51.5 - parent: 1 - - uid: 5848 - components: - - type: Transform - pos: -21.5,52.5 - parent: 1 - - uid: 5849 - components: - - type: Transform - pos: -21.5,53.5 - parent: 1 - - uid: 5850 - components: - - type: Transform - pos: -21.5,54.5 - parent: 1 - - uid: 5851 - components: - - type: Transform - pos: -21.5,55.5 - parent: 1 - - uid: 5852 - components: - - type: Transform - pos: -21.5,56.5 - parent: 1 - - uid: 5853 - components: - - type: Transform - pos: -22.5,57.5 - parent: 1 - - uid: 5854 - components: - - type: Transform - pos: -23.5,57.5 - parent: 1 - - uid: 5855 - components: - - type: Transform - pos: -19.5,58.5 - parent: 1 - - uid: 5856 - components: - - type: Transform - pos: -19.5,59.5 - parent: 1 - - uid: 5857 - components: - - type: Transform - pos: -19.5,60.5 - parent: 1 - - uid: 5858 - components: - - type: Transform - pos: -19.5,61.5 - parent: 1 - - uid: 5859 - components: - - type: Transform - pos: -18.5,62.5 - parent: 1 - - uid: 5860 - components: - - type: Transform - pos: -17.5,62.5 - parent: 1 - - uid: 5861 - components: - - type: Transform - pos: -16.5,62.5 - parent: 1 - - uid: 5862 - components: - - type: Transform - pos: -15.5,62.5 - parent: 1 - - uid: 5863 - components: - - type: Transform - pos: -14.5,62.5 - parent: 1 - - uid: 5864 - components: - - type: Transform - pos: -13.5,63.5 - parent: 1 - - uid: 5865 - components: - - type: Transform - pos: -13.5,64.5 - parent: 1 - - uid: 5866 - components: - - type: Transform - pos: -13.5,65.5 - parent: 1 - - uid: 5868 - components: - - type: Transform - pos: -12.5,67.5 - parent: 1 - - uid: 5869 - components: - - type: Transform - pos: -11.5,67.5 - parent: 1 - - uid: 5870 - components: - - type: Transform - pos: -10.5,67.5 - parent: 1 - - uid: 5871 - components: - - type: Transform - pos: -9.5,67.5 - parent: 1 - - uid: 5872 - components: - - type: Transform - pos: -8.5,67.5 - parent: 1 - - uid: 5873 - components: - - type: Transform - pos: -7.5,67.5 - parent: 1 - - uid: 5874 - components: - - type: Transform - pos: -6.5,67.5 - parent: 1 - - uid: 5875 - components: - - type: Transform - pos: -5.5,67.5 - parent: 1 - - uid: 5876 - components: - - type: Transform - pos: -4.5,68.5 - parent: 1 - - uid: 5877 - components: - - type: Transform - pos: -4.5,69.5 - parent: 1 - - uid: 5878 - components: - - type: Transform - pos: 8.5,63.5 - parent: 1 - - uid: 5879 - components: - - type: Transform - pos: 9.5,63.5 - parent: 1 - - uid: 5880 - components: - - type: Transform - pos: 10.5,63.5 - parent: 1 - - uid: 5881 - components: - - type: Transform - pos: 11.5,63.5 - parent: 1 - - uid: 5882 - components: - - type: Transform - pos: 12.5,63.5 - parent: 1 - - uid: 5883 - components: - - type: Transform - pos: 13.5,63.5 - parent: 1 - - uid: 5884 - components: - - type: Transform - pos: 14.5,63.5 - parent: 1 - - uid: 5885 - components: - - type: Transform - pos: 15.5,63.5 - parent: 1 - - uid: 5886 - components: - - type: Transform - pos: 16.5,63.5 - parent: 1 - - uid: 5887 - components: - - type: Transform - pos: 17.5,63.5 - parent: 1 - - uid: 5888 - components: - - type: Transform - pos: 18.5,62.5 - parent: 1 - - uid: 5889 - components: - - type: Transform - pos: 18.5,61.5 - parent: 1 - - uid: 5890 - components: - - type: Transform - pos: 18.5,60.5 - parent: 1 - - uid: 5891 - components: - - type: Transform - pos: 18.5,59.5 - parent: 1 - - uid: 5892 - components: - - type: Transform - pos: 18.5,56.5 - parent: 1 - - uid: 5893 - components: - - type: Transform - pos: 17.5,56.5 - parent: 1 - - uid: 5894 - components: - - type: Transform - pos: 20.5,56.5 - parent: 1 - - uid: 5895 - components: - - type: Transform - pos: 21.5,56.5 - parent: 1 - - uid: 5898 - components: - - type: Transform - pos: 16.5,54.5 - parent: 1 - - uid: 5899 - components: - - type: Transform - pos: 16.5,53.5 - parent: 1 - - uid: 5901 - components: - - type: Transform - pos: 22.5,54.5 - parent: 1 - - uid: 5902 - components: - - type: Transform - pos: 22.5,53.5 - parent: 1 - - uid: 5903 - components: - - type: Transform - pos: 22.5,52.5 - parent: 1 - - uid: 5904 - components: - - type: Transform - pos: 22.5,51.5 - parent: 1 - - uid: 5905 - components: - - type: Transform - pos: 22.5,50.5 - parent: 1 - - uid: 5906 - components: - - type: Transform - pos: 21.5,49.5 - parent: 1 - - uid: 5907 - components: - - type: Transform - pos: 22.5,48.5 - parent: 1 - - uid: 5908 - components: - - type: Transform - pos: 22.5,47.5 - parent: 1 - - uid: 5909 - components: - - type: Transform - pos: 22.5,46.5 - parent: 1 - - uid: 5910 - components: - - type: Transform - pos: 23.5,45.5 - parent: 1 - - uid: 5911 - components: - - type: Transform - pos: 24.5,45.5 - parent: 1 - - uid: 5912 - components: - - type: Transform - pos: 25.5,44.5 - parent: 1 - - uid: 5913 - components: - - type: Transform - pos: 25.5,43.5 - parent: 1 - - uid: 5914 - components: - - type: Transform - pos: 25.5,42.5 - parent: 1 - - uid: 5915 - components: - - type: Transform - pos: 25.5,41.5 - parent: 1 - - uid: 5916 - components: - - type: Transform - pos: 25.5,40.5 - parent: 1 - - uid: 5917 - components: - - type: Transform - pos: 24.5,29.5 - parent: 1 - - uid: 5918 - components: - - type: Transform - pos: 24.5,28.5 - parent: 1 - - uid: 5919 - components: - - type: Transform - pos: 24.5,27.5 - parent: 1 - - uid: 5920 - components: - - type: Transform - pos: 24.5,26.5 - parent: 1 - - uid: 5921 - components: - - type: Transform - pos: 24.5,25.5 - parent: 1 - - uid: 5922 - components: - - type: Transform - pos: 23.5,24.5 - parent: 1 - - uid: 5923 - components: - - type: Transform - pos: 22.5,24.5 - parent: 1 - - uid: 5924 - components: - - type: Transform - pos: 21.5,24.5 - parent: 1 - - uid: 5925 - components: - - type: Transform - pos: 20.5,24.5 - parent: 1 - - uid: 5926 - components: - - type: Transform - pos: 19.5,21.5 - parent: 1 - - uid: 5927 - components: - - type: Transform - pos: 19.5,20.5 - parent: 1 - - uid: 5928 - components: - - type: Transform - pos: 19.5,19.5 - parent: 1 - - uid: 5929 - components: - - type: Transform - pos: 19.5,18.5 - parent: 1 - - uid: 5930 - components: - - type: Transform - pos: 19.5,17.5 - parent: 1 - - uid: 5931 - components: - - type: Transform - pos: 18.5,22.5 - parent: 1 - - uid: 5932 - components: - - type: Transform - pos: 17.5,22.5 - parent: 1 - - uid: 5933 - components: - - type: Transform - pos: 16.5,22.5 - parent: 1 - - uid: 5934 - components: - - type: Transform - pos: 15.5,22.5 - parent: 1 - - uid: 5938 - components: - - type: Transform - pos: -27.5,18.5 - parent: 1 - - uid: 5939 - components: - - type: Transform - pos: -27.5,19.5 - parent: 1 - - uid: 5940 - components: - - type: Transform - pos: -27.5,20.5 - parent: 1 - - uid: 5941 - components: - - type: Transform - pos: -27.5,21.5 - parent: 1 - - uid: 5942 - components: - - type: Transform - pos: -27.5,22.5 - parent: 1 - - uid: 5943 - components: - - type: Transform - pos: -26.5,25.5 - parent: 1 - - uid: 5944 - components: - - type: Transform - pos: -25.5,25.5 - parent: 1 - - uid: 5945 - components: - - type: Transform - pos: -24.5,25.5 - parent: 1 - - uid: 5946 - components: - - type: Transform - pos: -23.5,28.5 - parent: 1 - - uid: 5947 - components: - - type: Transform - pos: -23.5,29.5 - parent: 1 - - uid: 5948 - components: - - type: Transform - pos: -23.5,30.5 - parent: 1 - - uid: 5949 - components: - - type: Transform - pos: -23.5,31.5 - parent: 1 - - uid: 5950 - components: - - type: Transform - pos: -23.5,32.5 - parent: 1 - - uid: 5951 - components: - - type: Transform - pos: -23.5,33.5 - parent: 1 - - uid: 5952 - components: - - type: Transform - pos: -23.5,34.5 - parent: 1 - - uid: 5953 - components: - - type: Transform - pos: -22.5,27.5 - parent: 1 - - uid: 5954 - components: - - type: Transform - pos: -21.5,27.5 - parent: 1 - - uid: 5988 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 1 - - uid: 5989 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 1 - - uid: 5990 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 1 - - uid: 5991 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 1 - - uid: 5992 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 1 - - uid: 5993 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 1 - - uid: 5994 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 1 - - uid: 5995 - components: - - type: Transform - pos: -35.5,-15.5 - parent: 1 - - uid: 5996 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 1 - - uid: 5997 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 1 - - uid: 5998 - components: - - type: Transform - pos: -32.5,-16.5 - parent: 1 - - uid: 5999 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 1 - - uid: 6001 - components: - - type: Transform - pos: -29.5,-17.5 - parent: 1 - - uid: 6002 - components: - - type: Transform - pos: -29.5,-18.5 - parent: 1 - - uid: 6003 - components: - - type: Transform - pos: -29.5,-19.5 - parent: 1 - - uid: 6004 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 1 - - uid: 6005 - components: - - type: Transform - pos: -29.5,-21.5 - parent: 1 - - uid: 6006 - components: - - type: Transform - pos: -29.5,-22.5 - parent: 1 - - uid: 6007 - components: - - type: Transform - pos: -29.5,-23.5 - parent: 1 - - uid: 6008 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 1 - - uid: 6009 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 1 - - uid: 6010 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 1 - - uid: 6011 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 1 - - uid: 6012 - components: - - type: Transform - pos: -26.5,-26.5 - parent: 1 - - uid: 6013 - components: - - type: Transform - pos: -25.5,-26.5 - parent: 1 - - uid: 6015 - components: - - type: Transform - pos: -23.5,-26.5 - parent: 1 - - uid: 6016 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 1 - - uid: 6017 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 1 - - uid: 6018 - components: - - type: Transform - pos: -20.5,-27.5 - parent: 1 - - uid: 6019 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 1 - - uid: 6020 - components: - - type: Transform - pos: -20.5,-29.5 - parent: 1 - - uid: 6021 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 1 - - uid: 6023 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 1 - - uid: 6024 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 1 - - uid: 6025 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 1 - - uid: 6026 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 1 - - uid: 6027 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 1 - - uid: 6028 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 1 - - uid: 6029 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 1 - - uid: 6030 - components: - - type: Transform - pos: -16.5,-21.5 - parent: 1 - - uid: 6031 - components: - - type: Transform - pos: -16.5,-32.5 - parent: 1 - - uid: 6032 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 1 - - uid: 6033 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 1 - - uid: 6034 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 1 - - uid: 6050 - components: - - type: Transform - pos: 38.5,-11.5 - parent: 1 - - uid: 6051 - components: - - type: Transform - pos: 37.5,-11.5 - parent: 1 - - uid: 6052 - components: - - type: Transform - pos: 36.5,-11.5 - parent: 1 - - uid: 6053 - components: - - type: Transform - pos: 35.5,-11.5 - parent: 1 - - uid: 6054 - components: - - type: Transform - pos: 32.5,-12.5 - parent: 1 - - uid: 6055 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 1 - - uid: 6056 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 1 - - uid: 6057 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 1 - - uid: 6058 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 1 - - uid: 6059 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 1 - - uid: 6060 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 1 - - uid: 6061 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 1 - - uid: 6062 - components: - - type: Transform - pos: 30.5,-22.5 - parent: 1 - - uid: 6063 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 1 - - uid: 6064 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 1 - - uid: 6065 - components: - - type: Transform - pos: 27.5,-24.5 - parent: 1 - - uid: 6066 - components: - - type: Transform - pos: 26.5,-24.5 - parent: 1 - - uid: 6067 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 1 - - uid: 6068 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 1 - - uid: 6069 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 1 - - uid: 6070 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 1 - - uid: 6071 - components: - - type: Transform - pos: 22.5,-26.5 - parent: 1 - - uid: 6072 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 1 - - uid: 6073 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 1 - - uid: 6074 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 1 - - uid: 6075 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 1 - - uid: 6077 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 1 - - uid: 6078 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 1 - - uid: 6334 - components: - - type: Transform - pos: -43.5,46.5 - parent: 1 - - uid: 6335 - components: - - type: Transform - pos: -43.5,47.5 - parent: 1 - - uid: 6336 - components: - - type: Transform - pos: -43.5,48.5 - parent: 1 - - uid: 6337 - components: - - type: Transform - pos: -43.5,49.5 - parent: 1 - - uid: 6338 - components: - - type: Transform - pos: -43.5,50.5 - parent: 1 - - uid: 6339 - components: - - type: Transform - pos: -42.5,51.5 - parent: 1 - - uid: 6340 - components: - - type: Transform - pos: -41.5,51.5 - parent: 1 - - uid: 6417 - components: - - type: Transform - pos: -15.5,8.5 - parent: 1 - - uid: 6418 - components: - - type: Transform - pos: -16.5,7.5 - parent: 1 - - uid: 6419 - components: - - type: Transform - pos: -17.5,7.5 - parent: 1 - - uid: 6420 - components: - - type: Transform - pos: -18.5,7.5 - parent: 1 - - uid: 6421 - components: - - type: Transform - pos: -19.5,6.5 - parent: 1 - - uid: 6422 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1 - - uid: 6423 - components: - - type: Transform - pos: -19.5,4.5 - parent: 1 - - uid: 6424 - components: - - type: Transform - pos: -19.5,3.5 - parent: 1 - - uid: 6425 - components: - - type: Transform - pos: -19.5,2.5 - parent: 1 - - uid: 6426 - components: - - type: Transform - pos: -19.5,1.5 - parent: 1 - - uid: 6427 - components: - - type: Transform - pos: -19.5,0.5 - parent: 1 - - uid: 6428 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 1 - - uid: 6429 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 1 - - uid: 6430 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 1 - - uid: 6431 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1 - - uid: 6432 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 1 - - uid: 6433 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 1 - - uid: 6434 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 1 - - uid: 6435 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 1 - - uid: 6436 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 1 - - uid: 6437 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 1 - - uid: 6438 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 1 - - uid: 6439 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 1 - - uid: 6452 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 1 - - uid: 6453 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 1 - - uid: 6454 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 1 - - uid: 6455 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 1 - - uid: 6456 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 1 - - uid: 6457 - components: - - type: Transform - pos: -27.5,0.5 - parent: 1 - - uid: 6473 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 1 - - uid: 6485 - components: - - type: Transform - pos: 7.5,-28.5 - parent: 1 - - uid: 6488 - components: - - type: Transform - pos: 6.5,-28.5 - parent: 1 - - uid: 6578 - components: - - type: Transform - pos: 8.5,-28.5 - parent: 1 - - uid: 6683 - components: - - type: Transform - pos: -9.5,-52.5 - parent: 1 - - uid: 6713 - components: - - type: Transform - pos: -34.5,24.5 - parent: 1 - - uid: 6714 - components: - - type: Transform - pos: -34.5,25.5 - parent: 1 - - uid: 6715 - components: - - type: Transform - pos: -34.5,26.5 - parent: 1 - - uid: 6716 - components: - - type: Transform - pos: -34.5,27.5 - parent: 1 - - uid: 6717 - components: - - type: Transform - pos: -34.5,28.5 - parent: 1 - - uid: 6718 - components: - - type: Transform - pos: -34.5,29.5 - parent: 1 - - uid: 6719 - components: - - type: Transform - pos: -34.5,30.5 - parent: 1 - - uid: 6720 - components: - - type: Transform - pos: -34.5,31.5 - parent: 1 - - uid: 6721 - components: - - type: Transform - pos: -34.5,32.5 - parent: 1 - - uid: 6722 - components: - - type: Transform - pos: -35.5,33.5 - parent: 1 - - uid: 6723 - components: - - type: Transform - pos: -36.5,33.5 - parent: 1 - - uid: 6724 - components: - - type: Transform - pos: -37.5,33.5 - parent: 1 - - uid: 6725 - components: - - type: Transform - pos: -38.5,33.5 - parent: 1 - - uid: 6735 - components: - - type: Transform - pos: -35.5,20.5 - parent: 1 - - uid: 6736 - components: - - type: Transform - pos: -35.5,19.5 - parent: 1 - - uid: 6737 - components: - - type: Transform - pos: -35.5,18.5 - parent: 1 - - uid: 6955 - components: - - type: Transform - pos: 14.5,5.5 - parent: 1 - - uid: 6956 - components: - - type: Transform - pos: 14.5,4.5 - parent: 1 - - uid: 6957 - components: - - type: Transform - pos: 14.5,3.5 - parent: 1 - - uid: 6958 - components: - - type: Transform - pos: 14.5,2.5 - parent: 1 - - uid: 6959 - components: - - type: Transform - pos: 14.5,1.5 - parent: 1 - - uid: 6960 - components: - - type: Transform - pos: 14.5,0.5 - parent: 1 - - uid: 6961 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 1 - - uid: 6962 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 1 - - uid: 6963 - components: - - type: Transform - pos: 16.5,-1.5 - parent: 1 - - uid: 6964 - components: - - type: Transform - pos: 17.5,-1.5 - parent: 1 - - uid: 6965 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1 - - uid: 6966 - components: - - type: Transform - pos: 18.5,0.5 - parent: 1 - - uid: 6967 - components: - - type: Transform - pos: 15.5,6.5 - parent: 1 - - uid: 6968 - components: - - type: Transform - pos: 16.5,6.5 - parent: 1 - - uid: 6969 - components: - - type: Transform - pos: 17.5,6.5 - parent: 1 - - uid: 6970 - components: - - type: Transform - pos: 18.5,7.5 - parent: 1 - - uid: 6971 - components: - - type: Transform - pos: 18.5,8.5 - parent: 1 - - uid: 6972 - components: - - type: Transform - pos: 18.5,9.5 - parent: 1 - - uid: 6973 - components: - - type: Transform - pos: 18.5,10.5 - parent: 1 - - uid: 6974 - components: - - type: Transform - pos: 18.5,11.5 - parent: 1 - - uid: 6975 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 1 - - uid: 6976 - components: - - type: Transform - pos: 14.5,-3.5 - parent: 1 - - uid: 6977 - components: - - type: Transform - pos: 14.5,-4.5 - parent: 1 - - uid: 6998 - components: - - type: Transform - pos: 36.5,41.5 - parent: 1 - - uid: 6999 - components: - - type: Transform - pos: 36.5,42.5 - parent: 1 - - uid: 7000 - components: - - type: Transform - pos: 36.5,43.5 - parent: 1 - - uid: 7001 - components: - - type: Transform - pos: 36.5,44.5 - parent: 1 - - uid: 7002 - components: - - type: Transform - pos: 36.5,45.5 - parent: 1 - - uid: 7003 - components: - - type: Transform - pos: 36.5,46.5 - parent: 1 - - uid: 7004 - components: - - type: Transform - pos: 36.5,47.5 - parent: 1 - - uid: 7005 - components: - - type: Transform - pos: 36.5,48.5 - parent: 1 - - uid: 7006 - components: - - type: Transform - pos: 36.5,49.5 - parent: 1 - - uid: 7007 - components: - - type: Transform - pos: 36.5,50.5 - parent: 1 - - uid: 7008 - components: - - type: Transform - pos: 35.5,51.5 - parent: 1 - - uid: 7009 - components: - - type: Transform - pos: 34.5,51.5 - parent: 1 - - uid: 7010 - components: - - type: Transform - pos: 33.5,51.5 - parent: 1 - - uid: 7011 - components: - - type: Transform - pos: 32.5,51.5 - parent: 1 - - uid: 7012 - components: - - type: Transform - pos: 31.5,51.5 - parent: 1 - - uid: 7013 - components: - - type: Transform - pos: 30.5,51.5 - parent: 1 - - uid: 7014 - components: - - type: Transform - pos: 28.5,54.5 - parent: 1 - - uid: 7016 - components: - - type: Transform - pos: 28.5,56.5 - parent: 1 - - uid: 7017 - components: - - type: Transform - pos: 27.5,57.5 - parent: 1 - - uid: 7018 - components: - - type: Transform - pos: 26.5,57.5 - parent: 1 - - uid: 7019 - components: - - type: Transform - pos: 25.5,57.5 - parent: 1 - - uid: 7020 - components: - - type: Transform - pos: 24.5,57.5 - parent: 1 - - uid: 7021 - components: - - type: Transform - pos: 23.5,57.5 - parent: 1 - - uid: 7184 - components: - - type: Transform - pos: 2.5,41.5 - parent: 1 - - uid: 7185 - components: - - type: Transform - pos: 3.5,41.5 - parent: 1 - - uid: 7186 - components: - - type: Transform - pos: 4.5,41.5 - parent: 1 - - uid: 7187 - components: - - type: Transform - pos: 5.5,41.5 - parent: 1 - - uid: 7188 - components: - - type: Transform - pos: 6.5,41.5 - parent: 1 - - uid: 7189 - components: - - type: Transform - pos: 7.5,41.5 - parent: 1 - - uid: 7190 - components: - - type: Transform - pos: 8.5,41.5 - parent: 1 - - uid: 7191 - components: - - type: Transform - pos: 9.5,42.5 - parent: 1 - - uid: 7192 - components: - - type: Transform - pos: 9.5,43.5 - parent: 1 - - uid: 7193 - components: - - type: Transform - pos: 9.5,44.5 - parent: 1 - - uid: 7194 - components: - - type: Transform - pos: 9.5,45.5 - parent: 1 - - uid: 7195 - components: - - type: Transform - pos: 9.5,46.5 - parent: 1 - - uid: 7196 - components: - - type: Transform - pos: 9.5,47.5 - parent: 1 - - uid: 7197 - components: - - type: Transform - pos: 9.5,48.5 - parent: 1 - - uid: 7198 - components: - - type: Transform - pos: 9.5,49.5 - parent: 1 - - uid: 7199 - components: - - type: Transform - pos: 11.5,50.5 - parent: 1 - - uid: 7200 - components: - - type: Transform - pos: 10.5,50.5 - parent: 1 - - uid: 7201 - components: - - type: Transform - pos: 12.5,50.5 - parent: 1 - - uid: 7203 - components: - - type: Transform - pos: 14.5,50.5 - parent: 1 - - uid: 7204 - components: - - type: Transform - pos: 15.5,50.5 - parent: 1 - - uid: 7205 - components: - - type: Transform - pos: 17.5,49.5 - parent: 1 - - uid: 7206 - components: - - type: Transform - pos: 18.5,49.5 - parent: 1 - - uid: 7207 - components: - - type: Transform - pos: 19.5,49.5 - parent: 1 - - uid: 7208 - components: - - type: Transform - pos: 20.5,49.5 - parent: 1 - - uid: 7302 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 1 - - uid: 7303 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 1 - - uid: 7304 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 1 - - uid: 7305 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 1 - - uid: 7306 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 1 - - uid: 7307 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 1 - - uid: 7308 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 1 - - uid: 7309 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 1 - - uid: 7310 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 1 - - uid: 7311 - components: - - type: Transform - pos: 28.5,-15.5 - parent: 1 - - uid: 7312 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 1 - - uid: 7313 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 1 - - uid: 7314 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 1 - - uid: 7315 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 1 - - uid: 7320 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 1 - - uid: 7321 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 1 - - uid: 7329 - components: - - type: Transform - pos: 18.5,2.5 - parent: 1 - - uid: 7330 - components: - - type: Transform - pos: 18.5,3.5 - parent: 1 - - uid: 7331 - components: - - type: Transform - pos: 18.5,52.5 - parent: 1 - - uid: 7332 - components: - - type: Transform - pos: 19.5,52.5 - parent: 1 - - uid: 7333 - components: - - type: Transform - pos: -24.5,56.5 - parent: 1 - - uid: 7334 - components: - - type: Transform - pos: -24.5,55.5 - parent: 1 - - uid: 7335 - components: - - type: Transform - pos: -24.5,54.5 - parent: 1 - - uid: 7386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,53.5 - parent: 1 - - uid: 7400 - components: - - type: Transform - pos: 37.5,75.5 - parent: 1 - - uid: 7401 - components: - - type: Transform - pos: 37.5,74.5 - parent: 1 - - uid: 7402 - components: - - type: Transform - pos: 37.5,73.5 - parent: 1 - - uid: 7403 - components: - - type: Transform - pos: 37.5,72.5 - parent: 1 - - uid: 7404 - components: - - type: Transform - pos: 37.5,71.5 - parent: 1 - - uid: 7405 - components: - - type: Transform - pos: 37.5,70.5 - parent: 1 - - uid: 7406 - components: - - type: Transform - pos: 37.5,69.5 - parent: 1 - - uid: 7407 - components: - - type: Transform - pos: 37.5,68.5 - parent: 1 - - uid: 7408 - components: - - type: Transform - pos: 37.5,67.5 - parent: 1 - - uid: 7409 - components: - - type: Transform - pos: 37.5,66.5 - parent: 1 - - uid: 7410 - components: - - type: Transform - pos: 37.5,65.5 - parent: 1 - - uid: 7411 - components: - - type: Transform - pos: 37.5,64.5 - parent: 1 - - uid: 7412 - components: - - type: Transform - pos: 37.5,63.5 - parent: 1 - - uid: 7413 - components: - - type: Transform - pos: 37.5,62.5 - parent: 1 - - uid: 7414 - components: - - type: Transform - pos: 37.5,61.5 - parent: 1 - - uid: 7415 - components: - - type: Transform - pos: 37.5,60.5 - parent: 1 - - uid: 7416 - components: - - type: Transform - pos: 37.5,59.5 - parent: 1 - - uid: 7417 - components: - - type: Transform - pos: 37.5,58.5 - parent: 1 - - uid: 7418 - components: - - type: Transform - pos: 37.5,57.5 - parent: 1 - - uid: 7513 - components: - - type: Transform - pos: 35.5,73.5 - parent: 1 - - uid: 7514 - components: - - type: Transform - pos: 34.5,73.5 - parent: 1 - - uid: 7515 - components: - - type: Transform - pos: 33.5,73.5 - parent: 1 - - uid: 7516 - components: - - type: Transform - pos: 32.5,73.5 - parent: 1 - - uid: 7517 - components: - - type: Transform - pos: 31.5,73.5 - parent: 1 - - uid: 7518 - components: - - type: Transform - pos: 30.5,73.5 - parent: 1 - - uid: 7519 - components: - - type: Transform - pos: 29.5,73.5 - parent: 1 - - uid: 7520 - components: - - type: Transform - pos: 28.5,73.5 - parent: 1 - - uid: 7521 - components: - - type: Transform - pos: 39.5,73.5 - parent: 1 - - uid: 7522 - components: - - type: Transform - pos: 40.5,73.5 - parent: 1 - - uid: 7523 - components: - - type: Transform - pos: 41.5,73.5 - parent: 1 - - uid: 7524 - components: - - type: Transform - pos: 42.5,73.5 - parent: 1 - - uid: 7525 - components: - - type: Transform - pos: 43.5,73.5 - parent: 1 - - uid: 7526 - components: - - type: Transform - pos: 44.5,73.5 - parent: 1 - - uid: 7527 - components: - - type: Transform - pos: 45.5,73.5 - parent: 1 - - uid: 7528 - components: - - type: Transform - pos: 46.5,73.5 - parent: 1 - - uid: 7529 - components: - - type: Transform - pos: 35.5,69.5 - parent: 1 - - uid: 7530 - components: - - type: Transform - pos: 34.5,69.5 - parent: 1 - - uid: 7531 - components: - - type: Transform - pos: 33.5,69.5 - parent: 1 - - uid: 7532 - components: - - type: Transform - pos: 32.5,69.5 - parent: 1 - - uid: 7533 - components: - - type: Transform - pos: 31.5,69.5 - parent: 1 - - uid: 7534 - components: - - type: Transform - pos: 30.5,69.5 - parent: 1 - - uid: 7535 - components: - - type: Transform - pos: 29.5,69.5 - parent: 1 - - uid: 7536 - components: - - type: Transform - pos: 28.5,69.5 - parent: 1 - - uid: 7537 - components: - - type: Transform - pos: 39.5,69.5 - parent: 1 - - uid: 7538 - components: - - type: Transform - pos: 40.5,69.5 - parent: 1 - - uid: 7539 - components: - - type: Transform - pos: 41.5,69.5 - parent: 1 - - uid: 7540 - components: - - type: Transform - pos: 42.5,69.5 - parent: 1 - - uid: 7541 - components: - - type: Transform - pos: 43.5,69.5 - parent: 1 - - uid: 7542 - components: - - type: Transform - pos: 44.5,69.5 - parent: 1 - - uid: 7543 - components: - - type: Transform - pos: 45.5,69.5 - parent: 1 - - uid: 7544 - components: - - type: Transform - pos: 46.5,69.5 - parent: 1 - - uid: 7715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,20.5 - parent: 1 - - uid: 7730 - components: - - type: Transform - pos: -38.5,72.5 - parent: 1 - - uid: 7731 - components: - - type: Transform - pos: -38.5,71.5 - parent: 1 - - uid: 7732 - components: - - type: Transform - pos: -38.5,70.5 - parent: 1 - - uid: 7733 - components: - - type: Transform - pos: -38.5,69.5 - parent: 1 - - uid: 7734 - components: - - type: Transform - pos: -38.5,68.5 - parent: 1 - - uid: 7735 - components: - - type: Transform - pos: -38.5,67.5 - parent: 1 - - uid: 7736 - components: - - type: Transform - pos: -38.5,66.5 - parent: 1 - - uid: 7737 - components: - - type: Transform - pos: -38.5,65.5 - parent: 1 - - uid: 7738 - components: - - type: Transform - pos: -38.5,64.5 - parent: 1 - - uid: 7739 - components: - - type: Transform - pos: -38.5,63.5 - parent: 1 - - uid: 7740 - components: - - type: Transform - pos: -38.5,62.5 - parent: 1 - - uid: 7741 - components: - - type: Transform - pos: -38.5,61.5 - parent: 1 - - uid: 7742 - components: - - type: Transform - pos: -38.5,60.5 - parent: 1 - - uid: 7743 - components: - - type: Transform - pos: -38.5,59.5 - parent: 1 - - uid: 7744 - components: - - type: Transform - pos: -38.5,58.5 - parent: 1 - - uid: 7745 - components: - - type: Transform - pos: -38.5,57.5 - parent: 1 - - uid: 7746 - components: - - type: Transform - pos: -40.5,73.5 - parent: 1 - - uid: 7747 - components: - - type: Transform - pos: -41.5,73.5 - parent: 1 - - uid: 7748 - components: - - type: Transform - pos: -42.5,73.5 - parent: 1 - - uid: 7749 - components: - - type: Transform - pos: -43.5,73.5 - parent: 1 - - uid: 7750 - components: - - type: Transform - pos: -44.5,73.5 - parent: 1 - - uid: 7751 - components: - - type: Transform - pos: -45.5,73.5 - parent: 1 - - uid: 7752 - components: - - type: Transform - pos: -46.5,73.5 - parent: 1 - - uid: 7753 - components: - - type: Transform - pos: -47.5,73.5 - parent: 1 - - uid: 7754 - components: - - type: Transform - pos: -36.5,73.5 - parent: 1 - - uid: 7755 - components: - - type: Transform - pos: -35.5,73.5 - parent: 1 - - uid: 7756 - components: - - type: Transform - pos: -34.5,73.5 - parent: 1 - - uid: 7757 - components: - - type: Transform - pos: -33.5,73.5 - parent: 1 - - uid: 7758 - components: - - type: Transform - pos: -32.5,73.5 - parent: 1 - - uid: 7759 - components: - - type: Transform - pos: -31.5,73.5 - parent: 1 - - uid: 7760 - components: - - type: Transform - pos: -30.5,73.5 - parent: 1 - - uid: 7761 - components: - - type: Transform - pos: -29.5,73.5 - parent: 1 - - uid: 7778 - components: - - type: Transform - pos: -40.5,69.5 - parent: 1 - - uid: 7779 - components: - - type: Transform - pos: -41.5,69.5 - parent: 1 - - uid: 7780 - components: - - type: Transform - pos: -42.5,69.5 - parent: 1 - - uid: 7781 - components: - - type: Transform - pos: -43.5,69.5 - parent: 1 - - uid: 7782 - components: - - type: Transform - pos: -44.5,69.5 - parent: 1 - - uid: 7783 - components: - - type: Transform - pos: -45.5,69.5 - parent: 1 - - uid: 7784 - components: - - type: Transform - pos: -46.5,69.5 - parent: 1 - - uid: 7785 - components: - - type: Transform - pos: -47.5,69.5 - parent: 1 - - uid: 7786 - components: - - type: Transform - pos: -36.5,69.5 - parent: 1 - - uid: 7787 - components: - - type: Transform - pos: -35.5,69.5 - parent: 1 - - uid: 7788 - components: - - type: Transform - pos: -34.5,69.5 - parent: 1 - - uid: 7789 - components: - - type: Transform - pos: -33.5,69.5 - parent: 1 - - uid: 7790 - components: - - type: Transform - pos: -32.5,69.5 - parent: 1 - - uid: 7791 - components: - - type: Transform - pos: -31.5,69.5 - parent: 1 - - uid: 7792 - components: - - type: Transform - pos: -30.5,69.5 - parent: 1 - - uid: 7793 - components: - - type: Transform - pos: -29.5,69.5 - parent: 1 - - uid: 7803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,21.5 - parent: 1 - - uid: 8153 - components: - - type: Transform - pos: -45.5,25.5 - parent: 1 - - uid: 8162 - components: - - type: Transform - pos: -44.5,25.5 - parent: 1 - - uid: 8573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,33.5 - parent: 1 - - uid: 8574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,34.5 - parent: 1 - - uid: 8614 - components: - - type: Transform - pos: -7.5,26.5 - parent: 1 - - uid: 8615 - components: - - type: Transform - pos: -6.5,26.5 - parent: 1 - - uid: 8616 - components: - - type: Transform - pos: -5.5,26.5 - parent: 1 - - uid: 8617 - components: - - type: Transform - pos: -4.5,26.5 - parent: 1 - - uid: 8746 - components: - - type: Transform - pos: -13.5,-41.5 - parent: 1 - - uid: 8747 - components: - - type: Transform - pos: -13.5,-40.5 - parent: 1 - - uid: 8748 - components: - - type: Transform - pos: -13.5,-39.5 - parent: 1 - - uid: 9080 - components: - - type: Transform - pos: 12.5,-39.5 - parent: 1 - - uid: 9081 - components: - - type: Transform - pos: 12.5,-40.5 - parent: 1 - - uid: 9082 - components: - - type: Transform - pos: 12.5,-41.5 - parent: 1 - - uid: 9200 - components: - - type: Transform - pos: -45.5,4.5 - parent: 1 - - uid: 9201 - components: - - type: Transform - pos: -46.5,4.5 - parent: 1 - - uid: 9202 - components: - - type: Transform - pos: -45.5,2.5 - parent: 1 - - uid: 9308 - components: - - type: Transform - pos: -46.5,2.5 - parent: 1 - - uid: 9600 - components: - - type: Transform - pos: 15.5,-34.5 - parent: 1 - - uid: 10048 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 1 - - uid: 10872 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 1 - - uid: 10873 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 1 - - uid: 10874 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 1 - - uid: 13160 - components: - - type: Transform - pos: 15.5,24.5 - parent: 1 - - uid: 13163 - components: - - type: Transform - pos: 16.5,24.5 - parent: 1 - - uid: 13164 - components: - - type: Transform - pos: 14.5,24.5 - parent: 1 - - uid: 13175 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 1 - - uid: 13176 - components: - - type: Transform - pos: -24.5,-2.5 - parent: 1 - - uid: 13177 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 1 - - uid: 13202 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 1 - - uid: 13203 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 1 - - uid: 13204 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 1 - - uid: 17775 - components: - - type: Transform - pos: -3.5,72.5 - parent: 1 - - uid: 17776 - components: - - type: Transform - pos: -3.5,73.5 - parent: 1 -- proto: Chair - entities: - - uid: 95 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,0.5 - parent: 1 - - uid: 232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 1 - - uid: 1779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,17.5 - parent: 1 - - uid: 1938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,36.5 - parent: 1 - - uid: 1939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,36.5 - parent: 1 - - uid: 1940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,54.5 - parent: 1 - - uid: 1941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,54.5 - parent: 1 - - uid: 1942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,54.5 - parent: 1 - - uid: 1943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,54.5 - parent: 1 - - uid: 1944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,52.5 - parent: 1 - - uid: 1945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,52.5 - parent: 1 - - uid: 1946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,52.5 - parent: 1 - - uid: 1947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,53.5 - parent: 1 - - uid: 1948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,53.5 - parent: 1 - - uid: 1949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,53.5 - parent: 1 - - uid: 1950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,52.5 - parent: 1 - - uid: 1951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,52.5 - parent: 1 - - uid: 1952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,52.5 - parent: 1 - - uid: 1953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,53.5 - parent: 1 - - uid: 1954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,53.5 - parent: 1 - - uid: 1955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,53.5 - parent: 1 - - uid: 1956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,36.5 - parent: 1 - - uid: 1957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,54.5 - parent: 1 - - uid: 1958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,54.5 - parent: 1 - - uid: 3185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,49.5 - parent: 1 - - uid: 3186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,49.5 - parent: 1 - - uid: 3684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,17.5 - parent: 1 - - uid: 4247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-11.5 - parent: 1 - - uid: 4248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-9.5 - parent: 1 - - uid: 5641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,36.5 - parent: 1 - - uid: 5642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,36.5 - parent: 1 - - uid: 5643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,36.5 - parent: 1 - - uid: 6090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,40.5 - parent: 1 - - uid: 6091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,41.5 - parent: 1 - - uid: 6092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,41.5 - parent: 1 - - uid: 6093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,40.5 - parent: 1 - - uid: 6140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-10.5 - parent: 1 - - uid: 6380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,17.5 - parent: 1 - - uid: 6491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-12.5 - parent: 1 - - uid: 6899 - components: - - type: Transform - pos: 24.5,22.5 - parent: 1 - - uid: 6900 - components: - - type: Transform - pos: 25.5,22.5 - parent: 1 - - uid: 6901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,19.5 - parent: 1 - - uid: 6902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,18.5 - parent: 1 - - uid: 7278 - components: - - type: Transform - pos: 2.5,64.5 - parent: 1 - - uid: 7279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,60.5 - parent: 1 - - uid: 7280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,61.5 - parent: 1 - - uid: 8119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,56.5 - parent: 1 - - uid: 8121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,56.5 - parent: 1 - - uid: 8122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,56.5 - parent: 1 - - uid: 8446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,52.5 - parent: 1 - - uid: 8447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,52.5 - parent: 1 - - uid: 8448 - components: - - type: Transform - pos: 1.5,57.5 - parent: 1 - - uid: 8449 - components: - - type: Transform - pos: 2.5,57.5 - parent: 1 - - uid: 8450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,52.5 - parent: 1 - - uid: 8451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,52.5 - parent: 1 - - uid: 8455 - components: - - type: Transform - pos: 10.5,70.5 - parent: 1 - - uid: 8456 - components: - - type: Transform - pos: 11.5,70.5 - parent: 1 - - uid: 9442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,4.5 - parent: 1 - - uid: 9443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 1 - - uid: 9467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,5.5 - parent: 1 - - uid: 9468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,6.5 - parent: 1 - - uid: 9507 - components: - - type: Transform - pos: 14.5,61.5 - parent: 1 - - uid: 9511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,56.5 - parent: 1 - - uid: 9515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,36.5 - parent: 1 - - uid: 9516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,36.5 - parent: 1 - - uid: 9517 - components: - - type: Transform - pos: 44.5,38.5 - parent: 1 - - uid: 9518 - components: - - type: Transform - pos: 45.5,38.5 - parent: 1 - - uid: 9519 - components: - - type: Transform - pos: 43.5,38.5 - parent: 1 - - uid: 9520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,39.5 - parent: 1 - - uid: 9521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,39.5 - parent: 1 - - uid: 9522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,39.5 - parent: 1 - - uid: 9526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,13.5 - parent: 1 - - uid: 9527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,13.5 - parent: 1 - - uid: 9528 - components: - - type: Transform - pos: 40.5,-7.5 - parent: 1 - - uid: 9529 - components: - - type: Transform - pos: 41.5,-7.5 - parent: 1 - - uid: 9530 - components: - - type: Transform - pos: 42.5,-7.5 - parent: 1 - - uid: 9531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,8.5 - parent: 1 - - uid: 9532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,7.5 - parent: 1 - - uid: 9533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,0.5 - parent: 1 - - uid: 9534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,1.5 - parent: 1 - - uid: 9537 - components: - - type: Transform - pos: -43.5,15.5 - parent: 1 - - uid: 9538 - components: - - type: Transform - pos: -42.5,15.5 - parent: 1 - - uid: 9539 - components: - - type: Transform - pos: -41.5,15.5 - parent: 1 - - uid: 9540 - components: - - type: Transform - pos: -25.5,38.5 - parent: 1 - - uid: 9541 - components: - - type: Transform - pos: -26.5,38.5 - parent: 1 - - uid: 9542 - components: - - type: Transform - pos: -27.5,38.5 - parent: 1 - - uid: 9544 - components: - - type: Transform - pos: -46.5,38.5 - parent: 1 - - uid: 9545 - components: - - type: Transform - pos: -45.5,38.5 - parent: 1 - - uid: 9546 - components: - - type: Transform - pos: -44.5,38.5 - parent: 1 - - uid: 9547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,29.5 - parent: 1 - - uid: 9548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,28.5 - parent: 1 - - uid: 9549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,27.5 - parent: 1 - - uid: 9550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,24.5 - parent: 1 - - uid: 9551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,23.5 - parent: 1 - - uid: 9552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,22.5 - parent: 1 - - uid: 9553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,13.5 - parent: 1 - - uid: 9555 - components: - - type: Transform - pos: -24.5,-7.5 - parent: 1 - - uid: 9556 - components: - - type: Transform - pos: -23.5,-7.5 - parent: 1 - - uid: 9567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1 - - uid: 9568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 1 - - uid: 9569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 1 - - uid: 9570 - components: - - type: Transform - pos: -20.5,15.5 - parent: 1 - - uid: 9571 - components: - - type: Transform - pos: -21.5,15.5 - parent: 1 - - uid: 9572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,30.5 - parent: 1 - - uid: 9573 - components: - - type: Transform - pos: -22.5,15.5 - parent: 1 - - uid: 9574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,29.5 - parent: 1 - - uid: 9575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,28.5 - parent: 1 - - uid: 9576 - components: - - type: Transform - pos: 6.5,38.5 - parent: 1 - - uid: 9577 - components: - - type: Transform - pos: 5.5,38.5 - parent: 1 - - uid: 9578 - components: - - type: Transform - pos: 4.5,38.5 - parent: 1 - - uid: 9593 - components: - - type: Transform - pos: 14.5,15.5 - parent: 1 - - uid: 9594 - components: - - type: Transform - pos: 15.5,15.5 - parent: 1 - - uid: 9626 - components: - - type: Transform - pos: -38.5,-4.5 - parent: 1 - - uid: 9627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-7.5 - parent: 1 - - uid: 9719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 1 - - uid: 9726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 1 - - uid: 9912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-37.5 - parent: 1 - - uid: 13206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,12.5 - parent: 1 - - uid: 13207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,12.5 - parent: 1 - - uid: 16403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 1 - - uid: 16404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 1 - - uid: 16405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 1 - - uid: 16693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 1 - - uid: 16694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,25.5 - parent: 1 -- proto: ChairFolding - entities: - - uid: 3167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 1 - - uid: 3254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,54.5 - parent: 1 - - uid: 3256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,54.5 - parent: 1 - - uid: 3263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,54.5 - parent: 1 - - uid: 3264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,46.5 - parent: 1 - - uid: 3274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,46.5 - parent: 1 - - uid: 3275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,45.5 - parent: 1 - - uid: 3276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,45.5 - parent: 1 - - uid: 3277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,44.5 - parent: 1 - - uid: 3278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,44.5 - parent: 1 - - uid: 3279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,46.5 - parent: 1 - - uid: 3280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,46.5 - parent: 1 - - uid: 3281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,45.5 - parent: 1 - - uid: 3282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,45.5 - parent: 1 - - uid: 3283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,44.5 - parent: 1 - - uid: 3284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,44.5 - parent: 1 - - uid: 3287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,54.5 - parent: 1 - - uid: 3944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 1 - - uid: 3947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 1 - - uid: 3948 - components: - - type: Transform - pos: -38.5,-10.5 - parent: 1 - - uid: 3949 - components: - - type: Transform - pos: -39.5,-10.5 - parent: 1 - - uid: 3950 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 1 - - uid: 6550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 1 - - uid: 7421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-26.5 - parent: 1 - - uid: 7443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-23.5 - parent: 1 - - uid: 8288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,44.5 - parent: 1 - - uid: 8289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,43.5 - parent: 1 - - uid: 8290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,44.5 - parent: 1 - - uid: 8291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,43.5 - parent: 1 - - uid: 9089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-34.5 - parent: 1 - - uid: 9915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-36.5 - parent: 1 - - uid: 9931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 1 - - uid: 9959 - components: - - type: Transform - pos: -23.5,-21.5 - parent: 1 - - uid: 9960 - components: - - type: Transform - pos: -23.5,-22.5 - parent: 1 - - uid: 9961 - components: - - type: Transform - pos: -21.5,-21.5 - parent: 1 - - uid: 9962 - components: - - type: Transform - pos: -21.5,-22.5 - parent: 1 - - uid: 9963 - components: - - type: Transform - pos: -24.5,-22.5 - parent: 1 - - uid: 9964 - components: - - type: Transform - pos: -20.5,-22.5 - parent: 1 - - uid: 9972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 1 - - uid: 10068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 1 - - uid: 10070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 1 - - uid: 10135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-19.5 - parent: 1 - - uid: 11054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,0.5 - parent: 1 - - uid: 13169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,26.5 - parent: 1 - - uid: 13311 - components: - - type: Transform - pos: -27.5,3.5 - parent: 1 - - uid: 13359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,33.5 - parent: 1 - - uid: 13389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,31.5 - parent: 1 - - uid: 13399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,42.5 - parent: 1 - - uid: 13426 - components: - - type: Transform - pos: -24.5,58.5 - parent: 1 - - uid: 13427 - components: - - type: Transform - pos: -22.5,58.5 - parent: 1 - - uid: 13455 - components: - - type: Transform - pos: -46.5,47.5 - parent: 1 - - uid: 13459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,47.5 - parent: 1 - - uid: 14004 - components: - - type: Transform - pos: 17.5,64.5 - parent: 1 - - uid: 14021 - components: - - type: Transform - pos: 19.5,50.5 - parent: 1 - - uid: 14023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,58.5 - parent: 1 - - uid: 14024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,58.5 - parent: 1 -- proto: ChairOfficeDark - entities: - - uid: 4150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 1 - - uid: 6665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 1 - - uid: 6668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,6.5 - parent: 1 - - uid: 7281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,60.5 - parent: 1 - - uid: 7282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,63.5 - parent: 1 - - uid: 7932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,25.5 - parent: 1 - - uid: 8133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,53.5 - parent: 1 - - uid: 8134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,54.5 - parent: 1 - - uid: 8343 - components: - - type: Transform - pos: -15.5,59.5 - parent: 1 - - uid: 8363 - components: - - type: Transform - pos: 42.5,51.5 - parent: 1 - - uid: 8662 - components: - - type: Transform - pos: -17.5,18.5 - parent: 1 - - uid: 8663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,29.5 - parent: 1 - - uid: 9104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 1 - - uid: 9210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,73.5 - parent: 1 - - uid: 9416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-11.5 - parent: 1 - - uid: 9417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 1 - - uid: 10928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 1 - - uid: 11073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 1 - - uid: 13165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,24.5 - parent: 1 - - uid: 13205 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 1 - - uid: 14071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,53.5 - parent: 1 - - uid: 17586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,17.5 - parent: 1 - - uid: 17587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,11.5 - parent: 1 - - uid: 18344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,20.5 - parent: 1 - - uid: 18433 - components: - - type: Transform - pos: 44.5,42.5 - parent: 1 - - uid: 18436 - components: - - type: Transform - pos: 43.5,42.5 - parent: 1 -- proto: ChairOfficeLight - entities: - - uid: 2714 - components: - - type: Transform - pos: -11.5,55.5 - parent: 1 - - uid: 3655 - components: - - type: Transform - pos: 8.5,20.5 - parent: 1 - - uid: 3759 - components: - - type: Transform - pos: 25.5,3.5 - parent: 1 - - uid: 6652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,7.5 - parent: 1 - - uid: 6664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 1 - - uid: 7387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,52.5 - parent: 1 - - uid: 7388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,55.5 - parent: 1 - - uid: 7389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,49.5 - parent: 1 - - uid: 8483 - components: - - type: Transform - pos: 15.5,33.5 - parent: 1 - - uid: 8541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,21.5 - parent: 1 - - uid: 8542 - components: - - type: Transform - pos: 4.5,21.5 - parent: 1 - - uid: 8543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 1 - - uid: 8659 - components: - - type: Transform - pos: -4.5,21.5 - parent: 1 - - uid: 8660 - components: - - type: Transform - pos: -5.5,21.5 - parent: 1 - - uid: 8661 - components: - - type: Transform - pos: -17.5,31.5 - parent: 1 - - uid: 8722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - - uid: 8723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 1 - - uid: 9174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 1 - - uid: 9175 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 1 - - uid: 9176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 1 - - uid: 9579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,33.5 - parent: 1 - - uid: 9607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,33.5 - parent: 1 - - uid: 9914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-36.5 - parent: 1 - - uid: 17590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,34.5 - parent: 1 -- proto: ChairPilotSeat - entities: - - uid: 4306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,79.5 - parent: 1 - - uid: 4307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,79.5 - parent: 1 - - uid: 4308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,82.5 - parent: 1 - - uid: 4309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,82.5 - parent: 1 - - uid: 4310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,81.5 - parent: 1 - - uid: 4311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,81.5 - parent: 1 - - uid: 4312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,82.5 - parent: 1 - - uid: 4313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,82.5 - parent: 1 - - uid: 8123 - components: - - type: Transform - pos: 10.5,60.5 - parent: 1 - - uid: 8124 - components: - - type: Transform - pos: 11.5,60.5 - parent: 1 - - uid: 8857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 8756 - - uid: 8858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 8756 - - uid: 8859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 8756 - - uid: 8860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 8756 - - uid: 8885 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 8756 - - uid: 8895 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,2.5 - parent: 8756 -- proto: ChairWood - entities: - - uid: 4059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,6.5 - parent: 1 - - uid: 4064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 1 - - uid: 4065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 1 - - uid: 7029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,2.5 - parent: 1 - - uid: 7345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,47.5 - parent: 1 - - uid: 7346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,49.5 - parent: 1 - - uid: 8254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 1 - - uid: 8684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - - uid: 8685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - - uid: 8686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 1 - - uid: 8691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 1 - - uid: 8692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1 - - uid: 8898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 1 - - uid: 8899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 1 - - uid: 8901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 1 - - uid: 8916 - components: - - type: Transform - pos: -11.5,3.5 - parent: 1 - - uid: 8917 - components: - - type: Transform - pos: -10.5,3.5 - parent: 1 - - uid: 8918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 1 - - uid: 8919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,1.5 - parent: 1 - - uid: 8924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 1 - - uid: 8925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 1 - - uid: 8927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,7.5 - parent: 1 - - uid: 8932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 1 - - uid: 8934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - - uid: 8935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - - uid: 8936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - - uid: 8937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - - uid: 8938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 1 - - uid: 8943 - components: - - type: Transform - pos: 3.5,9.5 - parent: 1 - - uid: 8947 - components: - - type: Transform - pos: -11.5,-2.5 - parent: 1 - - uid: 8948 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 1 - - uid: 8949 - components: - - type: Transform - pos: -5.5,3.5 - parent: 1 - - uid: 8950 - components: - - type: Transform - pos: -4.5,3.5 - parent: 1 - - uid: 8951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-4.5 - parent: 1 - - uid: 8952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-4.5 - parent: 1 - - uid: 9282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,10.5 - parent: 1 - - uid: 9341 - components: - - type: Transform - pos: -42.5,8.5 - parent: 1 - - uid: 9870 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 1 - - uid: 10939 - components: - - type: Transform - pos: 35.5,-20.5 - parent: 1 - - uid: 13471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,64.5 - parent: 1 - - uid: 13476 - components: - - type: Transform - pos: -12.5,65.5 - parent: 1 - - uid: 18099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,55.5 - parent: 1 - - uid: 18100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,52.5 - parent: 1 - - uid: 18419 - components: - - type: Transform - pos: -29.5,57.5 - parent: 1 -- proto: CheapLighter - entities: - - uid: 8106 - components: - - type: Transform - pos: 6.550927,72.406364 - parent: 1 - - uid: 8460 - components: - - type: Transform - pos: 12.457194,70.49379 - parent: 1 - - uid: 11057 - components: - - type: Transform - pos: 17.68046,-0.38290828 - parent: 1 - - uid: 13334 - components: - - type: Transform - pos: -12.437875,10.642552 - parent: 1 - - uid: 17384 - components: - - type: Transform - pos: -49.49224,16.547865 - parent: 1 - - uid: 18325 - components: - - type: Transform - pos: -0.54356754,-5.4461226 - parent: 1 -- proto: CheapRollerBed - entities: - - uid: 3686 - components: - - type: Transform - pos: 12.461244,31.655691 - parent: 1 -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 1759 - components: - - type: Transform - pos: 12.612317,24.547678 - parent: 1 - - uid: 8514 - components: - - type: Transform - pos: 12.643567,25.563303 - parent: 1 - - uid: 8557 - components: - - type: Transform - pos: 12.627942,25.032053 - parent: 1 -- proto: chem_master - entities: - - uid: 4046 - components: - - type: Transform - pos: 2.5,21.5 - parent: 1 - - uid: 4047 - components: - - type: Transform - pos: 8.5,24.5 - parent: 1 -- proto: ChemDispenser - entities: - - uid: 4050 - components: - - type: Transform - pos: 2.5,22.5 - parent: 1 - - uid: 4051 - components: - - type: Transform - pos: 7.5,24.5 - parent: 1 -- proto: ChemistryHotplate - entities: - - uid: 4052 - components: - - type: Transform - pos: 5.5,22.5 - parent: 1 -- proto: ChessBoard - entities: - - uid: 10071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.55108,-17.47344 - parent: 1 - - uid: 17380 - components: - - type: Transform - pos: -47.624664,35.52521 - parent: 1 -- proto: ChurchOrganInstrument - entities: - - uid: 8375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,49.5 - parent: 1 -- proto: Cigar - entities: - - uid: 9954 - components: - - type: Transform - pos: -38.443047,-11.989926 - parent: 1 - - uid: 9955 - components: - - type: Transform - pos: -38.443047,-11.989926 - parent: 1 - - uid: 13401 - components: - - type: Transform - pos: -23.455694,43.57468 - parent: 1 -- proto: CigaretteSpent - entities: - - uid: 9935 - components: - - type: Transform - pos: -22.582382,-29.382385 - parent: 1 - - uid: 9936 - components: - - type: Transform - pos: -22.454592,-29.29724 - parent: 1 - - uid: 18326 - components: - - type: Transform - pos: -0.79409397,-5.3871837 - parent: 1 - - uid: 18327 - components: - - type: Transform - pos: -0.83830374,-5.2693057 - parent: 1 -- proto: CigarGold - entities: - - uid: 8103 - components: - - type: Transform - pos: 4.563099,71.78196 - parent: 1 - - uid: 8459 - components: - - type: Transform - pos: 12.343604,70.664085 - parent: 1 - - uid: 17382 - components: - - type: Transform - pos: -49.609077,16.675528 - parent: 1 -- proto: CigarSpent - entities: - - uid: 13402 - components: - - type: Transform - pos: -23.228514,43.489532 - parent: 1 -- proto: CigCartonBlack - entities: - - uid: 13332 - components: - - type: Transform - pos: -12.518449,10.410398 - parent: 1 -- proto: CigPackGreen - entities: - - uid: 18324 - components: - - type: Transform - pos: -0.35198832,-5.3871837 - parent: 1 -- proto: CigPackRed - entities: - - uid: 11056 - components: - - type: Transform - pos: 17.282892,-0.41129082 - parent: 1 -- proto: CircuitImprinter - entities: - - uid: 3551 - components: - - type: Transform - pos: -5.5,24.5 - parent: 1 -- proto: ClosetBase - entities: - - uid: 9867 - components: - - type: Transform - pos: -34.5,-21.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetBombFilled - entities: - - uid: 8170 - components: - - type: Transform - pos: -5.2650685,56.347507 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.4919806 - - 13.136498 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8178 - components: - - type: Transform - pos: -15.5,40.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetChefFilled - entities: - - uid: 2695 - components: - - type: Transform - pos: 8.5,0.5 - parent: 1 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 4272 - components: - - type: Transform - pos: -8.5,77.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7676 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 1 - - uid: 8417 - components: - - type: Transform - pos: -47.5,44.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8462 - components: - - type: Transform - pos: 12.5,66.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8664 - components: - - type: Transform - pos: -20.5,17.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8741 - components: - - type: Transform - pos: -14.5,-39.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9387 - components: - - type: Transform - pos: 48.5,-6.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9458 - components: - - type: Transform - pos: 47.5,44.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9460 - components: - - type: Transform - pos: 49.5,12.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9465 - components: - - type: Transform - pos: -50.5,12.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9471 - components: - - type: Transform - pos: -30.5,18.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9473 - components: - - type: Transform - pos: 29.5,-1.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9558 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9893 - components: - - type: Transform - pos: 9.5,64.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9980 - components: - - type: Transform - pos: -15.5,-22.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10061 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10078 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10086 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10118 - components: - - type: Transform - pos: 18.5,-30.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10129 - components: - - type: Transform - pos: 33.5,-12.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10131 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11049 - components: - - type: Transform - pos: 15.5,0.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11065 - components: - - type: Transform - pos: 17.5,10.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13154 - components: - - type: Transform - pos: 18.5,18.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13167 - components: - - type: Transform - pos: 25.5,28.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13308 - components: - - type: Transform - pos: -28.5,0.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13323 - components: - - type: Transform - pos: -16.5,10.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13350 - components: - - type: Transform - pos: -34.5,19.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13356 - components: - - type: Transform - pos: -35.5,34.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13387 - components: - - type: Transform - pos: -24.5,33.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13396 - components: - - type: Transform - pos: -23.5,41.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13410 - components: - - type: Transform - pos: -19.5,56.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13449 - components: - - type: Transform - pos: -42.5,46.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13467 - components: - - type: Transform - pos: -5.5,69.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14012 - components: - - type: Transform - pos: 3.5,40.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14018 - components: - - type: Transform - pos: 20.5,47.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14041 - components: - - type: Transform - pos: 27.5,41.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14054 - components: - - type: Transform - pos: 33.5,52.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetFireFilled - entities: - - uid: 4392 - components: - - type: Transform - pos: 17.5,-30.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7015 - components: - - type: Transform - pos: 20.5,46.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7681 - components: - - type: Transform - pos: -28.5,-24.5 - parent: 1 - - uid: 8060 - components: - - type: Transform - pos: 7.5,76.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8416 - components: - - type: Transform - pos: -46.5,44.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8463 - components: - - type: Transform - pos: 11.5,66.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8586 - components: - - type: Transform - pos: -9.5,19.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8742 - components: - - type: Transform - pos: -14.5,-40.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9457 - components: - - type: Transform - pos: 46.5,44.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9461 - components: - - type: Transform - pos: 48.5,12.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9462 - components: - - type: Transform - pos: 49.5,-6.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9466 - components: - - type: Transform - pos: -49.5,12.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9470 - components: - - type: Transform - pos: -30.5,19.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9472 - components: - - type: Transform - pos: 29.5,-2.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9894 - components: - - type: Transform - pos: 8.5,64.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9981 - components: - - type: Transform - pos: -15.5,-21.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10060 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10079 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10085 - components: - - type: Transform - pos: -15.5,-35.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10130 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11050 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11064 - components: - - type: Transform - pos: 17.5,11.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13166 - components: - - type: Transform - pos: 25.5,29.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13309 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13324 - components: - - type: Transform - pos: -16.5,9.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13351 - components: - - type: Transform - pos: -34.5,18.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13357 - components: - - type: Transform - pos: -36.5,34.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13369 - components: - - type: Transform - pos: -28.5,17.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13386 - components: - - type: Transform - pos: -24.5,34.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13395 - components: - - type: Transform - pos: -23.5,40.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13409 - components: - - type: Transform - pos: -19.5,55.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13448 - components: - - type: Transform - pos: -42.5,45.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13466 - components: - - type: Transform - pos: -5.5,70.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14011 - components: - - type: Transform - pos: 2.5,40.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14032 - components: - - type: Transform - pos: 27.5,40.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14055 - components: - - type: Transform - pos: 34.5,52.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetJanitorFilled - entities: - - uid: 9261 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetL3JanitorFilled - entities: - - uid: 9260 - components: - - type: Transform - pos: 21.5,-2.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetL3ScienceFilled - entities: - - uid: 6596 - components: - - type: Transform - pos: -8.5,19.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6597 - components: - - type: Transform - pos: -15.5,28.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetLegalFilled - entities: - - uid: 9295 - components: - - type: Transform - pos: 7.5,61.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 1093 - components: - - type: Transform - pos: -28.5,18.5 - parent: 1 - - uid: 7675 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 1 - - uid: 9898 - components: - - type: Transform - pos: 4.5,40.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9979 - components: - - type: Transform - pos: -15.5,-23.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10062 - components: - - type: Transform - pos: -34.5,-12.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10119 - components: - - type: Transform - pos: 19.5,-30.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10128 - components: - - type: Transform - pos: 34.5,-12.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10132 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11047 - components: - - type: Transform - pos: 15.5,1.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11067 - components: - - type: Transform - pos: 17.5,9.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13153 - components: - - type: Transform - pos: 18.5,19.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13168 - components: - - type: Transform - pos: 25.5,27.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13310 - components: - - type: Transform - pos: -28.5,-1.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13320 - components: - - type: Transform - pos: -20.5,5.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13322 - components: - - type: Transform - pos: -16.5,11.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13349 - components: - - type: Transform - pos: -34.5,20.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13355 - components: - - type: Transform - pos: -34.5,34.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13388 - components: - - type: Transform - pos: -24.5,32.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13408 - components: - - type: Transform - pos: -22.5,54.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13423 - components: - - type: Transform - pos: -25.5,58.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13447 - components: - - type: Transform - pos: -44.5,46.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13468 - components: - - type: Transform - pos: -5.5,68.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13478 - components: - - type: Transform - pos: -12.5,63.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13999 - components: - - type: Transform - pos: 10.5,64.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14019 - components: - - type: Transform - pos: 20.5,48.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14056 - components: - - type: Transform - pos: 35.5,52.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 6598 - components: - - type: Transform - pos: -15.5,27.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6599 - components: - - type: Transform - pos: -7.5,19.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7156 - components: - - type: Transform - pos: 11.5,-40.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10127 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetToolFilled - entities: - - uid: 7155 - components: - - type: Transform - pos: 11.5,-39.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8743 - components: - - type: Transform - pos: -14.5,-41.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10930 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11071 - components: - - type: Transform - pos: 17.5,2.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13372 - components: - - type: Transform - pos: -28.5,21.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 2.0214376 - - 7.6044564 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13424 - components: - - type: Transform - pos: -21.5,58.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 8896 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 8756 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 2.747938 - - 10.337481 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8897 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 8756 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 2.747938 - - 10.337481 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClothingBackpackClown - entities: - - uid: 6611 - components: - - type: Transform - pos: -16.569172,-0.39851928 - parent: 1 -- proto: ClothingBackpackMerc - entities: - - uid: 6921 - components: - - type: Transform - pos: -42.38712,-12.466305 - parent: 1 -- proto: ClothingBackpackSatchelLeather - entities: - - uid: 18320 - components: - - type: Transform - pos: 40.47693,-7.527403 - parent: 1 - - uid: 18321 - components: - - type: Transform - pos: -33.544666,54.621593 - parent: 1 -- proto: ClothingBeltChampion - entities: - - uid: 7259 - components: - - type: Transform - pos: 4.51736,45.55318 - parent: 1 -- proto: ClothingBeltHolster - entities: - - uid: 9333 - components: - - type: Transform - pos: -43.116463,7.68436 - parent: 1 - - uid: 17749 - components: - - type: Transform - pos: -15.469988,66.40932 - parent: 1 -- proto: ClothingBeltMercWebbing - entities: - - uid: 7776 - components: - - type: Transform - pos: -39.31486,-19.325691 - parent: 1 -- proto: ClothingBeltPlant - entities: - - uid: 4242 - components: - - type: Transform - pos: 15.602159,8.388835 - parent: 1 -- proto: ClothingBeltUtility - entities: - - uid: 9621 - components: - - type: Transform - pos: -43.50088,-2.459965 - parent: 1 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 4702 - components: - - type: Transform - pos: -17.489521,17.578913 - parent: 1 - - uid: 9114 - components: - - type: Transform - pos: 10.45504,-18.357496 - parent: 1 - - uid: 18097 - components: - - type: Transform - pos: -32.452248,55.430744 - parent: 1 -- proto: ClothingEyesGlasses - entities: - - uid: 6669 - components: - - type: Transform - pos: -26.470171,6.9534106 - parent: 1 - - uid: 8081 - components: - - type: Transform - pos: -0.46738756,83.39493 - parent: 1 - - uid: 8129 - components: - - type: Transform - pos: 10.319884,59.595665 - parent: 1 - - uid: 8492 - components: - - type: Transform - pos: 15.420103,32.434727 - parent: 1 - - uid: 9271 - components: - - type: Transform - pos: 24.589664,11.557829 - parent: 1 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 8082 - components: - - type: Transform - pos: -7.367997,79.81877 - parent: 1 - - uid: 9189 - components: - - type: Transform - pos: 9.406997,-15.281609 - parent: 1 -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 8247 - components: - - type: Transform - pos: -12.668796,47.542213 - parent: 1 -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 18101 - components: - - type: Transform - pos: -29.678068,53.78091 - parent: 1 -- proto: ClothingHandsGlovesBoxingGreen - entities: - - uid: 18102 - components: - - type: Transform - pos: -29.522928,53.4829 - parent: 1 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 8700 - components: - - type: Transform - pos: -13.44191,-34.247616 - parent: 1 - - uid: 9093 - components: - - type: Transform - pos: 7.4150662,-11.358664 - parent: 1 - - uid: 9239 - components: - - type: Transform - pos: -21.620941,-13.378785 - parent: 1 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 7464 - components: - - type: Transform - pos: 18.631903,31.596643 - parent: 1 -- proto: ClothingHandsGlovesLeather - entities: - - uid: 4235 - components: - - type: Transform - pos: 15.58796,8.644276 - parent: 1 -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 18476 - components: - - type: Transform - pos: 22.441998,-12.412416 - parent: 1 -- proto: ClothingHeadHatBunny - entities: - - uid: 10095 - components: - - type: Transform - pos: -13.595756,-19.311182 - parent: 1 -- proto: ClothingHeadHatChef - entities: - - uid: 18450 - components: - - type: Transform - pos: 8.40042,-2.435669 - parent: 1 -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 10938 - components: - - type: Transform - pos: 33.51424,-17.677885 - parent: 1 -- proto: ClothingHeadHatFedoraGrey - entities: - - uid: 18348 - components: - - type: Transform - pos: -46.5004,47.295025 - parent: 1 -- proto: ClothingHeadHatFez - entities: - - uid: 11078 - components: - - type: Transform - pos: 20.427416,11.411529 - parent: 1 -- proto: ClothingHeadHatHairflower - entities: - - uid: 7260 - components: - - type: Transform - pos: 4.375372,45.69509 - parent: 1 -- proto: ClothingHeadHatHoodCulthood - entities: - - uid: 9864 - components: - - type: Transform - pos: -37.818073,-17.247238 - parent: 1 -- proto: ClothingHeadHatJesterAlt - entities: - - uid: 18417 - components: - - type: Transform - pos: -28.410465,52.86911 - parent: 1 -- proto: ClothingHeadHatMimesoftFlipped - entities: - - uid: 6617 - components: - - type: Transform - pos: -15.675494,5.6185107 - parent: 1 -- proto: ClothingHeadHatOutlawHat - entities: - - uid: 17760 - components: - - type: Transform - pos: -18.557217,-21.471539 - parent: 1 -- proto: ClothingHeadHatPumpkin - entities: - - uid: 4237 - components: - - type: Transform - pos: 15.36078,8.743613 - parent: 1 -- proto: ClothingHeadHatPwig - entities: - - uid: 8130 - components: - - type: Transform - pos: 11.512583,59.624046 - parent: 1 -- proto: ClothingHeadHatQMsoftFlipped - entities: - - uid: 9331 - components: - - type: Transform - pos: -42.387295,7.580193 - parent: 1 -- proto: ClothingHeadHatWelding - entities: - - uid: 8347 - components: - - type: Transform - pos: -28.660612,29.63867 - parent: 1 -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 9886 - components: - - type: Transform - pos: -28.362438,31.526087 - parent: 1 -- proto: ClothingHeadHatXmasCrown - entities: - - uid: 611 - components: - - type: Transform - pos: 8.417196,2.4837458 - parent: 1 - - uid: 613 - components: - - type: Transform - pos: 8.589071,2.3899958 - parent: 1 -- proto: ClothingHeadHelmetRiot - entities: - - uid: 4057 - components: - - type: Transform - pos: -19.491697,40.80205 - parent: 1 - - uid: 7799 - components: - - type: Transform - pos: -19.335447,40.598927 - parent: 1 -- proto: ClothingHeadNurseHat - entities: - - uid: 3624 - components: - - type: Transform - pos: 9.456723,19.606298 - parent: 1 -- proto: ClothingHeadPyjamaSyndicatePink - entities: - - uid: 8399 - components: - - type: Transform - pos: 18.72468,47.52865 - parent: 1 -- proto: ClothingMaskGas - entities: - - uid: 7157 - components: - - type: Transform - pos: 11.357593,-37.31936 - parent: 1 - - uid: 7158 - components: - - type: Transform - pos: 11.641568,-37.518036 - parent: 1 - - uid: 9094 - components: - - type: Transform - pos: 7.6234,-11.483664 - parent: 1 - - uid: 9969 - components: - - type: Transform - pos: -20.622124,-24.324959 - parent: 1 -- proto: ClothingMaskGasAtmos - entities: - - uid: 8744 - components: - - type: Transform - pos: -12.37689,-41.391964 - parent: 1 -- proto: ClothingNeckAromanticPin - entities: - - uid: 17713 - components: - - type: Transform - pos: 43.669888,38.451065 - parent: 1 -- proto: ClothingNeckAsexualPin - entities: - - uid: 17714 - components: - - type: Transform - pos: 1.4304651,57.357273 - parent: 1 -- proto: ClothingNeckBisexualPin - entities: - - uid: 17715 - components: - - type: Transform - pos: -44.6231,38.434673 - parent: 1 -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 17734 - components: - - type: Transform - pos: 7.523013,47.61037 - parent: 1 -- proto: ClothingNeckCloakHerald - entities: - - uid: 17736 - components: - - type: Transform - pos: 50.46923,40.362823 - parent: 1 -- proto: ClothingNeckCloakMiner - entities: - - uid: 17653 - components: - - type: Transform - pos: -44.542686,34.539337 - parent: 1 -- proto: ClothingNeckIntersexPin - entities: - - uid: 4027 - components: - - type: Transform - pos: -0.6386776,-0.42031726 - parent: 1 -- proto: ClothingNeckLesbianPin - entities: - - uid: 17717 - components: - - type: Transform - pos: -16.415733,-15.699648 - parent: 1 -- proto: ClothingNeckLGBTPin - entities: - - uid: 17712 - components: - - type: Transform - pos: 14.597307,15.443957 - parent: 1 -- proto: ClothingNeckMantleCap - entities: - - uid: 8883 - components: - - type: Transform - pos: -7.486513,72.816246 - parent: 1 -- proto: ClothingNeckMantleCE - entities: - - uid: 8887 - components: - - type: Transform - pos: 6.0722814,-25.273577 - parent: 1 -- proto: ClothingNeckMantleCMO - entities: - - uid: 8888 - components: - - type: Transform - pos: 16.477184,33.464405 - parent: 1 -- proto: ClothingNeckMantleHOP - entities: - - uid: 9272 - components: - - type: Transform - pos: 23.735497,11.474496 - parent: 1 -- proto: ClothingNeckMantleHOS - entities: - - uid: 6828 - components: - - type: Transform - pos: -13.651763,60.464382 - parent: 1 -- proto: ClothingNeckMantleQM - entities: - - uid: 8884 - components: - - type: Transform - pos: -43.55383,11.723603 - parent: 1 -- proto: ClothingNeckMantleRD - entities: - - uid: 8345 - components: - - type: Transform - pos: -23.611712,20.376474 - parent: 1 -- proto: ClothingNeckNonBinaryPin - entities: - - uid: 17718 - components: - - type: Transform - pos: 24.628267,-1.6318419 - parent: 1 -- proto: ClothingNeckPansexualPin - entities: - - uid: 17719 - components: - - type: Transform - pos: 21.441319,19.536022 - parent: 1 -- proto: ClothingNeckStethoscope - entities: - - uid: 8491 - components: - - type: Transform - pos: 16.445831,32.692505 - parent: 1 - - uid: 9606 - components: - - type: Transform - pos: 3.3985047,31.605078 - parent: 1 -- proto: ClothingNeckTieRed - entities: - - uid: 10936 - components: - - type: Transform - pos: 33.429047,-17.73465 - parent: 1 -- proto: ClothingNeckTransPin - entities: - - uid: 17720 - components: - - type: Transform - pos: 19.415567,41.43221 - parent: 1 - - uid: 17721 - components: - - type: Transform - pos: -4.304539,54.705074 - parent: 1 -- proto: ClothingOuterApronBotanist - entities: - - uid: 4243 - components: - - type: Transform - pos: 5.6728125,7.328458 - parent: 1 -- proto: ClothingOuterArmorRiot - entities: - - uid: 4127 - components: - - type: Transform - pos: -19.444822,40.4583 - parent: 1 - - uid: 7714 - components: - - type: Transform - pos: -19.632322,40.661427 - parent: 1 -- proto: ClothingOuterCoatInspector - entities: - - uid: 10937 - components: - - type: Transform - pos: 33.429047,-17.59274 - parent: 1 -- proto: ClothingOuterCoatJensen - entities: - - uid: 18357 - components: - - type: Transform - pos: 37.44033,50.617104 - parent: 1 -- proto: ClothingOuterGhostSheet - entities: - - uid: 18107 - components: - - type: Transform - pos: -13.221982,69.88774 - parent: 1 - - uid: 18108 - components: - - type: Transform - pos: 35.625576,-21.402008 - parent: 1 -- proto: ClothingOuterHardsuitSalvage - entities: - - uid: 8499 - components: - - type: Transform - pos: -36.512154,23.610739 - parent: 1 -- proto: ClothingOuterHoodieChaplain - entities: - - uid: 8378 - components: - - type: Transform - pos: 24.56557,54.496185 - parent: 1 -- proto: ClothingOuterRobesCult - entities: - - uid: 9861 - components: - - type: Transform - pos: -37.519897,-17.403341 - parent: 1 -- proto: ClothingOuterVestWebMerc - entities: - - uid: 7772 - components: - - type: Transform - pos: -24.647196,-32.421364 - parent: 1 - - uid: 17750 - components: - - type: Transform - pos: 20.426132,60.536144 - parent: 1 -- proto: ClothingShoesBootsCombatFilled - entities: - - uid: 17751 - components: - - type: Transform - pos: 34.459908,-27.393188 - parent: 1 -- proto: ClothingShoesBootsJack - entities: - - uid: 18358 - components: - - type: Transform - pos: 37.606995,50.742104 - parent: 1 -- proto: ClothingShoesBootsMag - entities: - - uid: 4367 - components: - - type: Transform - pos: 25.694765,31.717653 - parent: 1 - - uid: 8706 - components: - - type: Transform - pos: -13.482979,-24.072556 - parent: 1 -- proto: ClothingShoesBootsMerc - entities: - - uid: 6920 - components: - - type: Transform - pos: -42.277744,-12.73193 - parent: 1 -- proto: ClothingShoesBootsPerformer - entities: - - uid: 6625 - components: - - type: Transform - pos: -16.470627,-5.3569727 - parent: 1 -- proto: ClothingShoesBootsWork - entities: - - uid: 9971 - components: - - type: MetaData - desc: Legendary boots worn by the king of the tiders - name: boots of the grey king - - type: Transform - pos: -22.53896,-24.152784 - parent: 1 - - type: NoSlip -- proto: ClothingShoesCult - entities: - - uid: 9862 - components: - - type: Transform - pos: -37.94586,-17.687162 - parent: 1 -- proto: ClothingShoesJester - entities: - - uid: 18416 - components: - - type: Transform - pos: -28.389633,52.43161 - parent: 1 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 18109 - components: - - type: Transform - pos: 35.418114,-20.345602 - parent: 1 -- proto: ClothingUnderSocksCoder - entities: - - uid: 18359 - components: - - type: Transform - pos: 18.34029,46.950535 - parent: 1 -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 14060 - components: - - type: Transform - pos: 21.290764,58.71069 - parent: 1 -- proto: ClothingUniformJumpskirtDetectiveGrey - entities: - - uid: 18347 - components: - - type: Transform - pos: -33.43428,52.538555 - parent: 1 -- proto: ClothingUniformJumpskirtJanimaid - entities: - - uid: 17761 - components: - - type: Transform - pos: -18.64241,-22.485422 - parent: 1 -- proto: ClothingUniformJumpskirtPerformer - entities: - - uid: 6624 - components: - - type: Transform - pos: -16.07306,-5.413738 - parent: 1 -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 8149 - components: - - type: Transform - pos: 21.540764,58.502357 - parent: 1 -- proto: ClothingUniformJumpsuitDetectiveGrey - entities: - - uid: 18346 - components: - - type: Transform - pos: -33.618862,52.69466 - parent: 1 -- proto: ClothingUniformJumpsuitEngineeringHazard - entities: - - uid: 9190 - components: - - type: Transform - pos: 9.531997,-15.469109 - parent: 1 -- proto: ClothingUniformJumpsuitHoSBlue - entities: - - uid: 6827 - components: - - type: Transform - pos: -13.412797,60.456165 - parent: 1 -- proto: ClothingUniformJumpsuitJesterAlt - entities: - - uid: 18415 - components: - - type: Transform - pos: -28.181301,52.660778 - parent: 1 -- proto: ClothingUniformJumpsuitSecBlue - entities: - - uid: 8150 - components: - - type: Transform - pos: 21.707432,58.689857 - parent: 1 -- proto: ClownRecorder - entities: - - uid: 8191 - components: - - type: Transform - pos: -15.323214,-0.60332537 - parent: 1 -- proto: ComfyChair - entities: - - uid: 427 - components: - - type: Transform - pos: -50.5,16.5 - parent: 1 - - uid: 1292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,35.5 - parent: 1 - - uid: 1295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,35.5 - parent: 1 - - uid: 1297 - components: - - type: Transform - pos: -48.5,16.5 - parent: 1 - - uid: 1992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,5.5 - parent: 1 - - uid: 8093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,73.5 - parent: 1 - - uid: 8094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,72.5 - parent: 1 - - uid: 8095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,71.5 - parent: 1 - - uid: 8100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,73.5 - parent: 1 - - uid: 8101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,72.5 - parent: 1 - - uid: 8102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,71.5 - parent: 1 - - uid: 8958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - - uid: 9913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-37.5 - parent: 1 -- proto: ComputerAlert - entities: - - uid: 4191 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 1 - - uid: 4270 - components: - - type: Transform - pos: -6.5,82.5 - parent: 1 - - uid: 4273 - components: - - type: Transform - pos: 5.5,82.5 - parent: 1 - - uid: 7115 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 1 -- proto: ComputerAnalysisConsole - entities: - - uid: 3536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,29.5 - parent: 1 -- proto: computerBodyScanner - entities: - - uid: 1620 - components: - - type: Transform - pos: 4.5,82.5 - parent: 1 - - uid: 4336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,32.5 - parent: 1 - - uid: 8516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,27.5 - parent: 1 -- proto: ComputerBroken - entities: - - uid: 7665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 1 - - uid: 9988 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 1 - - uid: 14033 - components: - - type: Transform - pos: 25.5,58.5 - parent: 1 -- proto: ComputerCargoBounty - entities: - - uid: 9679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,3.5 - parent: 1 -- proto: ComputerCargoOrders - entities: - - uid: 323 - components: - - type: Transform - pos: 1.5,83.5 - parent: 1 - - uid: 4152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,7.5 - parent: 1 -- proto: ComputerCargoShuttle - entities: - - uid: 320 - components: - - type: Transform - pos: 0.5,83.5 - parent: 1 - - uid: 4153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-1.5 - parent: 1 -- proto: ComputerComms - entities: - - uid: 4262 - components: - - type: Transform - pos: -2.5,80.5 - parent: 1 - - uid: 6802 - components: - - type: Transform - pos: -7.5,74.5 - parent: 1 -- proto: ComputerCrewMonitoring - entities: - - uid: 3654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,20.5 - parent: 1 - - uid: 4271 - components: - - type: Transform - pos: 3.5,82.5 - parent: 1 -- proto: ComputerCriminalRecords - entities: - - uid: 258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-3.5 - parent: 1 - - uid: 339 - components: - - type: Transform - pos: 1.5,80.5 - parent: 1 - - uid: 7890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,42.5 - parent: 1 - - uid: 8136 - components: - - type: Transform - pos: -5.5,55.5 - parent: 1 - - uid: 9415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-12.5 - parent: 1 -- proto: ComputerFrame - entities: - - uid: 7442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 1 - - uid: 8889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 8756 -- proto: ComputerId - entities: - - uid: 2900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,2.5 - parent: 1 - - uid: 4256 - components: - - type: Transform - pos: -3.5,80.5 - parent: 1 -- proto: ComputerMedicalRecords - entities: - - uid: 571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,34.5 - parent: 1 - - uid: 3633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,19.5 - parent: 1 -- proto: ComputerPowerMonitoring - entities: - - uid: 4192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-13.5 - parent: 1 - - uid: 4269 - components: - - type: Transform - pos: -4.5,82.5 - parent: 1 - - uid: 10870 - components: - - type: Transform - pos: 27.5,-18.5 - parent: 1 - - uid: 11069 - components: - - type: Transform - pos: 18.5,4.5 - parent: 1 - - uid: 13161 - components: - - type: Transform - pos: 15.5,25.5 - parent: 1 - - uid: 13180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-18.5 - parent: 1 - - uid: 13181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 1 - - uid: 13853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,53.5 - parent: 1 -- proto: ComputerRadar - entities: - - uid: 4257 - components: - - type: Transform - pos: -1.5,80.5 - parent: 1 - - uid: 7798 - components: - - type: Transform - pos: -39.5,18.5 - parent: 1 - - uid: 7934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,21.5 - parent: 1 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 325 - components: - - type: Transform - pos: -1.5,83.5 - parent: 1 - - uid: 3556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,21.5 - parent: 1 - - uid: 18345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,21.5 - parent: 1 -- proto: ComputerSalvageExpedition - entities: - - uid: 1781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,25.5 - parent: 1 -- proto: ComputerShuttleCargo - entities: - - uid: 4154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 1 -- proto: ComputerShuttleSalvage - entities: - - uid: 4370 - components: - - type: Transform - pos: -41.5,26.5 - parent: 1 -- proto: ComputerSolarControl - entities: - - uid: 4194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-15.5 - parent: 1 - - uid: 4268 - components: - - type: Transform - pos: -5.5,82.5 - parent: 1 - - uid: 7152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-40.5 - parent: 1 - - uid: 8010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,54.5 - parent: 1 - - uid: 14046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,54.5 - parent: 1 -- proto: ComputerStationRecords - entities: - - uid: 324 - components: - - type: Transform - pos: -2.5,83.5 - parent: 1 - - uid: 2902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,5.5 - parent: 1 - - uid: 7393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,49.5 - parent: 1 - - uid: 18502 - components: - - type: Transform - pos: -6.5,57.5 - parent: 1 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 4259 - components: - - type: Transform - pos: 2.5,80.5 - parent: 1 - - uid: 6661 - components: - - type: Transform - pos: -34.5,-0.5 - parent: 1 - - uid: 7244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-17.5 - parent: 1 - - uid: 7391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,48.5 - parent: 1 - - uid: 7900 - components: - - type: Transform - pos: 43.5,44.5 - parent: 1 - - uid: 8135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,52.5 - parent: 1 - - uid: 8181 - components: - - type: Transform - pos: -14.5,56.5 - parent: 1 - - uid: 9414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-11.5 - parent: 1 -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 4260 - components: - - type: Transform - pos: 0.5,80.5 - parent: 1 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 2633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,30.5 - parent: 1 -- proto: ContrabassInstrument - entities: - - uid: 1664 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 1 -- proto: ConveyorBelt - entities: - - uid: 252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,1.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7815 - - uid: 459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8179 - - uid: 460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8179 - - uid: 461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8179 - - uid: 1767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,24.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7918 - - 7808 - - uid: 2127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8179 - - uid: 2722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8179 - - uid: 2723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,1.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7815 - - uid: 3830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-32.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4007 - - uid: 3994 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4007 - - uid: 3995 - components: - - type: Transform - pos: 19.5,-39.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4007 - - uid: 3996 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4007 - - uid: 3997 - components: - - type: Transform - pos: 19.5,-36.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4007 - - uid: 3998 - components: - - type: Transform - pos: 19.5,-35.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4007 - - uid: 3999 - components: - - type: Transform - pos: 19.5,-34.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4007 - - uid: 4000 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4007 - - uid: 4001 - components: - - type: Transform - pos: 19.5,-32.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4007 - - uid: 4002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-32.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4007 - - uid: 4110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,22.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7918 - - 7808 - - uid: 4115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,22.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7918 - - 7808 - - uid: 4130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,22.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7918 - - 7808 - - uid: 4134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,24.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7918 - - 7808 - - uid: 4146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9364 - - uid: 4147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9364 - - uid: 7254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,1.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7815 - - uid: 7291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,1.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7815 - - uid: 7704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,1.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7815 - - uid: 7818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,22.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7918 - - 7808 - - uid: 7820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,24.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7918 - - 7808 - - uid: 7821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,24.5 - parent: 1 - - type: DeviceLinkSink - links: - - 7918 - - 7808 -- proto: CornSeeds - entities: - - uid: 8277 - components: - - type: Transform - pos: -29.621134,44.53177 - parent: 1 -- proto: CowToolboxFilled - entities: - - uid: 13384 - components: - - type: Transform - pos: -17.809574,28.530706 - parent: 1 -- proto: CrateArtifactContainer - entities: - - uid: 3550 - components: - - type: Transform - pos: -9.5,34.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEmptySpawner - entities: - - uid: 5555 - components: - - type: Transform - pos: -20.5,9.5 - parent: 1 - - uid: 9317 - components: - - type: Transform - pos: -41.5,0.5 - parent: 1 - - uid: 9318 - components: - - type: Transform - pos: -39.5,0.5 - parent: 1 - - uid: 9319 - components: - - type: Transform - pos: -39.5,1.5 - parent: 1 - - uid: 9320 - components: - - type: Transform - pos: -40.5,1.5 - parent: 1 - - uid: 9448 - components: - - type: Transform - pos: -45.5,-6.5 - parent: 1 - - uid: 9449 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 1 -- proto: CrateEngineeringAMEJar - entities: - - uid: 9025 - components: - - type: Transform - pos: 8.5,-36.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 9024 - components: - - type: Transform - pos: 4.5,-36.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9026 - components: - - type: Transform - pos: 5.5,-36.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringCableBulk - entities: - - uid: 4185 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4592 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13183 - components: - - type: Transform - pos: -23.5,-3.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringCableHV - entities: - - uid: 7153 - components: - - type: Transform - pos: 13.5,-39.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13441 - components: - - type: Transform - pos: -37.5,55.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13442 - components: - - type: Transform - pos: 38.5,55.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringElectricalSupplies - entities: - - uid: 4593 - components: - - type: Transform - pos: 4.5,-19.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringGear - entities: - - uid: 13439 - components: - - type: Transform - pos: -25.5,52.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFilledSpawner - entities: - - uid: 5556 - components: - - type: Transform - pos: -20.5,10.5 - parent: 1 - - uid: 9311 - components: - - type: Transform - pos: -40.5,0.5 - parent: 1 - - uid: 9312 - components: - - type: Transform - pos: -41.5,1.5 - parent: 1 - - uid: 9313 - components: - - type: Transform - pos: -41.5,2.5 - parent: 1 - - uid: 9314 - components: - - type: Transform - pos: -39.5,3.5 - parent: 1 - - uid: 9315 - components: - - type: Transform - pos: -39.5,4.5 - parent: 1 - - uid: 9316 - components: - - type: Transform - pos: -40.5,4.5 - parent: 1 -- proto: CrateFreezer - entities: - - uid: 4062 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFunArtSupplies - entities: - - uid: 9363 - components: - - type: Transform - pos: -40.5,3.5 - parent: 1 -- proto: CrateMedicalSurgery - entities: - - uid: 8515 - components: - - type: Transform - pos: 2.5,28.5 - parent: 1 -- proto: CrateMindShieldImplants - entities: - - uid: 7690 - components: - - type: Transform - pos: -6.5,61.5 - parent: 1 -- proto: CrateNPCCow - entities: - - uid: 3804 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 1 - - type: EntityStorage - air: - volume: 800 - immutable: False - temperature: 293.14987 - moles: - - 13.772371 - - 51.81035 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateServiceBureaucracy - entities: - - uid: 9321 - components: - - type: Transform - pos: -40.5,2.5 - parent: 1 -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 9378 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 1 -- proto: CrateTrackingImplants - entities: - - uid: 9110 - components: - - type: Transform - pos: -6.5,62.5 - parent: 1 -- proto: CrateWeaponSecure - entities: - - uid: 1836 - components: - - type: Transform - pos: -4.5,62.5 - parent: 1 -- proto: CrayonBox - entities: - - uid: 8283 - components: - - type: Transform - pos: -28.997604,44.572357 - parent: 1 - - uid: 8472 - components: - - type: Transform - pos: 20.349487,40.573277 - parent: 1 -- proto: CrayonMime - entities: - - uid: 6618 - components: - - type: Transform - pos: -15.95947,5.6185107 - parent: 1 -- proto: CrayonPurple - entities: - - uid: 8473 - components: - - type: Transform - pos: 20.718657,40.559086 - parent: 1 -- proto: Crematorium - entities: - - uid: 4403 - components: - - type: Transform - pos: 32.5,56.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrewMonitoringServer - entities: - - uid: 8882 - components: - - type: Transform - pos: 14.5,25.5 - parent: 1 -- proto: Crowbar - entities: - - uid: 9970 - components: - - type: Transform - pos: -20.366545,-24.481062 - parent: 1 - - uid: 18414 - components: - - type: Transform - pos: -5.550656,32.42306 - parent: 1 -- proto: CryoPod - entities: - - uid: 6368 - components: - - type: Transform - pos: 12.5,33.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 6388 - components: - - type: Transform - pos: 9.315549,34.734295 - parent: 1 - - uid: 8527 - components: - - type: Transform - pos: 9.471799,34.609295 - parent: 1 -- proto: CultAltarSpawner - entities: - - uid: 9860 - components: - - type: Transform - pos: -37.5,-16.5 - parent: 1 -- proto: d20Dice - entities: - - uid: 9922 - components: - - type: Transform - pos: -19.295444,-36.252487 - parent: 1 -- proto: d4Dice - entities: - - uid: 9923 - components: - - type: Transform - pos: -19.636215,-36.919468 - parent: 1 -- proto: d6Dice - entities: - - uid: 9957 - components: - - type: Transform - pos: -38.76962,-12.060882 - parent: 1 - - uid: 9958 - components: - - type: Transform - pos: -38.75542,-12.231175 - parent: 1 - - uid: 14027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.553741,58.430557 - parent: 1 - - uid: 14028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.638933,58.82791 - parent: 1 -- proto: DawInstrumentMachineCircuitboard - entities: - - uid: 6621 - components: - - type: Transform - pos: -15.5903015,-5.413738 - parent: 1 -- proto: DecoratedFirTree - entities: - - uid: 2645 - components: - - type: Transform - pos: -28.5,58.5 - parent: 1 -- proto: DefaultStationBeaconAME - entities: - - uid: 8928 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 1 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 8929 - components: - - type: Transform - pos: -16.5,20.5 - parent: 1 -- proto: DefaultStationBeaconArmory - entities: - - uid: 8942 - components: - - type: Transform - pos: -8.5,62.5 - parent: 1 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 8957 - components: - - type: Transform - pos: 47.5,-11.5 - parent: 1 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 9609 - components: - - type: Transform - pos: -9.5,30.5 - parent: 1 -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 8960 - components: - - type: Transform - pos: -8.5,-23.5 - parent: 1 -- proto: DefaultStationBeaconBar - entities: - - uid: 8961 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1 -- proto: DefaultStationBeaconBotany - entities: - - uid: 8962 - components: - - type: Transform - pos: 8.5,7.5 - parent: 1 -- proto: DefaultStationBeaconBridge - entities: - - uid: 8963 - components: - - type: Transform - pos: -0.5,81.5 - parent: 1 -- proto: DefaultStationBeaconBrig - entities: - - uid: 8982 - components: - - type: Transform - pos: -9.5,45.5 - parent: 1 -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 8985 - components: - - type: Transform - pos: -7.5,72.5 - parent: 1 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 8986 - components: - - type: Transform - pos: -42.5,3.5 - parent: 1 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 8987 - components: - - type: Transform - pos: -35.5,6.5 - parent: 1 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 8983 - components: - - type: Transform - pos: 6.5,-26.5 - parent: 1 -- proto: DefaultStationBeaconChapel - entities: - - uid: 9036 - components: - - type: Transform - pos: 30.5,48.5 - parent: 1 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 9038 - components: - - type: Transform - pos: 4.5,22.5 - parent: 1 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 8984 - components: - - type: Transform - pos: 14.5,33.5 - parent: 1 -- proto: DefaultStationBeaconCourtroom - entities: - - uid: 9342 - components: - - type: Transform - pos: 8.5,58.5 - parent: 1 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 9375 - components: - - type: Transform - pos: 10.5,30.5 - parent: 1 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 9377 - components: - - type: Transform - pos: 41.5,47.5 - parent: 1 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 9487 - components: - - type: Transform - pos: 18.5,-36.5 - parent: 1 -- proto: DefaultStationBeaconEngineering - entities: - - uid: 9690 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 1 -- proto: DefaultStationBeaconEvac - entities: - - uid: 9688 - components: - - type: Transform - pos: 47.5,15.5 - parent: 1 - - uid: 9689 - components: - - type: Transform - pos: 47.5,36.5 - parent: 1 -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 9490 - components: - - type: Transform - pos: 25.5,32.5 - parent: 1 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 9695 - components: - - type: Transform - pos: -21.5,-18.5 - parent: 1 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 9491 - components: - - type: Transform - pos: 23.5,5.5 - parent: 1 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 9492 - components: - - type: Transform - pos: -14.5,59.5 - parent: 1 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 9493 - components: - - type: Transform - pos: 20.5,-4.5 - parent: 1 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 9494 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 1 -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 9501 - components: - - type: Transform - pos: 2.5,63.5 - parent: 1 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 9581 - components: - - type: Transform - pos: -26.5,8.5 - parent: 1 -- proto: DefaultStationBeaconMedbay - entities: - - uid: 9608 - components: - - type: Transform - pos: 9.5,18.5 - parent: 1 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 9680 - components: - - type: Transform - pos: 20.5,31.5 - parent: 1 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 9610 - components: - - type: Transform - pos: -31.5,46.5 - parent: 1 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 9611 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 1 -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 9612 - components: - - type: Transform - pos: -42.5,10.5 - parent: 1 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 9613 - components: - - type: Transform - pos: -23.5,22.5 - parent: 1 -- proto: DefaultStationBeaconRND - entities: - - uid: 9614 - components: - - type: Transform - pos: -5.5,22.5 - parent: 1 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 8959 - components: - - type: Transform - pos: -17.5,33.5 - parent: 1 -- proto: DefaultStationBeaconSalvage - entities: - - uid: 9681 - components: - - type: Transform - pos: -40.5,26.5 - parent: 1 -- proto: DefaultStationBeaconSecurityCheckpoint - entities: - - uid: 9696 - components: - - type: Transform - pos: 28.5,-12.5 - parent: 1 - - uid: 9697 - components: - - type: Transform - pos: -35.5,-3.5 - parent: 1 - - uid: 9698 - components: - - type: Transform - pos: 42.5,43.5 - parent: 1 -- proto: DefaultStationBeaconSolars - entities: - - uid: 9691 - components: - - type: Transform - pos: -38.5,54.5 - parent: 1 - - uid: 9692 - components: - - type: Transform - pos: 37.5,54.5 - parent: 1 - - uid: 9693 - components: - - type: Transform - pos: 12.5,-40.5 - parent: 1 - - uid: 9694 - components: - - type: Transform - pos: -13.5,-40.5 - parent: 1 -- proto: DefaultStationBeaconTechVault - entities: - - uid: 9683 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 1 -- proto: DefaultStationBeaconTEG - entities: - - uid: 9684 - components: - - type: Transform - pos: -8.5,-43.5 - parent: 1 -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 9682 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 1 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 9685 - components: - - type: Transform - pos: -27.5,31.5 - parent: 1 -- proto: DefaultStationBeaconVault - entities: - - uid: 9687 - components: - - type: Transform - pos: 4.5,47.5 - parent: 1 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 9686 - components: - - type: Transform - pos: -13.5,48.5 - parent: 1 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 1778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,20.5 - parent: 1 - - uid: 4111 - components: - - type: Transform - pos: -25.5,49.5 - parent: 1 - - uid: 6804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,40.5 - parent: 1 - - uid: 6909 - components: - - type: Transform - pos: 40.5,39.5 - parent: 1 - - uid: 6925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 1 - - uid: 6926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,31.5 - parent: 1 - - uid: 7430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,26.5 - parent: 1 - - uid: 7431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 1 - - uid: 7636 - components: - - type: Transform - pos: -12.5,26.5 - parent: 1 - - uid: 7637 - components: - - type: Transform - pos: 3.5,83.5 - parent: 1 - - uid: 7638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - - uid: 7641 - components: - - type: Transform - pos: 9.5,21.5 - parent: 1 - - uid: 7643 - components: - - type: Transform - pos: -10.5,47.5 - parent: 1 - - uid: 7722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,3.5 - parent: 1 - - uid: 7729 - components: - - type: Transform - pos: 1.5,69.5 - parent: 1 - - uid: 7768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-8.5 - parent: 1 - - uid: 7794 - components: - - type: Transform - pos: 28.5,16.5 - parent: 1 - - uid: 7795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,7.5 - parent: 1 - - uid: 7796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 1 - - uid: 7797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,0.5 - parent: 1 -- proto: DeployableBarrier - entities: - - uid: 4383 - components: - - type: Transform - pos: -19.5,44.5 - parent: 1 - - uid: 4384 - components: - - type: Transform - pos: -19.5,45.5 - parent: 1 - - uid: 9675 - components: - - type: Transform - pos: -13.5,52.5 - parent: 1 - - uid: 9676 - components: - - type: Transform - pos: -11.5,52.5 - parent: 1 -- proto: DeskBell - entities: - - uid: 4505 - components: - - type: Transform - pos: -5.772716,20.447916 - parent: 1 - - uid: 4565 - components: - - type: Transform - pos: 4.7110076,20.385416 - parent: 1 - - uid: 4566 - components: - - type: Transform - pos: -6.6414404,-12.133052 - parent: 1 - - uid: 4567 - components: - - type: Transform - pos: 5.5849104,-12.195552 - parent: 1 - - uid: 6152 - components: - - type: Transform - pos: 4.2470655,-2.5974627 - parent: 1 - - uid: 6153 - components: - - type: Transform - pos: 11.743292,-5.633137 - parent: 1 - - uid: 6154 - components: - - type: Transform - pos: -6.2473664,5.4515653 - parent: 1 - - uid: 6193 - components: - - type: Transform - pos: -4.4996243,53.44499 - parent: 1 - - uid: 7655 - components: - - type: Transform - pos: 26.62281,3.3925822 - parent: 1 -- proto: DiceBag - entities: - - uid: 7030 - components: - - type: Transform - pos: -25.707123,3.7152946 - parent: 1 - - uid: 9296 - components: - - type: Transform - pos: 20.707039,40.88435 - parent: 1 - - uid: 9921 - components: - - type: Transform - pos: -19.423235,-37.373585 - parent: 1 -- proto: DiseaseDiagnoser - entities: - - uid: 4080 - components: - - type: Transform - pos: 6.5,34.5 - parent: 1 -- proto: DiseaseSwab - entities: - - uid: 7122 - components: - - type: Transform - pos: -13.290618,28.210794 - parent: 1 - - uid: 7123 - components: - - type: Transform - pos: -13.432607,27.955353 - parent: 1 -- proto: DisposalBend - entities: - - uid: 1784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,24.5 - parent: 1 - - uid: 16494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,70.5 - parent: 1 - - uid: 16500 - components: - - type: Transform - pos: 5.5,76.5 - parent: 1 - - uid: 16558 - components: - - type: Transform - pos: -8.5,53.5 - parent: 1 - - uid: 16559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,50.5 - parent: 1 - - uid: 16603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,37.5 - parent: 1 - - uid: 16604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,38.5 - parent: 1 - - uid: 16612 - components: - - type: Transform - pos: -15.5,31.5 - parent: 1 - - uid: 16613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,31.5 - parent: 1 - - uid: 16642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,37.5 - parent: 1 - - uid: 16643 - components: - - type: Transform - pos: -43.5,42.5 - parent: 1 - - uid: 16644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,42.5 - parent: 1 - - uid: 16657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,23.5 - parent: 1 - - uid: 16662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,18.5 - parent: 1 - - uid: 16744 - components: - - type: Transform - pos: 31.5,43.5 - parent: 1 - - uid: 16766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,37.5 - parent: 1 - - uid: 16788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 1 - - uid: 16800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,28.5 - parent: 1 - - uid: 16808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,28.5 - parent: 1 - - uid: 16827 - components: - - type: Transform - pos: 30.5,26.5 - parent: 1 - - uid: 16836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,21.5 - parent: 1 - - uid: 16852 - components: - - type: Transform - pos: 45.5,13.5 - parent: 1 - - uid: 16867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,13.5 - parent: 1 - - uid: 16898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 1 - - uid: 16899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,14.5 - parent: 1 - - uid: 16933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,14.5 - parent: 1 - - uid: 16973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,22.5 - parent: 1 - - uid: 16974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - - uid: 16975 - components: - - type: Transform - pos: 1.5,13.5 - parent: 1 - - uid: 17020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,5.5 - parent: 1 - - uid: 17033 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 1 - - uid: 17051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,2.5 - parent: 1 - - uid: 17052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,2.5 - parent: 1 - - uid: 17053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 1 - - uid: 17060 - components: - - type: Transform - pos: -31.5,4.5 - parent: 1 - - uid: 17098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-14.5 - parent: 1 - - uid: 17145 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 1 - - uid: 17175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-8.5 - parent: 1 - - uid: 17194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,7.5 - parent: 1 - - uid: 17212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 1 - - uid: 17213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 1 - - uid: 17217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 1 - - uid: 17218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-27.5 - parent: 1 - - uid: 17220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 1 - - uid: 17226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-29.5 - parent: 1 - - uid: 17231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-34.5 - parent: 1 - - uid: 17233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 - parent: 1 -- proto: DisposalJunction - entities: - - uid: 8445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 1 - - uid: 16520 - components: - - type: Transform - pos: 0.5,68.5 - parent: 1 - - uid: 16534 - components: - - type: Transform - pos: 0.5,57.5 - parent: 1 - - uid: 16570 - components: - - type: Transform - pos: 0.5,50.5 - parent: 1 - - uid: 16583 - components: - - type: Transform - pos: 0.5,38.5 - parent: 1 - - uid: 16609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,38.5 - parent: 1 - - uid: 16683 - components: - - type: Transform - pos: 0.5,27.5 - parent: 1 - - uid: 16725 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,37.5 - parent: 1 - - uid: 16738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,37.5 - parent: 1 - - uid: 16772 - components: - - type: Transform - pos: 0.5,18.5 - parent: 1 - - uid: 16792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - - uid: 16821 - components: - - type: Transform - pos: 0.5,15.5 - parent: 1 - - uid: 16833 - components: - - type: Transform - pos: 30.5,21.5 - parent: 1 - - uid: 17025 - components: - - type: Transform - pos: 1.5,1.5 - parent: 1 - - uid: 17104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 1 - - uid: 17132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 1 - - uid: 17178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 1 -- proto: DisposalJunctionFlipped - entities: - - uid: 16543 - components: - - type: Transform - pos: 0.5,52.5 - parent: 1 - - uid: 16584 - components: - - type: Transform - pos: 0.5,37.5 - parent: 1 - - uid: 16622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,37.5 - parent: 1 - - uid: 16698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,37.5 - parent: 1 - - uid: 16773 - components: - - type: Transform - pos: 0.5,17.5 - parent: 1 - - uid: 16822 - components: - - type: Transform - pos: 0.5,14.5 - parent: 1 - - uid: 16922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,14.5 - parent: 1 - - uid: 16930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,14.5 - parent: 1 - - uid: 16946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,14.5 - parent: 1 - - uid: 16971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,14.5 - parent: 1 - - uid: 16993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 1 - - uid: 17023 - components: - - type: Transform - pos: 1.5,5.5 - parent: 1 - - uid: 17024 - components: - - type: Transform - pos: 1.5,2.5 - parent: 1 - - uid: 17027 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 1 - - uid: 17075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 1 - - uid: 17135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 1 - - uid: 17150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 1 -- proto: DisposalPipe - entities: - - uid: 2603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,31.5 - parent: 1 - - uid: 16492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,70.5 - parent: 1 - - uid: 16493 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,70.5 - parent: 1 - - uid: 16495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,71.5 - parent: 1 - - uid: 16496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,72.5 - parent: 1 - - uid: 16497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,73.5 - parent: 1 - - uid: 16498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,74.5 - parent: 1 - - uid: 16499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,75.5 - parent: 1 - - uid: 16501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,76.5 - parent: 1 - - uid: 16502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,76.5 - parent: 1 - - uid: 16503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,76.5 - parent: 1 - - uid: 16504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,76.5 - parent: 1 - - uid: 16506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,76.5 - parent: 1 - - uid: 16507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,76.5 - parent: 1 - - uid: 16508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,76.5 - parent: 1 - - uid: 16509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,76.5 - parent: 1 - - uid: 16510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,76.5 - parent: 1 - - uid: 16511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,76.5 - parent: 1 - - uid: 16512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,76.5 - parent: 1 - - uid: 16513 - components: - - type: Transform - pos: 0.5,75.5 - parent: 1 - - uid: 16514 - components: - - type: Transform - pos: 0.5,74.5 - parent: 1 - - uid: 16515 - components: - - type: Transform - pos: 0.5,73.5 - parent: 1 - - uid: 16516 - components: - - type: Transform - pos: 0.5,72.5 - parent: 1 - - uid: 16517 - components: - - type: Transform - pos: 0.5,71.5 - parent: 1 - - uid: 16518 - components: - - type: Transform - pos: 0.5,70.5 - parent: 1 - - uid: 16519 - components: - - type: Transform - pos: 0.5,69.5 - parent: 1 - - uid: 16521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,68.5 - parent: 1 - - uid: 16522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,68.5 - parent: 1 - - uid: 16524 - components: - - type: Transform - pos: 0.5,67.5 - parent: 1 - - uid: 16525 - components: - - type: Transform - pos: 0.5,66.5 - parent: 1 - - uid: 16526 - components: - - type: Transform - pos: 0.5,65.5 - parent: 1 - - uid: 16527 - components: - - type: Transform - pos: 0.5,64.5 - parent: 1 - - uid: 16528 - components: - - type: Transform - pos: 0.5,63.5 - parent: 1 - - uid: 16529 - components: - - type: Transform - pos: 0.5,62.5 - parent: 1 - - uid: 16530 - components: - - type: Transform - pos: 0.5,61.5 - parent: 1 - - uid: 16531 - components: - - type: Transform - pos: 0.5,60.5 - parent: 1 - - uid: 16532 - components: - - type: Transform - pos: 0.5,59.5 - parent: 1 - - uid: 16533 - components: - - type: Transform - pos: 0.5,58.5 - parent: 1 - - uid: 16537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,57.5 - parent: 1 - - uid: 16538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,57.5 - parent: 1 - - uid: 16539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,57.5 - parent: 1 - - uid: 16540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,52.5 - parent: 1 - - uid: 16541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,52.5 - parent: 1 - - uid: 16542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,52.5 - parent: 1 - - uid: 16544 - components: - - type: Transform - pos: 0.5,56.5 - parent: 1 - - uid: 16545 - components: - - type: Transform - pos: 0.5,55.5 - parent: 1 - - uid: 16546 - components: - - type: Transform - pos: 0.5,54.5 - parent: 1 - - uid: 16547 - components: - - type: Transform - pos: 0.5,53.5 - parent: 1 - - uid: 16550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,53.5 - parent: 1 - - uid: 16551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,53.5 - parent: 1 - - uid: 16552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,53.5 - parent: 1 - - uid: 16553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,53.5 - parent: 1 - - uid: 16554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,53.5 - parent: 1 - - uid: 16555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,53.5 - parent: 1 - - uid: 16556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,53.5 - parent: 1 - - uid: 16557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,53.5 - parent: 1 - - uid: 16560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,52.5 - parent: 1 - - uid: 16561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,51.5 - parent: 1 - - uid: 16562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,50.5 - parent: 1 - - uid: 16563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,50.5 - parent: 1 - - uid: 16564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,50.5 - parent: 1 - - uid: 16565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,50.5 - parent: 1 - - uid: 16566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,50.5 - parent: 1 - - uid: 16567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,50.5 - parent: 1 - - uid: 16568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,50.5 - parent: 1 - - uid: 16569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,50.5 - parent: 1 - - uid: 16571 - components: - - type: Transform - pos: 0.5,51.5 - parent: 1 - - uid: 16572 - components: - - type: Transform - pos: 0.5,49.5 - parent: 1 - - uid: 16573 - components: - - type: Transform - pos: 0.5,48.5 - parent: 1 - - uid: 16574 - components: - - type: Transform - pos: 0.5,47.5 - parent: 1 - - uid: 16575 - components: - - type: Transform - pos: 0.5,46.5 - parent: 1 - - uid: 16576 - components: - - type: Transform - pos: 0.5,45.5 - parent: 1 - - uid: 16577 - components: - - type: Transform - pos: 0.5,44.5 - parent: 1 - - uid: 16578 - components: - - type: Transform - pos: 0.5,43.5 - parent: 1 - - uid: 16579 - components: - - type: Transform - pos: 0.5,42.5 - parent: 1 - - uid: 16580 - components: - - type: Transform - pos: 0.5,41.5 - parent: 1 - - uid: 16581 - components: - - type: Transform - pos: 0.5,40.5 - parent: 1 - - uid: 16582 - components: - - type: Transform - pos: 0.5,39.5 - parent: 1 - - uid: 16585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,38.5 - parent: 1 - - uid: 16586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,38.5 - parent: 1 - - uid: 16587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,38.5 - parent: 1 - - uid: 16588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,38.5 - parent: 1 - - uid: 16589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,38.5 - parent: 1 - - uid: 16590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,38.5 - parent: 1 - - uid: 16591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,38.5 - parent: 1 - - uid: 16592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,38.5 - parent: 1 - - uid: 16593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,38.5 - parent: 1 - - uid: 16594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,38.5 - parent: 1 - - uid: 16595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,38.5 - parent: 1 - - uid: 16596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,38.5 - parent: 1 - - uid: 16597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,38.5 - parent: 1 - - uid: 16598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,38.5 - parent: 1 - - uid: 16599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,38.5 - parent: 1 - - uid: 16600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,38.5 - parent: 1 - - uid: 16601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,38.5 - parent: 1 - - uid: 16602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,38.5 - parent: 1 - - uid: 16605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,38.5 - parent: 1 - - uid: 16606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,38.5 - parent: 1 - - uid: 16607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,38.5 - parent: 1 - - uid: 16608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,38.5 - parent: 1 - - uid: 16615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,31.5 - parent: 1 - - uid: 16616 - components: - - type: Transform - pos: -18.5,32.5 - parent: 1 - - uid: 16617 - components: - - type: Transform - pos: -18.5,33.5 - parent: 1 - - uid: 16618 - components: - - type: Transform - pos: -18.5,34.5 - parent: 1 - - uid: 16619 - components: - - type: Transform - pos: -18.5,35.5 - parent: 1 - - uid: 16620 - components: - - type: Transform - pos: -18.5,36.5 - parent: 1 - - uid: 16621 - components: - - type: Transform - pos: -18.5,37.5 - parent: 1 - - uid: 16624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,37.5 - parent: 1 - - uid: 16625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,37.5 - parent: 1 - - uid: 16626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,37.5 - parent: 1 - - uid: 16627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,37.5 - parent: 1 - - uid: 16628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,37.5 - parent: 1 - - uid: 16629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,37.5 - parent: 1 - - uid: 16630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,37.5 - parent: 1 - - uid: 16631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,37.5 - parent: 1 - - uid: 16632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,37.5 - parent: 1 - - uid: 16633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,37.5 - parent: 1 - - uid: 16634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,37.5 - parent: 1 - - uid: 16635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,37.5 - parent: 1 - - uid: 16636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,37.5 - parent: 1 - - uid: 16637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,37.5 - parent: 1 - - uid: 16638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,37.5 - parent: 1 - - uid: 16639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,37.5 - parent: 1 - - uid: 16640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,37.5 - parent: 1 - - uid: 16641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,37.5 - parent: 1 - - uid: 16645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,42.5 - parent: 1 - - uid: 16646 - components: - - type: Transform - pos: -43.5,41.5 - parent: 1 - - uid: 16647 - components: - - type: Transform - pos: -43.5,40.5 - parent: 1 - - uid: 16648 - components: - - type: Transform - pos: -43.5,39.5 - parent: 1 - - uid: 16649 - components: - - type: Transform - pos: -43.5,38.5 - parent: 1 - - uid: 16650 - components: - - type: Transform - pos: -45.5,43.5 - parent: 1 - - uid: 16656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,23.5 - parent: 1 - - uid: 16658 - components: - - type: Transform - pos: -11.5,22.5 - parent: 1 - - uid: 16659 - components: - - type: Transform - pos: -11.5,21.5 - parent: 1 - - uid: 16660 - components: - - type: Transform - pos: -11.5,20.5 - parent: 1 - - uid: 16661 - components: - - type: Transform - pos: -11.5,19.5 - parent: 1 - - uid: 16663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,18.5 - parent: 1 - - uid: 16664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,18.5 - parent: 1 - - uid: 16665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,18.5 - parent: 1 - - uid: 16666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,18.5 - parent: 1 - - uid: 16667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,18.5 - parent: 1 - - uid: 16668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 1 - - uid: 16669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,18.5 - parent: 1 - - uid: 16670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,18.5 - parent: 1 - - uid: 16671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,18.5 - parent: 1 - - uid: 16672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,18.5 - parent: 1 - - uid: 16673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 1 - - uid: 16674 - components: - - type: Transform - pos: 0.5,36.5 - parent: 1 - - uid: 16675 - components: - - type: Transform - pos: 0.5,35.5 - parent: 1 - - uid: 16676 - components: - - type: Transform - pos: 0.5,34.5 - parent: 1 - - uid: 16677 - components: - - type: Transform - pos: 0.5,33.5 - parent: 1 - - uid: 16678 - components: - - type: Transform - pos: 0.5,32.5 - parent: 1 - - uid: 16679 - components: - - type: Transform - pos: 0.5,31.5 - parent: 1 - - uid: 16680 - components: - - type: Transform - pos: 0.5,30.5 - parent: 1 - - uid: 16681 - components: - - type: Transform - pos: 0.5,29.5 - parent: 1 - - uid: 16682 - components: - - type: Transform - pos: 0.5,28.5 - parent: 1 - - uid: 16684 - components: - - type: Transform - pos: 0.5,26.5 - parent: 1 - - uid: 16685 - components: - - type: Transform - pos: 0.5,25.5 - parent: 1 - - uid: 16686 - components: - - type: Transform - pos: 0.5,24.5 - parent: 1 - - uid: 16687 - components: - - type: Transform - pos: 0.5,23.5 - parent: 1 - - uid: 16688 - components: - - type: Transform - pos: 0.5,22.5 - parent: 1 - - uid: 16689 - components: - - type: Transform - pos: 0.5,21.5 - parent: 1 - - uid: 16690 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1 - - uid: 16691 - components: - - type: Transform - pos: 0.5,19.5 - parent: 1 - - uid: 16696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,27.5 - parent: 1 - - uid: 16699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,37.5 - parent: 1 - - uid: 16700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 1 - - uid: 16701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,37.5 - parent: 1 - - uid: 16703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,37.5 - parent: 1 - - uid: 16704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,37.5 - parent: 1 - - uid: 16705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,37.5 - parent: 1 - - uid: 16706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,37.5 - parent: 1 - - uid: 16707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,37.5 - parent: 1 - - uid: 16708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,37.5 - parent: 1 - - uid: 16709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,37.5 - parent: 1 - - uid: 16710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,37.5 - parent: 1 - - uid: 16711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,37.5 - parent: 1 - - uid: 16712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,37.5 - parent: 1 - - uid: 16713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,37.5 - parent: 1 - - uid: 16714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,37.5 - parent: 1 - - uid: 16715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,37.5 - parent: 1 - - uid: 16716 - components: - - type: Transform - pos: 14.5,46.5 - parent: 1 - - uid: 16717 - components: - - type: Transform - pos: 14.5,45.5 - parent: 1 - - uid: 16718 - components: - - type: Transform - pos: 14.5,44.5 - parent: 1 - - uid: 16719 - components: - - type: Transform - pos: 14.5,43.5 - parent: 1 - - uid: 16720 - components: - - type: Transform - pos: 14.5,42.5 - parent: 1 - - uid: 16721 - components: - - type: Transform - pos: 14.5,41.5 - parent: 1 - - uid: 16722 - components: - - type: Transform - pos: 14.5,40.5 - parent: 1 - - uid: 16723 - components: - - type: Transform - pos: 14.5,39.5 - parent: 1 - - uid: 16724 - components: - - type: Transform - pos: 14.5,38.5 - parent: 1 - - uid: 16726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,37.5 - parent: 1 - - uid: 16727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,37.5 - parent: 1 - - uid: 16728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,37.5 - parent: 1 - - uid: 16729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,37.5 - parent: 1 - - uid: 16730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,37.5 - parent: 1 - - uid: 16731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,37.5 - parent: 1 - - uid: 16732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,37.5 - parent: 1 - - uid: 16733 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,37.5 - parent: 1 - - uid: 16734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,37.5 - parent: 1 - - uid: 16735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,37.5 - parent: 1 - - uid: 16736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,37.5 - parent: 1 - - uid: 16737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,37.5 - parent: 1 - - uid: 16739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 1 - - uid: 16740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,39.5 - parent: 1 - - uid: 16741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,40.5 - parent: 1 - - uid: 16742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,41.5 - parent: 1 - - uid: 16743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,42.5 - parent: 1 - - uid: 16745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,43.5 - parent: 1 - - uid: 16746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,43.5 - parent: 1 - - uid: 16747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,43.5 - parent: 1 - - uid: 16749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,37.5 - parent: 1 - - uid: 16751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,37.5 - parent: 1 - - uid: 16752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,37.5 - parent: 1 - - uid: 16753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,37.5 - parent: 1 - - uid: 16754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,37.5 - parent: 1 - - uid: 16755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,37.5 - parent: 1 - - uid: 16756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,37.5 - parent: 1 - - uid: 16757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,37.5 - parent: 1 - - uid: 16758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,37.5 - parent: 1 - - uid: 16759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,37.5 - parent: 1 - - uid: 16760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,37.5 - parent: 1 - - uid: 16761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,37.5 - parent: 1 - - uid: 16762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,37.5 - parent: 1 - - uid: 16763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,37.5 - parent: 1 - - uid: 16764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,37.5 - parent: 1 - - uid: 16765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,37.5 - parent: 1 - - uid: 16767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,38.5 - parent: 1 - - uid: 16768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,39.5 - parent: 1 - - uid: 16769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,40.5 - parent: 1 - - uid: 16770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,41.5 - parent: 1 - - uid: 16774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,17.5 - parent: 1 - - uid: 16775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - - uid: 16776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,17.5 - parent: 1 - - uid: 16777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - - uid: 16778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,17.5 - parent: 1 - - uid: 16779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - - uid: 16780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,17.5 - parent: 1 - - uid: 16781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - - uid: 16782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - - uid: 16783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - - uid: 16784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 1 - - uid: 16785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 1 - - uid: 16786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,17.5 - parent: 1 - - uid: 16787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 1 - - uid: 16789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 1 - - uid: 16790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 1 - - uid: 16794 - components: - - type: Transform - pos: 7.5,33.5 - parent: 1 - - uid: 16795 - components: - - type: Transform - pos: 7.5,32.5 - parent: 1 - - uid: 16796 - components: - - type: Transform - pos: 7.5,31.5 - parent: 1 - - uid: 16797 - components: - - type: Transform - pos: 7.5,30.5 - parent: 1 - - uid: 16798 - components: - - type: Transform - pos: 7.5,29.5 - parent: 1 - - uid: 16801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - - uid: 16802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - - uid: 16803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - - uid: 16804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - - uid: 16805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,28.5 - parent: 1 - - uid: 16806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1 - - uid: 16807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,28.5 - parent: 1 - - uid: 16810 - components: - - type: Transform - pos: 11.5,27.5 - parent: 1 - - uid: 16811 - components: - - type: Transform - pos: 11.5,26.5 - parent: 1 - - uid: 16812 - components: - - type: Transform - pos: 11.5,25.5 - parent: 1 - - uid: 16813 - components: - - type: Transform - pos: 11.5,24.5 - parent: 1 - - uid: 16814 - components: - - type: Transform - pos: 11.5,23.5 - parent: 1 - - uid: 16815 - components: - - type: Transform - pos: 11.5,22.5 - parent: 1 - - uid: 16816 - components: - - type: Transform - pos: 11.5,21.5 - parent: 1 - - uid: 16817 - components: - - type: Transform - pos: 11.5,20.5 - parent: 1 - - uid: 16818 - components: - - type: Transform - pos: 11.5,19.5 - parent: 1 - - uid: 16819 - components: - - type: Transform - pos: 11.5,18.5 - parent: 1 - - uid: 16820 - components: - - type: Transform - pos: 0.5,16.5 - parent: 1 - - uid: 16823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - - uid: 16824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,14.5 - parent: 1 - - uid: 16826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,26.5 - parent: 1 - - uid: 16828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,26.5 - parent: 1 - - uid: 16829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,25.5 - parent: 1 - - uid: 16830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 1 - - uid: 16831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 1 - - uid: 16832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,22.5 - parent: 1 - - uid: 16834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,21.5 - parent: 1 - - uid: 16835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,21.5 - parent: 1 - - uid: 16837 - components: - - type: Transform - pos: 27.5,22.5 - parent: 1 - - uid: 16839 - components: - - type: Transform - pos: 30.5,20.5 - parent: 1 - - uid: 16840 - components: - - type: Transform - pos: 30.5,19.5 - parent: 1 - - uid: 16841 - components: - - type: Transform - pos: 30.5,18.5 - parent: 1 - - uid: 16842 - components: - - type: Transform - pos: 30.5,17.5 - parent: 1 - - uid: 16843 - components: - - type: Transform - pos: 30.5,16.5 - parent: 1 - - uid: 16853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,13.5 - parent: 1 - - uid: 16854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,13.5 - parent: 1 - - uid: 16855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,13.5 - parent: 1 - - uid: 16856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,13.5 - parent: 1 - - uid: 16857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,13.5 - parent: 1 - - uid: 16858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,13.5 - parent: 1 - - uid: 16859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,13.5 - parent: 1 - - uid: 16860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,13.5 - parent: 1 - - uid: 16861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,13.5 - parent: 1 - - uid: 16862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,13.5 - parent: 1 - - uid: 16863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,13.5 - parent: 1 - - uid: 16864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 1 - - uid: 16865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,13.5 - parent: 1 - - uid: 16866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,13.5 - parent: 1 - - uid: 16868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,15.5 - parent: 1 - - uid: 16870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 1 - - uid: 16871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,14.5 - parent: 1 - - uid: 16872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,14.5 - parent: 1 - - uid: 16873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,14.5 - parent: 1 - - uid: 16874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 1 - - uid: 16875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,14.5 - parent: 1 - - uid: 16876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 1 - - uid: 16877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,14.5 - parent: 1 - - uid: 16878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,14.5 - parent: 1 - - uid: 16879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,14.5 - parent: 1 - - uid: 16880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,14.5 - parent: 1 - - uid: 16881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,14.5 - parent: 1 - - uid: 16882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,14.5 - parent: 1 - - uid: 16883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 1 - - uid: 16884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 1 - - uid: 16885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 1 - - uid: 16886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 1 - - uid: 16887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,14.5 - parent: 1 - - uid: 16888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,14.5 - parent: 1 - - uid: 16889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,14.5 - parent: 1 - - uid: 16890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,14.5 - parent: 1 - - uid: 16891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,14.5 - parent: 1 - - uid: 16892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,14.5 - parent: 1 - - uid: 16893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - - uid: 16894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,14.5 - parent: 1 - - uid: 16895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,14.5 - parent: 1 - - uid: 16896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,14.5 - parent: 1 - - uid: 16897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,14.5 - parent: 1 - - uid: 16900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,14.5 - parent: 1 - - uid: 16901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,14.5 - parent: 1 - - uid: 16902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,14.5 - parent: 1 - - uid: 16903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,14.5 - parent: 1 - - uid: 16904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,14.5 - parent: 1 - - uid: 16905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,14.5 - parent: 1 - - uid: 16906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,14.5 - parent: 1 - - uid: 16907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1 - - uid: 16908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1 - - uid: 16909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,14.5 - parent: 1 - - uid: 16910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,14.5 - parent: 1 - - uid: 16911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,14.5 - parent: 1 - - uid: 16912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,14.5 - parent: 1 - - uid: 16913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,14.5 - parent: 1 - - uid: 16914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,14.5 - parent: 1 - - uid: 16915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,14.5 - parent: 1 - - uid: 16916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,14.5 - parent: 1 - - uid: 16917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,14.5 - parent: 1 - - uid: 16918 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,14.5 - parent: 1 - - uid: 16919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,14.5 - parent: 1 - - uid: 16920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,14.5 - parent: 1 - - uid: 16923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,14.5 - parent: 1 - - uid: 16924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,14.5 - parent: 1 - - uid: 16925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,14.5 - parent: 1 - - uid: 16926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,14.5 - parent: 1 - - uid: 16927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,14.5 - parent: 1 - - uid: 16928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,14.5 - parent: 1 - - uid: 16929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,14.5 - parent: 1 - - uid: 16931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,14.5 - parent: 1 - - uid: 16932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,14.5 - parent: 1 - - uid: 16935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,13.5 - parent: 1 - - uid: 16936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,14.5 - parent: 1 - - uid: 16937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 1 - - uid: 16938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,14.5 - parent: 1 - - uid: 16939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,14.5 - parent: 1 - - uid: 16940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,14.5 - parent: 1 - - uid: 16941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,14.5 - parent: 1 - - uid: 16942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,14.5 - parent: 1 - - uid: 16944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,14.5 - parent: 1 - - uid: 16945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,14.5 - parent: 1 - - uid: 16947 - components: - - type: Transform - pos: -34.5,15.5 - parent: 1 - - uid: 16949 - components: - - type: Transform - pos: -31.5,15.5 - parent: 1 - - uid: 16950 - components: - - type: Transform - pos: -31.5,16.5 - parent: 1 - - uid: 16951 - components: - - type: Transform - pos: -31.5,17.5 - parent: 1 - - uid: 16952 - components: - - type: Transform - pos: -31.5,18.5 - parent: 1 - - uid: 16953 - components: - - type: Transform - pos: -31.5,19.5 - parent: 1 - - uid: 16954 - components: - - type: Transform - pos: -31.5,20.5 - parent: 1 - - uid: 16955 - components: - - type: Transform - pos: -31.5,21.5 - parent: 1 - - uid: 16962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,23.5 - parent: 1 - - uid: 16963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,22.5 - parent: 1 - - uid: 16964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,21.5 - parent: 1 - - uid: 16965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,20.5 - parent: 1 - - uid: 16966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,19.5 - parent: 1 - - uid: 16967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,18.5 - parent: 1 - - uid: 16968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,17.5 - parent: 1 - - uid: 16969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,16.5 - parent: 1 - - uid: 16970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 1 - - uid: 16976 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1 - - uid: 16977 - components: - - type: Transform - pos: 1.5,11.5 - parent: 1 - - uid: 16978 - components: - - type: Transform - pos: 1.5,10.5 - parent: 1 - - uid: 16979 - components: - - type: Transform - pos: 1.5,9.5 - parent: 1 - - uid: 16980 - components: - - type: Transform - pos: 1.5,8.5 - parent: 1 - - uid: 16981 - components: - - type: Transform - pos: 1.5,7.5 - parent: 1 - - uid: 16982 - components: - - type: Transform - pos: 1.5,6.5 - parent: 1 - - uid: 16983 - components: - - type: Transform - pos: 1.5,4.5 - parent: 1 - - uid: 16984 - components: - - type: Transform - pos: 1.5,3.5 - parent: 1 - - uid: 16985 - components: - - type: Transform - pos: 1.5,0.5 - parent: 1 - - uid: 16986 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 1 - - uid: 16987 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 1 - - uid: 16988 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 1 - - uid: 16989 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 1 - - uid: 16990 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 1 - - uid: 16991 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 1 - - uid: 16992 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 1 - - uid: 16995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 1 - - uid: 16996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 1 - - uid: 16997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - - uid: 16998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - - uid: 16999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 1 - - uid: 17000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - - uid: 17001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1 - - uid: 17002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 1 - - uid: 17003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 1 - - uid: 17004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - - uid: 17005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - - uid: 17006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,1.5 - parent: 1 - - uid: 17007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - - uid: 17008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - - uid: 17010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - - uid: 17011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,5.5 - parent: 1 - - uid: 17012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 1 - - uid: 17013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - - uid: 17014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,5.5 - parent: 1 - - uid: 17015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,5.5 - parent: 1 - - uid: 17016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 1 - - uid: 17017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - - uid: 17018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - - uid: 17019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,5.5 - parent: 1 - - uid: 17021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,6.5 - parent: 1 - - uid: 17028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - - uid: 17029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1 - - uid: 17030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - - uid: 17031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 1 - - uid: 17032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 1 - - uid: 17036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 1 - - uid: 17037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-17.5 - parent: 1 - - uid: 17038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-16.5 - parent: 1 - - uid: 17039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-15.5 - parent: 1 - - uid: 17040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 1 - - uid: 17041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 1 - - uid: 17042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-12.5 - parent: 1 - - uid: 17043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 1 - - uid: 17044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 1 - - uid: 17045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 1 - - uid: 17047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-1.5 - parent: 1 - - uid: 17048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 1 - - uid: 17049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 1 - - uid: 17050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,1.5 - parent: 1 - - uid: 17054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,2.5 - parent: 1 - - uid: 17055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,2.5 - parent: 1 - - uid: 17056 - components: - - type: Transform - pos: -35.5,3.5 - parent: 1 - - uid: 17057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,4.5 - parent: 1 - - uid: 17058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 1 - - uid: 17059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - - uid: 17061 - components: - - type: Transform - pos: -31.5,3.5 - parent: 1 - - uid: 17062 - components: - - type: Transform - pos: -31.5,2.5 - parent: 1 - - uid: 17063 - components: - - type: Transform - pos: -31.5,1.5 - parent: 1 - - uid: 17064 - components: - - type: Transform - pos: -31.5,0.5 - parent: 1 - - uid: 17065 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 1 - - uid: 17066 - components: - - type: Transform - pos: -31.5,-1.5 - parent: 1 - - uid: 17067 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 1 - - uid: 17068 - components: - - type: Transform - pos: -31.5,-3.5 - parent: 1 - - uid: 17069 - components: - - type: Transform - pos: -31.5,-4.5 - parent: 1 - - uid: 17070 - components: - - type: Transform - pos: -31.5,-5.5 - parent: 1 - - uid: 17071 - components: - - type: Transform - pos: -31.5,-6.5 - parent: 1 - - uid: 17072 - components: - - type: Transform - pos: -31.5,-7.5 - parent: 1 - - uid: 17074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 1 - - uid: 17076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 1 - - uid: 17077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 1 - - uid: 17078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 1 - - uid: 17079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 1 - - uid: 17080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-8.5 - parent: 1 - - uid: 17081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 1 - - uid: 17082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-8.5 - parent: 1 - - uid: 17083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-8.5 - parent: 1 - - uid: 17084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-8.5 - parent: 1 - - uid: 17085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-8.5 - parent: 1 - - uid: 17086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 1 - - uid: 17087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-8.5 - parent: 1 - - uid: 17088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 1 - - uid: 17089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 1 - - uid: 17090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 1 - - uid: 17091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 1 - - uid: 17092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-8.5 - parent: 1 - - uid: 17093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-8.5 - parent: 1 - - uid: 17095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1 - - uid: 17096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 1 - - uid: 17097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 1 - - uid: 17099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-13.5 - parent: 1 - - uid: 17100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 1 - - uid: 17101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-11.5 - parent: 1 - - uid: 17102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 1 - - uid: 17103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-9.5 - parent: 1 - - uid: 17105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 1 - - uid: 17106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 1 - - uid: 17107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-8.5 - parent: 1 - - uid: 17108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 1 - - uid: 17109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 1 - - uid: 17110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-8.5 - parent: 1 - - uid: 17111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 1 - - uid: 17112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 1 - - uid: 17113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 1 - - uid: 17114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 1 - - uid: 17115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 1 - - uid: 17116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 1 - - uid: 17118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-14.5 - parent: 1 - - uid: 17119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 1 - - uid: 17120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 1 - - uid: 17121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 1 - - uid: 17122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-10.5 - parent: 1 - - uid: 17123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-9.5 - parent: 1 - - uid: 17124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 1 - - uid: 17125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - - uid: 17126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 1 - - uid: 17127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 1 - - uid: 17128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 1 - - uid: 17129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 1 - - uid: 17130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 1 - - uid: 17131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-8.5 - parent: 1 - - uid: 17133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 1 - - uid: 17134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 1 - - uid: 17136 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 1 - - uid: 17138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 1 - - uid: 17139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 1 - - uid: 17140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-8.5 - parent: 1 - - uid: 17141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-8.5 - parent: 1 - - uid: 17142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 1 - - uid: 17144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 1 - - uid: 17146 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 1 - - uid: 17147 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 1 - - uid: 17148 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 1 - - uid: 17149 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 1 - - uid: 17151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 1 - - uid: 17152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 1 - - uid: 17153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 1 - - uid: 17154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 1 - - uid: 17156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 1 - - uid: 17157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-8.5 - parent: 1 - - uid: 17158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 1 - - uid: 17159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 1 - - uid: 17160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 1 - - uid: 17161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 1 - - uid: 17162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 1 - - uid: 17163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-8.5 - parent: 1 - - uid: 17164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 1 - - uid: 17165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-8.5 - parent: 1 - - uid: 17166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-8.5 - parent: 1 - - uid: 17167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 1 - - uid: 17168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-8.5 - parent: 1 - - uid: 17169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 1 - - uid: 17170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-8.5 - parent: 1 - - uid: 17171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 1 - - uid: 17172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-8.5 - parent: 1 - - uid: 17173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 1 - - uid: 17174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 1 - - uid: 17176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-7.5 - parent: 1 - - uid: 17179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 1 - - uid: 17180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 1 - - uid: 17181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-5.5 - parent: 1 - - uid: 17182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-4.5 - parent: 1 - - uid: 17183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-3.5 - parent: 1 - - uid: 17184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-2.5 - parent: 1 - - uid: 17185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-1.5 - parent: 1 - - uid: 17186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-0.5 - parent: 1 - - uid: 17187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,0.5 - parent: 1 - - uid: 17188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,1.5 - parent: 1 - - uid: 17189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,2.5 - parent: 1 - - uid: 17190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,3.5 - parent: 1 - - uid: 17191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,4.5 - parent: 1 - - uid: 17192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,5.5 - parent: 1 - - uid: 17193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,6.5 - parent: 1 - - uid: 17195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,7.5 - parent: 1 - - uid: 17197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 1 - - uid: 17198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 1 - - uid: 17199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 1 - - uid: 17200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 1 - - uid: 17201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 1 - - uid: 17202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 1 - - uid: 17203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-15.5 - parent: 1 - - uid: 17204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-16.5 - parent: 1 - - uid: 17205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-17.5 - parent: 1 - - uid: 17206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-18.5 - parent: 1 - - uid: 17207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-19.5 - parent: 1 - - uid: 17208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 1 - - uid: 17209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-21.5 - parent: 1 - - uid: 17210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-22.5 - parent: 1 - - uid: 17211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-23.5 - parent: 1 - - uid: 17214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 1 - - uid: 17215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-25.5 - parent: 1 - - uid: 17216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-26.5 - parent: 1 - - uid: 17219 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 1 - - uid: 17221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 1 - - uid: 17222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 1 - - uid: 17223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 1 - - uid: 17224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 1 - - uid: 17225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-29.5 - parent: 1 - - uid: 17227 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 1 - - uid: 17228 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 1 - - uid: 17229 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 1 - - uid: 17230 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 1 - - uid: 17232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 1 - - uid: 17234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-33.5 - parent: 1 -- proto: DisposalTrunk - entities: - - uid: 1783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,24.5 - parent: 1 - - uid: 16491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,70.5 - parent: 1 - - uid: 16505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,76.5 - parent: 1 - - uid: 16523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,68.5 - parent: 1 - - uid: 16535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,57.5 - parent: 1 - - uid: 16548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,52.5 - parent: 1 - - uid: 16549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,53.5 - parent: 1 - - uid: 16611 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 1 - - uid: 16623 - components: - - type: Transform - pos: -24.5,38.5 - parent: 1 - - uid: 16651 - components: - - type: Transform - pos: -45.5,44.5 - parent: 1 - - uid: 16655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 1 - - uid: 16695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,27.5 - parent: 1 - - uid: 16697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,36.5 - parent: 1 - - uid: 16702 - components: - - type: Transform - pos: 14.5,47.5 - parent: 1 - - uid: 16748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,43.5 - parent: 1 - - uid: 16771 - components: - - type: Transform - pos: 48.5,42.5 - parent: 1 - - uid: 16791 - components: - - type: Transform - pos: 16.5,20.5 - parent: 1 - - uid: 16793 - components: - - type: Transform - pos: 7.5,34.5 - parent: 1 - - uid: 16809 - components: - - type: Transform - pos: 16.5,29.5 - parent: 1 - - uid: 16825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,26.5 - parent: 1 - - uid: 16838 - components: - - type: Transform - pos: 27.5,23.5 - parent: 1 - - uid: 16851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,12.5 - parent: 1 - - uid: 16921 - components: - - type: Transform - pos: -23.5,15.5 - parent: 1 - - uid: 16934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,12.5 - parent: 1 - - uid: 16948 - components: - - type: Transform - pos: -34.5,16.5 - parent: 1 - - uid: 16972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,22.5 - parent: 1 - - uid: 16994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 1 - - uid: 17009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - - uid: 17022 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1 - - uid: 17034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 1 - - uid: 17035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-19.5 - parent: 1 - - uid: 17046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-2.5 - parent: 1 - - uid: 17073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 1 - - uid: 17094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 1 - - uid: 17117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-15.5 - parent: 1 - - uid: 17137 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 1 - - uid: 17143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 1 - - uid: 17177 - components: - - type: Transform - pos: 45.5,-6.5 - parent: 1 - - uid: 17196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,7.5 - parent: 1 - - uid: 17235 - components: - - type: Transform - pos: 17.5,-32.5 - parent: 1 -- proto: DisposalUnit - entities: - - uid: 1988 - components: - - type: Transform - pos: -36.5,24.5 - parent: 1 - - uid: 2033 - components: - - type: Transform - pos: 33.5,7.5 - parent: 1 - - uid: 4017 - components: - - type: Transform - pos: 4.5,52.5 - parent: 1 - - uid: 4082 - components: - - type: Transform - pos: 7.5,34.5 - parent: 1 - - uid: 4389 - components: - - type: Transform - pos: 3.5,2.5 - parent: 1 - - uid: 6403 - components: - - type: Transform - pos: 16.5,20.5 - parent: 1 - - uid: 6404 - components: - - type: Transform - pos: 16.5,29.5 - parent: 1 - - uid: 6949 - components: - - type: Transform - pos: 27.5,23.5 - parent: 1 - - uid: 8065 - components: - - type: Transform - pos: -7.5,76.5 - parent: 1 - - uid: 8087 - components: - - type: Transform - pos: 2.5,70.5 - parent: 1 - - uid: 8415 - components: - - type: Transform - pos: -45.5,44.5 - parent: 1 - - uid: 8453 - components: - - type: Transform - pos: -3.5,57.5 - parent: 1 - - uid: 8454 - components: - - type: Transform - pos: -2.5,68.5 - parent: 1 - - uid: 8666 - components: - - type: Transform - pos: -21.5,25.5 - parent: 1 - - uid: 8998 - components: - - type: Transform - pos: -13.5,1.5 - parent: 1 - - uid: 9097 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 1 - - uid: 9400 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 1 - - uid: 9433 - components: - - type: Transform - pos: 48.5,42.5 - parent: 1 - - uid: 9437 - components: - - type: Transform - pos: 27.5,26.5 - parent: 1 - - uid: 9441 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 1 - - uid: 9445 - components: - - type: Transform - pos: -30.5,22.5 - parent: 1 - - uid: 9452 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 1 - - uid: 9454 - components: - - type: Transform - pos: 45.5,-6.5 - parent: 1 - - uid: 9455 - components: - - type: Transform - pos: 45.5,12.5 - parent: 1 - - uid: 9456 - components: - - type: Transform - pos: -45.5,12.5 - parent: 1 - - uid: 9459 - components: - - type: Transform - pos: 14.5,47.5 - parent: 1 - - uid: 9469 - components: - - type: Transform - pos: -34.5,16.5 - parent: 1 - - uid: 9488 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1 - - uid: 9536 - components: - - type: Transform - pos: 17.5,-3.5 - parent: 1 - - uid: 9565 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 1 - - uid: 9566 - components: - - type: Transform - pos: -17.5,-19.5 - parent: 1 - - uid: 9595 - components: - - type: Transform - pos: 18.5,36.5 - parent: 1 - - uid: 9597 - components: - - type: Transform - pos: -24.5,38.5 - parent: 1 - - uid: 9702 - components: - - type: Transform - pos: -38.5,-2.5 - parent: 1 - - uid: 9878 - components: - - type: Transform - pos: -17.5,53.5 - parent: 1 - - uid: 9888 - components: - - type: Transform - pos: -23.5,15.5 - parent: 1 - - uid: 16610 - components: - - type: Transform - pos: -15.5,30.5 - parent: 1 - - uid: 16654 - components: - - type: Transform - pos: -9.5,23.5 - parent: 1 - - uid: 16692 - components: - - type: Transform - pos: -1.5,27.5 - parent: 1 - - uid: 16750 - components: - - type: Transform - pos: 27.5,43.5 - parent: 1 -- proto: DisposalYJunction - entities: - - uid: 16490 - components: - - type: Transform - pos: 0.5,76.5 - parent: 1 - - uid: 16799 - components: - - type: Transform - pos: 11.5,28.5 - parent: 1 - - uid: 16869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,14.5 - parent: 1 - - uid: 17155 - components: - - type: Transform - pos: 24.5,-8.5 - parent: 1 -- proto: DogBed - entities: - - uid: 6680 - components: - - type: Transform - pos: -28.5,6.5 - parent: 1 - - uid: 9216 - components: - - type: Transform - pos: 24.5,2.5 - parent: 1 -- proto: DonkpocketBoxSpawner - entities: - - uid: 9142 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 1 -- proto: DoorElectronics - entities: - - uid: 9129 - components: - - type: Transform - pos: 13.305171,-24.81277 - parent: 1 - - uid: 9130 - components: - - type: Transform - pos: 13.409338,-24.958605 - parent: 1 -- proto: Dresser - entities: - - uid: 931 - components: - - type: Transform - pos: 26.5,53.5 - parent: 1 - - uid: 6503 - components: - - type: Transform - pos: -35.5,-19.5 - parent: 1 - - uid: 6613 - components: - - type: Transform - pos: -15.5,1.5 - parent: 1 - - uid: 6614 - components: - - type: Transform - pos: -15.5,-2.5 - parent: 1 - - uid: 6615 - components: - - type: Transform - pos: -15.5,3.5 - parent: 1 - - uid: 6842 - components: - - type: Transform - pos: 46.5,46.5 - parent: 1 - - uid: 7026 - components: - - type: Transform - pos: -24.5,1.5 - parent: 1 - - uid: 8408 - components: - - type: Transform - pos: 12.5,40.5 - parent: 1 - - uid: 8409 - components: - - type: Transform - pos: 11.5,44.5 - parent: 1 - - uid: 10385 - components: - - type: Transform - pos: 34.5,-17.5 - parent: 1 -- proto: DresserCaptainFilled - entities: - - uid: 8881 - components: - - type: Transform - pos: -7.5,72.5 - parent: 1 -- proto: DresserChiefEngineerFilled - entities: - - uid: 6705 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 1 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 1438 - components: - - type: Transform - pos: 16.5,31.5 - parent: 1 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 2488 - components: - - type: Transform - pos: 27.5,8.5 - parent: 1 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 3560 - components: - - type: Transform - pos: -14.5,60.5 - parent: 1 -- proto: DresserQuarterMasterFilled - entities: - - uid: 6918 - components: - - type: Transform - pos: -43.5,11.5 - parent: 1 -- proto: DresserResearchDirectorFilled - entities: - - uid: 8090 - components: - - type: Transform - pos: -24.5,19.5 - parent: 1 -- proto: DrinkBottleOfNothingFull - entities: - - uid: 6616 - components: - - type: Transform - pos: -15.221133,5.7888036 - parent: 1 -- proto: DrinkBottleWine - entities: - - uid: 8367 - components: - - type: Transform - pos: 28.565235,49.837475 - parent: 1 -- proto: DrinkDoctorsDelightGlass - entities: - - uid: 8489 - components: - - type: Transform - pos: 16.144281,32.546616 - parent: 1 -- proto: DrinkDriestMartiniGlass - entities: - - uid: 17381 - components: - - type: Transform - pos: -47.28389,35.84451 - parent: 1 -- proto: DrinkFlask - entities: - - uid: 8074 - components: - - type: Transform - pos: -4.482217,79.8525 - parent: 1 -- proto: DrinkGlass - entities: - - uid: 4026 - components: - - type: Transform - pos: -0.59446716,-0.80342096 - parent: 1 - - uid: 8956 - components: - - type: Transform - pos: -12.645039,-3.25968 - parent: 1 - - uid: 9293 - components: - - type: Transform - pos: 12.67594,-1.3800613 - parent: 1 - - uid: 17296 - components: - - type: Transform - pos: -4.7264047,2.7601516 - parent: 1 -- proto: DrinkGoldenCup - entities: - - uid: 7258 - components: - - type: Transform - pos: 4.7445407,45.893764 - parent: 1 -- proto: DrinkIceCreamGlass - entities: - - uid: 9851 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 9844 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkLean - entities: - - uid: 9302 - components: - - type: Transform - pos: 8.309154,2.9839857 - parent: 1 -- proto: DrinkMilkCarton - entities: - - uid: 9299 - components: - - type: Transform - pos: 5.60893,1.827802 - parent: 1 -- proto: DrinkMug - entities: - - uid: 8281 - components: - - type: Transform - pos: -28.63788,44.586548 - parent: 1 - - uid: 8282 - components: - - type: Transform - pos: -28.353905,44.3453 - parent: 1 -- proto: DrinkMugBlue - entities: - - uid: 8719 - components: - - type: Transform - pos: -10.5935335,-15.327366 - parent: 1 - - uid: 9208 - components: - - type: Transform - pos: 2.5492742,71.47509 - parent: 1 -- proto: DrinkMugDog - entities: - - uid: 8590 - components: - - type: Transform - pos: -26.584906,6.5633206 - parent: 1 - - uid: 9091 - components: - - type: Transform - pos: 4.278154,-33.29549 - parent: 1 -- proto: DrinkMugHeart - entities: - - uid: 8720 - components: - - type: Transform - pos: -10.394751,-15.49766 - parent: 1 -- proto: DrinkMugMetal - entities: - - uid: 9092 - components: - - type: Transform - pos: 4.507321,-33.378826 - parent: 1 -- proto: DrinkMugMoebius - entities: - - uid: 8444 - components: - - type: Transform - pos: 5.3876348,57.690006 - parent: 1 - - uid: 9334 - components: - - type: Transform - pos: -43.366463,7.49686 - parent: 1 -- proto: DrinkMugOne - entities: - - uid: 9207 - components: - - type: Transform - pos: 2.4034402,71.704254 - parent: 1 -- proto: DrinkMugRainbow - entities: - - uid: 8670 - components: - - type: Transform - pos: -6.3873754,21.667553 - parent: 1 -- proto: DrinkOatMilkCarton - entities: - - uid: 9297 - components: - - type: Transform - pos: 5.35893,2.077802 - parent: 1 -- proto: DrinkRumBottleFull - entities: - - uid: 8362 - components: - - type: Transform - pos: 43.673214,51.17009 - parent: 1 -- proto: DrinkShaker - entities: - - uid: 17299 - components: - - type: Transform - pos: -10.796385,6.7194715 - parent: 1 - - uid: 17300 - components: - - type: Transform - pos: -10.6047,6.421458 - parent: 1 -- proto: DrinkShotGlass - entities: - - uid: 3187 - components: - - type: Transform - pos: 46.64082,46.78565 - parent: 1 - - uid: 13314 - components: - - type: Transform - pos: -28.208918,3.5744889 - parent: 1 - - uid: 17302 - components: - - type: Transform - pos: -11.013691,6.5249143 - parent: 1 -- proto: DrinkSoyMilkCarton - entities: - - uid: 9298 - components: - - type: Transform - pos: 5.504763,1.973635 - parent: 1 -- proto: DrinkWaterCup - entities: - - uid: 6951 - components: - - type: Transform - pos: 25.367998,22.514523 - parent: 1 - - uid: 6952 - components: - - type: Transform - pos: 25.48159,22.429377 - parent: 1 - - uid: 8442 - components: - - type: Transform - pos: 5.5438213,57.47714 - parent: 1 - - uid: 8443 - components: - - type: Transform - pos: 5.67161,57.67581 - parent: 1 - - uid: 9632 - components: - - type: Transform - pos: -42.65752,-7.2487845 - parent: 1 - - uid: 9633 - components: - - type: Transform - pos: -42.641895,-7.3894095 - parent: 1 -- proto: DrinkWineGlass - entities: - - uid: 8368 - components: - - type: Transform - pos: 28.820814,49.62461 - parent: 1 - - uid: 8369 - components: - - type: Transform - pos: 28.991198,49.88005 - parent: 1 -- proto: Dropper - entities: - - uid: 8535 - components: - - type: Transform - pos: 6.6016774,22.699707 - parent: 1 - - uid: 8536 - components: - - type: Transform - pos: 6.6584716,22.543604 - parent: 1 -- proto: EmergencyLight - entities: - - uid: 11340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11341 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11342 - components: - - type: Transform - pos: 18.5,-7.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11343 - components: - - type: Transform - pos: 44.5,-7.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,13.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,2.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11346 - components: - - type: Transform - pos: 18.5,15.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,13.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11348 - components: - - type: Transform - pos: -18.5,15.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,13.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,0.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,0.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11353 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11354 - components: - - type: Transform - pos: 12.5,38.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11355 - components: - - type: Transform - pos: -8.5,38.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,26.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,26.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,40.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,36.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11360 - components: - - type: Transform - pos: -2.5,57.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,50.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11362 - components: - - type: Transform - pos: -33.5,49.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11363 - components: - - type: Transform - pos: -7.5,64.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11364 - components: - - type: Transform - pos: 11.5,61.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,72.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,70.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,25.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11370 - components: - - type: Transform - pos: -16.5,25.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11372 - components: - - type: Transform - pos: 24.5,22.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,46.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 11374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,36.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13994 - components: - - type: Transform - pos: -0.5,68.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,7.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,26.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,78.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,78.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,43.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18157 - components: - - type: Transform - pos: -20.5,38.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,19.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18160 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18161 - components: - - type: Transform - pos: -9.5,-7.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18162 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,4.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,33.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18166 - components: - - type: Transform - pos: 35.5,38.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,41.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,44.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18169 - components: - - type: Transform - pos: -0.5,83.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,54.5 - parent: 1 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight -- proto: EmergencyRollerBedSpawnFolded - entities: - - uid: 8558 - components: - - type: Transform - pos: 16.430817,18.544188 - parent: 1 -- proto: Emitter - entities: - - uid: 9187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 -- proto: EncryptionKeyCargo - entities: - - uid: 6461 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 4703 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 8436 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 7316 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 3730 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 3729 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 4349 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 3982 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 3587 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 3583 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 18435 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 18434 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 4569 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 4391 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 18447 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 18446 - - type: Physics - canCollide: False -- proto: ExosuitFabricator - entities: - - uid: 2604 - components: - - type: Transform - pos: -16.5,30.5 - parent: 1 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 5532 - components: - - type: Transform - pos: -37.5,0.5 - parent: 1 - - uid: 18367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 1 - - uid: 18368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 1 - - uid: 18369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-12.5 - parent: 1 - - uid: 18370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 1 - - uid: 18371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 1 - - uid: 18372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-10.5 - parent: 1 - - uid: 18374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,7.5 - parent: 1 - - uid: 18375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,16.5 - parent: 1 - - uid: 18376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,17.5 - parent: 1 - - uid: 18377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,42.5 - parent: 1 - - uid: 18378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,35.5 - parent: 1 - - uid: 18379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,39.5 - parent: 1 - - uid: 18380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,27.5 - parent: 1 - - uid: 18381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 1 - - uid: 18382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 1 - - uid: 18383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 1 - - uid: 18384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-5.5 - parent: 1 - - uid: 18386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,12.5 - parent: 1 - - uid: 18387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,24.5 - parent: 1 - - uid: 18388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,20.5 - parent: 1 - - uid: 18389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,34.5 - parent: 1 - - uid: 18390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,39.5 - parent: 1 - - uid: 18391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,33.5 - parent: 1 - - uid: 18392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,39.5 - parent: 1 - - uid: 18393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,51.5 - parent: 1 - - uid: 18394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,54.5 - parent: 1 - - uid: 18395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,65.5 - parent: 1 - - uid: 18396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,53.5 - parent: 1 - - uid: 18397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,58.5 - parent: 1 - - uid: 18398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,46.5 - parent: 1 - - uid: 18399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,7.5 - parent: 1 - - uid: 18400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - - uid: 18401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,11.5 - parent: 1 - - uid: 18402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 1 - - uid: 18404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,21.5 - parent: 1 - - uid: 18405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1 - - uid: 18406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,29.5 - parent: 1 - - uid: 18407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,75.5 - parent: 1 - - uid: 18408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,83.5 - parent: 1 - - uid: 18409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 1 - - uid: 18410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-37.5 - parent: 1 - - uid: 18411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 1 - - uid: 18412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,12.5 - parent: 1 - - uid: 18413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,16.5 - parent: 1 -- proto: FaxMachineBase - entities: - - uid: 4346 - components: - - type: Transform - pos: -34.5,9.5 - parent: 1 - - type: FaxMachine - name: Mail Room - - uid: 6676 - components: - - type: Transform - pos: -28.5,7.5 - parent: 1 - - type: FaxMachine - name: Library - - uid: 6847 - components: - - type: Transform - pos: 40.5,46.5 - parent: 1 - - uid: 7283 - components: - - type: Transform - pos: 5.5,64.5 - parent: 1 - - type: FaxMachine - name: Lawyer's Office - - uid: 8230 - components: - - type: Transform - pos: -19.5,53.5 - parent: 1 - - type: FaxMachine - name: Security - - uid: 8284 - components: - - type: Transform - pos: -28.5,43.5 - parent: 1 - - type: FaxMachine - name: Perma - - uid: 8552 - components: - - type: Transform - pos: 6.5,19.5 - parent: 1 - - type: FaxMachine - name: Medical - - uid: 8697 - components: - - type: Transform - pos: -9.5,28.5 - parent: 1 - - type: FaxMachine - name: Science - - uid: 9177 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 1 - - type: FaxMachine - name: Engineering - - uid: 9226 - components: - - type: Transform - pos: 24.5,4.5 - parent: 1 - - type: FaxMachine - name: HoP's Office - - uid: 17613 - components: - - type: Transform - pos: 5.5,73.5 - parent: 1 - - type: FaxMachine - name: Bridge - - uid: 18175 - components: - - type: Transform - pos: 0.5,3.5 - parent: 8756 - - type: FaxMachine - name: Captain's Private Shuttle -- proto: FaxMachineCaptain - entities: - - uid: 6800 - components: - - type: Transform - pos: -8.5,74.5 - parent: 1 -- proto: FigureSpawner - entities: - - uid: 9924 - components: - - type: Transform - pos: -20.5,-37.5 - parent: 1 - - uid: 9925 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 1 - - uid: 9926 - components: - - type: Transform - pos: -19.5,-37.5 - parent: 1 -- proto: filingCabinet - entities: - - uid: 6844 - components: - - type: Transform - pos: 41.5,46.5 - parent: 1 -- proto: filingCabinetTall - entities: - - uid: 8438 - components: - - type: Transform - pos: 2.5,62.5 - parent: 1 -- proto: filingCabinetTallRandom - entities: - - uid: 3166 - components: - - type: Transform - pos: -34.5,11.5 - parent: 1 -- proto: FireAlarm - entities: - - uid: 8155 - components: - - type: Transform - pos: -40.5,29.5 - parent: 1 - - type: DeviceList - devices: - - 7827 - - 7913 - - 7922 - - 8154 - - 7812 - - type: AtmosDevice - joinedGrid: 1 - - uid: 9150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 1 - - type: DeviceList - devices: - - 5769 - - 5770 - - 5771 - - 5772 - - 8926 - - 5783 - - 5784 - - 5785 - - 9048 - - 5760 - - 5759 - - 5758 - - 5757 - - 5779 - - 5780 - - 5781 - - 5778 - - 5777 - - 5776 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,75.5 - parent: 1 - - type: DeviceList - devices: - - 6125 - - 6124 - - 6122 - - 6123 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17333 - components: - - type: Transform - pos: 7.5,75.5 - parent: 1 - - type: DeviceList - devices: - - 6125 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,70.5 - parent: 1 - - type: DeviceList - devices: - - 6120 - - 6121 - - 6123 - - 6122 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,66.5 - parent: 1 - - type: DeviceList - devices: - - 6121 - - 6120 - - 6127 - - 6128 - - 6126 - - 6115 - - 6114 - - 6113 - - 6129 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,62.5 - parent: 1 - - type: DeviceList - devices: - - 6129 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,51.5 - parent: 1 - - type: DeviceList - devices: - - 6119 - - 6118 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17348 - components: - - type: Transform - pos: -3.5,58.5 - parent: 1 - - type: DeviceList - devices: - - 6113 - - 6114 - - 6115 - - 6110 - - 6111 - - 6112 - - 6119 - - 6118 - - 6116 - - 6117 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,43.5 - parent: 1 - - type: DeviceList - devices: - - 6130 - - 6131 - - 6110 - - 6111 - - 6112 - - 6133 - - 6132 - - 5635 - - 5636 - - 5637 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,54.5 - parent: 1 - - type: DeviceList - devices: - - 6116 - - 6117 - - 17363 - - 17362 - - 17364 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17367 - components: - - type: Transform - pos: -15.5,47.5 - parent: 1 - - type: DeviceList - devices: - - 17368 - - 17369 - - 17370 - - 17371 - - 6130 - - 6131 - - 1324 - - 1323 - - 1317 - - 1316 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17374 - components: - - type: Transform - pos: -32.5,50.5 - parent: 1 - - type: DeviceList - devices: - - 7022 - - 7023 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17377 - components: - - type: Transform - pos: -46.5,45.5 - parent: 1 - - type: DeviceList - devices: - - 7898 - - 7899 - - 7894 - - 7895 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17385 - components: - - type: Transform - pos: -39.5,39.5 - parent: 1 - - type: DeviceList - devices: - - 7898 - - 7899 - - 7894 - - 7895 - - 5835 - - 5833 - - 5834 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17388 - components: - - type: Transform - pos: -20.5,39.5 - parent: 1 - - type: DeviceList - devices: - - 5632 - - 5633 - - 5634 - - 5839 - - 5840 - - 5841 - - 6138 - - 6136 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,35.5 - parent: 1 - - type: DeviceList - devices: - - 9591 - - 9590 - - 9589 - - 5633 - - 5632 - - 5634 - - 6134 - - 6135 - - 6137 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17397 - components: - - type: Transform - pos: -5.5,39.5 - parent: 1 - - type: DeviceList - devices: - - 5644 - - 5645 - - 5646 - - 5640 - - 5639 - - 5638 - - 5637 - - 5636 - - 5635 - - 9591 - - 9590 - - 9589 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,35.5 - parent: 1 - - type: DeviceList - devices: - - 5631 - - 5630 - - 5629 - - 5688 - - 5689 - - 5690 - - 5691 - - 5687 - - 5686 - - 7267 - - 7268 - - 5708 - - 5709 - - 5710 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,41.5 - parent: 1 - - type: DeviceList - devices: - - 5686 - - 5687 - - 5689 - - 5688 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,40.5 - parent: 1 - - type: DeviceList - devices: - - 5691 - - 5690 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,41.5 - parent: 1 - - type: DeviceList - devices: - - 5700 - - 5699 - - 5698 - - 5697 - - 5708 - - 5709 - - 5710 - - 5711 - - 5712 - - 5692 - - 5693 - - 5694 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,45.5 - parent: 1 - - type: DeviceList - devices: - - 5712 - - 5711 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17411 - components: - - type: Transform - pos: 35.5,39.5 - parent: 1 - - type: DeviceList - devices: - - 5694 - - 5693 - - 5692 - - 5700 - - 5699 - - 5698 - - 5697 - - 5708 - - 5709 - - 5710 - - 5711 - - 5712 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,35.5 - parent: 1 - - type: DeviceList - devices: - - 5692 - - 5693 - - 5694 - - 6344 - - 6345 - - 6346 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,25.5 - parent: 1 - - type: DeviceList - devices: - - 5704 - - 5703 - - 5702 - - 5701 - - 5725 - - 5726 - - 5727 - - 7269 - - 17420 - - 5697 - - 5698 - - 5699 - - 5700 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17423 - components: - - type: Transform - pos: 25.5,23.5 - parent: 1 - - type: DeviceList - devices: - - 5727 - - 5726 - - 5725 - - 5724 - - 5723 - - 5722 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,12.5 - parent: 1 - - type: DeviceList - devices: - - 5722 - - 5723 - - 5724 - - 5685 - - 5684 - - 5683 - - 5701 - - 5702 - - 5703 - - 5704 - - 5719 - - 5720 - - 5721 - - 5717 - - 5716 - - 5715 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,12.5 - parent: 1 - - type: DeviceList - devices: - - 5717 - - 5716 - - 5715 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17432 - components: - - type: Transform - pos: 17.5,16.5 - parent: 1 - - type: DeviceList - devices: - - 5683 - - 5684 - - 5685 - - 5623 - - 5624 - - 5625 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,12.5 - parent: 1 - - type: DeviceList - devices: - - 5623 - - 5624 - - 5625 - - 5663 - - 5662 - - 5661 - - 5772 - - 5771 - - 5769 - - 5620 - - 5621 - - 5622 - - 5655 - - 5654 - - 5653 - - 5658 - - 5659 - - 5660 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17436 - components: - - type: Transform - pos: 10.5,16.5 - parent: 1 - - type: DeviceList - devices: - - 5623 - - 5624 - - 5625 - - 5663 - - 5662 - - 5661 - - 5772 - - 5771 - - 5769 - - 5620 - - 5621 - - 5622 - - 5655 - - 5654 - - 5653 - - 5658 - - 5659 - - 5660 - - 18237 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,20.5 - parent: 1 - - type: DeviceList - devices: - - 5657 - - 5656 - - 4341 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,23.5 - parent: 1 - - type: DeviceList - devices: - - 6363 - - 4341 - - 4344 - - 4338 - - 4340 - - 6364 - - 4343 - - 6365 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,31.5 - parent: 1 - - type: DeviceList - devices: - - 6138 - - 6134 - - 6135 - - 6137 - - 6363 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,29.5 - parent: 1 - - type: DeviceList - devices: - - 17449 - - 6365 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17451 - components: - - type: Transform - pos: 7.5,21.5 - parent: 1 - - type: DeviceList - devices: - - 6399 - - 6400 - - 6398 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - - type: DeviceList - devices: - - 6398 - - 6391 - - 6392 - - 6396 - - 6394 - - 6395 - - 6393 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,25.5 - parent: 1 - - type: DeviceList - devices: - - 5667 - - 5668 - - 6392 - - 6391 - - 6393 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,25.5 - parent: 1 - - type: DeviceList - devices: - - 5638 - - 5639 - - 5640 - - 5648 - - 5651 - - 5652 - - 5658 - - 5659 - - 5660 - - 5664 - - 5665 - - 5666 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17471 - components: - - type: Transform - pos: -26.5,16.5 - parent: 1 - - type: DeviceList - devices: - - 5620 - - 5621 - - 5622 - - 5673 - - 5672 - - 5671 - - 5670 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,8.5 - parent: 1 - - type: DeviceList - devices: - - 5670 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,32.5 - parent: 1 - - type: DeviceList - devices: - - 5677 - - 5678 - - 5679 - - 5838 - - 5837 - - 5836 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,18.5 - parent: 1 - - type: DeviceList - devices: - - 5832 - - 5831 - - 7827 - - 7913 - - 7922 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,12.5 - parent: 1 - - type: DeviceList - devices: - - 5674 - - 5675 - - 5676 - - 5824 - - 5832 - - 5831 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,10.5 - parent: 1 - - type: DeviceList - devices: - - 5824 - - 5826 - - 5822 - - 5821 - - 5823 - - 6650 - - 6667 - - 6656 - - 5825 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17496 - components: - - type: Transform - pos: -34.5,8.5 - parent: 1 - - type: DeviceList - devices: - - 5817 - - 5818 - - 5819 - - 5820 - - 5823 - - 5822 - - 5821 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,0.5 - parent: 1 - - type: DeviceList - devices: - - 5808 - - 5810 - - 5809 - - 5820 - - 5819 - - 5818 - - 5817 - - 5670 - - 5680 - - 5681 - - 5682 - - 6649 - - 6666 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17500 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 1 - - type: DeviceList - devices: - - 9431 - - 9430 - - 9429 - - 5809 - - 5810 - - 5808 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17503 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 1 - - type: DeviceList - devices: - - 9429 - - 9430 - - 9431 - - 5619 - - 800 - - 797 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 1 - - type: DeviceList - devices: - - 797 - - 800 - - 5619 - - 5765 - - 5766 - - 5746 - - 5747 - - 5748 - - 5757 - - 5758 - - 5759 - - 5760 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5628 - - 5627 - - 5626 - - 5768 - - 5767 - - 5789 - - 5788 - - 5787 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17508 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 1 - - type: DeviceList - devices: - - 797 - - 800 - - 5619 - - 5765 - - 5766 - - 5746 - - 5747 - - 5748 - - 5757 - - 5758 - - 5759 - - 5760 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5628 - - 5627 - - 5626 - - 5768 - - 5767 - - 5789 - - 5788 - - 5787 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-14.5 - parent: 1 - - type: DeviceList - devices: - - 5746 - - 5747 - - 5748 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5763 - - 5764 - - 5761 - - 5762 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - - type: DeviceList - devices: - - 5789 - - 5788 - - 5787 - - 9048 - - 5785 - - 5784 - - 5783 - - 9014 - - 9013 - - 9049 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,10.5 - parent: 1 - - type: DeviceList - devices: - - 8926 - - 9014 - - 9013 - - 9049 - - 18237 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,4.5 - parent: 1 - - type: DeviceList - devices: - - 5791 - - 5790 - - 5792 - - 17520 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 1 - - type: DeviceList - devices: - - 5719 - - 5720 - - 5721 - - 17520 - - 5792 - - 5790 - - 5807 - - 5806 - - 5805 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 1 - - type: DeviceList - devices: - - 5719 - - 5720 - - 5721 - - 17520 - - 5792 - - 5790 - - 5807 - - 5806 - - 5805 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-10.5 - parent: 1 - - type: DeviceList - devices: - - 5800 - - 5799 - - 5798 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-10.5 - parent: 1 - - type: DeviceList - devices: - - 5800 - - 5799 - - 5798 - - 5807 - - 5806 - - 5805 - - 5793 - - 3584 - - 5795 - - 5796 - - 5797 - - 5801 - - 5802 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17531 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 1 - - type: DeviceList - devices: - - 5628 - - 5627 - - 5626 - - 5795 - - 5796 - - 5797 - - 3458 - - 17533 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-16.5 - parent: 1 - - type: DeviceList - devices: - - 5766 - - 5765 - - 5763 - - 5764 - - 7107 - - 7106 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17537 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 1 - - type: DeviceList - devices: - - 7106 - - 7108 - - 7109 - - 7166 - - 7173 - - 7174 - - 7175 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 1 - - type: DeviceList - devices: - - 7170 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17540 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-16.5 - parent: 1 - - type: DeviceList - devices: - - 5767 - - 5768 - - 5761 - - 5762 - - 7171 - - 7172 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 1 - - type: DeviceList - devices: - - 7261 - - 7172 - - 7171 - - 7170 - - 7169 - - 9028 - - 9030 - - 9029 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-31.5 - parent: 1 - - type: DeviceList - devices: - - 9029 - - 9030 - - 9028 - - 7168 - - 7167 - - 7164 - - 7165 - - 7161 - - 7162 - - 7163 - - type: AtmosDevice - joinedGrid: 1 -- proto: FireAlarmElectronics - entities: - - uid: 9131 - components: - - type: Transform - pos: 13.701005,-25.229437 - parent: 1 -- proto: FireAxeCabinetFilled - entities: - - uid: 9205 - components: - - type: Transform - pos: -10.5,-20.5 - parent: 1 - - uid: 9206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,81.5 - parent: 1 -- proto: FireExtinguisher - entities: - - uid: 7125 - components: - - type: Transform - pos: -13.517798,27.785059 - parent: 1 -- proto: Firelock - entities: - - uid: 5867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,66.5 - parent: 1 - - uid: 5896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,55.5 - parent: 1 - - uid: 5897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,55.5 - parent: 1 - - uid: 5900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,55.5 - parent: 1 - - uid: 7166 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 1 - - uid: 7173 - components: - - type: Transform - pos: -11.5,-27.5 - parent: 1 - - uid: 7174 - components: - - type: Transform - pos: -11.5,-28.5 - parent: 1 - - uid: 7175 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 1 - - uid: 7202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,50.5 - parent: 1 - - uid: 7261 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 1 - - uid: 7317 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 1 - - uid: 7318 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 1 - - uid: 10067 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 1 - - uid: 13464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,52.5 - parent: 1 - - uid: 13465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,57.5 - parent: 1 - - uid: 17331 - components: - - type: Transform - pos: -8.5,71.5 - parent: 1 - - uid: 17533 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 1 -- proto: FirelockEdge - entities: - - uid: 1316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,46.5 - parent: 1 - - uid: 1317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,46.5 - parent: 1 - - uid: 1323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,46.5 - parent: 1 - - uid: 1324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,46.5 - parent: 1 - - uid: 2817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-23.5 - parent: 1 - - uid: 2818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 1 - - uid: 2820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-21.5 - parent: 1 - - uid: 2825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 1 - - uid: 2826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-37.5 - parent: 1 - - uid: 2827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-36.5 - parent: 1 - - uid: 2828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-35.5 - parent: 1 - - uid: 3030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-33.5 - parent: 1 - - uid: 3031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-31.5 - parent: 1 - - uid: 3032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 1 - - uid: 3033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-34.5 - parent: 1 - - uid: 7812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,27.5 - parent: 1 - - uid: 8154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,28.5 - parent: 1 -- proto: FirelockElectronics - entities: - - uid: 9132 - components: - - type: Transform - pos: 13.367671,-25.458605 - parent: 1 - - uid: 9133 - components: - - type: Transform - pos: 13.263505,-25.166937 - parent: 1 -- proto: FirelockGlass - entities: - - uid: 157 - components: - - type: Transform - pos: -23.5,12.5 - parent: 1 - - uid: 797 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 1 - - uid: 800 - components: - - type: Transform - pos: -13.5,-8.5 - parent: 1 - - uid: 2621 - components: - - type: Transform - pos: 17.5,27.5 - parent: 1 - - uid: 2643 - components: - - type: Transform - pos: 12.5,21.5 - parent: 1 - - uid: 3458 - components: - - type: Transform - pos: 21.5,-6.5 - parent: 1 - - uid: 3584 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 1 - - uid: 4163 - components: - - type: Transform - pos: -39.5,12.5 - parent: 1 - - uid: 4338 - components: - - type: Transform - pos: -19.5,18.5 - parent: 1 - - uid: 4340 - components: - - type: Transform - pos: -22.5,23.5 - parent: 1 - - uid: 4341 - components: - - type: Transform - pos: -8.5,22.5 - parent: 1 - - uid: 4343 - components: - - type: Transform - pos: -10.5,17.5 - parent: 1 - - uid: 4344 - components: - - type: Transform - pos: -19.5,19.5 - parent: 1 - - uid: 5619 - components: - - type: Transform - pos: -13.5,-9.5 - parent: 1 - - uid: 5620 - components: - - type: Transform - pos: -13.5,13.5 - parent: 1 - - uid: 5621 - components: - - type: Transform - pos: -13.5,14.5 - parent: 1 - - uid: 5622 - components: - - type: Transform - pos: -13.5,15.5 - parent: 1 - - uid: 5623 - components: - - type: Transform - pos: 12.5,13.5 - parent: 1 - - uid: 5624 - components: - - type: Transform - pos: 12.5,14.5 - parent: 1 - - uid: 5625 - components: - - type: Transform - pos: 12.5,15.5 - parent: 1 - - uid: 5626 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 1 - - uid: 5627 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 1 - - uid: 5628 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 1 - - uid: 5629 - components: - - type: Transform - pos: 13.5,36.5 - parent: 1 - - uid: 5630 - components: - - type: Transform - pos: 13.5,37.5 - parent: 1 - - uid: 5631 - components: - - type: Transform - pos: 13.5,38.5 - parent: 1 - - uid: 5632 - components: - - type: Transform - pos: -17.5,38.5 - parent: 1 - - uid: 5633 - components: - - type: Transform - pos: -17.5,37.5 - parent: 1 - - uid: 5634 - components: - - type: Transform - pos: -17.5,36.5 - parent: 1 - - uid: 5635 - components: - - type: Transform - pos: -1.5,39.5 - parent: 1 - - uid: 5636 - components: - - type: Transform - pos: -0.5,39.5 - parent: 1 - - uid: 5637 - components: - - type: Transform - pos: 0.5,39.5 - parent: 1 - - uid: 5638 - components: - - type: Transform - pos: -1.5,35.5 - parent: 1 - - uid: 5639 - components: - - type: Transform - pos: -0.5,35.5 - parent: 1 - - uid: 5640 - components: - - type: Transform - pos: 0.5,35.5 - parent: 1 - - uid: 5644 - components: - - type: Transform - pos: 8.5,36.5 - parent: 1 - - uid: 5645 - components: - - type: Transform - pos: 8.5,37.5 - parent: 1 - - uid: 5646 - components: - - type: Transform - pos: 8.5,38.5 - parent: 1 - - uid: 5648 - components: - - type: Transform - pos: -2.5,19.5 - parent: 1 - - uid: 5651 - components: - - type: Transform - pos: -2.5,18.5 - parent: 1 - - uid: 5652 - components: - - type: Transform - pos: -2.5,17.5 - parent: 1 - - uid: 5653 - components: - - type: Transform - pos: -3.5,16.5 - parent: 1 - - uid: 5654 - components: - - type: Transform - pos: -4.5,16.5 - parent: 1 - - uid: 5655 - components: - - type: Transform - pos: -5.5,16.5 - parent: 1 - - uid: 5656 - components: - - type: Transform - pos: -5.5,20.5 - parent: 1 - - uid: 5657 - components: - - type: Transform - pos: -4.5,20.5 - parent: 1 - - uid: 5658 - components: - - type: Transform - pos: -1.5,16.5 - parent: 1 - - uid: 5659 - components: - - type: Transform - pos: -0.5,16.5 - parent: 1 - - uid: 5660 - components: - - type: Transform - pos: 0.5,16.5 - parent: 1 - - uid: 5661 - components: - - type: Transform - pos: 2.5,16.5 - parent: 1 - - uid: 5662 - components: - - type: Transform - pos: 3.5,16.5 - parent: 1 - - uid: 5663 - components: - - type: Transform - pos: 4.5,16.5 - parent: 1 - - uid: 5664 - components: - - type: Transform - pos: 1.5,17.5 - parent: 1 - - uid: 5665 - components: - - type: Transform - pos: 1.5,18.5 - parent: 1 - - uid: 5666 - components: - - type: Transform - pos: 1.5,19.5 - parent: 1 - - uid: 5667 - components: - - type: Transform - pos: 3.5,20.5 - parent: 1 - - uid: 5668 - components: - - type: Transform - pos: 4.5,20.5 - parent: 1 - - uid: 5670 - components: - - type: Transform - pos: -29.5,10.5 - parent: 1 - - uid: 5671 - components: - - type: Transform - pos: -29.5,13.5 - parent: 1 - - uid: 5672 - components: - - type: Transform - pos: -29.5,14.5 - parent: 1 - - uid: 5673 - components: - - type: Transform - pos: -29.5,15.5 - parent: 1 - - uid: 5674 - components: - - type: Transform - pos: -33.5,13.5 - parent: 1 - - uid: 5675 - components: - - type: Transform - pos: -33.5,14.5 - parent: 1 - - uid: 5676 - components: - - type: Transform - pos: -33.5,15.5 - parent: 1 - - uid: 5677 - components: - - type: Transform - pos: -32.5,16.5 - parent: 1 - - uid: 5678 - components: - - type: Transform - pos: -31.5,16.5 - parent: 1 - - uid: 5679 - components: - - type: Transform - pos: -30.5,16.5 - parent: 1 - - uid: 5680 - components: - - type: Transform - pos: -32.5,12.5 - parent: 1 - - uid: 5681 - components: - - type: Transform - pos: -31.5,12.5 - parent: 1 - - uid: 5682 - components: - - type: Transform - pos: -30.5,12.5 - parent: 1 - - uid: 5683 - components: - - type: Transform - pos: 20.5,13.5 - parent: 1 - - uid: 5684 - components: - - type: Transform - pos: 20.5,14.5 - parent: 1 - - uid: 5685 - components: - - type: Transform - pos: 20.5,15.5 - parent: 1 - - uid: 5686 - components: - - type: Transform - pos: 23.5,39.5 - parent: 1 - - uid: 5687 - components: - - type: Transform - pos: 22.5,39.5 - parent: 1 - - uid: 5688 - components: - - type: Transform - pos: 17.5,39.5 - parent: 1 - - uid: 5689 - components: - - type: Transform - pos: 18.5,39.5 - parent: 1 - - uid: 5690 - components: - - type: Transform - pos: 14.5,39.5 - parent: 1 - - uid: 5691 - components: - - type: Transform - pos: 15.5,39.5 - parent: 1 - - uid: 5692 - components: - - type: Transform - pos: 38.5,36.5 - parent: 1 - - uid: 5693 - components: - - type: Transform - pos: 38.5,37.5 - parent: 1 - - uid: 5694 - components: - - type: Transform - pos: 38.5,38.5 - parent: 1 - - uid: 5697 - components: - - type: Transform - pos: 29.5,35.5 - parent: 1 - - uid: 5698 - components: - - type: Transform - pos: 30.5,35.5 - parent: 1 - - uid: 5699 - components: - - type: Transform - pos: 31.5,35.5 - parent: 1 - - uid: 5700 - components: - - type: Transform - pos: 32.5,35.5 - parent: 1 - - uid: 5701 - components: - - type: Transform - pos: 29.5,16.5 - parent: 1 - - uid: 5702 - components: - - type: Transform - pos: 30.5,16.5 - parent: 1 - - uid: 5703 - components: - - type: Transform - pos: 31.5,16.5 - parent: 1 - - uid: 5704 - components: - - type: Transform - pos: 32.5,16.5 - parent: 1 - - uid: 5708 - components: - - type: Transform - pos: 28.5,36.5 - parent: 1 - - uid: 5709 - components: - - type: Transform - pos: 28.5,37.5 - parent: 1 - - uid: 5710 - components: - - type: Transform - pos: 28.5,38.5 - parent: 1 - - uid: 5711 - components: - - type: Transform - pos: 30.5,42.5 - parent: 1 - - uid: 5712 - components: - - type: Transform - pos: 31.5,42.5 - parent: 1 - - uid: 5713 - components: - - type: Transform - pos: 30.5,50.5 - parent: 1 - - uid: 5714 - components: - - type: Transform - pos: 31.5,50.5 - parent: 1 - - uid: 5715 - components: - - type: Transform - pos: 38.5,15.5 - parent: 1 - - uid: 5716 - components: - - type: Transform - pos: 38.5,14.5 - parent: 1 - - uid: 5717 - components: - - type: Transform - pos: 38.5,13.5 - parent: 1 - - uid: 5719 - components: - - type: Transform - pos: 30.5,12.5 - parent: 1 - - uid: 5720 - components: - - type: Transform - pos: 31.5,12.5 - parent: 1 - - uid: 5721 - components: - - type: Transform - pos: 32.5,12.5 - parent: 1 - - uid: 5722 - components: - - type: Transform - pos: 23.5,16.5 - parent: 1 - - uid: 5723 - components: - - type: Transform - pos: 24.5,16.5 - parent: 1 - - uid: 5724 - components: - - type: Transform - pos: 25.5,16.5 - parent: 1 - - uid: 5725 - components: - - type: Transform - pos: 28.5,19.5 - parent: 1 - - uid: 5726 - components: - - type: Transform - pos: 28.5,20.5 - parent: 1 - - uid: 5727 - components: - - type: Transform - pos: 28.5,21.5 - parent: 1 - - uid: 5746 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 1 - - uid: 5747 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 1 - - uid: 5748 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 1 - - uid: 5749 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 1 - - uid: 5750 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 1 - - uid: 5753 - components: - - type: Transform - pos: 0.5,-10.5 - parent: 1 - - uid: 5754 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 1 - - uid: 5755 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 1 - - uid: 5756 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 1 - - uid: 5757 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 1 - - uid: 5758 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 1 - - uid: 5759 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 1 - - uid: 5760 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 1 - - uid: 5761 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 1 - - uid: 5762 - components: - - type: Transform - pos: 5.5,-13.5 - parent: 1 - - uid: 5763 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 1 - - uid: 5764 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 1 - - uid: 5765 - components: - - type: Transform - pos: -12.5,-10.5 - parent: 1 - - uid: 5766 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 1 - - uid: 5767 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 1 - - uid: 5768 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 1 - - uid: 5769 - components: - - type: Transform - pos: -3.5,12.5 - parent: 1 - - uid: 5770 - components: - - type: Transform - pos: -2.5,12.5 - parent: 1 - - uid: 5771 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1 - - uid: 5772 - components: - - type: Transform - pos: 2.5,12.5 - parent: 1 - - uid: 5776 - components: - - type: Transform - pos: -5.5,8.5 - parent: 1 - - uid: 5777 - components: - - type: Transform - pos: -5.5,7.5 - parent: 1 - - uid: 5778 - components: - - type: Transform - pos: -5.5,6.5 - parent: 1 - - uid: 5779 - components: - - type: Transform - pos: -8.5,5.5 - parent: 1 - - uid: 5780 - components: - - type: Transform - pos: -7.5,5.5 - parent: 1 - - uid: 5781 - components: - - type: Transform - pos: -6.5,5.5 - parent: 1 - - uid: 5782 - components: - - type: Transform - pos: -9.5,5.5 - parent: 1 - - uid: 5783 - components: - - type: Transform - pos: 4.5,-0.5 - parent: 1 - - uid: 5784 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 1 - - uid: 5785 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 1 - - uid: 5787 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 1 - - uid: 5788 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 1 - - uid: 5789 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 1 - - uid: 5790 - components: - - type: Transform - pos: 28.5,3.5 - parent: 1 - - uid: 5791 - components: - - type: Transform - pos: 26.5,3.5 - parent: 1 - - uid: 5792 - components: - - type: Transform - pos: 28.5,6.5 - parent: 1 - - uid: 5793 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 1 - - uid: 5795 - components: - - type: Transform - pos: 23.5,-9.5 - parent: 1 - - uid: 5796 - components: - - type: Transform - pos: 23.5,-8.5 - parent: 1 - - uid: 5797 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 1 - - uid: 5798 - components: - - type: Transform - pos: 38.5,-7.5 - parent: 1 - - uid: 5799 - components: - - type: Transform - pos: 38.5,-8.5 - parent: 1 - - uid: 5800 - components: - - type: Transform - pos: 38.5,-9.5 - parent: 1 - - uid: 5801 - components: - - type: Transform - pos: 25.5,-6.5 - parent: 1 - - uid: 5802 - components: - - type: Transform - pos: 26.5,-6.5 - parent: 1 - - uid: 5805 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 1 - - uid: 5806 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 1 - - uid: 5807 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 1 - - uid: 5808 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 1 - - uid: 5809 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 1 - - uid: 5810 - components: - - type: Transform - pos: -31.5,-6.5 - parent: 1 - - uid: 5817 - components: - - type: Transform - pos: -33.5,7.5 - parent: 1 - - uid: 5818 - components: - - type: Transform - pos: -33.5,6.5 - parent: 1 - - uid: 5819 - components: - - type: Transform - pos: -33.5,5.5 - parent: 1 - - uid: 5820 - components: - - type: Transform - pos: -33.5,4.5 - parent: 1 - - uid: 5821 - components: - - type: Transform - pos: -36.5,6.5 - parent: 1 - - uid: 5822 - components: - - type: Transform - pos: -36.5,7.5 - parent: 1 - - uid: 5823 - components: - - type: Transform - pos: -35.5,3.5 - parent: 1 - - uid: 5824 - components: - - type: Transform - pos: -35.5,12.5 - parent: 1 - - uid: 5825 - components: - - type: Transform - pos: -41.5,9.5 - parent: 1 - - uid: 5826 - components: - - type: Transform - pos: -37.5,10.5 - parent: 1 - - uid: 5831 - components: - - type: Transform - pos: -39.5,16.5 - parent: 1 - - uid: 5832 - components: - - type: Transform - pos: -37.5,16.5 - parent: 1 - - uid: 5833 - components: - - type: Transform - pos: -33.5,37.5 - parent: 1 - - uid: 5834 - components: - - type: Transform - pos: -33.5,36.5 - parent: 1 - - uid: 5835 - components: - - type: Transform - pos: -33.5,38.5 - parent: 1 - - uid: 5836 - components: - - type: Transform - pos: -32.5,35.5 - parent: 1 - - uid: 5837 - components: - - type: Transform - pos: -31.5,35.5 - parent: 1 - - uid: 5838 - components: - - type: Transform - pos: -30.5,35.5 - parent: 1 - - uid: 5839 - components: - - type: Transform - pos: -29.5,36.5 - parent: 1 - - uid: 5840 - components: - - type: Transform - pos: -29.5,37.5 - parent: 1 - - uid: 5841 - components: - - type: Transform - pos: -29.5,38.5 - parent: 1 - - uid: 6014 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 1 - - uid: 6110 - components: - - type: Transform - pos: -1.5,51.5 - parent: 1 - - uid: 6111 - components: - - type: Transform - pos: -0.5,51.5 - parent: 1 - - uid: 6112 - components: - - type: Transform - pos: 0.5,51.5 - parent: 1 - - uid: 6113 - components: - - type: Transform - pos: -1.5,58.5 - parent: 1 - - uid: 6114 - components: - - type: Transform - pos: -0.5,58.5 - parent: 1 - - uid: 6115 - components: - - type: Transform - pos: 0.5,58.5 - parent: 1 - - uid: 6116 - components: - - type: Transform - pos: -4.5,54.5 - parent: 1 - - uid: 6117 - components: - - type: Transform - pos: -4.5,53.5 - parent: 1 - - uid: 6118 - components: - - type: Transform - pos: 3.5,56.5 - parent: 1 - - uid: 6119 - components: - - type: Transform - pos: 3.5,53.5 - parent: 1 - - uid: 6120 - components: - - type: Transform - pos: -1.5,69.5 - parent: 1 - - uid: 6121 - components: - - type: Transform - pos: 0.5,69.5 - parent: 1 - - uid: 6122 - components: - - type: Transform - pos: -1.5,75.5 - parent: 1 - - uid: 6123 - components: - - type: Transform - pos: 0.5,75.5 - parent: 1 - - uid: 6124 - components: - - type: Transform - pos: -5.5,75.5 - parent: 1 - - uid: 6125 - components: - - type: Transform - pos: 5.5,75.5 - parent: 1 - - uid: 6126 - components: - - type: Transform - pos: 8.5,66.5 - parent: 1 - - uid: 6127 - components: - - type: Transform - pos: 8.5,68.5 - parent: 1 - - uid: 6128 - components: - - type: Transform - pos: 8.5,67.5 - parent: 1 - - uid: 6129 - components: - - type: Transform - pos: 1.5,63.5 - parent: 1 - - uid: 6130 - components: - - type: Transform - pos: -2.5,48.5 - parent: 1 - - uid: 6131 - components: - - type: Transform - pos: -2.5,50.5 - parent: 1 - - uid: 6132 - components: - - type: Transform - pos: 1.5,46.5 - parent: 1 - - uid: 6133 - components: - - type: Transform - pos: 1.5,47.5 - parent: 1 - - uid: 6134 - components: - - type: Transform - pos: -15.5,35.5 - parent: 1 - - uid: 6135 - components: - - type: Transform - pos: -14.5,35.5 - parent: 1 - - uid: 6136 - components: - - type: Transform - pos: -18.5,35.5 - parent: 1 - - uid: 6137 - components: - - type: Transform - pos: -13.5,35.5 - parent: 1 - - uid: 6138 - components: - - type: Transform - pos: -20.5,35.5 - parent: 1 - - uid: 6344 - components: - - type: Transform - pos: 43.5,41.5 - parent: 1 - - uid: 6345 - components: - - type: Transform - pos: 44.5,41.5 - parent: 1 - - uid: 6346 - components: - - type: Transform - pos: 45.5,43.5 - parent: 1 - - uid: 6363 - components: - - type: Transform - pos: -14.5,26.5 - parent: 1 - - uid: 6364 - components: - - type: Transform - pos: -10.5,18.5 - parent: 1 - - uid: 6365 - components: - - type: Transform - pos: -10.5,26.5 - parent: 1 - - uid: 6391 - components: - - type: Transform - pos: 9.5,23.5 - parent: 1 - - uid: 6392 - components: - - type: Transform - pos: 9.5,22.5 - parent: 1 - - uid: 6393 - components: - - type: Transform - pos: 6.5,26.5 - parent: 1 - - uid: 6394 - components: - - type: Transform - pos: 6.5,29.5 - parent: 1 - - uid: 6395 - components: - - type: Transform - pos: 7.5,29.5 - parent: 1 - - uid: 6396 - components: - - type: Transform - pos: 10.5,29.5 - parent: 1 - - uid: 6398 - components: - - type: Transform - pos: 11.5,21.5 - parent: 1 - - uid: 6399 - components: - - type: Transform - pos: 5.5,18.5 - parent: 1 - - uid: 6400 - components: - - type: Transform - pos: 5.5,17.5 - parent: 1 - - uid: 6648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 1 - - uid: 6649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 1 - - uid: 6650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-1.5 - parent: 1 - - uid: 6656 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 1 - - uid: 6666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 1 - - uid: 6667 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 1 - - uid: 7022 - components: - - type: Transform - pos: -26.5,48.5 - parent: 1 - - uid: 7023 - components: - - type: Transform - pos: -26.5,47.5 - parent: 1 - - uid: 7106 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 1 - - uid: 7107 - components: - - type: Transform - pos: -12.5,-16.5 - parent: 1 - - uid: 7108 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 1 - - uid: 7109 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 1 - - uid: 7161 - components: - - type: Transform - pos: 11.5,-36.5 - parent: 1 - - uid: 7162 - components: - - type: Transform - pos: 12.5,-36.5 - parent: 1 - - uid: 7163 - components: - - type: Transform - pos: 13.5,-36.5 - parent: 1 - - uid: 7164 - components: - - type: Transform - pos: 6.5,-35.5 - parent: 1 - - uid: 7165 - components: - - type: Transform - pos: 7.5,-35.5 - parent: 1 - - uid: 7167 - components: - - type: Transform - pos: 6.5,-31.5 - parent: 1 - - uid: 7168 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 1 - - uid: 7169 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 1 - - uid: 7170 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 1 - - uid: 7171 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 1 - - uid: 7172 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 1 - - uid: 7267 - components: - - type: Transform - pos: 25.5,35.5 - parent: 1 - - uid: 7268 - components: - - type: Transform - pos: 26.5,35.5 - parent: 1 - - uid: 7269 - components: - - type: Transform - pos: 28.5,32.5 - parent: 1 - - uid: 7827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,20.5 - parent: 1 - - uid: 7894 - components: - - type: Transform - pos: -43.5,39.5 - parent: 1 - - uid: 7895 - components: - - type: Transform - pos: -42.5,39.5 - parent: 1 - - uid: 7898 - components: - - type: Transform - pos: -49.5,39.5 - parent: 1 - - uid: 7899 - components: - - type: Transform - pos: -48.5,39.5 - parent: 1 - - uid: 7913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,20.5 - parent: 1 - - uid: 7922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,20.5 - parent: 1 - - uid: 8327 - components: - - type: Transform - pos: 17.5,28.5 - parent: 1 - - uid: 8425 - components: - - type: Transform - pos: 13.5,27.5 - parent: 1 - - uid: 8561 - components: - - type: Transform - pos: 13.5,28.5 - parent: 1 - - uid: 8562 - components: - - type: Transform - pos: 11.5,29.5 - parent: 1 - - uid: 8861 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 8756 - - uid: 8862 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 8756 - - uid: 8863 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 8756 - - uid: 8926 - components: - - type: Transform - pos: 4.5,5.5 - parent: 1 - - uid: 9013 - components: - - type: Transform - pos: 8.5,3.5 - parent: 1 - - uid: 9014 - components: - - type: Transform - pos: 7.5,3.5 - parent: 1 - - uid: 9028 - components: - - type: Transform - pos: 11.5,-27.5 - parent: 1 - - uid: 9029 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 1 - - uid: 9030 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 1 - - uid: 9048 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 1 - - uid: 9049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 1 - - uid: 9411 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 1 - - uid: 9429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-9.5 - parent: 1 - - uid: 9430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 1 - - uid: 9431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 1 - - uid: 9589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,38.5 - parent: 1 - - uid: 9590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,37.5 - parent: 1 - - uid: 9591 - components: - - type: Transform - pos: -11.5,36.5 - parent: 1 - - uid: 17362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,51.5 - parent: 1 - - uid: 17363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,51.5 - parent: 1 - - uid: 17364 - components: - - type: Transform - pos: -12.5,51.5 - parent: 1 - - uid: 17368 - components: - - type: Transform - pos: -13.5,47.5 - parent: 1 - - uid: 17369 - components: - - type: Transform - pos: -12.5,47.5 - parent: 1 - - uid: 17370 - components: - - type: Transform - pos: -20.5,48.5 - parent: 1 - - uid: 17371 - components: - - type: Transform - pos: -20.5,47.5 - parent: 1 - - uid: 17420 - components: - - type: Transform - pos: 28.5,33.5 - parent: 1 - - uid: 17449 - components: - - type: Transform - pos: -8.5,33.5 - parent: 1 - - uid: 17520 - components: - - type: Transform - pos: 28.5,10.5 - parent: 1 - - uid: 18237 - components: - - type: Transform - pos: 10.5,12.5 - parent: 1 -- proto: Fireplace - entities: - - uid: 787 - components: - - type: Transform - pos: -25.5,11.5 - parent: 1 - - uid: 3191 - components: - - type: Transform - pos: 45.5,48.5 - parent: 1 - - uid: 4388 - components: - - type: Transform - pos: 25.5,11.5 - parent: 1 - - uid: 9162 - components: - - type: Transform - pos: -23.5,3.5 - parent: 1 - - uid: 9865 - components: - - type: Transform - pos: -36.5,-19.5 - parent: 1 - - uid: 10933 - components: - - type: Transform - pos: 35.5,-19.5 - parent: 1 -- proto: Flash - entities: - - uid: 8072 - components: - - type: Transform - pos: 3.497499,80.1647 - parent: 1 - - uid: 9397 - components: - - type: Transform - pos: -34.791756,-5.4286704 - parent: 1 -- proto: FlashlightLantern - entities: - - uid: 9191 - components: - - type: Transform - pos: 9.627577,-15.47229 - parent: 1 -- proto: FlashlightSeclite - entities: - - uid: 7770 - components: - - type: Transform - pos: -18.39577,40.731785 - parent: 1 - - uid: 7771 - components: - - type: Transform - pos: -18.58327,40.43491 - parent: 1 - - uid: 8184 - components: - - type: Transform - pos: -16.611473,49.69518 - parent: 1 - - uid: 8189 - components: - - type: Transform - pos: -16.444807,50.07018 - parent: 1 - - uid: 9419 - components: - - type: Transform - pos: 26.518345,-13.504487 - parent: 1 -- proto: Floodlight - entities: - - uid: 18421 - components: - - type: Transform - pos: 39.53336,61.486675 - parent: 1 -- proto: FloodlightBroken - entities: - - uid: 18356 - components: - - type: Transform - pos: -40.523964,60.07001 - parent: 1 -- proto: FloorDrain - entities: - - uid: 2930 - components: - - type: Transform - pos: 16.5,-40.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 4021 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 4316 - components: - - type: Transform - pos: -38.5,49.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 6631 - components: - - type: Transform - pos: 11.5,2.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 6816 - components: - - type: Transform - pos: -7.5,69.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7439 - components: - - type: Transform - pos: 20.5,32.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 17277 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 17456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemGold - entities: - - uid: 17989 - components: - - type: Transform - pos: 45.45488,55.465294 - parent: 1 - - type: Stack - count: 20 -- proto: FloorTileItemLino - entities: - - uid: 17988 - components: - - type: Transform - pos: 34.302074,-18.390522 - parent: 1 - - type: Stack - count: 20 -- proto: FloraTree02 - entities: - - uid: 17655 - components: - - type: Transform - pos: 21.618893,21.654818 - parent: 1 -- proto: FloraTree05 - entities: - - uid: 17657 - components: - - type: Transform - pos: 27.071226,18.057373 - parent: 1 -- proto: FloraTree06 - entities: - - uid: 3419 - components: - - type: Transform - pos: -46.77861,40.963207 - parent: 1 -- proto: FloraTreeStump - entities: - - uid: 3420 - components: - - type: Transform - pos: -44.965977,40.860065 - parent: 1 - - uid: 17656 - components: - - type: Transform - pos: 23.131063,21.378092 - parent: 1 -- proto: FoodBakedPancakeBb - entities: - - uid: 17743 - components: - - type: Transform - pos: -35.421543,-26.464243 - parent: 1 -- proto: FoodBanana - entities: - - uid: 9661 - components: - - type: Transform - pos: -16.203074,-0.3446604 - parent: 1 - - uid: 9662 - components: - - type: Transform - pos: -16.203074,-0.3446604 - parent: 1 - - uid: 9663 - components: - - type: Transform - pos: -16.203074,-0.3446604 - parent: 1 -- proto: FoodBowlBig - entities: - - uid: 8268 - components: - - type: Transform - pos: -33.667786,49.56961 - parent: 1 - - uid: 8269 - components: - - type: Transform - pos: -33.41221,49.71152 - parent: 1 - - uid: 9289 - components: - - type: Transform - pos: 12.48844,-0.40089428 - parent: 1 -- proto: FoodBowlBigTrash - entities: - - uid: 10111 - components: - - type: Transform - pos: 17.411285,-36.66307 - parent: 1 - - uid: 10112 - components: - - type: Transform - pos: 18.107027,-35.953514 - parent: 1 -- proto: FoodBoxDonkpocket - entities: - - uid: 8097 - components: - - type: Transform - pos: 2.518909,73.08398 - parent: 1 - - uid: 9631 - components: - - type: Transform - pos: -42.173145,-7.3112845 - parent: 1 -- proto: FoodBoxDonut - entities: - - uid: 8073 - components: - - type: Transform - pos: -4.45382,80.533676 - parent: 1 -- proto: FoodBoxNugget - entities: - - uid: 9301 - components: - - type: Transform - pos: 8.65722,2.8053331 - parent: 1 -- proto: FoodBoxPizzaFilled - entities: - - uid: 10096 - components: - - type: Transform - pos: -17.506914,-29.281166 - parent: 1 -- proto: FoodBreadPlain - entities: - - uid: 8370 - components: - - type: Transform - pos: 33.378624,49.652992 - parent: 1 -- proto: FoodBreadPlainSlice - entities: - - uid: 8371 - components: - - type: Transform - pos: 32.38471,49.709755 - parent: 1 - - uid: 8372 - components: - - type: Transform - pos: 32.526695,49.610416 - parent: 1 -- proto: FoodBurgerBig - entities: - - uid: 2726 - components: - - type: Transform - pos: -38.561558,-5.6145735 - parent: 1 -- proto: FoodBurgerCrazy - entities: - - uid: 9637 - components: - - type: Transform - pos: -18.525078,-21.779133 - parent: 1 -- proto: FoodCakeBirthdaySlice - entities: - - uid: 13330 - components: - - type: Transform - pos: -9.337922,10.467162 - parent: 1 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 9300 - components: - - type: Transform - pos: 5.3300986,1.7788405 - parent: 1 -- proto: FoodCondimentPacketHorseradish - entities: - - uid: 17286 - components: - - type: Transform - pos: -0.25378847,-0.7095739 - parent: 1 -- proto: FoodCondimentPacketSoy - entities: - - uid: 17287 - components: - - type: Transform - pos: -10.562105,2.6537187 - parent: 1 -- proto: FoodContainerEgg - entities: - - uid: 3775 - components: - - type: Transform - pos: 7.601603,-3.2161803 - parent: 1 -- proto: FoodFrozenCornuto - entities: - - uid: 7696 - components: - - type: Transform - pos: -40.490295,77.610565 - parent: 1 -- proto: FoodFrozenPopsicleBerry - entities: - - uid: 9848 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 9844 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleJumbo - entities: - - uid: 9849 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 9844 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleOrange - entities: - - uid: 9846 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 9844 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenSandwich - entities: - - uid: 9847 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 9844 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenSandwichStrawberry - entities: - - uid: 9845 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 9844 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenSundae - entities: - - uid: 9850 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 9844 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodKebabSkewer - entities: - - uid: 8273 - components: - - type: Transform - pos: -33.142433,49.626377 - parent: 1 - - uid: 9287 - components: - - type: Transform - pos: 12.36344,-0.23422778 - parent: 1 - - uid: 9288 - components: - - type: Transform - pos: 12.571773,-0.33839428 - parent: 1 -- proto: FoodMealMemoryleek - entities: - - uid: 4378 - components: - - type: Transform - pos: 47.521317,74.488594 - parent: 1 -- proto: FoodMealMilkape - entities: - - uid: 17747 - components: - - type: Transform - pos: -3.4239073,34.287933 - parent: 1 -- proto: FoodMeatBaconCooked - entities: - - uid: 17740 - components: - - type: Transform - pos: 24.415808,-29.499893 - parent: 1 -- proto: FoodPieBaklava - entities: - - uid: 17741 - components: - - type: Transform - pos: -7.44179,-70.460884 - parent: 1 -- proto: FoodPieBananaCream - entities: - - uid: 6607 - components: - - type: Transform - pos: -15.830833,-0.5688125 - parent: 1 - - uid: 6608 - components: - - type: Transform - pos: -15.8876295,-0.25660872 - parent: 1 - - uid: 6609 - components: - - type: Transform - pos: -16.086414,-0.6255777 - parent: 1 -- proto: FoodPlate - entities: - - uid: 8266 - components: - - type: Transform - pos: -33.63939,49.881817 - parent: 1 - - uid: 9291 - components: - - type: Transform - pos: 12.33918,-1.1745799 - parent: 1 -- proto: FoodPlateSmall - entities: - - uid: 8267 - components: - - type: Transform - pos: -33.667786,49.72571 - parent: 1 - - uid: 8955 - components: - - type: Transform - pos: -12.011354,-3.421762 - parent: 1 - - uid: 9292 - components: - - type: Transform - pos: 12.342606,-1.2967278 - parent: 1 - - uid: 17294 - components: - - type: Transform - pos: -10.796385,2.6324317 - parent: 1 -- proto: FoodPlateTin - entities: - - uid: 8270 - components: - - type: Transform - pos: -33.327015,49.498657 - parent: 1 - - uid: 8271 - components: - - type: Transform - pos: -33.142433,49.597996 - parent: 1 - - uid: 9290 - components: - - type: Transform - pos: 12.42594,-0.8383943 - parent: 1 -- proto: FoodSnackSus - entities: - - uid: 17739 - components: - - type: Transform - pos: 27.402672,-19.487795 - parent: 1 -- proto: FoodTartMime - entities: - - uid: 6619 - components: - - type: Transform - pos: -16.442228,5.5049815 - parent: 1 -- proto: FoodTinPeachesMaint - entities: - - uid: 9978 - components: - - type: Transform - pos: -33.61911,-24.182272 - parent: 1 -- proto: Football - entities: - - uid: 8306 - components: - - type: Transform - pos: -38.624706,46.43239 - parent: 1 -- proto: Fork - entities: - - uid: 8920 - components: - - type: Transform - pos: -11.613461,-3.25968 - parent: 1 -- proto: ForkPlastic - entities: - - uid: 6688 - components: - - type: Transform - pos: 3.365237,0.54051036 - parent: 1 - - uid: 6700 - components: - - type: Transform - pos: 3.365237,0.54051036 - parent: 1 - - uid: 6701 - components: - - type: Transform - pos: 3.365237,0.54051036 - parent: 1 - - uid: 8820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5293255,72.579636 - parent: 1 -- proto: GasAnalyzer - entities: - - uid: 7117 - components: - - type: Transform - pos: -11.540349,34.601944 - parent: 1 - - uid: 8070 - components: - - type: Transform - pos: -7.5491548,79.71059 - parent: 1 - - uid: 8713 - components: - - type: Transform - pos: -11.3678055,-19.468292 - parent: 1 - - uid: 9233 - components: - - type: Transform - pos: -22.495941,-11.441285 - parent: 1 - - uid: 13885 - components: - - type: Transform - pos: 20.339535,52.7268 - parent: 1 -- proto: GasCanisterBrokenBase - entities: - - uid: 10109 - components: - - type: Transform - pos: -28.5,-18.5 - parent: 1 -- proto: GasMinerCarbonDioxide - entities: - - uid: 6766 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasMinerNitrogenStationLarge - entities: - - uid: 6765 - components: - - type: Transform - pos: -0.5,-21.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasMinerOxygenStationLarge - entities: - - uid: 6764 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasMixerFlipped - entities: - - uid: 4699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,33.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasOutletInjector - entities: - - uid: 2666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2667 - components: - - type: Transform - pos: 0.5,-29.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2668 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2669 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2670 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2671 - components: - - type: Transform - pos: 0.5,-21.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2672 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-33.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasPassiveVent - entities: - - uid: 450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-29.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2661 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-39.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2662 - components: - - type: Transform - pos: 0.5,-35.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-44.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-45.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2961 - components: - - type: Transform - pos: 4.5,-43.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,28.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 9195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 9853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-12.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 18480 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 18481 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasPipeBend - entities: - - uid: 2346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-43.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 1 - - uid: 2573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 1 - - uid: 2574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 1 - - uid: 2575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 1 - - uid: 2576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-28.5 - parent: 1 - - uid: 2577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 1 - - uid: 2611 - components: - - type: Transform - pos: -6.5,-43.5 - parent: 1 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-45.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-45.5 - parent: 1 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2756 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2956 - components: - - type: Transform - pos: 3.5,-43.5 - parent: 1 - - uid: 2960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 1 - - uid: 4140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-45.5 - parent: 1 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-45.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,33.5 - parent: 1 - - uid: 6376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,30.5 - parent: 1 - - uid: 6586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,33.5 - parent: 1 - - uid: 9031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,32.5 - parent: 1 - - uid: 10878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10885 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13868 - components: - - type: Transform - pos: 22.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13875 - components: - - type: Transform - pos: 25.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14301 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14304 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-37.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-37.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14676 - components: - - type: Transform - pos: -13.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14737 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14794 - components: - - type: Transform - pos: 48.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14881 - components: - - type: Transform - pos: 48.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14908 - components: - - type: Transform - pos: 24.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14964 - components: - - type: Transform - pos: 32.5,37.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15009 - components: - - type: Transform - pos: 30.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15017 - components: - - type: Transform - pos: 27.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15025 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15053 - components: - - type: Transform - pos: 44.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,51.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,51.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,37.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15251 - components: - - type: Transform - pos: -13.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15314 - components: - - type: Transform - pos: -5.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15548 - components: - - type: Transform - pos: 6.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15682 - components: - - type: Transform - pos: -37.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15711 - components: - - type: Transform - pos: -40.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15740 - components: - - type: Transform - pos: -35.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15745 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15772 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,55.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16059 - components: - - type: Transform - pos: -4.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16070 - components: - - type: Transform - pos: -3.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16118 - components: - - type: Transform - pos: -17.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16137 - components: - - type: Transform - pos: -18.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16167 - components: - - type: Transform - pos: -35.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,59.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,61.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,73.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,72.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,74.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 1 - - uid: 18140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-2.5 - parent: 1 - - uid: 18144 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 1 - - uid: 18147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 1 - - uid: 18154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-5.5 - parent: 1 - - uid: 18477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 1 - - uid: 18479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-12.5 - parent: 1 -- proto: GasPipeFourway - entities: - - uid: 2648 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2736 - components: - - type: Transform - pos: -12.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2767 - components: - - type: Transform - pos: -10.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9444 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14412 - components: - - type: Transform - pos: 6.5,-33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14453 - components: - - type: Transform - pos: 32.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14668 - components: - - type: Transform - pos: -13.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14688 - components: - - type: Transform - pos: -12.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14863 - components: - - type: Transform - pos: 30.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14891 - components: - - type: Transform - pos: 30.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14960 - components: - - type: Transform - pos: 32.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14973 - components: - - type: Transform - pos: 30.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15085 - components: - - type: Transform - pos: 22.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15181 - components: - - type: Transform - pos: 0.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15182 - components: - - type: Transform - pos: -1.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15214 - components: - - type: Transform - pos: -15.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15272 - components: - - type: Transform - pos: -10.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15355 - components: - - type: Transform - pos: -1.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15361 - components: - - type: Transform - pos: 0.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15519 - components: - - type: Transform - pos: 11.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15533 - components: - - type: Transform - pos: 10.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15630 - components: - - type: Transform - pos: -30.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15631 - components: - - type: Transform - pos: -32.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15983 - components: - - type: Transform - pos: -8.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15984 - components: - - type: Transform - pos: -9.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16052 - components: - - type: Transform - pos: -9.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeStraight - entities: - - uid: 2542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-20.5 - parent: 1 - - uid: 2543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-20.5 - parent: 1 - - uid: 2544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-20.5 - parent: 1 - - uid: 2545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-20.5 - parent: 1 - - uid: 2546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-20.5 - parent: 1 - - uid: 2547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 1 - - uid: 2548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 1 - - uid: 2549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 1 - - uid: 2550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 1 - - uid: 2551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 1 - - uid: 2552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 1 - - uid: 2553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 1 - - uid: 2554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 - parent: 1 - - uid: 2555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 1 - - uid: 2556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 - parent: 1 - - uid: 2557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 1 - - uid: 2558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 1 - - uid: 2559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-26.5 - parent: 1 - - uid: 2560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 1 - - uid: 2561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 1 - - uid: 2562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 - parent: 1 - - uid: 2563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-28.5 - parent: 1 - - uid: 2564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 1 - - uid: 2565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 - parent: 1 - - uid: 2566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 1 - - uid: 2567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 1 - - uid: 2568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 1 - - uid: 2569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-30.5 - parent: 1 - - uid: 2570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-30.5 - parent: 1 - - uid: 2571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-30.5 - parent: 1 - - uid: 2578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1 - - uid: 2579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-29.5 - parent: 1 - - uid: 2580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 1 - - uid: 2581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 1 - - uid: 2582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 1 - - uid: 2583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 1 - - uid: 2584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 1 - - uid: 2585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1 - - uid: 2586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 1 - - uid: 2587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 1 - - uid: 2588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-23.5 - parent: 1 - - uid: 2589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-23.5 - parent: 1 - - uid: 2590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 1 - - uid: 2591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 1 - - uid: 2592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 1 - - uid: 2593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 1 - - uid: 2594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 - parent: 1 - - uid: 2595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-19.5 - parent: 1 - - uid: 2626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 1 - - uid: 2647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 1 - - uid: 2664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-39.5 - parent: 1 - - uid: 2665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 1 - - uid: 2674 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 1 - - uid: 2675 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 1 - - uid: 2677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-33.5 - parent: 1 - - uid: 2678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-33.5 - parent: 1 - - uid: 2679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-33.5 - parent: 1 - - uid: 2681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 1 - - uid: 2682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 1 - - uid: 2683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-35.5 - parent: 1 - - uid: 2732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2733 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2766 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2776 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2780 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-43.5 - parent: 1 - - uid: 2954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-44.5 - parent: 1 - - uid: 2955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 1 - - uid: 3540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,30.5 - parent: 1 - - uid: 3541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,30.5 - parent: 1 - - uid: 3542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,28.5 - parent: 1 - - uid: 3543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,28.5 - parent: 1 - - uid: 3544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,28.5 - parent: 1 - - uid: 3545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,30.5 - parent: 1 - - uid: 4402 - components: - - type: Transform - pos: 31.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,31.5 - parent: 1 - - uid: 8550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9033 - components: - - type: Transform - pos: 11.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9034 - components: - - type: Transform - pos: 11.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9035 - components: - - type: Transform - pos: 10.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1 - - uid: 9197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-41.5 - parent: 1 - - uid: 9198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 1 - - uid: 9725 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1 - - uid: 10880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10894 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10895 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10918 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10921 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13052 - components: - - type: Transform - pos: 19.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13492 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13860 - components: - - type: Transform - pos: 16.5,51.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13861 - components: - - type: Transform - pos: 16.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13869 - components: - - type: Transform - pos: 22.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13870 - components: - - type: Transform - pos: 22.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13871 - components: - - type: Transform - pos: 22.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13876 - components: - - type: Transform - pos: 25.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13877 - components: - - type: Transform - pos: 25.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13878 - components: - - type: Transform - pos: 25.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13879 - components: - - type: Transform - pos: 25.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13880 - components: - - type: Transform - pos: 25.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13881 - components: - - type: Transform - pos: 25.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14220 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14221 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14222 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14280 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14281 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14282 - components: - - type: Transform - pos: 19.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14283 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14284 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14302 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14305 - components: - - type: Transform - pos: 11.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14306 - components: - - type: Transform - pos: 11.5,-13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14307 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14308 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14309 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14310 - components: - - type: Transform - pos: 11.5,-17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14311 - components: - - type: Transform - pos: 10.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14320 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14346 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14355 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14368 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14369 - components: - - type: Transform - pos: 11.5,-25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14370 - components: - - type: Transform - pos: 11.5,-26.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14371 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14372 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14373 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14374 - components: - - type: Transform - pos: 11.5,-27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14375 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14376 - components: - - type: Transform - pos: 11.5,-29.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14377 - components: - - type: Transform - pos: 11.5,-30.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14378 - components: - - type: Transform - pos: 11.5,-31.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-31.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-32.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-33.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-34.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14387 - components: - - type: Transform - pos: -32.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14388 - components: - - type: Transform - pos: 12.5,-36.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-32.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-33.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-34.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-31.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-36.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-35.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-34.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14409 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14413 - components: - - type: Transform - pos: 6.5,-32.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14414 - components: - - type: Transform - pos: 6.5,-31.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14426 - components: - - type: Transform - pos: -30.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14443 - components: - - type: Transform - pos: 32.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14493 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14510 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-14.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14568 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14593 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14594 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14595 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14596 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14597 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14598 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14600 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14601 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14602 - components: - - type: Transform - pos: -30.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14603 - components: - - type: Transform - pos: -30.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14604 - components: - - type: Transform - pos: -30.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14605 - components: - - type: Transform - pos: -30.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14607 - components: - - type: Transform - pos: -30.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14608 - components: - - type: Transform - pos: -30.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14609 - components: - - type: Transform - pos: -30.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14611 - components: - - type: Transform - pos: -30.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14612 - components: - - type: Transform - pos: -30.5,10.5 - parent: 1 - - uid: 14613 - components: - - type: Transform - pos: -30.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14614 - components: - - type: Transform - pos: -32.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14617 - components: - - type: Transform - pos: -32.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14619 - components: - - type: Transform - pos: -32.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14620 - components: - - type: Transform - pos: -32.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14621 - components: - - type: Transform - pos: -32.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14622 - components: - - type: Transform - pos: -32.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14623 - components: - - type: Transform - pos: -32.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14624 - components: - - type: Transform - pos: -32.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14625 - components: - - type: Transform - pos: -32.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14626 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14627 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14628 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14630 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14631 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14632 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14651 - components: - - type: Transform - pos: -8.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14652 - components: - - type: Transform - pos: -8.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14653 - components: - - type: Transform - pos: -8.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14654 - components: - - type: Transform - pos: -8.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14655 - components: - - type: Transform - pos: -8.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14656 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14657 - components: - - type: Transform - pos: -6.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14658 - components: - - type: Transform - pos: -6.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14686 - components: - - type: Transform - pos: -12.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14687 - components: - - type: Transform - pos: -12.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14695 - components: - - type: Transform - pos: -13.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14698 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14699 - components: - - type: Transform - pos: -12.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14715 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14716 - components: - - type: Transform - pos: 11.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14727 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14762 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14763 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14764 - components: - - type: Transform - pos: 25.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14767 - components: - - type: Transform - pos: -32.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14809 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14810 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14811 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14812 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14813 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14814 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14818 - components: - - type: Transform - pos: 30.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14819 - components: - - type: Transform - pos: 30.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14858 - components: - - type: Transform - pos: 30.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14859 - components: - - type: Transform - pos: 30.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14860 - components: - - type: Transform - pos: 30.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14861 - components: - - type: Transform - pos: 30.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14862 - components: - - type: Transform - pos: 30.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14894 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14895 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14909 - components: - - type: Transform - pos: 24.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14910 - components: - - type: Transform - pos: 24.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14911 - components: - - type: Transform - pos: 24.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14912 - components: - - type: Transform - pos: 24.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14942 - components: - - type: Transform - pos: 30.5,31.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14943 - components: - - type: Transform - pos: 30.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14944 - components: - - type: Transform - pos: 30.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14945 - components: - - type: Transform - pos: 30.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14946 - components: - - type: Transform - pos: 30.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14947 - components: - - type: Transform - pos: 30.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14948 - components: - - type: Transform - pos: 30.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14949 - components: - - type: Transform - pos: 30.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14950 - components: - - type: Transform - pos: 30.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14951 - components: - - type: Transform - pos: 30.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14952 - components: - - type: Transform - pos: 30.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14953 - components: - - type: Transform - pos: 30.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14956 - components: - - type: Transform - pos: 32.5,32.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14957 - components: - - type: Transform - pos: 32.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14958 - components: - - type: Transform - pos: 32.5,34.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14959 - components: - - type: Transform - pos: 32.5,35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14967 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14969 - components: - - type: Transform - pos: 30.5,34.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14970 - components: - - type: Transform - pos: 30.5,35.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14971 - components: - - type: Transform - pos: 30.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14985 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15003 - components: - - type: Transform - pos: 30.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15004 - components: - - type: Transform - pos: 30.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15005 - components: - - type: Transform - pos: 30.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15006 - components: - - type: Transform - pos: 30.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15007 - components: - - type: Transform - pos: 30.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15026 - components: - - type: Transform - pos: 24.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15027 - components: - - type: Transform - pos: 24.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,37.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,34.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15078 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15079 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15082 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15083 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15096 - components: - - type: Transform - pos: 18.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15097 - components: - - type: Transform - pos: 18.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15098 - components: - - type: Transform - pos: 18.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15099 - components: - - type: Transform - pos: 22.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15100 - components: - - type: Transform - pos: 22.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15115 - components: - - type: Transform - pos: 14.5,37.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15116 - components: - - type: Transform - pos: 14.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15117 - components: - - type: Transform - pos: 14.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15118 - components: - - type: Transform - pos: 14.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15122 - components: - - type: Transform - pos: 14.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15123 - components: - - type: Transform - pos: 14.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15136 - components: - - type: Transform - pos: 15.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15138 - components: - - type: Transform - pos: 15.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15139 - components: - - type: Transform - pos: 15.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15140 - components: - - type: Transform - pos: 15.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15202 - components: - - type: Transform - pos: 0.5,37.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15203 - components: - - type: Transform - pos: 0.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15204 - components: - - type: Transform - pos: 0.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15205 - components: - - type: Transform - pos: 0.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15206 - components: - - type: Transform - pos: -1.5,37.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15207 - components: - - type: Transform - pos: -1.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15208 - components: - - type: Transform - pos: -1.5,35.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15209 - components: - - type: Transform - pos: -1.5,34.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15222 - components: - - type: Transform - pos: -15.5,35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15223 - components: - - type: Transform - pos: -15.5,34.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15224 - components: - - type: Transform - pos: -15.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,31.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15240 - components: - - type: Transform - pos: -15.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,31.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,32.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15258 - components: - - type: Transform - pos: -20.5,34.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15259 - components: - - type: Transform - pos: -20.5,35.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15260 - components: - - type: Transform - pos: -20.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15261 - components: - - type: Transform - pos: -20.5,37.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15289 - components: - - type: Transform - pos: -9.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15290 - components: - - type: Transform - pos: -9.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15301 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15309 - components: - - type: Transform - pos: -4.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15310 - components: - - type: Transform - pos: -4.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15311 - components: - - type: Transform - pos: -4.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15312 - components: - - type: Transform - pos: -4.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15313 - components: - - type: Transform - pos: -5.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15318 - components: - - type: Transform - pos: -1.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,32.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,34.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15327 - components: - - type: Transform - pos: -1.5,31.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15328 - components: - - type: Transform - pos: -1.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15329 - components: - - type: Transform - pos: -1.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15330 - components: - - type: Transform - pos: -1.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15331 - components: - - type: Transform - pos: -1.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15332 - components: - - type: Transform - pos: -1.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15333 - components: - - type: Transform - pos: -1.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15334 - components: - - type: Transform - pos: -1.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15335 - components: - - type: Transform - pos: -1.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15336 - components: - - type: Transform - pos: -1.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15337 - components: - - type: Transform - pos: -1.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15338 - components: - - type: Transform - pos: 0.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15339 - components: - - type: Transform - pos: 0.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15340 - components: - - type: Transform - pos: 0.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15341 - components: - - type: Transform - pos: 0.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15342 - components: - - type: Transform - pos: 0.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15343 - components: - - type: Transform - pos: 0.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15344 - components: - - type: Transform - pos: 0.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15345 - components: - - type: Transform - pos: 0.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15346 - components: - - type: Transform - pos: 0.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15347 - components: - - type: Transform - pos: 0.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15348 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15370 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15379 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15407 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15415 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15493 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15497 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15510 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15529 - components: - - type: Transform - pos: 10.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15530 - components: - - type: Transform - pos: 10.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15531 - components: - - type: Transform - pos: 10.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15532 - components: - - type: Transform - pos: 10.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15547 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15560 - components: - - type: Transform - pos: 19.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15561 - components: - - type: Transform - pos: 19.5,31.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,31.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15632 - components: - - type: Transform - pos: -32.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15633 - components: - - type: Transform - pos: -32.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15653 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15683 - components: - - type: Transform - pos: -37.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15684 - components: - - type: Transform - pos: -37.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15685 - components: - - type: Transform - pos: -37.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15686 - components: - - type: Transform - pos: -37.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15687 - components: - - type: Transform - pos: -37.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15688 - components: - - type: Transform - pos: -37.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15689 - components: - - type: Transform - pos: -37.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15690 - components: - - type: Transform - pos: -37.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15691 - components: - - type: Transform - pos: -37.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15692 - components: - - type: Transform - pos: -37.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15693 - components: - - type: Transform - pos: -37.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15694 - components: - - type: Transform - pos: -37.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15716 - components: - - type: Transform - pos: -40.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15717 - components: - - type: Transform - pos: -40.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15718 - components: - - type: Transform - pos: -40.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15719 - components: - - type: Transform - pos: -40.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15720 - components: - - type: Transform - pos: -40.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15721 - components: - - type: Transform - pos: -40.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15722 - components: - - type: Transform - pos: -40.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15724 - components: - - type: Transform - pos: -40.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15725 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15726 - components: - - type: Transform - pos: -40.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15727 - components: - - type: Transform - pos: -40.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15741 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15749 - components: - - type: Transform - pos: -38.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15750 - components: - - type: Transform - pos: -38.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15751 - components: - - type: Transform - pos: -38.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15752 - components: - - type: Transform - pos: -38.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15758 - components: - - type: Transform - pos: -38.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15759 - components: - - type: Transform - pos: -38.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15760 - components: - - type: Transform - pos: -38.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15761 - components: - - type: Transform - pos: -38.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15762 - components: - - type: Transform - pos: -38.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15764 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15779 - components: - - type: Transform - pos: -32.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15780 - components: - - type: Transform - pos: -32.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15781 - components: - - type: Transform - pos: -32.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15782 - components: - - type: Transform - pos: -30.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15783 - components: - - type: Transform - pos: -30.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15784 - components: - - type: Transform - pos: -30.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15785 - components: - - type: Transform - pos: -30.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15786 - components: - - type: Transform - pos: -30.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15787 - components: - - type: Transform - pos: -30.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15788 - components: - - type: Transform - pos: -32.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15789 - components: - - type: Transform - pos: -32.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15790 - components: - - type: Transform - pos: -32.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15791 - components: - - type: Transform - pos: -32.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15792 - components: - - type: Transform - pos: -32.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15793 - components: - - type: Transform - pos: -32.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15794 - components: - - type: Transform - pos: -32.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15795 - components: - - type: Transform - pos: -32.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15796 - components: - - type: Transform - pos: -32.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15797 - components: - - type: Transform - pos: -32.5,32.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15798 - components: - - type: Transform - pos: -32.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15799 - components: - - type: Transform - pos: -32.5,34.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15800 - components: - - type: Transform - pos: -30.5,31.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15801 - components: - - type: Transform - pos: -30.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15802 - components: - - type: Transform - pos: -30.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15803 - components: - - type: Transform - pos: -30.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15804 - components: - - type: Transform - pos: -30.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15805 - components: - - type: Transform - pos: -30.5,26.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15806 - components: - - type: Transform - pos: -30.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15807 - components: - - type: Transform - pos: -30.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15808 - components: - - type: Transform - pos: -30.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15809 - components: - - type: Transform - pos: -30.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15810 - components: - - type: Transform - pos: -30.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15817 - components: - - type: Transform - pos: -30.5,34.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15818 - components: - - type: Transform - pos: -30.5,35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15819 - components: - - type: Transform - pos: -32.5,35.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,37.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,37.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,39.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15923 - components: - - type: Transform - pos: 0.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15926 - components: - - type: Transform - pos: -1.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15927 - components: - - type: Transform - pos: -1.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15928 - components: - - type: Transform - pos: -1.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,51.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,51.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,54.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15970 - components: - - type: Transform - pos: -1.5,55.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15985 - components: - - type: Transform - pos: -8.5,51.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15988 - components: - - type: Transform - pos: -8.5,54.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15989 - components: - - type: Transform - pos: -8.5,55.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15990 - components: - - type: Transform - pos: -8.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15991 - components: - - type: Transform - pos: -8.5,57.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15994 - components: - - type: Transform - pos: -8.5,60.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15995 - components: - - type: Transform - pos: -8.5,61.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15996 - components: - - type: Transform - pos: -8.5,62.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,59.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16010 - components: - - type: Transform - pos: -9.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16011 - components: - - type: Transform - pos: -9.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16012 - components: - - type: Transform - pos: -9.5,51.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16013 - components: - - type: Transform - pos: -9.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16014 - components: - - type: Transform - pos: -9.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,55.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,55.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,57.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16032 - components: - - type: Transform - pos: -9.5,62.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16033 - components: - - type: Transform - pos: -9.5,61.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,60.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,60.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,59.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,59.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16048 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,59.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16051 - components: - - type: Transform - pos: -9.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16082 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16083 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16090 - components: - - type: Transform - pos: -18.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16091 - components: - - type: Transform - pos: -18.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16117 - components: - - type: Transform - pos: -17.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16151 - components: - - type: Transform - pos: -31.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16152 - components: - - type: Transform - pos: -31.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16153 - components: - - type: Transform - pos: -31.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16172 - components: - - type: Transform - pos: -35.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,57.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16207 - components: - - type: Transform - pos: 11.5,54.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16208 - components: - - type: Transform - pos: 11.5,55.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16209 - components: - - type: Transform - pos: 11.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16210 - components: - - type: Transform - pos: 11.5,57.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16211 - components: - - type: Transform - pos: 11.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,59.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,57.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,59.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,60.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16222 - components: - - type: Transform - pos: -1.5,57.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16223 - components: - - type: Transform - pos: -1.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16224 - components: - - type: Transform - pos: -1.5,59.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16225 - components: - - type: Transform - pos: -1.5,60.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16226 - components: - - type: Transform - pos: -1.5,61.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16227 - components: - - type: Transform - pos: -1.5,62.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,61.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,61.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,61.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16242 - components: - - type: Transform - pos: 0.5,64.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16243 - components: - - type: Transform - pos: 0.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16244 - components: - - type: Transform - pos: 0.5,62.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16247 - components: - - type: Transform - pos: -1.5,65.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16248 - components: - - type: Transform - pos: -1.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16249 - components: - - type: Transform - pos: -1.5,67.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16250 - components: - - type: Transform - pos: 0.5,67.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16251 - components: - - type: Transform - pos: 0.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16252 - components: - - type: Transform - pos: 0.5,69.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16253 - components: - - type: Transform - pos: 0.5,70.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16258 - components: - - type: Transform - pos: -1.5,69.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16259 - components: - - type: Transform - pos: -1.5,71.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16260 - components: - - type: Transform - pos: -1.5,72.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16264 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16289 - components: - - type: Transform - pos: 0.5,72.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16290 - components: - - type: Transform - pos: 0.5,73.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16291 - components: - - type: Transform - pos: -1.5,74.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16292 - components: - - type: Transform - pos: -1.5,75.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16293 - components: - - type: Transform - pos: -1.5,76.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16294 - components: - - type: Transform - pos: 0.5,75.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16295 - components: - - type: Transform - pos: 0.5,76.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16318 - components: - - type: Transform - pos: -5.5,76.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16319 - components: - - type: Transform - pos: -5.5,75.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16320 - components: - - type: Transform - pos: -5.5,74.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16321 - components: - - type: Transform - pos: -6.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16322 - components: - - type: Transform - pos: -6.5,76.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16323 - components: - - type: Transform - pos: -6.5,75.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16324 - components: - - type: Transform - pos: -6.5,74.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16333 - components: - - type: Transform - pos: -5.5,73.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,72.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,72.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,71.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,76.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,75.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,76.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,75.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16350 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16351 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16360 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-35.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-34.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16373 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,10.5 - parent: 1 - - uid: 17474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,10.5 - parent: 1 - - uid: 17475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,10.5 - parent: 1 - - uid: 17476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 1 - - uid: 17477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,12.5 - parent: 1 - - uid: 17478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,11.5 - parent: 1 - - uid: 18141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 1 - - uid: 18142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 1 - - uid: 18143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 1 - - uid: 18145 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 1 - - uid: 18146 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 1 - - uid: 18148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 1 - - uid: 18149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 1 - - uid: 18150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 1 - - uid: 18151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-5.5 - parent: 1 - - uid: 18152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 1 - - uid: 18153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 1 - - uid: 18155 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 1 - - uid: 18482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 1 - - uid: 18483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 1 -- proto: GasPipeTJunction - entities: - - uid: 2300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-43.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2630 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-14.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2765 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2779 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2781 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2796 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-44.5 - parent: 1 - - uid: 2958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-45.5 - parent: 1 - - uid: 3691 - components: - - type: Transform - pos: 11.5,32.5 - parent: 1 - - uid: 4418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,33.5 - parent: 1 - - uid: 6374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,32.5 - parent: 1 - - uid: 9032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-43.5 - parent: 1 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 10899 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10902 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10905 - components: - - type: Transform - pos: 18.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10919 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10923 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14227 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14253 - components: - - type: Transform - pos: 9.5,-12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14261 - components: - - type: Transform - pos: 10.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14279 - components: - - type: Transform - pos: 19.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14351 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14392 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14496 - components: - - type: Transform - pos: 1.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14528 - components: - - type: Transform - pos: -2.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14532 - components: - - type: Transform - pos: -16.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14534 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14535 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14539 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14540 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14579 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-7.5 - parent: 1 - - uid: 14587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14615 - components: - - type: Transform - pos: -22.5,13.5 - parent: 1 - - uid: 14616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14667 - components: - - type: Transform - pos: -12.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14769 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14777 - components: - - type: Transform - pos: 35.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14868 - components: - - type: Transform - pos: 35.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14915 - components: - - type: Transform - pos: 27.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14927 - components: - - type: Transform - pos: 17.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,31.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,32.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,37.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,37.5 - parent: 1 - - uid: 14980 - components: - - type: Transform - pos: 25.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,40.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,49.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15035 - components: - - type: Transform - pos: 36.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,37.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,41.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15134 - components: - - type: Transform - pos: 15.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,44.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15153 - components: - - type: Transform - pos: 11.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15165 - components: - - type: Transform - pos: 5.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15193 - components: - - type: Transform - pos: -8.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15213 - components: - - type: Transform - pos: -13.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15231 - components: - - type: Transform - pos: -20.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,32.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,25.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15262 - components: - - type: Transform - pos: -17.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15267 - components: - - type: Transform - pos: -12.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,24.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15288 - components: - - type: Transform - pos: -9.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15293 - components: - - type: Transform - pos: -7.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,32.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,31.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15380 - components: - - type: Transform - pos: 9.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,22.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15468 - components: - - type: Transform - pos: -10.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,23.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15539 - components: - - type: Transform - pos: 9.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,29.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,28.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15575 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,27.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15597 - components: - - type: Transform - pos: -22.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,10.5 - parent: 1 - - uid: 15638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15698 - components: - - type: Transform - pos: -34.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15763 - components: - - type: Transform - pos: -38.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,30.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,31.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,32.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,33.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15832 - components: - - type: Transform - pos: -30.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15833 - components: - - type: Transform - pos: -32.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15842 - components: - - type: Transform - pos: -22.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15872 - components: - - type: Transform - pos: -37.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,38.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,36.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,42.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,43.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,50.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,55.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,54.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15969 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,52.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,54.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,58.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,59.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,55.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,59.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,60.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16058 - components: - - type: Transform - pos: -7.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16063 - components: - - type: Transform - pos: -10.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16064 - components: - - type: Transform - pos: -13.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16069 - components: - - type: Transform - pos: -6.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16075 - components: - - type: Transform - pos: -12.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16076 - components: - - type: Transform - pos: -16.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16077 - components: - - type: Transform - pos: -15.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16126 - components: - - type: Transform - pos: -25.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16131 - components: - - type: Transform - pos: -28.5,48.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,46.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16150 - components: - - type: Transform - pos: -30.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,47.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,45.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16190 - components: - - type: Transform - pos: 6.5,56.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,53.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,61.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,63.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,64.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,65.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,66.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,68.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,71.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,74.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,70.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,73.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16296 - components: - - type: Transform - pos: 0.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16297 - components: - - type: Transform - pos: -1.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16304 - components: - - type: Transform - pos: 3.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16312 - components: - - type: Transform - pos: -5.5,77.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,78.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,72.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-12.5 - parent: 1 -- proto: GasPort - entities: - - uid: 2876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-11.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,33.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,30.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 4067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,24.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 4143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-38.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 4144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-39.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6369 - components: - - type: Transform - pos: 10.5,34.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6584 - components: - - type: Transform - pos: -6.5,34.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6585 - components: - - type: Transform - pos: -7.5,34.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13171 - components: - - type: Transform - pos: -23.5,-0.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13855 - components: - - type: Transform - pos: 18.5,54.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 15270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,24.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,25.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPressurePump - entities: - - uid: 2615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-39.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-33.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-29.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-21.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-35.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-15.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2764 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,28.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,30.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13172 - components: - - type: Transform - pos: -23.5,-1.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13856 - components: - - type: Transform - pos: 18.5,53.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasRecyclerMachineCircuitboard - entities: - - uid: 8725 - components: - - type: Transform - pos: -10.353789,-19.334864 - parent: 1 -- proto: GasThermoMachineFreezer - entities: - - uid: 2710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-38.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2769 - components: - - type: Transform - pos: -9.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - type: AtmosDevice - joinedGrid: 1 - - uid: 6370 - components: - - type: Transform - pos: 11.5,34.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 9204 - components: - - type: Transform - pos: -13.5,-22.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 9852 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 1 - - type: GasThermoMachine - targetTemperature: 0 - - type: AtmosDevice - joinedGrid: 1 - - uid: 18205 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasThermoMachineHeater - entities: - - uid: 2709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-39.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2768 - components: - - type: Transform - pos: -10.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - type: AtmosDevice - joinedGrid: 1 - - uid: 9203 - components: - - type: Transform - pos: -13.5,-35.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasValve - entities: - - uid: 2629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2676 - components: - - type: Transform - pos: 0.5,-37.5 - parent: 1 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 1 - - uid: 2959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-44.5 - parent: 1 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 1 -- proto: GasVentPump - entities: - - uid: 2737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-17.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-13.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-13.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-15.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14295 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-17.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14332 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-33.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14415 - components: - - type: Transform - pos: 6.5,-30.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,9.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14659 - components: - - type: Transform - pos: -6.5,7.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,0.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,0.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14748 - components: - - type: Transform - pos: 10.5,7.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14761 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14906 - components: - - type: Transform - pos: 25.5,20.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,32.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,47.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15030 - components: - - type: Transform - pos: 24.5,51.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15065 - components: - - type: Transform - pos: 43.5,42.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,38.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,33.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 15101 - components: - - type: Transform - pos: 22.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,45.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,45.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,44.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,42.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,32.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,28.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,29.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15295 - components: - - type: Transform - pos: -9.5,18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15317 - components: - - type: Transform - pos: -4.5,22.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,32.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,20.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,22.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,22.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15499 - components: - - type: Transform - pos: 7.5,18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15524 - components: - - type: Transform - pos: 4.5,23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15544 - components: - - type: Transform - pos: 7.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15558 - components: - - type: Transform - pos: 20.5,29.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,28.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15582 - components: - - type: Transform - pos: 15.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,28.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,9.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,6.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,6.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-6.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-2.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,30.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15910 - components: - - type: Transform - pos: -43.5,42.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15921 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,42.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,47.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,54.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,48.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,54.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16024 - components: - - type: Transform - pos: -6.5,56.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,63.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,60.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16049 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,59.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,45.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,44.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,47.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,47.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,55.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16206 - components: - - type: Transform - pos: 8.5,59.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,63.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,64.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,68.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,70.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,73.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16327 - components: - - type: Transform - pos: -6.5,79.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16328 - components: - - type: Transform - pos: 5.5,79.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16334 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,73.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,74.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-12.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-34.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,10.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 18353 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasVentScrubber - entities: - - uid: 566 - components: - - type: Transform - pos: -7.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-21.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-11.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9037 - components: - - type: Transform - pos: 10.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,29.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-11.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-15.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14296 - components: - - type: Transform - pos: 21.5,-5.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14298 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14333 - components: - - type: Transform - pos: 5.5,-19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14404 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-33.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14569 - components: - - type: Transform - pos: -17.5,-17.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14660 - components: - - type: Transform - pos: -8.5,7.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14672 - components: - - type: Transform - pos: -11.5,2.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,4.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14717 - components: - - type: Transform - pos: 11.5,1.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14749 - components: - - type: Transform - pos: 6.5,7.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14750 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14760 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14771 - components: - - type: Transform - pos: 29.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14792 - components: - - type: Transform - pos: 46.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14808 - components: - - type: Transform - pos: 36.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,6.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,9.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14875 - components: - - type: Transform - pos: 36.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14879 - components: - - type: Transform - pos: 46.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,20.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14916 - components: - - type: Transform - pos: 28.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14928 - components: - - type: Transform - pos: 15.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,36.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,40.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,47.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,49.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,47.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15031 - components: - - type: Transform - pos: 25.5,51.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15037 - components: - - type: Transform - pos: 35.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,43.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15067 - components: - - type: Transform - pos: 46.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,33.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15084 - components: - - type: Transform - pos: 32.5,54.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15102 - components: - - type: Transform - pos: 18.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,45.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,46.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,43.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15155 - components: - - type: Transform - pos: 10.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15173 - components: - - type: Transform - pos: 4.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15226 - components: - - type: Transform - pos: -15.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,32.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15283 - components: - - type: Transform - pos: -10.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15316 - components: - - type: Transform - pos: -6.5,22.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15381 - components: - - type: Transform - pos: 8.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,22.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15447 - components: - - type: Transform - pos: -24.5,21.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,21.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15479 - components: - - type: Transform - pos: -9.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15525 - components: - - type: Transform - pos: 3.5,23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,30.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15562 - components: - - type: Transform - pos: 19.5,32.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15587 - components: - - type: Transform - pos: 14.5,32.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15610 - components: - - type: Transform - pos: -19.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15668 - components: - - type: Transform - pos: -49.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15701 - components: - - type: Transform - pos: -34.5,5.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-6.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-2.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15757 - components: - - type: Transform - pos: -39.5,0.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,9.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,10.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15776 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15777 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,20.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,32.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,33.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15859 - components: - - type: Transform - pos: -24.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15906 - components: - - type: Transform - pos: -36.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15907 - components: - - type: Transform - pos: -47.5,37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15908 - components: - - type: Transform - pos: -48.5,42.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,43.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,46.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,55.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,59.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 15999 - components: - - type: Transform - pos: -8.5,63.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,50.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,53.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16025 - components: - - type: Transform - pos: -6.5,53.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,58.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,46.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16143 - components: - - type: Transform - pos: -24.5,48.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16155 - components: - - type: Transform - pos: -27.5,48.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,45.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,48.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,45.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 16171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,43.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16196 - components: - - type: Transform - pos: 6.5,54.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,59.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16238 - components: - - type: Transform - pos: 4.5,62.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,65.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16283 - components: - - type: Transform - pos: 11.5,67.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,71.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,74.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,77.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,77.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16339 - components: - - type: Transform - pos: -8.5,73.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,70.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,74.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-35.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 17481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,10.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 18354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasVolumePump - entities: - - uid: 2718 - components: - - type: Transform - pos: -10.5,-44.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-44.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GeigerCounter - entities: - - uid: 7118 - components: - - type: Transform - pos: -11.17118,34.431652 - parent: 1 - - uid: 8352 - components: - - type: Transform - pos: -28.472635,29.713726 - parent: 1 - - uid: 8712 - components: - - type: Transform - pos: -11.651781,-19.255426 - parent: 1 - - uid: 9087 - components: - - type: Transform - pos: 6.3722563,-21.377989 - parent: 1 - - uid: 9236 - components: - - type: Transform - pos: -22.141773,-11.462118 - parent: 1 - - uid: 10931 - components: - - type: Transform - pos: 28.285597,-18.438898 - parent: 1 - - uid: 11075 - components: - - type: Transform - pos: 19.660683,4.558688 - parent: 1 -- proto: Girder - entities: - - uid: 1853 - components: - - type: Transform - pos: -23.5,55.5 - parent: 1 - - uid: 3206 - components: - - type: Transform - pos: 37.5,43.5 - parent: 1 - - uid: 3598 - components: - - type: Transform - pos: 33.5,-15.5 - parent: 1 - - uid: 4529 - components: - - type: Transform - pos: -30.5,-20.5 - parent: 1 - - uid: 4556 - components: - - type: Transform - pos: -19.5,-29.5 - parent: 1 - - uid: 6855 - components: - - type: Transform - pos: 37.5,48.5 - parent: 1 -- proto: GlowstickPurple - entities: - - uid: 9934 - components: - - type: Transform - pos: -22.667574,-29.32562 - parent: 1 -- proto: GravityGenerator - entities: - - uid: 4408 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 1 - - type: GravityGenerator - charge: 99 - - type: PointLight - radius: 174 -- proto: GravityGeneratorMini - entities: - - uid: 8815 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 8756 -- proto: Grille - entities: - - uid: 4 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,18.5 - parent: 1 - - uid: 8 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,17.5 - parent: 1 - - uid: 9 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,18.5 - parent: 1 - - uid: 13 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 1 - - uid: 16 - components: - - type: Transform - pos: 42.5,16.5 - parent: 1 - - uid: 17 - components: - - type: Transform - pos: 41.5,16.5 - parent: 1 - - uid: 18 - components: - - type: Transform - pos: 40.5,16.5 - parent: 1 - - uid: 19 - components: - - type: Transform - pos: 39.5,16.5 - parent: 1 - - uid: 20 - components: - - type: Transform - pos: 34.5,16.5 - parent: 1 - - uid: 21 - components: - - type: Transform - pos: 35.5,16.5 - parent: 1 - - uid: 22 - components: - - type: Transform - pos: 36.5,16.5 - parent: 1 - - uid: 23 - components: - - type: Transform - pos: 37.5,16.5 - parent: 1 - - uid: 32 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,28.5 - parent: 1 - - uid: 33 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,27.5 - parent: 1 - - uid: 34 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,24.5 - parent: 1 - - uid: 35 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,23.5 - parent: 1 - - uid: 36 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,33.5 - parent: 1 - - uid: 37 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,32.5 - parent: 1 - - uid: 39 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,34.5 - parent: 1 - - uid: 41 - components: - - type: Transform - pos: 33.5,19.5 - parent: 1 - - uid: 42 - components: - - type: Transform - pos: 33.5,18.5 - parent: 1 - - uid: 43 - components: - - type: Transform - pos: 33.5,17.5 - parent: 1 - - uid: 53 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,16.5 - parent: 1 - - uid: 54 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,16.5 - parent: 1 - - uid: 69 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,16.5 - parent: 1 - - uid: 70 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,12.5 - parent: 1 - - uid: 77 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,39.5 - parent: 1 - - uid: 78 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,33.5 - parent: 1 - - uid: 79 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,34.5 - parent: 1 - - uid: 80 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,35.5 - parent: 1 - - uid: 81 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,34.5 - parent: 1 - - uid: 82 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,33.5 - parent: 1 - - uid: 92 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,11.5 - parent: 1 - - uid: 102 - components: - - type: Transform - pos: 50.5,-9.5 - parent: 1 - - uid: 104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,11.5 - parent: 1 - - uid: 106 - components: - - type: Transform - pos: 41.5,-10.5 - parent: 1 - - uid: 109 - components: - - type: Transform - pos: -45.5,3.5 - parent: 1 - - uid: 111 - components: - - type: Transform - pos: -46.5,3.5 - parent: 1 - - uid: 116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,7.5 - parent: 1 - - uid: 117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,8.5 - parent: 1 - - uid: 118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,9.5 - parent: 1 - - uid: 129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 1 - - uid: 130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 1 - - uid: 131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-2.5 - parent: 1 - - uid: 152 - components: - - type: Transform - pos: -42.5,6.5 - parent: 1 - - uid: 153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,11.5 - parent: 1 - - uid: 155 - components: - - type: Transform - pos: -43.5,6.5 - parent: 1 - - uid: 158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-5.5 - parent: 1 - - uid: 159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-5.5 - parent: 1 - - uid: 160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-5.5 - parent: 1 - - uid: 161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-5.5 - parent: 1 - - uid: 162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-5.5 - parent: 1 - - uid: 163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,11.5 - parent: 1 - - uid: 164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,11.5 - parent: 1 - - uid: 165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,11.5 - parent: 1 - - uid: 166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,11.5 - parent: 1 - - uid: 169 - components: - - type: Transform - pos: 44.5,-11.5 - parent: 1 - - uid: 173 - components: - - type: Transform - pos: 45.5,-15.5 - parent: 1 - - uid: 178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 1 - - uid: 181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,9.5 - parent: 1 - - uid: 182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,10.5 - parent: 1 - - uid: 183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,11.5 - parent: 1 - - uid: 184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 1 - - uid: 185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,12.5 - parent: 1 - - uid: 186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,12.5 - parent: 1 - - uid: 187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,12.5 - parent: 1 - - uid: 188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,12.5 - parent: 1 - - uid: 189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,12.5 - parent: 1 - - uid: 190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,12.5 - parent: 1 - - uid: 191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,12.5 - parent: 1 - - uid: 211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 1 - - uid: 215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,22.5 - parent: 1 - - uid: 222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,35.5 - parent: 1 - - uid: 223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,35.5 - parent: 1 - - uid: 224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,35.5 - parent: 1 - - uid: 225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,35.5 - parent: 1 - - uid: 226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,35.5 - parent: 1 - - uid: 227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,35.5 - parent: 1 - - uid: 228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,35.5 - parent: 1 - - uid: 229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,35.5 - parent: 1 - - uid: 274 - components: - - type: Transform - pos: -33.5,10.5 - parent: 1 - - uid: 276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-3.5 - parent: 1 - - uid: 288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,25.5 - parent: 1 - - uid: 297 - components: - - type: Transform - pos: 8.5,73.5 - parent: 1 - - uid: 299 - components: - - type: Transform - pos: 8.5,72.5 - parent: 1 - - uid: 301 - components: - - type: Transform - pos: 5.5,83.5 - parent: 1 - - uid: 306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,84.5 - parent: 1 - - uid: 307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,84.5 - parent: 1 - - uid: 308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,84.5 - parent: 1 - - uid: 309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,84.5 - parent: 1 - - uid: 310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,83.5 - parent: 1 - - uid: 311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,83.5 - parent: 1 - - uid: 312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,82.5 - parent: 1 - - uid: 313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,80.5 - parent: 1 - - uid: 314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,79.5 - parent: 1 - - uid: 316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,83.5 - parent: 1 - - uid: 332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,77.5 - parent: 1 - - uid: 333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,76.5 - parent: 1 - - uid: 346 - components: - - type: Transform - pos: -9.5,74.5 - parent: 1 - - uid: 347 - components: - - type: Transform - pos: -9.5,73.5 - parent: 1 - - uid: 348 - components: - - type: Transform - pos: -9.5,72.5 - parent: 1 - - uid: 362 - components: - - type: Transform - pos: 1.5,74.5 - parent: 1 - - uid: 365 - components: - - type: Transform - pos: 3.5,75.5 - parent: 1 - - uid: 366 - components: - - type: Transform - pos: 2.5,75.5 - parent: 1 - - uid: 367 - components: - - type: Transform - pos: 1.5,73.5 - parent: 1 - - uid: 374 - components: - - type: Transform - pos: 1.5,71.5 - parent: 1 - - uid: 375 - components: - - type: Transform - pos: 5.5,69.5 - parent: 1 - - uid: 376 - components: - - type: Transform - pos: 6.5,69.5 - parent: 1 - - uid: 390 - components: - - type: Transform - pos: 1.5,70.5 - parent: 1 - - uid: 393 - components: - - type: Transform - pos: 8.5,74.5 - parent: 1 - - uid: 394 - components: - - type: Transform - pos: 2.5,69.5 - parent: 1 - - uid: 395 - components: - - type: Transform - pos: 3.5,69.5 - parent: 1 - - uid: 400 - components: - - type: Transform - pos: 2.5,84.5 - parent: 1 - - uid: 401 - components: - - type: Transform - pos: -1.5,84.5 - parent: 1 - - uid: 402 - components: - - type: Transform - pos: 6.5,82.5 - parent: 1 - - uid: 403 - components: - - type: Transform - pos: 7.5,80.5 - parent: 1 - - uid: 404 - components: - - type: Transform - pos: 7.5,79.5 - parent: 1 - - uid: 405 - components: - - type: Transform - pos: 8.5,77.5 - parent: 1 - - uid: 406 - components: - - type: Transform - pos: 8.5,76.5 - parent: 1 - - uid: 456 - components: - - type: Transform - pos: -37.5,-2.5 - parent: 1 - - uid: 465 - components: - - type: Transform - pos: -36.5,4.5 - parent: 1 - - uid: 468 - components: - - type: Transform - pos: -1.5,12.5 - parent: 1 - - uid: 469 - components: - - type: Transform - pos: -0.5,12.5 - parent: 1 - - uid: 470 - components: - - type: Transform - pos: 0.5,12.5 - parent: 1 - - uid: 471 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 1 - - uid: 472 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1 - - uid: 473 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 1 - - uid: 483 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 1 - - uid: 484 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 1 - - uid: 485 - components: - - type: Transform - pos: 3.5,12.5 - parent: 1 - - uid: 486 - components: - - type: Transform - pos: -4.5,12.5 - parent: 1 - - uid: 541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 1 - - uid: 542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 1 - - uid: 561 - components: - - type: Transform - pos: 4.5,7.5 - parent: 1 - - uid: 562 - components: - - type: Transform - pos: 4.5,6.5 - parent: 1 - - uid: 570 - components: - - type: Transform - pos: -22.5,12.5 - parent: 1 - - uid: 619 - components: - - type: Transform - pos: 4.5,4.5 - parent: 1 - - uid: 777 - components: - - type: Transform - pos: -28.5,12.5 - parent: 1 - - uid: 778 - components: - - type: Transform - pos: -27.5,12.5 - parent: 1 - - uid: 784 - components: - - type: Transform - pos: -29.5,11.5 - parent: 1 - - uid: 807 - components: - - type: Transform - pos: -3.5,20.5 - parent: 1 - - uid: 808 - components: - - type: Transform - pos: 2.5,20.5 - parent: 1 - - uid: 824 - components: - - type: Transform - pos: -2.5,28.5 - parent: 1 - - uid: 825 - components: - - type: Transform - pos: -2.5,29.5 - parent: 1 - - uid: 826 - components: - - type: Transform - pos: -2.5,30.5 - parent: 1 - - uid: 847 - components: - - type: Transform - pos: 49.5,41.5 - parent: 1 - - uid: 848 - components: - - type: Transform - pos: 49.5,42.5 - parent: 1 - - uid: 849 - components: - - type: Transform - pos: 49.5,43.5 - parent: 1 - - uid: 850 - components: - - type: Transform - pos: 49.5,44.5 - parent: 1 - - uid: 851 - components: - - type: Transform - pos: 48.5,45.5 - parent: 1 - - uid: 871 - components: - - type: Transform - pos: 47.5,48.5 - parent: 1 - - uid: 872 - components: - - type: Transform - pos: 47.5,47.5 - parent: 1 - - uid: 873 - components: - - type: Transform - pos: 47.5,46.5 - parent: 1 - - uid: 874 - components: - - type: Transform - pos: 46.5,49.5 - parent: 1 - - uid: 875 - components: - - type: Transform - pos: 45.5,49.5 - parent: 1 - - uid: 876 - components: - - type: Transform - pos: 44.5,50.5 - parent: 1 - - uid: 877 - components: - - type: Transform - pos: 44.5,51.5 - parent: 1 - - uid: 878 - components: - - type: Transform - pos: 43.5,52.5 - parent: 1 - - uid: 879 - components: - - type: Transform - pos: 42.5,52.5 - parent: 1 - - uid: 880 - components: - - type: Transform - pos: 41.5,52.5 - parent: 1 - - uid: 888 - components: - - type: Transform - pos: 34.5,57.5 - parent: 1 - - uid: 889 - components: - - type: Transform - pos: 33.5,57.5 - parent: 1 - - uid: 890 - components: - - type: Transform - pos: 31.5,57.5 - parent: 1 - - uid: 891 - components: - - type: Transform - pos: 30.5,57.5 - parent: 1 - - uid: 892 - components: - - type: Transform - pos: 29.5,58.5 - parent: 1 - - uid: 893 - components: - - type: Transform - pos: 28.5,59.5 - parent: 1 - - uid: 894 - components: - - type: Transform - pos: 27.5,59.5 - parent: 1 - - uid: 895 - components: - - type: Transform - pos: 26.5,59.5 - parent: 1 - - uid: 896 - components: - - type: Transform - pos: 23.5,59.5 - parent: 1 - - uid: 897 - components: - - type: Transform - pos: 22.5,59.5 - parent: 1 - - uid: 898 - components: - - type: Transform - pos: 21.5,59.5 - parent: 1 - - uid: 899 - components: - - type: Transform - pos: 19.5,61.5 - parent: 1 - - uid: 900 - components: - - type: Transform - pos: 19.5,62.5 - parent: 1 - - uid: 901 - components: - - type: Transform - pos: 19.5,63.5 - parent: 1 - - uid: 902 - components: - - type: Transform - pos: 19.5,64.5 - parent: 1 - - uid: 903 - components: - - type: Transform - pos: 18.5,65.5 - parent: 1 - - uid: 904 - components: - - type: Transform - pos: 17.5,65.5 - parent: 1 - - uid: 905 - components: - - type: Transform - pos: 16.5,65.5 - parent: 1 - - uid: 906 - components: - - type: Transform - pos: 15.5,65.5 - parent: 1 - - uid: 909 - components: - - type: Transform - pos: 13.5,69.5 - parent: 1 - - uid: 910 - components: - - type: Transform - pos: 13.5,70.5 - parent: 1 - - uid: 911 - components: - - type: Transform - pos: 12.5,71.5 - parent: 1 - - uid: 912 - components: - - type: Transform - pos: 11.5,71.5 - parent: 1 - - uid: 913 - components: - - type: Transform - pos: 10.5,71.5 - parent: 1 - - uid: 914 - components: - - type: Transform - pos: 9.5,71.5 - parent: 1 - - uid: 1038 - components: - - type: Transform - pos: -7.5,31.5 - parent: 1 - - uid: 1039 - components: - - type: Transform - pos: -5.5,31.5 - parent: 1 - - uid: 1040 - components: - - type: Transform - pos: -7.5,35.5 - parent: 1 - - uid: 1041 - components: - - type: Transform - pos: -6.5,35.5 - parent: 1 - - uid: 1042 - components: - - type: Transform - pos: -5.5,35.5 - parent: 1 - - uid: 1044 - components: - - type: Transform - pos: -4.5,30.5 - parent: 1 - - uid: 1046 - components: - - type: Transform - pos: -4.5,28.5 - parent: 1 - - uid: 1047 - components: - - type: Transform - pos: -7.5,27.5 - parent: 1 - - uid: 1049 - components: - - type: Transform - pos: -5.5,27.5 - parent: 1 - - uid: 1050 - components: - - type: Transform - pos: -8.5,28.5 - parent: 1 - - uid: 1051 - components: - - type: Transform - pos: -8.5,29.5 - parent: 1 - - uid: 1052 - components: - - type: Transform - pos: -8.5,30.5 - parent: 1 - - uid: 1061 - components: - - type: Transform - pos: -19.5,35.5 - parent: 1 - - uid: 1064 - components: - - type: Transform - pos: -22.5,22.5 - parent: 1 - - uid: 1073 - components: - - type: Transform - pos: -13.5,26.5 - parent: 1 - - uid: 1081 - components: - - type: Transform - pos: -12.5,30.5 - parent: 1 - - uid: 1084 - components: - - type: Transform - pos: -4.5,29.5 - parent: 1 - - uid: 1095 - components: - - type: Transform - pos: -12.5,28.5 - parent: 1 - - uid: 1096 - components: - - type: Transform - pos: -12.5,27.5 - parent: 1 - - uid: 1102 - components: - - type: Transform - pos: -15.5,26.5 - parent: 1 - - uid: 1112 - components: - - type: Transform - pos: -7.5,25.5 - parent: 1 - - uid: 1113 - components: - - type: Transform - pos: -6.5,25.5 - parent: 1 - - uid: 1114 - components: - - type: Transform - pos: -5.5,25.5 - parent: 1 - - uid: 1130 - components: - - type: Transform - pos: -15.5,16.5 - parent: 1 - - uid: 1131 - components: - - type: Transform - pos: -16.5,16.5 - parent: 1 - - uid: 1132 - components: - - type: Transform - pos: -17.5,16.5 - parent: 1 - - uid: 1139 - components: - - type: Transform - pos: -13.5,18.5 - parent: 1 - - uid: 1145 - components: - - type: Transform - pos: -13.5,19.5 - parent: 1 - - uid: 1148 - components: - - type: Transform - pos: -11.5,16.5 - parent: 1 - - uid: 1149 - components: - - type: Transform - pos: -12.5,16.5 - parent: 1 - - uid: 1152 - components: - - type: Transform - pos: -2.5,22.5 - parent: 1 - - uid: 1153 - components: - - type: Transform - pos: -2.5,23.5 - parent: 1 - - uid: 1154 - components: - - type: Transform - pos: -2.5,24.5 - parent: 1 - - uid: 1155 - components: - - type: Transform - pos: 1.5,22.5 - parent: 1 - - uid: 1156 - components: - - type: Transform - pos: 1.5,23.5 - parent: 1 - - uid: 1157 - components: - - type: Transform - pos: 1.5,24.5 - parent: 1 - - uid: 1166 - components: - - type: Transform - pos: -8.5,21.5 - parent: 1 - - uid: 1241 - components: - - type: Transform - pos: -22.5,19.5 - parent: 1 - - uid: 1278 - components: - - type: Transform - pos: -47.5,17.5 - parent: 1 - - uid: 1282 - components: - - type: Transform - pos: -46.5,34.5 - parent: 1 - - uid: 1283 - components: - - type: Transform - pos: -49.5,34.5 - parent: 1 - - uid: 1301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 1 - - uid: 1311 - components: - - type: Transform - pos: -15.5,23.5 - parent: 1 - - uid: 1312 - components: - - type: Transform - pos: -16.5,23.5 - parent: 1 - - uid: 1313 - components: - - type: Transform - pos: -17.5,23.5 - parent: 1 - - uid: 1325 - components: - - type: Transform - pos: -45.5,0.5 - parent: 1 - - uid: 1346 - components: - - type: Transform - pos: -4.5,57.5 - parent: 1 - - uid: 1347 - components: - - type: Transform - pos: -4.5,56.5 - parent: 1 - - uid: 1360 - components: - - type: Transform - pos: -7.5,53.5 - parent: 1 - - uid: 1361 - components: - - type: Transform - pos: -7.5,52.5 - parent: 1 - - uid: 1373 - components: - - type: Transform - pos: -3.5,47.5 - parent: 1 - - uid: 1374 - components: - - type: Transform - pos: -4.5,47.5 - parent: 1 - - uid: 1375 - components: - - type: Transform - pos: -4.5,43.5 - parent: 1 - - uid: 1376 - components: - - type: Transform - pos: -7.5,43.5 - parent: 1 - - uid: 1377 - components: - - type: Transform - pos: -10.5,43.5 - parent: 1 - - uid: 1378 - components: - - type: Transform - pos: -13.5,43.5 - parent: 1 - - uid: 1379 - components: - - type: Transform - pos: -13.5,39.5 - parent: 1 - - uid: 1380 - components: - - type: Transform - pos: -12.5,39.5 - parent: 1 - - uid: 1381 - components: - - type: Transform - pos: -10.5,39.5 - parent: 1 - - uid: 1382 - components: - - type: Transform - pos: -9.5,39.5 - parent: 1 - - uid: 1383 - components: - - type: Transform - pos: -7.5,39.5 - parent: 1 - - uid: 1384 - components: - - type: Transform - pos: -6.5,39.5 - parent: 1 - - uid: 1385 - components: - - type: Transform - pos: -4.5,39.5 - parent: 1 - - uid: 1386 - components: - - type: Transform - pos: -3.5,39.5 - parent: 1 - - uid: 1387 - components: - - type: Transform - pos: -15.5,43.5 - parent: 1 - - uid: 1388 - components: - - type: Transform - pos: -16.5,43.5 - parent: 1 - - uid: 1389 - components: - - type: Transform - pos: -19.5,43.5 - parent: 1 - - uid: 1390 - components: - - type: Transform - pos: -18.5,43.5 - parent: 1 - - uid: 1407 - components: - - type: Transform - pos: -10.5,50.5 - parent: 1 - - uid: 1408 - components: - - type: Transform - pos: -14.5,51.5 - parent: 1 - - uid: 1409 - components: - - type: Transform - pos: -13.5,51.5 - parent: 1 - - uid: 1410 - components: - - type: Transform - pos: -11.5,51.5 - parent: 1 - - uid: 1411 - components: - - type: Transform - pos: -15.5,50.5 - parent: 1 - - uid: 1412 - components: - - type: Transform - pos: -14.5,47.5 - parent: 1 - - uid: 1413 - components: - - type: Transform - pos: -11.5,47.5 - parent: 1 - - uid: 1416 - components: - - type: Transform - pos: -15.5,48.5 - parent: 1 - - uid: 1417 - components: - - type: Transform - pos: -15.5,49.5 - parent: 1 - - uid: 1427 - components: - - type: Transform - pos: -15.5,57.5 - parent: 1 - - uid: 1440 - components: - - type: Transform - pos: -24.5,43.5 - parent: 1 - - uid: 1441 - components: - - type: Transform - pos: -24.5,44.5 - parent: 1 - - uid: 1450 - components: - - type: Transform - pos: -24.5,42.5 - parent: 1 - - uid: 1461 - components: - - type: Transform - pos: -26.5,44.5 - parent: 1 - - uid: 1462 - components: - - type: Transform - pos: -26.5,43.5 - parent: 1 - - uid: 1463 - components: - - type: Transform - pos: -26.5,42.5 - parent: 1 - - uid: 1469 - components: - - type: Transform - pos: -35.5,41.5 - parent: 1 - - uid: 1472 - components: - - type: Transform - pos: -34.5,39.5 - parent: 1 - - uid: 1473 - components: - - type: Transform - pos: -34.5,41.5 - parent: 1 - - uid: 1474 - components: - - type: Transform - pos: -39.5,46.5 - parent: 1 - - uid: 1475 - components: - - type: Transform - pos: -39.5,45.5 - parent: 1 - - uid: 1500 - components: - - type: Transform - pos: -41.5,46.5 - parent: 1 - - uid: 1503 - components: - - type: Transform - pos: -41.5,43.5 - parent: 1 - - uid: 1504 - components: - - type: Transform - pos: -41.5,42.5 - parent: 1 - - uid: 1511 - components: - - type: Transform - pos: -35.5,39.5 - parent: 1 - - uid: 1514 - components: - - type: Transform - pos: -32.5,39.5 - parent: 1 - - uid: 1515 - components: - - type: Transform - pos: -31.5,39.5 - parent: 1 - - uid: 1516 - components: - - type: Transform - pos: -30.5,39.5 - parent: 1 - - uid: 1530 - components: - - type: Transform - pos: -32.5,41.5 - parent: 1 - - uid: 1531 - components: - - type: Transform - pos: -31.5,41.5 - parent: 1 - - uid: 1532 - components: - - type: Transform - pos: -30.5,41.5 - parent: 1 - - uid: 1535 - components: - - type: Transform - pos: -36.5,42.5 - parent: 1 - - uid: 1538 - components: - - type: Transform - pos: -36.5,46.5 - parent: 1 - - uid: 1564 - components: - - type: Transform - pos: -39.5,42.5 - parent: 1 - - uid: 1575 - components: - - type: Transform - pos: -27.5,46.5 - parent: 1 - - uid: 1576 - components: - - type: Transform - pos: -28.5,46.5 - parent: 1 - - uid: 1578 - components: - - type: Transform - pos: -39.5,43.5 - parent: 1 - - uid: 1602 - components: - - type: Transform - pos: -24.5,59.5 - parent: 1 - - uid: 1603 - components: - - type: Transform - pos: -23.5,59.5 - parent: 1 - - uid: 1604 - components: - - type: Transform - pos: -22.5,59.5 - parent: 1 - - uid: 1605 - components: - - type: Transform - pos: -29.5,59.5 - parent: 1 - - uid: 1606 - components: - - type: Transform - pos: -28.5,59.5 - parent: 1 - - uid: 1607 - components: - - type: Transform - pos: -27.5,59.5 - parent: 1 - - uid: 1608 - components: - - type: Transform - pos: -20.5,61.5 - parent: 1 - - uid: 1609 - components: - - type: Transform - pos: -20.5,62.5 - parent: 1 - - uid: 1610 - components: - - type: Transform - pos: -20.5,63.5 - parent: 1 - - uid: 1611 - components: - - type: Transform - pos: -20.5,64.5 - parent: 1 - - uid: 1612 - components: - - type: Transform - pos: -30.5,58.5 - parent: 1 - - uid: 1613 - components: - - type: Transform - pos: -32.5,57.5 - parent: 1 - - uid: 1615 - components: - - type: Transform - pos: -35.5,57.5 - parent: 1 - - uid: 1616 - components: - - type: Transform - pos: -34.5,57.5 - parent: 1 - - uid: 1624 - components: - - type: Transform - pos: -44.5,52.5 - parent: 1 - - uid: 1625 - components: - - type: Transform - pos: -43.5,52.5 - parent: 1 - - uid: 1626 - components: - - type: Transform - pos: -42.5,52.5 - parent: 1 - - uid: 1627 - components: - - type: Transform - pos: -45.5,51.5 - parent: 1 - - uid: 1628 - components: - - type: Transform - pos: -45.5,50.5 - parent: 1 - - uid: 1629 - components: - - type: Transform - pos: -47.5,49.5 - parent: 1 - - uid: 1630 - components: - - type: Transform - pos: -46.5,49.5 - parent: 1 - - uid: 1631 - components: - - type: Transform - pos: -48.5,48.5 - parent: 1 - - uid: 1632 - components: - - type: Transform - pos: -48.5,47.5 - parent: 1 - - uid: 1633 - components: - - type: Transform - pos: -48.5,46.5 - parent: 1 - - uid: 1634 - components: - - type: Transform - pos: -49.5,45.5 - parent: 1 - - uid: 1635 - components: - - type: Transform - pos: -50.5,44.5 - parent: 1 - - uid: 1636 - components: - - type: Transform - pos: -50.5,43.5 - parent: 1 - - uid: 1637 - components: - - type: Transform - pos: -50.5,42.5 - parent: 1 - - uid: 1638 - components: - - type: Transform - pos: -50.5,41.5 - parent: 1 - - uid: 1639 - components: - - type: Transform - pos: -52.5,39.5 - parent: 1 - - uid: 1640 - components: - - type: Transform - pos: -52.5,35.5 - parent: 1 - - uid: 1642 - components: - - type: Transform - pos: -50.5,34.5 - parent: 1 - - uid: 1669 - components: - - type: Transform - pos: -31.5,57.5 - parent: 1 - - uid: 1696 - components: - - type: Transform - pos: -12.5,71.5 - parent: 1 - - uid: 1697 - components: - - type: Transform - pos: -13.5,71.5 - parent: 1 - - uid: 1698 - components: - - type: Transform - pos: -14.5,70.5 - parent: 1 - - uid: 1699 - components: - - type: Transform - pos: -14.5,69.5 - parent: 1 - - uid: 1700 - components: - - type: Transform - pos: -14.5,68.5 - parent: 1 - - uid: 1701 - components: - - type: Transform - pos: -14.5,67.5 - parent: 1 - - uid: 1702 - components: - - type: Transform - pos: -16.5,65.5 - parent: 1 - - uid: 1703 - components: - - type: Transform - pos: -17.5,65.5 - parent: 1 - - uid: 1704 - components: - - type: Transform - pos: -18.5,65.5 - parent: 1 - - uid: 1705 - components: - - type: Transform - pos: -19.5,65.5 - parent: 1 - - uid: 1715 - components: - - type: Transform - pos: -45.5,39.5 - parent: 1 - - uid: 1718 - components: - - type: Transform - pos: -40.5,34.5 - parent: 1 - - uid: 1719 - components: - - type: Transform - pos: -40.5,33.5 - parent: 1 - - uid: 1720 - components: - - type: Transform - pos: -40.5,32.5 - parent: 1 - - uid: 1724 - components: - - type: Transform - pos: -43.5,35.5 - parent: 1 - - uid: 1725 - components: - - type: Transform - pos: -42.5,35.5 - parent: 1 - - uid: 1726 - components: - - type: Transform - pos: -41.5,35.5 - parent: 1 - - uid: 1760 - components: - - type: Transform - pos: -40.5,17.5 - parent: 1 - - uid: 1761 - components: - - type: Transform - pos: -40.5,18.5 - parent: 1 - - uid: 1762 - components: - - type: Transform - pos: -40.5,19.5 - parent: 1 - - uid: 1768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,29.5 - parent: 1 - - uid: 1769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,29.5 - parent: 1 - - uid: 1770 - components: - - type: Transform - pos: -43.5,31.5 - parent: 1 - - uid: 1775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,29.5 - parent: 1 - - uid: 1776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,29.5 - parent: 1 - - uid: 1780 - components: - - type: Transform - pos: -43.5,33.5 - parent: 1 - - uid: 1795 - components: - - type: Transform - pos: -14.5,57.5 - parent: 1 - - uid: 1863 - components: - - type: Transform - pos: 3.5,54.5 - parent: 1 - - uid: 1864 - components: - - type: Transform - pos: 3.5,55.5 - parent: 1 - - uid: 1865 - components: - - type: Transform - pos: 3.5,57.5 - parent: 1 - - uid: 1866 - components: - - type: Transform - pos: 3.5,52.5 - parent: 1 - - uid: 1871 - components: - - type: Transform - pos: 1.5,59.5 - parent: 1 - - uid: 1872 - components: - - type: Transform - pos: 1.5,60.5 - parent: 1 - - uid: 1873 - components: - - type: Transform - pos: 1.5,61.5 - parent: 1 - - uid: 1917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,51.5 - parent: 1 - - uid: 1918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,51.5 - parent: 1 - - uid: 1959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-6.5 - parent: 1 - - uid: 1960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-10.5 - parent: 1 - - uid: 1961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-12.5 - parent: 1 - - uid: 1962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-12.5 - parent: 1 - - uid: 1963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-10.5 - parent: 1 - - uid: 1964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-10.5 - parent: 1 - - uid: 1965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-11.5 - parent: 1 - - uid: 1966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-11.5 - parent: 1 - - uid: 1995 - components: - - type: Transform - pos: 46.5,-15.5 - parent: 1 - - uid: 1997 - components: - - type: Transform - pos: 49.5,-15.5 - parent: 1 - - uid: 2006 - components: - - type: Transform - pos: 44.5,-13.5 - parent: 1 - - uid: 2012 - components: - - type: Transform - pos: 42.5,-6.5 - parent: 1 - - uid: 2013 - components: - - type: Transform - pos: 41.5,-6.5 - parent: 1 - - uid: 2014 - components: - - type: Transform - pos: 40.5,-6.5 - parent: 1 - - uid: 2015 - components: - - type: Transform - pos: 39.5,-6.5 - parent: 1 - - uid: 2016 - components: - - type: Transform - pos: 37.5,-6.5 - parent: 1 - - uid: 2017 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 1 - - uid: 2018 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 1 - - uid: 2019 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 1 - - uid: 2029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 1 - - uid: 2032 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 1 - - uid: 2034 - components: - - type: Transform - pos: 51.5,-13.5 - parent: 1 - - uid: 2035 - components: - - type: Transform - pos: 48.5,-15.5 - parent: 1 - - uid: 2040 - components: - - type: Transform - pos: 44.5,-14.5 - parent: 1 - - uid: 2046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 1 - - uid: 2056 - components: - - type: Transform - pos: 50.5,-11.5 - parent: 1 - - uid: 2068 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 1 - - uid: 2071 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 1 - - uid: 2073 - components: - - type: Transform - pos: 2.5,-43.5 - parent: 1 - - uid: 2076 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 1 - - uid: 2077 - components: - - type: Transform - pos: 2.5,-45.5 - parent: 1 - - uid: 2088 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 1 - - uid: 2089 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 1 - - uid: 2090 - components: - - type: Transform - pos: -4.5,-36.5 - parent: 1 - - uid: 2091 - components: - - type: Transform - pos: -4.5,-35.5 - parent: 1 - - uid: 2092 - components: - - type: Transform - pos: -4.5,-34.5 - parent: 1 - - uid: 2093 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 1 - - uid: 2094 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 1 - - uid: 2098 - components: - - type: Transform - pos: 3.5,-37.5 - parent: 1 - - uid: 2099 - components: - - type: Transform - pos: 3.5,-41.5 - parent: 1 - - uid: 2100 - components: - - type: Transform - pos: 3.5,-40.5 - parent: 1 - - uid: 2101 - components: - - type: Transform - pos: 3.5,-39.5 - parent: 1 - - uid: 2102 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 1 - - uid: 2103 - components: - - type: Transform - pos: 3.5,-36.5 - parent: 1 - - uid: 2105 - components: - - type: Transform - pos: 3.5,-34.5 - parent: 1 - - uid: 2106 - components: - - type: Transform - pos: 3.5,-33.5 - parent: 1 - - uid: 2107 - components: - - type: Transform - pos: 3.5,-32.5 - parent: 1 - - uid: 2114 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 1 - - uid: 2115 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 1 - - uid: 2116 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 1 - - uid: 2117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 1 - - uid: 2140 - components: - - type: Transform - pos: -52.5,12.5 - parent: 1 - - uid: 2141 - components: - - type: Transform - pos: -52.5,16.5 - parent: 1 - - uid: 2148 - components: - - type: Transform - pos: -2.5,-39.5 - parent: 1 - - uid: 2149 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 1 - - uid: 2150 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 1 - - uid: 2151 - components: - - type: Transform - pos: 1.5,-39.5 - parent: 1 - - uid: 2152 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 1 - - uid: 2153 - components: - - type: Transform - pos: 1.5,-41.5 - parent: 1 - - uid: 2154 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 1 - - uid: 2155 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 1 - - uid: 2156 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 1 - - uid: 2157 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 1 - - uid: 2158 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 1 - - uid: 2159 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 1 - - uid: 2160 - components: - - type: Transform - pos: 1.5,-35.5 - parent: 1 - - uid: 2161 - components: - - type: Transform - pos: 1.5,-34.5 - parent: 1 - - uid: 2162 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 1 - - uid: 2163 - components: - - type: Transform - pos: 0.5,-32.5 - parent: 1 - - uid: 2164 - components: - - type: Transform - pos: -0.5,-32.5 - parent: 1 - - uid: 2165 - components: - - type: Transform - pos: -1.5,-32.5 - parent: 1 - - uid: 2166 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 1 - - uid: 2167 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 1 - - uid: 2168 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 1 - - uid: 2241 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 1 - - uid: 2255 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 1 - - uid: 2256 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 1 - - uid: 2257 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 1 - - uid: 2258 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 1 - - uid: 2259 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 1 - - uid: 2260 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 1 - - uid: 2261 - components: - - type: Transform - pos: -4.5,-24.5 - parent: 1 - - uid: 2262 - components: - - type: Transform - pos: -4.5,-25.5 - parent: 1 - - uid: 2263 - components: - - type: Transform - pos: -4.5,-26.5 - parent: 1 - - uid: 2264 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 1 - - uid: 2265 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 1 - - uid: 2266 - components: - - type: Transform - pos: -4.5,-29.5 - parent: 1 - - uid: 2267 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 1 - - uid: 2293 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 1 - - uid: 2294 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 1 - - uid: 2295 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 1 - - uid: 2320 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 1 - - uid: 2335 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 1 - - uid: 2380 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 1 - - uid: 2387 - components: - - type: Transform - pos: -9.5,-10.5 - parent: 1 - - uid: 2388 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 1 - - uid: 2397 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 1 - - uid: 2408 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 1 - - uid: 2437 - components: - - type: Transform - pos: 10.5,-29.5 - parent: 1 - - uid: 2442 - components: - - type: Transform - pos: 6.5,-27.5 - parent: 1 - - uid: 2443 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 1 - - uid: 2514 - components: - - type: Transform - pos: 28.5,-5.5 - parent: 1 - - uid: 2516 - components: - - type: Transform - pos: 28.5,0.5 - parent: 1 - - uid: 2518 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 1 - - uid: 2520 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 1 - - uid: 2524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,6.5 - parent: 1 - - uid: 2525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - - uid: 2526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 1 - - uid: 2699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-46.5 - parent: 1 - - uid: 2704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-46.5 - parent: 1 - - uid: 2720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-46.5 - parent: 1 - - uid: 2798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 1 - - uid: 2799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 1 - - uid: 2800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 1 - - uid: 2801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 1 - - uid: 2802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 1 - - uid: 2803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1 - - uid: 2807 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 1 - - uid: 2808 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 1 - - uid: 2815 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 1 - - uid: 2816 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 1 - - uid: 2872 - components: - - type: Transform - pos: 36.5,-19.5 - parent: 1 - - uid: 2884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - - uid: 2885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,4.5 - parent: 1 - - uid: 2903 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 1 - - uid: 2904 - components: - - type: Transform - pos: -18.5,-40.5 - parent: 1 - - uid: 2905 - components: - - type: Transform - pos: -18.5,-39.5 - parent: 1 - - uid: 2906 - components: - - type: Transform - pos: -19.5,-38.5 - parent: 1 - - uid: 2907 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 1 - - uid: 2908 - components: - - type: Transform - pos: -21.5,-37.5 - parent: 1 - - uid: 2909 - components: - - type: Transform - pos: -21.5,-36.5 - parent: 1 - - uid: 2910 - components: - - type: Transform - pos: -21.5,-34.5 - parent: 1 - - uid: 2911 - components: - - type: Transform - pos: -21.5,-33.5 - parent: 1 - - uid: 2912 - components: - - type: Transform - pos: -22.5,-31.5 - parent: 1 - - uid: 2913 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 1 - - uid: 2914 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 1 - - uid: 2925 - components: - - type: Transform - pos: 38.5,-17.5 - parent: 1 - - uid: 2926 - components: - - type: Transform - pos: 36.5,-20.5 - parent: 1 - - uid: 2927 - components: - - type: Transform - pos: 35.5,-22.5 - parent: 1 - - uid: 3046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 1 - - uid: 3062 - components: - - type: Transform - pos: 16.5,-41.5 - parent: 1 - - uid: 3063 - components: - - type: Transform - pos: 17.5,-40.5 - parent: 1 - - uid: 3064 - components: - - type: Transform - pos: 17.5,-39.5 - parent: 1 - - uid: 3065 - components: - - type: Transform - pos: 18.5,-38.5 - parent: 1 - - uid: 3067 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 1 - - uid: 3068 - components: - - type: Transform - pos: 20.5,-36.5 - parent: 1 - - uid: 3069 - components: - - type: Transform - pos: 20.5,-34.5 - parent: 1 - - uid: 3070 - components: - - type: Transform - pos: 20.5,-33.5 - parent: 1 - - uid: 3071 - components: - - type: Transform - pos: 21.5,-31.5 - parent: 1 - - uid: 3072 - components: - - type: Transform - pos: 22.5,-30.5 - parent: 1 - - uid: 3073 - components: - - type: Transform - pos: 22.5,-29.5 - parent: 1 - - uid: 3077 - components: - - type: Transform - pos: 38.5,-16.5 - parent: 1 - - uid: 3079 - components: - - type: Transform - pos: 31.5,-25.5 - parent: 1 - - uid: 3080 - components: - - type: Transform - pos: 33.5,-24.5 - parent: 1 - - uid: 3081 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 1 - - uid: 3082 - components: - - type: Transform - pos: 28.5,-27.5 - parent: 1 - - uid: 3089 - components: - - type: Transform - pos: 40.5,-11.5 - parent: 1 - - uid: 3091 - components: - - type: Transform - pos: 39.5,-13.5 - parent: 1 - - uid: 3093 - components: - - type: Transform - pos: 36.5,77.5 - parent: 1 - - uid: 3095 - components: - - type: Transform - pos: 35.5,76.5 - parent: 1 - - uid: 3096 - components: - - type: Transform - pos: 24.5,-27.5 - parent: 1 - - uid: 3097 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 1 - - uid: 3098 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 1 - - uid: 3099 - components: - - type: Transform - pos: 34.5,-22.5 - parent: 1 - - uid: 3100 - components: - - type: Transform - pos: 36.5,-21.5 - parent: 1 - - uid: 3139 - components: - - type: Transform - pos: 34.5,76.5 - parent: 1 - - uid: 3158 - components: - - type: Transform - pos: 30.5,76.5 - parent: 1 - - uid: 3184 - components: - - type: Transform - pos: 39.5,47.5 - parent: 1 - - uid: 3231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,48.5 - parent: 1 - - uid: 3242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,48.5 - parent: 1 - - uid: 3340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,49.5 - parent: 1 - - uid: 3343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,49.5 - parent: 1 - - uid: 3346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,44.5 - parent: 1 - - uid: 3518 - components: - - type: Transform - pos: -50.5,17.5 - parent: 1 - - uid: 3520 - components: - - type: Transform - pos: -49.5,17.5 - parent: 1 - - uid: 3524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,41.5 - parent: 1 - - uid: 3525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,45.5 - parent: 1 - - uid: 3526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,46.5 - parent: 1 - - uid: 3532 - components: - - type: Transform - pos: 42.5,41.5 - parent: 1 - - uid: 3578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 1 - - uid: 3582 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 1 - - uid: 3586 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 1 - - uid: 3609 - components: - - type: Transform - pos: 9.5,24.5 - parent: 1 - - uid: 3622 - components: - - type: Transform - pos: 10.5,21.5 - parent: 1 - - uid: 3638 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1 - - uid: 3645 - components: - - type: Transform - pos: 8.5,16.5 - parent: 1 - - uid: 3646 - components: - - type: Transform - pos: 9.5,16.5 - parent: 1 - - uid: 3692 - components: - - type: Transform - pos: 12.5,35.5 - parent: 1 - - uid: 3693 - components: - - type: Transform - pos: 11.5,35.5 - parent: 1 - - uid: 3694 - components: - - type: Transform - pos: 10.5,35.5 - parent: 1 - - uid: 3731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-18.5 - parent: 1 - - uid: 3732 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 1 - - uid: 3747 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 1 - - uid: 3751 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 1 - - uid: 3757 - components: - - type: Transform - pos: 17.5,-26.5 - parent: 1 - - uid: 3758 - components: - - type: Transform - pos: 19.5,-24.5 - parent: 1 - - uid: 3763 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 1 - - uid: 3764 - components: - - type: Transform - pos: 19.5,-22.5 - parent: 1 - - uid: 3774 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 1 - - uid: 3776 - components: - - type: Transform - pos: 17.5,-28.5 - parent: 1 - - uid: 3777 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 1 - - uid: 3778 - components: - - type: Transform - pos: 21.5,-24.5 - parent: 1 - - uid: 3779 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 1 - - uid: 3780 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 1 - - uid: 3807 - components: - - type: Transform - pos: 23.5,-14.5 - parent: 1 - - uid: 3991 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 1 - - uid: 4008 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 1 - - uid: 4079 - components: - - type: Transform - pos: 13.5,68.5 - parent: 1 - - uid: 4084 - components: - - type: Transform - pos: 15.5,68.5 - parent: 1 - - uid: 4085 - components: - - type: Transform - pos: 15.5,66.5 - parent: 1 - - uid: 4101 - components: - - type: Transform - pos: -53.5,46.5 - parent: 1 - - uid: 4120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,16.5 - parent: 1 - - uid: 4121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 1 - - uid: 4122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,16.5 - parent: 1 - - uid: 4129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 1 - - uid: 4132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,20.5 - parent: 1 - - uid: 4206 - components: - - type: Transform - pos: 14.5,68.5 - parent: 1 - - uid: 4215 - components: - - type: Transform - pos: 29.5,76.5 - parent: 1 - - uid: 4244 - components: - - type: Transform - pos: -35.5,8.5 - parent: 1 - - uid: 4339 - components: - - type: Transform - pos: -7.5,59.5 - parent: 1 - - uid: 4357 - components: - - type: Transform - pos: 27.5,76.5 - parent: 1 - - uid: 4362 - components: - - type: Transform - pos: 38.5,77.5 - parent: 1 - - uid: 4372 - components: - - type: Transform - pos: 39.5,77.5 - parent: 1 - - uid: 4373 - components: - - type: Transform - pos: 32.5,76.5 - parent: 1 - - uid: 4374 - components: - - type: Transform - pos: 40.5,76.5 - parent: 1 - - uid: 4375 - components: - - type: Transform - pos: 41.5,76.5 - parent: 1 - - uid: 4376 - components: - - type: Transform - pos: 43.5,76.5 - parent: 1 - - uid: 4377 - components: - - type: Transform - pos: 44.5,76.5 - parent: 1 - - uid: 4379 - components: - - type: Transform - pos: -47.5,76.5 - parent: 1 - - uid: 4397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 1 - - uid: 4406 - components: - - type: Transform - pos: 3.5,65.5 - parent: 1 - - uid: 4409 - components: - - type: Transform - pos: 29.5,42.5 - parent: 1 - - uid: 4410 - components: - - type: Transform - pos: 29.5,39.5 - parent: 1 - - uid: 4411 - components: - - type: Transform - pos: 32.5,42.5 - parent: 1 - - uid: 4412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,39.5 - parent: 1 - - uid: 4428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 1 - - uid: 4429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,29.5 - parent: 1 - - uid: 4430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,35.5 - parent: 1 - - uid: 4431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,35.5 - parent: 1 - - uid: 4464 - components: - - type: Transform - pos: -51.5,49.5 - parent: 1 - - uid: 4465 - components: - - type: Transform - pos: 20.5,39.5 - parent: 1 - - uid: 4466 - components: - - type: Transform - pos: 19.5,39.5 - parent: 1 - - uid: 4467 - components: - - type: Transform - pos: 21.5,39.5 - parent: 1 - - uid: 4471 - components: - - type: Transform - pos: -40.5,-13.5 - parent: 1 - - uid: 4473 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 1 - - uid: 4474 - components: - - type: Transform - pos: -39.5,-17.5 - parent: 1 - - uid: 4475 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 1 - - uid: 4476 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 1 - - uid: 4477 - components: - - type: Transform - pos: -37.5,-21.5 - parent: 1 - - uid: 4478 - components: - - type: Transform - pos: -36.5,-22.5 - parent: 1 - - uid: 4479 - components: - - type: Transform - pos: -35.5,-22.5 - parent: 1 - - uid: 4480 - components: - - type: Transform - pos: -34.5,-23.5 - parent: 1 - - uid: 4481 - components: - - type: Transform - pos: -34.5,-24.5 - parent: 1 - - uid: 4482 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 1 - - uid: 4483 - components: - - type: Transform - pos: -32.5,-25.5 - parent: 1 - - uid: 4484 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 1 - - uid: 4485 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 1 - - uid: 4487 - components: - - type: Transform - pos: 37.5,77.5 - parent: 1 - - uid: 4488 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 1 - - uid: 4490 - components: - - type: Transform - pos: -41.5,-11.5 - parent: 1 - - uid: 4504 - components: - - type: Transform - pos: -48.5,76.5 - parent: 1 - - uid: 4507 - components: - - type: Transform - pos: 45.5,35.5 - parent: 1 - - uid: 4508 - components: - - type: Transform - pos: 49.5,35.5 - parent: 1 - - uid: 5707 - components: - - type: Transform - pos: -46.5,39.5 - parent: 1 - - uid: 5730 - components: - - type: Transform - pos: 21.5,16.5 - parent: 1 - - uid: 5731 - components: - - type: Transform - pos: 22.5,16.5 - parent: 1 - - uid: 5732 - components: - - type: Transform - pos: 26.5,16.5 - parent: 1 - - uid: 5733 - components: - - type: Transform - pos: 27.5,16.5 - parent: 1 - - uid: 5734 - components: - - type: Transform - pos: 28.5,17.5 - parent: 1 - - uid: 5735 - components: - - type: Transform - pos: 28.5,18.5 - parent: 1 - - uid: 5736 - components: - - type: Transform - pos: 28.5,22.5 - parent: 1 - - uid: 5737 - components: - - type: Transform - pos: 28.5,23.5 - parent: 1 - - uid: 5794 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 1 - - uid: 5827 - components: - - type: Transform - pos: -37.5,-0.5 - parent: 1 - - uid: 6096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,34.5 - parent: 1 - - uid: 6097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 1 - - uid: 6103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,35.5 - parent: 1 - - uid: 6104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,35.5 - parent: 1 - - uid: 6141 - components: - - type: Transform - pos: -38.5,-25.5 - parent: 1 - - uid: 6142 - components: - - type: Transform - pos: -38.5,-26.5 - parent: 1 - - uid: 6143 - components: - - type: Transform - pos: -37.5,-26.5 - parent: 1 - - uid: 6144 - components: - - type: Transform - pos: -36.5,-26.5 - parent: 1 - - uid: 6145 - components: - - type: Transform - pos: -18.5,-43.5 - parent: 1 - - uid: 6146 - components: - - type: Transform - pos: -34.5,-28.5 - parent: 1 - - uid: 6147 - components: - - type: Transform - pos: -33.5,-28.5 - parent: 1 - - uid: 6158 - components: - - type: Transform - pos: -24.5,-33.5 - parent: 1 - - uid: 6159 - components: - - type: Transform - pos: -24.5,-34.5 - parent: 1 - - uid: 6160 - components: - - type: Transform - pos: -24.5,-35.5 - parent: 1 - - uid: 6161 - components: - - type: Transform - pos: -24.5,-36.5 - parent: 1 - - uid: 6163 - components: - - type: Transform - pos: -24.5,-38.5 - parent: 1 - - uid: 6165 - components: - - type: Transform - pos: -24.5,-39.5 - parent: 1 - - uid: 6166 - components: - - type: Transform - pos: 37.5,-24.5 - parent: 1 - - uid: 6168 - components: - - type: Transform - pos: 37.5,-26.5 - parent: 1 - - uid: 6170 - components: - - type: Transform - pos: 35.5,-26.5 - parent: 1 - - uid: 6172 - components: - - type: Transform - pos: 34.5,-28.5 - parent: 1 - - uid: 6173 - components: - - type: Transform - pos: 33.5,-28.5 - parent: 1 - - uid: 6175 - components: - - type: Transform - pos: 31.5,-28.5 - parent: 1 - - uid: 6185 - components: - - type: Transform - pos: 23.5,-33.5 - parent: 1 - - uid: 6187 - components: - - type: Transform - pos: 23.5,-35.5 - parent: 1 - - uid: 6189 - components: - - type: Transform - pos: 23.5,-37.5 - parent: 1 - - uid: 6190 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 1 - - uid: 6191 - components: - - type: Transform - pos: 23.5,-39.5 - parent: 1 - - uid: 6192 - components: - - type: Transform - pos: 16.5,-47.5 - parent: 1 - - uid: 6194 - components: - - type: Transform - pos: -35.5,-28.5 - parent: 1 - - uid: 6195 - components: - - type: Transform - pos: -51.5,47.5 - parent: 1 - - uid: 6197 - components: - - type: Transform - pos: -48.5,53.5 - parent: 1 - - uid: 6200 - components: - - type: Transform - pos: -49.5,51.5 - parent: 1 - - uid: 6201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,87.5 - parent: 1 - - uid: 6202 - components: - - type: Transform - pos: -51.5,50.5 - parent: 1 - - uid: 6203 - components: - - type: Transform - pos: -47.5,53.5 - parent: 1 - - uid: 6204 - components: - - type: Transform - pos: -46.5,54.5 - parent: 1 - - uid: 6205 - components: - - type: Transform - pos: -46.5,55.5 - parent: 1 - - uid: 6206 - components: - - type: Transform - pos: -46.5,56.5 - parent: 1 - - uid: 6207 - components: - - type: Transform - pos: -45.5,56.5 - parent: 1 - - uid: 6209 - components: - - type: Transform - pos: -43.5,56.5 - parent: 1 - - uid: 6210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,87.5 - parent: 1 - - uid: 6212 - components: - - type: Transform - pos: -40.5,54.5 - parent: 1 - - uid: 6213 - components: - - type: Transform - pos: -40.5,55.5 - parent: 1 - - uid: 6214 - components: - - type: Transform - pos: -39.5,53.5 - parent: 1 - - uid: 6215 - components: - - type: Transform - pos: -37.5,53.5 - parent: 1 - - uid: 6218 - components: - - type: Transform - pos: -34.5,60.5 - parent: 1 - - uid: 6219 - components: - - type: Transform - pos: -33.5,60.5 - parent: 1 - - uid: 6220 - components: - - type: Transform - pos: -32.5,60.5 - parent: 1 - - uid: 6223 - components: - - type: Transform - pos: -31.5,62.5 - parent: 1 - - uid: 6224 - components: - - type: Transform - pos: -30.5,62.5 - parent: 1 - - uid: 6226 - components: - - type: Transform - pos: -28.5,62.5 - parent: 1 - - uid: 6228 - components: - - type: Transform - pos: -26.5,62.5 - parent: 1 - - uid: 6229 - components: - - type: Transform - pos: -30.5,76.5 - parent: 1 - - uid: 6230 - components: - - type: Transform - pos: -24.5,62.5 - parent: 1 - - uid: 6231 - components: - - type: Transform - pos: -23.5,62.5 - parent: 1 - - uid: 6232 - components: - - type: Transform - pos: -22.5,62.5 - parent: 1 - - uid: 6233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,87.5 - parent: 1 - - uid: 6234 - components: - - type: Transform - pos: -21.5,68.5 - parent: 1 - - uid: 6235 - components: - - type: Transform - pos: -20.5,68.5 - parent: 1 - - uid: 6238 - components: - - type: Transform - pos: -17.5,68.5 - parent: 1 - - uid: 6239 - components: - - type: Transform - pos: -16.5,68.5 - parent: 1 - - uid: 6240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,87.5 - parent: 1 - - uid: 6241 - components: - - type: Transform - pos: -15.5,74.5 - parent: 1 - - uid: 6243 - components: - - type: Transform - pos: -13.5,74.5 - parent: 1 - - uid: 6244 - components: - - type: Transform - pos: -12.5,74.5 - parent: 1 - - uid: 6245 - components: - - type: Transform - pos: -12.5,75.5 - parent: 1 - - uid: 6246 - components: - - type: Transform - pos: -12.5,76.5 - parent: 1 - - uid: 6247 - components: - - type: Transform - pos: -12.5,77.5 - parent: 1 - - uid: 6248 - components: - - type: Transform - pos: -12.5,78.5 - parent: 1 - - uid: 6249 - components: - - type: Transform - pos: -12.5,79.5 - parent: 1 - - uid: 6250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,87.5 - parent: 1 - - uid: 6251 - components: - - type: Transform - pos: 31.5,60.5 - parent: 1 - - uid: 6252 - components: - - type: Transform - pos: -11.5,79.5 - parent: 1 - - uid: 6254 - components: - - type: Transform - pos: -11.5,81.5 - parent: 1 - - uid: 6255 - components: - - type: Transform - pos: -11.5,82.5 - parent: 1 - - uid: 6256 - components: - - type: Transform - pos: -11.5,83.5 - parent: 1 - - uid: 6258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,86.5 - parent: 1 - - uid: 6259 - components: - - type: Transform - pos: -29.5,76.5 - parent: 1 - - uid: 6260 - components: - - type: Transform - pos: 10.5,83.5 - parent: 1 - - uid: 6261 - components: - - type: Transform - pos: 10.5,81.5 - parent: 1 - - uid: 6262 - components: - - type: Transform - pos: 10.5,80.5 - parent: 1 - - uid: 6263 - components: - - type: Transform - pos: 10.5,79.5 - parent: 1 - - uid: 6264 - components: - - type: Transform - pos: 11.5,79.5 - parent: 1 - - uid: 6265 - components: - - type: Transform - pos: 11.5,78.5 - parent: 1 - - uid: 6266 - components: - - type: Transform - pos: -41.5,76.5 - parent: 1 - - uid: 6268 - components: - - type: Transform - pos: 11.5,75.5 - parent: 1 - - uid: 6269 - components: - - type: Transform - pos: 11.5,74.5 - parent: 1 - - uid: 6270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,86.5 - parent: 1 - - uid: 6271 - components: - - type: Transform - pos: 12.5,74.5 - parent: 1 - - uid: 6272 - components: - - type: Transform - pos: 13.5,74.5 - parent: 1 - - uid: 6273 - components: - - type: Transform - pos: 14.5,74.5 - parent: 1 - - uid: 6274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,86.5 - parent: 1 - - uid: 6281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,86.5 - parent: 1 - - uid: 6282 - components: - - type: Transform - pos: 21.5,62.5 - parent: 1 - - uid: 6284 - components: - - type: Transform - pos: 23.5,62.5 - parent: 1 - - uid: 6285 - components: - - type: Transform - pos: 24.5,62.5 - parent: 1 - - uid: 6286 - components: - - type: Transform - pos: 25.5,62.5 - parent: 1 - - uid: 6289 - components: - - type: Transform - pos: 28.5,62.5 - parent: 1 - - uid: 6290 - components: - - type: Transform - pos: 29.5,62.5 - parent: 1 - - uid: 6291 - components: - - type: Transform - pos: 30.5,62.5 - parent: 1 - - uid: 6294 - components: - - type: Transform - pos: 33.5,60.5 - parent: 1 - - uid: 6295 - components: - - type: Transform - pos: 34.5,60.5 - parent: 1 - - uid: 6296 - components: - - type: Transform - pos: -42.5,76.5 - parent: 1 - - uid: 6297 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 1 - - uid: 6298 - components: - - type: Transform - pos: -44.5,76.5 - parent: 1 - - uid: 6299 - components: - - type: Transform - pos: -45.5,76.5 - parent: 1 - - uid: 6300 - components: - - type: Transform - pos: 41.5,58.5 - parent: 1 - - uid: 6301 - components: - - type: Transform - pos: 42.5,56.5 - parent: 1 - - uid: 6302 - components: - - type: Transform - pos: 42.5,55.5 - parent: 1 - - uid: 6304 - components: - - type: Transform - pos: 44.5,55.5 - parent: 1 - - uid: 6305 - components: - - type: Transform - pos: 46.5,52.5 - parent: 1 - - uid: 6306 - components: - - type: Transform - pos: 47.5,52.5 - parent: 1 - - uid: 6307 - components: - - type: Transform - pos: 49.5,48.5 - parent: 1 - - uid: 6308 - components: - - type: Transform - pos: 50.5,48.5 - parent: 1 - - uid: 6309 - components: - - type: Transform - pos: 51.5,48.5 - parent: 1 - - uid: 6310 - components: - - type: Transform - pos: 52.5,47.5 - parent: 1 - - uid: 6312 - components: - - type: Transform - pos: 52.5,45.5 - parent: 1 - - uid: 6313 - components: - - type: Transform - pos: 52.5,44.5 - parent: 1 - - uid: 6314 - components: - - type: Transform - pos: 52.5,43.5 - parent: 1 - - uid: 6316 - components: - - type: Transform - pos: 52.5,41.5 - parent: 1 - - uid: 6317 - components: - - type: Transform - pos: 17.5,-45.5 - parent: 1 - - uid: 6318 - components: - - type: Transform - pos: 17.5,-44.5 - parent: 1 - - uid: 6319 - components: - - type: Transform - pos: 17.5,-43.5 - parent: 1 - - uid: 6320 - components: - - type: Transform - pos: 17.5,-47.5 - parent: 1 - - uid: 6321 - components: - - type: Transform - pos: -18.5,-45.5 - parent: 1 - - uid: 6322 - components: - - type: Transform - pos: -18.5,-46.5 - parent: 1 - - uid: 6323 - components: - - type: Transform - pos: -18.5,-47.5 - parent: 1 - - uid: 6324 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 1 - - uid: 6325 - components: - - type: Transform - pos: -21.5,-42.5 - parent: 1 - - uid: 6326 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 1 - - uid: 6327 - components: - - type: Transform - pos: -22.5,-41.5 - parent: 1 - - uid: 6328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,87.5 - parent: 1 - - uid: 6329 - components: - - type: Transform - pos: 19.5,-42.5 - parent: 1 - - uid: 6330 - components: - - type: Transform - pos: -39.5,77.5 - parent: 1 - - uid: 6331 - components: - - type: Transform - pos: 21.5,-42.5 - parent: 1 - - uid: 6332 - components: - - type: Transform - pos: 21.5,-41.5 - parent: 1 - - uid: 6341 - components: - - type: Transform - pos: 39.5,54.5 - parent: 1 - - uid: 6342 - components: - - type: Transform - pos: 39.5,55.5 - parent: 1 - - uid: 6385 - components: - - type: Transform - pos: -38.5,77.5 - parent: 1 - - uid: 6462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,87.5 - parent: 1 - - uid: 6463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,87.5 - parent: 1 - - uid: 6464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,87.5 - parent: 1 - - uid: 6465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,87.5 - parent: 1 - - uid: 6466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,86.5 - parent: 1 - - uid: 6467 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,86.5 - parent: 1 - - uid: 6469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,86.5 - parent: 1 - - uid: 6470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,86.5 - parent: 1 - - uid: 6478 - components: - - type: Transform - pos: -53.5,45.5 - parent: 1 - - uid: 6483 - components: - - type: Transform - pos: -53.5,42.5 - parent: 1 - - uid: 6492 - components: - - type: Transform - pos: -53.5,43.5 - parent: 1 - - uid: 6493 - components: - - type: Transform - pos: -53.5,41.5 - parent: 1 - - uid: 6497 - components: - - type: Transform - pos: 42.5,-10.5 - parent: 1 - - uid: 6498 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 1 - - uid: 6499 - components: - - type: Transform - pos: 44.5,-12.5 - parent: 1 - - uid: 6510 - components: - - type: Transform - pos: 51.5,-8.5 - parent: 1 - - uid: 6511 - components: - - type: Transform - pos: 50.5,-10.5 - parent: 1 - - uid: 6515 - components: - - type: Transform - pos: 50.5,-12.5 - parent: 1 - - uid: 6530 - components: - - type: Transform - pos: -37.5,77.5 - parent: 1 - - uid: 6531 - components: - - type: Transform - pos: -36.5,77.5 - parent: 1 - - uid: 6532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,6.5 - parent: 1 - - uid: 6533 - components: - - type: Transform - pos: -31.5,76.5 - parent: 1 - - uid: 6534 - components: - - type: Transform - pos: -35.5,76.5 - parent: 1 - - uid: 6535 - components: - - type: Transform - pos: -34.5,76.5 - parent: 1 - - uid: 6536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,7.5 - parent: 1 - - uid: 6537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,7.5 - parent: 1 - - uid: 6538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,0.5 - parent: 1 - - uid: 6542 - components: - - type: Transform - pos: -33.5,76.5 - parent: 1 - - uid: 6562 - components: - - type: Transform - pos: 45.5,76.5 - parent: 1 - - uid: 6567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,11.5 - parent: 1 - - uid: 6568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,11.5 - parent: 1 - - uid: 6570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-5.5 - parent: 1 - - uid: 6571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 1 - - uid: 6581 - components: - - type: Transform - pos: 4.5,65.5 - parent: 1 - - uid: 6826 - components: - - type: Transform - pos: -46.5,0.5 - parent: 1 - - uid: 6852 - components: - - type: Transform - pos: 37.5,49.5 - parent: 1 - - uid: 7178 - components: - - type: Transform - pos: -46.5,17.5 - parent: 1 - - uid: 7179 - components: - - type: Transform - pos: -48.5,17.5 - parent: 1 - - uid: 7248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 1 - - uid: 7399 - components: - - type: Transform - pos: 27.5,-28.5 - parent: 1 - - uid: 7634 - components: - - type: Transform - pos: 25.5,-28.5 - parent: 1 - - uid: 7642 - components: - - type: Transform - pos: -26.5,-28.5 - parent: 1 - - uid: 7647 - components: - - type: Transform - pos: 47.5,76.5 - parent: 1 - - uid: 7653 - components: - - type: Transform - pos: -11.5,58.5 - parent: 1 - - uid: 7656 - components: - - type: Transform - pos: -10.5,58.5 - parent: 1 - - uid: 7657 - components: - - type: Transform - pos: -9.5,61.5 - parent: 1 - - uid: 7673 - components: - - type: Transform - pos: -28.5,-28.5 - parent: 1 - - uid: 7678 - components: - - type: Transform - pos: 26.5,67.5 - parent: 1 - - uid: 7679 - components: - - type: Transform - pos: 26.5,68.5 - parent: 1 - - uid: 7680 - components: - - type: Transform - pos: 26.5,69.5 - parent: 1 - - uid: 7682 - components: - - type: Transform - pos: 26.5,71.5 - parent: 1 - - uid: 7684 - components: - - type: Transform - pos: 26.5,73.5 - parent: 1 - - uid: 7685 - components: - - type: Transform - pos: 26.5,74.5 - parent: 1 - - uid: 7686 - components: - - type: Transform - pos: 26.5,75.5 - parent: 1 - - uid: 7687 - components: - - type: Transform - pos: 26.5,76.5 - parent: 1 - - uid: 7719 - components: - - type: Transform - pos: 48.5,76.5 - parent: 1 - - uid: 7720 - components: - - type: Transform - pos: 48.5,75.5 - parent: 1 - - uid: 7721 - components: - - type: Transform - pos: 48.5,74.5 - parent: 1 - - uid: 7723 - components: - - type: Transform - pos: 48.5,72.5 - parent: 1 - - uid: 7725 - components: - - type: Transform - pos: 48.5,70.5 - parent: 1 - - uid: 7726 - components: - - type: Transform - pos: 48.5,69.5 - parent: 1 - - uid: 7727 - components: - - type: Transform - pos: 48.5,68.5 - parent: 1 - - uid: 7728 - components: - - type: Transform - pos: 48.5,67.5 - parent: 1 - - uid: 7774 - components: - - type: Transform - pos: -46.5,6.5 - parent: 1 - - uid: 7775 - components: - - type: Transform - pos: -45.5,6.5 - parent: 1 - - uid: 7886 - components: - - type: Transform - pos: -47.5,39.5 - parent: 1 - - uid: 7887 - components: - - type: Transform - pos: -41.5,45.5 - parent: 1 - - uid: 7902 - components: - - type: Transform - pos: -44.5,39.5 - parent: 1 - - uid: 7914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 1 - - uid: 7916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,26.5 - parent: 1 - - uid: 7924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,26.5 - parent: 1 - - uid: 7933 - components: - - type: Transform - pos: -43.5,32.5 - parent: 1 - - uid: 8554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 1 - - uid: 8588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 1 - - uid: 8589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,16.5 - parent: 1 - - uid: 8640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,31.5 - parent: 1 - - uid: 8729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 1 - - uid: 8730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-16.5 - parent: 1 - - uid: 8757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-0.5 - parent: 8756 - - uid: 8758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 8756 - - uid: 8759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 8756 - - uid: 8760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 8756 - - uid: 8777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 8756 - - uid: 8778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 8756 - - uid: 8783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 8756 - - uid: 8784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,4.5 - parent: 8756 - - uid: 8785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 8756 - - uid: 8786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 8756 - - uid: 8787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 8756 - - uid: 8793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,1.5 - parent: 8756 - - uid: 8794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 8756 - - uid: 8802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 8756 - - uid: 8809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-4.5 - parent: 8756 - - uid: 8810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 8756 - - uid: 8816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 8756 - - uid: 8817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 8756 - - uid: 8945 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 1 - - uid: 8946 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 1 - - uid: 8989 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 1 - - uid: 9242 - components: - - type: Transform - pos: -14.5,3.5 - parent: 1 - - uid: 9243 - components: - - type: Transform - pos: -14.5,-2.5 - parent: 1 - - uid: 9580 - components: - - type: Transform - pos: 1.5,27.5 - parent: 1 - - uid: 9582 - components: - - type: Transform - pos: 1.5,30.5 - parent: 1 - - uid: 9583 - components: - - type: Transform - pos: 1.5,33.5 - parent: 1 - - uid: 9604 - components: - - type: Transform - pos: 16.5,-36.5 - parent: 1 - - uid: 10146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,53.5 - parent: 1 - - uid: 10148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,53.5 - parent: 1 - - uid: 10962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-13.5 - parent: 1 - - uid: 10963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-13.5 - parent: 1 - - uid: 11079 - components: - - type: Transform - pos: 21.5,10.5 - parent: 1 - - uid: 11080 - components: - - type: Transform - pos: 21.5,11.5 - parent: 1 - - uid: 14093 - components: - - type: Transform - pos: -48.5,34.5 - parent: 1 - - uid: 14094 - components: - - type: Transform - pos: -47.5,34.5 - parent: 1 - - uid: 18269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,76.5 - parent: 1 - - uid: 18270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,75.5 - parent: 1 - - uid: 18271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,74.5 - parent: 1 - - uid: 18272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,72.5 - parent: 1 - - uid: 18273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,71.5 - parent: 1 - - uid: 18274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,70.5 - parent: 1 - - uid: 18275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,69.5 - parent: 1 - - uid: 18277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,67.5 - parent: 1 - - uid: 18303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,76.5 - parent: 1 - - uid: 18304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,75.5 - parent: 1 - - uid: 18305 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,74.5 - parent: 1 - - uid: 18306 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,73.5 - parent: 1 - - uid: 18307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,72.5 - parent: 1 - - uid: 18310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,69.5 - parent: 1 - - uid: 18311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,68.5 - parent: 1 - - uid: 18312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,67.5 - parent: 1 -- proto: GrilleBroken - entities: - - uid: 4358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,76.5 - parent: 1 - - uid: 4359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,76.5 - parent: 1 - - uid: 4380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,76.5 - parent: 1 - - uid: 4381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,76.5 - parent: 1 - - uid: 4486 - components: - - type: Transform - pos: 35.5,77.5 - parent: 1 - - uid: 6151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-25.5 - parent: 1 - - uid: 6155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,52.5 - parent: 1 - - uid: 6156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,76.5 - parent: 1 - - uid: 6157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,76.5 - parent: 1 - - uid: 6162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,40.5 - parent: 1 - - uid: 6164 - components: - - type: Transform - pos: 52.5,46.5 - parent: 1 - - uid: 6169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,62.5 - parent: 1 - - uid: 6171 - components: - - type: Transform - pos: 52.5,48.5 - parent: 1 - - uid: 6174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,62.5 - parent: 1 - - uid: 6176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,76.5 - parent: 1 - - uid: 6177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,76.5 - parent: 1 - - uid: 6179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,87.5 - parent: 1 - - uid: 6180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,62.5 - parent: 1 - - uid: 6181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,60.5 - parent: 1 - - uid: 6182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,42.5 - parent: 1 - - uid: 6183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,58.5 - parent: 1 - - uid: 6186 - components: - - type: Transform - pos: 42.5,57.5 - parent: 1 - - uid: 6188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,55.5 - parent: 1 - - uid: 6196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-26.5 - parent: 1 - - uid: 6199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,76.5 - parent: 1 - - uid: 6216 - components: - - type: Transform - pos: -53.5,44.5 - parent: 1 - - uid: 6217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-28.5 - parent: 1 - - uid: 6221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,76.5 - parent: 1 - - uid: 6227 - components: - - type: Transform - pos: 21.5,-40.5 - parent: 1 - - uid: 6236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-36.5 - parent: 1 - - uid: 6237 - components: - - type: Transform - pos: 23.5,-34.5 - parent: 1 - - uid: 6242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-46.5 - parent: 1 - - uid: 6253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-42.5 - parent: 1 - - uid: 6257 - components: - - type: Transform - pos: -35.5,-27.5 - parent: 1 - - uid: 6267 - components: - - type: Transform - pos: -38.5,-24.5 - parent: 1 - - uid: 6276 - components: - - type: Transform - pos: -24.5,-37.5 - parent: 1 - - uid: 6283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-42.5 - parent: 1 - - uid: 6287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-44.5 - parent: 1 - - uid: 6288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,87.5 - parent: 1 - - uid: 6292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,46.5 - parent: 1 - - uid: 6293 - components: - - type: Transform - pos: -22.5,-40.5 - parent: 1 - - uid: 6303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,86.5 - parent: 1 - - uid: 6311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,77.5 - parent: 1 - - uid: 6315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,82.5 - parent: 1 - - uid: 6355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,56.5 - parent: 1 - - uid: 6468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-28.5 - parent: 1 - - uid: 6851 - components: - - type: Transform - pos: 37.5,50.5 - parent: 1 - - uid: 7625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,76.5 - parent: 1 - - uid: 7626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,76.5 - parent: 1 - - uid: 7627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,76.5 - parent: 1 - - uid: 7628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,77.5 - parent: 1 - - uid: 7629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,76.5 - parent: 1 - - uid: 7677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,73.5 - parent: 1 - - uid: 7698 - components: - - type: Transform - pos: 26.5,70.5 - parent: 1 - - uid: 7701 - components: - - type: Transform - pos: 26.5,72.5 - parent: 1 - - uid: 7706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,72.5 - parent: 1 - - uid: 7709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,70.5 - parent: 1 - - uid: 7713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,66.5 - parent: 1 - - uid: 7717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,66.5 - parent: 1 - - uid: 7718 - components: - - type: Transform - pos: 48.5,71.5 - parent: 1 - - uid: 7724 - components: - - type: Transform - pos: 48.5,73.5 - parent: 1 - - uid: 8115 - components: - - type: Transform - pos: -51.5,48.5 - parent: 1 - - uid: 9222 - components: - - type: Transform - pos: -49.5,52.5 - parent: 1 - - uid: 9224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,60.5 - parent: 1 - - uid: 9585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,73.5 - parent: 1 - - uid: 9586 - components: - - type: Transform - pos: 11.5,76.5 - parent: 1 - - uid: 9707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,61.5 - parent: 1 - - uid: 9708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,62.5 - parent: 1 - - uid: 14034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,58.5 - parent: 1 - - uid: 18180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,62.5 - parent: 1 - - uid: 18181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,62.5 - parent: 1 - - uid: 18182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,62.5 - parent: 1 - - uid: 18183 - components: - - type: Transform - pos: -11.5,80.5 - parent: 1 - - uid: 18184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,68.5 - parent: 1 - - uid: 18185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,68.5 - parent: 1 - - uid: 18186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,73.5 - parent: 1 - - uid: 18187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,74.5 - parent: 1 - - uid: 18188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,86.5 - parent: 1 - - uid: 18189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,87.5 - parent: 1 - - uid: 18266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,66.5 - parent: 1 - - uid: 18276 - components: - - type: Transform - pos: -27.5,68.5 - parent: 1 - - uid: 18278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,73.5 - parent: 1 - - uid: 18315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,71.5 - parent: 1 - - uid: 18316 - components: - - type: Transform - pos: -49.5,70.5 - parent: 1 - - uid: 18317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,66.5 - parent: 1 -- proto: GroundCannabis - entities: - - uid: 18328 - components: - - type: Transform - pos: -4.3371787,11.84107 - parent: 1 -- proto: GunSafeDisabler - entities: - - uid: 3416 - components: - - type: Transform - pos: -6.5,59.5 - parent: 1 - - uid: 7766 - components: - - type: Transform - pos: -17.5,40.5 - parent: 1 -- proto: GunSafePistolMk58 - entities: - - uid: 3417 - components: - - type: Transform - pos: -4.5,59.5 - parent: 1 -- proto: GunSafeRifleLecter - entities: - - uid: 4382 - components: - - type: Transform - pos: -4.5,64.5 - parent: 1 -- proto: GunSafeShotgunEnforcer - entities: - - uid: 3408 - components: - - type: Transform - pos: -5.5,64.5 - parent: 1 -- proto: GunSafeShotgunKammerer - entities: - - uid: 8148 - components: - - type: Transform - pos: -5.5,59.5 - parent: 1 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 7693 - components: - - type: Transform - pos: -6.5,64.5 - parent: 1 -- proto: Handcuffs - entities: - - uid: 8071 - components: - - type: Transform - pos: 3.5258956,80.448524 - parent: 1 - - uid: 9396 - components: - - type: Transform - pos: -34.812588,-5.3036704 - parent: 1 - - uid: 9418 - components: - - type: Transform - pos: 26.351677,-13.233653 - parent: 1 -- proto: HandheldCrewMonitor - entities: - - uid: 8490 - components: - - type: Transform - pos: 16.562784,32.85037 - parent: 1 -- proto: HandheldGPSBasic - entities: - - uid: 4126 - components: - - type: Transform - pos: -42.37712,26.662056 - parent: 1 - - uid: 9388 - components: - - type: Transform - pos: -43.72039,-2.2772734 - parent: 1 -- proto: HandheldHealthAnalyzer - entities: - - uid: 8069 - components: - - type: Transform - pos: 6.4224486,80.533676 - parent: 1 -- proto: HandLabeler - entities: - - uid: 8707 - components: - - type: Transform - pos: -13.497177,-24.441525 - parent: 1 -- proto: Hemostat - entities: - - uid: 2616 - components: - - type: Transform - pos: -21.453913,34.60605 - parent: 1 -- proto: HighSecArmoryLocked - entities: - - uid: 2715 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,60.5 - parent: 1 -- proto: HighSecCaptainLocked - entities: - - uid: 9560 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-12.5 - parent: 1 - - uid: 9561 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-12.5 - parent: 1 -- proto: HighSecCommandLocked - entities: - - uid: 6460 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,-10.5 - parent: 1 - - uid: 6475 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,47.5 - parent: 1 - - uid: 6484 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,46.5 - parent: 1 - - uid: 6504 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,47.5 - parent: 1 - - uid: 6505 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,46.5 - parent: 1 - - uid: 7262 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-23.5 - parent: 1 - - uid: 9402 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-18.5 - parent: 1 - - uid: 10647 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-10.5 - parent: 1 -- proto: HolofanProjector - entities: - - uid: 8708 - components: - - type: Transform - pos: -13.493561,-19.411528 - parent: 1 - - uid: 9101 - components: - - type: Transform - pos: 6.6579733,-24.865988 - parent: 1 - - uid: 9234 - components: - - type: Transform - pos: -22.761885,-11.553672 - parent: 1 - - uid: 11074 - components: - - type: Transform - pos: 19.405106,4.6722174 - parent: 1 -- proto: Holoprojector - entities: - - uid: 6663 - components: - - type: Transform - pos: 16.524984,-4.1055784 - parent: 1 -- proto: HospitalCurtains - entities: - - uid: 6815 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,69.5 - parent: 1 -- proto: HospitalCurtainsOpen - entities: - - uid: 2489 - components: - - type: Transform - pos: 26.5,8.5 - parent: 1 - - uid: 3228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,49.5 - parent: 1 - - uid: 3240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,52.5 - parent: 1 - - uid: 4315 - components: - - type: Transform - pos: -38.5,49.5 - parent: 1 - - uid: 6689 - components: - - type: Transform - pos: 16.5,-40.5 - parent: 1 - - uid: 6798 - components: - - type: Transform - pos: -5.5,72.5 - parent: 1 - - uid: 6818 - components: - - type: Transform - pos: -13.5,60.5 - parent: 1 - - uid: 7027 - components: - - type: Transform - pos: -23.5,1.5 - parent: 1 - - uid: 8360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,48.5 - parent: 1 - - uid: 8391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,40.5 - parent: 1 - - uid: 8392 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,46.5 - parent: 1 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - uid: 8393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,47.5 - parent: 1 - - uid: 8479 - components: - - type: Transform - pos: 14.5,34.5 - parent: 1 - - uid: 8630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,19.5 - parent: 1 - - uid: 9017 - components: - - type: Transform - pos: -17.5,3.5 - parent: 1 - - uid: 9018 - components: - - type: Transform - pos: -17.5,1.5 - parent: 1 - - uid: 9019 - components: - - type: Transform - pos: -17.5,-2.5 - parent: 1 - - uid: 9103 - components: - - type: Transform - pos: 4.5,-23.5 - parent: 1 - - uid: 9325 - components: - - type: Transform - pos: -42.5,11.5 - parent: 1 - - uid: 9584 - components: - - type: Transform - pos: 1.5,33.5 - parent: 1 - - uid: 9587 - components: - - type: Transform - pos: 1.5,30.5 - parent: 1 - - uid: 9588 - components: - - type: Transform - pos: 1.5,27.5 - parent: 1 - - uid: 9872 - components: - - type: Transform - pos: -36.5,-21.5 - parent: 1 - - uid: 10383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 - parent: 1 - - uid: 13329 - components: - - type: Transform - pos: -10.5,10.5 - parent: 1 - - uid: 13406 - components: - - type: Transform - pos: -38.5,42.5 - parent: 1 - - uid: 13407 - components: - - type: Transform - pos: -38.5,46.5 - parent: 1 -- proto: hydroponicsSoil - entities: - - uid: 4320 - components: - - type: Transform - pos: -34.5,45.5 - parent: 1 - - uid: 4321 - components: - - type: Transform - pos: -34.5,44.5 - parent: 1 - - uid: 4322 - components: - - type: Transform - pos: -32.5,45.5 - parent: 1 - - uid: 4323 - components: - - type: Transform - pos: -32.5,44.5 - parent: 1 - - uid: 4332 - components: - - type: Transform - pos: -34.5,46.5 - parent: 1 - - uid: 4333 - components: - - type: Transform - pos: -32.5,46.5 - parent: 1 - - uid: 10956 - components: - - type: Transform - pos: 36.5,-17.5 - parent: 1 - - uid: 10957 - components: - - type: Transform - pos: 37.5,-17.5 - parent: 1 - - uid: 10958 - components: - - type: Transform - pos: 37.5,-16.5 - parent: 1 - - uid: 10959 - components: - - type: Transform - pos: 36.5,-16.5 - parent: 1 -- proto: HydroponicsToolClippers - entities: - - uid: 11041 - components: - - type: Transform - pos: 34.58487,-14.532225 - parent: 1 -- proto: HydroponicsToolHatchet - entities: - - uid: 4239 - components: - - type: Transform - pos: 8.448287,11.575508 - parent: 1 - - uid: 10964 - components: - - type: Transform - pos: 34.467308,-14.410013 - parent: 1 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 8274 - components: - - type: Transform - pos: -33.554195,46.106983 - parent: 1 - - uid: 11039 - components: - - type: Transform - pos: 37.22584,-16.547361 - parent: 1 - - uid: 18329 - components: - - type: Transform - pos: 5.441926,6.893481 - parent: 1 -- proto: HydroponicsToolScythe - entities: - - uid: 9005 - components: - - type: Transform - pos: 5.5596075,7.522549 - parent: 1 - - uid: 11038 - components: - - type: Transform - pos: 34.55647,-14.390314 - parent: 1 -- proto: HydroponicsToolSpade - entities: - - uid: 4234 - components: - - type: Transform - pos: 8.610393,11.560773 - parent: 1 - - uid: 8275 - components: - - type: Transform - pos: -33.497402,45.780586 - parent: 1 - - uid: 11040 - components: - - type: Transform - pos: 37.28264,-16.37707 - parent: 1 -- proto: hydroponicsTray - entities: - - uid: 2929 - components: - - type: Transform - pos: 9.5,11.5 - parent: 1 - - uid: 4222 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1 - - uid: 4223 - components: - - type: Transform - pos: 7.5,8.5 - parent: 1 - - uid: 4224 - components: - - type: Transform - pos: 7.5,7.5 - parent: 1 - - uid: 4225 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1 - - uid: 4226 - components: - - type: Transform - pos: 9.5,8.5 - parent: 1 - - uid: 4227 - components: - - type: Transform - pos: 9.5,7.5 - parent: 1 - - uid: 4228 - components: - - type: Transform - pos: 7.5,6.5 - parent: 1 - - uid: 4229 - components: - - type: Transform - pos: 9.5,6.5 - parent: 1 - - uid: 8594 - components: - - type: Transform - pos: 11.5,11.5 - parent: 1 - - uid: 9004 - components: - - type: Transform - pos: 5.5,11.5 - parent: 1 - - uid: 10115 - components: - - type: Transform - pos: 5.5,10.5 - parent: 1 - - uid: 10116 - components: - - type: Transform - pos: 5.5,8.5 - parent: 1 - - uid: 10117 - components: - - type: Transform - pos: 5.5,9.5 - parent: 1 -- proto: InflatableDoorStack - entities: - - uid: 8715 - components: - - type: Transform - pos: -11.275075,-15.582806 - parent: 1 -- proto: InflatableWallStack - entities: - - uid: 8755 - components: - - type: Transform - pos: -11.574207,-15.350821 - parent: 1 -- proto: IngotGold1 - entities: - - uid: 9944 - components: - - type: Transform - pos: -39.522156,-11.308753 - parent: 1 - - uid: 9945 - components: - - type: Transform - pos: -38.57084,-11.507429 - parent: 1 - - uid: 9946 - components: - - type: Transform - pos: -38.52824,-13.196171 - parent: 1 - - uid: 13429 - components: - - type: Transform - pos: -23.753557,58.80462 - parent: 1 - - uid: 13430 - components: - - type: Transform - pos: -23.61157,58.520798 - parent: 1 -- proto: IngotSilver - entities: - - uid: 2625 - components: - - type: Transform - pos: 5.5338554,45.698784 - parent: 1 -- proto: IngotSilver1 - entities: - - uid: 9947 - components: - - type: Transform - pos: -38.613434,-12.656909 - parent: 1 -- proto: IntercomAll - entities: - - uid: 18363 - components: - - type: Transform - pos: -7.5,71.5 - parent: 1 -- proto: IntercomCommand - entities: - - uid: 17569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - - uid: 17582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,11.5 - parent: 1 - - uid: 17593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,18.5 - parent: 1 - - uid: 17598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,33.5 - parent: 1 - - uid: 17607 - components: - - type: Transform - pos: -15.5,61.5 - parent: 1 - - uid: 17610 - components: - - type: Transform - pos: 4.5,75.5 - parent: 1 - - uid: 17611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,81.5 - parent: 1 -- proto: IntercomCommon - entities: - - uid: 8893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 8756 - - uid: 17553 - components: - - type: Transform - pos: 47.5,16.5 - parent: 1 - - uid: 17554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,35.5 - parent: 1 - - uid: 17555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,40.5 - parent: 1 - - uid: 17556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,18.5 - parent: 1 - - uid: 17557 - components: - - type: Transform - pos: -12.5,5.5 - parent: 1 - - uid: 17558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,11.5 - parent: 1 - - uid: 17559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,14.5 - parent: 1 - - uid: 17560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 1 - - uid: 17561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,37.5 - parent: 1 - - uid: 17562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,69.5 - parent: 1 - - uid: 17563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,54.5 - parent: 1 - - uid: 17564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1 - - uid: 17565 - components: - - type: Transform - pos: 27.5,7.5 - parent: 1 - - uid: 17603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,43.5 - parent: 1 -- proto: IntercomEngineering - entities: - - uid: 17567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-14.5 - parent: 1 - - uid: 17568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - - uid: 17570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 1 - - uid: 17571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 1 - - uid: 17572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-14.5 - parent: 1 - - uid: 17573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-46.5 - parent: 1 - - uid: 17578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-19.5 - parent: 1 -- proto: IntercomMedical - entities: - - uid: 17594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,20.5 - parent: 1 - - uid: 17596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 1 - - uid: 17597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 1 -- proto: IntercomScience - entities: - - uid: 17588 - components: - - type: Transform - pos: -14.5,21.5 - parent: 1 - - uid: 17589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,35.5 - parent: 1 - - uid: 17591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,20.5 - parent: 1 - - uid: 17592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,33.5 - parent: 1 -- proto: IntercomSecurity - entities: - - uid: 272 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 1 - - uid: 17566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 1 - - uid: 17601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,41.5 - parent: 1 - - uid: 17602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,49.5 - parent: 1 - - uid: 17604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,45.5 - parent: 1 - - uid: 17605 - components: - - type: Transform - pos: -4.5,55.5 - parent: 1 - - uid: 17606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,51.5 - parent: 1 - - uid: 17608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,58.5 - parent: 1 - - uid: 17609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,41.5 - parent: 1 -- proto: IntercomService - entities: - - uid: 17574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - - uid: 17575 - components: - - type: Transform - pos: -7.5,9.5 - parent: 1 - - uid: 17576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,10.5 - parent: 1 - - uid: 17577 - components: - - type: Transform - pos: -25.5,4.5 - parent: 1 - - uid: 17600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,46.5 - parent: 1 -- proto: IntercomSupply - entities: - - uid: 17579 - components: - - type: Transform - pos: -36.5,8.5 - parent: 1 - - uid: 17580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,11.5 - parent: 1 - - uid: 17581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-3.5 - parent: 1 - - uid: 17583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,22.5 - parent: 1 -- proto: JanitorialTrolley - entities: - - uid: 4018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 1 -- proto: JetpackMini - entities: - - uid: 4366 - components: - - type: Transform - pos: 25.382265,31.514528 - parent: 1 - - uid: 4368 - components: - - type: Transform - pos: 25.476015,31.717653 - parent: 1 - - uid: 7829 - components: - - type: Transform - pos: -41.32702,21.77888 - parent: 1 - - uid: 7931 - components: - - type: Transform - pos: -41.62712,21.537056 - parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 4327 - components: - - type: Transform - pos: -34.5,49.5 - parent: 1 - - uid: 4390 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 1 - - uid: 8091 - components: - - type: Transform - pos: 2.5,73.5 - parent: 1 - - uid: 9051 - components: - - type: Transform - pos: 5.5,2.5 - parent: 1 - - uid: 9141 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 1 - - uid: 9629 - components: - - type: Transform - pos: -41.5,-7.5 - parent: 1 -- proto: KitchenReagentGrinder - entities: - - uid: 4048 - components: - - type: Transform - pos: 2.5,24.5 - parent: 1 - - uid: 4328 - components: - - type: Transform - pos: -32.5,49.5 - parent: 1 - - uid: 9365 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1 - - uid: 18449 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 1 -- proto: KitchenSpike - entities: - - uid: 6632 - components: - - type: Transform - pos: 12.5,3.5 - parent: 1 -- proto: KnifePlastic - entities: - - uid: 555 - components: - - type: Transform - pos: 3.662112,0.58738536 - parent: 1 - - uid: 4077 - components: - - type: Transform - pos: 3.662112,0.58738536 - parent: 1 - - uid: 8272 - components: - - type: Transform - pos: -33.199226,49.54123 - parent: 1 - - uid: 8373 - components: - - type: Transform - pos: 32.924263,49.596226 - parent: 1 - - uid: 8423 - components: - - type: Transform - pos: 3.662112,0.58738536 - parent: 1 - - uid: 9149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5084922,72.475395 - parent: 1 -- proto: Lamp - entities: - - uid: 6849 - components: - - type: Transform - pos: 42.492897,51.04298 - parent: 1 - - uid: 10940 - components: - - type: Transform - pos: 34.508152,-21.140514 - parent: 1 -- proto: LampGold - entities: - - uid: 7034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.522398,7.8231235 - parent: 1 - - uid: 7144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.163023,7.5262485 - parent: 1 - - uid: 7288 - components: - - type: Transform - pos: 2.465765,62.00024 - parent: 1 - - uid: 9262 - components: - - type: Transform - pos: 23.380928,11.849496 - parent: 1 - - uid: 9340 - components: - - type: Transform - pos: -43.595627,7.955193 - parent: 1 -- proto: Lantern - entities: - - uid: 18420 - components: - - type: Transform - pos: -29.358017,56.723278 - parent: 1 -- proto: LauncherCreamPie - entities: - - uid: 6610 - components: - - type: Transform - pos: -15.972822,-0.42690194 - parent: 1 -- proto: LockerAtmosphericsFilled - entities: - - uid: 7094 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7095 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerBoozeFilled - entities: - - uid: 4042 - components: - - type: Transform - pos: -6.5,10.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 18352 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerBotanistFilled - entities: - - uid: 4232 - components: - - type: Transform - pos: 14.5,11.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4233 - components: - - type: Transform - pos: 15.5,11.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerCaptainFilledHardsuit - entities: - - uid: 4068 - components: - - type: Transform - pos: -6.5,74.5 - parent: 1 -- proto: LockerChemistryFilled - entities: - - uid: 6927 - components: - - type: Transform - pos: 3.5,25.5 - parent: 1 -- proto: LockerChiefEngineerFilled - entities: - - uid: 9111 - components: - - type: Transform - pos: 6.5,-23.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 4424 - components: - - type: Transform - pos: 16.5,34.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerClown - entities: - - uid: 8931 - components: - - type: Transform - pos: -16.5,1.5 - parent: 1 -- proto: LockerDetectiveFilled - entities: - - uid: 6846 - components: - - type: Transform - pos: 42.5,46.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerEngineerFilled - entities: - - uid: 4179 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4180 - components: - - type: Transform - pos: 5.5,-17.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4181 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerEvidence - entities: - - uid: 3589 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 3590 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4347 - components: - - type: Transform - pos: 41.5,44.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4348 - components: - - type: Transform - pos: 42.5,44.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4351 - components: - - type: Transform - pos: -5.5,44.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4352 - components: - - type: Transform - pos: -8.5,44.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4353 - components: - - type: Transform - pos: -11.5,44.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4354 - components: - - type: Transform - pos: -14.5,44.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8139 - components: - - type: Transform - pos: -5.284855,57.41589 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9391 - components: - - type: Transform - pos: -36.5,-0.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9392 - components: - - type: Transform - pos: -35.5,-0.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerFreezer - entities: - - uid: 6633 - components: - - type: Transform - pos: 10.5,3.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 234.99968 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9050 - components: - - type: Transform - pos: 5.5,0.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9844 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 234.99968 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9845 - - 9846 - - 9847 - - 9848 - - 9849 - - 9850 - - 9851 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerFreezerVaultFilled - entities: - - uid: 6397 - components: - - type: Transform - pos: 4.5,48.5 - parent: 1 -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 9286 - components: - - type: Transform - pos: 26.5,11.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 4463 - components: - - type: Transform - pos: -16.5,60.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerMedicalFilled - entities: - - uid: 3964 - components: - - type: Transform - pos: 20.5,29.5 - parent: 1 - - uid: 3965 - components: - - type: Transform - pos: 22.5,28.5 - parent: 1 - - uid: 3966 - components: - - type: Transform - pos: 20.5,28.5 - parent: 1 - - uid: 6275 - components: - - type: Transform - pos: 22.5,29.5 - parent: 1 -- proto: LockerMedicineFilled - entities: - - uid: 5669 - components: - - type: Transform - pos: 3.5,29.5 - parent: 1 - - uid: 8997 - components: - - type: Transform - pos: 3.5,32.5 - parent: 1 -- proto: LockerMime - entities: - - uid: 8940 - components: - - type: Transform - pos: -16.5,3.5 - parent: 1 -- proto: LockerParamedicFilled - entities: - - uid: 3650 - components: - - type: Transform - pos: 14.5,20.5 - parent: 1 -- proto: LockerQuarterMasterFilled - entities: - - uid: 8680 - components: - - type: Transform - pos: -43.5,9.5 - parent: 1 -- proto: LockerResearchDirectorFilled - entities: - - uid: 7810 - components: - - type: Transform - pos: -25.5,20.5 - parent: 1 -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 239 - components: - - type: Transform - pos: -37.5,30.5 - parent: 1 - - uid: 1777 - components: - - type: Transform - pos: -39.5,30.5 - parent: 1 - - uid: 7825 - components: - - type: Transform - pos: -38.5,30.5 - parent: 1 -- proto: LockerScienceFilled - entities: - - uid: 1068 - components: - - type: Transform - pos: -13.5,23.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 1070 - components: - - type: Transform - pos: -13.5,22.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 1071 - components: - - type: Transform - pos: -19.5,23.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerSecurityFilled - entities: - - uid: 1198 - components: - - type: Transform - pos: -19.5,42.5 - parent: 1 - - uid: 8172 - components: - - type: Transform - pos: -18.5,42.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8173 - components: - - type: Transform - pos: -15.5,42.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8174 - components: - - type: Transform - pos: -16.5,42.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerWardenFilled - entities: - - uid: 7394 - components: - - type: Transform - pos: -13.5,50.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 9027 - components: - - type: Transform - pos: 9.5,-36.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13184 - components: - - type: Transform - pos: -24.5,-3.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13327 - components: - - type: Transform - pos: -21.5,1.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13373 - components: - - type: Transform - pos: -28.5,22.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 2.0214376 - - 7.6044564 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14008 - components: - - type: Transform - pos: 16.5,60.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: Machete - entities: - - uid: 9863 - components: - - type: Transform - pos: -38.31503,-16.537683 - parent: 1 -- proto: MachineAnomalyGenerator - entities: - - uid: 4578 - components: - - type: Transform - pos: -16.5,21.5 - parent: 1 -- proto: MachineAnomalyVessel - entities: - - uid: 5534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,18.5 - parent: 1 - - uid: 5535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,17.5 - parent: 1 -- proto: MachineAPE - entities: - - uid: 6366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,20.5 - parent: 1 - - uid: 6367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,19.5 - parent: 1 -- proto: MachineArtifactAnalyzer - entities: - - uid: 3537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 1 -- proto: MachineCentrifuge - entities: - - uid: 2873 - components: - - type: Transform - pos: 4.5,25.5 - parent: 1 -- proto: MachineElectrolysisUnit - entities: - - uid: 4045 - components: - - type: Transform - pos: 2.5,23.5 - parent: 1 -- proto: MachineFrame - entities: - - uid: 13450 - components: - - type: Transform - pos: -47.5,46.5 - parent: 1 -- proto: MachineFrameDestroyed - entities: - - uid: 13438 - components: - - type: Transform - pos: -25.5,56.5 - parent: 1 - - uid: 13474 - components: - - type: Transform - pos: -16.5,64.5 - parent: 1 -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 6824 - components: - - type: Transform - pos: -16.587696,59.206833 - parent: 1 - - uid: 6825 - components: - - type: Transform - pos: -16.388914,59.03654 - parent: 1 -- proto: MaintenanceFluffSpawner - entities: - - uid: 7444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-23.5 - parent: 1 - - uid: 8461 - components: - - type: Transform - pos: 11.5,70.5 - parent: 1 - - uid: 9937 - components: - - type: Transform - pos: -22.5,-30.5 - parent: 1 - - uid: 9942 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 1 - - uid: 9943 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 1 - - uid: 9974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 1 - - uid: 10072 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 1 - - uid: 10952 - components: - - type: Transform - pos: 31.5,-19.5 - parent: 1 - - uid: 11058 - components: - - type: Transform - pos: 17.5,0.5 - parent: 1 - - uid: 13342 - components: - - type: Transform - pos: -27.5,3.5 - parent: 1 - - uid: 13361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,33.5 - parent: 1 - - uid: 13392 - components: - - type: Transform - pos: -24.5,31.5 - parent: 1 - - uid: 13405 - components: - - type: Transform - pos: -23.5,42.5 - parent: 1 - - uid: 13435 - components: - - type: Transform - pos: -22.5,58.5 - parent: 1 - - uid: 13480 - components: - - type: Transform - pos: -24.5,58.5 - parent: 1 - - uid: 13481 - components: - - type: Transform - pos: -44.5,47.5 - parent: 1 - - uid: 13487 - components: - - type: Transform - pos: -18.5,64.5 - parent: 1 - - uid: 14057 - components: - - type: Transform - pos: 25.5,26.5 - parent: 1 - - uid: 14061 - components: - - type: Transform - pos: 28.5,58.5 - parent: 1 - - uid: 14062 - components: - - type: Transform - pos: 19.5,50.5 - parent: 1 - - uid: 14069 - components: - - type: Transform - pos: 17.5,64.5 - parent: 1 - - uid: 17704 - components: - - type: Transform - pos: -30.5,6.5 - parent: 1 - - uid: 17705 - components: - - type: Transform - pos: -32.5,30.5 - parent: 1 - - uid: 17706 - components: - - type: Transform - pos: -45.5,38.5 - parent: 1 - - uid: 17707 - components: - - type: Transform - pos: -6.5,36.5 - parent: 1 - - uid: 17708 - components: - - type: Transform - pos: 45.5,39.5 - parent: 1 - - uid: 17709 - components: - - type: Transform - pos: -1.5,26.5 - parent: 1 - - uid: 17710 - components: - - type: Transform - pos: 26.5,13.5 - parent: 1 - - uid: 17711 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 1 - - uid: 17772 - components: - - type: Transform - pos: 32.5,23.5 - parent: 1 -- proto: MaintenancePlantSpawner - entities: - - uid: 8163 - components: - - type: Transform - pos: -27.5,53.5 - parent: 1 - - uid: 8164 - components: - - type: Transform - pos: 31.5,52.5 - parent: 1 - - uid: 8165 - components: - - type: Transform - pos: 18.5,21.5 - parent: 1 - - uid: 8166 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 1 -- proto: MaintenanceToolSpawner - entities: - - uid: 7659 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 1 - - uid: 9887 - components: - - type: Transform - pos: -28.5,32.5 - parent: 1 - - uid: 9940 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 1 - - uid: 9941 - components: - - type: Transform - pos: -45.5,-7.5 - parent: 1 - - uid: 10076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 1 - - uid: 10077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 1 - - uid: 10088 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 1 - - uid: 10108 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 1 - - uid: 10932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-18.5 - parent: 1 - - uid: 10947 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 1 - - uid: 10953 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 1 - - uid: 11061 - components: - - type: Transform - pos: 15.5,2.5 - parent: 1 - - uid: 11068 - components: - - type: Transform - pos: 17.5,8.5 - parent: 1 - - uid: 13157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1 - - uid: 13201 - components: - - type: Transform - pos: -25.5,-3.5 - parent: 1 - - uid: 13341 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 1 - - uid: 13343 - components: - - type: Transform - pos: -20.5,6.5 - parent: 1 - - uid: 13345 - components: - - type: Transform - pos: -20.5,11.5 - parent: 1 - - uid: 13346 - components: - - type: Transform - pos: -18.5,10.5 - parent: 1 - - uid: 13362 - components: - - type: Transform - pos: -39.5,32.5 - parent: 1 - - uid: 13436 - components: - - type: Transform - pos: -22.5,55.5 - parent: 1 - - uid: 13482 - components: - - type: Transform - pos: -41.5,50.5 - parent: 1 - - uid: 13483 - components: - - type: Transform - pos: -25.5,51.5 - parent: 1 - - uid: 13484 - components: - - type: Transform - pos: -15.5,64.5 - parent: 1 - - uid: 14059 - components: - - type: Transform - pos: 24.5,56.5 - parent: 1 - - uid: 14063 - components: - - type: Transform - pos: 18.5,50.5 - parent: 1 - - uid: 14065 - components: - - type: Transform - pos: 10.5,48.5 - parent: 1 - - uid: 14066 - components: - - type: Transform - pos: 5.5,40.5 - parent: 1 - - uid: 14067 - components: - - type: Transform - pos: 16.5,59.5 - parent: 1 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 8365 - components: - - type: Transform - pos: 38.5,43.5 - parent: 1 - - uid: 9939 - components: - - type: Transform - pos: -49.5,-6.5 - parent: 1 - - uid: 9975 - components: - - type: Transform - pos: -33.5,-24.5 - parent: 1 - - uid: 10073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 1 - - uid: 10949 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 1 - - uid: 10950 - components: - - type: Transform - pos: 20.5,-30.5 - parent: 1 - - uid: 11062 - components: - - type: Transform - pos: 15.5,3.5 - parent: 1 - - uid: 13200 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 1 - - uid: 13340 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 1 - - uid: 13344 - components: - - type: Transform - pos: -18.5,11.5 - parent: 1 - - uid: 13363 - components: - - type: Transform - pos: -37.5,32.5 - parent: 1 - - uid: 13385 - components: - - type: Transform - pos: -17.5,27.5 - parent: 1 - - uid: 13391 - components: - - type: Transform - pos: -28.5,25.5 - parent: 1 - - uid: 13437 - components: - - type: Transform - pos: -22.5,56.5 - parent: 1 - - uid: 13485 - components: - - type: Transform - pos: -14.5,64.5 - parent: 1 - - uid: 13486 - components: - - type: Transform - pos: -12.5,62.5 - parent: 1 - - uid: 13488 - components: - - type: Transform - pos: -13.5,70.5 - parent: 1 - - uid: 14058 - components: - - type: Transform - pos: 39.5,51.5 - parent: 1 - - uid: 14064 - components: - - type: Transform - pos: 12.5,49.5 - parent: 1 - - uid: 14068 - components: - - type: Transform - pos: 16.5,64.5 - parent: 1 -- proto: Matchbox - entities: - - uid: 8280 - components: - - type: Transform - pos: -28.99285,44.33111 - parent: 1 - - uid: 8995 - components: - - type: Transform - pos: -4.367732,11.515931 - parent: 1 - - uid: 13404 - components: - - type: Transform - pos: -23.569286,43.8585 - parent: 1 -- proto: MatchstickSpent - entities: - - uid: 13403 - components: - - type: Transform - pos: -23.342106,43.347622 - parent: 1 -- proto: MaterialCloth - entities: - - uid: 9212 - components: - - type: Transform - pos: 24.961397,4.807591 - parent: 1 -- proto: MaterialDurathread - entities: - - uid: 9211 - components: - - type: Transform - pos: 24.961397,4.401341 - parent: 1 -- proto: MaterialReclaimer - entities: - - uid: 6769 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 1 -- proto: MaterialWoodPlank - entities: - - uid: 18098 - components: - - type: Transform - pos: -32.693626,54.607662 - parent: 1 -- proto: MatterBinStockPart - entities: - - uid: 13454 - components: - - type: Transform - pos: -46.41361,46.78272 - parent: 1 -- proto: MedicalBed - entities: - - uid: 6383 - components: - - type: Transform - pos: 2.5,29.5 - parent: 1 - - uid: 9368 - components: - - type: Transform - pos: 2.5,31.5 - parent: 1 - - uid: 9369 - components: - - type: Transform - pos: 2.5,34.5 - parent: 1 -- proto: MedicalTechFab - entities: - - uid: 6389 - components: - - type: Transform - pos: 8.5,26.5 - parent: 1 -- proto: MedkitAdvancedFilled - entities: - - uid: 8085 - components: - - type: Transform - pos: 6.6862106,79.9808 - parent: 1 - - uid: 16375 - components: - - type: Transform - pos: -10.381355,48.62417 - parent: 1 -- proto: MedkitBruteFilled - entities: - - uid: 6184 - components: - - type: Transform - pos: 22.590075,26.557478 - parent: 1 -- proto: MedkitBurnFilled - entities: - - uid: 6698 - components: - - type: Transform - pos: 22.058825,26.557478 - parent: 1 -- proto: MedkitCombatFilled - entities: - - uid: 7671 - components: - - type: Transform - pos: -24.283842,-32.51983 - parent: 1 -- proto: MedkitFilled - entities: - - uid: 286 - components: - - type: Transform - pos: -42.513187,21.685522 - parent: 1 - - uid: 6706 - components: - - type: Transform - pos: 21.527575,26.541853 - parent: 1 -- proto: MedkitOxygenFilled - entities: - - uid: 6953 - components: - - type: Transform - pos: 21.01195,26.541853 - parent: 1 - - uid: 8086 - components: - - type: Transform - pos: 6.45903,79.668594 - parent: 1 -- proto: MedkitRadiationFilled - entities: - - uid: 4071 - components: - - type: Transform - pos: 20.496325,26.526228 - parent: 1 -- proto: MedkitToxinFilled - entities: - - uid: 8556 - components: - - type: Transform - pos: 19.996325,26.510603 - parent: 1 - - uid: 9664 - components: - - type: Transform - pos: -10.990924,34.60699 - parent: 1 -- proto: MicrophoneInstrument - entities: - - uid: 18256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.4394073,-2.5350158 - parent: 1 -- proto: MinimoogInstrument - entities: - - uid: 9933 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 1 -- proto: Mirror - entities: - - uid: 10098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-39.5 - parent: 1 - - uid: 10105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-39.5 - parent: 1 - - uid: 13489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,70.5 - parent: 1 -- proto: MopBucket - entities: - - uid: 4019 - components: - - type: Transform - pos: 22.417683,-3.5983407 - parent: 1 - - uid: 17276 - components: - - type: Transform - pos: -23.497051,-11.512519 - parent: 1 - - uid: 18195 - components: - - type: Transform - pos: 18.47802,-5.4857326 - parent: 1 -- proto: MopItem - entities: - - uid: 4020 - components: - - type: Transform - pos: 22.389286,-3.6267226 - parent: 1 - - uid: 17270 - components: - - type: Transform - pos: -23.582245,-13.364458 - parent: 1 - - uid: 17271 - components: - - type: Transform - pos: -23.433157,-13.470892 - parent: 1 - - uid: 18196 - components: - - type: Transform - pos: 18.457188,-5.589899 - parent: 1 -- proto: Morgue - entities: - - uid: 6100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,34.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,32.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,32.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,34.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: MouseTimedSpawner - entities: - - uid: 18209 - components: - - type: Transform - pos: 36.5,-15.5 - parent: 1 -- proto: Multitool - entities: - - uid: 6595 - components: - - type: Transform - pos: -6.480236,24.566202 - parent: 1 - - uid: 8077 - components: - - type: Transform - pos: -3.4883027,82.77587 - parent: 1 - - uid: 8656 - components: - - type: Transform - pos: -23.455519,20.623178 - parent: 1 - - uid: 13446 - components: - - type: Transform - pos: -37.556957,54.69298 - parent: 1 - - uid: 14047 - components: - - type: Transform - pos: 38.328133,54.646866 - parent: 1 -- proto: NettleSeeds - entities: - - uid: 10967 - components: - - type: Transform - pos: 36.511932,-17.276615 - parent: 1 -- proto: NetworkConfigurator - entities: - - uid: 3022 - components: - - type: Transform - pos: 7.40583,-11.399742 - parent: 1 - - uid: 7432 - components: - - type: Transform - pos: 12.35541,-11.368492 - parent: 1 - - uid: 7433 - components: - - type: Transform - pos: -11.6948395,-19.44185 - parent: 1 - - uid: 7434 - components: - - type: Transform - pos: -13.616468,-33.96476 - parent: 1 - - uid: 7435 - components: - - type: Transform - pos: 8.562072,-32.386993 - parent: 1 - - uid: 7436 - components: - - type: Transform - pos: -9.608111,27.948849 - parent: 1 - - uid: 7437 - components: - - type: Transform - pos: -6.7244835,21.503235 - parent: 1 - - uid: 7438 - components: - - type: Transform - pos: -10.361936,34.69222 - parent: 1 -- proto: NitrogenCanister - entities: - - uid: 3027 - components: - - type: Transform - pos: 0.5,-21.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3040 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3041 - components: - - type: Transform - pos: -15.5,-29.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6914 - components: - - type: Transform - pos: 26.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10064 - components: - - type: Transform - pos: -32.5,-14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10091 - components: - - type: Transform - pos: -17.5,-27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10121 - components: - - type: Transform - pos: 32.5,-23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 11052 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13316 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13354 - components: - - type: Transform - pos: -35.5,32.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13378 - components: - - type: Transform - pos: -26.5,27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13417 - components: - - type: Transform - pos: -18.5,60.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14001 - components: - - type: Transform - pos: 13.5,64.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14014 - components: - - type: Transform - pos: 8.5,40.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14036 - components: - - type: Transform - pos: 26.5,56.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: NitrousOxideCanister - entities: - - uid: 3029 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3043 - components: - - type: Transform - pos: -14.5,-27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6590 - components: - - type: Transform - pos: -11.5,32.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: NoticeBoard - entities: - - uid: 7813 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 1 -- proto: NuclearBomb - entities: - - uid: 7250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,48.5 - parent: 1 -- proto: OperatingTable - entities: - - uid: 4334 - components: - - type: Transform - pos: -21.5,33.5 - parent: 1 - - uid: 8508 - components: - - type: Transform - pos: 3.5,27.5 - parent: 1 -- proto: OreProcessor - entities: - - uid: 6384 - components: - - type: Transform - pos: -38.5,16.5 - parent: 1 -- proto: OxygenCanister - entities: - - uid: 147 - components: - - type: Transform - pos: -40.5,21.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3026 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3038 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3039 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6912 - components: - - type: Transform - pos: 10.5,34.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6916 - components: - - type: Transform - pos: 27.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10065 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10090 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10120 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 11048 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13315 - components: - - type: Transform - pos: -28.5,-3.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13353 - components: - - type: Transform - pos: -35.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13379 - components: - - type: Transform - pos: -25.5,27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13418 - components: - - type: Transform - pos: -18.5,59.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14002 - components: - - type: Transform - pos: 14.5,64.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14015 - components: - - type: Transform - pos: 9.5,40.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14035 - components: - - type: Transform - pos: 27.5,56.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 17654 - components: - - type: Transform - pos: 11.5,-41.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: PaintingEmpty - entities: - - uid: 18036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,72.5 - parent: 1 -- proto: PaintingSadClown - entities: - - uid: 8185 - components: - - type: Transform - pos: -16.5,2.5 - parent: 1 -- proto: PaperBin10 - entities: - - uid: 9223 - components: - - type: Transform - pos: 27.5,2.5 - parent: 1 -- proto: PaperBin5 - entities: - - uid: 7287 - components: - - type: Transform - pos: 3.5,60.5 - parent: 1 - - uid: 8063 - components: - - type: Transform - pos: -0.5,80.5 - parent: 1 - - uid: 18178 - components: - - type: Transform - pos: -35.5,9.5 - parent: 1 -- proto: PaperCaptainsThoughts - entities: - - uid: 6809 - components: - - type: Transform - pos: -6.583637,72.70018 - parent: 1 - - uid: 8075 - components: - - type: Transform - pos: -6.4721937,72.63612 - parent: 1 - - uid: 8076 - components: - - type: Transform - pos: -6.3402495,72.52493 - parent: 1 -- proto: PaperOffice - entities: - - uid: 1932 - components: - - type: Transform - pos: 8.646071,57.523205 - parent: 1 - - uid: 1933 - components: - - type: Transform - pos: 8.354404,57.689873 - parent: 1 - - uid: 3189 - components: - - type: Transform - pos: 42.97566,50.574673 - parent: 1 - - uid: 6848 - components: - - type: Transform - pos: 43.131844,50.759155 - parent: 1 - - uid: 7031 - components: - - type: Transform - pos: -25.565134,3.6301482 - parent: 1 - - uid: 7032 - components: - - type: Transform - pos: -25.309555,3.6869118 - parent: 1 - - uid: 7033 - components: - - type: Transform - pos: -25.36635,3.4598548 - parent: 1 - - uid: 7694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.57362,55.668022 - parent: 1 - - uid: 8109 - components: - - type: Transform - pos: 5.1594477,71.75358 - parent: 1 - - uid: 8110 - components: - - type: Transform - pos: 5.528614,71.32784 - parent: 1 - - uid: 8111 - components: - - type: Transform - pos: 6.4941316,73.59842 - parent: 1 - - uid: 8112 - components: - - type: Transform - pos: 4.4211106,72.406364 - parent: 1 - - uid: 8113 - components: - - type: Transform - pos: 5.6422024,63.981495 - parent: 1 - - uid: 8114 - components: - - type: Transform - pos: 5.30143,63.58415 - parent: 1 - - uid: 8234 - components: - - type: Transform - pos: -19.304815,52.96929 - parent: 1 - - uid: 8235 - components: - - type: Transform - pos: -19.333212,52.51518 - parent: 1 - - uid: 8236 - components: - - type: Transform - pos: -12.844453,56.585327 - parent: 1 - - uid: 8285 - components: - - type: Transform - pos: -28.742027,44.07567 - parent: 1 - - uid: 8286 - components: - - type: Transform - pos: -28.869816,43.97633 - parent: 1 - - uid: 8287 - components: - - type: Transform - pos: -29.0544,44.104053 - parent: 1 - - uid: 8474 - components: - - type: Transform - pos: 20.335289,40.984818 - parent: 1 - - uid: 8475 - components: - - type: Transform - pos: 20.56247,40.857098 - parent: 1 - - uid: 8476 - components: - - type: Transform - pos: 20.732855,40.89967 - parent: 1 - - uid: 8494 - components: - - type: Transform - pos: 15.377507,32.661785 - parent: 1 - - uid: 8495 - components: - - type: Transform - pos: 15.56209,32.61921 - parent: 1 - - uid: 9108 - components: - - type: Transform - pos: 5.647646,-25.362396 - parent: 1 - - uid: 9109 - components: - - type: Transform - pos: 5.376813,-25.591562 - parent: 1 - - uid: 9180 - components: - - type: Transform - pos: 13.647936,-12.608375 - parent: 1 - - uid: 9181 - components: - - type: Transform - pos: 13.41877,-12.212542 - parent: 1 - - uid: 9220 - components: - - type: Transform - pos: 25.298811,4.502818 - parent: 1 - - uid: 9221 - components: - - type: Transform - pos: 25.423811,4.7111516 - parent: 1 - - uid: 9512 - components: - - type: Transform - pos: 13.562738,57.689873 - parent: 1 - - uid: 9705 - components: - - type: Transform - pos: -35.3369,12.601174 - parent: 1 - - uid: 9706 - components: - - type: Transform - pos: -35.4619,12.476174 - parent: 1 - - uid: 9917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.778204,-37.45873 - parent: 1 - - uid: 9918 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.735607,-36.394398 - parent: 1 - - uid: 9919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.281246,-36.53631 - parent: 1 - - uid: 9920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.267048,-37.1891 - parent: 1 -- proto: ParchisBoard - entities: - - uid: 14026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.411753,58.600853 - parent: 1 -- proto: PartRodMetal - entities: - - uid: 7823 - components: - - type: Transform - pos: -42.102123,21.612055 - parent: 1 - - uid: 9123 - components: - - type: Transform - pos: 13.554044,-21.633276 - parent: 1 - - uid: 9231 - components: - - type: Transform - pos: -25.391773,-12.691285 - parent: 1 -- proto: Pen - entities: - - uid: 8108 - components: - - type: Transform - pos: 5.926182,71.5549 - parent: 1 - - uid: 8248 - components: - - type: Transform - pos: -13.293542,47.371918 - parent: 1 - - uid: 9225 - components: - - type: Transform - pos: 27.715477,2.7528179 - parent: 1 - - uid: 9927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.749805,-37.45873 - parent: 1 - - uid: 9928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.70721,-36.42278 - parent: 1 - - uid: 9929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.323843,-36.607265 - parent: 1 - - uid: 9930 - components: - - type: Transform - pos: -19.210253,-37.174908 - parent: 1 -- proto: PenCap - entities: - - uid: 6805 - components: - - type: Transform - pos: -6.5470595,72.51975 - parent: 1 -- proto: PenHop - entities: - - uid: 9273 - components: - - type: Transform - pos: 24.527164,11.786996 - parent: 1 -- proto: PersonalAI - entities: - - uid: 13383 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -18.292332,28.360415 - parent: 1 - - uid: 18484 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 11.303054,42.624207 - parent: 1 - - uid: 18485 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 21.527178,41.51094 - parent: 1 - - uid: 18487 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -25.31035,3.6511037 - parent: 1 - - uid: 18488 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -3.5730453,83.05458 - parent: 1 -- proto: PhoneInstrument - entities: - - uid: 8098 - components: - - type: Transform - pos: 5.4434214,72.491516 - parent: 1 -- proto: PineappleSeeds - entities: - - uid: 8278 - components: - - type: Transform - pos: -29.408152,44.30471 - parent: 1 - - uid: 9010 - components: - - type: Transform - pos: 5.4492836,6.4890785 - parent: 1 -- proto: PlantBag - entities: - - uid: 9007 - components: - - type: Transform - pos: 5.4701166,7.468245 - parent: 1 -- proto: PlaqueAtmos - entities: - - uid: 17897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 1 -- proto: PlasmaCanister - entities: - - uid: 3025 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3042 - components: - - type: Transform - pos: -14.5,-26.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6591 - components: - - type: Transform - pos: -11.5,31.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,61.5 - parent: 1 - - uid: 1832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,64.5 - parent: 1 - - uid: 5773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,61.5 - parent: 1 - - uid: 5774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,62.5 - parent: 1 -- proto: PlasmaTankFilled - entities: - - uid: 8745 - components: - - type: Transform - pos: -12.675064,-41.406155 - parent: 1 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 112 - components: - - type: Transform - pos: -44.5,1.5 - parent: 1 - - uid: 113 - components: - - type: Transform - pos: -44.5,5.5 - parent: 1 - - uid: 463 - components: - - type: Transform - pos: -36.5,5.5 - parent: 1 - - uid: 2724 - components: - - type: Transform - pos: -47.5,5.5 - parent: 1 - - uid: 3113 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 1 - - uid: 4114 - components: - - type: Transform - pos: -43.5,22.5 - parent: 1 - - uid: 4157 - components: - - type: Transform - pos: -47.5,1.5 - parent: 1 - - uid: 7819 - components: - - type: Transform - pos: -43.5,24.5 - parent: 1 -- proto: PlushieAtmosian - entities: - - uid: 8478 - components: - - type: Transform - pos: -13.428453,-23.76954 - parent: 1 -- proto: PlushieBee - entities: - - uid: 17722 - components: - - type: Transform - pos: 9.581463,59.56483 - parent: 1 -- proto: PlushieLamp - entities: - - uid: 17725 - components: - - type: Transform - pos: -51.39804,40.513123 - parent: 1 -- proto: PlushieLizard - entities: - - uid: 13425 - components: - - type: Transform - pos: -23.497978,60.479168 - parent: 1 - - uid: 17726 - components: - - type: Transform - pos: -18.010359,27.487123 - parent: 1 -- proto: PlushieNar - entities: - - uid: 17727 - components: - - type: Transform - pos: 26.419394,52.54221 - parent: 1 -- proto: PlushieNuke - entities: - - uid: 17728 - components: - - type: Transform - pos: 5.0785303,45.68808 - parent: 1 -- proto: PlushieRatvar - entities: - - uid: 17730 - components: - - type: Transform - pos: -16.502522,-42.49368 - parent: 1 -- proto: PlushieRGBee - entities: - - uid: 11077 - components: - - type: Transform - pos: 20.39902,10.361386 - parent: 1 -- proto: PlushieSharkBlue - entities: - - uid: 17723 - components: - - type: Transform - pos: 21.557299,40.40908 - parent: 1 -- proto: PlushieSharkGrey - entities: - - uid: 17724 - components: - - type: Transform - pos: 24.59281,-5.6428246 - parent: 1 -- proto: PlushieSharkPink - entities: - - uid: 8398 - components: - - type: Transform - pos: 18.47223,47.259647 - parent: 1 - - uid: 17729 - components: - - type: Transform - pos: 24.515884,22.427027 - parent: 1 -- proto: PlushieSlime - entities: - - uid: 17731 - components: - - type: Transform - pos: -30.556288,7.2912984 - parent: 1 -- proto: PlushieSpaceLizard - entities: - - uid: 17732 - components: - - type: Transform - pos: -0.54218626,85.39831 - parent: 1 -- proto: PlushieVox - entities: - - uid: 14042 - components: - - type: Transform - pos: 39.577625,52.527256 - parent: 1 - - uid: 17733 - components: - - type: Transform - pos: -44.60638,-11.570459 - parent: 1 -- proto: PortableGeneratorJrPacman - entities: - - uid: 1091 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 1 - - uid: 1092 - components: - - type: Transform - pos: -23.5,44.5 - parent: 1 - - uid: 2658 - components: - - type: Transform - pos: 18.5,17.5 - parent: 1 - - uid: 2659 - components: - - type: Transform - pos: -28.5,19.5 - parent: 1 - - uid: 2660 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 1 - - uid: 2685 - components: - - type: Transform - pos: 15.5,4.5 - parent: 1 - - uid: 2690 - components: - - type: Transform - pos: 17.5,50.5 - parent: 1 - - uid: 2691 - components: - - type: Transform - pos: -18.5,58.5 - parent: 1 - - uid: 2692 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 1 - - uid: 2693 - components: - - type: Transform - pos: -38.5,32.5 - parent: 1 - - uid: 2694 - components: - - type: Transform - pos: -35.5,-17.5 - parent: 1 - - uid: 8564 - components: - - type: Transform - pos: 16.5,24.5 - parent: 1 - - uid: 8565 - components: - - type: Transform - pos: -20.5,30.5 - parent: 1 - - uid: 8566 - components: - - type: Transform - pos: 19.5,54.5 - parent: 1 - - uid: 8571 - components: - - type: Transform - pos: 17.5,3.5 - parent: 1 -- proto: PortableGeneratorPacman - entities: - - uid: 4217 - components: - - type: Transform - pos: 9.5,-25.5 - parent: 1 -- proto: PortableScrubber - entities: - - uid: 4393 - components: - - type: Transform - pos: -9.5,25.5 - parent: 1 - - uid: 8731 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 1 - - uid: 8732 - components: - - type: Transform - pos: -14.5,-14.5 - parent: 1 - - uid: 8737 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 1 -- proto: PosterBroken - entities: - - uid: 18000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,5.5 - parent: 1 -- proto: PosterContrabandAmbrosiaVulgaris - entities: - - uid: 17926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,8.5 - parent: 1 -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 17898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 1 -- proto: PosterContrabandBountyHunters - entities: - - uid: 17900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,45.5 - parent: 1 -- proto: PosterContrabandClown - entities: - - uid: 17920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1 -- proto: PosterContrabandDonutCorp - entities: - - uid: 17902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 1 -- proto: PosterContrabandEAT - entities: - - uid: 17927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 1 -- proto: PosterContrabandEnergySwords - entities: - - uid: 17921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-1.5 - parent: 1 -- proto: PosterContrabandFreeDrone - entities: - - uid: 9563 - components: - - type: Transform - pos: -20.5,-11.5 - parent: 1 -- proto: PosterContrabandFunPolice - entities: - - uid: 17990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,39.5 - parent: 1 -- proto: PosterContrabandGreyTide - entities: - - uid: 17904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,33.5 - parent: 1 - - uid: 18005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-24.5 - parent: 1 -- proto: PosterContrabandHackingGuide - entities: - - uid: 17903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,30.5 - parent: 1 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 18115 - components: - - type: Transform - pos: 8.5,-16.5 - parent: 1 -- proto: PosterContrabandMissingGloves - entities: - - uid: 17906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-22.5 - parent: 1 - - uid: 18006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-24.5 - parent: 1 -- proto: PosterContrabandNuclearDeviceInformational - entities: - - uid: 17917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,47.5 - parent: 1 -- proto: PosterContrabandVoteWeh - entities: - - uid: 17915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,24.5 - parent: 1 -- proto: PosterContrabandWehWatches - entities: - - uid: 17916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,20.5 - parent: 1 -- proto: PosterLegit12Gauge - entities: - - uid: 17924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,65.5 - parent: 1 -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 18089 - components: - - type: Transform - pos: -4.5,33.5 - parent: 1 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 9619 - components: - - type: Transform - pos: 1.5,34.5 - parent: 1 -- proto: PosterLegitBuild - entities: - - uid: 17899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-32.5 - parent: 1 -- proto: PosterLegitCleanliness - entities: - - uid: 17923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-6.5 - parent: 1 -- proto: PosterLegitDickGumshue - entities: - - uid: 17901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,50.5 - parent: 1 -- proto: PosterLegitEnlist - entities: - - uid: 17925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,63.5 - parent: 1 -- proto: PosterLegitFoamForceAd - entities: - - uid: 17922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 1 -- proto: PosterLegitHighClassMartini - entities: - - uid: 17919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,9.5 - parent: 1 -- proto: PosterLegitIonRifle - entities: - - uid: 9677 - components: - - type: Transform - pos: -3.5,60.5 - parent: 1 -- proto: PosterLegitJustAWeekAway - entities: - - uid: 17905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 1 -- proto: PosterLegitLoveIan - entities: - - uid: 17918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 1 -- proto: PosterLegitMime - entities: - - uid: 8169 - components: - - type: Transform - pos: -14.5,5.5 - parent: 1 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 17907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,62.5 - parent: 1 - - uid: 17908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,62.5 - parent: 1 - - uid: 17909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,78.5 - parent: 1 - - uid: 17910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,78.5 - parent: 1 -- proto: PosterLegitPDAAd - entities: - - uid: 17911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 1 -- proto: PosterLegitPeriodicTable - entities: - - uid: 9616 - components: - - type: Transform - pos: 4.5,26.5 - parent: 1 -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 17912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 1 -- proto: PosterLegitSafetyInternals - entities: - - uid: 17913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-37.5 - parent: 1 -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 9618 - components: - - type: Transform - pos: 1.5,31.5 - parent: 1 -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 9617 - components: - - type: Transform - pos: 8.5,25.5 - parent: 1 -- proto: PosterLegitStateLaws - entities: - - uid: 18004 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-13.5 - parent: 1 -- proto: PosterLegitUeNo - entities: - - uid: 17914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,29.5 - parent: 1 -- proto: PottedPlant12 - entities: - - uid: 9667 - components: - - type: Transform - pos: 45.5,-14.5 - parent: 1 -- proto: PottedPlant22 - entities: - - uid: 6373 - components: - - type: Transform - pos: 10.33418,19.257486 - parent: 1 -- proto: PottedPlantRandom - entities: - - uid: 466 - components: - - type: Transform - pos: -49.5,35.5 - parent: 1 - - uid: 1284 - components: - - type: Transform - pos: -47.5,16.5 - parent: 1 - - uid: 4250 - components: - - type: Transform - pos: -30.5,8.5 - parent: 1 - - uid: 6950 - components: - - type: Transform - pos: 21.5,17.5 - parent: 1 - - uid: 9474 - components: - - type: Transform - pos: 46.5,-6.5 - parent: 1 - - uid: 9475 - components: - - type: Transform - pos: 29.5,-0.5 - parent: 1 - - uid: 9476 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 1 - - uid: 9477 - components: - - type: Transform - pos: 46.5,12.5 - parent: 1 - - uid: 9478 - components: - - type: Transform - pos: 48.5,41.5 - parent: 1 - - uid: 9479 - components: - - type: Transform - pos: 45.5,40.5 - parent: 1 - - uid: 9480 - components: - - type: Transform - pos: -42.5,43.5 - parent: 1 - - uid: 9481 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 1 - - uid: 9482 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 1 - - uid: 9483 - components: - - type: Transform - pos: -4.5,9.5 - parent: 1 - - uid: 9485 - components: - - type: Transform - pos: -13.5,3.5 - parent: 1 - - uid: 9495 - components: - - type: Transform - pos: -3.5,46.5 - parent: 1 - - uid: 9496 - components: - - type: Transform - pos: -10.5,52.5 - parent: 1 - - uid: 9497 - components: - - type: Transform - pos: -16.5,47.5 - parent: 1 - - uid: 9498 - components: - - type: Transform - pos: -16.5,51.5 - parent: 1 - - uid: 9499 - components: - - type: Transform - pos: -16.5,56.5 - parent: 1 - - uid: 9502 - components: - - type: Transform - pos: 7.5,70.5 - parent: 1 - - uid: 9503 - components: - - type: Transform - pos: 10.5,66.5 - parent: 1 - - uid: 9535 - components: - - type: Transform - pos: 29.5,9.5 - parent: 1 - - uid: 9543 - components: - - type: Transform - pos: -47.5,38.5 - parent: 1 - - uid: 9711 - components: - - type: Transform - pos: 7.5,38.5 - parent: 1 - - uid: 9713 - components: - - type: Transform - pos: 39.5,36.5 - parent: 1 - - uid: 9714 - components: - - type: Transform - pos: -3.5,19.5 - parent: 1 - - uid: 9715 - components: - - type: Transform - pos: 2.5,19.5 - parent: 1 - - uid: 9716 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 1 - - uid: 9879 - components: - - type: Transform - pos: 32.5,30.5 - parent: 1 - - uid: 9880 - components: - - type: Transform - pos: 32.5,21.5 - parent: 1 - - uid: 9881 - components: - - type: Transform - pos: 23.5,13.5 - parent: 1 - - uid: 9882 - components: - - type: Transform - pos: -40.5,15.5 - parent: 1 - - uid: 9883 - components: - - type: Transform - pos: -38.5,9.5 - parent: 1 - - uid: 9889 - components: - - type: Transform - pos: -19.5,15.5 - parent: 1 - - uid: 9890 - components: - - type: Transform - pos: 13.5,15.5 - parent: 1 - - uid: 16406 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 1 - - uid: 16408 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 1 - - uid: 16653 - components: - - type: Transform - pos: -32.5,27.5 - parent: 1 - - uid: 17301 - components: - - type: Transform - pos: -1.5,24.5 - parent: 1 -- proto: PottedPlantRandomPlastic - entities: - - uid: 4249 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 1 - - uid: 6943 - components: - - type: Transform - pos: 30.5,56.5 - parent: 1 - - uid: 6944 - components: - - type: Transform - pos: 34.5,56.5 - parent: 1 - - uid: 8452 - components: - - type: Transform - pos: -2.5,57.5 - parent: 1 - - uid: 8464 - components: - - type: Transform - pos: 2.5,55.5 - parent: 1 - - uid: 8465 - components: - - type: Transform - pos: 2.5,54.5 - parent: 1 - - uid: 9489 - components: - - type: Transform - pos: 15.5,9.5 - parent: 1 - - uid: 9504 - components: - - type: Transform - pos: 5.5,62.5 - parent: 1 - - uid: 9505 - components: - - type: Transform - pos: 8.5,61.5 - parent: 1 - - uid: 9709 - components: - - type: Transform - pos: -28.5,38.5 - parent: 1 - - uid: 9710 - components: - - type: Transform - pos: -4.5,36.5 - parent: 1 - - uid: 9712 - components: - - type: Transform - pos: 22.5,36.5 - parent: 1 - - uid: 9717 - components: - - type: Transform - pos: 39.5,13.5 - parent: 1 - - uid: 9720 - components: - - type: Transform - pos: -16.5,-16.5 - parent: 1 - - uid: 16536 - components: - - type: Transform - pos: 5.5,52.5 - parent: 1 -- proto: PowerCellHigh - entities: - - uid: 8726 - components: - - type: Transform - pos: -13.77224,-19.431416 - parent: 1 -- proto: PowerCellRecharger - entities: - - uid: 6651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 1 - - uid: 7463 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 1 - - uid: 8062 - components: - - type: Transform - pos: -7.5,80.5 - parent: 1 - - uid: 8182 - components: - - type: Transform - pos: -18.5,53.5 - parent: 1 - - uid: 8346 - components: - - type: Transform - pos: -26.5,29.5 - parent: 1 - - uid: 8419 - components: - - type: Transform - pos: -49.5,44.5 - parent: 1 - - uid: 8709 - components: - - type: Transform - pos: -14.5,-19.5 - parent: 1 - - uid: 8892 - components: - - type: Transform - pos: -1.5,3.5 - parent: 8756 - - uid: 9020 - components: - - type: Transform - pos: 13.5,8.5 - parent: 1 - - uid: 9022 - components: - - type: Transform - pos: -13.5,2.5 - parent: 1 - - uid: 9023 - components: - - type: Transform - pos: 5.5,-13.5 - parent: 1 - - uid: 9083 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 1 - - uid: 9084 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 1 - - uid: 9232 - components: - - type: Transform - pos: -25.5,-13.5 - parent: 1 - - uid: 9307 - components: - - type: Transform - pos: -38.5,8.5 - parent: 1 - - uid: 9372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,19.5 - parent: 1 - - uid: 10642 - components: - - type: Transform - pos: 20.5,41.5 - parent: 1 - - uid: 17417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,6.5 - parent: 1 - - uid: 18497 - components: - - type: Transform - pos: 6.5,52.5 - parent: 1 - - uid: 18498 - components: - - type: Transform - pos: 43.5,41.5 - parent: 1 - - uid: 18499 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 1 -- proto: Poweredlight - entities: - - uid: 1272 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,37.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1293 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,41.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2001 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 43.5,-7.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2705 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-44.5 - parent: 1 - - uid: 2719 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-42.5 - parent: 1 - - uid: 2725 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,5.5 - parent: 1 - - uid: 2728 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,0.5 - parent: 1 - - uid: 3630 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,18.5 - parent: 1 - - uid: 3733 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4031 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,20.5 - parent: 1 - - uid: 4032 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,34.5 - parent: 1 - - uid: 4063 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 1 - - uid: 4148 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,32.5 - parent: 1 - - uid: 4211 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,33.5 - parent: 1 - - uid: 4360 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-22.5 - parent: 1 - - uid: 4361 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-35.5 - parent: 1 - - uid: 6085 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 1 - - uid: 6382 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,23.5 - parent: 1 - - uid: 6387 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,26.5 - parent: 1 - - uid: 6517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-10.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6693 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1 - - uid: 7809 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,20.5 - parent: 1 - - uid: 7811 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,30.5 - parent: 1 - - uid: 7935 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,25.5 - parent: 1 - - uid: 8161 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,28.5 - parent: 1 - - uid: 8549 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,19.5 - parent: 1 - - uid: 8641 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,32.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8643 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,24.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8644 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,24.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8645 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,20.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8646 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,19.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8647 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,18.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8648 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8673 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,15.5 - parent: 1 - - uid: 8876 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 8756 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8877 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 8756 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8878 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 8756 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8879 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 8756 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8880 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 8756 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9615 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,28.5 - parent: 1 - - uid: 9634 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-5.5 - parent: 1 - - uid: 9635 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-5.5 - parent: 1 - - uid: 14073 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14074 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-18.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14075 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-11.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14076 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-9.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14077 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-5.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14078 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-0.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14079 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,7.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14080 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,10.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14081 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-2.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14083 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14088 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,25.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14089 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14090 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,15.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14095 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,36.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14097 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,38.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14098 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,36.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14099 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,36.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14100 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,29.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14101 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,21.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14102 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,27.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14103 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,13.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14104 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14105 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14106 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,13.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14107 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,13.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14108 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,13.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14109 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14110 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,20.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14111 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,20.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14112 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14113 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 44.5,15.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14118 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14119 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14120 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14122 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,5.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14123 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-9.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14124 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-9.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14125 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14126 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-7.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14127 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,-7.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14128 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-11.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14129 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-11.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14130 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14131 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14132 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14133 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14134 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14135 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-28.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14136 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-39.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14137 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-29.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14138 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-34.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14139 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-40.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14140 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14142 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14143 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14144 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-20.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14145 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14146 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-38.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14147 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14148 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14149 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-24.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14150 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-31.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14161 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-38.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14163 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14166 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14167 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,10.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14173 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,9.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14176 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,31.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14177 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,43.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14178 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,43.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14179 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 42.5,44.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14180 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,39.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14185 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,61.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14186 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,52.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14187 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,57.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14188 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,52.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14190 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,40.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14191 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,49.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14192 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,47.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14193 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,51.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14194 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,46.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14195 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,52.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14200 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,40.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14201 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,60.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14203 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,64.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14204 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,69.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14205 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,62.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14206 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,62.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14207 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,55.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14209 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,49.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14210 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,42.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14211 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,49.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14212 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,49.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14216 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,19.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14217 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,38.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14218 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,32.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15385 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,11.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15400 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,13.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15401 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,36.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15402 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,31.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17250 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17251 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,38.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17252 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,36.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17255 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,38.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17256 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,47.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17257 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,66.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17258 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17259 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17268 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,14.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17304 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,57.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17305 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,57.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17306 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,58.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17307 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,60.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17308 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,66.5 - parent: 1 - - uid: 17309 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,72.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17310 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,81.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17311 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,85.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17314 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,81.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17318 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,72.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17319 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,75.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17320 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,75.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17321 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,66.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17322 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,60.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17323 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,58.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17324 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,52.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17325 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,45.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17326 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,45.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17327 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,52.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17650 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-43.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17860 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-32.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18062 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-35.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18063 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-41.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18065 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-19.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18067 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-26.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18068 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18070 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-29.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18071 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-23.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18076 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,-11.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18191 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18192 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,46.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18193 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,47.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18257 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,8.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18258 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-0.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18424 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,1.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18425 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-9.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18426 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18429 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,31.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18440 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredlightLED - entities: - - uid: 8577 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,22.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8638 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8639 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,23.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8649 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9592 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,32.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11365 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,76.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13493 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,72.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13494 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,81.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13495 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,81.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13496 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,70.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredSmallLight - entities: - - uid: 610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,9.5 - parent: 1 - - uid: 616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,5.5 - parent: 1 - - uid: 789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 1 - - uid: 1837 - components: - - type: Transform - pos: -10.5,60.5 - parent: 1 - - uid: 2074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,1.5 - parent: 1 - - uid: 2608 - components: - - type: Transform - pos: -45.5,5.5 - parent: 1 - - uid: 4066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - - uid: 4337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,63.5 - parent: 1 - - uid: 4371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,48.5 - parent: 1 - - uid: 6198 - components: - - type: Transform - pos: 51.5,-7.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-14.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,49.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,44.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7670 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 1 - - uid: 7707 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 1 - - uid: 7802 - components: - - type: Transform - pos: -6.5,74.5 - parent: 1 - - uid: 8342 - components: - - type: Transform - pos: 16.5,-3.5 - parent: 1 - - uid: 8364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,44.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8366 - components: - - type: Transform - pos: 25.5,58.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,47.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,49.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8383 - components: - - type: Transform - pos: 25.5,54.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,48.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,43.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,48.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,43.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,45.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,41.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,46.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,33.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,29.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,21.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9250 - components: - - type: Transform - pos: -16.5,5.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9251 - components: - - type: Transform - pos: -16.5,1.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9252 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,60.5 - parent: 1 - - uid: 9841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9842 - components: - - type: Transform - pos: -52.5,-7.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-11.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-35.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-14.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-17.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-23.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11046 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,63.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,51.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,42.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12824 - components: - - type: Transform - pos: 32.5,56.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,55.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,3.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,23.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13302 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,4.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,27.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13460 - components: - - type: Transform - pos: -41.5,51.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13461 - components: - - type: Transform - pos: -20.5,57.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,62.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,69.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-15.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,14.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,37.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,17.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,15.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14117 - components: - - type: Transform - pos: 51.5,13.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14151 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14152 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14153 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-24.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-27.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-40.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-46.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,8.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14175 - components: - - type: Transform - pos: -10.5,8.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,34.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,34.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14183 - components: - - type: Transform - pos: 51.5,36.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,38.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14189 - components: - - type: Transform - pos: -38.5,46.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,41.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,41.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,41.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,41.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,42.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,52.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14214 - components: - - type: Transform - pos: -10.5,4.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,8.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17237 - components: - - type: Transform - pos: 36.5,3.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-5.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17242 - components: - - type: Transform - pos: -5.5,4.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-0.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17245 - components: - - type: Transform - pos: 16.5,6.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17246 - components: - - type: Transform - pos: -8.5,11.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17247 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-40.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-40.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,40.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,40.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,48.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,47.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,51.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,26.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,20.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,43.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredSmallLightEmpty - entities: - - uid: 12021 - components: - - type: Transform - pos: -33.5,56.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,52.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: Protolathe - entities: - - uid: 3553 - components: - - type: Transform - pos: -3.5,24.5 - parent: 1 -- proto: Rack - entities: - - uid: 1176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,11.5 - parent: 1 - - uid: 1229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 1 - - uid: 1240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,11.5 - parent: 1 - - uid: 2392 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 1 - - uid: 4184 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 1 - - uid: 4442 - components: - - type: Transform - pos: -28.5,32.5 - parent: 1 - - uid: 4443 - components: - - type: Transform - pos: -28.5,31.5 - parent: 1 - - uid: 6277 - components: - - type: Transform - pos: -36.5,23.5 - parent: 1 - - uid: 6552 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 1 - - uid: 6913 - components: - - type: Transform - pos: 25.5,31.5 - parent: 1 - - uid: 7098 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 1 - - uid: 7099 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 1 - - uid: 7154 - components: - - type: Transform - pos: 13.5,-41.5 - parent: 1 - - uid: 7292 - components: - - type: Transform - pos: 12.5,30.5 - parent: 1 - - uid: 7689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,61.5 - parent: 1 - - uid: 7767 - components: - - type: Transform - pos: -19.5,40.5 - parent: 1 - - uid: 7888 - components: - - type: Transform - pos: 41.5,42.5 - parent: 1 - - uid: 8088 - components: - - type: Transform - pos: -11.5,60.5 - parent: 1 - - uid: 8739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-41.5 - parent: 1 - - uid: 9303 - components: - - type: Transform - pos: -34.5,2.5 - parent: 1 - - uid: 9450 - components: - - type: Transform - pos: -45.5,-7.5 - parent: 1 - - uid: 9451 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 1 - - uid: 9897 - components: - - type: Transform - pos: 10.5,48.5 - parent: 1 - - uid: 9965 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 1 - - uid: 9966 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 1 - - uid: 10074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 1 - - uid: 10075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 1 - - uid: 10087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 1 - - uid: 10094 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 1 - - uid: 10107 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 1 - - uid: 10125 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 1 - - uid: 10133 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 1 - - uid: 10875 - components: - - type: Transform - pos: 28.5,-18.5 - parent: 1 - - uid: 11059 - components: - - type: Transform - pos: 15.5,2.5 - parent: 1 - - uid: 11066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,8.5 - parent: 1 - - uid: 11070 - components: - - type: Transform - pos: 19.5,4.5 - parent: 1 - - uid: 11081 - components: - - type: Transform - pos: 13.5,5.5 - parent: 1 - - uid: 13156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1 - - uid: 13182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-3.5 - parent: 1 - - uid: 13199 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 1 - - uid: 13318 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 1 - - uid: 13321 - components: - - type: Transform - pos: -20.5,6.5 - parent: 1 - - uid: 13328 - components: - - type: Transform - pos: -9.5,10.5 - parent: 1 - - uid: 13360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,32.5 - parent: 1 - - uid: 13411 - components: - - type: Transform - pos: -25.5,51.5 - parent: 1 - - uid: 13412 - components: - - type: Transform - pos: -22.5,55.5 - parent: 1 - - uid: 13414 - components: - - type: Transform - pos: -14.5,64.5 - parent: 1 - - uid: 13443 - components: - - type: Transform - pos: 38.5,54.5 - parent: 1 - - uid: 13444 - components: - - type: Transform - pos: -37.5,54.5 - parent: 1 - - uid: 13458 - components: - - type: Transform - pos: -41.5,50.5 - parent: 1 - - uid: 13473 - components: - - type: Transform - pos: -15.5,64.5 - parent: 1 - - uid: 13854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,52.5 - parent: 1 - - uid: 14007 - components: - - type: Transform - pos: 16.5,59.5 - parent: 1 - - uid: 14017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,40.5 - parent: 1 - - uid: 14020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,50.5 - parent: 1 - - uid: 14031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,58.5 - parent: 1 - - uid: 14040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,56.5 - parent: 1 -- proto: RadioHandheld - entities: - - uid: 2144 - components: - - type: Transform - pos: -42.652122,26.537056 - parent: 1 - - uid: 7397 - components: - - type: Transform - pos: -14.804126,50.394012 - parent: 1 - - uid: 9085 - components: - - type: Transform - pos: 6.5608225,-21.29419 - parent: 1 - - uid: 13400 - components: - - type: Transform - pos: -23.682875,43.57468 - parent: 1 - - uid: 18489 - components: - - type: Transform - pos: 18.316277,50.63189 - parent: 1 - - uid: 18490 - components: - - type: Transform - pos: 12.759903,-11.244627 - parent: 1 - - uid: 18491 - components: - - type: Transform - pos: 12.944487,-11.471684 - parent: 1 - - uid: 18492 - components: - - type: Transform - pos: -6.2471366,24.59688 - parent: 1 - - uid: 18494 - components: - - type: Transform - pos: -16.067932,58.611973 - parent: 1 - - uid: 18495 - components: - - type: Transform - pos: -16.426508,49.945545 - parent: 1 -- proto: Railing - entities: - - uid: 327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,76.5 - parent: 1 - - uid: 3798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-11.5 - parent: 1 - - uid: 4118 - components: - - type: Transform - pos: -44.5,25.5 - parent: 1 - - uid: 4267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,76.5 - parent: 1 - - uid: 6892 - components: - - type: Transform - pos: 22.5,20.5 - parent: 1 - - uid: 6893 - components: - - type: Transform - pos: 21.5,20.5 - parent: 1 - - uid: 6894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,21.5 - parent: 1 - - uid: 6895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,22.5 - parent: 1 - - uid: 6896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,18.5 - parent: 1 - - uid: 6897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,17.5 - parent: 1 - - uid: 8292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,44.5 - parent: 1 - - uid: 8293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,45.5 - parent: 1 - - uid: 8294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,46.5 - parent: 1 - - uid: 8296 - components: - - type: Transform - pos: -32.5,47.5 - parent: 1 - - uid: 8297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,43.5 - parent: 1 - - uid: 8298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,43.5 - parent: 1 - - uid: 8299 - components: - - type: Transform - pos: -34.5,47.5 - parent: 1 - - uid: 8300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,46.5 - parent: 1 - - uid: 8302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,45.5 - parent: 1 - - uid: 8303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,44.5 - parent: 1 - - uid: 8735 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 1 - - uid: 8736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-13.5 - parent: 1 - - uid: 9041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,40.5 - parent: 1 - - uid: 9042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,40.5 - parent: 1 - - uid: 9043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,41.5 - parent: 1 - - uid: 9044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,41.5 - parent: 1 - - uid: 9721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,40.5 - parent: 1 - - uid: 9722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,41.5 - parent: 1 - - uid: 9723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,40.5 - parent: 1 - - uid: 9724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,41.5 - parent: 1 - - uid: 17765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 1 - - uid: 17766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 1 - - uid: 17767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-3.5 - parent: 1 - - uid: 17769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,11.5 - parent: 1 - - uid: 17770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,10.5 - parent: 1 - - uid: 17773 - components: - - type: Transform - pos: 35.5,9.5 - parent: 1 - - uid: 18239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 1 - - uid: 18243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1 - - uid: 18244 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 1 - - uid: 18245 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 1 - - uid: 18246 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 1 - - uid: 18247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 1 - - uid: 18248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1 - - uid: 18249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 1 - - uid: 18437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 1 -- proto: RailingCorner - entities: - - uid: 4003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-33.5 - parent: 1 - - uid: 4004 - components: - - type: Transform - pos: 18.5,-37.5 - parent: 1 - - uid: 4117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,25.5 - parent: 1 - - uid: 6891 - components: - - type: Transform - pos: 23.5,20.5 - parent: 1 - - uid: 6898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,18.5 - parent: 1 - - uid: 8575 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,41.5 - parent: 1 - - uid: 9040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,41.5 - parent: 1 - - uid: 17764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 1 - - uid: 17771 - components: - - type: Transform - pos: 36.5,9.5 - parent: 1 - - uid: 18240 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 1 - - uid: 18242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 1 -- proto: RailingCornerSmall - entities: - - uid: 3782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 1 - - uid: 3828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-37.5 - parent: 1 - - uid: 3829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-33.5 - parent: 1 - - uid: 4005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-36.5 - parent: 1 - - uid: 4006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-34.5 - parent: 1 - - uid: 4274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,77.5 - parent: 1 - - uid: 4275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,77.5 - parent: 1 - - uid: 8295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,47.5 - parent: 1 - - uid: 8301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,47.5 - parent: 1 - - uid: 8304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,43.5 - parent: 1 - - uid: 8305 - components: - - type: Transform - pos: -31.5,43.5 - parent: 1 - - uid: 17756 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 1 - - uid: 17768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 1 - - uid: 17774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,9.5 - parent: 1 - - uid: 18241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-3.5 - parent: 1 - - uid: 18250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-1.5 - parent: 1 - - uid: 18251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - - uid: 18252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 1 -- proto: RandomArcade - entities: - - uid: 3405 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 1 - - uid: 3407 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 1 - - uid: 3409 - components: - - type: Transform - pos: 24.5,-4.5 - parent: 1 - - uid: 3677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,69.5 - parent: 1 - - uid: 4356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,0.5 - parent: 1 - - uid: 4363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 1 - - uid: 6279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,68.5 - parent: 1 - - uid: 7688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 1 - - uid: 11072 - components: - - type: Transform - pos: 19.5,2.5 - parent: 1 - - uid: 13413 - components: - - type: Transform - pos: -12.5,69.5 - parent: 1 - - uid: 13415 - components: - - type: Transform - pos: -12.5,70.5 - parent: 1 -- proto: RandomArtifactSpawner - entities: - - uid: 17658 - components: - - type: Transform - pos: -6.5,29.5 - parent: 1 - - uid: 17659 - components: - - type: Transform - pos: -5.5,34.5 - parent: 1 -- proto: RandomBoard - entities: - - uid: 953 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1 - - uid: 3685 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 1 - - uid: 4213 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 1 - - uid: 4417 - components: - - type: Transform - pos: 17.5,-21.5 - parent: 1 - - uid: 4419 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 1 - - uid: 4420 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 1 - - uid: 6280 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 1 - - uid: 7648 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 1 -- proto: RandomDrinkBottle - entities: - - uid: 13313 - components: - - type: Transform - pos: -28.5,3.5 - parent: 1 - - uid: 18096 - components: - - type: Transform - pos: -34.5,54.5 - parent: 1 -- proto: RandomDrinkGlass - entities: - - uid: 9143 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 1 - - uid: 9956 - components: - - type: Transform - pos: -38.5,-11.5 - parent: 1 - - uid: 14070 - components: - - type: Transform - pos: 18.5,64.5 - parent: 1 - - uid: 17278 - components: - - type: Transform - pos: -8.5,5.5 - parent: 1 - - uid: 17279 - components: - - type: Transform - pos: -5.5,8.5 - parent: 1 - - uid: 17280 - components: - - type: Transform - pos: -5.5,2.5 - parent: 1 - - uid: 17281 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 1 - - uid: 17689 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 1 -- proto: RandomFoodBakedSingle - entities: - - uid: 8411 - components: - - type: Transform - pos: 11.5,42.5 - parent: 1 - - uid: 17664 - components: - - type: Transform - pos: 44.5,41.5 - parent: 1 -- proto: RandomFoodBakedWhole - entities: - - uid: 10951 - components: - - type: Transform - pos: 31.5,-18.5 - parent: 1 -- proto: RandomFoodMeal - entities: - - uid: 4025 - components: - - type: Transform - pos: -4.5,2.5 - parent: 1 - - uid: 13364 - components: - - type: Transform - pos: -39.5,34.5 - parent: 1 - - uid: 17662 - components: - - type: Transform - pos: -32.5,31.5 - parent: 1 -- proto: RandomFoodSingle - entities: - - uid: 13393 - components: - - type: Transform - pos: -24.5,30.5 - parent: 1 - - uid: 17284 - components: - - type: Transform - pos: 3.5,8.5 - parent: 1 - - uid: 17661 - components: - - type: Transform - pos: -8.5,36.5 - parent: 1 -- proto: RandomInstruments - entities: - - uid: 6622 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 1 - - uid: 8064 - components: - - type: Transform - pos: -8.5,76.5 - parent: 1 - - uid: 8257 - components: - - type: Transform - pos: -29.5,43.5 - parent: 1 - - uid: 8412 - components: - - type: Transform - pos: 12.5,46.5 - parent: 1 - - uid: 8471 - components: - - type: Transform - pos: 19.5,40.5 - parent: 1 -- proto: RandomPainting - entities: - - uid: 786 - components: - - type: Transform - pos: -25.5,9.5 - parent: 1 - - uid: 788 - components: - - type: Transform - pos: -24.5,9.5 - parent: 1 - - uid: 8250 - components: - - type: Transform - pos: -26.5,9.5 - parent: 1 - - uid: 8413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,43.5 - parent: 1 - - uid: 8414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,47.5 - parent: 1 - - uid: 17987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-21.5 - parent: 1 -- proto: RandomPosterAny - entities: - - uid: 17954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,53.5 - parent: 1 - - uid: 17955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,55.5 - parent: 1 - - uid: 17956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,57.5 - parent: 1 - - uid: 17957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,49.5 - parent: 1 - - uid: 17961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,23.5 - parent: 1 - - uid: 17962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,21.5 - parent: 1 - - uid: 17963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,25.5 - parent: 1 - - uid: 17967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,59.5 - parent: 1 - - uid: 17968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,57.5 - parent: 1 - - uid: 17970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,47.5 - parent: 1 - - uid: 17974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 1 - - uid: 17975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,6.5 - parent: 1 - - uid: 17976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 1 - - uid: 17979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-17.5 - parent: 1 - - uid: 17981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-20.5 - parent: 1 - - uid: 17983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-25.5 - parent: 1 - - uid: 17984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-30.5 - parent: 1 - - uid: 17985 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-16.5 - parent: 1 - - uid: 17994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,28.5 - parent: 1 - - uid: 17995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,20.5 - parent: 1 - - uid: 17996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,24.5 - parent: 1 - - uid: 17997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,4.5 - parent: 1 - - uid: 17998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,8.5 - parent: 1 - - uid: 18008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-36.5 - parent: 1 - - uid: 18009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-32.5 - parent: 1 - - uid: 18010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-28.5 - parent: 1 - - uid: 18011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-21.5 - parent: 1 - - uid: 18012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-18.5 - parent: 1 - - uid: 18015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-8.5 - parent: 1 - - uid: 18016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-8.5 - parent: 1 - - uid: 18018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,8.5 - parent: 1 - - uid: 18019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 1 - - uid: 18022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,44.5 - parent: 1 - - uid: 18023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,47.5 - parent: 1 - - uid: 18024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,50.5 - parent: 1 - - uid: 18029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,56.5 - parent: 1 - - uid: 18030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,53.5 - parent: 1 - - uid: 18032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,65.5 - parent: 1 - - uid: 18039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,48.5 - parent: 1 - - uid: 18040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,51.5 - parent: 1 - - uid: 18041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,42.5 - parent: 1 - - uid: 18087 - components: - - type: Transform - pos: 26.5,28.5 - parent: 1 - - uid: 18088 - components: - - type: Transform - pos: -2.5,33.5 - parent: 1 - - uid: 18092 - components: - - type: Transform - pos: -25.5,-25.5 - parent: 1 - - uid: 18330 - components: - - type: Transform - pos: 6.5,12.5 - parent: 1 -- proto: RandomPosterContraband - entities: - - uid: 17958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,44.5 - parent: 1 - - uid: 17959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,48.5 - parent: 1 - - uid: 17960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,42.5 - parent: 1 - - uid: 17973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,25.5 - parent: 1 - - uid: 17977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,3.5 - parent: 1 - - uid: 17980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-21.5 - parent: 1 - - uid: 17982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-27.5 - parent: 1 - - uid: 17986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-16.5 - parent: 1 - - uid: 17993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,28.5 - parent: 1 - - uid: 17999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,7.5 - parent: 1 - - uid: 18001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - - uid: 18002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-1.5 - parent: 1 - - uid: 18003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-0.5 - parent: 1 - - uid: 18013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-15.5 - parent: 1 - - uid: 18014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-10.5 - parent: 1 - - uid: 18020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,27.5 - parent: 1 - - uid: 18021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,32.5 - parent: 1 - - uid: 18026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,54.5 - parent: 1 - - uid: 18027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,51.5 - parent: 1 - - uid: 18028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,55.5 - parent: 1 - - uid: 18033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,64.5 - parent: 1 - - uid: 18034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,68.5 - parent: 1 - - uid: 18037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,53.5 - parent: 1 - - uid: 18038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,54.5 - parent: 1 - - uid: 18042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,45.5 - parent: 1 - - uid: 18079 - components: - - type: Transform - pos: -16.5,-27.5 - parent: 1 - - uid: 18080 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 1 - - uid: 18081 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 1 - - uid: 18085 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 1 - - uid: 18090 - components: - - type: Transform - pos: -33.5,-12.5 - parent: 1 - - uid: 18091 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 1 - - uid: 18110 - components: - - type: Transform - pos: -41.5,49.5 - parent: 1 - - uid: 18111 - components: - - type: Transform - pos: -45.5,46.5 - parent: 1 -- proto: RandomPosterLegit - entities: - - uid: 4138 - components: - - type: Transform - pos: -37.5,-6.5 - parent: 1 - - uid: 8252 - components: - - type: Transform - pos: -3.5,0.5 - parent: 1 - - uid: 9310 - components: - - type: Transform - pos: -44.5,0.5 - parent: 1 - - uid: 9630 - components: - - type: Transform - pos: -44.5,-4.5 - parent: 1 - - uid: 9659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,19.5 - parent: 1 - - uid: 17938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-6.5 - parent: 1 - - uid: 17939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-10.5 - parent: 1 - - uid: 17940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,12.5 - parent: 1 - - uid: 17941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,26.5 - parent: 1 - - uid: 17942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,30.5 - parent: 1 - - uid: 17943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,35.5 - parent: 1 - - uid: 17944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,40.5 - parent: 1 - - uid: 17945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,40.5 - parent: 1 - - uid: 17946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,35.5 - parent: 1 - - uid: 17947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,60.5 - parent: 1 - - uid: 17948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,64.5 - parent: 1 - - uid: 17949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,65.5 - parent: 1 - - uid: 17950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,39.5 - parent: 1 - - uid: 17951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,44.5 - parent: 1 - - uid: 17952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,42.5 - parent: 1 - - uid: 17953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,45.5 - parent: 1 - - uid: 17964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,1.5 - parent: 1 - - uid: 17965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,8.5 - parent: 1 - - uid: 17969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,51.5 - parent: 1 - - uid: 17971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,32.5 - parent: 1 - - uid: 17972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,32.5 - parent: 1 - - uid: 17978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-14.5 - parent: 1 - - uid: 17991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,52.5 - parent: 1 - - uid: 17992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,51.5 - parent: 1 - - uid: 18007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-31.5 - parent: 1 - - uid: 18017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,0.5 - parent: 1 - - uid: 18025 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,50.5 - parent: 1 - - uid: 18031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,61.5 - parent: 1 - - uid: 18035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,70.5 - parent: 1 - - uid: 18043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,39.5 - parent: 1 - - uid: 18044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 1 - - uid: 18077 - components: - - type: Transform - pos: -15.5,-12.5 - parent: 1 - - uid: 18078 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 1 - - uid: 18082 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 1 - - uid: 18116 - components: - - type: Transform - pos: 9.5,-31.5 - parent: 1 - - uid: 18117 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 1 - - uid: 18125 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 1 -- proto: RandomSnacks - entities: - - uid: 8721 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 1 - - uid: 17660 - components: - - type: Transform - pos: 41.5,36.5 - parent: 1 - - uid: 17663 - components: - - type: Transform - pos: -20.5,15.5 - parent: 1 - - uid: 17667 - components: - - type: Transform - pos: -37.5,7.5 - parent: 1 -- proto: RandomSoap - entities: - - uid: 8132 - components: - - type: Transform - pos: -7.5,70.5 - parent: 1 - - uid: 8265 - components: - - type: Transform - pos: -38.5,49.5 - parent: 1 - - uid: 9379 - components: - - type: Transform - pos: 16.5,-40.5 - parent: 1 - - uid: 9660 - components: - - type: Transform - pos: -15.5,5.5 - parent: 1 - - uid: 10100 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 1 -- proto: RandomSpawner - entities: - - uid: 17668 - components: - - type: Transform - pos: -34.5,21.5 - parent: 1 - - uid: 17669 - components: - - type: Transform - pos: -39.5,32.5 - parent: 1 - - uid: 17670 - components: - - type: Transform - pos: -48.5,43.5 - parent: 1 - - uid: 17671 - components: - - type: Transform - pos: -25.5,38.5 - parent: 1 - - uid: 17672 - components: - - type: Transform - pos: -30.5,45.5 - parent: 1 - - uid: 17673 - components: - - type: Transform - pos: -35.5,53.5 - parent: 1 - - uid: 17674 - components: - - type: Transform - pos: -38.5,45.5 - parent: 1 - - uid: 17676 - components: - - type: Transform - pos: -24.5,54.5 - parent: 1 - - uid: 17677 - components: - - type: Transform - pos: -17.5,63.5 - parent: 1 - - uid: 17678 - components: - - type: Transform - pos: -4.5,67.5 - parent: 1 - - uid: 17679 - components: - - type: Transform - pos: 11.5,69.5 - parent: 1 - - uid: 17680 - components: - - type: Transform - pos: 17.5,59.5 - parent: 1 - - uid: 17681 - components: - - type: Transform - pos: 30.5,52.5 - parent: 1 - - uid: 17682 - components: - - type: Transform - pos: 20.5,36.5 - parent: 1 - - uid: 17683 - components: - - type: Transform - pos: 44.5,38.5 - parent: 1 - - uid: 17684 - components: - - type: Transform - pos: 32.5,28.5 - parent: 1 - - uid: 17685 - components: - - type: Transform - pos: 22.5,18.5 - parent: 1 - - uid: 17687 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 1 - - uid: 17688 - components: - - type: Transform - pos: -24.5,-7.5 - parent: 1 - - uid: 17690 - components: - - type: Transform - pos: -47.5,-7.5 - parent: 1 - - uid: 17691 - components: - - type: Transform - pos: -49.5,-8.5 - parent: 1 - - uid: 17692 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 1 - - uid: 17693 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 1 - - uid: 17694 - components: - - type: Transform - pos: -15.5,-37.5 - parent: 1 - - uid: 17695 - components: - - type: Transform - pos: 17.5,-35.5 - parent: 1 - - uid: 17696 - components: - - type: Transform - pos: 17.5,-34.5 - parent: 1 - - uid: 17697 - components: - - type: Transform - pos: 18.5,-40.5 - parent: 1 - - uid: 17698 - components: - - type: Transform - pos: 20.5,-39.5 - parent: 1 - - uid: 17699 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 1 - - uid: 17700 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 1 - - uid: 17701 - components: - - type: Transform - pos: 37.5,-14.5 - parent: 1 - - uid: 17702 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 1 - - uid: 17703 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 1 -- proto: RandomVending - entities: - - uid: 6553 - components: - - type: Transform - pos: -26.5,-22.5 - parent: 1 - - uid: 6690 - components: - - type: Transform - pos: -40.5,11.5 - parent: 1 - - uid: 8418 - components: - - type: Transform - pos: -48.5,44.5 - parent: 1 - - uid: 8457 - components: - - type: Transform - pos: 9.5,70.5 - parent: 1 - - uid: 9052 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1 - - uid: 10137 - components: - - type: Transform - pos: 28.5,-26.5 - parent: 1 - - uid: 11060 - components: - - type: Transform - pos: 15.5,5.5 - parent: 1 - - uid: 13394 - components: - - type: Transform - pos: -24.5,29.5 - parent: 1 - - uid: 14006 - components: - - type: Transform - pos: 15.5,64.5 - parent: 1 -- proto: RandomVendingDrinks - entities: - - uid: 3725 - components: - - type: Transform - pos: -42.5,-4.5 - parent: 1 - - uid: 8591 - components: - - type: Transform - pos: -27.5,11.5 - parent: 1 -- proto: RandomVendingSnacks - entities: - - uid: 3726 - components: - - type: Transform - pos: -43.5,-4.5 - parent: 1 -- proto: RCD - entities: - - uid: 8704 - components: - - type: Transform - pos: -13.511377,-23.363 - parent: 1 - - uid: 9098 - components: - - type: Transform - pos: 6.6163073,-24.303488 - parent: 1 -- proto: RCDAmmo - entities: - - uid: 8705 - components: - - type: Transform - pos: -13.667563,-23.646822 - parent: 1 - - uid: 9099 - components: - - type: Transform - pos: 6.6163073,-24.511822 - parent: 1 - - uid: 9100 - components: - - type: Transform - pos: 6.4288073,-24.595156 - parent: 1 -- proto: ReagentContainerFlour - entities: - - uid: 4572 - components: - - type: Transform - pos: 7.857181,-3.1736069 - parent: 1 -- proto: ReagentContainerRice - entities: - - uid: 608 - components: - - type: Transform - pos: 7.5164104,-3.0316958 - parent: 1 -- proto: Recycler - entities: - - uid: 3989 - components: - - type: Transform - pos: 19.5,-35.5 - parent: 1 - - type: DeviceLinkSink - links: - - 4007 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 2498 - components: - - type: Transform - pos: -7.5,59.5 - parent: 1 - - uid: 2686 - components: - - type: Transform - pos: -2.5,28.5 - parent: 1 - - uid: 2687 - components: - - type: Transform - pos: -2.5,29.5 - parent: 1 - - uid: 2688 - components: - - type: Transform - pos: -2.5,30.5 - parent: 1 - - uid: 2962 - components: - - type: Transform - pos: -2.5,-39.5 - parent: 1 - - uid: 2963 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 1 - - uid: 2964 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 1 - - uid: 2965 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 1 - - uid: 2966 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 1 - - uid: 2967 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 1 - - uid: 2968 - components: - - type: Transform - pos: 1.5,-39.5 - parent: 1 - - uid: 2969 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 1 - - uid: 2970 - components: - - type: Transform - pos: 1.5,-41.5 - parent: 1 - - uid: 2974 - components: - - type: Transform - pos: 2.5,-43.5 - parent: 1 - - uid: 2975 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 1 - - uid: 2976 - components: - - type: Transform - pos: 2.5,-45.5 - parent: 1 - - uid: 2977 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 1 - - uid: 2978 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 1 - - uid: 2979 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 1 - - uid: 2980 - components: - - type: Transform - pos: 1.5,-35.5 - parent: 1 - - uid: 2981 - components: - - type: Transform - pos: 1.5,-34.5 - parent: 1 - - uid: 2982 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 1 - - uid: 2983 - components: - - type: Transform - pos: 0.5,-32.5 - parent: 1 - - uid: 2984 - components: - - type: Transform - pos: -0.5,-32.5 - parent: 1 - - uid: 2985 - components: - - type: Transform - pos: -1.5,-32.5 - parent: 1 - - uid: 2986 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 1 - - uid: 2987 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 1 - - uid: 2988 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 1 - - uid: 2989 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 1 - - uid: 2990 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 1 - - uid: 2991 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 1 - - uid: 2992 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 1 - - uid: 2993 - components: - - type: Transform - pos: -2.5,-21.5 - parent: 1 - - uid: 2994 - components: - - type: Transform - pos: -2.5,-19.5 - parent: 1 -- proto: ReinforcedWindow - entities: - - uid: 5 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 1 - - uid: 11 - components: - - type: Transform - pos: 50.5,-10.5 - parent: 1 - - uid: 29 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,33.5 - parent: 1 - - uid: 30 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,23.5 - parent: 1 - - uid: 31 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,24.5 - parent: 1 - - uid: 38 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,22.5 - parent: 1 - - uid: 48 - components: - - type: Transform - pos: 51.5,-13.5 - parent: 1 - - uid: 57 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,18.5 - parent: 1 - - uid: 58 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,17.5 - parent: 1 - - uid: 59 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,16.5 - parent: 1 - - uid: 60 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,18.5 - parent: 1 - - uid: 61 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 1 - - uid: 62 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,16.5 - parent: 1 - - uid: 90 - components: - - type: Transform - pos: 50.5,-9.5 - parent: 1 - - uid: 96 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,11.5 - parent: 1 - - uid: 97 - components: - - type: Transform - pos: 44.5,-12.5 - parent: 1 - - uid: 98 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,11.5 - parent: 1 - - uid: 100 - components: - - type: Transform - pos: 45.5,-15.5 - parent: 1 - - uid: 103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,11.5 - parent: 1 - - uid: 105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,11.5 - parent: 1 - - uid: 192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,16.5 - parent: 1 - - uid: 193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,16.5 - parent: 1 - - uid: 194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,16.5 - parent: 1 - - uid: 195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,16.5 - parent: 1 - - uid: 196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,12.5 - parent: 1 - - uid: 197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,12.5 - parent: 1 - - uid: 198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,12.5 - parent: 1 - - uid: 199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,12.5 - parent: 1 - - uid: 200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,12.5 - parent: 1 - - uid: 201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,12.5 - parent: 1 - - uid: 202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,12.5 - parent: 1 - - uid: 203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 1 - - uid: 204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,16.5 - parent: 1 - - uid: 205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,16.5 - parent: 1 - - uid: 206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,16.5 - parent: 1 - - uid: 207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,16.5 - parent: 1 - - uid: 208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 1 - - uid: 209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 1 - - uid: 210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,19.5 - parent: 1 - - uid: 216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,27.5 - parent: 1 - - uid: 217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,28.5 - parent: 1 - - uid: 218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 1 - - uid: 219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,32.5 - parent: 1 - - uid: 220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,34.5 - parent: 1 - - uid: 233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,12.5 - parent: 1 - - uid: 234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,16.5 - parent: 1 - - uid: 236 - components: - - type: Transform - pos: 51.5,-8.5 - parent: 1 - - uid: 240 - components: - - type: Transform - pos: -44.5,-2.5 - parent: 1 - - uid: 241 - components: - - type: Transform - pos: -44.5,-1.5 - parent: 1 - - uid: 242 - components: - - type: Transform - pos: -44.5,-0.5 - parent: 1 - - uid: 243 - components: - - type: Transform - pos: -44.5,7.5 - parent: 1 - - uid: 244 - components: - - type: Transform - pos: -44.5,8.5 - parent: 1 - - uid: 245 - components: - - type: Transform - pos: -44.5,9.5 - parent: 1 - - uid: 249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 1 - - uid: 250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 1 - - uid: 251 - components: - - type: Transform - pos: -45.5,3.5 - parent: 1 - - uid: 257 - components: - - type: Transform - pos: -37.5,-2.5 - parent: 1 - - uid: 259 - components: - - type: Transform - pos: -37.5,-0.5 - parent: 1 - - uid: 287 - components: - - type: Transform - pos: -46.5,3.5 - parent: 1 - - uid: 317 - components: - - type: Transform - pos: 5.5,69.5 - parent: 1 - - uid: 318 - components: - - type: Transform - pos: 6.5,69.5 - parent: 1 - - uid: 319 - components: - - type: Transform - pos: 8.5,72.5 - parent: 1 - - uid: 334 - components: - - type: Transform - pos: 8.5,73.5 - parent: 1 - - uid: 335 - components: - - type: Transform - pos: 8.5,74.5 - parent: 1 - - uid: 363 - components: - - type: Transform - pos: 2.5,75.5 - parent: 1 - - uid: 364 - components: - - type: Transform - pos: 3.5,75.5 - parent: 1 - - uid: 391 - components: - - type: Transform - pos: 2.5,69.5 - parent: 1 - - uid: 392 - components: - - type: Transform - pos: 3.5,69.5 - parent: 1 - - uid: 407 - components: - - type: Transform - pos: 8.5,76.5 - parent: 1 - - uid: 408 - components: - - type: Transform - pos: 8.5,77.5 - parent: 1 - - uid: 409 - components: - - type: Transform - pos: 7.5,79.5 - parent: 1 - - uid: 410 - components: - - type: Transform - pos: 7.5,80.5 - parent: 1 - - uid: 411 - components: - - type: Transform - pos: 6.5,82.5 - parent: 1 - - uid: 412 - components: - - type: Transform - pos: 4.5,83.5 - parent: 1 - - uid: 413 - components: - - type: Transform - pos: 2.5,84.5 - parent: 1 - - uid: 414 - components: - - type: Transform - pos: 1.5,84.5 - parent: 1 - - uid: 415 - components: - - type: Transform - pos: 0.5,84.5 - parent: 1 - - uid: 416 - components: - - type: Transform - pos: -1.5,84.5 - parent: 1 - - uid: 417 - components: - - type: Transform - pos: -2.5,84.5 - parent: 1 - - uid: 418 - components: - - type: Transform - pos: -3.5,84.5 - parent: 1 - - uid: 419 - components: - - type: Transform - pos: -5.5,83.5 - parent: 1 - - uid: 420 - components: - - type: Transform - pos: -6.5,83.5 - parent: 1 - - uid: 421 - components: - - type: Transform - pos: 5.5,83.5 - parent: 1 - - uid: 809 - components: - - type: Transform - pos: -3.5,20.5 - parent: 1 - - uid: 810 - components: - - type: Transform - pos: 2.5,20.5 - parent: 1 - - uid: 843 - components: - - type: Transform - pos: 42.5,41.5 - parent: 1 - - uid: 852 - components: - - type: Transform - pos: 49.5,44.5 - parent: 1 - - uid: 853 - components: - - type: Transform - pos: 49.5,43.5 - parent: 1 - - uid: 854 - components: - - type: Transform - pos: 49.5,42.5 - parent: 1 - - uid: 855 - components: - - type: Transform - pos: 49.5,41.5 - parent: 1 - - uid: 856 - components: - - type: Transform - pos: 51.5,39.5 - parent: 1 - - uid: 857 - components: - - type: Transform - pos: 51.5,35.5 - parent: 1 - - uid: 858 - components: - - type: Transform - pos: 50.5,34.5 - parent: 1 - - uid: 859 - components: - - type: Transform - pos: 49.5,33.5 - parent: 1 - - uid: 860 - components: - - type: Transform - pos: 45.5,33.5 - parent: 1 - - uid: 861 - components: - - type: Transform - pos: 44.5,34.5 - parent: 1 - - uid: 862 - components: - - type: Transform - pos: 42.5,35.5 - parent: 1 - - uid: 863 - components: - - type: Transform - pos: 41.5,35.5 - parent: 1 - - uid: 864 - components: - - type: Transform - pos: 40.5,35.5 - parent: 1 - - uid: 865 - components: - - type: Transform - pos: 39.5,35.5 - parent: 1 - - uid: 866 - components: - - type: Transform - pos: 37.5,35.5 - parent: 1 - - uid: 867 - components: - - type: Transform - pos: 36.5,35.5 - parent: 1 - - uid: 868 - components: - - type: Transform - pos: 35.5,35.5 - parent: 1 - - uid: 869 - components: - - type: Transform - pos: 34.5,35.5 - parent: 1 - - uid: 881 - components: - - type: Transform - pos: 39.5,55.5 - parent: 1 - - uid: 883 - components: - - type: Transform - pos: 39.5,54.5 - parent: 1 - - uid: 915 - components: - - type: Transform - pos: 47.5,46.5 - parent: 1 - - uid: 916 - components: - - type: Transform - pos: 47.5,47.5 - parent: 1 - - uid: 917 - components: - - type: Transform - pos: 47.5,48.5 - parent: 1 - - uid: 918 - components: - - type: Transform - pos: 46.5,49.5 - parent: 1 - - uid: 919 - components: - - type: Transform - pos: 45.5,49.5 - parent: 1 - - uid: 920 - components: - - type: Transform - pos: 48.5,45.5 - parent: 1 - - uid: 921 - components: - - type: Transform - pos: 44.5,50.5 - parent: 1 - - uid: 922 - components: - - type: Transform - pos: 44.5,51.5 - parent: 1 - - uid: 923 - components: - - type: Transform - pos: 43.5,52.5 - parent: 1 - - uid: 924 - components: - - type: Transform - pos: 42.5,52.5 - parent: 1 - - uid: 925 - components: - - type: Transform - pos: 41.5,52.5 - parent: 1 - - uid: 926 - components: - - type: Transform - pos: -39.5,53.5 - parent: 1 - - uid: 930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,53.5 - parent: 1 - - uid: 933 - components: - - type: Transform - pos: 34.5,57.5 - parent: 1 - - uid: 934 - components: - - type: Transform - pos: 33.5,57.5 - parent: 1 - - uid: 935 - components: - - type: Transform - pos: 31.5,57.5 - parent: 1 - - uid: 936 - components: - - type: Transform - pos: 30.5,57.5 - parent: 1 - - uid: 937 - components: - - type: Transform - pos: 29.5,58.5 - parent: 1 - - uid: 938 - components: - - type: Transform - pos: 28.5,59.5 - parent: 1 - - uid: 939 - components: - - type: Transform - pos: 27.5,59.5 - parent: 1 - - uid: 940 - components: - - type: Transform - pos: 26.5,59.5 - parent: 1 - - uid: 941 - components: - - type: Transform - pos: 23.5,59.5 - parent: 1 - - uid: 942 - components: - - type: Transform - pos: 22.5,59.5 - parent: 1 - - uid: 943 - components: - - type: Transform - pos: 21.5,59.5 - parent: 1 - - uid: 944 - components: - - type: Transform - pos: 19.5,61.5 - parent: 1 - - uid: 945 - components: - - type: Transform - pos: 19.5,62.5 - parent: 1 - - uid: 946 - components: - - type: Transform - pos: 19.5,63.5 - parent: 1 - - uid: 947 - components: - - type: Transform - pos: 19.5,64.5 - parent: 1 - - uid: 948 - components: - - type: Transform - pos: 18.5,65.5 - parent: 1 - - uid: 949 - components: - - type: Transform - pos: 17.5,65.5 - parent: 1 - - uid: 950 - components: - - type: Transform - pos: 16.5,65.5 - parent: 1 - - uid: 951 - components: - - type: Transform - pos: 15.5,65.5 - parent: 1 - - uid: 954 - components: - - type: Transform - pos: 13.5,69.5 - parent: 1 - - uid: 955 - components: - - type: Transform - pos: 13.5,70.5 - parent: 1 - - uid: 956 - components: - - type: Transform - pos: 12.5,71.5 - parent: 1 - - uid: 957 - components: - - type: Transform - pos: 11.5,71.5 - parent: 1 - - uid: 958 - components: - - type: Transform - pos: 10.5,71.5 - parent: 1 - - uid: 959 - components: - - type: Transform - pos: 9.5,71.5 - parent: 1 - - uid: 960 - components: - - type: Transform - pos: 1.5,70.5 - parent: 1 - - uid: 961 - components: - - type: Transform - pos: 1.5,71.5 - parent: 1 - - uid: 962 - components: - - type: Transform - pos: 1.5,73.5 - parent: 1 - - uid: 963 - components: - - type: Transform - pos: 1.5,74.5 - parent: 1 - - uid: 964 - components: - - type: Transform - pos: -9.5,72.5 - parent: 1 - - uid: 965 - components: - - type: Transform - pos: -9.5,73.5 - parent: 1 - - uid: 966 - components: - - type: Transform - pos: -9.5,74.5 - parent: 1 - - uid: 967 - components: - - type: Transform - pos: -9.5,76.5 - parent: 1 - - uid: 968 - components: - - type: Transform - pos: -9.5,77.5 - parent: 1 - - uid: 969 - components: - - type: Transform - pos: -8.5,79.5 - parent: 1 - - uid: 970 - components: - - type: Transform - pos: -8.5,80.5 - parent: 1 - - uid: 971 - components: - - type: Transform - pos: -7.5,82.5 - parent: 1 - - uid: 1045 - components: - - type: Transform - pos: -4.5,29.5 - parent: 1 - - uid: 1059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,31.5 - parent: 1 - - uid: 1077 - components: - - type: Transform - pos: -7.5,35.5 - parent: 1 - - uid: 1078 - components: - - type: Transform - pos: -6.5,35.5 - parent: 1 - - uid: 1079 - components: - - type: Transform - pos: -5.5,35.5 - parent: 1 - - uid: 1080 - components: - - type: Transform - pos: -4.5,30.5 - parent: 1 - - uid: 1082 - components: - - type: Transform - pos: -4.5,28.5 - parent: 1 - - uid: 1083 - components: - - type: Transform - pos: -7.5,27.5 - parent: 1 - - uid: 1085 - components: - - type: Transform - pos: -5.5,27.5 - parent: 1 - - uid: 1086 - components: - - type: Transform - pos: -8.5,28.5 - parent: 1 - - uid: 1087 - components: - - type: Transform - pos: -8.5,29.5 - parent: 1 - - uid: 1088 - components: - - type: Transform - pos: -8.5,30.5 - parent: 1 - - uid: 1089 - components: - - type: Transform - pos: -7.5,31.5 - parent: 1 - - uid: 1090 - components: - - type: Transform - pos: -5.5,31.5 - parent: 1 - - uid: 1097 - components: - - type: Transform - pos: -12.5,30.5 - parent: 1 - - uid: 1099 - components: - - type: Transform - pos: -12.5,28.5 - parent: 1 - - uid: 1100 - components: - - type: Transform - pos: -12.5,27.5 - parent: 1 - - uid: 1104 - components: - - type: Transform - pos: -15.5,26.5 - parent: 1 - - uid: 1105 - components: - - type: Transform - pos: -13.5,26.5 - parent: 1 - - uid: 1108 - components: - - type: Transform - pos: -22.5,19.5 - parent: 1 - - uid: 1115 - components: - - type: Transform - pos: -7.5,25.5 - parent: 1 - - uid: 1116 - components: - - type: Transform - pos: -6.5,25.5 - parent: 1 - - uid: 1117 - components: - - type: Transform - pos: -5.5,25.5 - parent: 1 - - uid: 1133 - components: - - type: Transform - pos: -15.5,16.5 - parent: 1 - - uid: 1134 - components: - - type: Transform - pos: -16.5,16.5 - parent: 1 - - uid: 1135 - components: - - type: Transform - pos: -17.5,16.5 - parent: 1 - - uid: 1140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 1 - - uid: 1150 - components: - - type: Transform - pos: -11.5,16.5 - parent: 1 - - uid: 1151 - components: - - type: Transform - pos: -12.5,16.5 - parent: 1 - - uid: 1158 - components: - - type: Transform - pos: -2.5,24.5 - parent: 1 - - uid: 1159 - components: - - type: Transform - pos: -2.5,23.5 - parent: 1 - - uid: 1160 - components: - - type: Transform - pos: -2.5,22.5 - parent: 1 - - uid: 1161 - components: - - type: Transform - pos: 1.5,24.5 - parent: 1 - - uid: 1162 - components: - - type: Transform - pos: 1.5,23.5 - parent: 1 - - uid: 1163 - components: - - type: Transform - pos: 1.5,22.5 - parent: 1 - - uid: 1167 - components: - - type: Transform - pos: -8.5,21.5 - parent: 1 - - uid: 1174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,16.5 - parent: 1 - - uid: 1238 - components: - - type: Transform - pos: -19.5,35.5 - parent: 1 - - uid: 1239 - components: - - type: Transform - pos: -22.5,22.5 - parent: 1 - - uid: 1279 - components: - - type: Transform - pos: -49.5,17.5 - parent: 1 - - uid: 1280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,26.5 - parent: 1 - - uid: 1290 - components: - - type: Transform - pos: -46.5,34.5 - parent: 1 - - uid: 1291 - components: - - type: Transform - pos: -50.5,34.5 - parent: 1 - - uid: 1294 - components: - - type: Transform - pos: -46.5,17.5 - parent: 1 - - uid: 1296 - components: - - type: Transform - pos: -49.5,34.5 - parent: 1 - - uid: 1303 - components: - - type: Transform - pos: -22.5,20.5 - parent: 1 - - uid: 1326 - components: - - type: Transform - pos: -46.5,6.5 - parent: 1 - - uid: 1327 - components: - - type: Transform - pos: -13.5,39.5 - parent: 1 - - uid: 1328 - components: - - type: Transform - pos: -12.5,39.5 - parent: 1 - - uid: 1329 - components: - - type: Transform - pos: -10.5,39.5 - parent: 1 - - uid: 1330 - components: - - type: Transform - pos: -9.5,39.5 - parent: 1 - - uid: 1331 - components: - - type: Transform - pos: -7.5,39.5 - parent: 1 - - uid: 1332 - components: - - type: Transform - pos: -6.5,39.5 - parent: 1 - - uid: 1333 - components: - - type: Transform - pos: -4.5,39.5 - parent: 1 - - uid: 1334 - components: - - type: Transform - pos: -3.5,39.5 - parent: 1 - - uid: 1351 - components: - - type: Transform - pos: -4.5,56.5 - parent: 1 - - uid: 1352 - components: - - type: Transform - pos: -4.5,57.5 - parent: 1 - - uid: 1362 - components: - - type: Transform - pos: -7.5,53.5 - parent: 1 - - uid: 1363 - components: - - type: Transform - pos: -7.5,52.5 - parent: 1 - - uid: 1367 - components: - - type: Transform - pos: -13.5,43.5 - parent: 1 - - uid: 1368 - components: - - type: Transform - pos: -10.5,43.5 - parent: 1 - - uid: 1369 - components: - - type: Transform - pos: -7.5,43.5 - parent: 1 - - uid: 1370 - components: - - type: Transform - pos: -4.5,43.5 - parent: 1 - - uid: 1371 - components: - - type: Transform - pos: -3.5,47.5 - parent: 1 - - uid: 1372 - components: - - type: Transform - pos: -4.5,47.5 - parent: 1 - - uid: 1391 - components: - - type: Transform - pos: -19.5,43.5 - parent: 1 - - uid: 1392 - components: - - type: Transform - pos: -18.5,43.5 - parent: 1 - - uid: 1393 - components: - - type: Transform - pos: -16.5,43.5 - parent: 1 - - uid: 1394 - components: - - type: Transform - pos: -15.5,43.5 - parent: 1 - - uid: 1442 - components: - - type: Transform - pos: -24.5,44.5 - parent: 1 - - uid: 1443 - components: - - type: Transform - pos: -24.5,43.5 - parent: 1 - - uid: 1444 - components: - - type: Transform - pos: -24.5,42.5 - parent: 1 - - uid: 1448 - components: - - type: Transform - pos: -15.5,49.5 - parent: 1 - - uid: 1449 - components: - - type: Transform - pos: -15.5,48.5 - parent: 1 - - uid: 1518 - components: - - type: Transform - pos: -39.5,46.5 - parent: 1 - - uid: 1519 - components: - - type: Transform - pos: -39.5,45.5 - parent: 1 - - uid: 1521 - components: - - type: Transform - pos: -26.5,44.5 - parent: 1 - - uid: 1522 - components: - - type: Transform - pos: -26.5,43.5 - parent: 1 - - uid: 1523 - components: - - type: Transform - pos: -26.5,42.5 - parent: 1 - - uid: 1525 - components: - - type: Transform - pos: -32.5,41.5 - parent: 1 - - uid: 1526 - components: - - type: Transform - pos: -31.5,41.5 - parent: 1 - - uid: 1527 - components: - - type: Transform - pos: -30.5,41.5 - parent: 1 - - uid: 1537 - components: - - type: Transform - pos: -35.5,41.5 - parent: 1 - - uid: 1542 - components: - - type: Transform - pos: -34.5,41.5 - parent: 1 - - uid: 1543 - components: - - type: Transform - pos: -34.5,39.5 - parent: 1 - - uid: 1545 - components: - - type: Transform - pos: -35.5,39.5 - parent: 1 - - uid: 1547 - components: - - type: Transform - pos: -32.5,39.5 - parent: 1 - - uid: 1548 - components: - - type: Transform - pos: -31.5,39.5 - parent: 1 - - uid: 1549 - components: - - type: Transform - pos: -30.5,39.5 - parent: 1 - - uid: 1566 - components: - - type: Transform - pos: -39.5,43.5 - parent: 1 - - uid: 1567 - components: - - type: Transform - pos: -39.5,42.5 - parent: 1 - - uid: 1571 - components: - - type: Transform - pos: -27.5,46.5 - parent: 1 - - uid: 1577 - components: - - type: Transform - pos: -41.5,46.5 - parent: 1 - - uid: 1580 - components: - - type: Transform - pos: -41.5,43.5 - parent: 1 - - uid: 1581 - components: - - type: Transform - pos: -41.5,42.5 - parent: 1 - - uid: 1590 - components: - - type: Transform - pos: -28.5,46.5 - parent: 1 - - uid: 1614 - components: - - type: Transform - pos: -32.5,57.5 - parent: 1 - - uid: 1622 - components: - - type: Transform - pos: -40.5,55.5 - parent: 1 - - uid: 1643 - components: - - type: Transform - pos: -52.5,35.5 - parent: 1 - - uid: 1644 - components: - - type: Transform - pos: -52.5,39.5 - parent: 1 - - uid: 1645 - components: - - type: Transform - pos: -50.5,41.5 - parent: 1 - - uid: 1646 - components: - - type: Transform - pos: -50.5,42.5 - parent: 1 - - uid: 1647 - components: - - type: Transform - pos: -50.5,43.5 - parent: 1 - - uid: 1648 - components: - - type: Transform - pos: -50.5,44.5 - parent: 1 - - uid: 1649 - components: - - type: Transform - pos: -49.5,45.5 - parent: 1 - - uid: 1650 - components: - - type: Transform - pos: -48.5,46.5 - parent: 1 - - uid: 1651 - components: - - type: Transform - pos: -48.5,47.5 - parent: 1 - - uid: 1652 - components: - - type: Transform - pos: -48.5,48.5 - parent: 1 - - uid: 1653 - components: - - type: Transform - pos: -47.5,49.5 - parent: 1 - - uid: 1654 - components: - - type: Transform - pos: -46.5,49.5 - parent: 1 - - uid: 1655 - components: - - type: Transform - pos: -45.5,50.5 - parent: 1 - - uid: 1656 - components: - - type: Transform - pos: -45.5,51.5 - parent: 1 - - uid: 1657 - components: - - type: Transform - pos: -44.5,52.5 - parent: 1 - - uid: 1658 - components: - - type: Transform - pos: -43.5,52.5 - parent: 1 - - uid: 1659 - components: - - type: Transform - pos: -42.5,52.5 - parent: 1 - - uid: 1661 - components: - - type: Transform - pos: -40.5,54.5 - parent: 1 - - uid: 1667 - components: - - type: Transform - pos: -35.5,57.5 - parent: 1 - - uid: 1668 - components: - - type: Transform - pos: -34.5,57.5 - parent: 1 - - uid: 1671 - components: - - type: Transform - pos: -30.5,58.5 - parent: 1 - - uid: 1672 - components: - - type: Transform - pos: -29.5,59.5 - parent: 1 - - uid: 1673 - components: - - type: Transform - pos: -28.5,59.5 - parent: 1 - - uid: 1674 - components: - - type: Transform - pos: -27.5,59.5 - parent: 1 - - uid: 1675 - components: - - type: Transform - pos: -24.5,59.5 - parent: 1 - - uid: 1676 - components: - - type: Transform - pos: -23.5,59.5 - parent: 1 - - uid: 1677 - components: - - type: Transform - pos: -22.5,59.5 - parent: 1 - - uid: 1678 - components: - - type: Transform - pos: -20.5,61.5 - parent: 1 - - uid: 1679 - components: - - type: Transform - pos: -20.5,62.5 - parent: 1 - - uid: 1680 - components: - - type: Transform - pos: -20.5,63.5 - parent: 1 - - uid: 1681 - components: - - type: Transform - pos: -20.5,64.5 - parent: 1 - - uid: 1682 - components: - - type: Transform - pos: -19.5,65.5 - parent: 1 - - uid: 1683 - components: - - type: Transform - pos: -18.5,65.5 - parent: 1 - - uid: 1684 - components: - - type: Transform - pos: -17.5,65.5 - parent: 1 - - uid: 1685 - components: - - type: Transform - pos: -16.5,65.5 - parent: 1 - - uid: 1686 - components: - - type: Transform - pos: -14.5,67.5 - parent: 1 - - uid: 1687 - components: - - type: Transform - pos: -14.5,68.5 - parent: 1 - - uid: 1688 - components: - - type: Transform - pos: -14.5,69.5 - parent: 1 - - uid: 1689 - components: - - type: Transform - pos: -14.5,70.5 - parent: 1 - - uid: 1690 - components: - - type: Transform - pos: -13.5,71.5 - parent: 1 - - uid: 1691 - components: - - type: Transform - pos: -12.5,71.5 - parent: 1 - - uid: 1717 - components: - - type: Transform - pos: -41.5,45.5 - parent: 1 - - uid: 1721 - components: - - type: Transform - pos: -40.5,34.5 - parent: 1 - - uid: 1722 - components: - - type: Transform - pos: -40.5,33.5 - parent: 1 - - uid: 1723 - components: - - type: Transform - pos: -40.5,32.5 - parent: 1 - - uid: 1727 - components: - - type: Transform - pos: -43.5,35.5 - parent: 1 - - uid: 1728 - components: - - type: Transform - pos: -42.5,35.5 - parent: 1 - - uid: 1729 - components: - - type: Transform - pos: -41.5,35.5 - parent: 1 - - uid: 1763 - components: - - type: Transform - pos: -40.5,17.5 - parent: 1 - - uid: 1764 - components: - - type: Transform - pos: -40.5,18.5 - parent: 1 - - uid: 1765 - components: - - type: Transform - pos: -40.5,19.5 - parent: 1 - - uid: 1796 - components: - - type: Transform - pos: -15.5,57.5 - parent: 1 - - uid: 1797 - components: - - type: Transform - pos: -14.5,57.5 - parent: 1 - - uid: 1801 - components: - - type: Transform - pos: -15.5,50.5 - parent: 1 - - uid: 1805 - components: - - type: Transform - pos: -14.5,47.5 - parent: 1 - - uid: 1833 - components: - - type: Transform - pos: -14.5,51.5 - parent: 1 - - uid: 1835 - components: - - type: Transform - pos: -11.5,51.5 - parent: 1 - - uid: 1838 - components: - - type: Transform - pos: -13.5,51.5 - parent: 1 - - uid: 1839 - components: - - type: Transform - pos: -10.5,50.5 - parent: 1 - - uid: 1840 - components: - - type: Transform - pos: -11.5,47.5 - parent: 1 - - uid: 1967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-10.5 - parent: 1 - - uid: 1968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-10.5 - parent: 1 - - uid: 1969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-11.5 - parent: 1 - - uid: 1970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-12.5 - parent: 1 - - uid: 1971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-12.5 - parent: 1 - - uid: 1972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-11.5 - parent: 1 - - uid: 1973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-10.5 - parent: 1 - - uid: 1974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-6.5 - parent: 1 - - uid: 1975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-5.5 - parent: 1 - - uid: 1976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-5.5 - parent: 1 - - uid: 1977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-5.5 - parent: 1 - - uid: 1978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-5.5 - parent: 1 - - uid: 1979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-5.5 - parent: 1 - - uid: 1980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,11.5 - parent: 1 - - uid: 1981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,11.5 - parent: 1 - - uid: 1982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,11.5 - parent: 1 - - uid: 1983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,11.5 - parent: 1 - - uid: 1984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,11.5 - parent: 1 - - uid: 1985 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,12.5 - parent: 1 - - uid: 1986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,16.5 - parent: 1 - - uid: 1989 - components: - - type: Transform - pos: -41.5,29.5 - parent: 1 - - uid: 1993 - components: - - type: Transform - pos: 48.5,-15.5 - parent: 1 - - uid: 1999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 1 - - uid: 2000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 1 - - uid: 2004 - components: - - type: Transform - pos: 41.5,-10.5 - parent: 1 - - uid: 2007 - components: - - type: Transform - pos: 49.5,-15.5 - parent: 1 - - uid: 2020 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 1 - - uid: 2021 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 1 - - uid: 2022 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 1 - - uid: 2023 - components: - - type: Transform - pos: 37.5,-6.5 - parent: 1 - - uid: 2024 - components: - - type: Transform - pos: 39.5,-6.5 - parent: 1 - - uid: 2025 - components: - - type: Transform - pos: 40.5,-6.5 - parent: 1 - - uid: 2026 - components: - - type: Transform - pos: 41.5,-6.5 - parent: 1 - - uid: 2027 - components: - - type: Transform - pos: 42.5,-6.5 - parent: 1 - - uid: 2049 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-5.5 - parent: 1 - - uid: 2053 - components: - - type: Transform - pos: 44.5,-13.5 - parent: 1 - - uid: 2054 - components: - - type: Transform - pos: 42.5,-10.5 - parent: 1 - - uid: 2058 - components: - - type: Transform - pos: 50.5,-12.5 - parent: 1 - - uid: 2110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,7.5 - parent: 1 - - uid: 2111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,6.5 - parent: 1 - - uid: 2112 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 1 - - uid: 2113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 1 - - uid: 2120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,0.5 - parent: 1 - - uid: 2121 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 1 - - uid: 2122 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 1 - - uid: 2268 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 1 - - uid: 2269 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 1 - - uid: 2270 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 1 - - uid: 2271 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 1 - - uid: 2272 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 1 - - uid: 2273 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 1 - - uid: 2274 - components: - - type: Transform - pos: -4.5,-24.5 - parent: 1 - - uid: 2275 - components: - - type: Transform - pos: -4.5,-25.5 - parent: 1 - - uid: 2276 - components: - - type: Transform - pos: -4.5,-26.5 - parent: 1 - - uid: 2277 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 1 - - uid: 2278 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 1 - - uid: 2279 - components: - - type: Transform - pos: -4.5,-29.5 - parent: 1 - - uid: 2280 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 1 - - uid: 2282 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 1 - - uid: 2283 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 1 - - uid: 2284 - components: - - type: Transform - pos: -4.5,-34.5 - parent: 1 - - uid: 2285 - components: - - type: Transform - pos: -4.5,-35.5 - parent: 1 - - uid: 2286 - components: - - type: Transform - pos: -4.5,-36.5 - parent: 1 - - uid: 2287 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 1 - - uid: 2288 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 1 - - uid: 2289 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 1 - - uid: 2290 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 1 - - uid: 2334 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 1 - - uid: 2347 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 1 - - uid: 2348 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 1 - - uid: 2349 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 1 - - uid: 2350 - components: - - type: Transform - pos: 3.5,-32.5 - parent: 1 - - uid: 2351 - components: - - type: Transform - pos: 3.5,-33.5 - parent: 1 - - uid: 2352 - components: - - type: Transform - pos: 3.5,-34.5 - parent: 1 - - uid: 2353 - components: - - type: Transform - pos: 3.5,-37.5 - parent: 1 - - uid: 2354 - components: - - type: Transform - pos: 3.5,-36.5 - parent: 1 - - uid: 2355 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 1 - - uid: 2356 - components: - - type: Transform - pos: 3.5,-39.5 - parent: 1 - - uid: 2357 - components: - - type: Transform - pos: 3.5,-40.5 - parent: 1 - - uid: 2358 - components: - - type: Transform - pos: 3.5,-41.5 - parent: 1 - - uid: 2369 - components: - - type: Transform - pos: 38.5,-16.5 - parent: 1 - - uid: 2370 - components: - - type: Transform - pos: 36.5,-19.5 - parent: 1 - - uid: 2371 - components: - - type: Transform - pos: 36.5,-20.5 - parent: 1 - - uid: 2374 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 1 - - uid: 2390 - components: - - type: Transform - pos: -9.5,-10.5 - parent: 1 - - uid: 2446 - components: - - type: Transform - pos: 6.5,-27.5 - parent: 1 - - uid: 2447 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 1 - - uid: 2448 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 1 - - uid: 2460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 1 - - uid: 2473 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 1 - - uid: 2474 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 1 - - uid: 2538 - components: - - type: Transform - pos: 33.5,11.5 - parent: 1 - - uid: 2539 - components: - - type: Transform - pos: 33.5,10.5 - parent: 1 - - uid: 2540 - components: - - type: Transform - pos: 33.5,9.5 - parent: 1 - - uid: 2698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-46.5 - parent: 1 - - uid: 2701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 1 - - uid: 2708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-46.5 - parent: 1 - - uid: 2711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-46.5 - parent: 1 - - uid: 2888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 1 - - uid: 2889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - - uid: 2890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,6.5 - parent: 1 - - uid: 2919 - components: - - type: Transform - pos: 38.5,-17.5 - parent: 1 - - uid: 2920 - components: - - type: Transform - pos: 35.5,-22.5 - parent: 1 - - uid: 2921 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 1 - - uid: 2922 - components: - - type: Transform - pos: 33.5,-24.5 - parent: 1 - - uid: 2923 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 1 - - uid: 2947 - components: - - type: Transform - pos: -40.5,-13.5 - parent: 1 - - uid: 2972 - components: - - type: Transform - pos: -9.5,61.5 - parent: 1 - - uid: 3090 - components: - - type: Transform - pos: 40.5,-11.5 - parent: 1 - - uid: 3101 - components: - - type: Transform - pos: 39.5,-13.5 - parent: 1 - - uid: 3106 - components: - - type: Transform - pos: 22.5,-29.5 - parent: 1 - - uid: 3107 - components: - - type: Transform - pos: 22.5,-30.5 - parent: 1 - - uid: 3108 - components: - - type: Transform - pos: 21.5,-31.5 - parent: 1 - - uid: 3109 - components: - - type: Transform - pos: 20.5,-33.5 - parent: 1 - - uid: 3110 - components: - - type: Transform - pos: 20.5,-34.5 - parent: 1 - - uid: 3111 - components: - - type: Transform - pos: 20.5,-36.5 - parent: 1 - - uid: 3112 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 1 - - uid: 3114 - components: - - type: Transform - pos: 18.5,-38.5 - parent: 1 - - uid: 3115 - components: - - type: Transform - pos: 17.5,-39.5 - parent: 1 - - uid: 3116 - components: - - type: Transform - pos: 17.5,-40.5 - parent: 1 - - uid: 3117 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 1 - - uid: 3118 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 1 - - uid: 3119 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 1 - - uid: 3120 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 1 - - uid: 3121 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 1 - - uid: 3122 - components: - - type: Transform - pos: -18.5,-40.5 - parent: 1 - - uid: 3123 - components: - - type: Transform - pos: -18.5,-39.5 - parent: 1 - - uid: 3124 - components: - - type: Transform - pos: -19.5,-38.5 - parent: 1 - - uid: 3125 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 1 - - uid: 3126 - components: - - type: Transform - pos: -21.5,-37.5 - parent: 1 - - uid: 3127 - components: - - type: Transform - pos: -21.5,-36.5 - parent: 1 - - uid: 3128 - components: - - type: Transform - pos: -21.5,-34.5 - parent: 1 - - uid: 3129 - components: - - type: Transform - pos: -21.5,-33.5 - parent: 1 - - uid: 3130 - components: - - type: Transform - pos: -22.5,-31.5 - parent: 1 - - uid: 3131 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 1 - - uid: 3132 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 1 - - uid: 3136 - components: - - type: Transform - pos: 34.5,-22.5 - parent: 1 - - uid: 3137 - components: - - type: Transform - pos: 36.5,-21.5 - parent: 1 - - uid: 3138 - components: - - type: Transform - pos: 31.5,-25.5 - parent: 1 - - uid: 3140 - components: - - type: Transform - pos: 28.5,-27.5 - parent: 1 - - uid: 3143 - components: - - type: Transform - pos: -16.5,23.5 - parent: 1 - - uid: 3154 - components: - - type: Transform - pos: -17.5,23.5 - parent: 1 - - uid: 3157 - components: - - type: Transform - pos: 24.5,-27.5 - parent: 1 - - uid: 3159 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 1 - - uid: 3194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,53.5 - parent: 1 - - uid: 3325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,51.5 - parent: 1 - - uid: 3338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,51.5 - parent: 1 - - uid: 3339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,49.5 - parent: 1 - - uid: 3347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,44.5 - parent: 1 - - uid: 3367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,49.5 - parent: 1 - - uid: 3406 - components: - - type: Transform - pos: -11.5,58.5 - parent: 1 - - uid: 3516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-41.5 - parent: 1 - - uid: 3519 - components: - - type: Transform - pos: -47.5,17.5 - parent: 1 - - uid: 3575 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 1 - - uid: 3610 - components: - - type: Transform - pos: 9.5,24.5 - parent: 1 - - uid: 3690 - components: - - type: Transform - pos: 15.5,68.5 - parent: 1 - - uid: 3695 - components: - - type: Transform - pos: 12.5,35.5 - parent: 1 - - uid: 3696 - components: - - type: Transform - pos: 11.5,35.5 - parent: 1 - - uid: 3697 - components: - - type: Transform - pos: 10.5,35.5 - parent: 1 - - uid: 3703 - components: - - type: Transform - pos: 13.5,68.5 - parent: 1 - - uid: 3734 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 1 - - uid: 3785 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 1 - - uid: 3786 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 1 - - uid: 3787 - components: - - type: Transform - pos: 19.5,-22.5 - parent: 1 - - uid: 3788 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 1 - - uid: 3789 - components: - - type: Transform - pos: 19.5,-24.5 - parent: 1 - - uid: 3790 - components: - - type: Transform - pos: 17.5,-26.5 - parent: 1 - - uid: 3791 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 1 - - uid: 3792 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 1 - - uid: 3793 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 1 - - uid: 3794 - components: - - type: Transform - pos: 21.5,-24.5 - parent: 1 - - uid: 3795 - components: - - type: Transform - pos: 17.5,-28.5 - parent: 1 - - uid: 3796 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 1 - - uid: 3809 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 1 - - uid: 3810 - components: - - type: Transform - pos: 23.5,-14.5 - parent: 1 - - uid: 3811 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 1 - - uid: 4086 - components: - - type: Transform - pos: 15.5,66.5 - parent: 1 - - uid: 4106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,35.5 - parent: 1 - - uid: 4107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,35.5 - parent: 1 - - uid: 4112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 1 - - uid: 4113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,20.5 - parent: 1 - - uid: 4123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,16.5 - parent: 1 - - uid: 4124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 1 - - uid: 4125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,16.5 - parent: 1 - - uid: 4137 - components: - - type: Transform - pos: -10.5,58.5 - parent: 1 - - uid: 4216 - components: - - type: Transform - pos: 10.5,-29.5 - parent: 1 - - uid: 4386 - components: - - type: Transform - pos: -45.5,6.5 - parent: 1 - - uid: 4489 - components: - - type: Transform - pos: -41.5,-11.5 - parent: 1 - - uid: 4491 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 1 - - uid: 4492 - components: - - type: Transform - pos: -39.5,-17.5 - parent: 1 - - uid: 4493 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 1 - - uid: 4494 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 1 - - uid: 4495 - components: - - type: Transform - pos: -37.5,-21.5 - parent: 1 - - uid: 4496 - components: - - type: Transform - pos: -36.5,-22.5 - parent: 1 - - uid: 4497 - components: - - type: Transform - pos: -35.5,-22.5 - parent: 1 - - uid: 4498 - components: - - type: Transform - pos: -34.5,-23.5 - parent: 1 - - uid: 4499 - components: - - type: Transform - pos: -34.5,-24.5 - parent: 1 - - uid: 4500 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 1 - - uid: 4501 - components: - - type: Transform - pos: -32.5,-25.5 - parent: 1 - - uid: 4502 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 1 - - uid: 4503 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 1 - - uid: 4506 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 1 - - uid: 4509 - components: - - type: Transform - pos: 45.5,35.5 - parent: 1 - - uid: 4510 - components: - - type: Transform - pos: 49.5,35.5 - parent: 1 - - uid: 4570 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 1 - - uid: 4577 - components: - - type: Transform - pos: -15.5,23.5 - parent: 1 - - uid: 4580 - components: - - type: Transform - pos: -13.5,18.5 - parent: 1 - - uid: 4581 - components: - - type: Transform - pos: -13.5,19.5 - parent: 1 - - uid: 5751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 1 - - uid: 5752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,34.5 - parent: 1 - - uid: 5829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-3.5 - parent: 1 - - uid: 6211 - components: - - type: Transform - pos: -37.5,53.5 - parent: 1 - - uid: 6401 - components: - - type: Transform - pos: 10.5,21.5 - parent: 1 - - uid: 6481 - components: - - type: Transform - pos: 46.5,-15.5 - parent: 1 - - uid: 6495 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 1 - - uid: 6518 - components: - - type: Transform - pos: 50.5,-11.5 - parent: 1 - - uid: 6523 - components: - - type: Transform - pos: 44.5,-14.5 - parent: 1 - - uid: 6524 - components: - - type: Transform - pos: 44.5,-11.5 - parent: 1 - - uid: 6556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,7.5 - parent: 1 - - uid: 6569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 1 - - uid: 6696 - components: - - type: Transform - pos: 1.5,33.5 - parent: 1 - - uid: 6697 - components: - - type: Transform - pos: 14.5,68.5 - parent: 1 - - uid: 7102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-16.5 - parent: 1 - - uid: 7180 - components: - - type: Transform - pos: -48.5,34.5 - parent: 1 - - uid: 7181 - components: - - type: Transform - pos: -47.5,34.5 - parent: 1 - - uid: 7246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-18.5 - parent: 1 - - uid: 7247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 1 - - uid: 7249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 1 - - uid: 7265 - components: - - type: Transform - pos: -31.5,57.5 - parent: 1 - - uid: 7425 - components: - - type: Transform - pos: -26.5,-28.5 - parent: 1 - - uid: 7426 - components: - - type: Transform - pos: 27.5,-28.5 - parent: 1 - - uid: 7429 - components: - - type: Transform - pos: 25.5,-28.5 - parent: 1 - - uid: 7632 - components: - - type: Transform - pos: -28.5,-28.5 - parent: 1 - - uid: 7773 - components: - - type: Transform - pos: -46.5,0.5 - parent: 1 - - uid: 7824 - components: - - type: Transform - pos: -42.5,29.5 - parent: 1 - - uid: 7870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 1 - - uid: 7926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 1 - - uid: 7927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,29.5 - parent: 1 - - uid: 7928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,29.5 - parent: 1 - - uid: 7929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,26.5 - parent: 1 - - uid: 7930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,25.5 - parent: 1 - - uid: 8145 - components: - - type: Transform - pos: -45.5,0.5 - parent: 1 - - uid: 8519 - components: - - type: Transform - pos: 1.5,27.5 - parent: 1 - - uid: 8533 - components: - - type: Transform - pos: 1.5,30.5 - parent: 1 - - uid: 8626 - components: - - type: Transform - pos: 4.5,4.5 - parent: 1 - - uid: 8913 - components: - - type: Transform - pos: 4.5,0.5 - parent: 1 - - uid: 8914 - components: - - type: Transform - pos: 4.5,1.5 - parent: 1 - - uid: 8921 - components: - - type: Transform - pos: 4.5,7.5 - parent: 1 - - uid: 8922 - components: - - type: Transform - pos: 4.5,6.5 - parent: 1 - - uid: 14086 - components: - - type: Transform - pos: -48.5,17.5 - parent: 1 - - uid: 14087 - components: - - type: Transform - pos: -50.5,17.5 - parent: 1 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 3557 - components: - - type: Transform - pos: -25.5,23.5 - parent: 1 -- proto: RevolverCapGun - entities: - - uid: 3188 - components: - - type: Transform - pos: 46.541428,46.92756 - parent: 1 - - uid: 4365 - components: - - type: Transform - pos: -16.450819,5.681794 - parent: 1 -- proto: RiotShield - entities: - - uid: 7800 - components: - - type: Transform - pos: -18.644022,40.739033 - parent: 1 - - uid: 7801 - components: - - type: Transform - pos: -18.456522,40.489033 - parent: 1 -- proto: RitualDagger - entities: - - uid: 13305 - components: - - type: Transform - pos: -13.567444,6.478457 - parent: 1 -- proto: RobustHarvestChemistryBottle - entities: - - uid: 9008 - components: - - type: Transform - pos: 5.4284496,7.030745 - parent: 1 - - uid: 9009 - components: - - type: Transform - pos: 5.5534496,7.0515785 - parent: 1 -- proto: RollerBed - entities: - - uid: 16376 - components: - - type: Transform - pos: -15.5,56.5 - parent: 1 -- proto: RubberStampApproved - entities: - - uid: 8083 - components: - - type: Transform - pos: 2.6653385,83.53684 - parent: 1 - - uid: 9214 - components: - - type: Transform - pos: 25.569645,4.690318 - parent: 1 - - uid: 9338 - components: - - type: Transform - pos: -43.345627,8.726026 - parent: 1 -- proto: RubberStampDenied - entities: - - uid: 8084 - components: - - type: Transform - pos: 2.4097614,83.2814 - parent: 1 - - uid: 9209 - components: - - type: Transform - pos: 5.143981,72.62612 - parent: 1 - - uid: 9215 - components: - - type: Transform - pos: 25.298811,4.5236516 - parent: 1 - - uid: 9339 - components: - - type: Transform - pos: -43.470627,8.455193 - parent: 1 -- proto: SalvageMagnet - entities: - - uid: 1782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,20.5 - parent: 1 -- proto: Saw - entities: - - uid: 1306 - components: - - type: Transform - pos: -21.578913,34.777924 - parent: 1 -- proto: Scalpel - entities: - - uid: 2617 - components: - - type: Transform - pos: -21.516413,34.371674 - parent: 1 -- proto: ScalpelShiv - entities: - - uid: 8264 - components: - - type: Transform - pos: -37.431377,49.512848 - parent: 1 -- proto: Screwdriver - entities: - - uid: 7461 - components: - - type: Transform - pos: 22.634111,-23.425726 - parent: 1 - - uid: 8669 - components: - - type: Transform - pos: -6.6287556,21.412113 - parent: 1 - - uid: 14048 - components: - - type: Transform - pos: 38.58371,54.56172 - parent: 1 -- proto: SecurityTechFab - entities: - - uid: 6704 - components: - - type: Transform - pos: -10.5,60.5 - parent: 1 -- proto: SeedExtractor - entities: - - uid: 4330 - components: - - type: Transform - pos: -31.5,49.5 - parent: 1 - - uid: 9045 - components: - - type: Transform - pos: 11.5,8.5 - parent: 1 - - uid: 10955 - components: - - type: Transform - pos: 38.5,-13.5 - parent: 1 -- proto: SheetGlass - entities: - - uid: 6594 - components: - - type: Transform - pos: -6.753741,24.452673 - parent: 1 - - uid: 8724 - components: - - type: Transform - pos: -13.523513,-34.354816 - parent: 1 - - uid: 9121 - components: - - type: Transform - pos: 13.53321,-20.862442 - parent: 1 - - uid: 9230 - components: - - type: Transform - pos: -25.433441,-12.420451 - parent: 1 -- proto: SheetPGlass - entities: - - uid: 9122 - components: - - type: Transform - pos: 13.554044,-21.237442 - parent: 1 -- proto: SheetPlasma - entities: - - uid: 2631 - components: - - type: Transform - pos: -18.53241,20.599617 - parent: 1 -- proto: SheetPlasma1 - entities: - - uid: 10941 - components: - - type: Transform - pos: 35.01931,-21.424337 - parent: 1 -- proto: SheetPlasteel - entities: - - uid: 9227 - components: - - type: Transform - pos: 13.566712,-21.504738 - parent: 1 - - uid: 9228 - components: - - type: Transform - pos: -25.454273,-11.628785 - parent: 1 -- proto: SheetPlastic - entities: - - uid: 4076 - components: - - type: Transform - pos: 9.361496,26.53074 - parent: 1 - - uid: 6593 - components: - - type: Transform - pos: -7.1513085,24.509438 - parent: 1 - - uid: 8237 - components: - - type: Transform - pos: -11.436809,60.818928 - parent: 1 - - uid: 9305 - components: - - type: Transform - pos: -34.293766,2.546868 - parent: 1 -- proto: SheetSteel - entities: - - uid: 1314 - components: - - type: Transform - pos: -11.620411,60.766808 - parent: 1 - - uid: 2655 - components: - - type: Transform - pos: -13.476898,-33.87969 - parent: 1 - - uid: 2656 - components: - - type: Transform - pos: -13.476898,-33.87969 - parent: 1 - - uid: 6592 - components: - - type: Transform - pos: -7.463681,24.509438 - parent: 1 - - uid: 8520 - components: - - type: Transform - pos: 9.602876,26.559124 - parent: 1 - - uid: 9120 - components: - - type: Transform - pos: 13.53321,-20.508276 - parent: 1 - - uid: 9188 - components: - - type: Transform - pos: 8.490331,-11.469109 - parent: 1 - - uid: 9229 - components: - - type: Transform - pos: -25.454273,-12.045451 - parent: 1 - - uid: 9304 - components: - - type: Transform - pos: -34.606266,2.567701 - parent: 1 -- proto: Shovel - entities: - - uid: 11082 - components: - - type: Transform - pos: 13.542923,5.535556 - parent: 1 -- proto: ShuttersNormal - entities: - - uid: 1065 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,35.5 - parent: 1 - - type: DeviceLinkSink - links: - - 6627 - - uid: 1066 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,35.5 - parent: 1 - - type: DeviceLinkSink - links: - - 6627 - - uid: 1106 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,35.5 - parent: 1 - - type: DeviceLinkSink - links: - - 6627 -- proto: ShuttersNormalOpen - entities: - - uid: 550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,24.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8530 - - uid: 4061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,22.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8530 - - uid: 4078 - components: - - type: Transform - pos: 2.5,20.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8530 - - uid: 6685 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 2812 - - uid: 6686 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 2812 - - uid: 6703 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 2812 - - uid: 6808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,24.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8530 - - uid: 7138 - components: - - type: Transform - pos: -5.5,8.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9001 - - uid: 7139 - components: - - type: Transform - pos: -5.5,7.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9001 - - uid: 7140 - components: - - type: Transform - pos: -5.5,6.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9001 - - uid: 7141 - components: - - type: Transform - pos: -6.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9001 - - uid: 7142 - components: - - type: Transform - pos: -7.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9001 - - uid: 7143 - components: - - type: Transform - pos: -8.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9001 - - uid: 8167 - components: - - type: Transform - pos: 10.5,12.5 - parent: 1 - - type: DeviceLinkSink - links: - - 622 - - uid: 8340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,23.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8530 - - uid: 8622 - components: - - type: Transform - pos: -22.5,22.5 - parent: 1 - - uid: 8623 - components: - - type: Transform - pos: -22.5,20.5 - parent: 1 - - uid: 8624 - components: - - type: Transform - pos: -22.5,19.5 - parent: 1 - - uid: 9278 - components: - - type: Transform - pos: 26.5,3.5 - parent: 1 - - type: DeviceLinkSink - links: - - 17647 - - uid: 9279 - components: - - type: Transform - pos: 26.5,4.5 - parent: 1 - - type: DeviceLinkSink - links: - - 17647 - - uid: 9280 - components: - - type: Transform - pos: 26.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 17647 - - uid: 9281 - components: - - type: Transform - pos: 26.5,6.5 - parent: 1 - - type: DeviceLinkSink - links: - - 17647 - - uid: 9343 - components: - - type: Transform - pos: -44.5,9.5 - parent: 1 - - uid: 9344 - components: - - type: Transform - pos: -44.5,8.5 - parent: 1 - - uid: 9345 - components: - - type: Transform - pos: -44.5,7.5 - parent: 1 - - uid: 9346 - components: - - type: Transform - pos: -43.5,6.5 - parent: 1 - - uid: 9347 - components: - - type: Transform - pos: -42.5,6.5 - parent: 1 - - uid: 17631 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9170 - - uid: 17632 - components: - - type: Transform - pos: 6.5,-27.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9170 - - uid: 17633 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 1 - - type: DeviceLinkSink - links: - - 9170 -- proto: ShuttersWindowOpen - entities: - - uid: 8253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,20.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8532 - - 8530 - - uid: 8477 - components: - - type: Transform - pos: 9.5,23.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8530 - - uid: 8531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,22.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8530 - - uid: 8532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 1 - - type: DeviceLinkSink - links: - - 8530 -- proto: ShuttleWindow - entities: - - uid: 8761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 8756 - - uid: 8762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 8756 - - uid: 8763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 8756 - - uid: 8764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 8756 - - uid: 8775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 8756 - - uid: 8776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,1.5 - parent: 8756 - - uid: 8788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 8756 - - uid: 8789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 8756 - - uid: 8790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 8756 - - uid: 8791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 8756 - - uid: 8792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 8756 - - uid: 8795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 8756 - - uid: 8796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 8756 - - uid: 8801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 8756 - - uid: 8805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 8756 - - uid: 8807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 8756 - - uid: 8812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 8756 - - uid: 8814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 8756 -- proto: SignalButton - entities: - - uid: 2128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,0.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2130: - - Pressed: Toggle - - uid: 2291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,3.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2129: - - Pressed: Toggle - 2607: - - Pressed: Toggle - - uid: 2612 - components: - - type: Transform - pos: -46.5,6.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2610: - - Pressed: Toggle - - uid: 6627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,31.5 - parent: 1 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 1066: - - Pressed: Toggle - 1106: - - Pressed: Toggle - 1065: - - Pressed: Toggle - - uid: 7826 - components: - - type: Transform - pos: -43.5,23.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 4135: - - Pressed: Toggle - 7923: - - Pressed: Toggle - - uid: 8572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,31.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1048: - - Pressed: Toggle - - uid: 8625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,21.5 - parent: 1 - - uid: 8738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 1 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2813: - - Pressed: Toggle - 2814: - - Pressed: Toggle - 2821: - - Pressed: Toggle - 2822: - - Pressed: Toggle - - uid: 8749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3050: - - Pressed: Toggle - - uid: 8750 - components: - - type: Transform - pos: -2.5,-48.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3052: - - Pressed: Toggle - 3051: - - Pressed: Toggle - 3053: - - Pressed: Toggle - - uid: 9001 - components: - - type: Transform - pos: -9.5,9.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 7143: - - Pressed: Toggle - 7142: - - Pressed: Toggle - 7141: - - Pressed: Toggle - 7140: - - Pressed: Toggle - 7139: - - Pressed: Toggle - 7138: - - Pressed: Toggle - - uid: 9170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-24.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 17632: - - Pressed: Toggle - 17633: - - Pressed: Toggle - 17631: - - Pressed: Toggle - - uid: 9348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - - uid: 9404 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 9406: - - Pressed: Toggle - - uid: 17647 - components: - - type: Transform - pos: 25.5,7.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 9281: - - Pressed: Toggle - 9280: - - Pressed: Toggle - 9279: - - Pressed: Toggle - 9278: - - Pressed: Toggle - - uid: 17648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 1 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 4205: - - Pressed: Toggle - - uid: 17649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-38.5 - parent: 1 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 3066: - - Pressed: Toggle -- proto: SignalButtonBridge - entities: - - uid: 4305 - components: - - type: Transform - pos: -0.5,79.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 4302: - - Pressed: Toggle - 4303: - - Pressed: Toggle - 4304: - - Pressed: Toggle -- proto: SignalButtonDirectional - entities: - - uid: 622 - components: - - type: Transform - pos: 11.5,12.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 8167: - - Pressed: Toggle - - uid: 2812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-5.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 6686: - - Pressed: Toggle - 6685: - - Pressed: Toggle - 6703: - - Pressed: Toggle - - uid: 8530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,21.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 4061: - - Pressed: Toggle - 8340: - - Pressed: Toggle - 6808: - - Pressed: Toggle - 4078: - - Pressed: Toggle - 550: - - Pressed: Toggle - 8532: - - Pressed: Toggle - 8253: - - Pressed: Toggle - 8531: - - Pressed: Toggle - 8477: - - Pressed: Toggle -- proto: SignalButtonExt3 - entities: - - uid: 9658 - components: - - type: MetaData - desc: Press in case of grey tide. - name: emergency security lockdown - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,47.5 - parent: 1 -- proto: SignalButtonWindows - entities: - - uid: 17612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,73.5 - parent: 1 -- proto: SignAnomaly - entities: - - uid: 17888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,26.5 - parent: 1 -- proto: SignAnomaly2 - entities: - - uid: 4579 - components: - - type: Transform - pos: -19.5,20.5 - parent: 1 -- proto: SignArmory - entities: - - uid: 17849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,58.5 - parent: 1 -- proto: SignAtmos - entities: - - uid: 17850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-10.5 - parent: 1 -- proto: SignAtmosMinsky - entities: - - uid: 17851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-16.5 - parent: 1 -- proto: SignBar - entities: - - uid: 17852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,12.5 - parent: 1 - - uid: 17853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-6.5 - parent: 1 -- proto: SignBridge - entities: - - uid: 17895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,69.5 - parent: 1 - - uid: 17896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,75.5 - parent: 1 -- proto: SignCargo - entities: - - uid: 4156 - components: - - type: Transform - pos: -33.5,3.5 - parent: 1 - - uid: 17805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,8.5 - parent: 1 -- proto: SignCargoDock - entities: - - uid: 9309 - components: - - type: Transform - pos: -47.5,3.5 - parent: 1 - - uid: 18055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-6.5 - parent: 1 - - uid: 18056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-12.5 - parent: 1 -- proto: SignChapel - entities: - - uid: 14050 - components: - - type: Transform - pos: 32.5,50.5 - parent: 1 - - uid: 14051 - components: - - type: Transform - pos: 31.5,53.5 - parent: 1 - - uid: 14053 - components: - - type: Transform - pos: 28.5,39.5 - parent: 1 -- proto: SignChem - entities: - - uid: 17854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,26.5 - parent: 1 -- proto: SignCloning - entities: - - uid: 17855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,29.5 - parent: 1 -- proto: SignConference - entities: - - uid: 17894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,69.5 - parent: 1 -- proto: SignDirectionalBridge - entities: - - uid: 17785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,40 - parent: 1 - - uid: 17791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,16.5 - parent: 1 - - uid: 17804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.499792,17.748297 - parent: 1 - - uid: 17818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.4996006,-10.254558 - parent: 1 - - uid: 17826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.501215,-6.252189 - parent: 1 - - uid: 17836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.510975,16.766766 - parent: 1 -- proto: SignDirectionalBrig - entities: - - uid: 8228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,46.5 - parent: 1 - - uid: 8229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,46.5 - parent: 1 -- proto: SignDirectionalChapel - entities: - - uid: 14052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,39.5 - parent: 1 -- proto: SignDirectionalDorms - entities: - - uid: 17843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,39.5 - parent: 1 -- proto: SignDirectionalEng - entities: - - uid: 17779 - components: - - type: Transform - pos: 1.5,64.5 - parent: 1 - - uid: 17793 - components: - - type: Transform - pos: 1.5032121,16.251781 - parent: 1 - - uid: 17796 - components: - - type: Transform - pos: 1.5012997,40.742867 - parent: 1 - - uid: 17797 - components: - - type: Transform - pos: -29.5,17.5 - parent: 1 - - uid: 17812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.496174,-6.737631 - parent: 1 - - uid: 17819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 1 - - uid: 17832 - components: - - type: Transform - pos: 33.501507,12.256447 - parent: 1 - - uid: 17841 - components: - - type: Transform - pos: 33.496597,35.248928 - parent: 1 -- proto: SignDirectionalEvac - entities: - - uid: 17777 - components: - - type: Transform - pos: 1.5,65.5 - parent: 1 - - uid: 17784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,39.5 - parent: 1 - - uid: 17792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.4961122,16.741375 - parent: 1 - - uid: 17798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,17 - parent: 1 - - uid: 17808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-10.5 - parent: 1 - - uid: 17809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-6.5 - parent: 1 - - uid: 17817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.4996006,-10.751246 - parent: 1 - - uid: 17823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.50534,-6.2478724 - parent: 1 - - uid: 17834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 1 - - uid: 17835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.510975,16.238834 - parent: 1 - - uid: 17838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.50556,35.762794 - parent: 1 -- proto: SignDirectionalFood - entities: - - uid: 17783 - components: - - type: Transform - pos: 1.5024469,64.25979 - parent: 1 - - uid: 17827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.499456,-6.7559733 - parent: 1 - - uid: 17833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.501507,12.767326 - parent: 1 -- proto: SignDirectionalGravity - entities: - - uid: 17806 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 1 -- proto: SignDirectionalHop - entities: - - uid: 17789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.4986358,39.25191 - parent: 1 - - uid: 17795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5008452,16.251781 - parent: 1 - - uid: 17813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 1 - - uid: 17821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.501915,-6.2549677 - parent: 1 - - uid: 17837 - components: - - type: Transform - pos: 33.5,35.5 - parent: 1 -- proto: SignDirectionalJanitor - entities: - - uid: 17807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 1 -- proto: SignDirectionalMed - entities: - - uid: 17781 - components: - - type: Transform - pos: 1.5024469,64.74938 - parent: 1 - - uid: 17787 - components: - - type: Transform - pos: 1.4998497,40.250824 - parent: 1 - - uid: 17799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,16.5 - parent: 1 - - uid: 17815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5044566,-10.254558 - parent: 1 - - uid: 17824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.50534,-6.7516565 - parent: 1 - - uid: 17828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,12.5 - parent: 1 - - uid: 17842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.502005,35.256023 - parent: 1 -- proto: SignDirectionalSalvage - entities: - - uid: 17802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,16.5 - parent: 1 -- proto: SignDirectionalSci - entities: - - uid: 17782 - components: - - type: Transform - pos: 1.5024469,65.749855 - parent: 1 - - uid: 17786 - components: - - type: Transform - pos: 1.5,40.5 - parent: 1 - - uid: 17801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.49926,16.75212 - parent: 1 - - uid: 17816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5044566,-10.751246 - parent: 1 - - uid: 17825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 1 - - uid: 17830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.504549,12.249351 - parent: 1 -- proto: SignDirectionalSec - entities: - - uid: 17780 - components: - - type: Transform - pos: 1.5024469,65.24607 - parent: 1 - - uid: 17790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,16.5 - parent: 1 - - uid: 17800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.49926,17.251825 - parent: 1 - - uid: 17811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.496174,-6.248038 - parent: 1 - - uid: 17814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-10.5 - parent: 1 - - uid: 17822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1 - - uid: 17829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.504549,12.753135 - parent: 1 - - uid: 17839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,35.5 - parent: 1 -- proto: SignDirectionalSolar - entities: - - uid: 17845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,41.5 - parent: 1 - - uid: 17846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,51.5 - parent: 1 - - uid: 17847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,51.5 - parent: 1 - - uid: 17848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,44.5 - parent: 1 -- proto: SignDirectionalSupply - entities: - - uid: 17778 - components: - - type: Transform - pos: 1.5,65 - parent: 1 - - uid: 17788 - components: - - type: Transform - pos: 1.4998497,39.754135 - parent: 1 - - uid: 17794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5079443,16.755566 - parent: 1 - - uid: 17803 - components: - - type: Transform - pos: -29.492693,16.258232 - parent: 1 - - uid: 17810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-6 - parent: 1 - - uid: 17820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.501915,-6.7516565 - parent: 1 - - uid: 17831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,12.5 - parent: 1 - - uid: 17840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.50573,35.759808 - parent: 1 -- proto: SignDirectionalWash - entities: - - uid: 17844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 1 -- proto: SignDisposalSpace - entities: - - uid: 3993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-33.5 - parent: 1 - - uid: 9605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-38.5 - parent: 1 -- proto: SignDrones - entities: - - uid: 9562 - components: - - type: Transform - pos: -19.5,-13.5 - parent: 1 -- proto: SignEngine - entities: - - uid: 17864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-35.5 - parent: 1 -- proto: SignEngineering - entities: - - uid: 17863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-10.5 - parent: 1 -- proto: SignEscapePods - entities: - - uid: 6545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-27.5 - parent: 1 - - uid: 7428 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 1 -- proto: SignEVA - entities: - - uid: 6935 - components: - - type: Transform - pos: 23.5,35.5 - parent: 1 - - uid: 6936 - components: - - type: Transform - pos: 28.5,30.5 - parent: 1 -- proto: SignExamroom - entities: - - uid: 8426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,29.5 - parent: 1 -- proto: SignFire - entities: - - uid: 17865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-48.5 - parent: 1 - - uid: 17869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-38.5 - parent: 1 - - uid: 17870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-36.5 - parent: 1 -- proto: SignFlammableMed - entities: - - uid: 17866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-46.5 - parent: 1 - - uid: 17867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-46.5 - parent: 1 - - uid: 17868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-38.5 - parent: 1 - - uid: 17871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-36.5 - parent: 1 -- proto: SignGravity - entities: - - uid: 9564 - components: - - type: Transform - pos: -19.5,-17.5 - parent: 1 -- proto: SignHead - entities: - - uid: 17357 - components: - - type: Transform - pos: -12.5,58.5 - parent: 1 - - uid: 17893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,75.5 - parent: 1 - - uid: 17966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 1 - - uid: 18112 - components: - - type: Transform - pos: 13.5,33.5 - parent: 1 - - uid: 18113 - components: - - type: Transform - pos: -22.5,24.5 - parent: 1 - - uid: 18114 - components: - - type: Transform - pos: 8.5,-25.5 - parent: 1 -- proto: SignHydro1 - entities: - - uid: 17872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 1 -- proto: SignKiddiePlaque - entities: - - uid: 17892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,44.5 - parent: 1 -- proto: SignLibrary - entities: - - uid: 17873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,9.5 - parent: 1 - - uid: 17874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,12.5 - parent: 1 -- proto: SignMail - entities: - - uid: 17875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,12.5 - parent: 1 -- proto: SignMedical - entities: - - uid: 6928 - components: - - type: Transform - pos: 13.5,20.5 - parent: 1 -- proto: SignMinerDock - entities: - - uid: 7925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,29.5 - parent: 1 -- proto: SignMorgue - entities: - - uid: 17877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,30.5 - parent: 1 -- proto: SignPrison - entities: - - uid: 8225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,49.5 - parent: 1 - - uid: 8226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,49.5 - parent: 1 - - uid: 8227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,41.5 - parent: 1 -- proto: SignRedFour - entities: - - uid: 7703 - components: - - type: Transform - pos: -5.5,42.5 - parent: 1 -- proto: SignRedOne - entities: - - uid: 7699 - components: - - type: Transform - pos: -14.5,42.5 - parent: 1 -- proto: SignRedThree - entities: - - uid: 7702 - components: - - type: Transform - pos: -8.5,42.5 - parent: 1 -- proto: SignRedTwo - entities: - - uid: 7700 - components: - - type: Transform - pos: -11.5,42.5 - parent: 1 -- proto: SignRND - entities: - - uid: 17878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,20.5 - parent: 1 -- proto: SignRobo - entities: - - uid: 17880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,35.5 - parent: 1 - - uid: 17881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,29.5 - parent: 1 -- proto: SignScience - entities: - - uid: 17879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,19.5 - parent: 1 -- proto: SignScience1 - entities: - - uid: 17882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,25.5 - parent: 1 -- proto: SignScience2 - entities: - - uid: 17883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,21.5 - parent: 1 -- proto: SignSecureSmall - entities: - - uid: 17890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-10.5 - parent: 1 -- proto: SignSecureSmallRed - entities: - - uid: 17884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,48.5 - parent: 1 - - uid: 17885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,45.5 - parent: 1 - - uid: 18118 - components: - - type: Transform - pos: 14.5,-22.5 - parent: 1 -- proto: SignShield - entities: - - uid: 17886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,49.5 - parent: 1 - - uid: 18123 - components: - - type: Transform - pos: -15.5,51.5 - parent: 1 -- proto: SignShipDock - entities: - - uid: 17745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,2.5 - parent: 1 - - uid: 17856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,33.5 - parent: 1 - - uid: 17857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,37.5 - parent: 1 - - uid: 17858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,18.5 - parent: 1 - - uid: 17859 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,14.5 - parent: 1 - - uid: 18052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,37.5 - parent: 1 - - uid: 18054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,14.5 - parent: 1 -- proto: SignSmoking - entities: - - uid: 17757 - components: - - type: Transform - pos: 14.5,-29.5 - parent: 1 - - uid: 17758 - components: - - type: Transform - pos: -14.5,-32.5 - parent: 1 -- proto: SignSpace - entities: - - uid: 2062 - components: - - type: Transform - pos: 50.5,-6.5 - parent: 1 - - uid: 3700 - components: - - type: Transform - pos: 13.5,66.5 - parent: 1 - - uid: 6479 - components: - - type: Transform - pos: 50.5,-13.5 - parent: 1 - - uid: 18045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,0.5 - parent: 1 - - uid: 18046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,14.5 - parent: 1 - - uid: 18047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,16.5 - parent: 1 - - uid: 18048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,37.5 - parent: 1 - - uid: 18049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,56.5 - parent: 1 - - uid: 18050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,56.5 - parent: 1 - - uid: 18051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,39.5 - parent: 1 - - uid: 18053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,16.5 - parent: 1 - - uid: 18057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-10.5 - parent: 1 - - uid: 18058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-42.5 - parent: 1 - - uid: 18059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-38.5 - parent: 1 - - uid: 18060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-42.5 - parent: 1 - - uid: 18061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-38.5 - parent: 1 -- proto: SignSurgery - entities: - - uid: 8678 - components: - - type: Transform - pos: 13.5,26.5 - parent: 1 -- proto: SignTelecomms - entities: - - uid: 17889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-10.5 - parent: 1 -- proto: SignToolStorage - entities: - - uid: 17887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,32.5 - parent: 1 -- proto: Sink - entities: - - uid: 907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 1 - - uid: 4212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,25.5 - parent: 1 -- proto: SinkStemlessWater - entities: - - uid: 8602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,31.5 - parent: 1 - - uid: 8933 - components: - - type: Transform - pos: -7.5,8.5 - parent: 1 - - uid: 8999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 1 - - uid: 10099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-39.5 - parent: 1 - - uid: 10104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-39.5 - parent: 1 -- proto: SinkWide - entities: - - uid: 6684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 1 -- proto: SmartFridge - entities: - - uid: 9047 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 6.5,3.5 - parent: 1 -- proto: SMESBasic - entities: - - uid: 3459 - components: - - type: MetaData - name: Comms SMES - - type: Transform - pos: 15.5,-11.5 - parent: 1 - - uid: 3831 - components: - - type: MetaData - name: Engi SMES 4 - - type: Transform - pos: 8.5,-29.5 - parent: 1 - - uid: 3832 - components: - - type: MetaData - name: Engi SMES 2 - - type: Transform - pos: 6.5,-29.5 - parent: 1 - - uid: 6507 - components: - - type: MetaData - name: Engi SMES 1 - - type: Transform - pos: 5.5,-29.5 - parent: 1 - - uid: 6575 - components: - - type: MetaData - name: Engi SMES 3 - - type: Transform - pos: 7.5,-29.5 - parent: 1 - - uid: 8011 - components: - - type: MetaData - name: North West Solars SMES - - type: Transform - pos: -39.5,55.5 - parent: 1 - - uid: 14044 - components: - - type: MetaData - name: North East Solars SMES - - type: Transform - pos: 36.5,55.5 - parent: 1 -- proto: SmokingPipe - entities: - - uid: 6850 - components: - - type: Transform - pos: 43.573822,50.730164 - parent: 1 - - uid: 8107 - components: - - type: Transform - pos: 6.465735,72.71857 - parent: 1 - - uid: 8279 - components: - - type: Transform - pos: -29.362019,44.061478 - parent: 1 -- proto: SmokingPipeFilledCannabis - entities: - - uid: 8994 - components: - - type: Transform - pos: -4.659399,11.620097 - parent: 1 -- proto: Soap - entities: - - uid: 9254 - components: - - type: Transform - pos: 16.665726,-4.834745 - parent: 1 -- proto: SoapOmega - entities: - - uid: 17614 - components: - - type: Transform - pos: 7.506346,46.726536 - parent: 1 -- proto: soda_dispenser - entities: - - uid: 4044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 1 -- proto: SolarPanel - entities: - - uid: 3515 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 1 - - uid: 3835 - components: - - type: Transform - pos: -6.5,-70.5 - parent: 1 - - uid: 3836 - components: - - type: Transform - pos: -6.5,-69.5 - parent: 1 - - uid: 3837 - components: - - type: Transform - pos: -6.5,-68.5 - parent: 1 - - uid: 3838 - components: - - type: Transform - pos: -6.5,-67.5 - parent: 1 - - uid: 3839 - components: - - type: Transform - pos: -6.5,-66.5 - parent: 1 - - uid: 3840 - components: - - type: Transform - pos: -6.5,-65.5 - parent: 1 - - uid: 3841 - components: - - type: Transform - pos: -6.5,-64.5 - parent: 1 - - uid: 3842 - components: - - type: Transform - pos: -8.5,-70.5 - parent: 1 - - uid: 3843 - components: - - type: Transform - pos: -8.5,-69.5 - parent: 1 - - uid: 3844 - components: - - type: Transform - pos: -8.5,-68.5 - parent: 1 - - uid: 3845 - components: - - type: Transform - pos: -8.5,-67.5 - parent: 1 - - uid: 3846 - components: - - type: Transform - pos: -8.5,-66.5 - parent: 1 - - uid: 3847 - components: - - type: Transform - pos: -8.5,-65.5 - parent: 1 - - uid: 3848 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 1 - - uid: 3849 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 1 - - uid: 3850 - components: - - type: Transform - pos: -8.5,-61.5 - parent: 1 - - uid: 3851 - components: - - type: Transform - pos: -8.5,-60.5 - parent: 1 - - uid: 3852 - components: - - type: Transform - pos: -9.5,-59.5 - parent: 1 - - uid: 3853 - components: - - type: Transform - pos: -9.5,-58.5 - parent: 1 - - uid: 3854 - components: - - type: Transform - pos: -9.5,-57.5 - parent: 1 - - uid: 3855 - components: - - type: Transform - pos: -10.5,-56.5 - parent: 1 - - uid: 3856 - components: - - type: Transform - pos: -10.5,-55.5 - parent: 1 - - uid: 3857 - components: - - type: Transform - pos: -10.5,-54.5 - parent: 1 - - uid: 3858 - components: - - type: Transform - pos: -10.5,-53.5 - parent: 1 - - uid: 3859 - components: - - type: Transform - pos: -5.5,-62.5 - parent: 1 - - uid: 3860 - components: - - type: Transform - pos: -5.5,-61.5 - parent: 1 - - uid: 3861 - components: - - type: Transform - pos: -5.5,-60.5 - parent: 1 - - uid: 3862 - components: - - type: Transform - pos: -4.5,-59.5 - parent: 1 - - uid: 3863 - components: - - type: Transform - pos: -4.5,-58.5 - parent: 1 - - uid: 3864 - components: - - type: Transform - pos: -4.5,-57.5 - parent: 1 - - uid: 3865 - components: - - type: Transform - pos: -4.5,-56.5 - parent: 1 - - uid: 3866 - components: - - type: Transform - pos: -4.5,-55.5 - parent: 1 - - uid: 3867 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 1 - - uid: 3868 - components: - - type: Transform - pos: -4.5,-53.5 - parent: 1 - - uid: 3869 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 1 - - uid: 3870 - components: - - type: Transform - pos: 3.5,-57.5 - parent: 1 - - uid: 3871 - components: - - type: Transform - pos: 3.5,-56.5 - parent: 1 - - uid: 3872 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 1 - - uid: 3873 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 1 - - uid: 3874 - components: - - type: Transform - pos: 3.5,-53.5 - parent: 1 - - uid: 3875 - components: - - type: Transform - pos: 4.5,-60.5 - parent: 1 - - uid: 3876 - components: - - type: Transform - pos: 4.5,-61.5 - parent: 1 - - uid: 3877 - components: - - type: Transform - pos: 4.5,-62.5 - parent: 1 - - uid: 3878 - components: - - type: Transform - pos: 5.5,-64.5 - parent: 1 - - uid: 3879 - components: - - type: Transform - pos: 5.5,-65.5 - parent: 1 - - uid: 3880 - components: - - type: Transform - pos: 5.5,-66.5 - parent: 1 - - uid: 3881 - components: - - type: Transform - pos: 5.5,-67.5 - parent: 1 - - uid: 3882 - components: - - type: Transform - pos: 5.5,-68.5 - parent: 1 - - uid: 3883 - components: - - type: Transform - pos: 5.5,-69.5 - parent: 1 - - uid: 3884 - components: - - type: Transform - pos: 5.5,-70.5 - parent: 1 - - uid: 3885 - components: - - type: Transform - pos: 7.5,-64.5 - parent: 1 - - uid: 3886 - components: - - type: Transform - pos: 7.5,-65.5 - parent: 1 - - uid: 3887 - components: - - type: Transform - pos: 7.5,-66.5 - parent: 1 - - uid: 3888 - components: - - type: Transform - pos: 7.5,-67.5 - parent: 1 - - uid: 3889 - components: - - type: Transform - pos: 7.5,-68.5 - parent: 1 - - uid: 3890 - components: - - type: Transform - pos: 7.5,-69.5 - parent: 1 - - uid: 3891 - components: - - type: Transform - pos: 7.5,-70.5 - parent: 1 - - uid: 3892 - components: - - type: Transform - pos: 7.5,-62.5 - parent: 1 - - uid: 3893 - components: - - type: Transform - pos: 7.5,-61.5 - parent: 1 - - uid: 3894 - components: - - type: Transform - pos: 7.5,-60.5 - parent: 1 - - uid: 3895 - components: - - type: Transform - pos: 8.5,-59.5 - parent: 1 - - uid: 3896 - components: - - type: Transform - pos: 8.5,-58.5 - parent: 1 - - uid: 3897 - components: - - type: Transform - pos: 8.5,-57.5 - parent: 1 - - uid: 3898 - components: - - type: Transform - pos: 9.5,-56.5 - parent: 1 - - uid: 3899 - components: - - type: Transform - pos: 9.5,-55.5 - parent: 1 - - uid: 3900 - components: - - type: Transform - pos: 9.5,-54.5 - parent: 1 - - uid: 3901 - components: - - type: Transform - pos: 9.5,-53.5 - parent: 1 - - uid: 3902 - components: - - type: Transform - pos: -15.5,-47.5 - parent: 1 - - uid: 3903 - components: - - type: Transform - pos: -15.5,-46.5 - parent: 1 - - uid: 3904 - components: - - type: Transform - pos: -15.5,-45.5 - parent: 1 - - uid: 3905 - components: - - type: Transform - pos: -15.5,-44.5 - parent: 1 - - uid: 3906 - components: - - type: Transform - pos: -15.5,-43.5 - parent: 1 - - uid: 3907 - components: - - type: Transform - pos: -12.5,-49.5 - parent: 1 - - uid: 3908 - components: - - type: Transform - pos: -12.5,-50.5 - parent: 1 - - uid: 3909 - components: - - type: Transform - pos: -11.5,-50.5 - parent: 1 - - uid: 3910 - components: - - type: Transform - pos: -11.5,-51.5 - parent: 1 - - uid: 3911 - components: - - type: Transform - pos: 10.5,-51.5 - parent: 1 - - uid: 3912 - components: - - type: Transform - pos: 10.5,-50.5 - parent: 1 - - uid: 3913 - components: - - type: Transform - pos: 11.5,-50.5 - parent: 1 - - uid: 3914 - components: - - type: Transform - pos: 11.5,-49.5 - parent: 1 - - uid: 3915 - components: - - type: Transform - pos: 14.5,-47.5 - parent: 1 - - uid: 3916 - components: - - type: Transform - pos: 14.5,-46.5 - parent: 1 - - uid: 3917 - components: - - type: Transform - pos: 14.5,-45.5 - parent: 1 - - uid: 3918 - components: - - type: Transform - pos: 14.5,-44.5 - parent: 1 - - uid: 3919 - components: - - type: Transform - pos: 14.5,-43.5 - parent: 1 - - uid: 7445 - components: - - type: Transform - pos: 40.5,74.5 - parent: 1 - - uid: 7446 - components: - - type: Transform - pos: 41.5,74.5 - parent: 1 - - uid: 7447 - components: - - type: Transform - pos: 42.5,74.5 - parent: 1 - - uid: 7448 - components: - - type: Transform - pos: 43.5,74.5 - parent: 1 - - uid: 7449 - components: - - type: Transform - pos: 44.5,74.5 - parent: 1 - - uid: 7450 - components: - - type: Transform - pos: 45.5,74.5 - parent: 1 - - uid: 7451 - components: - - type: Transform - pos: 46.5,74.5 - parent: 1 - - uid: 7452 - components: - - type: Transform - pos: 40.5,72.5 - parent: 1 - - uid: 7453 - components: - - type: Transform - pos: 41.5,72.5 - parent: 1 - - uid: 7454 - components: - - type: Transform - pos: 42.5,72.5 - parent: 1 - - uid: 7455 - components: - - type: Transform - pos: 43.5,72.5 - parent: 1 - - uid: 7456 - components: - - type: Transform - pos: 44.5,72.5 - parent: 1 - - uid: 7457 - components: - - type: Transform - pos: 45.5,72.5 - parent: 1 - - uid: 7458 - components: - - type: Transform - pos: 46.5,72.5 - parent: 1 - - uid: 7459 - components: - - type: Transform - pos: 39.5,72.5 - parent: 1 - - uid: 7460 - components: - - type: Transform - pos: 39.5,74.5 - parent: 1 - - uid: 7465 - components: - - type: Transform - pos: 35.5,74.5 - parent: 1 - - uid: 7466 - components: - - type: Transform - pos: 34.5,74.5 - parent: 1 - - uid: 7467 - components: - - type: Transform - pos: 33.5,74.5 - parent: 1 - - uid: 7468 - components: - - type: Transform - pos: 32.5,74.5 - parent: 1 - - uid: 7469 - components: - - type: Transform - pos: 31.5,74.5 - parent: 1 - - uid: 7470 - components: - - type: Transform - pos: 30.5,74.5 - parent: 1 - - uid: 7471 - components: - - type: Transform - pos: 29.5,74.5 - parent: 1 - - uid: 7472 - components: - - type: Transform - pos: 28.5,74.5 - parent: 1 - - uid: 7473 - components: - - type: Transform - pos: 28.5,72.5 - parent: 1 - - uid: 7474 - components: - - type: Transform - pos: 29.5,72.5 - parent: 1 - - uid: 7475 - components: - - type: Transform - pos: 30.5,72.5 - parent: 1 - - uid: 7476 - components: - - type: Transform - pos: 31.5,72.5 - parent: 1 - - uid: 7477 - components: - - type: Transform - pos: 32.5,72.5 - parent: 1 - - uid: 7478 - components: - - type: Transform - pos: 33.5,72.5 - parent: 1 - - uid: 7479 - components: - - type: Transform - pos: 34.5,72.5 - parent: 1 - - uid: 7480 - components: - - type: Transform - pos: 35.5,72.5 - parent: 1 - - uid: 7481 - components: - - type: Transform - pos: 35.5,68.5 - parent: 1 - - uid: 7482 - components: - - type: Transform - pos: 39.5,70.5 - parent: 1 - - uid: 7483 - components: - - type: Transform - pos: 40.5,70.5 - parent: 1 - - uid: 7484 - components: - - type: Transform - pos: 41.5,70.5 - parent: 1 - - uid: 7485 - components: - - type: Transform - pos: 42.5,70.5 - parent: 1 - - uid: 7486 - components: - - type: Transform - pos: 43.5,70.5 - parent: 1 - - uid: 7487 - components: - - type: Transform - pos: 44.5,70.5 - parent: 1 - - uid: 7488 - components: - - type: Transform - pos: 45.5,70.5 - parent: 1 - - uid: 7489 - components: - - type: Transform - pos: 46.5,70.5 - parent: 1 - - uid: 7490 - components: - - type: Transform - pos: 46.5,68.5 - parent: 1 - - uid: 7491 - components: - - type: Transform - pos: 45.5,68.5 - parent: 1 - - uid: 7492 - components: - - type: Transform - pos: 44.5,68.5 - parent: 1 - - uid: 7493 - components: - - type: Transform - pos: 43.5,68.5 - parent: 1 - - uid: 7494 - components: - - type: Transform - pos: 42.5,68.5 - parent: 1 - - uid: 7495 - components: - - type: Transform - pos: 41.5,68.5 - parent: 1 - - uid: 7496 - components: - - type: Transform - pos: 40.5,68.5 - parent: 1 - - uid: 7497 - components: - - type: Transform - pos: 39.5,68.5 - parent: 1 - - uid: 7498 - components: - - type: Transform - pos: 34.5,68.5 - parent: 1 - - uid: 7499 - components: - - type: Transform - pos: 33.5,68.5 - parent: 1 - - uid: 7500 - components: - - type: Transform - pos: 32.5,68.5 - parent: 1 - - uid: 7501 - components: - - type: Transform - pos: 31.5,68.5 - parent: 1 - - uid: 7502 - components: - - type: Transform - pos: 30.5,68.5 - parent: 1 - - uid: 7503 - components: - - type: Transform - pos: 29.5,68.5 - parent: 1 - - uid: 7504 - components: - - type: Transform - pos: 28.5,68.5 - parent: 1 - - uid: 7505 - components: - - type: Transform - pos: 28.5,70.5 - parent: 1 - - uid: 7506 - components: - - type: Transform - pos: 29.5,70.5 - parent: 1 - - uid: 7507 - components: - - type: Transform - pos: 30.5,70.5 - parent: 1 - - uid: 7508 - components: - - type: Transform - pos: 31.5,70.5 - parent: 1 - - uid: 7509 - components: - - type: Transform - pos: 32.5,70.5 - parent: 1 - - uid: 7510 - components: - - type: Transform - pos: 33.5,70.5 - parent: 1 - - uid: 7511 - components: - - type: Transform - pos: 34.5,70.5 - parent: 1 - - uid: 7512 - components: - - type: Transform - pos: 35.5,70.5 - parent: 1 - - uid: 7945 - components: - - type: Transform - pos: -36.5,74.5 - parent: 1 - - uid: 7946 - components: - - type: Transform - pos: -35.5,74.5 - parent: 1 - - uid: 7947 - components: - - type: Transform - pos: -34.5,74.5 - parent: 1 - - uid: 7948 - components: - - type: Transform - pos: -33.5,74.5 - parent: 1 - - uid: 7949 - components: - - type: Transform - pos: -32.5,74.5 - parent: 1 - - uid: 7950 - components: - - type: Transform - pos: -31.5,74.5 - parent: 1 - - uid: 7951 - components: - - type: Transform - pos: -30.5,74.5 - parent: 1 - - uid: 7952 - components: - - type: Transform - pos: -29.5,74.5 - parent: 1 - - uid: 7953 - components: - - type: Transform - pos: -36.5,72.5 - parent: 1 - - uid: 7954 - components: - - type: Transform - pos: -35.5,72.5 - parent: 1 - - uid: 7955 - components: - - type: Transform - pos: -34.5,72.5 - parent: 1 - - uid: 7956 - components: - - type: Transform - pos: -33.5,72.5 - parent: 1 - - uid: 7957 - components: - - type: Transform - pos: -32.5,72.5 - parent: 1 - - uid: 7958 - components: - - type: Transform - pos: -31.5,72.5 - parent: 1 - - uid: 7959 - components: - - type: Transform - pos: -30.5,72.5 - parent: 1 - - uid: 7960 - components: - - type: Transform - pos: -29.5,72.5 - parent: 1 - - uid: 7961 - components: - - type: Transform - pos: -36.5,70.5 - parent: 1 - - uid: 7962 - components: - - type: Transform - pos: -35.5,70.5 - parent: 1 - - uid: 7963 - components: - - type: Transform - pos: -34.5,70.5 - parent: 1 - - uid: 7964 - components: - - type: Transform - pos: -33.5,70.5 - parent: 1 - - uid: 7965 - components: - - type: Transform - pos: -32.5,70.5 - parent: 1 - - uid: 7966 - components: - - type: Transform - pos: -31.5,70.5 - parent: 1 - - uid: 7967 - components: - - type: Transform - pos: -30.5,70.5 - parent: 1 - - uid: 7968 - components: - - type: Transform - pos: -29.5,70.5 - parent: 1 - - uid: 7969 - components: - - type: Transform - pos: -36.5,68.5 - parent: 1 - - uid: 7970 - components: - - type: Transform - pos: -35.5,68.5 - parent: 1 - - uid: 7971 - components: - - type: Transform - pos: -34.5,68.5 - parent: 1 - - uid: 7972 - components: - - type: Transform - pos: -33.5,68.5 - parent: 1 - - uid: 7973 - components: - - type: Transform - pos: -32.5,68.5 - parent: 1 - - uid: 7974 - components: - - type: Transform - pos: -31.5,68.5 - parent: 1 - - uid: 7975 - components: - - type: Transform - pos: -30.5,68.5 - parent: 1 - - uid: 7976 - components: - - type: Transform - pos: -29.5,68.5 - parent: 1 - - uid: 7977 - components: - - type: Transform - pos: -41.5,68.5 - parent: 1 - - uid: 7978 - components: - - type: Transform - pos: -40.5,68.5 - parent: 1 - - uid: 7979 - components: - - type: Transform - pos: -42.5,68.5 - parent: 1 - - uid: 7980 - components: - - type: Transform - pos: -43.5,68.5 - parent: 1 - - uid: 7981 - components: - - type: Transform - pos: -44.5,68.5 - parent: 1 - - uid: 7982 - components: - - type: Transform - pos: -45.5,68.5 - parent: 1 - - uid: 7983 - components: - - type: Transform - pos: -46.5,68.5 - parent: 1 - - uid: 7984 - components: - - type: Transform - pos: -47.5,68.5 - parent: 1 - - uid: 7985 - components: - - type: Transform - pos: -47.5,70.5 - parent: 1 - - uid: 7986 - components: - - type: Transform - pos: -46.5,70.5 - parent: 1 - - uid: 7987 - components: - - type: Transform - pos: -45.5,70.5 - parent: 1 - - uid: 7988 - components: - - type: Transform - pos: -44.5,70.5 - parent: 1 - - uid: 7989 - components: - - type: Transform - pos: -43.5,70.5 - parent: 1 - - uid: 7990 - components: - - type: Transform - pos: -42.5,70.5 - parent: 1 - - uid: 7991 - components: - - type: Transform - pos: -41.5,70.5 - parent: 1 - - uid: 7992 - components: - - type: Transform - pos: -40.5,70.5 - parent: 1 - - uid: 7993 - components: - - type: Transform - pos: -47.5,72.5 - parent: 1 - - uid: 7994 - components: - - type: Transform - pos: -46.5,72.5 - parent: 1 - - uid: 7995 - components: - - type: Transform - pos: -45.5,72.5 - parent: 1 - - uid: 7996 - components: - - type: Transform - pos: -44.5,72.5 - parent: 1 - - uid: 7997 - components: - - type: Transform - pos: -43.5,72.5 - parent: 1 - - uid: 7998 - components: - - type: Transform - pos: -42.5,72.5 - parent: 1 - - uid: 7999 - components: - - type: Transform - pos: -41.5,72.5 - parent: 1 - - uid: 8000 - components: - - type: Transform - pos: -40.5,72.5 - parent: 1 - - uid: 8001 - components: - - type: Transform - pos: -47.5,74.5 - parent: 1 - - uid: 8002 - components: - - type: Transform - pos: -46.5,74.5 - parent: 1 - - uid: 8003 - components: - - type: Transform - pos: -45.5,74.5 - parent: 1 - - uid: 8004 - components: - - type: Transform - pos: -44.5,74.5 - parent: 1 - - uid: 8005 - components: - - type: Transform - pos: -43.5,74.5 - parent: 1 - - uid: 8006 - components: - - type: Transform - pos: -42.5,74.5 - parent: 1 - - uid: 8007 - components: - - type: Transform - pos: -41.5,74.5 - parent: 1 - - uid: 8008 - components: - - type: Transform - pos: -40.5,74.5 - parent: 1 -- proto: SolarPanelBroken - entities: - - uid: 10110 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 1 -- proto: SolarTracker - entities: - - uid: 6554 - components: - - type: Transform - pos: 37.5,75.5 - parent: 1 - - uid: 7654 - components: - - type: Transform - pos: -38.5,75.5 - parent: 1 - - uid: 17491 - components: - - type: Transform - pos: 6.5,-71.5 - parent: 1 - - uid: 17652 - components: - - type: Transform - pos: -7.5,-71.5 - parent: 1 -- proto: SpaceCash - entities: - - uid: 9948 - components: - - type: Transform - pos: -38.499844,-13.352273 - parent: 1 - - uid: 9949 - components: - - type: Transform - pos: -38.54244,-12.855584 - parent: 1 - - uid: 9950 - components: - - type: Transform - pos: -39.36597,-11.422282 - parent: 1 - - uid: 9951 - components: - - type: Transform - pos: -38.812218,-11.251988 - parent: 1 - - uid: 9952 - components: - - type: Transform - pos: -38.23007,-11.436473 - parent: 1 - - uid: 9953 - components: - - type: Transform - pos: -38.329456,-12.387278 - parent: 1 - - uid: 13431 - components: - - type: Transform - pos: -23.58317,58.71947 - parent: 1 - - uid: 13432 - components: - - type: Transform - pos: -23.497978,58.520798 - parent: 1 - - uid: 13433 - components: - - type: Transform - pos: -23.412786,58.747852 - parent: 1 - - uid: 13434 - components: - - type: Transform - pos: -23.35599,58.94653 - parent: 1 - - uid: 18103 - components: - - type: Transform - pos: -29.227093,53.8533 - parent: 1 - - uid: 18104 - components: - - type: Transform - pos: -29.25549,53.668816 - parent: 1 - - uid: 18105 - components: - - type: Transform - pos: -29.653055,53.73977 - parent: 1 -- proto: SpawnMobAlexander - entities: - - uid: 10644 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 1 -- proto: SpawnMobBandito - entities: - - uid: 18206 - components: - - type: Transform - pos: -36.5,2.5 - parent: 1 -- proto: SpawnMobCatException - entities: - - uid: 2613 - components: - - type: Transform - pos: -7.5,-22.5 - parent: 1 -- proto: SpawnMobCatFloppa - entities: - - uid: 18222 - components: - - type: Transform - pos: -23.5,27.5 - parent: 1 -- proto: SpawnMobCatRuntime - entities: - - uid: 18220 - components: - - type: Transform - pos: 15.5,33.5 - parent: 1 -- proto: SpawnMobCorgi - entities: - - uid: 9217 - components: - - type: Transform - pos: 24.5,2.5 - parent: 1 -- proto: SpawnMobDrone - entities: - - uid: 3981 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 1 - - uid: 4537 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 1 - - uid: 4538 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 1 -- proto: SpawnMobFoxRenault - entities: - - uid: 18223 - components: - - type: Transform - pos: -6.5,73.5 - parent: 1 -- proto: SpawnMobGoat - entities: - - uid: 6707 - components: - - type: Transform - pos: 11.5,2.5 - parent: 1 -- proto: SpawnMobHamsterHamlet - entities: - - uid: 8116 - components: - - type: Transform - pos: -3.5,79.5 - parent: 1 -- proto: SpawnMobLizard - entities: - - uid: 6278 - components: - - type: Transform - pos: 22.5,21.5 - parent: 1 -- proto: SpawnMobMcGriff - entities: - - uid: 18221 - components: - - type: Transform - pos: -11.5,49.5 - parent: 1 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 6381 - components: - - type: Transform - pos: -10.5,7.5 - parent: 1 -- proto: SpawnMobMouse - entities: - - uid: 18208 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 1 - - uid: 18211 - components: - - type: Transform - pos: 38.5,52.5 - parent: 1 - - uid: 18212 - components: - - type: Transform - pos: 18.5,63.5 - parent: 1 - - uid: 18213 - components: - - type: Transform - pos: -13.5,67.5 - parent: 1 - - uid: 18214 - components: - - type: Transform - pos: -46.5,48.5 - parent: 1 - - uid: 18215 - components: - - type: Transform - pos: -42.5,9.5 - parent: 1 -- proto: SpawnMobPossumMorty - entities: - - uid: 18217 - components: - - type: Transform - pos: 20.5,33.5 - parent: 1 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 18218 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 1 -- proto: SpawnMobShiva - entities: - - uid: 7697 - components: - - type: Transform - pos: -15.5,59.5 - parent: 1 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 6681 - components: - - type: Transform - pos: -28.5,6.5 - parent: 1 -- proto: SpawnMobWalter - entities: - - uid: 18219 - components: - - type: Transform - pos: 3.5,21.5 - parent: 1 -- proto: SpawnPointAtmos - entities: - - uid: 18171 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 1 - - uid: 18172 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 1 -- proto: SpawnPointBartender - entities: - - uid: 9145 - components: - - type: Transform - pos: -7.5,11.5 - parent: 1 -- proto: SpawnPointBorg - entities: - - uid: 2624 - components: - - type: Transform - pos: -13.5,32.5 - parent: 1 - - uid: 2632 - components: - - type: Transform - pos: -15.5,32.5 - parent: 1 -- proto: SpawnPointBotanist - entities: - - uid: 9146 - components: - - type: Transform - pos: 15.5,10.5 - parent: 1 - - uid: 9147 - components: - - type: Transform - pos: 14.5,10.5 - parent: 1 -- proto: SpawnPointCaptain - entities: - - uid: 6799 - components: - - type: Transform - pos: -2.5,79.5 - parent: 1 -- proto: SpawnPointCargoTechnician - entities: - - uid: 9157 - components: - - type: Transform - pos: -36.5,11.5 - parent: 1 - - uid: 9158 - components: - - type: Transform - pos: -35.5,11.5 - parent: 1 -- proto: SpawnPointChaplain - entities: - - uid: 18173 - components: - - type: Transform - pos: 25.5,53.5 - parent: 1 -- proto: SpawnPointChef - entities: - - uid: 4574 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 1 - - uid: 9148 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 1 -- proto: SpawnPointChemist - entities: - - uid: 8687 - components: - - type: Transform - pos: 3.5,24.5 - parent: 1 - - uid: 8688 - components: - - type: Transform - pos: 4.5,24.5 - parent: 1 -- proto: SpawnPointChiefEngineer - entities: - - uid: 6831 - components: - - type: Transform - pos: -5.5,81.5 - parent: 1 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 6830 - components: - - type: Transform - pos: 4.5,81.5 - parent: 1 -- proto: SpawnPointClown - entities: - - uid: 8939 - components: - - type: Transform - pos: -16.5,0.5 - parent: 1 -- proto: SpawnPointDetective - entities: - - uid: 6841 - components: - - type: Transform - pos: 42.5,48.5 - parent: 1 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 6834 - components: - - type: Transform - pos: 25.5,3.5 - parent: 1 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 6829 - components: - - type: Transform - pos: 1.5,79.5 - parent: 1 -- proto: SpawnPointJanitor - entities: - - uid: 9164 - components: - - type: Transform - pos: 17.5,-4.5 - parent: 1 - - uid: 9165 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 1 -- proto: SpawnPointLatejoin - entities: - - uid: 2043 - components: - - type: Transform - pos: 42.5,-7.5 - parent: 1 - - uid: 2044 - components: - - type: Transform - pos: 40.5,-7.5 - parent: 1 - - uid: 6516 - components: - - type: Transform - pos: 41.5,-7.5 - parent: 1 -- proto: SpawnPointLawyer - entities: - - uid: 9153 - components: - - type: Transform - pos: 4.5,63.5 - parent: 1 - - uid: 18190 - components: - - type: Transform - pos: 2.5,60.5 - parent: 1 -- proto: SpawnPointLibrarian - entities: - - uid: 9160 - components: - - type: Transform - pos: -25.5,2.5 - parent: 1 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 8497 - components: - - type: Transform - pos: 21.5,29.5 - parent: 1 - - uid: 8509 - components: - - type: Transform - pos: 21.5,28.5 - parent: 1 -- proto: SpawnPointMedicalIntern - entities: - - uid: 8424 - components: - - type: Transform - pos: 21.5,27.5 - parent: 1 - - uid: 8498 - components: - - type: Transform - pos: 19.5,27.5 - parent: 1 -- proto: SpawnPointMime - entities: - - uid: 9151 - components: - - type: Transform - pos: -16.5,4.5 - parent: 1 -- proto: SpawnPointMusician - entities: - - uid: 9152 - components: - - type: Transform - pos: -17.5,-4.5 - parent: 1 -- proto: SpawnPointObserver - entities: - - uid: 4251 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1 - - uid: 4252 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1 -- proto: SpawnPointParamedic - entities: - - uid: 3651 - components: - - type: Transform - pos: 15.5,18.5 - parent: 1 -- proto: SpawnPointPassenger - entities: - - uid: 4253 - components: - - type: Transform - pos: 11.5,41.5 - parent: 1 - - uid: 4254 - components: - - type: Transform - pos: 11.5,45.5 - parent: 1 - - uid: 4255 - components: - - type: Transform - pos: 17.5,47.5 - parent: 1 - - uid: 8397 - components: - - type: Transform - pos: 17.5,46.5 - parent: 1 -- proto: SpawnPointQuartermaster - entities: - - uid: 6833 - components: - - type: Transform - pos: 0.5,82.5 - parent: 1 -- proto: SpawnPointResearchAssistant - entities: - - uid: 18127 - components: - - type: Transform - pos: -12.5,23.5 - parent: 1 - - uid: 18128 - components: - - type: Transform - pos: -20.5,22.5 - parent: 1 -- proto: SpawnPointResearchDirector - entities: - - uid: 6832 - components: - - type: Transform - pos: -1.5,82.5 - parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 9154 - components: - - type: Transform - pos: -37.5,27.5 - parent: 1 - - uid: 9155 - components: - - type: Transform - pos: -37.5,26.5 - parent: 1 - - uid: 9156 - components: - - type: Transform - pos: -37.5,25.5 - parent: 1 -- proto: SpawnPointScientist - entities: - - uid: 8695 - components: - - type: Transform - pos: -12.5,22.5 - parent: 1 - - uid: 8696 - components: - - type: Transform - pos: -20.5,23.5 - parent: 1 -- proto: SpawnPointSecurityCadet - entities: - - uid: 6839 - components: - - type: Transform - pos: -5.5,53.5 - parent: 1 - - uid: 6840 - components: - - type: Transform - pos: -5.5,54.5 - parent: 1 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 6836 - components: - - type: Transform - pos: -18.5,41.5 - parent: 1 - - uid: 6837 - components: - - type: Transform - pos: -17.5,41.5 - parent: 1 - - uid: 6838 - components: - - type: Transform - pos: -16.5,41.5 - parent: 1 -- proto: SpawnPointServiceWorker - entities: - - uid: 18174 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 1 -- proto: SpawnPointStationEngineer - entities: - - uid: 9166 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 1 - - uid: 9167 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 1 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 9168 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 1 - - uid: 9169 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 1 -- proto: SpawnPointWarden - entities: - - uid: 6835 - components: - - type: Transform - pos: -12.5,49.5 - parent: 1 -- proto: SpawnVehicleATV - entities: - - uid: 8560 - components: - - type: Transform - pos: 16.5,17.5 - parent: 1 -- proto: SpawnVehicleJanicart - entities: - - uid: 16377 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 1 -- proto: SpawnVehicleSecway - entities: - - uid: 8242 - components: - - type: Transform - pos: -15.5,52.5 - parent: 1 - - uid: 8243 - components: - - type: Transform - pos: -14.5,52.5 - parent: 1 -- proto: SpawnVehicleWheelchair - entities: - - uid: 1002 - components: - - type: Transform - pos: 14.5,17.5 - parent: 1 -- proto: SpawnVendingMachineRestockFoodDrink - entities: - - uid: 9322 - components: - - type: Transform - pos: -39.5,2.5 - parent: 1 - - uid: 9323 - components: - - type: Transform - pos: -41.5,3.5 - parent: 1 - - uid: 9362 - components: - - type: Transform - pos: -41.5,4.5 - parent: 1 -- proto: Spear - entities: - - uid: 18106 - components: - - type: Transform - pos: -35.403564,54.591236 - parent: 1 -- proto: SpeedLoaderCap - entities: - - uid: 7763 - components: - - type: Transform - pos: -16.575819,5.572419 - parent: 1 -- proto: Spoon - entities: - - uid: 17288 - components: - - type: Transform - pos: -10.945471,2.5472858 - parent: 1 -- proto: SpoonPlastic - entities: - - uid: 9327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.550159,72.33989 - parent: 1 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 3164 - components: - - type: Transform - pos: 16.269894,-4.730578 - parent: 1 - - uid: 9253 - components: - - type: Transform - pos: 16.478226,-4.855578 - parent: 1 - - uid: 17274 - components: - - type: Transform - pos: -23.710033,-13.449605 - parent: 1 - - uid: 17275 - components: - - type: Transform - pos: -23.539648,-13.279312 - parent: 1 -- proto: SprayPainter - entities: - - uid: 9885 - components: - - type: Transform - pos: -28.646414,31.653807 - parent: 1 -- proto: Stairs - entities: - - uid: 9668 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 1 - - uid: 9669 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 1 - - uid: 9670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,76.5 - parent: 1 - - uid: 9671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,76.5 - parent: 1 - - uid: 9672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,76.5 - parent: 1 -- proto: StairStage - entities: - - uid: 4355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 1 -- proto: StasisBed - entities: - - uid: 3652 - components: - - type: Transform - pos: 12.5,32.5 - parent: 1 -- proto: StationMap - entities: - - uid: 7440 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 1 - - uid: 7441 - components: - - type: Transform - pos: 7.5,69.5 - parent: 1 - - uid: 7639 - components: - - type: Transform - pos: 1.5,20.5 - parent: 1 - - uid: 7640 - components: - - type: Transform - pos: 44.5,-10.5 - parent: 1 - - uid: 7645 - components: - - type: Transform - pos: -45.5,35.5 - parent: 1 - - uid: 7646 - components: - - type: Transform - pos: 49.5,40.5 - parent: 1 -- proto: StatueVenusBlue - entities: - - uid: 17763 - components: - - type: Transform - pos: 35.5,10.5 - parent: 1 -- proto: StatueVenusRed - entities: - - uid: 17762 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 1 -- proto: SteelBench - entities: - - uid: 8099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,41.5 - parent: 1 - - uid: 8171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,41.5 - parent: 1 - - uid: 8190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,40.5 - parent: 1 - - uid: 8192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,40.5 - parent: 1 - - uid: 8251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,40.5 - parent: 1 - - uid: 9678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,40.5 - parent: 1 -- proto: Stool - entities: - - uid: 2478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-3.5 - parent: 1 - - uid: 2479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-1.5 - parent: 1 - - uid: 2819 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 1 - - uid: 3414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-5.5 - parent: 1 - - uid: 4364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-1.5 - parent: 1 - - uid: 7658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,0.5 - parent: 1 - - uid: 7683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-3.5 - parent: 1 - - uid: 8376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,48.5 - parent: 1 - - uid: 18418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,52.5 - parent: 1 -- proto: StoolBar - entities: - - uid: 4034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,4.5 - parent: 1 - - uid: 4035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,4.5 - parent: 1 - - uid: 4036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,4.5 - parent: 1 - - uid: 4037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1 - - uid: 4038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,7.5 - parent: 1 - - uid: 4039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1 - - uid: 4425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 1 - - uid: 4426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 1 - - uid: 4427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1 -- proto: StorageCanister - entities: - - uid: 2712 - components: - - type: Transform - pos: -9.5,-38.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 2713 - components: - - type: Transform - pos: -9.5,-39.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3024 - components: - - type: Transform - pos: 0.5,-29.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3047 - components: - - type: Transform - pos: -13.5,-26.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3048 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6587 - components: - - type: Transform - pos: -6.5,34.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6588 - components: - - type: Transform - pos: -7.5,34.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10089 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: StrangePill - entities: - - uid: 772 - components: - - type: Transform - pos: -38.658638,42.44425 - parent: 1 - - uid: 6551 - components: - - type: Transform - pos: -34.521122,33.610306 - parent: 1 - - uid: 7545 - components: - - type: Transform - pos: 23.385082,56.636555 - parent: 1 - - uid: 7624 - components: - - type: Transform - pos: 17.981688,-36.520332 - parent: 1 - - uid: 7672 - components: - - type: Transform - pos: -17.505447,-39.48328 - parent: 1 -- proto: Stunbaton - entities: - - uid: 8187 - components: - - type: Transform - pos: -18.632307,40.44518 - parent: 1 - - uid: 8188 - components: - - type: Transform - pos: -18.694807,40.653515 - parent: 1 -- proto: SubstationBasic - entities: - - uid: 4186 - components: - - type: MetaData - name: Engineering Substation 1 - - type: Transform - pos: 8.5,-17.5 - parent: 1 - - uid: 4187 - components: - - type: MetaData - name: Engineering Substation 2 - - type: Transform - pos: 8.5,-18.5 - parent: 1 - - uid: 4584 - components: - - type: MetaData - name: Salvage & Science Substation - - type: Transform - pos: -21.5,30.5 - parent: 1 - - uid: 4585 - components: - - type: MetaData - name: Cargo Substation - - type: Transform - pos: -25.5,-15.5 - parent: 1 - - uid: 4587 - components: - - type: MetaData - name: Security Substation - - type: Transform - pos: -24.5,50.5 - parent: 1 - - uid: 4588 - components: - - type: MetaData - name: North East Section Substation - - type: Transform - pos: 20.5,54.5 - parent: 1 - - uid: 4589 - components: - - type: MetaData - name: Medical Substation - - type: Transform - pos: 16.5,25.5 - parent: 1 - - uid: 4590 - components: - - type: MetaData - name: Kitchen & Botany Substation - - type: Transform - pos: 17.5,4.5 - parent: 1 - - uid: 4591 - components: - - type: MetaData - name: Library & Bar Substation - - type: Transform - pos: -25.5,-0.5 - parent: 1 - - uid: 4594 - components: - - type: MetaData - name: South East Section Substation - - type: Transform - pos: 26.5,-18.5 - parent: 1 - - uid: 4931 - components: - - type: MetaData - name: Bridge Substation - - type: Transform - pos: -3.5,74.5 - parent: 1 - - uid: 9403 - components: - - type: MetaData - name: GravGen Substation - - type: Transform - pos: -23.5,-18.5 - parent: 1 - - uid: 18472 - components: - - type: MetaData - name: Comms Substation - - type: Transform - pos: 22.5,-11.5 - parent: 1 -- proto: SubstationWallBasic - entities: - - uid: 8818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 8756 -- proto: SuitStorageAtmos - entities: - - uid: 7705 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 1 - - uid: 7805 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 1 -- proto: SuitStorageCE - entities: - - uid: 7711 - components: - - type: Transform - pos: 7.5,-23.5 - parent: 1 -- proto: SuitStorageCMO - entities: - - uid: 6917 - components: - - type: Transform - pos: 15.5,34.5 - parent: 1 -- proto: SuitStorageEngi - entities: - - uid: 2620 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7708 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7710 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7804 - components: - - type: Transform - pos: 13.5,-31.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: SuitStorageEVA - entities: - - uid: 4109 - components: - - type: Transform - pos: 23.5,33.5 - parent: 1 - - uid: 4369 - components: - - type: Transform - pos: 23.5,32.5 - parent: 1 - - uid: 7762 - components: - - type: Transform - pos: 23.5,34.5 - parent: 1 - - uid: 7764 - components: - - type: Transform - pos: 23.5,31.5 - parent: 1 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 6922 - components: - - type: Transform - pos: -27.5,49.5 - parent: 1 - - uid: 6923 - components: - - type: Transform - pos: -28.5,49.5 - parent: 1 -- proto: SuitStorageHOS - entities: - - uid: 7712 - components: - - type: Transform - pos: -13.5,58.5 - parent: 1 -- proto: SuitStorageRD - entities: - - uid: 8231 - components: - - type: Transform - pos: -25.5,22.5 - parent: 1 -- proto: SuitStorageSalv - entities: - - uid: 6929 - components: - - type: Transform - pos: -36.5,27.5 - parent: 1 - - uid: 7392 - components: - - type: Transform - pos: -36.5,26.5 - parent: 1 - - uid: 7644 - components: - - type: Transform - pos: -36.5,25.5 - parent: 1 -- proto: SuitStorageSec - entities: - - uid: 1831 - components: - - type: Transform - pos: -9.5,62.5 - parent: 1 - - uid: 1834 - components: - - type: Transform - pos: -9.5,64.5 - parent: 1 - - uid: 5811 - components: - - type: Transform - pos: -9.5,63.5 - parent: 1 -- proto: SuitStorageWarden - entities: - - uid: 6911 - components: - - type: Transform - pos: -11.5,50.5 - parent: 1 -- proto: SurveillanceCameraCommand - entities: - - uid: 16381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Tech Storage - - uid: 16395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Chief Engineer's Office - - uid: 16414 - components: - - type: Transform - pos: -23.5,-13.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Drone Storage - - uid: 16415 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-17.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Gravity - - uid: 16421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Quartermaster's Office - - uid: 16425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Office - - uid: 16426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,9.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Bedroom - - uid: 16427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,32.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA Storage - - uid: 16454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,60.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoS' Office - - uid: 16458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,46.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - - uid: 16461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,71.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Hallway - - uid: 16462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,74.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - - uid: 16463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,83.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge - - uid: 16464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,73.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - - uid: 16467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,32.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: CMO's Office - - uid: 16482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,23.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: RD's Office - - uid: 17236 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 8756 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Private Shuttle - - uid: 18441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Telecomms -- proto: SurveillanceCameraEngineering - entities: - - uid: 16382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-28.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Room - - uid: 16383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-39.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - - uid: 16391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-43.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Starboard Thruster Exterior - - uid: 16392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-33.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Atrium B - - uid: 16393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - - uid: 16394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-19.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - - uid: 16396 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Reception - - uid: 16397 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Reception - - uid: 16398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Locker Room - - uid: 16399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Canister Storage - - uid: 16400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Storage Tanks - - uid: 16401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-39.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Mixing Chambers -- proto: SurveillanceCameraGeneral - entities: - - uid: 16402 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Engineering Lobby - - uid: 16424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: HoP Line - - uid: 16428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,22.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Public Park - - uid: 16434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,41.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Laundry Room - - uid: 16435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,42.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms - - uid: 16438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,0.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arcade - - uid: 16439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,37.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: EVAC A - - uid: 16440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,14.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: EVAV B - - uid: 16443 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Hallway 2 - - uid: 16444 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Hallway 1 - - uid: 16446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,14.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Port Docking Hangar - - uid: 16447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,22.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Port Hallway - - uid: 16448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,31.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool Room - - uid: 16449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,43.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Port Garden - - uid: 16459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,46.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Fore Hallway - - uid: 16460 - components: - - type: Transform - pos: 9.5,66.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bridge Observatory - - uid: 16475 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Med/Sci Lobby - - uid: 16476 - components: - - type: Transform - pos: -18.5,13.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Port Hallway - - uid: 16477 - components: - - type: Transform - pos: 16.5,13.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Starboard Hallway - - uid: 16484 - components: - - type: Transform - pos: -16.5,36.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Fore Port Hallway - - uid: 16485 - components: - - type: Transform - pos: 17.5,36.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Fore Starboard Hallway - - uid: 16487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,27.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Midships Hallway - - uid: 16489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Port Access -- proto: SurveillanceCameraMedical - entities: - - uid: 3688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,32.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cryo - - uid: 16436 - components: - - type: Transform - pos: 11.5,17.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Reception - - uid: 16437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,26.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Atrium - - uid: 16466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,31.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Ward - - uid: 16468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,34.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - - uid: 16470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,25.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 18194 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 1 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 2943 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 1 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 4573 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 1 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 18084 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 1 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 4575 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 1 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 7035 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 1 -- proto: SurveillanceCameraRouterService - entities: - - uid: 4576 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 1 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 7245 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 1 -- proto: SurveillanceCameraScience - entities: - - uid: 16478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,32.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - - uid: 16479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,29.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: XenoArch - - uid: 16480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,24.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: R&D - - uid: 16481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,25.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Atrium - - uid: 16483 - components: - - type: Transform - pos: -14.5,17.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomalous Materials -- proto: SurveillanceCameraSecurity - entities: - - uid: 16432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,48.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective's Office - - uid: 16433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,44.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: EVAC Checkpoint - - uid: 16442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals Checkpoint - - uid: 16445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cargo Checkpoint - - uid: 16450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,45.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig - - uid: 16451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,46.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Atrium 2 - - uid: 16452 - components: - - type: Transform - pos: -10.5,52.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Atrium 1 - - uid: 16453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,41.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Locker Room - - uid: 16455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,64.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 16456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,61.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court Room - - uid: 16457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,61.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer's Office -- proto: SurveillanceCameraService - entities: - - uid: 16407 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: South Cafeteria - - uid: 16409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: North Cafeteria - - uid: 16410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Middle Cafeteria - - uid: 16411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - - uid: 16412 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 16413 - components: - - type: Transform - pos: 9.5,5.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - - uid: 16423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitor Closet - - uid: 16429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,8.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library - - uid: 16430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,46.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel - - uid: 16431 - components: - - type: Transform - pos: 33.5,54.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Crematorium -- proto: SurveillanceCameraSupply - entities: - - uid: 16416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-6.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - - uid: 16417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Loading Dock - - uid: 16418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,3.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Loading Bay - - uid: 16419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,7.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Lobby - - uid: 16420 - components: - - type: Transform - pos: -34.5,9.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Mail Room - - uid: 16422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,25.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 7293 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 1 -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 4024 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 1 - - uid: 16486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,54.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Court TV -- proto: SynthesizerInstrument - entities: - - uid: 9376 - components: - - type: Transform - pos: -15.706505,-5.3218913 - parent: 1 -- proto: Syringe - entities: - - uid: 6386 - components: - - type: Transform - pos: 9.549924,34.71867 - parent: 1 - - uid: 7124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.489402,28.012117 - parent: 1 -- proto: SyringeEphedrine - entities: - - uid: 17755 - components: - - type: Transform - pos: -40.359406,48.047718 - parent: 1 -- proto: Table - entities: - - uid: 1586 - components: - - type: Transform - pos: -28.5,43.5 - parent: 1 - - uid: 1587 - components: - - type: Transform - pos: -28.5,44.5 - parent: 1 - - uid: 1588 - components: - - type: Transform - pos: -29.5,44.5 - parent: 1 - - uid: 1589 - components: - - type: Transform - pos: -29.5,43.5 - parent: 1 - - uid: 4324 - components: - - type: Transform - pos: -34.5,49.5 - parent: 1 - - uid: 4325 - components: - - type: Transform - pos: -33.5,49.5 - parent: 1 - - uid: 4326 - components: - - type: Transform - pos: -32.5,49.5 - parent: 1 - - uid: 4395 - components: - - type: Transform - pos: 3.5,0.5 - parent: 1 - - uid: 6088 - components: - - type: Transform - pos: 20.5,40.5 - parent: 1 - - uid: 6089 - components: - - type: Transform - pos: 20.5,41.5 - parent: 1 - - uid: 6543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 1 - - uid: 6919 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 1 - - uid: 7650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 1 - - uid: 7692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 1 - - uid: 8402 - components: - - type: Transform - pos: 12.5,46.5 - parent: 1 - - uid: 8422 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1 - - uid: 9088 - components: - - type: Transform - pos: 4.5,-33.5 - parent: 1 - - uid: 9666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-0.5 - parent: 1 - - uid: 9910 - components: - - type: Transform - pos: -19.5,-37.5 - parent: 1 - - uid: 9911 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 1 - - uid: 9932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-29.5 - parent: 1 - - uid: 9973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-24.5 - parent: 1 - - uid: 10136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 1 - - uid: 11055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 1 - - uid: 13312 - components: - - type: Transform - pos: -28.5,3.5 - parent: 1 - - uid: 13333 - components: - - type: Transform - pos: -12.5,10.5 - parent: 1 - - uid: 13358 - components: - - type: Transform - pos: -39.5,34.5 - parent: 1 - - uid: 13390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,30.5 - parent: 1 - - uid: 13397 - components: - - type: Transform - pos: -23.5,43.5 - parent: 1 - - uid: 13451 - components: - - type: Transform - pos: -46.5,46.5 - parent: 1 - - uid: 14005 - components: - - type: Transform - pos: 18.5,64.5 - parent: 1 - - uid: 14025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,58.5 - parent: 1 -- proto: TableCarpet - entities: - - uid: 565 - components: - - type: Transform - pos: -22.5,10.5 - parent: 1 - - uid: 775 - components: - - type: Transform - pos: -27.5,7.5 - parent: 1 - - uid: 776 - components: - - type: Transform - pos: -28.5,7.5 - parent: 1 - - uid: 2935 - components: - - type: Transform - pos: -38.5,-11.5 - parent: 1 - - uid: 3951 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 1 - - uid: 5830 - components: - - type: Transform - pos: -38.5,-13.5 - parent: 1 - - uid: 6502 - components: - - type: Transform - pos: -39.5,-11.5 - parent: 1 - - uid: 7145 - components: - - type: Transform - pos: -26.5,7.5 - parent: 1 - - uid: 7146 - components: - - type: Transform - pos: -26.5,6.5 - parent: 1 - - uid: 10069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-17.5 - parent: 1 - - uid: 13428 - components: - - type: Transform - pos: -23.5,58.5 - parent: 1 -- proto: TableGlass - entities: - - uid: 666 - components: - - type: Transform - pos: 3.5,34.5 - parent: 1 - - uid: 1273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,35.5 - parent: 1 - - uid: 1998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,6.5 - parent: 1 - - uid: 2485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 1 - - uid: 2831 - components: - - type: Transform - pos: -13.5,-33.5 - parent: 1 - - uid: 2832 - components: - - type: Transform - pos: -13.5,-34.5 - parent: 1 - - uid: 2833 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 1 - - uid: 2834 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 1 - - uid: 3699 - components: - - type: Transform - pos: 2.5,23.5 - parent: 1 - - uid: 3735 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 1 - - uid: 3740 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 1 - - uid: 3741 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 1 - - uid: 3742 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1 - - uid: 3761 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 1 - - uid: 3765 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 1 - - uid: 3766 - components: - - type: Transform - pos: 17.5,-21.5 - parent: 1 - - uid: 3767 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 1 - - uid: 4049 - components: - - type: Transform - pos: 2.5,24.5 - parent: 1 - - uid: 4053 - components: - - type: Transform - pos: 6.5,22.5 - parent: 1 - - uid: 4054 - components: - - type: Transform - pos: 5.5,22.5 - parent: 1 - - uid: 4060 - components: - - type: Transform - pos: 4.5,25.5 - parent: 1 - - uid: 4119 - components: - - type: Transform - pos: 3.5,31.5 - parent: 1 - - uid: 4204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1 - - uid: 4209 - components: - - type: Transform - pos: 9.5,34.5 - parent: 1 - - uid: 4236 - components: - - type: Transform - pos: 5.5,7.5 - parent: 1 - - uid: 4238 - components: - - type: Transform - pos: 5.5,6.5 - parent: 1 - - uid: 4396 - components: - - type: Transform - pos: 8.5,11.5 - parent: 1 - - uid: 4421 - components: - - type: Transform - pos: 22.5,26.5 - parent: 1 - - uid: 6150 - components: - - type: Transform - pos: 21.5,26.5 - parent: 1 - - uid: 6167 - components: - - type: Transform - pos: 20.5,26.5 - parent: 1 - - uid: 6178 - components: - - type: Transform - pos: 19.5,26.5 - parent: 1 - - uid: 6390 - components: - - type: Transform - pos: 9.5,26.5 - parent: 1 - - uid: 6601 - components: - - type: Transform - pos: -15.5,-5.5 - parent: 1 - - uid: 6602 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 1 - - uid: 7100 - components: - - type: Transform - pos: -14.5,-19.5 - parent: 1 - - uid: 7101 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 1 - - uid: 8420 - components: - - type: Transform - pos: -49.5,44.5 - parent: 1 - - uid: 8433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,31.5 - parent: 1 - - uid: 8441 - components: - - type: Transform - pos: 5.5,57.5 - parent: 1 - - uid: 8458 - components: - - type: Transform - pos: 12.5,70.5 - parent: 1 - - uid: 8627 - components: - - type: Transform - pos: -23.5,19.5 - parent: 1 - - uid: 8628 - components: - - type: Transform - pos: -23.5,20.5 - parent: 1 - - uid: 8716 - components: - - type: Transform - pos: -11.5,-15.5 - parent: 1 - - uid: 8717 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 1 - - uid: 9105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 1 - - uid: 9559 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 1 - - uid: 9596 - components: - - type: Transform - pos: -8.5,36.5 - parent: 1 - - uid: 9622 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-6.5 - parent: 1 - - uid: 9623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-5.5 - parent: 1 - - uid: 9703 - components: - - type: Transform - pos: -35.5,9.5 - parent: 1 - - uid: 9704 - components: - - type: Transform - pos: -34.5,9.5 - parent: 1 - - uid: 10960 - components: - - type: Transform - pos: 34.5,-14.5 - parent: 1 - - uid: 14084 - components: - - type: Transform - pos: -49.5,16.5 - parent: 1 - - uid: 16652 - components: - - type: Transform - pos: -32.5,31.5 - parent: 1 - - uid: 18496 - components: - - type: Transform - pos: 6.5,52.5 - parent: 1 -- proto: TablePlasmaGlass - entities: - - uid: 1109 - components: - - type: Transform - pos: -9.5,27.5 - parent: 1 - - uid: 1309 - components: - - type: Transform - pos: -10.5,34.5 - parent: 1 - - uid: 1310 - components: - - type: Transform - pos: -11.5,34.5 - parent: 1 - - uid: 3554 - components: - - type: Transform - pos: -7.5,24.5 - parent: 1 - - uid: 3555 - components: - - type: Transform - pos: -6.5,24.5 - parent: 1 - - uid: 4582 - components: - - type: Transform - pos: -18.5,17.5 - parent: 1 - - uid: 4583 - components: - - type: Transform - pos: -18.5,20.5 - parent: 1 - - uid: 4586 - components: - - type: Transform - pos: -17.5,17.5 - parent: 1 - - uid: 7119 - components: - - type: Transform - pos: -13.5,28.5 - parent: 1 - - uid: 7120 - components: - - type: Transform - pos: -13.5,27.5 - parent: 1 - - uid: 8667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,21.5 - parent: 1 - - uid: 8698 - components: - - type: Transform - pos: -9.5,28.5 - parent: 1 -- proto: TableReinforced - entities: - - uid: 266 - components: - - type: Transform - pos: -36.5,7.5 - parent: 1 - - uid: 271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-2.5 - parent: 1 - - uid: 321 - components: - - type: Transform - pos: -0.5,83.5 - parent: 1 - - uid: 322 - components: - - type: Transform - pos: -0.5,82.5 - parent: 1 - - uid: 326 - components: - - type: Transform - pos: -3.5,83.5 - parent: 1 - - uid: 336 - components: - - type: Transform - pos: -0.5,80.5 - parent: 1 - - uid: 337 - components: - - type: Transform - pos: -4.5,79.5 - parent: 1 - - uid: 338 - components: - - type: Transform - pos: -4.5,80.5 - parent: 1 - - uid: 444 - components: - - type: Transform - pos: -35.5,12.5 - parent: 1 - - uid: 448 - components: - - type: Transform - pos: -36.5,6.5 - parent: 1 - - uid: 480 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 1 - - uid: 481 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 1 - - uid: 482 - components: - - type: Transform - pos: 4.5,-0.5 - parent: 1 - - uid: 491 - components: - - type: Transform - pos: -5.5,8.5 - parent: 1 - - uid: 492 - components: - - type: Transform - pos: -5.5,7.5 - parent: 1 - - uid: 493 - components: - - type: Transform - pos: -5.5,6.5 - parent: 1 - - uid: 503 - components: - - type: Transform - pos: -11.5,7.5 - parent: 1 - - uid: 505 - components: - - type: Transform - pos: -11.5,6.5 - parent: 1 - - uid: 512 - components: - - type: Transform - pos: -6.5,5.5 - parent: 1 - - uid: 513 - components: - - type: Transform - pos: -7.5,5.5 - parent: 1 - - uid: 514 - components: - - type: Transform - pos: -8.5,5.5 - parent: 1 - - uid: 524 - components: - - type: Transform - pos: -10.5,6.5 - parent: 1 - - uid: 549 - components: - - type: Transform - pos: 10.5,12.5 - parent: 1 - - uid: 567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,3.5 - parent: 1 - - uid: 569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,3.5 - parent: 1 - - uid: 599 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 1 - - uid: 602 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 1 - - uid: 603 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 1 - - uid: 604 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 1 - - uid: 605 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 1 - - uid: 606 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 1 - - uid: 607 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 1 - - uid: 798 - components: - - type: Transform - pos: 3.5,20.5 - parent: 1 - - uid: 799 - components: - - type: Transform - pos: -5.5,20.5 - parent: 1 - - uid: 801 - components: - - type: Transform - pos: -4.5,20.5 - parent: 1 - - uid: 802 - components: - - type: Transform - pos: 4.5,20.5 - parent: 1 - - uid: 1414 - components: - - type: Transform - pos: -13.5,47.5 - parent: 1 - - uid: 1415 - components: - - type: Transform - pos: -12.5,47.5 - parent: 1 - - uid: 1418 - components: - - type: Transform - pos: -10.5,49.5 - parent: 1 - - uid: 1419 - components: - - type: Transform - pos: -10.5,48.5 - parent: 1 - - uid: 1663 - components: - - type: Transform - pos: 16.5,19.5 - parent: 1 - - uid: 1842 - components: - - type: Transform - pos: -16.5,50.5 - parent: 1 - - uid: 1843 - components: - - type: Transform - pos: -16.5,49.5 - parent: 1 - - uid: 1844 - components: - - type: Transform - pos: -16.5,48.5 - parent: 1 - - uid: 1845 - components: - - type: Transform - pos: -19.5,53.5 - parent: 1 - - uid: 1846 - components: - - type: Transform - pos: -18.5,53.5 - parent: 1 - - uid: 1847 - components: - - type: Transform - pos: -19.5,52.5 - parent: 1 - - uid: 1848 - components: - - type: Transform - pos: -13.5,56.5 - parent: 1 - - uid: 1849 - components: - - type: Transform - pos: -12.5,56.5 - parent: 1 - - uid: 1850 - components: - - type: Transform - pos: -12.5,55.5 - parent: 1 - - uid: 2142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,21.5 - parent: 1 - - uid: 2143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,21.5 - parent: 1 - - uid: 2396 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 1 - - uid: 2398 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 1 - - uid: 2407 - components: - - type: Transform - pos: 5.5,-13.5 - parent: 1 - - uid: 2409 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 1 - - uid: 2472 - components: - - type: Transform - pos: 21.5,-6.5 - parent: 1 - - uid: 2891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - - uid: 2892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 1 - - uid: 2898 - components: - - type: Transform - pos: 25.5,4.5 - parent: 1 - - uid: 2899 - components: - - type: Transform - pos: 24.5,4.5 - parent: 1 - - uid: 3529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,53.5 - parent: 1 - - uid: 3570 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 1 - - uid: 3574 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 1 - - uid: 3619 - components: - - type: Transform - pos: 9.5,23.5 - parent: 1 - - uid: 3620 - components: - - type: Transform - pos: 9.5,22.5 - parent: 1 - - uid: 3631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,19.5 - parent: 1 - - uid: 3632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,19.5 - parent: 1 - - uid: 3680 - components: - - type: Transform - pos: 14.5,19.5 - parent: 1 - - uid: 3753 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 1 - - uid: 3756 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 1 - - uid: 3983 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 1 - - uid: 3984 - components: - - type: Transform - pos: -25.5,-12.5 - parent: 1 - - uid: 3985 - components: - - type: Transform - pos: -25.5,-13.5 - parent: 1 - - uid: 4014 - components: - - type: Transform - pos: 16.5,-5.5 - parent: 1 - - uid: 4015 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 1 - - uid: 4016 - components: - - type: Transform - pos: 16.5,-3.5 - parent: 1 - - uid: 4069 - components: - - type: Transform - pos: 8.5,2.5 - parent: 1 - - uid: 4133 - components: - - type: Transform - pos: -39.5,19.5 - parent: 1 - - uid: 4136 - components: - - type: Transform - pos: -39.5,16.5 - parent: 1 - - uid: 4149 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 1 - - uid: 4155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-2.5 - parent: 1 - - uid: 4188 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 1 - - uid: 4189 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 1 - - uid: 4190 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 1 - - uid: 4193 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 1 - - uid: 4195 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 1 - - uid: 4196 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 1 - - uid: 4197 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 1 - - uid: 4198 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 1 - - uid: 4200 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 1 - - uid: 4203 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 1 - - uid: 4218 - components: - - type: Transform - pos: 11.5,-37.5 - parent: 1 - - uid: 4240 - components: - - type: Transform - pos: 13.5,8.5 - parent: 1 - - uid: 4241 - components: - - type: Transform - pos: 15.5,8.5 - parent: 1 - - uid: 4258 - components: - - type: Transform - pos: -0.5,79.5 - parent: 1 - - uid: 4261 - components: - - type: Transform - pos: -3.5,82.5 - parent: 1 - - uid: 4263 - components: - - type: Transform - pos: 3.5,80.5 - parent: 1 - - uid: 4264 - components: - - type: Transform - pos: 3.5,79.5 - parent: 1 - - uid: 4265 - components: - - type: Transform - pos: 2.5,83.5 - parent: 1 - - uid: 4266 - components: - - type: Transform - pos: 2.5,82.5 - parent: 1 - - uid: 4276 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,80.5 - parent: 1 - - uid: 4277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,79.5 - parent: 1 - - uid: 4278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,80.5 - parent: 1 - - uid: 4279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,79.5 - parent: 1 - - uid: 4280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,76.5 - parent: 1 - - uid: 4281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,77.5 - parent: 1 - - uid: 4385 - components: - - type: Transform - pos: -11.5,56.5 - parent: 1 - - uid: 4439 - components: - - type: Transform - pos: -28.5,29.5 - parent: 1 - - uid: 4440 - components: - - type: Transform - pos: -27.5,29.5 - parent: 1 - - uid: 4441 - components: - - type: Transform - pos: -26.5,29.5 - parent: 1 - - uid: 4533 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 1 - - uid: 4535 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 1 - - uid: 4536 - components: - - type: Transform - pos: -21.5,-13.5 - parent: 1 - - uid: 6109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,54.5 - parent: 1 - - uid: 6139 - components: - - type: Transform - pos: -20.5,35.5 - parent: 1 - - uid: 6347 - components: - - type: Transform - pos: 44.5,41.5 - parent: 1 - - uid: 6348 - components: - - type: Transform - pos: 43.5,41.5 - parent: 1 - - uid: 6379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,19.5 - parent: 1 - - uid: 6603 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 1 - - uid: 6604 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 1 - - uid: 6635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,8.5 - parent: 1 - - uid: 7390 - components: - - type: Transform - pos: -14.5,50.5 - parent: 1 - - uid: 7816 - components: - - type: Transform - pos: -42.5,26.5 - parent: 1 - - uid: 7889 - components: - - type: Transform - pos: 44.5,44.5 - parent: 1 - - uid: 8137 - components: - - type: Transform - pos: -6.5,52.5 - parent: 1 - - uid: 8176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,40.5 - parent: 1 - - uid: 8890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 8756 - - uid: 8891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 8756 - - uid: 8910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 1 - - uid: 8944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 1 - - uid: 9115 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 1 - - uid: 9116 - components: - - type: Transform - pos: 13.5,-20.5 - parent: 1 - - uid: 9117 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 1 - - uid: 9118 - components: - - type: Transform - pos: 13.5,-24.5 - parent: 1 - - uid: 9119 - components: - - type: Transform - pos: 13.5,-25.5 - parent: 1 - - uid: 9134 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 1 - - uid: 9135 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 1 - - uid: 9140 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 1 - - uid: 9374 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1 - - uid: 9393 - components: - - type: Transform - pos: -34.5,-5.5 - parent: 1 - - uid: 9394 - components: - - type: Transform - pos: -35.5,-5.5 - parent: 1 - - uid: 9412 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 1 - - uid: 9413 - components: - - type: Transform - pos: 26.5,-13.5 - parent: 1 - - uid: 9624 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-7.5 - parent: 1 - - uid: 9625 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-7.5 - parent: 1 - - uid: 10643 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 1 - - uid: 10646 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 1 - - uid: 17269 - components: - - type: Transform - pos: -23.5,-13.5 - parent: 1 - - uid: 18473 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 1 -- proto: TableReinforcedGlass - entities: - - uid: 4335 - components: - - type: Transform - pos: -21.5,34.5 - parent: 1 - - uid: 4404 - components: - - type: Transform - pos: 31.5,56.5 - parent: 1 - - uid: 4405 - components: - - type: Transform - pos: 33.5,56.5 - parent: 1 - - uid: 6789 - components: - - type: Transform - pos: 5.5,72.5 - parent: 1 - - uid: 6819 - components: - - type: Transform - pos: -16.5,59.5 - parent: 1 - - uid: 6820 - components: - - type: Transform - pos: -16.5,58.5 - parent: 1 - - uid: 6821 - components: - - type: Transform - pos: -15.5,58.5 - parent: 1 - - uid: 7252 - components: - - type: Transform - pos: 5.5,45.5 - parent: 1 - - uid: 7253 - components: - - type: Transform - pos: 4.5,45.5 - parent: 1 - - uid: 8092 - components: - - type: Transform - pos: 2.5,71.5 - parent: 1 - - uid: 8480 - components: - - type: Transform - pos: 16.5,32.5 - parent: 1 - - uid: 8481 - components: - - type: Transform - pos: 16.5,33.5 - parent: 1 - - uid: 8482 - components: - - type: Transform - pos: 15.5,32.5 - parent: 1 - - uid: 8551 - components: - - type: Transform - pos: 2.5,73.5 - parent: 1 - - uid: 8804 - components: - - type: Transform - pos: 2.5,72.5 - parent: 1 -- proto: TableStone - entities: - - uid: 6605 - components: - - type: Transform - pos: -15.5,5.5 - parent: 1 - - uid: 6606 - components: - - type: Transform - pos: -16.5,5.5 - parent: 1 -- proto: TableWood - entities: - - uid: 668 - components: - - type: Transform - pos: -24.5,6.5 - parent: 1 - - uid: 773 - components: - - type: Transform - pos: -24.5,7.5 - parent: 1 - - uid: 827 - components: - - type: Transform - pos: -23.5,7.5 - parent: 1 - - uid: 829 - components: - - type: Transform - pos: -23.5,6.5 - parent: 1 - - uid: 885 - components: - - type: Transform - pos: 24.5,54.5 - parent: 1 - - uid: 1877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,64.5 - parent: 1 - - uid: 1908 - components: - - type: Transform - pos: 12.5,60.5 - parent: 1 - - uid: 1927 - components: - - type: Transform - pos: 9.5,59.5 - parent: 1 - - uid: 1928 - components: - - type: Transform - pos: 10.5,59.5 - parent: 1 - - uid: 1929 - components: - - type: Transform - pos: 11.5,59.5 - parent: 1 - - uid: 1930 - components: - - type: Transform - pos: 12.5,59.5 - parent: 1 - - uid: 1931 - components: - - type: Transform - pos: 9.5,60.5 - parent: 1 - - uid: 3175 - components: - - type: Transform - pos: 43.5,51.5 - parent: 1 - - uid: 3177 - components: - - type: Transform - pos: 43.5,50.5 - parent: 1 - - uid: 3178 - components: - - type: Transform - pos: 42.5,50.5 - parent: 1 - - uid: 3190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,46.5 - parent: 1 - - uid: 3736 - components: - - type: Transform - pos: 4.5,71.5 - parent: 1 - - uid: 4399 - components: - - type: Transform - pos: 29.5,49.5 - parent: 1 - - uid: 4400 - components: - - type: Transform - pos: 28.5,49.5 - parent: 1 - - uid: 4444 - components: - - type: Transform - pos: -35.5,54.5 - parent: 1 - - uid: 4445 - components: - - type: Transform - pos: -34.5,54.5 - parent: 1 - - uid: 4446 - components: - - type: Transform - pos: -33.5,54.5 - parent: 1 - - uid: 4447 - components: - - type: Transform - pos: -32.5,54.5 - parent: 1 - - uid: 4448 - components: - - type: Transform - pos: -32.5,55.5 - parent: 1 - - uid: 4450 - components: - - type: Transform - pos: -34.5,56.5 - parent: 1 - - uid: 4460 - components: - - type: Transform - pos: -29.5,53.5 - parent: 1 - - uid: 4461 - components: - - type: Transform - pos: -29.5,56.5 - parent: 1 - - uid: 4462 - components: - - type: Transform - pos: -33.5,52.5 - parent: 1 - - uid: 6782 - components: - - type: Transform - pos: 5.5,71.5 - parent: 1 - - uid: 6783 - components: - - type: Transform - pos: 6.5,71.5 - parent: 1 - - uid: 6784 - components: - - type: Transform - pos: 6.5,72.5 - parent: 1 - - uid: 6785 - components: - - type: Transform - pos: 6.5,73.5 - parent: 1 - - uid: 6786 - components: - - type: Transform - pos: 5.5,73.5 - parent: 1 - - uid: 6787 - components: - - type: Transform - pos: 4.5,73.5 - parent: 1 - - uid: 6788 - components: - - type: Transform - pos: 4.5,72.5 - parent: 1 - - uid: 6803 - components: - - type: Transform - pos: -8.5,74.5 - parent: 1 - - uid: 6807 - components: - - type: Transform - pos: -6.5,72.5 - parent: 1 - - uid: 6885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,49.5 - parent: 1 - - uid: 6886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,49.5 - parent: 1 - - uid: 6984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,57.5 - parent: 1 - - uid: 6985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,57.5 - parent: 1 - - uid: 7028 - components: - - type: Transform - pos: -25.5,3.5 - parent: 1 - - uid: 7271 - components: - - type: Transform - pos: 2.5,61.5 - parent: 1 - - uid: 7272 - components: - - type: Transform - pos: 3.5,61.5 - parent: 1 - - uid: 7273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,60.5 - parent: 1 - - uid: 7274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,64.5 - parent: 1 - - uid: 7276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,63.5 - parent: 1 - - uid: 7343 - components: - - type: Transform - pos: 24.5,53.5 - parent: 1 - - uid: 8410 - components: - - type: Transform - pos: 11.5,42.5 - parent: 1 - - uid: 8677 - components: - - type: Transform - pos: -0.5,3.5 - parent: 1 - - uid: 8679 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1 - - uid: 8682 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 - - uid: 8683 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1 - - uid: 8902 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 1 - - uid: 8903 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 1 - - uid: 8904 - components: - - type: Transform - pos: -4.5,2.5 - parent: 1 - - uid: 8905 - components: - - type: Transform - pos: -5.5,2.5 - parent: 1 - - uid: 8908 - components: - - type: Transform - pos: -11.5,2.5 - parent: 1 - - uid: 8909 - components: - - type: Transform - pos: -10.5,2.5 - parent: 1 - - uid: 8911 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 1 - - uid: 8912 - components: - - type: Transform - pos: 3.5,8.5 - parent: 1 - - uid: 8915 - components: - - type: Transform - pos: -4.5,11.5 - parent: 1 - - uid: 8953 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 1 - - uid: 8954 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 1 - - uid: 9021 - components: - - type: Transform - pos: -13.5,2.5 - parent: 1 - - uid: 9263 - components: - - type: Transform - pos: 23.5,11.5 - parent: 1 - - uid: 9264 - components: - - type: Transform - pos: 24.5,11.5 - parent: 1 - - uid: 9283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,10.5 - parent: 1 - - uid: 9328 - components: - - type: Transform - pos: -42.5,7.5 - parent: 1 - - uid: 9329 - components: - - type: Transform - pos: -43.5,7.5 - parent: 1 - - uid: 9330 - components: - - type: Transform - pos: -43.5,8.5 - parent: 1 - - uid: 9509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,57.5 - parent: 1 - - uid: 9510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,57.5 - parent: 1 - - uid: 9869 - components: - - type: Transform - pos: -35.5,-21.5 - parent: 1 - - uid: 10934 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 1 - - uid: 10935 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 1 - - uid: 13470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,64.5 - parent: 1 - - uid: 13475 - components: - - type: Transform - pos: -12.5,64.5 - parent: 1 -- proto: TaikoInstrument - entities: - - uid: 18323 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 1 -- proto: TegCenter - entities: - - uid: 2703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-44.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: TegCirculator - entities: - - uid: 2700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-44.5 - parent: 1 - - type: PointLight - color: '#FF3300FF' - - uid: 2702 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 1 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServer - entities: - - uid: 3583 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3587 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 3729 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3730 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 3982 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 4349 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 4391 - components: - - type: Transform - pos: 16.5,-15.5 - parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 4569 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 4703 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 6461 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7316 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 8436 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 18434 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 18435 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 18446 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 18447 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: TintedWindow - entities: - - uid: 536 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-2.5 - parent: 1 - - uid: 615 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,12.5 - parent: 1 - - uid: 665 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,3.5 - parent: 1 - - uid: 3169 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,46.5 - parent: 1 - - uid: 3170 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,42.5 - parent: 1 - - uid: 3183 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,47.5 - parent: 1 - - uid: 3230 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,48.5 - parent: 1 - - uid: 3241 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,48.5 - parent: 1 - - uid: 4009 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-6.5 - parent: 1 - - uid: 6937 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,41.5 - parent: 1 - - uid: 6938 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,45.5 - parent: 1 - - uid: 6939 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,46.5 - parent: 1 - - uid: 8923 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,12.5 - parent: 1 - - uid: 8990 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,12.5 - parent: 1 - - uid: 8991 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,11.5 - parent: 1 -- proto: TobaccoSeeds - entities: - - uid: 8629 - components: - - type: Transform - pos: -38.497883,49.42718 - parent: 1 -- proto: ToiletDirtyWater - entities: - - uid: 4314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,49.5 - parent: 1 - - uid: 10097 - components: - - type: Transform - pos: -17.5,-39.5 - parent: 1 - - uid: 10103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-39.5 - parent: 1 -- proto: ToiletEmpty - entities: - - uid: 6813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,70.5 - parent: 1 -- proto: TomDrumsInstrument - entities: - - uid: 548 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 1 -- proto: ToolboxArtistic - entities: - - uid: 8351 - components: - - type: Transform - pos: -27.20099,29.52882 - parent: 1 -- proto: ToolboxElectricalFilled - entities: - - uid: 8066 - components: - - type: Transform - pos: 7.4163632,77.75221 - parent: 1 - - uid: 8348 - components: - - type: Transform - pos: -28.01032,29.77007 - parent: 1 - - uid: 9096 - components: - - type: Transform - pos: 5.5191555,-21.48169 - parent: 1 - - uid: 9237 - components: - - type: Transform - pos: -22.433441,-13.274618 - parent: 1 - - uid: 9967 - components: - - type: Transform - pos: -24.569386,-24.282387 - parent: 1 -- proto: ToolboxEmergencyFilled - entities: - - uid: 7160 - components: - - type: Transform - pos: 13.566679,-41.456856 - parent: 1 - - uid: 8068 - components: - - type: Transform - pos: -3.4883027,83.51381 - parent: 1 - - uid: 8349 - components: - - type: Transform - pos: -27.32878,29.77007 - parent: 1 - - uid: 9968 - components: - - type: Transform - pos: -24.427397,-24.45268 - parent: 1 -- proto: ToolboxGoldFilled - entities: - - uid: 7255 - components: - - type: Transform - pos: 5.426082,45.55318 - parent: 1 - - type: ActiveUserInterface -- proto: ToolboxMechanicalFilled - entities: - - uid: 7159 - components: - - type: Transform - pos: 13.367895,-41.31494 - parent: 1 - - uid: 7828 - components: - - type: Transform - pos: -42.546696,26.738258 - parent: 1 - - uid: 8067 - components: - - type: Transform - pos: 7.70034,77.49678 - parent: 1 - - uid: 8350 - components: - - type: Transform - pos: -27.882532,29.52882 - parent: 1 - - uid: 9095 - components: - - type: Transform - pos: 5.3108225,-21.315023 - parent: 1 - - uid: 9238 - components: - - type: Transform - pos: -22.28761,-13.462118 - parent: 1 -- proto: ToyAi - entities: - - uid: 13382 - components: - - type: Transform - pos: -18.633104,28.672619 - parent: 1 -- proto: ToyAmongPequeno - entities: - - uid: 18428 - components: - - type: Transform - pos: 5.8128443,72.69741 - parent: 1 -- proto: ToyHonk - entities: - - uid: 8131 - components: - - type: Transform - pos: 12.534896,59.680813 - parent: 1 -- proto: ToyNuke - entities: - - uid: 8620 - components: - - type: Transform - pos: -38.454323,46.531727 - parent: 1 -- proto: TrashBag - entities: - - uid: 17272 - components: - - type: Transform - pos: -22.985895,-13.407032 - parent: 1 - - uid: 17273 - components: - - type: Transform - pos: -23.198877,-13.492178 - parent: 1 -- proto: trayScanner - entities: - - uid: 8711 - components: - - type: Transform - pos: -10.544276,-19.241236 - parent: 1 - - uid: 9086 - components: - - type: Transform - pos: 6.7274895,-21.335855 - parent: 1 - - uid: 9182 - components: - - type: Transform - pos: 12.564603,-11.337542 - parent: 1 - - uid: 9235 - components: - - type: Transform - pos: -22.793135,-11.262006 - parent: 1 -- proto: TubaInstrument - entities: - - uid: 6910 - components: - - type: Transform - pos: -9.5,-4.5 - parent: 1 -- proto: TwoWayLever - entities: - - uid: 4007 - components: - - type: Transform - pos: 18.5,-33.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3830: - - Left: Forward - - Right: Reverse - - Middle: Off - 4002: - - Left: Forward - - Right: Reverse - - Middle: Off - 4001: - - Left: Forward - - Right: Reverse - - Middle: Off - 4000: - - Left: Forward - - Right: Reverse - - Middle: Off - 3999: - - Left: Forward - - Right: Reverse - - Middle: Off - 3989: - - Left: Forward - - Right: Reverse - - Middle: Off - 3998: - - Left: Forward - - Right: Reverse - - Middle: Off - 3997: - - Left: Forward - - Right: Reverse - - Middle: Off - 3996: - - Left: Forward - - Right: Reverse - - Middle: Off - 3994: - - Left: Forward - - Right: Reverse - - Middle: Off - 3995: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 7808 - components: - - type: Transform - pos: -42.5,23.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 4134: - - Left: Forward - - Right: Reverse - - Middle: Off - 4130: - - Left: Forward - - Right: Reverse - - Middle: Off - 1767: - - Left: Forward - - Right: Reverse - - Middle: Off - 4110: - - Left: Forward - - Right: Reverse - - Middle: Off - 7820: - - Left: Forward - - Right: Reverse - - Middle: Off - 7818: - - Left: Forward - - Right: Reverse - - Middle: Off - 4115: - - Left: Forward - - Right: Reverse - - Middle: Off - 7821: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 7815 - components: - - type: Transform - pos: -43.5,0.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 252: - - Left: Forward - - Right: Reverse - - Middle: Off - 2723: - - Left: Forward - - Right: Reverse - - Middle: Off - 7254: - - Left: Forward - - Right: Reverse - - Middle: Off - 7291: - - Left: Forward - - Right: Reverse - - Middle: Off - 7704: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 7918 - components: - - type: Transform - pos: -44.5,23.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 7821: - - Left: Forward - - Right: Reverse - - Middle: Off - 7820: - - Left: Forward - - Right: Reverse - - Middle: Off - 1767: - - Left: Forward - - Right: Reverse - - Middle: Off - 4134: - - Left: Forward - - Right: Reverse - - Middle: Off - 4115: - - Left: Forward - - Right: Reverse - - Middle: Off - 7818: - - Left: Forward - - Right: Reverse - - Middle: Off - 4110: - - Left: Forward - - Right: Reverse - - Middle: Off - 4130: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 8179 - components: - - type: Transform - pos: -41.5,5.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2127: - - Left: Forward - - Right: Reverse - - Middle: Off - 461: - - Left: Forward - - Right: Reverse - - Middle: Off - 460: - - Left: Forward - - Right: Reverse - - Middle: Off - 459: - - Left: Forward - - Right: Reverse - - Middle: Off - 2722: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 9364 - components: - - type: Transform - pos: -37.5,4.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 4147: - - Left: Forward - - Right: Reverse - - Middle: Off - 4146: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UniformPrinter - entities: - - uid: 2901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,6.5 - parent: 1 -- proto: UprightPianoInstrument - entities: - - uid: 4452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,52.5 - parent: 1 -- proto: Vaccinator - entities: - - uid: 4081 - components: - - type: Transform - pos: 5.5,34.5 - parent: 1 -- proto: VariantCubeBox - entities: - - uid: 7121 - components: - - type: Transform - pos: -13.5745945,28.466234 - parent: 1 -- proto: VehicleJanicartDestroyed - entities: - - uid: 16379 - components: - - type: Transform - pos: 24.5,58.5 - parent: 1 -- proto: VehicleKeyATV - entities: - - uid: 3678 - components: - - type: Transform - pos: 16.517023,19.56277 - parent: 1 -- proto: VehicleKeyJanicart - entities: - - uid: 16378 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 1 -- proto: VehicleKeySecway - entities: - - uid: 8244 - components: - - type: Transform - pos: -14.194751,50.769012 - parent: 1 - - uid: 8245 - components: - - type: Transform - pos: -14.257251,50.612762 - parent: 1 -- proto: VendingBarDrobe - entities: - - uid: 4033 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -6.5,11.5 - parent: 1 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 7097 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -10.5,-17.5 - parent: 1 -- proto: VendingMachineBooze - entities: - - uid: 4041 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -11.5,8.5 - parent: 1 - - uid: 4449 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -35.5,56.5 - parent: 1 -- proto: VendingMachineCargoDrobe - entities: - - uid: 9159 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -36.5,9.5 - parent: 1 -- proto: VendingMachineCart - entities: - - uid: 2500 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 24.5,7.5 - parent: 1 -- proto: VendingMachineChang - entities: - - uid: 9438 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 29.5,-5.5 - parent: 1 - - uid: 9447 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -48.5,12.5 - parent: 1 -- proto: VendingMachineChapel - entities: - - uid: 7342 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 26.5,54.5 - parent: 1 -- proto: VendingMachineChefDrobe - entities: - - uid: 4398 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 10.5,-0.5 - parent: 1 -- proto: VendingMachineChefvend - entities: - - uid: 9000 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 9.5,-0.5 - parent: 1 -- proto: VendingMachineChemDrobe - entities: - - uid: 3614 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 2.5,25.5 - parent: 1 -- proto: VendingMachineChemicals - entities: - - uid: 7777 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 7.5,22.5 - parent: 1 -- proto: VendingMachineCigs - entities: - - uid: 1281 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -46.5,16.5 - parent: 1 - - uid: 2010 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 35.5,6.5 - parent: 1 - - uid: 8089 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 6.5,78.5 - parent: 1 - - uid: 8996 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 3.5,11.5 - parent: 1 - - uid: 9401 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -18.5,-19.5 - parent: 1 - - uid: 9436 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 27.5,27.5 - parent: 1 - - uid: 17383 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -50.5,35.5 - parent: 1 -- proto: VendingMachineClothing - entities: - - uid: 6087 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 20.5,43.5 - parent: 1 -- proto: VendingMachineCoffee - entities: - - uid: 8439 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 4.5,57.5 - parent: 1 - - uid: 9440 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 29.5,-3.5 - parent: 1 - - uid: 9554 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -32.5,-9.5 - parent: 1 -- proto: VendingMachineCola - entities: - - uid: 9432 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 48.5,43.5 - parent: 1 - - uid: 9434 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 27.5,29.5 - parent: 1 - - uid: 9446 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -30.5,21.5 - parent: 1 -- proto: VendingMachineCondiments - entities: - - uid: 6699 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 3.5,1.5 - parent: 1 -- proto: VendingMachineCuraDrobe - entities: - - uid: 8941 - components: - - type: Transform - pos: -28.5,5.5 - parent: 1 -- proto: VendingMachineDetDrobe - entities: - - uid: 6853 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 40.5,49.5 - parent: 1 -- proto: VendingMachineDinnerware - entities: - - uid: 4394 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 12.5,-3.5 - parent: 1 -- proto: VendingMachineDiscount - entities: - - uid: 4345 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -30.5,20.5 - parent: 1 - - uid: 5812 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 48.5,44.5 - parent: 1 - - uid: 9464 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 47.5,12.5 - parent: 1 -- proto: VendingMachineDonut - entities: - - uid: 9439 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 29.5,-4.5 - parent: 1 - - uid: 9557 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -31.5,-9.5 - parent: 1 -- proto: VendingMachineEngiDrobe - entities: - - uid: 18427 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 7.5,-17.5 - parent: 1 -- proto: VendingMachineEngivend - entities: - - uid: 4183 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 13.5,-17.5 - parent: 1 - - uid: 7096 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -11.5,-17.5 - parent: 1 -- proto: VendingMachineGames - entities: - - uid: 8592 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -28.5,11.5 - parent: 1 - - uid: 9909 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -20.5,-33.5 - parent: 1 -- proto: VendingMachineGeneDrobe - entities: - - uid: 8510 - components: - - type: Transform - pos: 18.5,26.5 - parent: 1 -- proto: VendingMachineHappyHonk - entities: - - uid: 9016 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 12.5,-4.5 - parent: 1 -- proto: VendingMachineHydrobe - entities: - - uid: 4220 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 13.5,11.5 - parent: 1 -- proto: VendingMachineJaniDrobe - entities: - - uid: 9259 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 22.5,-2.5 - parent: 1 -- proto: VendingMachineLawDrobe - entities: - - uid: 7277 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 3.5,64.5 - parent: 1 -- proto: VendingMachineMedical - entities: - - uid: 8674 - components: - - type: Transform - pos: 12.5,26.5 - parent: 1 -- proto: VendingMachineMediDrobe - entities: - - uid: 8511 - components: - - type: Transform - pos: 14.5,29.5 - parent: 1 -- proto: VendingMachineNutri - entities: - - uid: 7263 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 7.5,11.5 - parent: 1 - - uid: 10961 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 34.5,-15.5 - parent: 1 -- proto: VendingMachineRoboDrobe - entities: - - uid: 2634 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -18.5,30.5 - parent: 1 -- proto: VendingMachineRobotics - entities: - - uid: 2652 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -17.5,30.5 - parent: 1 -- proto: VendingMachineSalvage - entities: - - uid: 4108 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -36.5,28.5 - parent: 1 -- proto: VendingMachineSciDrobe - entities: - - uid: 1069 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -19.5,22.5 - parent: 1 -- proto: VendingMachineSec - entities: - - uid: 3415 - components: - - type: Transform - pos: -11.5,57.5 - parent: 1 -- proto: VendingMachineSecDrobe - entities: - - uid: 2653 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -16.5,40.5 - parent: 1 -- proto: VendingMachineSeeds - entities: - - uid: 9003 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 6.5,11.5 - parent: 1 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 4329 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -35.5,49.5 - parent: 1 -- proto: VendingMachineSnack - entities: - - uid: 9435 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 27.5,28.5 - parent: 1 - - uid: 9463 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 47.5,-6.5 - parent: 1 -- proto: VendingMachineSovietSoda - entities: - - uid: 6662 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -38.5,-14.5 - parent: 1 -- proto: VendingMachineSustenance - entities: - - uid: 653 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -33.5,42.5 - parent: 1 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 4219 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 13.5,-37.5 - parent: 1 - - uid: 6915 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 27.5,34.5 - parent: 1 - - uid: 7116 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -8.5,-11.5 - parent: 1 - - uid: 7806 - components: - - type: Transform - pos: -40.5,28.5 - parent: 1 - - uid: 8740 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -12.5,-39.5 - parent: 1 -- proto: VendingMachineTheater - entities: - - uid: 4437 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -27.5,34.5 - parent: 1 - - uid: 6086 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 19.5,43.5 - parent: 1 -- proto: VendingMachineVendomat - entities: - - uid: 4438 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -28.5,34.5 - parent: 1 - - uid: 18432 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 18.5,-23.5 - parent: 1 -- proto: VendingMachineViroDrobe - entities: - - uid: 4083 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 4.5,34.5 - parent: 1 -- proto: VendingMachineWinter - entities: - - uid: 7769 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 21.5,43.5 - parent: 1 -- proto: VendingMachineYouTool - entities: - - uid: 4182 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 10.5,-17.5 - parent: 1 - - uid: 4436 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -26.5,34.5 - parent: 1 -- proto: VibraphoneInstrument - entities: - - uid: 8177 - components: - - type: Transform - pos: -17.5,-40.5 - parent: 1 - - uid: 14022 - components: - - type: Transform - pos: 20.5,50.5 - parent: 1 -- proto: WallmountTelescreen - entities: - - uid: 8359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,51.5 - parent: 1 -- proto: WallmountTelevision - entities: - - uid: 17928 - components: - - type: Transform - pos: 27.5,24.5 - parent: 1 - - uid: 17929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-10.5 - parent: 1 - - uid: 17931 - components: - - type: Transform - pos: 10.5,39.5 - parent: 1 - - uid: 17932 - components: - - type: Transform - pos: -26.5,39.5 - parent: 1 - - uid: 17933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,45.5 - parent: 1 - - uid: 17934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,65.5 - parent: 1 - - uid: 17935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,12.5 - parent: 1 - - uid: 17936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 1 - - uid: 17937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-10.5 - parent: 1 -- proto: WallReinforced - entities: - - uid: 3 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,18.5 - parent: 1 - - uid: 6 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,7.5 - parent: 1 - - uid: 7 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,18.5 - parent: 1 - - uid: 10 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,18.5 - parent: 1 - - uid: 12 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,33.5 - parent: 1 - - uid: 14 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 44.5,16.5 - parent: 1 - - uid: 15 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 43.5,16.5 - parent: 1 - - uid: 24 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,16.5 - parent: 1 - - uid: 25 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,16.5 - parent: 1 - - uid: 27 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,21.5 - parent: 1 - - uid: 28 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,20.5 - parent: 1 - - uid: 40 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,31.5 - parent: 1 - - uid: 44 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,12.5 - parent: 1 - - uid: 45 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,12.5 - parent: 1 - - uid: 46 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 43.5,12.5 - parent: 1 - - uid: 47 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 44.5,12.5 - parent: 1 - - uid: 49 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 50.5,12.5 - parent: 1 - - uid: 51 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 50.5,16.5 - parent: 1 - - uid: 55 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,16.5 - parent: 1 - - uid: 56 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,17.5 - parent: 1 - - uid: 63 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,35.5 - parent: 1 - - uid: 64 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,14.5 - parent: 1 - - uid: 65 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,14.5 - parent: 1 - - uid: 66 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,14.5 - parent: 1 - - uid: 67 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,16.5 - parent: 1 - - uid: 68 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,12.5 - parent: 1 - - uid: 71 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,35.5 - parent: 1 - - uid: 72 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,33.5 - parent: 1 - - uid: 73 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,35.5 - parent: 1 - - uid: 74 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,35.5 - parent: 1 - - uid: 75 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,34.5 - parent: 1 - - uid: 76 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,33.5 - parent: 1 - - uid: 83 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,39.5 - parent: 1 - - uid: 84 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,35.5 - parent: 1 - - uid: 85 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,37.5 - parent: 1 - - uid: 86 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,37.5 - parent: 1 - - uid: 88 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,37.5 - parent: 1 - - uid: 91 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 47.5,11.5 - parent: 1 - - uid: 93 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 51.5,-15.5 - parent: 1 - - uid: 94 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 52.5,-6.5 - parent: 1 - - uid: 99 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,11.5 - parent: 1 - - uid: 107 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,11.5 - parent: 1 - - uid: 108 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-10.5 - parent: 1 - - uid: 110 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,0.5 - parent: 1 - - uid: 114 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,6.5 - parent: 1 - - uid: 115 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,0.5 - parent: 1 - - uid: 119 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - - uid: 120 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,11.5 - parent: 1 - - uid: 121 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,11.5 - parent: 1 - - uid: 122 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,7.5 - parent: 1 - - uid: 123 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,8.5 - parent: 1 - - uid: 124 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,10.5 - parent: 1 - - uid: 125 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,11.5 - parent: 1 - - uid: 132 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-3.5 - parent: 1 - - uid: 133 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-4.5 - parent: 1 - - uid: 134 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-5.5 - parent: 1 - - uid: 135 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-5.5 - parent: 1 - - uid: 139 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-18.5 - parent: 1 - - uid: 140 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-18.5 - parent: 1 - - uid: 141 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-18.5 - parent: 1 - - uid: 144 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,16.5 - parent: 1 - - uid: 145 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,16.5 - parent: 1 - - uid: 146 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,17.5 - parent: 1 - - uid: 148 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-10.5 - parent: 1 - - uid: 149 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-6.5 - parent: 1 - - uid: 150 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-6.5 - parent: 1 - - uid: 151 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-5.5 - parent: 1 - - uid: 154 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,6.5 - parent: 1 - - uid: 167 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,11.5 - parent: 1 - - uid: 170 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 1 - - uid: 171 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,0.5 - parent: 1 - - uid: 172 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-1.5 - parent: 1 - - uid: 174 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 1 - - uid: 176 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,8.5 - parent: 1 - - uid: 180 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,8.5 - parent: 1 - - uid: 212 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,25.5 - parent: 1 - - uid: 213 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,26.5 - parent: 1 - - uid: 214 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 1 - - uid: 221 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,35.5 - parent: 1 - - uid: 230 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,12.5 - parent: 1 - - uid: 231 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,12.5 - parent: 1 - - uid: 235 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 47.5,-15.5 - parent: 1 - - uid: 237 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,3.5 - parent: 1 - - uid: 238 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,3.5 - parent: 1 - - uid: 246 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,12.5 - parent: 1 - - uid: 247 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-6.5 - parent: 1 - - uid: 260 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-5.5 - parent: 1 - - uid: 270 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,0.5 - parent: 1 - - uid: 278 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-15.5 - parent: 1 - - uid: 280 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-6.5 - parent: 1 - - uid: 281 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-3.5 - parent: 1 - - uid: 282 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,12.5 - parent: 1 - - uid: 283 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,12.5 - parent: 1 - - uid: 284 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,12.5 - parent: 1 - - uid: 285 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,12.5 - parent: 1 - - uid: 289 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,57.5 - parent: 1 - - uid: 290 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,84.5 - parent: 1 - - uid: 291 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,83.5 - parent: 1 - - uid: 292 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,83.5 - parent: 1 - - uid: 293 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,81.5 - parent: 1 - - uid: 294 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,81.5 - parent: 1 - - uid: 295 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,78.5 - parent: 1 - - uid: 296 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,78.5 - parent: 1 - - uid: 298 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,78.5 - parent: 1 - - uid: 300 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,81.5 - parent: 1 - - uid: 302 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,83.5 - parent: 1 - - uid: 303 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,83.5 - parent: 1 - - uid: 304 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,81.5 - parent: 1 - - uid: 305 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,84.5 - parent: 1 - - uid: 315 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,84.5 - parent: 1 - - uid: 328 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,75.5 - parent: 1 - - uid: 329 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,75.5 - parent: 1 - - uid: 330 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,75.5 - parent: 1 - - uid: 331 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,75.5 - parent: 1 - - uid: 340 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,75.5 - parent: 1 - - uid: 341 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,75.5 - parent: 1 - - uid: 342 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,75.5 - parent: 1 - - uid: 343 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,75.5 - parent: 1 - - uid: 344 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,72.5 - parent: 1 - - uid: 345 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,75.5 - parent: 1 - - uid: 349 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,71.5 - parent: 1 - - uid: 350 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,70.5 - parent: 1 - - uid: 351 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,71.5 - parent: 1 - - uid: 352 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,71.5 - parent: 1 - - uid: 353 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,75.5 - parent: 1 - - uid: 354 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,75.5 - parent: 1 - - uid: 355 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,74.5 - parent: 1 - - uid: 356 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,73.5 - parent: 1 - - uid: 357 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,74.5 - parent: 1 - - uid: 358 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,73.5 - parent: 1 - - uid: 359 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,75.5 - parent: 1 - - uid: 360 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,69.5 - parent: 1 - - uid: 361 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,69.5 - parent: 1 - - uid: 368 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,72.5 - parent: 1 - - uid: 369 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,71.5 - parent: 1 - - uid: 370 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,71.5 - parent: 1 - - uid: 371 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,72.5 - parent: 1 - - uid: 372 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,71.5 - parent: 1 - - uid: 373 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,70.5 - parent: 1 - - uid: 377 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,71.5 - parent: 1 - - uid: 378 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,69.5 - parent: 1 - - uid: 379 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,69.5 - parent: 1 - - uid: 380 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,71.5 - parent: 1 - - uid: 381 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,59.5 - parent: 1 - - uid: 382 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,60.5 - parent: 1 - - uid: 383 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,65.5 - parent: 1 - - uid: 384 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,65.5 - parent: 1 - - uid: 385 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,65.5 - parent: 1 - - uid: 386 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,66.5 - parent: 1 - - uid: 387 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,59.5 - parent: 1 - - uid: 388 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,69.5 - parent: 1 - - uid: 389 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,70.5 - parent: 1 - - uid: 396 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,69.5 - parent: 1 - - uid: 398 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,78.5 - parent: 1 - - uid: 399 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,75.5 - parent: 1 - - uid: 422 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,59.5 - parent: 1 - - uid: 423 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,59.5 - parent: 1 - - uid: 424 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,59.5 - parent: 1 - - uid: 425 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,57.5 - parent: 1 - - uid: 426 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,57.5 - parent: 1 - - uid: 428 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,55.5 - parent: 1 - - uid: 429 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,53.5 - parent: 1 - - uid: 430 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,52.5 - parent: 1 - - uid: 431 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 44.5,52.5 - parent: 1 - - uid: 432 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 44.5,49.5 - parent: 1 - - uid: 433 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 47.5,49.5 - parent: 1 - - uid: 434 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 47.5,45.5 - parent: 1 - - uid: 435 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 49.5,45.5 - parent: 1 - - uid: 436 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 50.5,39.5 - parent: 1 - - uid: 437 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 49.5,39.5 - parent: 1 - - uid: 438 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 49.5,40.5 - parent: 1 - - uid: 443 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 1 - - uid: 451 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,0.5 - parent: 1 - - uid: 452 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,0.5 - parent: 1 - - uid: 453 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - - uid: 454 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,0.5 - parent: 1 - - uid: 455 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-5.5 - parent: 1 - - uid: 457 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 - parent: 1 - - uid: 458 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 1 - - uid: 553 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,39.5 - parent: 1 - - uid: 554 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,39.5 - parent: 1 - - uid: 620 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,39.5 - parent: 1 - - uid: 621 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,39.5 - parent: 1 - - uid: 766 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 43.5,-6.5 - parent: 1 - - uid: 791 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,16.5 - parent: 1 - - uid: 792 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,16.5 - parent: 1 - - uid: 793 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,20.5 - parent: 1 - - uid: 794 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,20.5 - parent: 1 - - uid: 795 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,16.5 - parent: 1 - - uid: 803 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,20.5 - parent: 1 - - uid: 804 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,19.5 - parent: 1 - - uid: 805 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,20.5 - parent: 1 - - uid: 806 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,19.5 - parent: 1 - - uid: 811 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,21.5 - parent: 1 - - uid: 812 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,21.5 - parent: 1 - - uid: 813 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,25.5 - parent: 1 - - uid: 814 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,25.5 - parent: 1 - - uid: 815 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,25.5 - parent: 1 - - uid: 816 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,26.5 - parent: 1 - - uid: 817 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,25.5 - parent: 1 - - uid: 818 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,26.5 - parent: 1 - - uid: 819 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,25.5 - parent: 1 - - uid: 820 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,26.5 - parent: 1 - - uid: 821 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,26.5 - parent: 1 - - uid: 823 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,27.5 - parent: 1 - - uid: 828 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,29.5 - parent: 1 - - uid: 830 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,27.5 - parent: 1 - - uid: 831 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,31.5 - parent: 1 - - uid: 832 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,31.5 - parent: 1 - - uid: 833 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,27.5 - parent: 1 - - uid: 834 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,31.5 - parent: 1 - - uid: 835 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,44.5 - parent: 1 - - uid: 836 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,42.5 - parent: 1 - - uid: 837 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,41.5 - parent: 1 - - uid: 838 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 41.5,45.5 - parent: 1 - - uid: 839 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 42.5,45.5 - parent: 1 - - uid: 840 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 44.5,45.5 - parent: 1 - - uid: 841 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 45.5,45.5 - parent: 1 - - uid: 842 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 43.5,45.5 - parent: 1 - - uid: 844 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 46.5,45.5 - parent: 1 - - uid: 870 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,35.5 - parent: 1 - - uid: 882 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,53.5 - parent: 1 - - uid: 884 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,56.5 - parent: 1 - - uid: 887 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,56.5 - parent: 1 - - uid: 927 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,53.5 - parent: 1 - - uid: 928 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,56.5 - parent: 1 - - uid: 929 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,56.5 - parent: 1 - - uid: 972 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,71.5 - parent: 1 - - uid: 973 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,66.5 - parent: 1 - - uid: 974 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,65.5 - parent: 1 - - uid: 975 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,65.5 - parent: 1 - - uid: 976 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,65.5 - parent: 1 - - uid: 977 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,60.5 - parent: 1 - - uid: 978 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,59.5 - parent: 1 - - uid: 979 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,59.5 - parent: 1 - - uid: 980 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,59.5 - parent: 1 - - uid: 981 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,57.5 - parent: 1 - - uid: 982 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,57.5 - parent: 1 - - uid: 983 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,57.5 - parent: 1 - - uid: 984 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,55.5 - parent: 1 - - uid: 986 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,52.5 - parent: 1 - - uid: 987 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,52.5 - parent: 1 - - uid: 988 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,49.5 - parent: 1 - - uid: 989 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,49.5 - parent: 1 - - uid: 990 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,45.5 - parent: 1 - - uid: 991 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,45.5 - parent: 1 - - uid: 992 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,40.5 - parent: 1 - - uid: 993 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,39.5 - parent: 1 - - uid: 994 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,39.5 - parent: 1 - - uid: 995 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,32.5 - parent: 1 - - uid: 996 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,33.5 - parent: 1 - - uid: 997 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,34.5 - parent: 1 - - uid: 998 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,35.5 - parent: 1 - - uid: 999 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,35.5 - parent: 1 - - uid: 1000 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,35.5 - parent: 1 - - uid: 1001 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,31.5 - parent: 1 - - uid: 1004 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,34.5 - parent: 1 - - uid: 1005 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,35.5 - parent: 1 - - uid: 1006 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,35.5 - parent: 1 - - uid: 1007 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,35.5 - parent: 1 - - uid: 1008 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,39.5 - parent: 1 - - uid: 1009 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,43.5 - parent: 1 - - uid: 1010 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,43.5 - parent: 1 - - uid: 1011 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,39.5 - parent: 1 - - uid: 1012 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,39.5 - parent: 1 - - uid: 1013 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,43.5 - parent: 1 - - uid: 1014 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,39.5 - parent: 1 - - uid: 1015 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,43.5 - parent: 1 - - uid: 1016 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,39.5 - parent: 1 - - uid: 1017 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,43.5 - parent: 1 - - uid: 1018 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,42.5 - parent: 1 - - uid: 1019 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,41.5 - parent: 1 - - uid: 1020 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,40.5 - parent: 1 - - uid: 1021 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,42.5 - parent: 1 - - uid: 1022 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,41.5 - parent: 1 - - uid: 1023 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,40.5 - parent: 1 - - uid: 1024 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,42.5 - parent: 1 - - uid: 1025 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,41.5 - parent: 1 - - uid: 1026 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,40.5 - parent: 1 - - uid: 1027 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,42.5 - parent: 1 - - uid: 1028 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,41.5 - parent: 1 - - uid: 1029 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,40.5 - parent: 1 - - uid: 1030 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,42.5 - parent: 1 - - uid: 1031 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,41.5 - parent: 1 - - uid: 1032 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,40.5 - parent: 1 - - uid: 1033 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,35.5 - parent: 1 - - uid: 1034 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,32.5 - parent: 1 - - uid: 1035 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,34.5 - parent: 1 - - uid: 1036 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,34.5 - parent: 1 - - uid: 1037 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,33.5 - parent: 1 - - uid: 1043 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,32.5 - parent: 1 - - uid: 1053 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,35.5 - parent: 1 - - uid: 1054 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,35.5 - parent: 1 - - uid: 1055 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,35.5 - parent: 1 - - uid: 1056 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,35.5 - parent: 1 - - uid: 1057 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,34.5 - parent: 1 - - uid: 1058 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,32.5 - parent: 1 - - uid: 1060 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,35.5 - parent: 1 - - uid: 1062 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,35.5 - parent: 1 - - uid: 1067 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,29.5 - parent: 1 - - uid: 1072 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,18.5 - parent: 1 - - uid: 1074 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,28.5 - parent: 1 - - uid: 1075 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,27.5 - parent: 1 - - uid: 1076 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,33.5 - parent: 1 - - uid: 1094 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,29.5 - parent: 1 - - uid: 1098 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,29.5 - parent: 1 - - uid: 1101 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,26.5 - parent: 1 - - uid: 1103 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,26.5 - parent: 1 - - uid: 1107 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,18.5 - parent: 1 - - uid: 1110 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,26.5 - parent: 1 - - uid: 1111 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,26.5 - parent: 1 - - uid: 1118 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,16.5 - parent: 1 - - uid: 1119 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,16.5 - parent: 1 - - uid: 1120 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,16.5 - parent: 1 - - uid: 1121 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,19.5 - parent: 1 - - uid: 1122 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,20.5 - parent: 1 - - uid: 1123 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,20.5 - parent: 1 - - uid: 1124 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,20.5 - parent: 1 - - uid: 1125 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,20.5 - parent: 1 - - uid: 1126 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,16.5 - parent: 1 - - uid: 1127 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,16.5 - parent: 1 - - uid: 1128 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,17.5 - parent: 1 - - uid: 1129 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,16.5 - parent: 1 - - uid: 1136 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,16.5 - parent: 1 - - uid: 1137 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,16.5 - parent: 1 - - uid: 1138 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,17.5 - parent: 1 - - uid: 1141 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,21.5 - parent: 1 - - uid: 1142 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,22.5 - parent: 1 - - uid: 1146 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,20.5 - parent: 1 - - uid: 1147 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,21.5 - parent: 1 - - uid: 1164 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,24.5 - parent: 1 - - uid: 1165 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,23.5 - parent: 1 - - uid: 1168 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,26.5 - parent: 1 - - uid: 1169 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,61.5 - parent: 1 - - uid: 1170 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,21.5 - parent: 1 - - uid: 1171 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,22.5 - parent: 1 - - uid: 1172 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,21.5 - parent: 1 - - uid: 1173 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,20.5 - parent: 1 - - uid: 1175 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,16.5 - parent: 1 - - uid: 1177 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,18.5 - parent: 1 - - uid: 1178 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,24.5 - parent: 1 - - uid: 1179 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,21.5 - parent: 1 - - uid: 1180 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,24.5 - parent: 1 - - uid: 1181 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,24.5 - parent: 1 - - uid: 1182 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,24.5 - parent: 1 - - uid: 1183 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,24.5 - parent: 1 - - uid: 1184 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,25.5 - parent: 1 - - uid: 1185 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,26.5 - parent: 1 - - uid: 1186 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,26.5 - parent: 1 - - uid: 1187 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,26.5 - parent: 1 - - uid: 1188 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,26.5 - parent: 1 - - uid: 1189 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,23.5 - parent: 1 - - uid: 1190 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,22.5 - parent: 1 - - uid: 1191 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,21.5 - parent: 1 - - uid: 1192 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,20.5 - parent: 1 - - uid: 1193 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,19.5 - parent: 1 - - uid: 1194 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,18.5 - parent: 1 - - uid: 1195 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,18.5 - parent: 1 - - uid: 1196 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,35.5 - parent: 1 - - uid: 1197 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,29.5 - parent: 1 - - uid: 1226 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,30.5 - parent: 1 - - uid: 1227 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,31.5 - parent: 1 - - uid: 1230 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,32.5 - parent: 1 - - uid: 1231 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,33.5 - parent: 1 - - uid: 1232 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,34.5 - parent: 1 - - uid: 1233 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,31.5 - parent: 1 - - uid: 1236 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,31.5 - parent: 1 - - uid: 1237 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,35.5 - parent: 1 - - uid: 1242 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,31.5 - parent: 1 - - uid: 1268 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,35.5 - parent: 1 - - uid: 1269 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,35.5 - parent: 1 - - uid: 1270 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,35.5 - parent: 1 - - uid: 1271 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,34.5 - parent: 1 - - uid: 1274 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,16.5 - parent: 1 - - uid: 1275 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,16.5 - parent: 1 - - uid: 1276 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,14.5 - parent: 1 - - uid: 1277 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,14.5 - parent: 1 - - uid: 1285 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,35.5 - parent: 1 - - uid: 1286 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,35.5 - parent: 1 - - uid: 1287 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,37.5 - parent: 1 - - uid: 1288 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,39.5 - parent: 1 - - uid: 1289 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,37.5 - parent: 1 - - uid: 1307 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,23.5 - parent: 1 - - uid: 1308 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,23.5 - parent: 1 - - uid: 1315 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,39.5 - parent: 1 - - uid: 1318 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,39.5 - parent: 1 - - uid: 1319 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,40.5 - parent: 1 - - uid: 1320 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,41.5 - parent: 1 - - uid: 1321 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,42.5 - parent: 1 - - uid: 1322 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,43.5 - parent: 1 - - uid: 1335 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,44.5 - parent: 1 - - uid: 1336 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,45.5 - parent: 1 - - uid: 1337 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,46.5 - parent: 1 - - uid: 1338 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,47.5 - parent: 1 - - uid: 1339 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,49.5 - parent: 1 - - uid: 1340 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,51.5 - parent: 1 - - uid: 1341 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,51.5 - parent: 1 - - uid: 1342 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,51.5 - parent: 1 - - uid: 1343 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,55.5 - parent: 1 - - uid: 1344 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,51.5 - parent: 1 - - uid: 1345 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,51.5 - parent: 1 - - uid: 1348 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,58.5 - parent: 1 - - uid: 1349 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,58.5 - parent: 1 - - uid: 1350 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,58.5 - parent: 1 - - uid: 1353 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,51.5 - parent: 1 - - uid: 1354 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,54.5 - parent: 1 - - uid: 1355 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,57.5 - parent: 1 - - uid: 1356 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,58.5 - parent: 1 - - uid: 1357 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,58.5 - parent: 1 - - uid: 1358 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,58.5 - parent: 1 - - uid: 1364 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,62.5 - parent: 1 - - uid: 1365 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,49.5 - parent: 1 - - uid: 1366 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,47.5 - parent: 1 - - uid: 1395 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,44.5 - parent: 1 - - uid: 1396 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,45.5 - parent: 1 - - uid: 1397 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,46.5 - parent: 1 - - uid: 1398 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,49.5 - parent: 1 - - uid: 1399 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,50.5 - parent: 1 - - uid: 1400 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,51.5 - parent: 1 - - uid: 1401 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,52.5 - parent: 1 - - uid: 1402 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,53.5 - parent: 1 - - uid: 1403 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,47.5 - parent: 1 - - uid: 1404 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,47.5 - parent: 1 - - uid: 1405 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,51.5 - parent: 1 - - uid: 1406 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,51.5 - parent: 1 - - uid: 1420 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,54.5 - parent: 1 - - uid: 1421 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,54.5 - parent: 1 - - uid: 1422 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,54.5 - parent: 1 - - uid: 1423 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,54.5 - parent: 1 - - uid: 1424 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,57.5 - parent: 1 - - uid: 1425 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,57.5 - parent: 1 - - uid: 1426 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,56.5 - parent: 1 - - uid: 1428 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,61.5 - parent: 1 - - uid: 1429 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,60.5 - parent: 1 - - uid: 1430 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,58.5 - parent: 1 - - uid: 1431 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,61.5 - parent: 1 - - uid: 1432 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,61.5 - parent: 1 - - uid: 1433 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,60.5 - parent: 1 - - uid: 1434 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,61.5 - parent: 1 - - uid: 1435 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,59.5 - parent: 1 - - uid: 1436 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,62.5 - parent: 1 - - uid: 1437 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,57.5 - parent: 1 - - uid: 1439 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,61.5 - parent: 1 - - uid: 1445 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,66.5 - parent: 1 - - uid: 1446 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,65.5 - parent: 1 - - uid: 1447 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,64.5 - parent: 1 - - uid: 1452 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,63.5 - parent: 1 - - uid: 1453 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,49.5 - parent: 1 - - uid: 1454 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,46.5 - parent: 1 - - uid: 1455 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,46.5 - parent: 1 - - uid: 1456 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,46.5 - parent: 1 - - uid: 1457 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,49.5 - parent: 1 - - uid: 1458 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,49.5 - parent: 1 - - uid: 1459 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,46.5 - parent: 1 - - uid: 1460 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,45.5 - parent: 1 - - uid: 1464 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,41.5 - parent: 1 - - uid: 1465 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,41.5 - parent: 1 - - uid: 1466 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,41.5 - parent: 1 - - uid: 1467 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,41.5 - parent: 1 - - uid: 1468 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,40.5 - parent: 1 - - uid: 1470 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,41.5 - parent: 1 - - uid: 1471 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,41.5 - parent: 1 - - uid: 1476 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,44.5 - parent: 1 - - uid: 1477 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,49.5 - parent: 1 - - uid: 1478 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,51.5 - parent: 1 - - uid: 1479 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,50.5 - parent: 1 - - uid: 1480 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,51.5 - parent: 1 - - uid: 1481 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,51.5 - parent: 1 - - uid: 1482 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,51.5 - parent: 1 - - uid: 1483 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,51.5 - parent: 1 - - uid: 1484 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,51.5 - parent: 1 - - uid: 1485 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,51.5 - parent: 1 - - uid: 1486 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,51.5 - parent: 1 - - uid: 1487 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,51.5 - parent: 1 - - uid: 1488 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,51.5 - parent: 1 - - uid: 1489 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,51.5 - parent: 1 - - uid: 1490 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,51.5 - parent: 1 - - uid: 1491 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,51.5 - parent: 1 - - uid: 1492 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,51.5 - parent: 1 - - uid: 1493 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,50.5 - parent: 1 - - uid: 1494 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,49.5 - parent: 1 - - uid: 1495 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,48.5 - parent: 1 - - uid: 1496 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,47.5 - parent: 1 - - uid: 1497 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,49.5 - parent: 1 - - uid: 1498 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,49.5 - parent: 1 - - uid: 1499 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,48.5 - parent: 1 - - uid: 1502 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,47.5 - parent: 1 - - uid: 1505 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,41.5 - parent: 1 - - uid: 1506 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,40.5 - parent: 1 - - uid: 1507 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,39.5 - parent: 1 - - uid: 1508 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,39.5 - parent: 1 - - uid: 1509 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,39.5 - parent: 1 - - uid: 1510 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,39.5 - parent: 1 - - uid: 1512 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,45.5 - parent: 1 - - uid: 1513 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,39.5 - parent: 1 - - uid: 1517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,41.5 - parent: 1 - - uid: 1520 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,44.5 - parent: 1 - - uid: 1528 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,39.5 - parent: 1 - - uid: 1529 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,39.5 - parent: 1 - - uid: 1533 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,39.5 - parent: 1 - - uid: 1534 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,41.5 - parent: 1 - - uid: 1536 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,41.5 - parent: 1 - - uid: 1539 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,39.5 - parent: 1 - - uid: 1540 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,39.5 - parent: 1 - - uid: 1541 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,39.5 - parent: 1 - - uid: 1544 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,41.5 - parent: 1 - - uid: 1546 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,39.5 - parent: 1 - - uid: 1550 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,39.5 - parent: 1 - - uid: 1551 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,50.5 - parent: 1 - - uid: 1552 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,50.5 - parent: 1 - - uid: 1553 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,50.5 - parent: 1 - - uid: 1554 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,50.5 - parent: 1 - - uid: 1555 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,50.5 - parent: 1 - - uid: 1556 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,50.5 - parent: 1 - - uid: 1557 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,50.5 - parent: 1 - - uid: 1558 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,50.5 - parent: 1 - - uid: 1559 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,50.5 - parent: 1 - - uid: 1560 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,50.5 - parent: 1 - - uid: 1561 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,50.5 - parent: 1 - - uid: 1562 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,50.5 - parent: 1 - - uid: 1563 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,50.5 - parent: 1 - - uid: 1565 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,50.5 - parent: 1 - - uid: 1570 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-41.5 - parent: 1 - - uid: 1572 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-41.5 - parent: 1 - - uid: 1573 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-42.5 - parent: 1 - - uid: 1574 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,49.5 - parent: 1 - - uid: 1591 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,46.5 - parent: 1 - - uid: 1600 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,59.5 - parent: 1 - - uid: 1601 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,59.5 - parent: 1 - - uid: 1617 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,56.5 - parent: 1 - - uid: 1619 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,56.5 - parent: 1 - - uid: 1623 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,53.5 - parent: 1 - - uid: 1641 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,34.5 - parent: 1 - - uid: 1660 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,53.5 - parent: 1 - - uid: 1666 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,56.5 - parent: 1 - - uid: 1692 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,70.5 - parent: 1 - - uid: 1695 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,71.5 - parent: 1 - - uid: 1711 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,54.5 - parent: 1 - - uid: 1734 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,16.5 - parent: 1 - - uid: 1735 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,20.5 - parent: 1 - - uid: 1736 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,31.5 - parent: 1 - - uid: 1773 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,29.5 - parent: 1 - - uid: 1774 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,26.5 - parent: 1 - - uid: 1786 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,52.5 - parent: 1 - - uid: 1788 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,57.5 - parent: 1 - - uid: 1789 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,58.5 - parent: 1 - - uid: 1790 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,56.5 - parent: 1 - - uid: 1791 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,63.5 - parent: 1 - - uid: 1792 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,61.5 - parent: 1 - - uid: 1793 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,61.5 - parent: 1 - - uid: 1794 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,61.5 - parent: 1 - - uid: 1798 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,64.5 - parent: 1 - - uid: 1799 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,65.5 - parent: 1 - - uid: 1800 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,66.5 - parent: 1 - - uid: 1802 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,66.5 - parent: 1 - - uid: 1803 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,66.5 - parent: 1 - - uid: 1804 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,66.5 - parent: 1 - - uid: 1806 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,65.5 - parent: 1 - - uid: 1807 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,65.5 - parent: 1 - - uid: 1808 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,66.5 - parent: 1 - - uid: 1809 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,65.5 - parent: 1 - - uid: 1810 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,66.5 - parent: 1 - - uid: 1811 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,65.5 - parent: 1 - - uid: 1812 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,66.5 - parent: 1 - - uid: 1813 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,65.5 - parent: 1 - - uid: 1814 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,66.5 - parent: 1 - - uid: 1815 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,65.5 - parent: 1 - - uid: 1816 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,66.5 - parent: 1 - - uid: 1817 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,65.5 - parent: 1 - - uid: 1818 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,64.5 - parent: 1 - - uid: 1819 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,63.5 - parent: 1 - - uid: 1820 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,62.5 - parent: 1 - - uid: 1821 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,61.5 - parent: 1 - - uid: 1822 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,60.5 - parent: 1 - - uid: 1823 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,59.5 - parent: 1 - - uid: 1824 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,65.5 - parent: 1 - - uid: 1825 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,64.5 - parent: 1 - - uid: 1826 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,63.5 - parent: 1 - - uid: 1827 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,62.5 - parent: 1 - - uid: 1828 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,61.5 - parent: 1 - - uid: 1829 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,60.5 - parent: 1 - - uid: 1830 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,59.5 - parent: 1 - - uid: 1857 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,58.5 - parent: 1 - - uid: 1858 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,58.5 - parent: 1 - - uid: 1859 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,58.5 - parent: 1 - - uid: 1860 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,51.5 - parent: 1 - - uid: 1861 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,51.5 - parent: 1 - - uid: 1862 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,51.5 - parent: 1 - - uid: 1916 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,51.5 - parent: 1 - - uid: 1919 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,51.5 - parent: 1 - - uid: 1920 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,51.5 - parent: 1 - - uid: 1994 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 50.5,-15.5 - parent: 1 - - uid: 2005 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 44.5,-10.5 - parent: 1 - - uid: 2008 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 52.5,-15.5 - parent: 1 - - uid: 2009 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 1 - - uid: 2011 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,-10.5 - parent: 1 - - uid: 2028 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-5.5 - parent: 1 - - uid: 2041 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 44.5,-15.5 - parent: 1 - - uid: 2042 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 50.5,-8.5 - parent: 1 - - uid: 2045 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 1 - - uid: 2050 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-48.5 - parent: 1 - - uid: 2051 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-5.5 - parent: 1 - - uid: 2055 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 51.5,-6.5 - parent: 1 - - uid: 2063 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-47.5 - parent: 1 - - uid: 2064 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-42.5 - parent: 1 - - uid: 2065 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-48.5 - parent: 1 - - uid: 2066 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-47.5 - parent: 1 - - uid: 2067 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-42.5 - parent: 1 - - uid: 2069 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,-46.5 - parent: 1 - - uid: 2072 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-46.5 - parent: 1 - - uid: 2075 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,6.5 - parent: 1 - - uid: 2078 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,-42.5 - parent: 1 - - uid: 2079 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-42.5 - parent: 1 - - uid: 2080 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-42.5 - parent: 1 - - uid: 2081 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-42.5 - parent: 1 - - uid: 2082 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-42.5 - parent: 1 - - uid: 2083 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-42.5 - parent: 1 - - uid: 2084 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-38.5 - parent: 1 - - uid: 2085 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-38.5 - parent: 1 - - uid: 2086 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-46.5 - parent: 1 - - uid: 2087 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-46.5 - parent: 1 - - uid: 2095 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-37.5 - parent: 1 - - uid: 2096 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-31.5 - parent: 1 - - uid: 2097 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-31.5 - parent: 1 - - uid: 2104 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-35.5 - parent: 1 - - uid: 2108 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-6.5 - parent: 1 - - uid: 2109 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-6.5 - parent: 1 - - uid: 2118 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,0.5 - parent: 1 - - uid: 2119 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,7.5 - parent: 1 - - uid: 2123 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-42.5 - parent: 1 - - uid: 2124 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-42.5 - parent: 1 - - uid: 2125 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-41.5 - parent: 1 - - uid: 2126 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-42.5 - parent: 1 - - uid: 2131 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,-42.5 - parent: 1 - - uid: 2132 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-38.5 - parent: 1 - - uid: 2133 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-38.5 - parent: 1 - - uid: 2134 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-38.5 - parent: 1 - - uid: 2135 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-38.5 - parent: 1 - - uid: 2136 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-40.5 - parent: 1 - - uid: 2137 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-39.5 - parent: 1 - - uid: 2138 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-40.5 - parent: 1 - - uid: 2139 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-39.5 - parent: 1 - - uid: 2169 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-32.5 - parent: 1 - - uid: 2170 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-32.5 - parent: 1 - - uid: 2171 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-36.5 - parent: 1 - - uid: 2172 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-36.5 - parent: 1 - - uid: 2173 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-30.5 - parent: 1 - - uid: 2174 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-30.5 - parent: 1 - - uid: 2175 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-30.5 - parent: 1 - - uid: 2176 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-30.5 - parent: 1 - - uid: 2177 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-30.5 - parent: 1 - - uid: 2178 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-29.5 - parent: 1 - - uid: 2179 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-28.5 - parent: 1 - - uid: 2180 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-28.5 - parent: 1 - - uid: 2181 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-28.5 - parent: 1 - - uid: 2182 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-28.5 - parent: 1 - - uid: 2183 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-28.5 - parent: 1 - - uid: 2184 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-27.5 - parent: 1 - - uid: 2185 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-26.5 - parent: 1 - - uid: 2186 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-26.5 - parent: 1 - - uid: 2187 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-26.5 - parent: 1 - - uid: 2188 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-26.5 - parent: 1 - - uid: 2189 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-26.5 - parent: 1 - - uid: 2190 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-25.5 - parent: 1 - - uid: 2191 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-24.5 - parent: 1 - - uid: 2192 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-24.5 - parent: 1 - - uid: 2193 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-24.5 - parent: 1 - - uid: 2194 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-24.5 - parent: 1 - - uid: 2195 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-24.5 - parent: 1 - - uid: 2196 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-23.5 - parent: 1 - - uid: 2197 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-22.5 - parent: 1 - - uid: 2198 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-22.5 - parent: 1 - - uid: 2199 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-22.5 - parent: 1 - - uid: 2200 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-22.5 - parent: 1 - - uid: 2201 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-22.5 - parent: 1 - - uid: 2202 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-21.5 - parent: 1 - - uid: 2203 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-20.5 - parent: 1 - - uid: 2204 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-20.5 - parent: 1 - - uid: 2205 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-20.5 - parent: 1 - - uid: 2206 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-20.5 - parent: 1 - - uid: 2207 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-20.5 - parent: 1 - - uid: 2208 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-19.5 - parent: 1 - - uid: 2209 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-18.5 - parent: 1 - - uid: 2210 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-18.5 - parent: 1 - - uid: 2211 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-18.5 - parent: 1 - - uid: 2212 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-18.5 - parent: 1 - - uid: 2213 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-18.5 - parent: 1 - - uid: 2215 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 1 - - uid: 2216 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-41.5 - parent: 1 - - uid: 2217 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 1 - - uid: 2218 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 1 - - uid: 2219 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 1 - - uid: 2220 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1 - - uid: 2221 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-28.5 - parent: 1 - - uid: 2222 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-29.5 - parent: 1 - - uid: 2223 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-30.5 - parent: 1 - - uid: 2224 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 1 - - uid: 2225 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 1 - - uid: 2226 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1 - - uid: 2227 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 1 - - uid: 2228 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 1 - - uid: 2229 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1 - - uid: 2230 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-30.5 - parent: 1 - - uid: 2231 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-20.5 - parent: 1 - - uid: 2232 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-19.5 - parent: 1 - - uid: 2233 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-18.5 - parent: 1 - - uid: 2234 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-17.5 - parent: 1 - - uid: 2235 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-16.5 - parent: 1 - - uid: 2236 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-16.5 - parent: 1 - - uid: 2237 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-16.5 - parent: 1 - - uid: 2240 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-16.5 - parent: 1 - - uid: 2242 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-16.5 - parent: 1 - - uid: 2243 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-38.5 - parent: 1 - - uid: 2244 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-38.5 - parent: 1 - - uid: 2245 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,-16.5 - parent: 1 - - uid: 2246 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-16.5 - parent: 1 - - uid: 2247 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,-16.5 - parent: 1 - - uid: 2248 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-16.5 - parent: 1 - - uid: 2249 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-16.5 - parent: 1 - - uid: 2251 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-16.5 - parent: 1 - - uid: 2252 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-16.5 - parent: 1 - - uid: 2253 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-16.5 - parent: 1 - - uid: 2254 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-16.5 - parent: 1 - - uid: 2281 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-17.5 - parent: 1 - - uid: 2292 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-42.5 - parent: 1 - - uid: 2296 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-42.5 - parent: 1 - - uid: 2297 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-42.5 - parent: 1 - - uid: 2298 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-42.5 - parent: 1 - - uid: 2299 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-42.5 - parent: 1 - - uid: 2301 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-42.5 - parent: 1 - - uid: 2302 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-42.5 - parent: 1 - - uid: 2303 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-41.5 - parent: 1 - - uid: 2304 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-40.5 - parent: 1 - - uid: 2305 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-39.5 - parent: 1 - - uid: 2306 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-38.5 - parent: 1 - - uid: 2307 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-37.5 - parent: 1 - - uid: 2308 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-36.5 - parent: 1 - - uid: 2309 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-41.5 - parent: 1 - - uid: 2310 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-34.5 - parent: 1 - - uid: 2311 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-33.5 - parent: 1 - - uid: 2312 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-32.5 - parent: 1 - - uid: 2313 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-31.5 - parent: 1 - - uid: 2314 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-30.5 - parent: 1 - - uid: 2315 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-29.5 - parent: 1 - - uid: 2316 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-28.5 - parent: 1 - - uid: 2317 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-27.5 - parent: 1 - - uid: 2318 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-26.5 - parent: 1 - - uid: 2319 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-25.5 - parent: 1 - - uid: 2321 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-24.5 - parent: 1 - - uid: 2322 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-22.5 - parent: 1 - - uid: 2323 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-21.5 - parent: 1 - - uid: 2324 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-20.5 - parent: 1 - - uid: 2325 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-19.5 - parent: 1 - - uid: 2326 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-18.5 - parent: 1 - - uid: 2327 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-17.5 - parent: 1 - - uid: 2328 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-16.5 - parent: 1 - - uid: 2329 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-16.5 - parent: 1 - - uid: 2330 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-16.5 - parent: 1 - - uid: 2331 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-16.5 - parent: 1 - - uid: 2332 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-16.5 - parent: 1 - - uid: 2333 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-16.5 - parent: 1 - - uid: 2336 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-21.5 - parent: 1 - - uid: 2337 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-16.5 - parent: 1 - - uid: 2338 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-16.5 - parent: 1 - - uid: 2339 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-38.5 - parent: 1 - - uid: 2340 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-38.5 - parent: 1 - - uid: 2341 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-38.5 - parent: 1 - - uid: 2342 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-39.5 - parent: 1 - - uid: 2343 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-40.5 - parent: 1 - - uid: 2344 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-41.5 - parent: 1 - - uid: 2359 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-32.5 - parent: 1 - - uid: 2360 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-31.5 - parent: 1 - - uid: 2361 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-20.5 - parent: 1 - - uid: 2362 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-20.5 - parent: 1 - - uid: 2363 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-17.5 - parent: 1 - - uid: 2364 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-20.5 - parent: 1 - - uid: 2365 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-20.5 - parent: 1 - - uid: 2367 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-10.5 - parent: 1 - - uid: 2368 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-35.5 - parent: 1 - - uid: 2377 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,-10.5 - parent: 1 - - uid: 2378 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-10.5 - parent: 1 - - uid: 2379 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-10.5 - parent: 1 - - uid: 2382 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-10.5 - parent: 1 - - uid: 2383 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-10.5 - parent: 1 - - uid: 2384 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-10.5 - parent: 1 - - uid: 2385 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-10.5 - parent: 1 - - uid: 2386 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-10.5 - parent: 1 - - uid: 2389 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-14.5 - parent: 1 - - uid: 2391 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-14.5 - parent: 1 - - uid: 2393 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-14.5 - parent: 1 - - uid: 2394 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-14.5 - parent: 1 - - uid: 2395 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-14.5 - parent: 1 - - uid: 2399 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-14.5 - parent: 1 - - uid: 2400 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,-14.5 - parent: 1 - - uid: 2401 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-14.5 - parent: 1 - - uid: 2402 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,-14.5 - parent: 1 - - uid: 2403 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-14.5 - parent: 1 - - uid: 2404 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-14.5 - parent: 1 - - uid: 2405 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-14.5 - parent: 1 - - uid: 2406 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-14.5 - parent: 1 - - uid: 2410 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-17.5 - parent: 1 - - uid: 2411 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-18.5 - parent: 1 - - uid: 2412 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-19.5 - parent: 1 - - uid: 2413 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-20.5 - parent: 1 - - uid: 2414 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-21.5 - parent: 1 - - uid: 2415 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-22.5 - parent: 1 - - uid: 2416 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-23.5 - parent: 1 - - uid: 2417 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-24.5 - parent: 1 - - uid: 2418 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-25.5 - parent: 1 - - uid: 2419 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-26.5 - parent: 1 - - uid: 2420 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-27.5 - parent: 1 - - uid: 2421 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-28.5 - parent: 1 - - uid: 2422 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-29.5 - parent: 1 - - uid: 2423 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-30.5 - parent: 1 - - uid: 2424 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-37.5 - parent: 1 - - uid: 2425 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-36.5 - parent: 1 - - uid: 2426 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-35.5 - parent: 1 - - uid: 2427 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-35.5 - parent: 1 - - uid: 2428 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-35.5 - parent: 1 - - uid: 2429 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-35.5 - parent: 1 - - uid: 2430 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-35.5 - parent: 1 - - uid: 2431 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-31.5 - parent: 1 - - uid: 2432 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-31.5 - parent: 1 - - uid: 2433 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-31.5 - parent: 1 - - uid: 2434 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-31.5 - parent: 1 - - uid: 2435 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-31.5 - parent: 1 - - uid: 2436 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-30.5 - parent: 1 - - uid: 2438 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-28.5 - parent: 1 - - uid: 2439 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-27.5 - parent: 1 - - uid: 2440 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-27.5 - parent: 1 - - uid: 2441 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-27.5 - parent: 1 - - uid: 2444 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-27.5 - parent: 1 - - uid: 2445 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-27.5 - parent: 1 - - uid: 2450 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-10.5 - parent: 1 - - uid: 2451 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-10.5 - parent: 1 - - uid: 2452 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-11.5 - parent: 1 - - uid: 2453 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-12.5 - parent: 1 - - uid: 2454 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-13.5 - parent: 1 - - uid: 2455 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-14.5 - parent: 1 - - uid: 2456 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-15.5 - parent: 1 - - uid: 2457 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-20.5 - parent: 1 - - uid: 2458 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-19.5 - parent: 1 - - uid: 2459 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-16.5 - parent: 1 - - uid: 2499 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,1.5 - parent: 1 - - uid: 2501 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,12.5 - parent: 1 - - uid: 2502 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,11.5 - parent: 1 - - uid: 2503 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,10.5 - parent: 1 - - uid: 2504 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,9.5 - parent: 1 - - uid: 2505 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,6.5 - parent: 1 - - uid: 2506 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,5.5 - parent: 1 - - uid: 2507 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,8.5 - parent: 1 - - uid: 2508 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,7.5 - parent: 1 - - uid: 2509 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,4.5 - parent: 1 - - uid: 2512 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,3.5 - parent: 1 - - uid: 2522 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,7.5 - parent: 1 - - uid: 2523 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,7.5 - parent: 1 - - uid: 2527 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,7.5 - parent: 1 - - uid: 2528 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,8.5 - parent: 1 - - uid: 2529 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,12.5 - parent: 1 - - uid: 2530 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,1.5 - parent: 1 - - uid: 2531 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,9.5 - parent: 1 - - uid: 2532 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,12.5 - parent: 1 - - uid: 2533 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,12.5 - parent: 1 - - uid: 2534 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,12.5 - parent: 1 - - uid: 2535 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,11.5 - parent: 1 - - uid: 2536 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,12.5 - parent: 1 - - uid: 2537 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,12.5 - parent: 1 - - uid: 2541 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-2.5 - parent: 1 - - uid: 2696 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-46.5 - parent: 1 - - uid: 2697 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-46.5 - parent: 1 - - uid: 2707 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-46.5 - parent: 1 - - uid: 2721 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-46.5 - parent: 1 - - uid: 2727 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-44.5 - parent: 1 - - uid: 2804 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 1 - - uid: 2805 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-25.5 - parent: 1 - - uid: 2806 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-30.5 - parent: 1 - - uid: 2809 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-25.5 - parent: 1 - - uid: 2810 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-25.5 - parent: 1 - - uid: 2823 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-27.5 - parent: 1 - - uid: 2824 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-26.5 - parent: 1 - - uid: 2837 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-19.5 - parent: 1 - - uid: 2838 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-10.5 - parent: 1 - - uid: 2839 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-10.5 - parent: 1 - - uid: 2840 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-11.5 - parent: 1 - - uid: 2841 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-12.5 - parent: 1 - - uid: 2842 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-13.5 - parent: 1 - - uid: 2843 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-14.5 - parent: 1 - - uid: 2844 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-15.5 - parent: 1 - - uid: 2845 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-26.5 - parent: 1 - - uid: 2846 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-25.5 - parent: 1 - - uid: 2847 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-23.5 - parent: 1 - - uid: 2848 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-22.5 - parent: 1 - - uid: 2849 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-22.5 - parent: 1 - - uid: 2850 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-22.5 - parent: 1 - - uid: 2851 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-22.5 - parent: 1 - - uid: 2852 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-22.5 - parent: 1 - - uid: 2853 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-19.5 - parent: 1 - - uid: 2854 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-19.5 - parent: 1 - - uid: 2855 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-17.5 - parent: 1 - - uid: 2856 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-18.5 - parent: 1 - - uid: 2857 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-19.5 - parent: 1 - - uid: 2859 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-41.5 - parent: 1 - - uid: 2860 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-38.5 - parent: 1 - - uid: 2861 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-38.5 - parent: 1 - - uid: 2862 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-35.5 - parent: 1 - - uid: 2863 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-32.5 - parent: 1 - - uid: 2864 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-31.5 - parent: 1 - - uid: 2865 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-31.5 - parent: 1 - - uid: 2866 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-28.5 - parent: 1 - - uid: 2867 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-28.5 - parent: 1 - - uid: 2868 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-28.5 - parent: 1 - - uid: 2869 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-28.5 - parent: 1 - - uid: 2870 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-31.5 - parent: 1 - - uid: 2880 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,2.5 - parent: 1 - - uid: 2881 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,1.5 - parent: 1 - - uid: 2882 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,1.5 - parent: 1 - - uid: 2896 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,1.5 - parent: 1 - - uid: 2916 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-27.5 - parent: 1 - - uid: 2918 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,-14.5 - parent: 1 - - uid: 2928 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-18.5 - parent: 1 - - uid: 2933 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-14.5 - parent: 1 - - uid: 2934 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-18.5 - parent: 1 - - uid: 2936 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-22.5 - parent: 1 - - uid: 2937 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-27.5 - parent: 1 - - uid: 2938 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-25.5 - parent: 1 - - uid: 2939 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-25.5 - parent: 1 - - uid: 2940 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-22.5 - parent: 1 - - uid: 2941 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-18.5 - parent: 1 - - uid: 2942 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-22.5 - parent: 1 - - uid: 2944 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-19.5 - parent: 1 - - uid: 2945 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-16.5 - parent: 1 - - uid: 2946 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-17.5 - parent: 1 - - uid: 2948 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-12.5 - parent: 1 - - uid: 2949 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-10.5 - parent: 1 - - uid: 2950 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,-12.5 - parent: 1 - - uid: 2973 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-43.5 - parent: 1 - - uid: 3045 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-45.5 - parent: 1 - - uid: 3078 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,-12.5 - parent: 1 - - uid: 3083 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-27.5 - parent: 1 - - uid: 3084 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-26.5 - parent: 1 - - uid: 3085 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-25.5 - parent: 1 - - uid: 3086 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-27.5 - parent: 1 - - uid: 3087 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-22.5 - parent: 1 - - uid: 3088 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-14.5 - parent: 1 - - uid: 3092 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-26.5 - parent: 1 - - uid: 3094 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-25.5 - parent: 1 - - uid: 3144 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-17.5 - parent: 1 - - uid: 3145 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-15.5 - parent: 1 - - uid: 3146 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-19.5 - parent: 1 - - uid: 3147 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-18.5 - parent: 1 - - uid: 3148 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,-12.5 - parent: 1 - - uid: 3149 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,-14.5 - parent: 1 - - uid: 3150 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-15.5 - parent: 1 - - uid: 3151 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-19.5 - parent: 1 - - uid: 3152 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-19.5 - parent: 1 - - uid: 3153 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-16.5 - parent: 1 - - uid: 3155 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-11.5 - parent: 1 - - uid: 3161 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-12.5 - parent: 1 - - uid: 3162 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,-12.5 - parent: 1 - - uid: 3163 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,-10.5 - parent: 1 - - uid: 3182 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,45.5 - parent: 1 - - uid: 3255 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,54.5 - parent: 1 - - uid: 3319 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,50.5 - parent: 1 - - uid: 3320 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,49.5 - parent: 1 - - uid: 3321 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,49.5 - parent: 1 - - uid: 3322 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,48.5 - parent: 1 - - uid: 3323 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,48.5 - parent: 1 - - uid: 3324 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,49.5 - parent: 1 - - uid: 3326 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,49.5 - parent: 1 - - uid: 3327 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,49.5 - parent: 1 - - uid: 3328 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,48.5 - parent: 1 - - uid: 3329 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,47.5 - parent: 1 - - uid: 3330 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,46.5 - parent: 1 - - uid: 3331 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,45.5 - parent: 1 - - uid: 3332 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,44.5 - parent: 1 - - uid: 3333 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 1 - - uid: 3334 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,44.5 - parent: 1 - - uid: 3335 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,44.5 - parent: 1 - - uid: 3336 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,45.5 - parent: 1 - - uid: 3337 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,45.5 - parent: 1 - - uid: 3341 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,48.5 - parent: 1 - - uid: 3342 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,45.5 - parent: 1 - - uid: 3344 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,50.5 - parent: 1 - - uid: 3345 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,43.5 - parent: 1 - - uid: 3348 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,42.5 - parent: 1 - - uid: 3349 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,42.5 - parent: 1 - - uid: 3350 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,42.5 - parent: 1 - - uid: 3351 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,42.5 - parent: 1 - - uid: 3352 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,42.5 - parent: 1 - - uid: 3353 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,42.5 - parent: 1 - - uid: 3354 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,42.5 - parent: 1 - - uid: 3355 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,42.5 - parent: 1 - - uid: 3356 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,43.5 - parent: 1 - - uid: 3357 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,44.5 - parent: 1 - - uid: 3358 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,45.5 - parent: 1 - - uid: 3359 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,46.5 - parent: 1 - - uid: 3360 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,47.5 - parent: 1 - - uid: 3361 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,48.5 - parent: 1 - - uid: 3424 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-10.5 - parent: 1 - - uid: 3425 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-10.5 - parent: 1 - - uid: 3517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,17.5 - parent: 1 - - uid: 3531 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 41.5,41.5 - parent: 1 - - uid: 3533 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 45.5,41.5 - parent: 1 - - uid: 3534 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 45.5,42.5 - parent: 1 - - uid: 3535 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 45.5,44.5 - parent: 1 - - uid: 3561 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,21.5 - parent: 1 - - uid: 3569 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-10.5 - parent: 1 - - uid: 3571 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-14.5 - parent: 1 - - uid: 3572 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-13.5 - parent: 1 - - uid: 3573 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-12.5 - parent: 1 - - uid: 3576 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-11.5 - parent: 1 - - uid: 3577 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-14.5 - parent: 1 - - uid: 3579 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-14.5 - parent: 1 - - uid: 3580 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-14.5 - parent: 1 - - uid: 3581 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-14.5 - parent: 1 - - uid: 3585 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-13.5 - parent: 1 - - uid: 3588 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-10.5 - parent: 1 - - uid: 3591 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-10.5 - parent: 1 - - uid: 3592 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-10.5 - parent: 1 - - uid: 3593 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-12.5 - parent: 1 - - uid: 3597 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-14.5 - parent: 1 - - uid: 3604 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,21.5 - parent: 1 - - uid: 3605 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,21.5 - parent: 1 - - uid: 3606 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,21.5 - parent: 1 - - uid: 3607 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,21.5 - parent: 1 - - uid: 3608 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,21.5 - parent: 1 - - uid: 3611 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,25.5 - parent: 1 - - uid: 3612 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,25.5 - parent: 1 - - uid: 3613 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,25.5 - parent: 1 - - uid: 3615 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,26.5 - parent: 1 - - uid: 3616 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,26.5 - parent: 1 - - uid: 3617 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,26.5 - parent: 1 - - uid: 3623 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,21.5 - parent: 1 - - uid: 3625 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,23.5 - parent: 1 - - uid: 3626 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,24.5 - parent: 1 - - uid: 3627 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,25.5 - parent: 1 - - uid: 3628 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,26.5 - parent: 1 - - uid: 3656 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,26.5 - parent: 1 - - uid: 3657 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,26.5 - parent: 1 - - uid: 3658 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,26.5 - parent: 1 - - uid: 3659 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,26.5 - parent: 1 - - uid: 3662 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,29.5 - parent: 1 - - uid: 3663 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,30.5 - parent: 1 - - uid: 3664 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,31.5 - parent: 1 - - uid: 3665 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,32.5 - parent: 1 - - uid: 3667 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,30.5 - parent: 1 - - uid: 3668 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,30.5 - parent: 1 - - uid: 3669 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,30.5 - parent: 1 - - uid: 3670 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,33.5 - parent: 1 - - uid: 3671 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,34.5 - parent: 1 - - uid: 3672 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,35.5 - parent: 1 - - uid: 3673 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,35.5 - parent: 1 - - uid: 3674 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,35.5 - parent: 1 - - uid: 3675 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,35.5 - parent: 1 - - uid: 3676 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,35.5 - parent: 1 - - uid: 3682 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,34.5 - parent: 1 - - uid: 3683 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,33.5 - parent: 1 - - uid: 3704 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,30.5 - parent: 1 - - uid: 3706 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,30.5 - parent: 1 - - uid: 3707 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,30.5 - parent: 1 - - uid: 3708 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,30.5 - parent: 1 - - uid: 3709 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,25.5 - parent: 1 - - uid: 3710 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,25.5 - parent: 1 - - uid: 3711 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,25.5 - parent: 1 - - uid: 3712 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,25.5 - parent: 1 - - uid: 3713 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,25.5 - parent: 1 - - uid: 3714 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,25.5 - parent: 1 - - uid: 3715 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,25.5 - parent: 1 - - uid: 3716 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,26.5 - parent: 1 - - uid: 3718 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,28.5 - parent: 1 - - uid: 3719 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,29.5 - parent: 1 - - uid: 3720 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,30.5 - parent: 1 - - uid: 3737 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-26.5 - parent: 1 - - uid: 3738 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-26.5 - parent: 1 - - uid: 3739 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-28.5 - parent: 1 - - uid: 3743 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-25.5 - parent: 1 - - uid: 3744 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-28.5 - parent: 1 - - uid: 3745 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-28.5 - parent: 1 - - uid: 3746 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-20.5 - parent: 1 - - uid: 3748 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-26.5 - parent: 1 - - uid: 3749 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-25.5 - parent: 1 - - uid: 3750 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-26.5 - parent: 1 - - uid: 3752 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-21.5 - parent: 1 - - uid: 3754 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-20.5 - parent: 1 - - uid: 3755 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-21.5 - parent: 1 - - uid: 3760 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-25.5 - parent: 1 - - uid: 3762 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-21.5 - parent: 1 - - uid: 3768 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-20.5 - parent: 1 - - uid: 3769 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-21.5 - parent: 1 - - uid: 3770 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-25.5 - parent: 1 - - uid: 3771 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-22.5 - parent: 1 - - uid: 3772 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-24.5 - parent: 1 - - uid: 3773 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-10.5 - parent: 1 - - uid: 3781 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-10.5 - parent: 1 - - uid: 3783 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-10.5 - parent: 1 - - uid: 3797 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-10.5 - parent: 1 - - uid: 3799 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-18.5 - parent: 1 - - uid: 3800 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-18.5 - parent: 1 - - uid: 3801 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-18.5 - parent: 1 - - uid: 3802 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-18.5 - parent: 1 - - uid: 3806 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-18.5 - parent: 1 - - uid: 3808 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-17.5 - parent: 1 - - uid: 3815 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-20.5 - parent: 1 - - uid: 3816 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-20.5 - parent: 1 - - uid: 3817 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-19.5 - parent: 1 - - uid: 3934 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-14.5 - parent: 1 - - uid: 3935 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-13.5 - parent: 1 - - uid: 3936 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-12.5 - parent: 1 - - uid: 3937 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-11.5 - parent: 1 - - uid: 3938 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-10.5 - parent: 1 - - uid: 3959 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-19.5 - parent: 1 - - uid: 3967 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,35.5 - parent: 1 - - uid: 3968 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-10.5 - parent: 1 - - uid: 3969 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-10.5 - parent: 1 - - uid: 3970 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-10.5 - parent: 1 - - uid: 3971 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-10.5 - parent: 1 - - uid: 3972 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-10.5 - parent: 1 - - uid: 3973 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-13.5 - parent: 1 - - uid: 3974 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-13.5 - parent: 1 - - uid: 3975 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-11.5 - parent: 1 - - uid: 3976 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-14.5 - parent: 1 - - uid: 3977 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-14.5 - parent: 1 - - uid: 3978 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-14.5 - parent: 1 - - uid: 3979 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-14.5 - parent: 1 - - uid: 3980 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-14.5 - parent: 1 - - uid: 3986 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-10.5 - parent: 1 - - uid: 3987 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-14.5 - parent: 1 - - uid: 3988 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-10.5 - parent: 1 - - uid: 4055 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,26.5 - parent: 1 - - uid: 4056 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,32.5 - parent: 1 - - uid: 4058 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,28.5 - parent: 1 - - uid: 4070 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,35.5 - parent: 1 - - uid: 4074 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,32.5 - parent: 1 - - uid: 4116 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,30.5 - parent: 1 - - uid: 4131 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,23.5 - parent: 1 - - uid: 4145 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-43.5 - parent: 1 - - uid: 4151 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-0.5 - parent: 1 - - uid: 4201 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,-10.5 - parent: 1 - - uid: 4202 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-10.5 - parent: 1 - - uid: 4342 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,29.5 - parent: 1 - - uid: 4350 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-12.5 - parent: 1 - - uid: 4407 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-19.5 - parent: 1 - - uid: 4459 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,53.5 - parent: 1 - - uid: 4472 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-14.5 - parent: 1 - - uid: 4534 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-45.5 - parent: 1 - - uid: 5530 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,29.5 - parent: 1 - - uid: 5531 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-44.5 - parent: 1 - - uid: 5695 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,35.5 - parent: 1 - - uid: 5718 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,12.5 - parent: 1 - - uid: 5803 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-11.5 - parent: 1 - - uid: 5956 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,29.5 - parent: 1 - - uid: 6094 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,35.5 - parent: 1 - - uid: 6095 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,30.5 - parent: 1 - - uid: 6098 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,30.5 - parent: 1 - - uid: 6099 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,30.5 - parent: 1 - - uid: 6101 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,35.5 - parent: 1 - - uid: 6106 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,35.5 - parent: 1 - - uid: 6107 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,35.5 - parent: 1 - - uid: 6108 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,30.5 - parent: 1 - - uid: 6343 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,56.5 - parent: 1 - - uid: 6350 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,68.5 - parent: 1 - - uid: 6351 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,68.5 - parent: 1 - - uid: 6352 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,70.5 - parent: 1 - - uid: 6353 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,68.5 - parent: 1 - - uid: 6354 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,68.5 - parent: 1 - - uid: 6356 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,68.5 - parent: 1 - - uid: 6357 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,69.5 - parent: 1 - - uid: 6358 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,68.5 - parent: 1 - - uid: 6496 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 50.5,-13.5 - parent: 1 - - uid: 6509 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 50.5,-6.5 - parent: 1 - - uid: 6512 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 52.5,-8.5 - parent: 1 - - uid: 6513 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 52.5,-13.5 - parent: 1 - - uid: 6528 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 1 - - uid: 6549 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 1 - - uid: 6555 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 1 - - uid: 6557 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 1 - - uid: 6558 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1 - - uid: 6780 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-28.5 - parent: 1 - - uid: 6781 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-27.5 - parent: 1 - - uid: 6790 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,69.5 - parent: 1 - - uid: 6858 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-27.5 - parent: 1 - - uid: 6859 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-29.5 - parent: 1 - - uid: 6903 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,31.5 - parent: 1 - - uid: 6904 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,34.5 - parent: 1 - - uid: 6905 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,33.5 - parent: 1 - - uid: 6907 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,32.5 - parent: 1 - - uid: 7149 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,31.5 - parent: 1 - - uid: 7243 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,35.5 - parent: 1 - - uid: 7251 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,35.5 - parent: 1 - - uid: 7256 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,35.5 - parent: 1 - - uid: 7257 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,35.5 - parent: 1 - - uid: 7264 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,35.5 - parent: 1 - - uid: 7266 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,35.5 - parent: 1 - - uid: 7290 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-27.5 - parent: 1 - - uid: 7319 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-13.5 - parent: 1 - - uid: 7424 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-29.5 - parent: 1 - - uid: 7630 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-29.5 - parent: 1 - - uid: 7663 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-29.5 - parent: 1 - - uid: 7664 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-27.5 - parent: 1 - - uid: 7674 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-27.5 - parent: 1 - - uid: 7817 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,29.5 - parent: 1 - - uid: 7919 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,26.5 - parent: 1 - - uid: 7920 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,29.5 - parent: 1 - - uid: 7921 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,20.5 - parent: 1 - - uid: 18083 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 1 - - uid: 18439 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-18.5 - parent: 1 - - uid: 18471 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-11.5 - parent: 1 -- proto: WallShuttle - entities: - - uid: 8765 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 8756 - - uid: 8766 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 8756 - - uid: 8767 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 8756 - - uid: 8768 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 8756 - - uid: 8771 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 8756 - - uid: 8772 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 8756 - - uid: 8773 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 8756 - - uid: 8774 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 8756 - - uid: 8779 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 8756 - - uid: 8780 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 8756 - - uid: 8781 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 8756 - - uid: 8782 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 8756 - - uid: 8797 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 8756 - - uid: 8798 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 8756 - - uid: 8799 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 8756 - - uid: 8800 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 8756 - - uid: 8806 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 8756 - - uid: 8808 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 8756 - - uid: 8811 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 8756 - - uid: 8813 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 8756 -- proto: WallShuttleDiagonal - entities: - - uid: 8769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 8756 - - uid: 8770 - components: - - type: Transform - pos: -2.5,4.5 - parent: 8756 - - uid: 8803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 8756 - - uid: 8886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 8756 -- proto: WallSolid - entities: - - uid: 126 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,12.5 - parent: 1 - - uid: 128 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,12.5 - parent: 1 - - uid: 136 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-6.5 - parent: 1 - - uid: 137 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 1 - - uid: 138 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-13.5 - parent: 1 - - uid: 142 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-7.5 - parent: 1 - - uid: 143 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,16.5 - parent: 1 - - uid: 248 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-15.5 - parent: 1 - - uid: 254 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-2.5 - parent: 1 - - uid: 261 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,9.5 - parent: 1 - - uid: 262 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,8.5 - parent: 1 - - uid: 263 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,8.5 - parent: 1 - - uid: 264 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,2.5 - parent: 1 - - uid: 265 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,8.5 - parent: 1 - - uid: 267 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,11.5 - parent: 1 - - uid: 268 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,8.5 - parent: 1 - - uid: 269 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,1.5 - parent: 1 - - uid: 273 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,11.5 - parent: 1 - - uid: 275 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-3.5 - parent: 1 - - uid: 277 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-3.5 - parent: 1 - - uid: 279 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-3.5 - parent: 1 - - uid: 397 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,69.5 - parent: 1 - - uid: 439 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,12.5 - parent: 1 - - uid: 440 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,9.5 - parent: 1 - - uid: 441 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,3.5 - parent: 1 - - uid: 442 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,12.5 - parent: 1 - - uid: 445 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,12.5 - parent: 1 - - uid: 446 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,3.5 - parent: 1 - - uid: 447 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,3.5 - parent: 1 - - uid: 449 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-3.5 - parent: 1 - - uid: 494 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,5.5 - parent: 1 - - uid: 495 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,12.5 - parent: 1 - - uid: 496 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,7.5 - parent: 1 - - uid: 497 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,6.5 - parent: 1 - - uid: 498 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,8.5 - parent: 1 - - uid: 499 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,9.5 - parent: 1 - - uid: 500 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,9.5 - parent: 1 - - uid: 501 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,9.5 - parent: 1 - - uid: 502 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,-6.5 - parent: 1 - - uid: 504 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,12.5 - parent: 1 - - uid: 506 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,12.5 - parent: 1 - - uid: 507 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,12.5 - parent: 1 - - uid: 508 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,12.5 - parent: 1 - - uid: 509 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,5.5 - parent: 1 - - uid: 510 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,5.5 - parent: 1 - - uid: 515 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,9.5 - parent: 1 - - uid: 516 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,11.5 - parent: 1 - - uid: 517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,9.5 - parent: 1 - - uid: 518 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,10.5 - parent: 1 - - uid: 519 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,12.5 - parent: 1 - - uid: 520 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,12.5 - parent: 1 - - uid: 521 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,10.5 - parent: 1 - - uid: 522 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,9.5 - parent: 1 - - uid: 523 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,9.5 - parent: 1 - - uid: 531 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-6.5 - parent: 1 - - uid: 532 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-6.5 - parent: 1 - - uid: 533 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-6.5 - parent: 1 - - uid: 534 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-5.5 - parent: 1 - - uid: 535 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-4.5 - parent: 1 - - uid: 539 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,5.5 - parent: 1 - - uid: 540 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,5.5 - parent: 1 - - uid: 543 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,2.5 - parent: 1 - - uid: 544 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,12.5 - parent: 1 - - uid: 547 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,12.5 - parent: 1 - - uid: 551 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,12.5 - parent: 1 - - uid: 552 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,12.5 - parent: 1 - - uid: 558 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,9.5 - parent: 1 - - uid: 559 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,10.5 - parent: 1 - - uid: 560 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,11.5 - parent: 1 - - uid: 568 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,4.5 - parent: 1 - - uid: 572 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,0.5 - parent: 1 - - uid: 573 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,1.5 - parent: 1 - - uid: 574 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,3.5 - parent: 1 - - uid: 575 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,4.5 - parent: 1 - - uid: 576 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,4.5 - parent: 1 - - uid: 577 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,4.5 - parent: 1 - - uid: 578 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,3.5 - parent: 1 - - uid: 580 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,1.5 - parent: 1 - - uid: 581 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,0.5 - parent: 1 - - uid: 582 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,0.5 - parent: 1 - - uid: 583 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,0.5 - parent: 1 - - uid: 584 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,11.5 - parent: 1 - - uid: 585 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,10.5 - parent: 1 - - uid: 586 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-0.5 - parent: 1 - - uid: 587 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,8.5 - parent: 1 - - uid: 588 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,7.5 - parent: 1 - - uid: 589 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-1.5 - parent: 1 - - uid: 590 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,5.5 - parent: 1 - - uid: 592 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-3.5 - parent: 1 - - uid: 593 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-4.5 - parent: 1 - - uid: 594 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-5.5 - parent: 1 - - uid: 595 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-6.5 - parent: 1 - - uid: 596 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,-5.5 - parent: 1 - - uid: 597 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-5.5 - parent: 1 - - uid: 598 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 1 - - uid: 600 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-6.5 - parent: 1 - - uid: 601 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-6.5 - parent: 1 - - uid: 623 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,12.5 - parent: 1 - - uid: 624 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,12.5 - parent: 1 - - uid: 625 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,12.5 - parent: 1 - - uid: 626 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,12.5 - parent: 1 - - uid: 627 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,11.5 - parent: 1 - - uid: 628 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,10.5 - parent: 1 - - uid: 629 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,9.5 - parent: 1 - - uid: 630 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,8.5 - parent: 1 - - uid: 631 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,7.5 - parent: 1 - - uid: 632 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,7.5 - parent: 1 - - uid: 633 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,7.5 - parent: 1 - - uid: 634 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,12.5 - parent: 1 - - uid: 635 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,12.5 - parent: 1 - - uid: 636 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,11.5 - parent: 1 - - uid: 637 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,10.5 - parent: 1 - - uid: 638 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,9.5 - parent: 1 - - uid: 639 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-6.5 - parent: 1 - - uid: 640 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,7.5 - parent: 1 - - uid: 641 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,6.5 - parent: 1 - - uid: 642 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,5.5 - parent: 1 - - uid: 643 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,5.5 - parent: 1 - - uid: 644 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,5.5 - parent: 1 - - uid: 645 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,5.5 - parent: 1 - - uid: 646 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,4.5 - parent: 1 - - uid: 647 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,3.5 - parent: 1 - - uid: 648 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,2.5 - parent: 1 - - uid: 649 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,1.5 - parent: 1 - - uid: 650 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,0.5 - parent: 1 - - uid: 651 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-0.5 - parent: 1 - - uid: 654 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-1.5 - parent: 1 - - uid: 655 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-2.5 - parent: 1 - - uid: 656 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-3.5 - parent: 1 - - uid: 657 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-4.5 - parent: 1 - - uid: 658 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-6.5 - parent: 1 - - uid: 659 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-6.5 - parent: 1 - - uid: 660 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-6.5 - parent: 1 - - uid: 662 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-6.5 - parent: 1 - - uid: 669 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,6.5 - parent: 1 - - uid: 670 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,6.5 - parent: 1 - - uid: 671 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,6.5 - parent: 1 - - uid: 672 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,6.5 - parent: 1 - - uid: 673 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,0.5 - parent: 1 - - uid: 674 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,1.5 - parent: 1 - - uid: 675 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,2.5 - parent: 1 - - uid: 676 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,3.5 - parent: 1 - - uid: 677 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,4.5 - parent: 1 - - uid: 678 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,6.5 - parent: 1 - - uid: 679 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-6.5 - parent: 1 - - uid: 680 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-6.5 - parent: 1 - - uid: 681 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-6.5 - parent: 1 - - uid: 682 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-6.5 - parent: 1 - - uid: 683 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-6.5 - parent: 1 - - uid: 684 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-6.5 - parent: 1 - - uid: 685 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-6.5 - parent: 1 - - uid: 686 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-6.5 - parent: 1 - - uid: 687 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-6.5 - parent: 1 - - uid: 688 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-6.5 - parent: 1 - - uid: 689 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-5.5 - parent: 1 - - uid: 690 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-4.5 - parent: 1 - - uid: 691 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-3.5 - parent: 1 - - uid: 692 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-4.5 - parent: 1 - - uid: 693 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-4.5 - parent: 1 - - uid: 694 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-4.5 - parent: 1 - - uid: 695 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-4.5 - parent: 1 - - uid: 696 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,12.5 - parent: 1 - - uid: 697 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,12.5 - parent: 1 - - uid: 698 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,12.5 - parent: 1 - - uid: 699 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,11.5 - parent: 1 - - uid: 700 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,12.5 - parent: 1 - - uid: 701 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,12.5 - parent: 1 - - uid: 702 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,12.5 - parent: 1 - - uid: 703 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,12.5 - parent: 1 - - uid: 704 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,12.5 - parent: 1 - - uid: 705 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,12.5 - parent: 1 - - uid: 706 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,12.5 - parent: 1 - - uid: 707 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,12.5 - parent: 1 - - uid: 708 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,12.5 - parent: 1 - - uid: 709 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,9.5 - parent: 1 - - uid: 710 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,12.5 - parent: 1 - - uid: 711 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,8.5 - parent: 1 - - uid: 712 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,7.5 - parent: 1 - - uid: 713 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,4.5 - parent: 1 - - uid: 714 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,4.5 - parent: 1 - - uid: 715 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,4.5 - parent: 1 - - uid: 716 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,4.5 - parent: 1 - - uid: 717 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-3.5 - parent: 1 - - uid: 718 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-2.5 - parent: 1 - - uid: 719 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-1.5 - parent: 1 - - uid: 720 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-0.5 - parent: 1 - - uid: 721 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,0.5 - parent: 1 - - uid: 722 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,3.5 - parent: 1 - - uid: 723 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,2.5 - parent: 1 - - uid: 724 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-2.5 - parent: 1 - - uid: 725 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-1.5 - parent: 1 - - uid: 726 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-0.5 - parent: 1 - - uid: 727 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,0.5 - parent: 1 - - uid: 728 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,2.5 - parent: 1 - - uid: 729 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,3.5 - parent: 1 - - uid: 730 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,11.5 - parent: 1 - - uid: 731 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,10.5 - parent: 1 - - uid: 732 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,9.5 - parent: 1 - - uid: 733 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,8.5 - parent: 1 - - uid: 734 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,4.5 - parent: 1 - - uid: 735 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,4.5 - parent: 1 - - uid: 736 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,0.5 - parent: 1 - - uid: 737 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,0.5 - parent: 1 - - uid: 738 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,0.5 - parent: 1 - - uid: 739 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,0.5 - parent: 1 - - uid: 740 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,2.5 - parent: 1 - - uid: 741 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,4.5 - parent: 1 - - uid: 742 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,4.5 - parent: 1 - - uid: 743 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,3.5 - parent: 1 - - uid: 744 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,1.5 - parent: 1 - - uid: 745 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,4.5 - parent: 1 - - uid: 746 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,8.5 - parent: 1 - - uid: 747 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,8.5 - parent: 1 - - uid: 748 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,8.5 - parent: 1 - - uid: 752 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,10.5 - parent: 1 - - uid: 753 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,9.5 - parent: 1 - - uid: 754 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,7.5 - parent: 1 - - uid: 755 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,5.5 - parent: 1 - - uid: 756 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,6.5 - parent: 1 - - uid: 757 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-0.5 - parent: 1 - - uid: 758 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-4.5 - parent: 1 - - uid: 759 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-3.5 - parent: 1 - - uid: 760 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-1.5 - parent: 1 - - uid: 761 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-1.5 - parent: 1 - - uid: 762 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-1.5 - parent: 1 - - uid: 769 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-23.5 - parent: 1 - - uid: 782 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,9.5 - parent: 1 - - uid: 783 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,9.5 - parent: 1 - - uid: 796 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,16.5 - parent: 1 - - uid: 822 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,9.5 - parent: 1 - - uid: 846 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,39.5 - parent: 1 - - uid: 886 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,53.5 - parent: 1 - - uid: 1063 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,33.5 - parent: 1 - - uid: 1143 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,35.5 - parent: 1 - - uid: 1144 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,35.5 - parent: 1 - - uid: 1199 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,16.5 - parent: 1 - - uid: 1200 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,16.5 - parent: 1 - - uid: 1201 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,16.5 - parent: 1 - - uid: 1202 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,16.5 - parent: 1 - - uid: 1203 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,22.5 - parent: 1 - - uid: 1204 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,22.5 - parent: 1 - - uid: 1205 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,21.5 - parent: 1 - - uid: 1206 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,20.5 - parent: 1 - - uid: 1207 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,19.5 - parent: 1 - - uid: 1208 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,18.5 - parent: 1 - - uid: 1209 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,17.5 - parent: 1 - - uid: 1210 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,24.5 - parent: 1 - - uid: 1211 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,25.5 - parent: 1 - - uid: 1212 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,26.5 - parent: 1 - - uid: 1213 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,27.5 - parent: 1 - - uid: 1214 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,28.5 - parent: 1 - - uid: 1215 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,24.5 - parent: 1 - - uid: 1216 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,28.5 - parent: 1 - - uid: 1217 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,28.5 - parent: 1 - - uid: 1218 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,28.5 - parent: 1 - - uid: 1219 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,17.5 - parent: 1 - - uid: 1220 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,28.5 - parent: 1 - - uid: 1221 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,28.5 - parent: 1 - - uid: 1222 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,28.5 - parent: 1 - - uid: 1223 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,28.5 - parent: 1 - - uid: 1225 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,28.5 - parent: 1 - - uid: 1228 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,34.5 - parent: 1 - - uid: 1234 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,12.5 - parent: 1 - - uid: 1235 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,8.5 - parent: 1 - - uid: 1243 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,30.5 - parent: 1 - - uid: 1244 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,29.5 - parent: 1 - - uid: 1245 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,35.5 - parent: 1 - - uid: 1246 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,35.5 - parent: 1 - - uid: 1247 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,32.5 - parent: 1 - - uid: 1248 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,31.5 - parent: 1 - - uid: 1249 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,18.5 - parent: 1 - - uid: 1250 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,19.5 - parent: 1 - - uid: 1251 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,20.5 - parent: 1 - - uid: 1252 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,21.5 - parent: 1 - - uid: 1253 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,22.5 - parent: 1 - - uid: 1254 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,24.5 - parent: 1 - - uid: 1255 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,25.5 - parent: 1 - - uid: 1256 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,26.5 - parent: 1 - - uid: 1257 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,27.5 - parent: 1 - - uid: 1258 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,28.5 - parent: 1 - - uid: 1259 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,29.5 - parent: 1 - - uid: 1260 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,30.5 - parent: 1 - - uid: 1261 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,31.5 - parent: 1 - - uid: 1262 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,32.5 - parent: 1 - - uid: 1263 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,33.5 - parent: 1 - - uid: 1264 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,34.5 - parent: 1 - - uid: 1265 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,35.5 - parent: 1 - - uid: 1266 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,35.5 - parent: 1 - - uid: 1267 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,35.5 - parent: 1 - - uid: 1300 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,30.5 - parent: 1 - - uid: 1302 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,29.5 - parent: 1 - - uid: 1304 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,31.5 - parent: 1 - - uid: 1305 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,32.5 - parent: 1 - - uid: 1359 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,39.5 - parent: 1 - - uid: 1451 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,39.5 - parent: 1 - - uid: 1524 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,47.5 - parent: 1 - - uid: 1568 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,47.5 - parent: 1 - - uid: 1569 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,47.5 - parent: 1 - - uid: 1582 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,44.5 - parent: 1 - - uid: 1583 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,44.5 - parent: 1 - - uid: 1584 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,44.5 - parent: 1 - - uid: 1585 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,49.5 - parent: 1 - - uid: 1592 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,50.5 - parent: 1 - - uid: 1593 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,45.5 - parent: 1 - - uid: 1594 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,51.5 - parent: 1 - - uid: 1595 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,52.5 - parent: 1 - - uid: 1596 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,52.5 - parent: 1 - - uid: 1597 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,53.5 - parent: 1 - - uid: 1598 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,53.5 - parent: 1 - - uid: 1599 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,53.5 - parent: 1 - - uid: 1706 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,54.5 - parent: 1 - - uid: 1707 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,55.5 - parent: 1 - - uid: 1708 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,56.5 - parent: 1 - - uid: 1709 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,58.5 - parent: 1 - - uid: 1712 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,45.5 - parent: 1 - - uid: 1713 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,45.5 - parent: 1 - - uid: 1714 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,45.5 - parent: 1 - - uid: 1730 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,46.5 - parent: 1 - - uid: 1731 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,16.5 - parent: 1 - - uid: 1732 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,17.5 - parent: 1 - - uid: 1733 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,18.5 - parent: 1 - - uid: 1737 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,35.5 - parent: 1 - - uid: 1738 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,31.5 - parent: 1 - - uid: 1739 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,31.5 - parent: 1 - - uid: 1740 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,31.5 - parent: 1 - - uid: 1741 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,31.5 - parent: 1 - - uid: 1742 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,32.5 - parent: 1 - - uid: 1743 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,35.5 - parent: 1 - - uid: 1744 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,35.5 - parent: 1 - - uid: 1745 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,34.5 - parent: 1 - - uid: 1746 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,30.5 - parent: 1 - - uid: 1747 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,29.5 - parent: 1 - - uid: 1748 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,29.5 - parent: 1 - - uid: 1749 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,28.5 - parent: 1 - - uid: 1750 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,27.5 - parent: 1 - - uid: 1751 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,26.5 - parent: 1 - - uid: 1752 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,25.5 - parent: 1 - - uid: 1753 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,24.5 - parent: 1 - - uid: 1754 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,23.5 - parent: 1 - - uid: 1755 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,22.5 - parent: 1 - - uid: 1756 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,22.5 - parent: 1 - - uid: 1757 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,19.5 - parent: 1 - - uid: 1758 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,20.5 - parent: 1 - - uid: 1787 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,58.5 - parent: 1 - - uid: 1851 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,53.5 - parent: 1 - - uid: 1852 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,54.5 - parent: 1 - - uid: 1854 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,56.5 - parent: 1 - - uid: 1855 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,55.5 - parent: 1 - - uid: 1856 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,56.5 - parent: 1 - - uid: 1878 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,64.5 - parent: 1 - - uid: 1879 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,65.5 - parent: 1 - - uid: 1880 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,62.5 - parent: 1 - - uid: 1882 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,65.5 - parent: 1 - - uid: 1883 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,65.5 - parent: 1 - - uid: 1884 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,65.5 - parent: 1 - - uid: 1885 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,65.5 - parent: 1 - - uid: 1886 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,65.5 - parent: 1 - - uid: 1887 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,65.5 - parent: 1 - - uid: 1888 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,65.5 - parent: 1 - - uid: 1889 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,65.5 - parent: 1 - - uid: 1890 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,64.5 - parent: 1 - - uid: 1891 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,63.5 - parent: 1 - - uid: 1892 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,62.5 - parent: 1 - - uid: 1893 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,61.5 - parent: 1 - - uid: 1894 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,62.5 - parent: 1 - - uid: 1895 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,59.5 - parent: 1 - - uid: 1896 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,58.5 - parent: 1 - - uid: 1897 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,58.5 - parent: 1 - - uid: 1898 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,58.5 - parent: 1 - - uid: 1899 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,62.5 - parent: 1 - - uid: 1900 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,62.5 - parent: 1 - - uid: 1901 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,62.5 - parent: 1 - - uid: 1902 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,62.5 - parent: 1 - - uid: 1903 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,62.5 - parent: 1 - - uid: 1904 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,62.5 - parent: 1 - - uid: 1905 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,62.5 - parent: 1 - - uid: 1906 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,61.5 - parent: 1 - - uid: 1907 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,60.5 - parent: 1 - - uid: 1910 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,57.5 - parent: 1 - - uid: 1911 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,56.5 - parent: 1 - - uid: 1912 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,55.5 - parent: 1 - - uid: 1913 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,54.5 - parent: 1 - - uid: 1914 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,53.5 - parent: 1 - - uid: 1915 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,52.5 - parent: 1 - - uid: 1921 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,51.5 - parent: 1 - - uid: 1922 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,51.5 - parent: 1 - - uid: 1923 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,51.5 - parent: 1 - - uid: 1924 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,51.5 - parent: 1 - - uid: 1925 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,51.5 - parent: 1 - - uid: 1926 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,51.5 - parent: 1 - - uid: 2214 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-21.5 - parent: 1 - - uid: 2238 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,5.5 - parent: 1 - - uid: 2366 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-12.5 - parent: 1 - - uid: 2381 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-13.5 - parent: 1 - - uid: 2461 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,4.5 - parent: 1 - - uid: 2462 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,3.5 - parent: 1 - - uid: 2463 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,2.5 - parent: 1 - - uid: 2464 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,1.5 - parent: 1 - - uid: 2465 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,1.5 - parent: 1 - - uid: 2466 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,1.5 - parent: 1 - - uid: 2467 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-5.5 - parent: 1 - - uid: 2468 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-6.5 - parent: 1 - - uid: 2469 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-6.5 - parent: 1 - - uid: 2470 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-6.5 - parent: 1 - - uid: 2471 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,-6.5 - parent: 1 - - uid: 2475 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-6.5 - parent: 1 - - uid: 2476 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-6.5 - parent: 1 - - uid: 2477 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-6.5 - parent: 1 - - uid: 2480 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-4.5 - parent: 1 - - uid: 2481 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-3.5 - parent: 1 - - uid: 2482 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-2.5 - parent: 1 - - uid: 2483 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-2.5 - parent: 1 - - uid: 2484 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-2.5 - parent: 1 - - uid: 2486 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-2.5 - parent: 1 - - uid: 2487 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-1.5 - parent: 1 - - uid: 2492 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-0.5 - parent: 1 - - uid: 2493 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-2.5 - parent: 1 - - uid: 2494 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-1.5 - parent: 1 - - uid: 2495 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-3.5 - parent: 1 - - uid: 2496 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-4.5 - parent: 1 - - uid: 2497 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-5.5 - parent: 1 - - uid: 2510 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,12.5 - parent: 1 - - uid: 2511 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,12.5 - parent: 1 - - uid: 2513 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-6.5 - parent: 1 - - uid: 2515 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-4.5 - parent: 1 - - uid: 2517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-2.5 - parent: 1 - - uid: 2519 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-0.5 - parent: 1 - - uid: 2521 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,1.5 - parent: 1 - - uid: 2689 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-2.5 - parent: 1 - - uid: 2829 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,57.5 - parent: 1 - - uid: 2830 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,57.5 - parent: 1 - - uid: 2835 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,57.5 - parent: 1 - - uid: 2871 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-16.5 - parent: 1 - - uid: 2874 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,12.5 - parent: 1 - - uid: 2883 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 1 - - uid: 2893 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,7.5 - parent: 1 - - uid: 2894 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 1 - - uid: 2895 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 1 - - uid: 2897 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,1.5 - parent: 1 - - uid: 2915 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-19.5 - parent: 1 - - uid: 2917 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-18.5 - parent: 1 - - uid: 2924 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-23.5 - parent: 1 - - uid: 2931 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-21.5 - parent: 1 - - uid: 2932 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-21.5 - parent: 1 - - uid: 3074 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-17.5 - parent: 1 - - uid: 3075 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-18.5 - parent: 1 - - uid: 3076 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-16.5 - parent: 1 - - uid: 3102 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-12.5 - parent: 1 - - uid: 3103 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-16.5 - parent: 1 - - uid: 3104 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-16.5 - parent: 1 - - uid: 3105 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-17.5 - parent: 1 - - uid: 3133 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-12.5 - parent: 1 - - uid: 3134 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-21.5 - parent: 1 - - uid: 3135 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-21.5 - parent: 1 - - uid: 3141 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-22.5 - parent: 1 - - uid: 3142 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-19.5 - parent: 1 - - uid: 3156 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-21.5 - parent: 1 - - uid: 3165 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-12.5 - parent: 1 - - uid: 3193 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,51.5 - parent: 1 - - uid: 3195 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,39.5 - parent: 1 - - uid: 3196 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,39.5 - parent: 1 - - uid: 3197 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,40.5 - parent: 1 - - uid: 3198 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,40.5 - parent: 1 - - uid: 3199 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,39.5 - parent: 1 - - uid: 3200 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,39.5 - parent: 1 - - uid: 3201 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,39.5 - parent: 1 - - uid: 3202 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,39.5 - parent: 1 - - uid: 3203 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,39.5 - parent: 1 - - uid: 3204 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,41.5 - parent: 1 - - uid: 3205 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,42.5 - parent: 1 - - uid: 3207 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,44.5 - parent: 1 - - uid: 3208 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,45.5 - parent: 1 - - uid: 3209 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,46.5 - parent: 1 - - uid: 3210 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,47.5 - parent: 1 - - uid: 3211 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,41.5 - parent: 1 - - uid: 3212 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,42.5 - parent: 1 - - uid: 3213 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,42.5 - parent: 1 - - uid: 3214 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,42.5 - parent: 1 - - uid: 3215 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,43.5 - parent: 1 - - uid: 3216 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,44.5 - parent: 1 - - uid: 3217 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,45.5 - parent: 1 - - uid: 3218 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,46.5 - parent: 1 - - uid: 3219 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,47.5 - parent: 1 - - uid: 3220 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,48.5 - parent: 1 - - uid: 3221 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,49.5 - parent: 1 - - uid: 3222 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,50.5 - parent: 1 - - uid: 3223 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,50.5 - parent: 1 - - uid: 3224 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,50.5 - parent: 1 - - uid: 3225 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,50.5 - parent: 1 - - uid: 3226 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,50.5 - parent: 1 - - uid: 3227 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,50.5 - parent: 1 - - uid: 3229 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,49.5 - parent: 1 - - uid: 3233 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,39.5 - parent: 1 - - uid: 3234 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,46.5 - parent: 1 - - uid: 3235 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,44.5 - parent: 1 - - uid: 3236 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,43.5 - parent: 1 - - uid: 3237 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,42.5 - parent: 1 - - uid: 3238 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,42.5 - parent: 1 - - uid: 3239 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,42.5 - parent: 1 - - uid: 3243 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,46.5 - parent: 1 - - uid: 3244 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,46.5 - parent: 1 - - uid: 3245 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,47.5 - parent: 1 - - uid: 3246 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,48.5 - parent: 1 - - uid: 3247 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,49.5 - parent: 1 - - uid: 3248 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,50.5 - parent: 1 - - uid: 3250 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,53.5 - parent: 1 - - uid: 3251 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,56.5 - parent: 1 - - uid: 3252 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,55.5 - parent: 1 - - uid: 3253 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,54.5 - parent: 1 - - uid: 3257 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,53.5 - parent: 1 - - uid: 3258 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,53.5 - parent: 1 - - uid: 3259 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,53.5 - parent: 1 - - uid: 3260 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,53.5 - parent: 1 - - uid: 3261 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,51.5 - parent: 1 - - uid: 3265 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,54.5 - parent: 1 - - uid: 3266 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,52.5 - parent: 1 - - uid: 3267 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,53.5 - parent: 1 - - uid: 3268 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,54.5 - parent: 1 - - uid: 3269 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,55.5 - parent: 1 - - uid: 3270 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,55.5 - parent: 1 - - uid: 3271 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,55.5 - parent: 1 - - uid: 3272 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,55.5 - parent: 1 - - uid: 3273 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,55.5 - parent: 1 - - uid: 3285 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,52.5 - parent: 1 - - uid: 3286 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,41.5 - parent: 1 - - uid: 3288 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,39.5 - parent: 1 - - uid: 3289 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 1 - - uid: 3290 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,40.5 - parent: 1 - - uid: 3291 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,41.5 - parent: 1 - - uid: 3292 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,42.5 - parent: 1 - - uid: 3293 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,43.5 - parent: 1 - - uid: 3294 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,44.5 - parent: 1 - - uid: 3295 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,44.5 - parent: 1 - - uid: 3296 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,44.5 - parent: 1 - - uid: 3297 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,44.5 - parent: 1 - - uid: 3298 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,44.5 - parent: 1 - - uid: 3299 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,44.5 - parent: 1 - - uid: 3300 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,44.5 - parent: 1 - - uid: 3301 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,44.5 - parent: 1 - - uid: 3302 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,44.5 - parent: 1 - - uid: 3303 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,43.5 - parent: 1 - - uid: 3304 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,42.5 - parent: 1 - - uid: 3305 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,41.5 - parent: 1 - - uid: 3306 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,40.5 - parent: 1 - - uid: 3307 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,39.5 - parent: 1 - - uid: 3308 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,39.5 - parent: 1 - - uid: 3309 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,40.5 - parent: 1 - - uid: 3310 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,39.5 - parent: 1 - - uid: 3311 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,39.5 - parent: 1 - - uid: 3312 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,39.5 - parent: 1 - - uid: 3313 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,39.5 - parent: 1 - - uid: 3314 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,40.5 - parent: 1 - - uid: 3315 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,41.5 - parent: 1 - - uid: 3316 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,39.5 - parent: 1 - - uid: 3317 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,39.5 - parent: 1 - - uid: 3318 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,39.5 - parent: 1 - - uid: 3362 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,39.5 - parent: 1 - - uid: 3363 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,39.5 - parent: 1 - - uid: 3364 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,39.5 - parent: 1 - - uid: 3365 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,39.5 - parent: 1 - - uid: 3366 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,40.5 - parent: 1 - - uid: 3368 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,39.5 - parent: 1 - - uid: 3369 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,42.5 - parent: 1 - - uid: 3370 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,43.5 - parent: 1 - - uid: 3371 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,43.5 - parent: 1 - - uid: 3372 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,43.5 - parent: 1 - - uid: 3373 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,43.5 - parent: 1 - - uid: 3374 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,44.5 - parent: 1 - - uid: 3375 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,45.5 - parent: 1 - - uid: 3376 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,46.5 - parent: 1 - - uid: 3377 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,47.5 - parent: 1 - - uid: 3378 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,47.5 - parent: 1 - - uid: 3379 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,47.5 - parent: 1 - - uid: 3380 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,47.5 - parent: 1 - - uid: 3381 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,46.5 - parent: 1 - - uid: 3382 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,47.5 - parent: 1 - - uid: 3383 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,48.5 - parent: 1 - - uid: 3384 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,48.5 - parent: 1 - - uid: 3385 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,48.5 - parent: 1 - - uid: 3386 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,48.5 - parent: 1 - - uid: 3387 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,49.5 - parent: 1 - - uid: 3388 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,51.5 - parent: 1 - - uid: 3389 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,51.5 - parent: 1 - - uid: 3390 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,51.5 - parent: 1 - - uid: 3391 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,51.5 - parent: 1 - - uid: 3392 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,51.5 - parent: 1 - - uid: 3394 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,51.5 - parent: 1 - - uid: 3395 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,52.5 - parent: 1 - - uid: 3396 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,53.5 - parent: 1 - - uid: 3397 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,54.5 - parent: 1 - - uid: 3398 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,55.5 - parent: 1 - - uid: 3399 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,55.5 - parent: 1 - - uid: 3400 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,55.5 - parent: 1 - - uid: 3401 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,55.5 - parent: 1 - - uid: 3402 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,55.5 - parent: 1 - - uid: 3403 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,54.5 - parent: 1 - - uid: 3404 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,53.5 - parent: 1 - - uid: 3421 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,-6.5 - parent: 1 - - uid: 3422 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-6.5 - parent: 1 - - uid: 3423 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-6.5 - parent: 1 - - uid: 3521 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,48.5 - parent: 1 - - uid: 3522 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,47.5 - parent: 1 - - uid: 3523 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,46.5 - parent: 1 - - uid: 3530 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,48.5 - parent: 1 - - uid: 3562 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-10.5 - parent: 1 - - uid: 3563 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-10.5 - parent: 1 - - uid: 3564 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-10.5 - parent: 1 - - uid: 3565 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-10.5 - parent: 1 - - uid: 3567 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-10.5 - parent: 1 - - uid: 3568 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-10.5 - parent: 1 - - uid: 3594 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-13.5 - parent: 1 - - uid: 3595 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-13.5 - parent: 1 - - uid: 3596 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-13.5 - parent: 1 - - uid: 3599 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-14.5 - parent: 1 - - uid: 3600 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,16.5 - parent: 1 - - uid: 3601 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,16.5 - parent: 1 - - uid: 3602 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,16.5 - parent: 1 - - uid: 3603 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,16.5 - parent: 1 - - uid: 3629 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,16.5 - parent: 1 - - uid: 3635 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,16.5 - parent: 1 - - uid: 3636 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,16.5 - parent: 1 - - uid: 3637 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,17.5 - parent: 1 - - uid: 3639 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,18.5 - parent: 1 - - uid: 3640 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,19.5 - parent: 1 - - uid: 3641 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,20.5 - parent: 1 - - uid: 3642 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,21.5 - parent: 1 - - uid: 3643 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,21.5 - parent: 1 - - uid: 3644 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,21.5 - parent: 1 - - uid: 3661 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,24.5 - parent: 1 - - uid: 3701 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,16.5 - parent: 1 - - uid: 3702 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,16.5 - parent: 1 - - uid: 3717 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,23.5 - parent: 1 - - uid: 3724 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,20.5 - parent: 1 - - uid: 3727 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,23.5 - parent: 1 - - uid: 3728 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,23.5 - parent: 1 - - uid: 3812 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-20.5 - parent: 1 - - uid: 3813 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-21.5 - parent: 1 - - uid: 3814 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-21.5 - parent: 1 - - uid: 3818 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-18.5 - parent: 1 - - uid: 3819 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-17.5 - parent: 1 - - uid: 3820 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-17.5 - parent: 1 - - uid: 3821 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-17.5 - parent: 1 - - uid: 3822 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-17.5 - parent: 1 - - uid: 3823 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-17.5 - parent: 1 - - uid: 3824 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-18.5 - parent: 1 - - uid: 3825 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-31.5 - parent: 1 - - uid: 3826 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,-31.5 - parent: 1 - - uid: 3827 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-31.5 - parent: 1 - - uid: 3921 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-12.5 - parent: 1 - - uid: 3922 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-11.5 - parent: 1 - - uid: 3923 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-15.5 - parent: 1 - - uid: 3924 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-11.5 - parent: 1 - - uid: 3925 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-10.5 - parent: 1 - - uid: 3926 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-10.5 - parent: 1 - - uid: 3927 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-10.5 - parent: 1 - - uid: 3928 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-10.5 - parent: 1 - - uid: 3929 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-10.5 - parent: 1 - - uid: 3930 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-9.5 - parent: 1 - - uid: 3931 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-10.5 - parent: 1 - - uid: 3932 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-15.5 - parent: 1 - - uid: 3933 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-15.5 - parent: 1 - - uid: 3939 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-13.5 - parent: 1 - - uid: 3940 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-13.5 - parent: 1 - - uid: 3941 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-14.5 - parent: 1 - - uid: 3942 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-13.5 - parent: 1 - - uid: 3943 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-13.5 - parent: 1 - - uid: 3945 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-9.5 - parent: 1 - - uid: 3946 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-8.5 - parent: 1 - - uid: 3952 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-20.5 - parent: 1 - - uid: 3953 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-19.5 - parent: 1 - - uid: 3954 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-19.5 - parent: 1 - - uid: 3955 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-18.5 - parent: 1 - - uid: 3956 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-17.5 - parent: 1 - - uid: 3957 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-19.5 - parent: 1 - - uid: 3958 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-19.5 - parent: 1 - - uid: 3960 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-20.5 - parent: 1 - - uid: 3961 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-22.5 - parent: 1 - - uid: 3962 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,19.5 - parent: 1 - - uid: 3963 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,29.5 - parent: 1 - - uid: 4010 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-1.5 - parent: 1 - - uid: 4011 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-1.5 - parent: 1 - - uid: 4013 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-1.5 - parent: 1 - - uid: 4022 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-6.5 - parent: 1 - - uid: 4028 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-5.5 - parent: 1 - - uid: 4029 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,6.5 - parent: 1 - - uid: 4030 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,5.5 - parent: 1 - - uid: 4087 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,17.5 - parent: 1 - - uid: 4088 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,18.5 - parent: 1 - - uid: 4089 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,19.5 - parent: 1 - - uid: 4090 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,20.5 - parent: 1 - - uid: 4091 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,21.5 - parent: 1 - - uid: 4092 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,22.5 - parent: 1 - - uid: 4093 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,23.5 - parent: 1 - - uid: 4094 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,23.5 - parent: 1 - - uid: 4095 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,23.5 - parent: 1 - - uid: 4096 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,23.5 - parent: 1 - - uid: 4097 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,23.5 - parent: 1 - - uid: 4098 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,23.5 - parent: 1 - - uid: 4099 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,24.5 - parent: 1 - - uid: 4100 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,24.5 - parent: 1 - - uid: 4102 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,26.5 - parent: 1 - - uid: 4103 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,27.5 - parent: 1 - - uid: 4104 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,28.5 - parent: 1 - - uid: 4105 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,29.5 - parent: 1 - - uid: 4207 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,16.5 - parent: 1 - - uid: 4511 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-20.5 - parent: 1 - - uid: 4512 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-20.5 - parent: 1 - - uid: 4513 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-20.5 - parent: 1 - - uid: 4515 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-23.5 - parent: 1 - - uid: 4516 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,-15.5 - parent: 1 - - uid: 4517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-15.5 - parent: 1 - - uid: 4518 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-15.5 - parent: 1 - - uid: 4519 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,-16.5 - parent: 1 - - uid: 4520 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,-17.5 - parent: 1 - - uid: 4521 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,-18.5 - parent: 1 - - uid: 4522 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-18.5 - parent: 1 - - uid: 4523 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-18.5 - parent: 1 - - uid: 4524 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-18.5 - parent: 1 - - uid: 4525 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-18.5 - parent: 1 - - uid: 4526 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-18.5 - parent: 1 - - uid: 4527 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-18.5 - parent: 1 - - uid: 4528 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-19.5 - parent: 1 - - uid: 4530 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-21.5 - parent: 1 - - uid: 4531 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-22.5 - parent: 1 - - uid: 4532 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-24.5 - parent: 1 - - uid: 4539 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-25.5 - parent: 1 - - uid: 4540 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-38.5 - parent: 1 - - uid: 4541 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-37.5 - parent: 1 - - uid: 4542 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-36.5 - parent: 1 - - uid: 4543 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-35.5 - parent: 1 - - uid: 4544 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-34.5 - parent: 1 - - uid: 4545 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-33.5 - parent: 1 - - uid: 4546 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-32.5 - parent: 1 - - uid: 4547 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-32.5 - parent: 1 - - uid: 4548 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-32.5 - parent: 1 - - uid: 4549 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-24.5 - parent: 1 - - uid: 4550 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-23.5 - parent: 1 - - uid: 4551 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-23.5 - parent: 1 - - uid: 4552 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-25.5 - parent: 1 - - uid: 4553 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-26.5 - parent: 1 - - uid: 4554 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-27.5 - parent: 1 - - uid: 4555 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-28.5 - parent: 1 - - uid: 4557 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-30.5 - parent: 1 - - uid: 4558 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-25.5 - parent: 1 - - uid: 4559 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-25.5 - parent: 1 - - uid: 4560 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-25.5 - parent: 1 - - uid: 4561 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-25.5 - parent: 1 - - uid: 4562 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-25.5 - parent: 1 - - uid: 4563 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-25.5 - parent: 1 - - uid: 4564 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-24.5 - parent: 1 - - uid: 4568 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-23.5 - parent: 1 - - uid: 5696 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,16.5 - parent: 1 - - uid: 5728 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,24.5 - parent: 1 - - uid: 5729 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,24.5 - parent: 1 - - uid: 5775 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,12.5 - parent: 1 - - uid: 5804 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-6.5 - parent: 1 - - uid: 5935 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,16.5 - parent: 1 - - uid: 5937 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,16.5 - parent: 1 - - uid: 6035 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,17.5 - parent: 1 - - uid: 6049 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-10.5 - parent: 1 - - uid: 6148 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,47.5 - parent: 1 - - uid: 6149 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,49.5 - parent: 1 - - uid: 6333 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,45.5 - parent: 1 - - uid: 6349 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,68.5 - parent: 1 - - uid: 6360 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,68.5 - parent: 1 - - uid: 6413 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,11.5 - parent: 1 - - uid: 6414 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,10.5 - parent: 1 - - uid: 6415 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,9.5 - parent: 1 - - uid: 6416 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,8.5 - parent: 1 - - uid: 6471 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-21.5 - parent: 1 - - uid: 6472 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-20.5 - parent: 1 - - uid: 6501 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-22.5 - parent: 1 - - uid: 6508 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-21.5 - parent: 1 - - uid: 6628 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 1 - - uid: 6644 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 1 - - uid: 6645 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-8.5 - parent: 1 - - uid: 6646 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 1 - - uid: 6647 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 1 - - uid: 6654 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 1 - - uid: 6655 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-8.5 - parent: 1 - - uid: 6657 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 1 - - uid: 6856 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,48.5 - parent: 1 - - uid: 6857 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,51.5 - parent: 1 - - uid: 6860 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,46.5 - parent: 1 - - uid: 6924 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,12.5 - parent: 1 - - uid: 6954 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,9.5 - parent: 1 - - uid: 6994 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-24.5 - parent: 1 - - uid: 6995 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-24.5 - parent: 1 - - uid: 7126 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - - uid: 7275 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,62.5 - parent: 1 - - uid: 7651 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-23.5 - parent: 1 - - uid: 7660 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-23.5 - parent: 1 - - uid: 7882 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,44.5 - parent: 1 - - uid: 7885 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,44.5 - parent: 1 - - uid: 8175 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,0.5 - parent: 1 - - uid: 8341 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-38.5 - parent: 1 - - uid: 8427 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,1.5 - parent: 1 - - uid: 8428 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-0.5 - parent: 1 - - uid: 8429 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-1.5 - parent: 1 - - uid: 8430 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-1.5 - parent: 1 - - uid: 8431 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-1.5 - parent: 1 - - uid: 8432 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,16.5 - parent: 1 - - uid: 8435 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-1.5 - parent: 1 - - uid: 8468 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,59.5 - parent: 1 - - uid: 8496 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,2.5 - parent: 1 - - uid: 8506 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,2.5 - parent: 1 - - uid: 8507 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,2.5 - parent: 1 - - uid: 8513 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,2.5 - parent: 1 - - uid: 8521 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,27.5 - parent: 1 - - uid: 8524 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,29.5 - parent: 1 - - uid: 8525 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,34.5 - parent: 1 - - uid: 8526 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,33.5 - parent: 1 - - uid: 8528 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,31.5 - parent: 1 - - uid: 8544 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,29.5 - parent: 1 - - uid: 8545 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,28.5 - parent: 1 - - uid: 8546 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,29.5 - parent: 1 - - uid: 8547 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,29.5 - parent: 1 - - uid: 8548 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,30.5 - parent: 1 - - uid: 8906 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-6.5 - parent: 1 - - uid: 8907 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-3.5 - parent: 1 - - uid: 9171 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1 - - uid: 9172 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,0.5 - parent: 1 - - uid: 9173 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,0.5 - parent: 1 - - uid: 9598 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-37.5 - parent: 1 - - uid: 9601 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-31.5 - parent: 1 - - uid: 9602 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-32.5 - parent: 1 - - uid: 9603 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-33.5 - parent: 1 - - uid: 9892 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,64.5 - parent: 1 - - uid: 9989 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-17.5 - parent: 1 - - uid: 10102 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-30.5 - parent: 1 - - uid: 10134 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-17.5 - parent: 1 - - uid: 13304 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,7.5 - parent: 1 - - uid: 13368 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,20.5 - parent: 1 - - uid: 13463 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,66.5 - parent: 1 - - uid: 14029 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,58.5 - parent: 1 - - uid: 14030 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,57.5 - parent: 1 -- proto: WallSolidRust - entities: - - uid: 4514 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-22.5 - parent: 1 - - uid: 6996 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-21.5 - parent: 1 - - uid: 6997 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-22.5 - parent: 1 -- proto: WallWood - entities: - - uid: 511 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,5.5 - parent: 1 - - uid: 3171 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,49.5 - parent: 1 - - uid: 3172 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,50.5 - parent: 1 - - uid: 3173 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 44.5,47.5 - parent: 1 - - uid: 3174 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 44.5,48.5 - parent: 1 - - uid: 3176 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,50.5 - parent: 1 - - uid: 3179 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,51.5 - parent: 1 - - uid: 3181 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,46.5 - parent: 1 - - uid: 9426 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,45.5 - parent: 1 -- proto: WardrobeBlackFilled - entities: - - uid: 6081 - components: - - type: Transform - pos: 17.5,43.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WardrobeBlueFilled - entities: - - uid: 6082 - components: - - type: Transform - pos: 18.5,43.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WardrobeGreenFilled - entities: - - uid: 6083 - components: - - type: Transform - pos: 23.5,43.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WardrobeMixedFilled - entities: - - uid: 6084 - components: - - type: Transform - pos: 22.5,43.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WardrobePinkFilled - entities: - - uid: 8396 - components: - - type: Transform - pos: 17.5,47.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WardrobePrisonFilled - entities: - - uid: 8221 - components: - - type: Transform - pos: -13.5,42.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8222 - components: - - type: Transform - pos: -10.5,42.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8223 - components: - - type: Transform - pos: -7.5,42.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8224 - components: - - type: Transform - pos: -4.5,42.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8262 - components: - - type: Transform - pos: -37.5,46.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8307 - components: - - type: Transform - pos: -37.5,42.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WarpPoint - entities: - - uid: 17618 - components: - - type: Transform - pos: -16.5,25.5 - parent: 1 - - type: WarpPoint - location: Science - - uid: 17624 - components: - - type: Transform - pos: 32.5,25.5 - parent: 1 - - type: WarpPoint - location: Evac - - uid: 17625 - components: - - type: Transform - pos: 31.5,46.5 - parent: 1 - - type: WarpPoint - location: Chapel - - uid: 17627 - components: - - type: Transform - pos: 4.5,46.5 - parent: 1 - - type: WarpPoint - location: Vault - - uid: 17629 - components: - - type: Transform - pos: 10.5,58.5 - parent: 1 - - type: WarpPoint - location: Courtroom - - uid: 18176 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 8756 - - type: WarpPoint - location: Captain's Private Shuttle -- proto: WarpPointBombing - entities: - - uid: 2345 - components: - - type: Transform - pos: 24.5,5.5 - parent: 1 - - type: WarpPoint - location: HoP Office - - uid: 5828 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 1 - - type: WarpPoint - location: Telecomms - - uid: 6362 - components: - - type: Transform - pos: 10.5,27.5 - parent: 1 - - type: WarpPoint - location: Medbay - - uid: 6458 - components: - - type: Transform - pos: -39.5,25.5 - parent: 1 - - type: WarpPoint - location: Salvage - - uid: 6600 - components: - - type: Transform - pos: -38.5,2.5 - parent: 1 - - type: WarpPoint - location: Cargo - - uid: 6629 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1 - - type: WarpPoint - location: Bar - - uid: 6636 - components: - - type: Transform - pos: -8.5,-26.5 - parent: 1 - - type: WarpPoint - location: Atmospherics - - uid: 6637 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 1 - - type: WarpPoint - location: Engineering - - uid: 6653 - components: - - type: Transform - pos: -13.5,49.5 - parent: 1 - - type: WarpPoint - location: Security - - uid: 6670 - components: - - type: Transform - pos: -0.5,79.5 - parent: 1 - - type: WarpPoint - location: Bridge -- proto: WaterCooler - entities: - - uid: 6948 - components: - - type: Transform - pos: 26.5,23.5 - parent: 1 - - uid: 8440 - components: - - type: Transform - pos: 6.5,57.5 - parent: 1 - - uid: 8488 - components: - - type: Transform - pos: 2.5,74.5 - parent: 1 - - uid: 8587 - components: - - type: Transform - pos: -7.5,21.5 - parent: 1 - - uid: 8718 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 1 - - uid: 9090 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 1 - - uid: 9628 - components: - - type: Transform - pos: -43.5,-7.5 - parent: 1 -- proto: WaterTankFull - entities: - - uid: 4331 - components: - - type: Transform - pos: -30.5,49.5 - parent: 1 - - uid: 8703 - components: - - type: Transform - pos: -13.5,-31.5 - parent: 1 - - uid: 9896 - components: - - type: Transform - pos: 38.5,41.5 - parent: 1 - - uid: 9900 - components: - - type: Transform - pos: 20.5,6.5 - parent: 1 - - uid: 9901 - components: - - type: Transform - pos: 18.5,24.5 - parent: 1 - - uid: 9904 - components: - - type: Transform - pos: 27.5,-22.5 - parent: 1 - - uid: 9908 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 1 - - uid: 13326 - components: - - type: Transform - pos: -21.5,2.5 - parent: 1 - - uid: 13375 - components: - - type: Transform - pos: -27.5,27.5 - parent: 1 - - uid: 13422 - components: - - type: Transform - pos: -25.5,55.5 - parent: 1 - - uid: 13457 - components: - - type: Transform - pos: -44.5,51.5 - parent: 1 - - uid: 13998 - components: - - type: Transform - pos: 16.5,61.5 - parent: 1 - - uid: 14010 - components: - - type: Transform - pos: 11.5,48.5 - parent: 1 -- proto: WaterTankHighCapacity - entities: - - uid: 7807 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 1 - - uid: 10114 - components: - - type: Transform - pos: 5.5,4.5 - parent: 1 -- proto: WaterVaporCanister - entities: - - uid: 3049 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 6589 - components: - - type: Transform - pos: -11.5,33.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: WeaponCapacitorRecharger - entities: - - uid: 6822 - components: - - type: Transform - pos: -15.5,58.5 - parent: 1 - - uid: 7395 - components: - - type: Transform - pos: -14.5,50.5 - parent: 1 - - uid: 7398 - components: - - type: Transform - pos: -16.5,50.5 - parent: 1 - - uid: 7901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,44.5 - parent: 1 - - uid: 8061 - components: - - type: Transform - pos: 3.5,79.5 - parent: 1 - - uid: 8138 - components: - - type: Transform - pos: -6.5,52.5 - parent: 1 - - uid: 8183 - components: - - type: Transform - pos: -13.5,56.5 - parent: 1 - - uid: 9285 - components: - - type: Transform - pos: 23.5,10.5 - parent: 1 - - uid: 9395 - components: - - type: Transform - pos: -35.5,-5.5 - parent: 1 - - uid: 9420 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 1 -- proto: WeaponDisabler - entities: - - uid: 7396 - components: - - type: Transform - pos: -14.632251,50.815887 - parent: 1 -- proto: WeaponDisablerPractice - entities: - - uid: 8186 - components: - - type: Transform - pos: -10.325895,49.179844 - parent: 1 - - uid: 9284 - components: - - type: Transform - pos: 23.450686,10.918031 - parent: 1 -- proto: WeaponLaserCarbine - entities: - - uid: 1841 - components: - - type: Transform - pos: -4.5602546,61.57037 - parent: 1 - - uid: 7695 - components: - - type: Transform - pos: -4.4977546,61.38287 - parent: 1 -- proto: WeaponLaserCarbinePractice - entities: - - uid: 8147 - components: - - type: Transform - pos: -10.327259,49.585735 - parent: 1 -- proto: WeaponRevolverDeckard - entities: - - uid: 17754 - components: - - type: Transform - pos: 15.523123,-26.506323 - parent: 1 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 6823 - components: - - type: Transform - pos: -16.502504,59.51904 - parent: 1 -- proto: WeaponWaterBlaster - entities: - - uid: 3021 - components: - - type: Transform - pos: -7.5149508,69.42698 - parent: 1 -- proto: WeaponWaterPistol - entities: - - uid: 7649 - components: - - type: Transform - pos: -23.508644,1.4423954 - parent: 1 -- proto: WelderIndustrial - entities: - - uid: 4700 - components: - - type: Transform - pos: -10.518035,34.54518 - parent: 1 -- proto: WelderIndustrialAdvanced - entities: - - uid: 8699 - components: - - type: Transform - pos: -13.470308,-33.594826 - parent: 1 -- proto: WeldingFuelTankFull - entities: - - uid: 8702 - components: - - type: Transform - pos: -13.5,-32.5 - parent: 1 - - uid: 9895 - components: - - type: Transform - pos: 38.5,42.5 - parent: 1 - - uid: 9899 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 1 - - uid: 9902 - components: - - type: Transform - pos: 18.5,23.5 - parent: 1 - - uid: 9903 - components: - - type: Transform - pos: 20.5,7.5 - parent: 1 - - uid: 9905 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 1 - - uid: 9906 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 1 - - uid: 13325 - components: - - type: Transform - pos: -21.5,3.5 - parent: 1 - - uid: 13352 - components: - - type: Transform - pos: -35.5,30.5 - parent: 1 - - uid: 13374 - components: - - type: Transform - pos: -28.5,27.5 - parent: 1 - - uid: 13421 - components: - - type: Transform - pos: -25.5,54.5 - parent: 1 - - uid: 13456 - components: - - type: Transform - pos: -44.5,50.5 - parent: 1 - - uid: 13997 - components: - - type: Transform - pos: 16.5,62.5 - parent: 1 - - uid: 14009 - components: - - type: Transform - pos: 12.5,48.5 - parent: 1 -- proto: WetFloorSign - entities: - - uid: 9256 - components: - - type: Transform - pos: 16.624058,-5.188912 - parent: 1 - - uid: 9257 - components: - - type: Transform - pos: 16.769894,-5.480578 - parent: 1 - - uid: 9258 - components: - - type: Transform - pos: 19.594421,-7.376412 - parent: 1 -- proto: Windoor - entities: - - uid: 9163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,5.5 - parent: 1 -- proto: WindoorHydroponicsLocked - entities: - - uid: 557 - components: - - type: Transform - pos: 10.5,12.5 - parent: 1 - - uid: 9011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 1 - - uid: 9012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 4075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1 - - uid: 6407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 1 - - uid: 6626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1 -- proto: WindoorKitchenLocked - entities: - - uid: 7765 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 1 - - uid: 7822 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 1 - - uid: 8096 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 1 -- proto: WindoorSecure - entities: - - uid: 18336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,61.5 - parent: 1 - - uid: 546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,61.5 - parent: 1 - - uid: 7691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,63.5 - parent: 1 - - uid: 8196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,47.5 - parent: 1 - - uid: 8197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,47.5 - parent: 1 - - uid: 8198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 1 - - uid: 8199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,49.5 - parent: 1 -- proto: WindoorSecureBrigLocked - entities: - - uid: 8127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,55.5 - parent: 1 - - uid: 8128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,55.5 - parent: 1 - - uid: 9508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,60.5 - parent: 1 -- proto: WindoorSecureCargoLocked - entities: - - uid: 9355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,6.5 - parent: 1 - - uid: 9356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,7.5 - parent: 1 - - uid: 9357 - components: - - type: Transform - pos: -35.5,12.5 - parent: 1 -- proto: WindoorSecureChemistryLocked - entities: - - uid: 8537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 1 - - uid: 8538 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 1 - - uid: 8539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,22.5 - parent: 1 - - uid: 8540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,23.5 - parent: 1 -- proto: WindoorSecureCommandLocked - entities: - - uid: 3784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 1 - - uid: 3803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-13.5 - parent: 1 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 8727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 1 - - uid: 8728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 1 - - uid: 9193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 1 - - uid: 9194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 1 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 9277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 -- proto: WindoorSecureJanitorLocked - entities: - - uid: 4012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 1 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,28.5 - parent: 1 - - uid: 3618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,20.5 - parent: 1 - - uid: 3634 - components: - - type: Transform - pos: 7.5,19.5 - parent: 1 - - uid: 3723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,18.5 - parent: 1 - - uid: 9373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,30.5 - parent: 1 - - uid: 9385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,33.5 - parent: 1 -- proto: WindoorSecureSalvageLocked - entities: - - uid: 8500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,16.5 - parent: 1 - - uid: 9370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,16.5 - parent: 1 -- proto: WindoorSecureScienceLocked - entities: - - uid: 8603 - components: - - type: Transform - pos: -20.5,35.5 - parent: 1 - - uid: 8654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 1 - - uid: 8655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,20.5 - parent: 1 -- proto: WindoorSecureSecurityLocked - entities: - - uid: 8200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,53.5 - parent: 1 - - uid: 8201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,54.5 - parent: 1 - - uid: 9398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 1 - - uid: 9399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 1 - - uid: 9409 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 1 - - uid: 9410 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 1 - - uid: 9427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,41.5 - parent: 1 - - uid: 9428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,41.5 - parent: 1 -- proto: Window - entities: - - uid: 464 - components: - - type: Transform - pos: -36.5,4.5 - parent: 1 - - uid: 474 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 1 - - uid: 475 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1 - - uid: 476 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 1 - - uid: 477 - components: - - type: Transform - pos: -1.5,12.5 - parent: 1 - - uid: 478 - components: - - type: Transform - pos: -0.5,12.5 - parent: 1 - - uid: 479 - components: - - type: Transform - pos: 0.5,12.5 - parent: 1 - - uid: 487 - components: - - type: Transform - pos: -4.5,12.5 - parent: 1 - - uid: 488 - components: - - type: Transform - pos: 3.5,12.5 - parent: 1 - - uid: 489 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 1 - - uid: 490 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 1 - - uid: 1579 - components: - - type: Transform - pos: -45.5,39.5 - parent: 1 - - uid: 1716 - components: - - type: Transform - pos: -46.5,39.5 - parent: 1 - - uid: 1867 - components: - - type: Transform - pos: 3.5,57.5 - parent: 1 - - uid: 1868 - components: - - type: Transform - pos: 3.5,55.5 - parent: 1 - - uid: 1869 - components: - - type: Transform - pos: 3.5,54.5 - parent: 1 - - uid: 1870 - components: - - type: Transform - pos: 3.5,52.5 - parent: 1 - - uid: 1874 - components: - - type: Transform - pos: 1.5,59.5 - parent: 1 - - uid: 1875 - components: - - type: Transform - pos: 1.5,60.5 - parent: 1 - - uid: 1876 - components: - - type: Transform - pos: 1.5,61.5 - parent: 1 - - uid: 2858 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 1 - - uid: 2886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - - uid: 2887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,4.5 - parent: 1 - - uid: 3410 - components: - - type: Transform - pos: 28.5,0.5 - parent: 1 - - uid: 3411 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 1 - - uid: 3412 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 1 - - uid: 3413 - components: - - type: Transform - pos: 28.5,-5.5 - parent: 1 - - uid: 3647 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1 - - uid: 3648 - components: - - type: Transform - pos: 8.5,16.5 - parent: 1 - - uid: 3649 - components: - - type: Transform - pos: 9.5,16.5 - parent: 1 - - uid: 3992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 1 - - uid: 4245 - components: - - type: Transform - pos: -35.5,8.5 - parent: 1 - - uid: 4246 - components: - - type: Transform - pos: -33.5,10.5 - parent: 1 - - uid: 4413 - components: - - type: Transform - pos: 29.5,39.5 - parent: 1 - - uid: 4414 - components: - - type: Transform - pos: 29.5,42.5 - parent: 1 - - uid: 4415 - components: - - type: Transform - pos: 32.5,42.5 - parent: 1 - - uid: 4432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,35.5 - parent: 1 - - uid: 4433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,35.5 - parent: 1 - - uid: 4434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 1 - - uid: 4435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,29.5 - parent: 1 - - uid: 4468 - components: - - type: Transform - pos: 19.5,39.5 - parent: 1 - - uid: 4469 - components: - - type: Transform - pos: 20.5,39.5 - parent: 1 - - uid: 4470 - components: - - type: Transform - pos: 21.5,39.5 - parent: 1 - - uid: 5705 - components: - - type: Transform - pos: -47.5,39.5 - parent: 1 - - uid: 5738 - components: - - type: Transform - pos: 21.5,16.5 - parent: 1 - - uid: 5739 - components: - - type: Transform - pos: 22.5,16.5 - parent: 1 - - uid: 5740 - components: - - type: Transform - pos: 26.5,16.5 - parent: 1 - - uid: 5741 - components: - - type: Transform - pos: 27.5,16.5 - parent: 1 - - uid: 5742 - components: - - type: Transform - pos: 28.5,17.5 - parent: 1 - - uid: 5743 - components: - - type: Transform - pos: 28.5,18.5 - parent: 1 - - uid: 5744 - components: - - type: Transform - pos: 28.5,22.5 - parent: 1 - - uid: 5745 - components: - - type: Transform - pos: 28.5,23.5 - parent: 1 - - uid: 6582 - components: - - type: Transform - pos: 3.5,65.5 - parent: 1 - - uid: 6583 - components: - - type: Transform - pos: 4.5,65.5 - parent: 1 - - uid: 7884 - components: - - type: Transform - pos: -44.5,39.5 - parent: 1 - - uid: 8553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 1 - - uid: 8988 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 1 - - uid: 8992 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 1 - - uid: 8993 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 1 - - uid: 9015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 1 - - uid: 9599 - components: - - type: Transform - pos: 16.5,-36.5 - parent: 1 - - uid: 14966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,39.5 - parent: 1 -- proto: WindowDirectional - entities: - - uid: 3621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,19.5 - parent: 1 - - uid: 3653 - components: - - type: Transform - pos: 6.5,19.5 - parent: 1 - - uid: 3660 - components: - - type: Transform - pos: 8.5,19.5 - parent: 1 - - uid: 6378 - components: - - type: Transform - pos: 9.5,19.5 - parent: 1 - - uid: 9161 - components: - - type: Transform - pos: -26.5,6.5 - parent: 1 - - uid: 9523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,38.5 - parent: 1 - - uid: 9524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,38.5 - parent: 1 - - uid: 9525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,38.5 - parent: 1 - - uid: 10066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 1 - - uid: 10093 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 1 - - uid: 11053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-0.5 - parent: 1 - - uid: 13376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,27.5 - parent: 1 - - uid: 13377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,27.5 - parent: 1 - - uid: 13419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,61.5 - parent: 1 - - uid: 13420 - components: - - type: Transform - pos: -18.5,59.5 - parent: 1 - - uid: 14003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,64.5 - parent: 1 - - uid: 14016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,40.5 - parent: 1 - - uid: 14038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,56.5 - parent: 1 - - uid: 14039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,56.5 - parent: 1 -- proto: WindowFrostedDirectional - entities: - - uid: 1003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,31.5 - parent: 1 - - uid: 3393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,49.5 - parent: 1 - - uid: 4072 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,34.5 - parent: 1 - - uid: 4073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,32.5 - parent: 1 - - uid: 6406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,29.5 - parent: 1 - - uid: 6671 - components: - - type: Transform - pos: 3.5,32.5 - parent: 1 - - uid: 6672 - components: - - type: Transform - pos: 2.5,32.5 - parent: 1 - - uid: 6814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,69.5 - parent: 1 - - uid: 9366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,28.5 - parent: 1 - - uid: 9367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 1 -- proto: WindowReinforcedDirectional - entities: - - uid: 1936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,57.5 - parent: 1 - - uid: 1937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,56.5 - parent: 1 - - uid: 8117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,55.5 - parent: 1 - - uid: 8118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,55.5 - parent: 1 - - uid: 8125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,55.5 - parent: 1 - - uid: 8126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,55.5 - parent: 1 - - uid: 8437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,61.5 - parent: 1 - - uid: 8503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,28.5 - parent: 1 - - uid: 8512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,29.5 - parent: 1 - - uid: 8642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,79.5 - parent: 1 - - uid: 9053 - components: - - type: Transform - pos: -3.5,85.5 - parent: 1 - - uid: 9054 - components: - - type: Transform - pos: -2.5,85.5 - parent: 1 - - uid: 9055 - components: - - type: Transform - pos: -1.5,85.5 - parent: 1 - - uid: 9056 - components: - - type: Transform - pos: 0.5,85.5 - parent: 1 - - uid: 9057 - components: - - type: Transform - pos: 1.5,85.5 - parent: 1 - - uid: 9058 - components: - - type: Transform - pos: 2.5,85.5 - parent: 1 - - uid: 9059 - components: - - type: Transform - pos: 4.5,84.5 - parent: 1 - - uid: 9060 - components: - - type: Transform - pos: 5.5,84.5 - parent: 1 - - uid: 9061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,82.5 - parent: 1 - - uid: 9062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,80.5 - parent: 1 - - uid: 9063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,79.5 - parent: 1 - - uid: 9064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,77.5 - parent: 1 - - uid: 9065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,76.5 - parent: 1 - - uid: 9066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,76.5 - parent: 1 - - uid: 9067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,77.5 - parent: 1 - - uid: 9068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,79.5 - parent: 1 - - uid: 9069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,80.5 - parent: 1 - - uid: 9070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,82.5 - parent: 1 - - uid: 9071 - components: - - type: Transform - pos: -6.5,84.5 - parent: 1 - - uid: 9072 - components: - - type: Transform - pos: -5.5,84.5 - parent: 1 - - uid: 9500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,80.5 - parent: 1 - - uid: 9506 - components: - - type: Transform - pos: 14.5,60.5 - parent: 1 - - uid: 9513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,55.5 - parent: 1 - - uid: 9514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,55.5 - parent: 1 - - uid: 9638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,80.5 - parent: 1 - - uid: 9639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,80.5 - parent: 1 - - uid: 9640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,79.5 - parent: 1 - - uid: 9641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,80.5 - parent: 1 - - uid: 9665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,80.5 - parent: 1 - - uid: 17891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-13.5 - parent: 1 - - uid: 18442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-13.5 - parent: 1 - - uid: 18443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-13.5 - parent: 1 - - uid: 18444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 1 - - uid: 18445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-13.5 - parent: 1 - - uid: 18448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 1 -- proto: Wirecutter - entities: - - uid: 13445 - components: - - type: Transform - pos: -37.329777,54.494305 - parent: 1 -- proto: WoodDoor - entities: - - uid: 253 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,10.5 - parent: 1 - - uid: 2875 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,12.5 - parent: 1 - - uid: 3180 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 44.5,46.5 - parent: 1 - - uid: 3232 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,47.5 - parent: 1 -- proto: Wrench - entities: - - uid: 3444 - components: - - type: Transform - pos: -10.675615,34.54656 - parent: 1 - - uid: 7716 - components: - - type: Transform - pos: 12.513342,30.534658 - parent: 1 - - uid: 13886 - components: - - type: Transform - pos: 20.623508,52.47136 - parent: 1 -- proto: Zipties - entities: - - uid: 9422 - components: - - type: Transform - pos: 41.421097,42.74209 - parent: 1 - - uid: 9423 - components: - - type: Transform - pos: 41.671097,42.596256 - parent: 1 -- proto: ZiptiesBroken - entities: - - uid: 10113 - components: - - type: Transform - pos: 17.425484,-37.18814 - parent: 1 -... +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorArcadeBlue + 17: FloorBlueCircuit + 20: FloorCarpetClown + 29: FloorDark + 30: FloorDarkDiagonal + 32: FloorDarkHerringbone + 33: FloorDarkMini + 34: FloorDarkMono + 36: FloorDarkPavement + 37: FloorDarkPavementVertical + 38: FloorDarkPlastic + 40: FloorDirt + 41: FloorEighties + 44: FloorFreezer + 45: FloorGlass + 48: FloorGrassDark + 54: FloorGreenCircuit + 58: FloorHydro + 62: FloorLino + 64: FloorMetalDiamond + 65: FloorMime + 69: FloorMono + 75: FloorPlastic + 77: FloorReinforced + 89: FloorSteel + 92: FloorSteelCheckerLight + 96: FloorSteelDirty + 97: FloorSteelHerringbone + 99: FloorSteelMini + 100: FloorSteelMono + 101: FloorSteelOffset + 102: FloorSteelPavement + 103: FloorSteelPavementVertical + 104: FloorTechMaint + 105: FloorTechMaint2 + 108: FloorWhite + 109: FloorWhiteDiagonal + 112: FloorWhiteMini + 113: FloorWhiteMono + 117: FloorWhitePlastic + 118: FloorWood + 119: FloorWoodTile + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - type: Transform + pos: 0.13793182,0.57805127 + parent: 6526 + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: eQAAAAAAZAAAAAACZAAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADWQAAAAABZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABYwAAAAACYwAAAAAAYwAAAAABYwAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAZAAAAAADZAAAAAACYwAAAAAAYwAAAAABYwAAAAADYwAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLQAAAAAAWQAAAAADWQAAAAABLQAAAAAAeQAAAAAAZAAAAAAAZAAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABLQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAKQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAAAKQAAAAAAeQAAAAAAHQAAAAACLQAAAAAAHQAAAAACHQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAADLQAAAAAAHQAAAAAAHQAAAAACLQAAAAAAKQAAAAAAKQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAABKQAAAAAAeQAAAAAAHQAAAAABLQAAAAAAHQAAAAABHQAAAAACLQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAADHQAAAAABLQAAAAAAHQAAAAABHQAAAAADLQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADFAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: FAAAAAAAFAAAAAAAHQAAAAADLQAAAAAAHQAAAAACHQAAAAADLQAAAAAAHQAAAAADHQAAAAADLQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABLQAAAAAAFAAAAAAAeQAAAAAAIgAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACLQAAAAAAHQAAAAACHQAAAAABLQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAADHQAAAAADLQAAAAAAHQAAAAADHQAAAAACLQAAAAAAQQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAADQQAAAAAAQQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACLQAAAAAAHQAAAAADHQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABLQAAAAAAHQAAAAABHQAAAAADLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAALQAAAAAAHQAAAAADHQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAD + version: 6 + 0,-1: + ind: 0,-1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAABWQAAAAABWQAAAAABeQAAAAAAIgAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAADWQAAAAAAWQAAAAABeQAAAAAAEQAAAAAAWQAAAAAAWQAAAAACLQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAAAWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAIgAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADLQAAAAAAHQAAAAADZAAAAAABbAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACLQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: HQAAAAADHQAAAAACLQAAAAAAHQAAAAACeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAAAXAAAAAAAXAAAAAAAbAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAADLQAAAAAAIgAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAZAAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABLQAAAAAAHQAAAAAAIgAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAACIQAAAAADIQAAAAADIQAAAAACHQAAAAACHQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABLQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAACIQAAAAAAIQAAAAABIQAAAAADHQAAAAACIgAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABIQAAAAAAIQAAAAABIQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAACHQAAAAABIQAAAAADIQAAAAABIQAAAAAAHQAAAAADHQAAAAADZAAAAAACWQAAAAAAWQAAAAADWQAAAAACHQAAAAAAHQAAAAACLQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAZAAAAAACZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAD + version: 6 + -1,1: + ind: -1,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACHQAAAAACIgAAAAADeQAAAAAAWQAAAAABWQAAAAACIgAAAAAAIgAAAAADIgAAAAADIgAAAAAAIgAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADHQAAAAACIgAAAAACeQAAAAAAWQAAAAABWQAAAAADIgAAAAABIgAAAAAAIgAAAAADIgAAAAABIgAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABLQAAAAAAHQAAAAAAIgAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAcAAAAAAAcAAAAAACcAAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACHQAAAAADIgAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAACeQAAAAAAWQAAAAADLQAAAAAAHQAAAAACeQAAAAAAIQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADZAAAAAABbAAAAAACcAAAAAABcAAAAAABcAAAAAAAbAAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAIQAAAAACWQAAAAACWQAAAAAAWQAAAAACZAAAAAACeQAAAAAAbAAAAAACcAAAAAACcAAAAAADcAAAAAACbAAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAADeQAAAAAAWQAAAAACLQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACcAAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACLQAAAAAAcAAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAADIgAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADZAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADLQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAB + version: 6 + 0,1: + ind: 0,1 + tiles: WQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAcQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADcQAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAcAAAAAAAcAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAABaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAABcAAAAAABcAAAAAAAcAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAADbQAAAAACbAAAAAACeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAbAAAAAABcAAAAAADcAAAAAADcAAAAAACbAAAAAADbAAAAAADbAAAAAADeQAAAAAAbAAAAAACbQAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbQAAAAAAbAAAAAACeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABWQAAAAADeQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAWQAAAAADeQAAAAAAcAAAAAAAcAAAAAAAbAAAAAADeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADWQAAAAABeQAAAAAAcAAAAAAAcAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAWQAAAAACeQAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAbAAAAAAAbAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAALQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACZAAAAAACZAAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAZAAAAAACeQAAAAAAWQAAAAABWQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAZAAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAZAAAAAABZAAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACLQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAAAHQAAAAAAWQAAAAABWQAAAAADLQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAALQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAC + version: 6 + 1,-1: + ind: 1,-1 + tiles: EQAAAAAAEQAAAAAAIQAAAAAAIQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAABIQAAAAADIQAAAAABIgAAAAAAIgAAAAABIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAIQAAAAACIQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAHQAAAAABIgAAAAABIgAAAAABHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAaAAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAALQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAOgAAAAAAWQAAAAABOgAAAAAAWQAAAAAAOgAAAAAAWQAAAAAAOgAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABOgAAAAAAWQAAAAADOgAAAAAAWQAAAAAAOgAAAAAAWQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAACWQAAAAABLQAAAAAAOgAAAAAAZAAAAAAAOgAAAAAAWQAAAAAAOgAAAAAAWQAAAAABOgAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADOgAAAAAAWQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAB + version: 6 + 1,1: + ind: 1,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZgAAAAABZgAAAAAAZgAAAAACZgAAAAADYQAAAAABMAAAAAABMAAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZgAAAAABZgAAAAADZgAAAAACYQAAAAADYQAAAAACMAAAAAADMAAAAAADeQAAAAAAWQAAAAABWQAAAAABLQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZgAAAAABZgAAAAAAYQAAAAACYQAAAAADYQAAAAACZwAAAAABZwAAAAABZAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAMAAAAAADMAAAAAABMAAAAAABYQAAAAABZwAAAAACZwAAAAACZwAAAAACZAAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMAAAAAACMAAAAAABMAAAAAACZwAAAAABZwAAAAABZwAAAAABZwAAAAADZAAAAAACWQAAAAACWQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMAAAAAADMAAAAAAAMAAAAAABZwAAAAAAZwAAAAACZwAAAAABZwAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZwAAAAACZAAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADLQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAABdQAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAZAAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACbAAAAAAAbAAAAAAAdQAAAAABdQAAAAAAdQAAAAACbAAAAAAAbAAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACLQAAAAAAbAAAAAADbAAAAAAAdQAAAAAAdQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACcQAAAAABeQAAAAAAdQAAAAADdQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAALQAAAAAAbAAAAAAAeQAAAAAAJgAAAAADJgAAAAACJgAAAAADJgAAAAABeQAAAAAAZAAAAAAAWQAAAAABZAAAAAADZAAAAAACZAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAALAAAAAAALAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAZAAAAAACZAAAAAACWQAAAAAAWQAAAAABWQAAAAADLAAAAAAALAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACLQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAKQAAAAAAKQAAAAAALQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAALQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAFAAAAAAAFAAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: WQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABLQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACIgAAAAAAHQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAWQAAAAACWQAAAAABIgAAAAABHQAAAAACHQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADLQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACWQAAAAADZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAADIQAAAAACeQAAAAAAHQAAAAABHQAAAAABWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACWQAAAAABIQAAAAABeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAWQAAAAACWQAAAAAAWQAAAAADZQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAACZQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: WQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAALQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAACQQAAAAAALQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAQQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAASwAAAAADQQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAALQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAADeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADLQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAD + version: 6 + 2,-1: + ind: 2,-1 + tiles: eQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: WQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAD + version: 6 + 2,1: + ind: 2,1 + tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACWQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACIgAAAAADWQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACZAAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACIgAAAAACHQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAC + version: 6 + -3,0: + ind: -3,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAACWQAAAAACeQAAAAAAZAAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABZAAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAZAAAAAADWQAAAAACZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABZAAAAAACWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAZAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAACZAAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADIgAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAD + version: 6 + -3,1: + ind: -3,1 + tiles: JAAAAAAAJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAHQAAAAAAIgAAAAABeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAADIgAAAAADIgAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAIgAAAAADIgAAAAACIgAAAAACIgAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAIgAAAAADIgAAAAAAIgAAAAADIgAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAB + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: aQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: WQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACMAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAMAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAACHQAAAAACHQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAIgAAAAABWQAAAAACWQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAADHQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAABeQAAAAAAJAAAAAADJAAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAdgAAAAACdgAAAAACeQAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: bAAAAAAAeQAAAAAAJgAAAAACJgAAAAAAJgAAAAABJgAAAAACeQAAAAAAZAAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADZAAAAAAAWQAAAAACWQAAAAABWQAAAAAAbAAAAAAAeQAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAABeQAAAAAAZAAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABZAAAAAABWQAAAAADWQAAAAAALQAAAAAAbAAAAAAAeQAAAAAAJgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAZAAAAAACWQAAAAACWQAAAAACWQAAAAAAZAAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABZAAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACLQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAACeQAAAAAAWQAAAAABWQAAAAAAcAAAAAADcAAAAAACcAAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAMAAAAAACZwAAAAAAZwAAAAACeQAAAAAAWQAAAAADWQAAAAACcAAAAAACcAAAAAACcAAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAMAAAAAABZwAAAAAAZwAAAAABeQAAAAAAWQAAAAADWQAAAAADcAAAAAAAcAAAAAABcAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAHQAAAAABHQAAAAABJQAAAAACJQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACJQAAAAACJQAAAAABdQAAAAAAdQAAAAACdQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAALQAAAAAAHQAAAAABHQAAAAAAJQAAAAABJQAAAAABeQAAAAAAdQAAAAADdQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADJQAAAAADeQAAAAAAdQAAAAACdQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABLQAAAAAAJAAAAAADJAAAAAADIAAAAAAAIAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAADWQAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJAAAAAABJAAAAAADJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: WQAAAAAAeQAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAbAAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAACeQAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADbAAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAeQAAAAAAcAAAAAAAcAAAAAAAbAAAAAAAbAAAAAADbAAAAAADcQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAIgAAAAADHQAAAAABIgAAAAAAIQAAAAADIQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABIgAAAAADHQAAAAADIgAAAAABIQAAAAADIQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAB + version: 6 + -1,2: + ind: -1,2 + tiles: QAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADLQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZAAAAAAAZAAAAAACZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADLQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACLQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAD + version: 6 + -2,2: + ind: -2,2 + tiles: WQAAAAABWQAAAAADeQAAAAAAWQAAAAAAZQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACLQAAAAAAWQAAAAABWQAAAAADWQAAAAAAZQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAALQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACZAAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAYAAAAAAAIgAAAAADHQAAAAABHQAAAAAAIgAAAAABHQAAAAADHQAAAAABIgAAAAADIgAAAAABIgAAAAABIgAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABJAAAAAACJAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMAAAAAABMAAAAAACMAAAAAABMAAAAAADWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAADZAAAAAACWQAAAAADaQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAKAAAAAAAYAAAAAAAKAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABYAAAAAAAKAAAAAADYAAAAAAAKAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAYAAAAAAAKAAAAAABYAAAAAAAKAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJAAAAAABJAAAAAAAJAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAIQAAAAACIQAAAAAAHQAAAAADZAAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABIQAAAAABIQAAAAAAHQAAAAAAZAAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABIgAAAAABIgAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABIgAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAZAAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAABaAAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAABeQAAAAAAeQAAAAAAIgAAAAAB + version: 6 + -1,-2: + ind: -1,-2 + tiles: eQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAACIgAAAAACIgAAAAACIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAACIgAAAAABIgAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAACIgAAAAACIgAAAAADIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAACIgAAAAADIgAAAAACIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAADIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -3,3: + ind: -3,3 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,3: + ind: -4,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: YAAAAAAAYAAAAAAAIgAAAAACHQAAAAACHQAAAAABIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAADIgAAAAADIgAAAAABIgAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADYAAAAAAAYAAAAAAAeQAAAAAAIgAAAAACIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAZAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADdgAAAAADeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: eQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAIgAAAAACHQAAAAADHQAAAAADIgAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAACIQAAAAAAIQAAAAACHQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAIgAAAAABIgAAAAABeQAAAAAAWQAAAAADLQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACIgAAAAABHQAAAAAAHQAAAAABIgAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADWQAAAAAAWQAAAAAAWQAAAAABLQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABIgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAZAAAAAABWQAAAAADWQAAAAAAWQAAAAACHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLQAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: WQAAAAABeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAIgAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADIgAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABIgAAAAABHQAAAAADHQAAAAADHQAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAdgAAAAABdwAAAAAAdwAAAAABdgAAAAABdgAAAAADdwAAAAADdwAAAAACdgAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAaQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAABdgAAAAABdwAAAAABdwAAAAABdwAAAAAAdwAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAACdwAAAAABdgAAAAABdgAAAAABdwAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAHQAAAAACHQAAAAADHQAAAAABJQAAAAACJQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAALQAAAAAAHQAAAAABHQAAAAAAJQAAAAAAJQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAIgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: HQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAHQAAAAACHQAAAAACLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAADJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABLQAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: aAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAABWQAAAAACWQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAADWQAAAAABWQAAAAABeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAADcAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAABcAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADLQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADLQAAAAAAHQAAAAADLQAAAAAAHQAAAAACLQAAAAAA + version: 6 + -2,4: + ind: -2,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: WQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADLQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAALQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAALQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAADdgAAAAABdgAAAAADdgAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAIgAAAAACeQAAAAAAHQAAAAADHQAAAAAAdgAAAAADdgAAAAACdgAAAAACHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADLQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABLQAAAAAAHQAAAAABLQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,5: + ind: -1,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACLQAAAAAAHQAAAAAAHQAAAAACHQAAAAACLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADLQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACLQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAAHQAAAAAAHQAAAAADLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,5: + ind: 0,5 + tiles: HQAAAAABHQAAAAABHQAAAAADLQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABLQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABLQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABLQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABIgAAAAADWQAAAAABWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAC + version: 6 + 1,-2: + ind: 1,-2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADIQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAIQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABIQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAEQAAAAAAEQAAAAAAIQAAAAADIQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIQAAAAADIQAAAAAAIgAAAAACIgAAAAABIgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: eAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: eQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAIgAAAAABIgAAAAAAHQAAAAACHQAAAAABIgAAAAABIgAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACZAAAAAACeQAAAAAAeQAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: eQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAcAAAAAAAcAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAcAAAAAAAcAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-5: + ind: -1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-5: + ind: 0,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,4: + ind: 2,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,4: + ind: -4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: Shuttle + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 4878: -43,28 + 4879: -43,27 + 4898: -46,27 + 4899: -46,28 + 5069: -9,-53 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 5068: -6,61 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 5007: -6,-31 + 5008: -6,-29 + 5009: -6,-27 + 5010: -6,-23 + 5011: -6,-21 + 5012: -6,-25 + 5070: 7,-53 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 1139: -16,-27 + 1140: -15,-27 + 1141: -16,-28 + 1142: -15,-28 + 1143: -16,-29 + 1144: -15,-29 + 1145: -16,-30 + 1146: -15,-30 + 1147: -14,-27 + 1148: -14,-28 + 1149: -14,-29 + 1150: -14,-30 + 1528: 4,-37 + 1529: 5,-37 + 1530: 8,-37 + 1531: 9,-37 + 1820: 7,-22 + 2198: 27,23 + 2199: 27,26 + 2200: 48,42 + 2201: 27,43 + 2202: 18,36 + 2203: 7,34 + 2204: -10,23 + 2205: -22,25 + 2206: -16,30 + 2207: -25,38 + 2208: -31,22 + 2209: -46,44 + 2210: -18,53 + 2211: 4,52 + 2212: -4,57 + 2213: -3,68 + 2214: 2,70 + 2215: -8,76 + 2216: -2,27 + 2217: 45,12 + 2218: 33,7 + 2219: 45,-7 + 2220: 17,-4 + 2221: 10,-16 + 2222: -8,-15 + 2223: 3,2 + 2224: -14,1 + 2225: 11,7 + 2226: 7,-6 + 2227: -18,-20 + 2228: -39,-3 + 2229: -46,12 + 2230: -35,16 + 2231: -24,15 + 2232: 14,47 + 2233: -34,-9 + 4863: -37,24 + 5100: 16,29 + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 459: -2,72 + 460: -1,72 + 461: 0,72 + 1807: 1,47 + 1808: 1,46 + 1809: 3,47 + 1810: 3,46 + 1811: 18,-11 + 1812: 19,-11 + 1813: 14,-24 + 1814: 15,-24 + - node: + color: '#52B4E996' + id: BotLeftGreyscale + decals: + 2074: 27,5 + 2075: 27,6 + 2076: 27,4 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 1078: -15,20 + 1079: -15,19 + 1080: -15,18 + 1081: -15,17 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: BotRight + decals: + 4882: -41,24 + 4883: -41,22 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkBox + decals: + 673: -6,78 + 674: -6,81 + 675: 4,81 + 676: 4,78 + 677: 1,79 + 678: -3,79 + 679: -1,79 + 680: -1,80 + 681: -5,79 + 682: -5,80 + 683: 3,79 + 684: 3,80 + 685: 27,43 + 686: 27,45 + 687: 27,47 + 688: 27,49 + 689: 34,49 + 690: 34,47 + 691: 34,45 + 692: 34,43 + 1289: -1,10 + 1290: -1,-3 + 1291: -1,-5 + 1292: 2,-5 + 1293: 2,-3 + 1294: 2,0 + 1295: 2,2 + 1296: 2,5 + 1297: 2,7 + 1298: 2,10 + 1299: -4,10 + 1300: -4,7 + 1301: -1,7 + 1302: -1,5 + 1303: -4,5 + 1304: -13,2 + 1305: -13,0 + 1306: -10,0 + 1307: -10,2 + 1308: -7,2 + 1309: -7,0 + 1310: -4,2 + 1311: -1,0 + 1312: -1,2 + 1313: -4,-5 + 1314: -4,-3 + 4755: -13,-5 + 4756: -13,-3 + 4757: -10,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 32: -2,80 + 38: 2,80 + 39: 1,83 + 40: -2,83 + 41: 5,82 + 42: -5,82 + 1063: -16,22 + 1441: 9,9 + 1610: 6,-25 + 1704: 18,-22 + 1747: -11,-18 + 1803: 5,47 + 2062: 13,54 + 2097: 18,-34 + 4759: 19,-14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 31: -4,80 + 37: 0,80 + 43: -7,82 + 44: -3,83 + 45: 0,83 + 46: 3,82 + 1061: -18,22 + 1445: 7,9 + 1587: 4,-18 + 1607: 5,-25 + 1734: 18,-14 + 1804: 4,47 + 2063: 8,54 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 1446: 9,6 + 1608: 6,-26 + 1705: 18,-26 + 1733: 19,-18 + 1805: 5,46 + 1821: 7,-27 + 2064: 13,53 + 2094: 18,-38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 567: -20,44 + 1444: 7,6 + 1609: 5,-26 + 1732: 18,-18 + 1806: 4,46 + 2065: 8,53 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 591: -13,49 + 594: -15,59 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndN + decals: + 1697: 17,-23 + 1838: -4,83 + 1839: -1,83 + 1840: 2,83 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndS + decals: + 1698: 17,-25 + 1835: -4,82 + 1836: -1,82 + 1837: 2,82 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 592: -14,49 + 593: -16,59 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 1741: 13,-25 + 1790: 0,45 + 2096: 18,-35 + 2098: 17,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 2132: 29,2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 27: -3,77 + 414: -3,76 + 1717: 17,-10 + 1742: 13,-23 + 1789: 0,48 + 2095: 18,-37 + 2099: 17,-38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 28: 1,77 + 415: 1,76 + 1718: 20,-10 + 2131: 29,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 22: -3,76 + 30: -2,79 + 35: 2,79 + 49: -2,82 + 50: 5,81 + 60: 1,82 + 432: 0,74 + 433: 0,73 + 434: 0,71 + 435: 0,70 + 523: -9,51 + 524: -9,52 + 525: -9,53 + 526: -9,54 + 527: -9,55 + 528: -9,56 + 529: -9,57 + 579: -7,47 + 580: -7,48 + 581: -7,49 + 582: -7,50 + 624: -6,57 + 625: -6,56 + 626: -6,55 + 627: -6,54 + 628: -6,53 + 629: -6,52 + 978: -10,27 + 979: -10,28 + 980: -10,29 + 981: -10,30 + 982: -10,31 + 983: -10,32 + 984: -10,33 + 985: -10,34 + 990: -15,20 + 991: -15,19 + 992: -15,18 + 993: -15,17 + 1064: -16,21 + 1127: -14,27 + 1128: -14,28 + 1442: 9,8 + 1443: 9,7 + 1538: 13,-24 + 1700: 17,-24 + 1701: 18,-24 + 1702: 18,-23 + 1703: 18,-25 + 1735: 19,-15 + 1736: 19,-16 + 1737: 19,-17 + 1745: -11,-19 + 1746: -11,-20 + 1787: 0,47 + 1788: 0,46 + 1822: 7,-26 + 1823: 7,-25 + 1824: 7,-24 + 1918: -37,28 + 1919: -37,27 + 1920: -37,23 + 1921: -37,26 + 1922: -37,25 + 1956: -35,-1 + 1957: -35,-2 + 1958: -35,-3 + 1959: -35,-4 + 1960: -35,-5 + 1961: -35,-6 + 4861: -37,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 12: -2,76 + 13: -1,76 + 14: 0,76 + 33: -3,80 + 34: 1,80 + 422: 2,74 + 423: 3,74 + 424: 4,74 + 425: 5,74 + 426: 6,74 + 427: 7,74 + 506: -20,42 + 507: -19,42 + 508: -18,42 + 509: -17,42 + 510: -16,42 + 596: -5,49 + 604: -4,49 + 610: -23,48 + 611: -22,48 + 636: -15,50 + 637: -14,50 + 638: -13,50 + 639: -12,50 + 1062: -17,22 + 1131: 18,34 + 1132: 19,34 + 1133: 20,34 + 1134: 21,34 + 1450: 8,9 + 1588: 5,-18 + 1589: 6,-18 + 1590: 7,-18 + 1707: 17,-22 + 1748: -12,-18 + 1749: -13,-18 + 1750: -14,-18 + 1751: -15,-18 + 1847: -37,11 + 1848: -36,11 + 1849: -35,11 + 1979: 26,-12 + 1980: 27,-12 + 1981: 28,-12 + 1982: 29,-12 + 1983: 30,-12 + 2030: 41,44 + 2031: 42,44 + 2032: 43,44 + 2033: 44,44 + 2066: 9,54 + 2067: 10,54 + 2068: 11,54 + 2069: 12,54 + 4776: 22,-17 + 4777: 21,-17 + 4778: 20,-17 + 4779: 20,-15 + 4780: 21,-15 + 4781: 22,-15 + 4782: 15,-15 + 4783: 16,-15 + 4784: 17,-15 + 4785: 15,-17 + 4786: 16,-17 + 4787: 17,-17 + 4824: 18,-13 + 4825: 19,-13 + 4886: -46,28 + 4887: -45,28 + - node: + color: '#D4D4D479' + id: BrickTileDarkLineS + decals: + 4818: 18,-12 + 4819: 19,-12 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 24: -2,77 + 25: -1,77 + 26: 0,77 + 386: -3,76 + 387: 1,76 + 388: 2,76 + 389: 3,76 + 390: 4,76 + 391: 5,76 + 392: 6,76 + 393: 7,76 + 394: -4,76 + 395: -5,76 + 396: -6,76 + 397: -7,76 + 398: -8,76 + 399: -9,76 + 416: 2,70 + 417: 3,70 + 418: 4,70 + 419: 5,70 + 420: 6,70 + 421: 7,70 + 485: -4,44 + 486: -5,44 + 487: -6,44 + 488: -7,44 + 489: -8,44 + 490: -9,44 + 491: -10,44 + 492: -11,44 + 493: -12,44 + 494: -13,44 + 495: -14,44 + 496: -15,44 + 497: -16,44 + 498: -17,44 + 499: -18,44 + 500: -19,44 + 501: -20,40 + 502: -19,40 + 503: -18,40 + 504: -17,40 + 505: -16,40 + 595: -5,49 + 605: -4,49 + 608: -23,47 + 609: -22,47 + 616: -17,58 + 617: -16,58 + 618: -15,58 + 619: -14,58 + 640: -15,48 + 641: -14,48 + 642: -13,48 + 643: -12,48 + 1086: -10,17 + 1087: -9,17 + 1088: -8,17 + 1447: 8,6 + 1706: 17,-26 + 1715: 18,-10 + 1716: 19,-10 + 1825: 6,-27 + 1826: 5,-27 + 1827: 4,-27 + 1844: -37,9 + 1845: -36,9 + 1846: -35,9 + 1974: 26,-14 + 1975: 27,-14 + 1976: 28,-14 + 1977: 29,-14 + 1978: 30,-14 + 2026: 41,42 + 2027: 42,42 + 2028: 43,42 + 2029: 44,42 + 2070: 9,53 + 2071: 10,53 + 2072: 11,53 + 2073: 12,53 + 4764: 22,-15 + 4765: 21,-15 + 4766: 20,-15 + 4767: 17,-15 + 4768: 16,-15 + 4769: 15,-15 + 4770: 15,-17 + 4771: 16,-17 + 4772: 17,-17 + 4773: 20,-17 + 4774: 21,-17 + 4775: 22,-17 + 4822: 18,-13 + 4823: 19,-13 + 4884: -45,27 + 4885: -46,27 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 23: 1,76 + 29: -4,79 + 36: 0,79 + 47: -7,81 + 48: -3,82 + 61: 0,82 + 428: -2,70 + 429: -2,71 + 430: -2,73 + 431: -2,74 + 511: -20,45 + 512: -20,46 + 513: -20,47 + 514: -20,48 + 515: -20,49 + 516: -20,50 + 517: -20,51 + 518: -20,52 + 519: -20,53 + 520: -17,54 + 521: -17,56 + 522: -17,55 + 530: -12,57 + 970: -12,27 + 971: -12,28 + 972: -12,29 + 973: -12,30 + 974: -12,31 + 975: -12,32 + 976: -12,33 + 977: -12,34 + 1056: -19,17 + 1057: -19,18 + 1058: -19,19 + 1059: -19,20 + 1060: -18,21 + 1448: 7,7 + 1449: 7,8 + 1532: 21,-27 + 1591: 4,-19 + 1592: 4,-20 + 1593: 4,-21 + 1594: 4,-22 + 1699: 17,-24 + 1738: 18,-17 + 1739: 18,-16 + 1740: 18,-15 + 1759: -14,-38 + 1760: -14,-37 + 1761: -14,-36 + 1762: -14,-35 + 1763: -14,-34 + 1764: -14,-33 + 1765: -14,-32 + 1766: -14,-25 + 1767: -14,-24 + 1768: -14,-23 + 1769: -14,-22 + 1912: -40,17 + 1913: -40,18 + 1914: -40,19 + 1915: -40,20 + 1916: -40,29 + 1917: -40,30 + 1950: -37,-1 + 1951: -37,-2 + 1952: -37,-3 + 1953: -37,-4 + 1954: -37,-5 + 1955: -37,-6 + 2129: 29,4 + 2130: 29,5 + 4864: -43,26 + 4865: -43,25 + 4866: -43,24 + 4867: -43,23 + 4868: -43,22 + 4869: -43,21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelBox + decals: + 654: -4,-13 + 655: -1,-13 + 656: 2,-13 + 657: -1,-9 + 658: -1,18 + 659: -1,21 + 660: -1,24 + 661: -1,27 + 662: -1,30 + 663: -1,33 + 664: -1,41 + 665: -1,44 + 666: -1,46 + 667: -1,49 + 668: -1,53 + 669: -1,56 + 670: -1,60 + 671: -1,63 + 672: -1,66 + 703: 10,67 + 704: 11,68 + 705: 10,69 + 1664: -32,37 + 1665: -32,33 + 1666: -32,30 + 1667: -32,27 + 1668: -32,24 + 1669: -32,21 + 1670: -32,18 + 1671: -32,14 + 1672: -32,10 + 1673: -32,7 + 1674: -32,4 + 1675: -32,1 + 1676: -32,-2 + 1677: -32,-5 + 1678: -32,-9 + 1679: 31,-9 + 1680: 31,-5 + 1681: 31,-2 + 1682: 31,1 + 1683: 31,4 + 1684: 31,7 + 1685: 31,10 + 1686: 31,14 + 1687: 31,18 + 1688: 31,21 + 1689: 31,24 + 1690: 31,27 + 1691: 31,30 + 1692: 31,33 + 1693: 31,37 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 733: 21,42 + 1026: -14,23 + 1196: -10,-13 + 1218: 11,-13 + 1236: -8,-12 + 1633: 4,19 + 1660: -45,41 + 5031: -40,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 734: 19,42 + 916: -22,34 + 1012: -22,25 + 1027: -20,23 + 1197: -13,-13 + 1219: 8,-13 + 1262: 6,-12 + 1644: -6,19 + 1661: -48,41 + 1895: -36,7 + 1940: -4,57 + 2156: 26,18 + 5030: -43,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 731: 21,40 + 1194: -10,-15 + 1217: 11,-15 + 2150: 23,20 + 5033: -40,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 732: 19,40 + 918: -22,32 + 923: -19,30 + 1195: -13,-15 + 1216: 8,-15 + 1896: -36,4 + 1935: -4,52 + 5032: -43,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 2020: -28,33 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndS + decals: + 2021: -28,30 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 921: -19,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 693: 29,40 + 694: 29,41 + 735: 21,41 + 994: -12,17 + 995: -12,18 + 996: -12,19 + 997: -12,20 + 998: -10,21 + 999: -10,22 + 1000: -10,23 + 1025: -14,22 + 1198: -10,-14 + 1220: 11,-14 + 1232: -8,-16 + 1233: -8,-15 + 1234: -8,-14 + 1235: -8,-13 + 1533: 13,-21 + 1534: 13,-22 + 1535: 13,-23 + 1536: 13,-25 + 1537: 13,-26 + 1539: 13,-27 + 1540: 13,-28 + 1541: 13,-29 + 1542: 13,-30 + 1543: 13,-35 + 1544: 13,-36 + 1545: 13,-37 + 1546: 13,-38 + 1630: 4,16 + 1631: 4,17 + 1632: 4,18 + 1663: -45,40 + 1860: -39,-3 + 1861: -39,-2 + 1862: -39,-1 + 1863: -39,0 + 1864: -38,3 + 1865: -38,4 + 1866: -38,5 + 1867: -38,6 + 1868: -38,7 + 1874: -35,1 + 1875: -35,2 + 2022: -28,32 + 2023: -28,31 + 2151: 23,21 + 2152: 23,22 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 736: 20,42 + 911: -21,34 + 912: -20,34 + 913: -19,34 + 914: -18,34 + 915: -17,34 + 1001: -11,25 + 1002: -12,25 + 1003: -13,25 + 1004: -14,25 + 1005: -15,25 + 1006: -16,25 + 1007: -17,25 + 1008: -18,25 + 1009: -19,25 + 1010: -20,25 + 1011: -21,25 + 1202: -12,-13 + 1203: -11,-13 + 1222: 9,-13 + 1223: 10,-13 + 1227: -14,-16 + 1228: -14,-12 + 1229: -14,-13 + 1237: -9,-12 + 1238: -10,-12 + 1239: -11,-12 + 1240: -12,-12 + 1241: -13,-12 + 1242: -15,-12 + 1255: 13,-12 + 1256: 12,-12 + 1257: 11,-12 + 1258: 10,-12 + 1259: 9,-12 + 1260: 8,-12 + 1261: 7,-12 + 1280: -14,-15 + 1634: 3,19 + 1635: 2,19 + 1636: 1,19 + 1648: -5,19 + 1649: -4,19 + 1650: -3,19 + 1658: -47,41 + 1659: -46,41 + 1898: -35,7 + 1899: -34,7 + 1941: -3,57 + 2155: 27,18 + 5034: -41,-6 + 5035: -42,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 738: 20,40 + 919: -21,32 + 920: -20,32 + 924: -18,30 + 925: -17,30 + 926: -16,30 + 927: -15,30 + 928: -14,30 + 1200: -12,-15 + 1201: -11,-15 + 1224: 9,-15 + 1225: 10,-15 + 1226: -14,-16 + 1230: -14,-13 + 1231: -14,-12 + 1279: -14,-15 + 1900: -35,4 + 1901: -34,4 + 1934: -3,52 + 2153: 21,20 + 2167: 22,20 + 5036: -42,-7 + 5037: -41,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 695: 32,41 + 696: 32,40 + 737: 19,41 + 917: -22,33 + 922: -19,31 + 1013: -22,24 + 1014: -22,23 + 1015: -22,22 + 1016: -22,21 + 1017: -22,20 + 1018: -22,19 + 1019: -22,18 + 1020: -22,17 + 1028: -20,22 + 1199: -13,-14 + 1221: 8,-14 + 1263: 6,-13 + 1264: 6,-14 + 1265: 6,-15 + 1266: 6,-16 + 1547: 9,-21 + 1548: 9,-22 + 1549: 9,-23 + 1550: 9,-24 + 1551: 9,-25 + 1552: 9,-26 + 1553: 9,-27 + 1554: 4,-33 + 1555: 4,-34 + 1556: 4,-35 + 1557: 11,-36 + 1558: 11,-37 + 1559: 11,-38 + 1645: -6,18 + 1646: -6,17 + 1647: -6,16 + 1662: -48,40 + 1857: -44,-1 + 1858: -44,-2 + 1859: -44,-3 + 1869: -41,7 + 1870: -41,8 + 1871: -41,9 + 1872: -41,10 + 1873: -41,11 + 1897: -36,6 + 1936: -4,53 + 1937: -4,54 + 1938: -4,55 + 1939: -4,56 + 2024: -28,31 + 2025: -28,32 + 2149: 26,17 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 55: -2,80 + 1708: 18,-22 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 56: 5,82 + 829: 12,28 + 886: 7,34 + 1640: 4,19 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNe + decals: + 64: 1,83 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 69: -2,83 + 1075: -16,22 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 78: 2,80 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 70: -5,82 + 1247: -8,-12 + 1756: -11,-18 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 787: 12,28 + 869: 5,24 + 885: 7,34 + 904: 6,33 + 1108: -5,23 + 2140: -17,-40 + 2145: 16,-40 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 54: -4,80 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 57: 3,82 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNw + decals: + 63: 0,83 + 1906: -36,7 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 68: -3,83 + 941: -22,34 + 1047: -22,25 + 1076: -18,22 + 1651: -6,19 + - node: + color: '#D56F18EF' + id: BrickTileWhiteCornerNw + decals: + 848: 2,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 77: 0,80 + 1943: -4,57 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 71: -7,82 + 1271: 6,-12 + 1602: 4,-18 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 839: 2,25 + 870: 3,24 + 905: 4,33 + 1109: -7,23 + 2142: -18,-40 + 2143: 15,-40 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 1709: 18,-26 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 891: 7,30 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 1119: -4,21 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 1828: 7,-27 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 867: 4,22 + 868: 5,23 + 876: 7,30 + 906: 6,31 + 1103: -4,21 + 1104: -5,22 + 2139: -17,-41 + 2144: 16,-41 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 811: 8,26 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 1904: -36,4 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 934: -19,30 + 939: -22,32 + - node: + color: '#D56F18EF' + id: BrickTileWhiteCornerSw + decals: + 844: 2,21 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 568: -20,44 + 1948: -4,52 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 777: 8,26 + 843: 2,21 + 866: 3,22 + 902: 4,31 + 1110: -7,22 + 2141: -18,-41 + 2146: 15,-41 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN + decals: + 821: 11,27 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndS + decals: + 822: 11,23 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 1744: 13,-25 + 1792: 0,45 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 2134: 29,2 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 1721: 17,-10 + 1743: 13,-23 + 1791: 0,48 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 873: 4,23 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 1722: 20,-10 + 2133: 29,7 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 809: 8,27 + 810: 10,26 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 936: -19,32 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw + decals: + 775: 10,26 + 778: 8,27 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 53: -2,79 + 436: 0,74 + 437: 0,73 + 438: 0,71 + 439: 0,70 + 1586: 13,-24 + 1710: 18,-25 + 1711: 18,-24 + 1712: 18,-23 + 1793: 0,46 + 1794: 0,47 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 59: 5,81 + 794: 12,22 + 795: 12,23 + 796: 12,24 + 797: 12,25 + 798: 12,26 + 799: 12,27 + 887: 7,33 + 888: 7,32 + 889: 7,31 + 1641: 4,18 + 1642: 4,17 + 1643: 4,16 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 65: 1,82 + 1876: -35,1 + 1877: -35,2 + 1878: -39,-3 + 1879: -39,-2 + 1880: -39,-1 + 1881: -39,0 + 1882: -38,7 + 1883: -38,6 + 1884: -38,5 + 1885: -38,4 + 1886: -38,3 + 1923: -37,28 + 1924: -37,27 + 1925: -37,26 + 1926: -37,25 + 1927: -37,23 + 4862: -37,24 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 66: -2,82 + 1029: -12,17 + 1030: -12,18 + 1031: -12,19 + 1032: -12,20 + 1033: -10,21 + 1034: -10,22 + 1035: -10,23 + 1065: -15,20 + 1066: -15,19 + 1067: -15,18 + 1068: -15,17 + 1074: -16,21 + 1120: -4,22 + 1121: -4,23 + 1122: -4,24 + 1129: -14,27 + 1130: -14,28 + - node: + color: '#D56F18EF' + id: BrickTileWhiteLineE + decals: + 853: 8,24 + 854: 8,23 + 855: 8,22 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 76: 2,79 + 547: -9,51 + 548: -9,52 + 549: -9,53 + 550: -9,54 + 551: -9,55 + 552: -9,56 + 553: -9,57 + 583: -7,50 + 584: -7,49 + 585: -7,48 + 586: -7,47 + 630: -6,57 + 631: -6,56 + 632: -6,55 + 633: -6,54 + 634: -6,53 + 635: -6,52 + 1962: -35,-6 + 1963: -35,-5 + 1964: -35,-4 + 1965: -35,-3 + 1966: -35,-2 + 1967: -35,-1 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 1243: -8,-16 + 1244: -8,-15 + 1245: -8,-14 + 1246: -8,-13 + 1560: 13,-21 + 1561: 13,-22 + 1562: 13,-23 + 1563: 13,-25 + 1564: 13,-26 + 1565: 13,-27 + 1566: 13,-28 + 1567: 13,-29 + 1568: 13,-30 + 1569: 13,-35 + 1570: 13,-36 + 1571: 13,-37 + 1572: 13,-38 + 1757: -11,-19 + 1758: -11,-20 + 1832: 7,-26 + 1833: 7,-25 + 1834: 7,-24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 788: 12,27 + 789: 12,26 + 790: 12,25 + 791: 12,24 + 792: 12,23 + 793: 12,22 + 823: 11,24 + 824: 11,25 + 825: 11,26 + 832: 8,22 + 833: 8,23 + 834: 8,24 + 877: 7,31 + 878: 7,32 + 879: 7,33 + 907: 6,32 + 1105: -4,22 + 1106: -4,23 + 1107: -4,24 + 4997: 3,29 + 4998: 3,30 + 4999: 3,31 + 5000: 3,32 + 5001: 3,33 + 5002: 3,34 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 52: -3,80 + 450: 2,74 + 451: 3,74 + 452: 4,74 + 453: 6,74 + 454: 5,74 + 455: 7,74 + 1713: 17,-22 + 4788: 17,-15 + 4803: 20,-15 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 58: 4,82 + 800: 11,28 + 801: 10,28 + 802: 9,28 + 803: 7,28 + 804: 8,28 + 805: 6,28 + 882: 4,34 + 883: 5,34 + 890: 6,34 + 1135: 18,34 + 1136: 20,34 + 1137: 19,34 + 1138: 21,34 + 1637: 1,19 + 1638: 2,19 + 1639: 3,19 + 4791: 15,-17 + 4798: 22,-17 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 4790: 15,-15 + 4805: 22,-15 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 1854: -37,11 + 1855: -36,11 + 1856: -35,11 + 1907: -35,7 + 1908: -34,7 + 4789: 16,-15 + 4804: 21,-15 + 4890: -46,28 + 4891: -45,28 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 942: -21,34 + 943: -20,34 + 944: -19,34 + 945: -18,34 + 946: -17,34 + 1036: -11,25 + 1037: -12,25 + 1038: -13,25 + 1039: -14,25 + 1040: -15,25 + 1041: -16,25 + 1042: -17,25 + 1043: -18,25 + 1044: -19,25 + 1045: -20,25 + 1046: -21,25 + 1077: -17,22 + 1652: -5,19 + 1653: -4,19 + 1654: -3,19 + - node: + color: '#D4D4D426' + id: BrickTileWhiteLineN + decals: + 4816: 18,-12 + 4817: 19,-12 + - node: + color: '#D56F18EF' + id: BrickTileWhiteLineN + decals: + 849: 3,25 + 850: 4,25 + 851: 5,25 + 852: 6,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 75: 1,80 + 569: -20,42 + 570: -19,42 + 571: -18,42 + 572: -17,42 + 573: -16,42 + 597: -5,49 + 606: -4,49 + 612: -23,48 + 613: -22,48 + 648: -15,50 + 649: -14,50 + 650: -13,50 + 651: -12,50 + 1942: -3,57 + 1984: 26,-12 + 1985: 27,-12 + 1986: 28,-12 + 1987: 29,-12 + 1988: 30,-12 + 2034: 41,44 + 2035: 42,44 + 2036: 43,44 + 2037: 44,44 + 4792: 16,-17 + 4799: 21,-17 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 72: -6,82 + 1248: -9,-12 + 1249: -10,-12 + 1250: -11,-12 + 1251: -12,-12 + 1252: -13,-12 + 1253: -14,-12 + 1254: -15,-12 + 1272: 7,-12 + 1273: 8,-12 + 1274: 9,-12 + 1275: 10,-12 + 1276: 11,-12 + 1277: 12,-12 + 1278: 13,-12 + 1595: 7,-18 + 1596: 6,-18 + 1597: 5,-18 + 1752: -15,-18 + 1753: -14,-18 + 1754: -13,-18 + 1755: -12,-18 + 4793: 17,-17 + 4802: 20,-17 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 781: 6,28 + 782: 7,28 + 783: 8,28 + 784: 9,28 + 785: 10,28 + 786: 11,28 + 835: 6,25 + 836: 5,25 + 837: 4,25 + 838: 3,25 + 871: 4,24 + 880: 5,34 + 881: 4,34 + 884: 6,34 + 908: 5,33 + 1112: -6,23 + 4994: 4,28 + 4995: 3,28 + 4996: 2,28 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 400: -3,76 + 401: -4,76 + 402: -5,76 + 403: -6,76 + 404: -7,76 + 405: -8,76 + 406: -9,76 + 407: 1,76 + 408: 2,76 + 409: 3,76 + 410: 4,76 + 411: 5,76 + 412: 6,76 + 413: 7,76 + 444: 2,70 + 445: 3,70 + 446: 4,70 + 447: 6,70 + 448: 5,70 + 449: 7,70 + 1714: 17,-26 + 1719: 18,-10 + 1720: 19,-10 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 806: 6,27 + 807: 7,27 + 808: 9,26 + 892: 6,30 + 893: 5,30 + 4796: 15,-15 + 4797: 22,-15 + - node: + color: '#5A5A605A' + id: BrickTileWhiteLineS + decals: + 3: -2,76 + 4: -1,76 + 5: 0,76 + - node: + color: '#5A5A60FF' + id: BrickTileWhiteLineS + decals: + 6: -2,76 + 7: -1,76 + 8: 0,76 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 1851: -37,9 + 1852: -36,9 + 1853: -35,9 + 1902: -34,4 + 1903: -35,4 + 4888: -45,27 + 4889: -46,27 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 929: -14,30 + 930: -15,30 + 931: -16,30 + 932: -17,30 + 933: -18,30 + 937: -20,32 + 938: -21,32 + 1089: -10,17 + 1090: -9,17 + 1091: -8,17 + 1115: -8,21 + 1116: -7,21 + 1117: -6,21 + 1118: -5,21 + 4806: 16,-17 + 4811: 21,-17 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineS + decals: + 4809: 15,-17 + 4810: 22,-17 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineS + decals: + 4807: 17,-17 + 4808: 20,-17 + - node: + color: '#D56F18EF' + id: BrickTileWhiteLineS + decals: + 856: 3,21 + 857: 4,21 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 531: -19,44 + 532: -18,44 + 533: -17,44 + 534: -16,44 + 535: -15,44 + 536: -14,44 + 537: -13,44 + 538: -12,44 + 539: -11,44 + 540: -10,44 + 541: -9,44 + 542: -8,44 + 543: -7,44 + 544: -6,44 + 545: -5,44 + 546: -4,44 + 574: -20,40 + 575: -19,40 + 576: -18,40 + 577: -17,40 + 578: -16,40 + 598: -5,49 + 607: -4,49 + 614: -23,47 + 615: -22,47 + 620: -17,58 + 621: -16,58 + 622: -15,58 + 623: -14,58 + 644: -15,48 + 645: -14,48 + 646: -13,48 + 647: -12,48 + 1949: -3,52 + 1989: 26,-14 + 1990: 27,-14 + 1991: 28,-14 + 1992: 29,-14 + 1993: 30,-14 + 2038: 41,42 + 2039: 42,42 + 2040: 43,42 + 2041: 44,42 + 4795: 16,-15 + 4800: 21,-15 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 1829: 6,-27 + 1830: 5,-27 + 1831: 4,-27 + 4794: 17,-15 + 4801: 20,-15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 776: 9,26 + 779: 7,27 + 780: 6,27 + 830: 3,21 + 831: 4,21 + 874: 5,30 + 875: 6,30 + 909: 5,31 + 1101: -6,21 + 1102: -5,21 + 1111: -6,22 + 1113: -7,21 + 1114: -8,21 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 51: -4,79 + 440: -2,74 + 441: -2,73 + 442: -2,71 + 443: -2,70 + 2135: 29,4 + 2136: 29,5 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 812: 10,25 + 813: 10,24 + 814: 10,23 + 815: 10,22 + - node: + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 62: 0,82 + 1887: -41,11 + 1888: -41,10 + 1889: -41,9 + 1890: -41,8 + 1891: -41,7 + 1892: -44,-1 + 1893: -44,-2 + 1894: -44,-3 + 1905: -36,6 + 1928: -40,30 + 1929: -40,29 + 1930: -40,20 + 1931: -40,19 + 1932: -40,18 + 1933: -40,17 + 4870: -43,26 + 4871: -43,25 + 4872: -43,24 + 4873: -43,23 + 4874: -43,22 + 4875: -43,21 + 5038: -41,6 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 67: -3,82 + 935: -19,31 + 940: -22,33 + 1048: -22,24 + 1049: -22,23 + 1050: -22,22 + 1051: -22,21 + 1052: -22,20 + 1053: -22,19 + 1054: -22,18 + 1055: -22,17 + 1069: -19,17 + 1070: -19,18 + 1071: -19,19 + 1072: -19,20 + 1073: -18,21 + 1655: -6,18 + 1656: -6,17 + 1657: -6,16 + - node: + color: '#D56F18EF' + id: BrickTileWhiteLineW + decals: + 845: 2,22 + 846: 2,23 + 847: 2,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 74: 0,79 + 554: -12,57 + 555: -17,56 + 556: -17,55 + 557: -17,54 + 558: -20,53 + 559: -20,52 + 560: -20,51 + 561: -20,50 + 562: -20,49 + 563: -20,48 + 564: -20,47 + 565: -20,46 + 566: -20,45 + 1944: -4,56 + 1945: -4,55 + 1946: -4,54 + 1947: -4,53 + 1968: -37,-6 + 1969: -37,-5 + 1970: -37,-4 + 1971: -37,-3 + 1972: -37,-2 + 1973: -37,-1 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 73: -7,81 + 1267: 6,-16 + 1268: 6,-15 + 1269: 6,-14 + 1270: 6,-13 + 1573: 11,-38 + 1574: 11,-37 + 1575: 11,-36 + 1576: 4,-35 + 1577: 4,-34 + 1578: 4,-33 + 1579: 9,-27 + 1580: 9,-26 + 1581: 9,-25 + 1582: 9,-24 + 1583: 9,-23 + 1584: 9,-22 + 1585: 9,-21 + 1598: 4,-22 + 1599: 4,-21 + 1600: 4,-20 + 1601: 4,-19 + 1770: -14,-22 + 1771: -14,-23 + 1772: -14,-24 + 1773: -14,-25 + 1774: -14,-32 + 1775: -14,-33 + 1776: -14,-34 + 1777: -14,-35 + 1778: -14,-36 + 1779: -14,-37 + 1780: -14,-38 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 771: 10,22 + 772: 10,23 + 773: 10,24 + 774: 10,25 + 826: 11,26 + 827: 11,25 + 828: 11,24 + 840: 2,24 + 841: 2,23 + 842: 2,22 + 872: 3,23 + 910: 4,32 + - node: + color: '#80C71FA4' + id: Busha1 + decals: + 4733: -47.70598,40.43374 + - node: + color: '#80C71FAB' + id: Busha1 + decals: + 2159: 22.65236,20.282064 + - node: + color: '#FFFFFF7F' + id: Busha1 + decals: + 2108: 32.123173,40.915573 + - node: + color: '#80C71FA4' + id: Busha2 + decals: + 4735: -45.230186,40.743168 + - node: + color: '#80C71FCA' + id: Busha2 + decals: + 2158: 22.247696,21.53798 + - node: + color: '#FFFFFF7F' + id: Busha2 + decals: + 2107: 28.87165,40.802044 + 2109: 32.094776,39.978962 + - node: + color: '#FFFFFF7F' + id: Busha3 + decals: + 2110: 28.928446,39.978962 + - node: + color: '#80C71FA4' + id: Bushb1 + decals: + 4732: -46.05545,40.68423 + 4736: -47.396503,39.873817 + - node: + color: '#80C71FCA' + id: Bushb1 + decals: + 2157: 21.225384,20.367212 + - node: + color: '#FFFFFF7F' + id: Bushb1 + decals: + 2111: 28.857452,41.01491 + 2112: 32.123173,41.043293 + - node: + color: '#80C71FAB' + id: Bushb3 + decals: + 2160: 26.187859,16.8762 + - node: + color: '#80C71FA4' + id: Bushc2 + decals: + 4734: -45.30387,39.903286 + - node: + color: '#FFFFFF7F' + id: Bushf1 + decals: + 2103: 28.885849,40.418884 + 2104: 32.13737,41.057484 + - node: + color: '#80C71FAB' + id: Bushf2 + decals: + 2161: 26.99719,17.621233 + - node: + color: '#FFFFFF7F' + id: Bushf3 + decals: + 2101: 32.108974,39.865433 + 2102: 28.87165,41.01491 + - node: + color: '#FFFFFF7F' + id: Bushg3 + decals: + 2105: 28.843252,39.879623 + 2106: 32.165768,40.518223 + - node: + color: '#DE3A3A96' + id: CautionGreyscale + decals: + 602: -4.9917116,48.825462 + 603: -3.992663,48.8136 + - node: + angle: 1.5707963267948966 rad + color: '#DE3A3A96' + id: CautionGreyscale + decals: + 652: -22.808884,47.519577 + 653: -21.814968,47.519577 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 5106: 22,27 + 5107: 21,27 + 5108: 20,27 + 5109: 20,26 + 5110: 21,26 + 5111: 22,26 + 5112: 19,26 + 5113: 18,26 + 5114: 18,27 + 5115: 19,27 + 5116: 19,28 + 5117: 18,28 + 5118: 18,29 + 5119: 19,29 + - node: + color: '#79150096' + id: CheckerNESW + decals: + 1315: -3,11 + 1316: -3,10 + 1317: -3,9 + 1318: -3,8 + 1319: -3,7 + 1320: 1,11 + 1321: 1,10 + 1322: 1,8 + 1323: 1,9 + 1324: 1,7 + 1325: 0,8 + 1326: -1,8 + 1327: -2,8 + 1328: -2,9 + 1329: -1,9 + 1330: 0,9 + 1331: -3,6 + 1332: -3,5 + 1333: -3,4 + 1334: -3,3 + 1335: -2,4 + 1336: -1,4 + 1337: 0,4 + 1338: -2,3 + 1339: -1,3 + 1340: 0,3 + 1341: 1,3 + 1342: 1,4 + 1343: 1,5 + 1344: 1,6 + 1345: -3,2 + 1346: -3,1 + 1347: -3,0 + 1348: -3,-1 + 1349: -3,-2 + 1350: -2,-1 + 1351: -2,-2 + 1352: -1,-2 + 1353: -1,-1 + 1354: 0,-1 + 1355: 0,-2 + 1356: 1,-2 + 1357: 1,-1 + 1358: 1,0 + 1359: 1,1 + 1360: 1,2 + 1361: 1,-3 + 1362: 1,-4 + 1363: 1,-5 + 1364: 1,-6 + 1365: -3,-6 + 1366: -3,-5 + 1367: -3,-4 + 1368: -3,-3 + 1369: -4,-2 + 1370: -5,-2 + 1371: -6,-2 + 1372: -7,-2 + 1373: -7,-1 + 1374: -6,-1 + 1375: -5,-1 + 1376: -4,-1 + 1377: -14,-1 + 1378: -14,-2 + 1379: -13,-2 + 1380: -12,-1 + 1381: -12,-2 + 1382: -13,-1 + 1383: -11,-1 + 1384: -11,-2 + 1385: -10,-2 + 1386: -10,-1 + 1387: -9,-1 + 1388: -9,-2 + 1389: -8,-2 + 1390: -8,-1 + 1391: -14,3 + 1392: -13,3 + 1393: -12,3 + 1394: -11,3 + 1395: -10,3 + 1396: -9,3 + 1397: -8,3 + 1398: -6,3 + 1399: -7,3 + 1400: -5,3 + 1401: -4,3 + 1402: -14,4 + 1403: -13,4 + 1404: -12,4 + 1405: -11,4 + 1406: -4,4 + - node: + color: '#3E5C23A8' + id: CheckerNWSE + decals: + 1451: 6,6 + 1452: 6,7 + 1453: 6,8 + 1454: 6,9 + 1455: 6,10 + 1456: 7,10 + 1457: 8,10 + 1458: 9,10 + 1459: 10,10 + 1460: 10,9 + 1461: 10,8 + 1462: 10,7 + 1463: 10,6 + 1464: 10,5 + 1465: 9,5 + 1466: 8,5 + 1467: 7,5 + 1468: 6,5 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 5082: 14,31 + 5083: 15,31 + 5084: 16,31 + 5085: 16,32 + 5086: 15,32 + 5087: 14,32 + 5088: 14,33 + 5089: 15,33 + 5090: 16,33 + 5091: 16,34 + 5092: 15,34 + 5093: 14,34 + 5094: 15,30 + - node: + color: '#79150096' + id: CheckerNWSE + decals: + 1514: 9,-7 + 1515: 10,-7 + 1516: 11,-7 + - node: + color: '#B02E26FF' + id: CheckerNWSE + decals: + 5047: -9,63 + 5048: -9,64 + 5049: -9,62 + 5050: -8,62 + 5051: -8,63 + 5052: -8,64 + 5053: -7,61 + 5054: -7,60 + 5055: -6,60 + 5056: -6,61 + 5057: -5,61 + 5058: -5,60 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 1151: -13,-30 + 1152: -13,-29 + 1153: -13,-28 + 1154: -13,-27 + 5046: -10,60 + 5123: 13,18 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 2077: 27,3 + - node: + color: '#334E6DC8' + id: DiagonalCheckerAOverlay + decals: + 2050: 13,53 + 2051: 13,54 + 2052: 11,54 + 2053: 12,54 + 2054: 12,53 + 2055: 11,53 + 2056: 10,53 + 2057: 10,54 + 2058: 9,54 + 2059: 9,53 + 2060: 8,53 + 2061: 8,54 + - node: + color: '#52B4E996' + id: DiagonalCheckerAOverlay + decals: + 816: 11,23 + 817: 11,24 + 818: 11,25 + 819: 11,26 + 820: 11,27 + 894: 4,31 + 895: 4,32 + 896: 4,33 + 897: 6,33 + 898: 6,32 + 899: 6,31 + 900: 5,31 + 901: 5,32 + 903: 5,33 + - node: + color: '#83543273' + id: Dirt + decals: + 2234: 6,-9 + 2235: 4,-9 + 2236: 2,-9 + 2237: 0,-9 + 2238: -2,-9 + 2239: -4,-9 + 2240: -6,-9 + 2241: -7,-9 + 2242: -9,-9 + 2243: -11,-9 + 2244: -13,-9 + 2245: -15,-9 + 2246: -17,-9 + 2247: -18,-9 + 2248: -19,-9 + 2249: -21,-9 + 2250: -23,-9 + 2251: -25,-9 + 2252: -27,-9 + 2253: -30,-9 + 2254: -32,-9 + 2255: -32,-7 + 2256: -32,-4 + 2257: -32,-1 + 2258: -32,0 + 2259: -32,4 + 2260: -32,8 + 2261: -32,12 + 2262: -32,14 + 2263: -34,14 + 2264: -36,14 + 2265: -38,14 + 2266: -39,14 + 2267: -42,14 + 2268: -44,14 + 2269: -46,14 + 2270: -48,14 + 2271: -50,14 + 2272: -48,14 + 2273: -46,14 + 2274: -44,14 + 2275: -42,14 + 2276: -40,14 + 2277: -38,14 + 2278: -36,14 + 2279: -29,14 + 2280: -27,14 + 2281: -25,14 + 2282: -23,14 + 2283: -21,14 + 2284: -19,14 + 2285: -17,14 + 2286: -15,14 + 2287: -13,14 + 2288: -11,14 + 2289: -9,14 + 2290: -7,14 + 2291: -5,14 + 2292: -3,14 + 2293: -1,14 + 2294: 1,14 + 2295: 3,14 + 2296: 5,14 + 2297: 7,14 + 2298: 9,14 + 2299: 11,14 + 2300: 13,14 + 2301: 15,14 + 2302: 17,14 + 2303: 19,14 + 2304: 21,14 + 2305: 23,14 + 2306: 25,14 + 2307: 27,14 + 2308: 29,14 + 2309: 31,14 + 2310: 33,14 + 2311: 35,14 + 2312: 37,14 + 2313: 39,14 + 2314: 41,14 + 2315: 43,14 + 2316: 45,14 + 2317: 47,14 + 2318: 49,14 + 2319: 30,14 + 2320: 30,15 + 2321: 30,17 + 2322: 30,19 + 2323: 30,22 + 2324: 30,24 + 2325: 30,26 + 2326: 30,28 + 2327: 30,30 + 2328: 30,32 + 2329: 30,34 + 2330: 31,28 + 2331: 31,24 + 2332: 31,20 + 2333: 32,19 + 2334: 31,10 + 2335: 31,6 + 2336: 30,5 + 2337: 28,3 + - node: + cleanable: True + color: '#83543273' + id: Dirt + decals: + 2338: 27,3 + 2339: 27,4 + 2340: 27,5 + 2341: 27,6 + 2342: 28,6 + 2343: 29,6 + 2344: 29,5 + 2345: 31,5 + 2346: 32,6 + 2347: 32,11 + 2348: 32,14 + 2349: 26,14 + 2350: 21,14 + 2351: 18,14 + 2352: 16,14 + 2353: 14,14 + 2354: 10,14 + 2355: 5,14 + 2356: 2,14 + 2357: -4,14 + 2358: -7,14 + 2359: -10,14 + 2360: -13,14 + 2361: -15,14 + 2362: -19,14 + 2363: -21,14 + 2364: -26,14 + 2365: -28,13 + 2366: -30,13 + 2367: -33,14 + 2368: -35,14 + 2369: -37,13 + 2370: -39,14 + 2371: -41,14 + 2372: -39,15 + 2373: -38,15 + 2374: -37,14 + 2375: -48,13 + 2376: -50,13 + 2377: -51,15 + 2378: -51,13 + 2379: -53,13 + 2380: -53,15 + 2381: -51,14 + 2382: -34,4 + 2383: -34,6 + 2384: -34,7 + 2385: -34,5 + 2386: -36,5 + 2387: -36,4 + 2388: -36,6 + 2389: -36,7 + 2390: -35,7 + 2391: -31,7 + 2392: -31,6 + 2393: -31,4 + 2394: -34,4 + 2395: -36,2 + 2396: -37,2 + 2397: -39,2 + 2398: -40,0 + 2399: -42,2 + 2400: -43,2 + 2401: -44,2 + 2402: -45,2 + 2403: -44,4 + 2404: -43,4 + 2405: -43,4 + 2406: -42,4 + 2407: -40,4 + 2408: -39,6 + 2409: -39,5 + 2410: -40,6 + 2411: -41,8 + 2412: -41,10 + 2413: -41,10 + 2414: -39,7 + 2415: -38,7 + 2416: -41,-1 + 2417: -42,-3 + 2418: -41,-3 + 2419: -42,-2 + 2420: -42,-1 + 2421: -39,-2 + 2422: -39,1 + 2423: -37,1 + 2424: -36,-3 + 2425: -35,-5 + 2426: -35,-5 + 2427: -37,-3 + 2428: -40,-2 + 2429: -35,-6 + 2430: -36,-5 + 2431: -36,-4 + 2432: -37,-3 + 2433: -37,-2 + 2434: -33,-5 + 2435: -32,-5 + 2436: -33,-5 + 2437: -32,-3 + 2438: -32,-2 + 2439: -32,1 + 2440: -32,4 + 2441: -32,8 + 2442: -32,5 + 2443: -32,6 + 2444: -33,7 + 2445: -33,6 + 2446: -33,4 + 2447: -33,3 + 2448: -32,2 + 2449: -32,3 + 2450: -31,0 + 2451: -31,1 + 2452: -32,-6 + 2453: -31,-7 + 2454: -31,-8 + 2455: -30,-8 + 2456: -29,-9 + 2457: -28,-9 + 2458: -27,-8 + 2459: -28,-8 + 2460: -27,-9 + 2461: -28,-10 + 2462: -27,-10 + 2463: -29,-10 + 2464: -25,-9 + 2465: -21,-9 + 2466: -19,-9 + 2467: -17,-9 + 2468: -14,-9 + 2469: -11,-9 + 2470: -9,-9 + 2471: -6,-9 + 2472: -4,-9 + 2473: -2,-9 + 2474: 2,-9 + 2475: 4,-9 + 2476: 6,-9 + 2477: 9,-9 + 2478: 11,-9 + 2479: 13,-9 + 2480: 15,-9 + 2481: 18,-9 + 2482: 20,-9 + 2483: 23,-9 + 2484: 25,-9 + 2485: 27,-9 + 2486: 30,-9 + 2487: 32,-9 + 2488: 35,-9 + 2489: 37,-9 + 2490: 39,-9 + 2491: 42,-9 + 2492: 44,-9 + 2493: 46,-9 + 2494: 48,-9 + 2495: 46,-10 + 2496: 46,-9 + 2497: 47,-9 + 2498: 48,-10 + 2499: 49,-10 + 2500: 49,-9 + 2501: 50,-8 + 2502: 51,-8 + 2503: 50,-8 + 2504: 50,-10 + 2505: 48,-10 + 2506: 44,-10 + 2507: 38,-10 + 2508: 39,-10 + 2509: 41,-10 + 2510: 40,-9 + 2511: 38,-9 + 2512: 38,-10 + 2513: 37,-9 + 2514: 34,-8 + 2515: 33,-8 + 2516: 32,-8 + 2517: 32,-7 + 2518: 30,-8 + 2519: 30,-7 + 2520: 29,-8 + 2521: 29,-10 + 2522: 30,-10 + 2523: 26,-11 + 2524: 27,-10 + 2525: 27,-11 + 2526: 27,-12 + 2527: 27,-13 + 2528: 28,-13 + 2529: 28,-14 + 2530: 28,-15 + 2531: 27,-14 + 2532: 28,-14 + 2533: 27,-9 + 2534: 30,-5 + 2535: 30,-2 + 2536: 32,-2 + 2537: 31,-3 + 2538: 30,-4 + 2539: 30,-4 + 2540: 31,-6 + 2541: 32,-5 + 2542: 30,-1 + 2543: 30,2 + 2544: 29,3 + 2545: 33,3 + 2546: 34,0 + 2547: 34,2 + 2548: 34,5 + 2549: 34,1 + 2550: 32,0 + 2551: 29,4 + 2552: 31,8 + 2553: 32,11 + 2554: 30,14 + 2555: 35,13 + 2556: 39,12 + 2557: 42,14 + 2558: 45,14 + 2559: 50,13 + 2560: 51,13 + 2561: 51,15 + 2562: 50,15 + 2563: 51,15 + 2564: 49,15 + 2565: 48,15 + 2566: 48,17 + 2567: 48,17 + 2568: 48,15 + 2569: 46,15 + 2570: 46,16 + 2571: 46,17 + 2572: 46,15 + 2573: 45,13 + 2574: 48,13 + 2575: 50,13 + 2576: 49,13 + 2577: 46,13 + 2578: 42,13 + 2579: 40,14 + 2580: 39,14 + 2581: 36,13 + 2582: 34,15 + 2583: 31,14 + 2584: 30,13 + 2585: 27,13 + 2586: 26,14 + 2587: 24,15 + 2588: 22,14 + 2589: 21,13 + 2590: 30,16 + 2591: 31,18 + 2592: 29,20 + 2593: 31,22 + 2594: 30,24 + 2595: 28,26 + 2596: 29,26 + 2597: 28,26 + 2598: 28,28 + 2599: 27,25 + 2600: 28,25 + 2601: 28,25 + 2602: 29,25 + 2603: 28,28 + 2604: 29,32 + 2605: 29,32 + 2606: 29,33 + 2607: 27,33 + 2608: 27,32 + 2609: 26,32 + 2610: 25,33 + 2611: 25,35 + 2612: 25,35 + 2613: 26,35 + 2614: 25,36 + 2615: 27,36 + 2616: 25,36 + 2617: 26,36 + 2618: 27,36 + 2619: 30,36 + 2620: 30,37 + 2621: 30,38 + 2622: 31,41 + 2623: 30,41 + 2624: 31,40 + 2625: 30,44 + 2626: 30,45 + 2627: 31,46 + 2628: 31,44 + 2629: 30,47 + 2630: 31,49 + 2631: 32,47 + 2632: 35,47 + 2633: 34,48 + 2634: 31,47 + 2635: 28,47 + 2636: 27,47 + 2637: 27,45 + 2638: 27,43 + 2639: 27,47 + 2640: 27,49 + 2641: 29,47 + 2642: 31,48 + 2643: 32,37 + 2644: 34,37 + 2645: 37,37 + 2646: 41,38 + 2647: 46,37 + 2648: 34,38 + 2649: 34,38 + 2650: 36,38 + 2651: 35,38 + 2652: 35,37 + 2653: 39,37 + 2654: 45,36 + 2655: 41,37 + 2656: 41,39 + 2657: 43,40 + 2658: 42,40 + 2659: 41,40 + 2660: 42,40 + 2661: 41,40 + 2662: 45,40 + 2663: 47,41 + 2664: 47,43 + 2665: 47,44 + 2666: 46,42 + 2667: 47,38 + 2668: 47,37 + 2669: 48,40 + 2670: 48,38 + 2671: 49,37 + 2672: 49,36 + 2673: 50,38 + 2674: 51,38 + 2675: 51,38 + 2676: 48,38 + 2677: 51,36 + 2678: 50,36 + 2679: 49,36 + 2680: 51,36 + 2681: 49,38 + 2682: 48,36 + 2683: 48,35 + 2684: 48,35 + 2685: 49,34 + 2686: 47,35 + 2687: 44,36 + 2688: 46,35 + 2689: 46,35 + 2690: 46,36 + 2691: 46,34 + 2692: 46,34 + 2693: 46,37 + 2694: 43,36 + 2695: 43,36 + 2696: 45,38 + 2697: 44,38 + 2698: 45,39 + 2699: 42,39 + 2700: 46,37 + 2701: 43,37 + 2702: 41,37 + 2703: 44,38 + 2704: 45,38 + 2705: 38,37 + 2706: 41,37 + 2707: 42,37 + 2708: 40,37 + 2709: 42,39 + 2710: 41,40 + 2711: 45,43 + 2712: 45,43 + 2713: 44,43 + 2714: 41,43 + 2715: 41,43 + 2716: 43,43 + 2717: 44,43 + 2718: 41,43 + 2719: 44,42 + 2720: 43,42 + 2721: 27,37 + 2722: 25,38 + 2723: 24,38 + 2724: 25,38 + 2725: 26,38 + 2726: 22,40 + 2727: 22,42 + 2728: 20,42 + 2729: 18,41 + 2730: 17,40 + 2731: 18,39 + 2732: 19,41 + 2733: 22,41 + 2734: 22,40 + 2735: 24,38 + 2736: 17,38 + 2737: 14,39 + 2738: 14,41 + 2739: 14,42 + 2740: 13,42 + 2741: 12,44 + 2742: 12,45 + 2743: 14,45 + 2744: 16,46 + 2745: 17,46 + 2746: 18,46 + 2747: 18,45 + 2748: 18,45 + 2749: 18,46 + 2750: 17,46 + 2751: 18,45 + 2752: 20,45 + 2753: 21,45 + 2754: 21,46 + 2755: 21,47 + 2756: 21,48 + 2757: 20,49 + 2758: 16,50 + 2759: 15,47 + 2760: 15,48 + 2761: 15,49 + 2762: 14,44 + 2763: 15,37 + 2764: 13,38 + 2765: 11,38 + 2766: 7,38 + 2767: 12,38 + 2768: 12,38 + 2769: 7,36 + 2770: 3,36 + 2771: 0,36 + 2772: 0,37 + 2773: 5,37 + 2774: 4,37 + 2775: -5,37 + 2776: -9,37 + 2777: -12,37 + 2778: -13,37 + 2779: -7,37 + 2780: -6,37 + 2781: -13,38 + 2782: -18,37 + 2783: -22,37 + 2784: -27,37 + 2785: -29,37 + 2786: -13,42 + 2787: -14,42 + 2788: -14,41 + 2789: -13,41 + 2790: -13,42 + 2791: -15,40 + 2792: -13,40 + 2793: -13,41 + 2794: -14,40 + 2795: -14,40 + 2796: -13,42 + 2797: -13,42 + 2798: -14,40 + 2799: -13,42 + 2800: -11,42 + 2801: -10,41 + 2802: -11,40 + 2803: -11,42 + 2804: -11,41 + 2805: -10,41 + 2806: -11,42 + 2807: -11,40 + 2808: -10,40 + 2809: -10,42 + 2810: -10,40 + 2811: -10,41 + 2812: -10,42 + 2813: -10,42 + 2814: -10,42 + 2815: -7,42 + 2816: -7,41 + 2817: -7,40 + 2818: -7,42 + 2819: -7,40 + 2820: -7,40 + 2821: -8,42 + 2822: -7,40 + 2823: -7,42 + 2824: -8,41 + 2825: -7,42 + 2826: -7,42 + 2827: -4,42 + 2828: -4,41 + 2829: -5,41 + 2830: -5,40 + 2831: -4,40 + 2832: -4,41 + 2833: -5,42 + 2834: -5,42 + 2835: -4,40 + 2836: -4,40 + 2837: -5,42 + 2838: -5,40 + 2839: -4,42 + 2840: -4,42 + 2841: -4,42 + 2842: -5,41 + 2843: -4,44 + 2844: -5,45 + 2845: -7,45 + 2846: -9,46 + 2847: -6,44 + 2848: -8,45 + 2849: -7,44 + 2850: -8,46 + 2851: -12,46 + 2852: -10,44 + 2853: -11,45 + 2854: -13,46 + 2855: -11,45 + 2856: -10,43 + 2857: -13,45 + 2858: -12,43 + 2859: -14,45 + 2860: -15,46 + 2861: -13,44 + 2862: -16,46 + 2863: -14,45 + 2864: -17,46 + 2865: -18,47 + 2866: -18,50 + 2867: -17,52 + 2868: -17,46 + 2869: -18,48 + 2870: -19,48 + 2871: -20,47 + 2872: -20,48 + 2873: -22,48 + 2874: -22,47 + 2875: -23,47 + 2876: -23,48 + 2877: -24,48 + 2878: -22,49 + 2879: -23,46 + 2880: -24,46 + 2881: -22,46 + 2882: -22,49 + 2883: -23,49 + 2884: -22,46 + 2885: -25,48 + 2886: -26,47 + 2887: -26,47 + 2888: -25,48 + 2889: -29,47 + 2890: -29,48 + 2891: -28,48 + 2892: -29,47 + 2893: -28,48 + 2894: -31,47 + 2895: -32,48 + 2896: -36,48 + 2897: -35,47 + 2898: -33,47 + 2899: -34,48 + 2900: -35,48 + 2901: -32,48 + 2902: -32,46 + 2903: -32,45 + 2904: -32,43 + 2905: -34,43 + 2906: -35,43 + 2907: -30,42 + 2908: -30,43 + 2909: -36,43 + 2910: -35,43 + 2911: -31,42 + 2912: -30,43 + 2913: -34,43 + 2914: -27,42 + 2915: -28,43 + 2916: -28,45 + 2917: -29,45 + 2918: -29,44 + 2919: -29,43 + 2920: -18,49 + 2921: -18,52 + 2922: -16,54 + 2923: -15,55 + 2924: -14,53 + 2925: -11,54 + 2926: -11,59 + 2927: -14,59 + 2928: -16,59 + 2929: -14,59 + 2930: -14,59 + 2931: -9,54 + 2932: -9,53 + 2933: -8,55 + 2934: -7,56 + 2935: -7,54 + 2936: -6,53 + 2937: -7,53 + 2938: -8,55 + 2939: -11,55 + 2940: -9,51 + 2941: -10,50 + 2942: -6,50 + 2943: -3,50 + 2944: -2,50 + 2945: -5,50 + 2946: -8,50 + 2947: -6,50 + 2948: -2,50 + 2949: -2,50 + 2950: -4,50 + 2951: -4,50 + 2952: -2,51 + 2953: -2,51 + 2954: -4,53 + 2955: -4,53 + 2956: -4,54 + 2957: -1,52 + 2958: -1,54 + 2959: 0,57 + 2960: 0,60 + 2961: 0,56 + 2962: 0,54 + 2963: 0,52 + 2964: -2,53 + 2965: -1,56 + 2966: -2,59 + 2967: -1,60 + 2968: -1,64 + 2969: -1,66 + 2970: 0,68 + 2971: 0,67 + 2972: 0,66 + 2973: 0,62 + 2974: 0,59 + 2975: -2,61 + 2976: -1,66 + 2977: -1,69 + 2978: -2,65 + 2979: -1,68 + 2980: -2,71 + 2981: -2,74 + 2982: -1,77 + 2983: 0,67 + 2984: 0,71 + 2985: 0,75 + 2986: 0,78 + 2987: -3,77 + 2988: -5,78 + 2989: -4,79 + 2990: -3,80 + 2991: -4,78 + 2992: -6,77 + 2993: -6,80 + 2994: -4,81 + 2995: -1,81 + 2996: 1,82 + 2997: 3,81 + 2998: 4,81 + 2999: 4,78 + 3000: 5,77 + 3001: 6,76 + 3002: 2,76 + 3003: 1,78 + 3004: -1,79 + 3005: -4,78 + 3006: 1,79 + 3007: 2,79 + 3008: 2,80 + 3009: 4,80 + 3010: 4,78 + 3011: -2,77 + 3012: -6,78 + 3013: -6,80 + 3014: -4,82 + 3015: -8,76 + 3016: -8,75 + 3017: -6,76 + 3018: -6,74 + 3019: -9,72 + 3020: -8,72 + 3021: -9,71 + 3022: -9,70 + 3023: -9,69 + 3024: -8,70 + 3025: -8,69 + 3026: -9,69 + 3027: -9,72 + 3028: -6,75 + 3029: -6,76 + 3030: 1,67 + 3031: 4,67 + 3032: 8,67 + 3033: 9,68 + 3034: 10,69 + 3035: 13,69 + 3036: 7,66 + 3037: 6,67 + 3038: 7,66 + 3039: 9,67 + 3040: 7,66 + 3041: 6,66 + 3042: 9,66 + 3043: 8,66 + 3044: 1,67 + 3045: -1,66 + 3046: 0,62 + 3047: -1,59 + 3048: 1,56 + 3049: 3,55 + 3050: 2,56 + 3051: 3,56 + 3052: 4,56 + 3053: 5,55 + 3054: 7,53 + 3055: 10,53 + 3056: 11,53 + 3057: 14,54 + 3058: 13,55 + 3059: 10,54 + 3060: 7,54 + 3061: 6,52 + 3062: 8,52 + 3063: 11,52 + 3064: 13,52 + 3065: 14,52 + 3066: 11,52 + 3067: 7,52 + 3068: 5,53 + 3069: 3,53 + 3070: 4,53 + 3071: 1,53 + 3072: 0,52 + 3073: 2,52 + 3074: 4,53 + 3075: 0,53 + 3076: 0,50 + 3077: -1,50 + 3078: -1,49 + 3079: -1,47 + 3080: -1,45 + 3081: -1,47 + 3082: -3,48 + 3083: -2,47 + 3084: -2,47 + 3085: -2,48 + 3086: -1,48 + 3087: -1,46 + 3088: -1,44 + 3089: -1,44 + 3090: -2,40 + 3091: -2,39 + 3092: -3,38 + 3093: -4,37 + 3094: -2,38 + 3095: -2,40 + 3096: -2,38 + 3097: -4,38 + 3098: 0,40 + 3099: 0,38 + 3100: 2,37 + 3101: 1,38 + 3102: 0,39 + 3103: -1,40 + 3104: -1,41 + 3105: -1,43 + 3106: -1,44 + 3107: -1,44 + 3108: 1,37 + 3109: 2,37 + 3110: 5,37 + 3111: 10,37 + 3112: 5,37 + 3113: 12,37 + 3114: 15,37 + 3115: 20,37 + 3116: 20,37 + 3117: 11,37 + 3118: 2,37 + 3119: -1,35 + 3120: -1,33 + 3121: -1,31 + 3122: -1,29 + 3123: -1,28 + 3124: -1,28 + 3125: -1,26 + 3126: -1,24 + 3127: -1,22 + 3128: -1,21 + 3129: -1,20 + 3130: -1,18 + 3131: -5,18 + 3132: -6,18 + 3133: -7,18 + 3134: -6,17 + 3135: -7,17 + 3136: -10,17 + 3137: -12,17 + 3138: -9,17 + 3139: -7,17 + 3140: -11,18 + 3141: -9,18 + 3142: -8,17 + 3143: -10,17 + 3144: -6,17 + 3145: -3,17 + 3146: 1,17 + 3147: 5,17 + 3148: 3,18 + 3149: 5,18 + 3150: 5,17 + 3151: 11,19 + 3152: 11,23 + 3153: 11,22 + 3154: 11,21 + 3155: 10,23 + 3156: 10,24 + 3157: 10,26 + 3158: 11,27 + 3159: 11,25 + 3160: 10,26 + 3161: 9,27 + 3162: 7,28 + 3163: 6,28 + 3164: 8,27 + 3165: 6,25 + 3166: 4,23 + 3167: 3,22 + 3168: 7,23 + 3169: 5,24 + 3170: 3,24 + 3171: 7,27 + 3172: 6,28 + 3173: 6,30 + 3174: 6,33 + 3175: 5,34 + 3176: 4,33 + 3177: 4,32 + 3178: 4,31 + 3179: 4,29 + 3180: 3,27 + 3181: 4,27 + 3182: 4,27 + 3183: 4,29 + 3184: 5,32 + 3185: 5,33 + 3186: 6,31 + 3187: 6,29 + 3188: 7,29 + 3189: 7,31 + 3190: 8,28 + 3191: 11,28 + 3192: 11,28 + 3193: 13,28 + 3194: 12,28 + 3195: 19,29 + 3196: 19,30 + 3197: 19,29 + 3198: 19,31 + 3199: 19,32 + 3200: 20,33 + 3201: 20,34 + 3202: 20,33 + 3203: 19,31 + 3204: 18,31 + 3205: 18,33 + 3206: 19,26 + 3207: 21,26 + 3208: 21,26 + 3209: 21,27 + 3210: 20,32 + 3211: 20,33 + 3212: 20,33 + 3213: 19,32 + 3214: 19,31 + 3215: 19,34 + 3216: 19,34 + 3217: 20,33 + 3218: 20,31 + 3219: 20,31 + 3220: 20,32 + 3221: 20,33 + 3222: 20,34 + 3223: 20,32 + 3224: 19,32 + 3225: 19,34 + 3226: 19,31 + 3227: 11,22 + 3228: 10,23 + 3229: 10,25 + 3230: 18,14 + 3231: 20,14 + 3232: 25,14 + 3233: 23,14 + 3234: 23,17 + 3235: 25,19 + 3236: 26,21 + 3237: 27,22 + 3238: 26,21 + 3239: 24,19 + 3240: 23,18 + 3241: 22,18 + 3242: 22,19 + 3243: 24,20 + 3244: 26,22 + 3245: 27,22 + 3246: 27,20 + 3247: 24,18 + 3248: 23,18 + 3249: 27,20 + 3250: 26,20 + 3251: 25,18 + 3252: 25,17 + 3253: 24,17 + 3254: 24,16 + 3255: 23,15 + 3256: 23,16 + 3257: 25,16 + 3258: 25,16 + 3259: 24,16 + 3260: 25,17 + 3261: 28,19 + 3262: 29,20 + 3263: 29,21 + 3264: 28,19 + 3265: 28,20 + 3266: 29,21 + 3267: 29,22 + 3268: 27,25 + 3269: 30,31 + 3270: 30,28 + 3271: 31,26 + 3272: 31,19 + 3273: 31,18 + 3274: 33,16 + 3275: 39,14 + 3276: 44,15 + 3277: 19,13 + 3278: 18,13 + 3279: 17,14 + 3280: 17,13 + 3281: 18,13 + 3282: 19,15 + 3283: 18,14 + 3284: 18,15 + 3285: 23,16 + 3286: 22,17 + 3287: 25,21 + 3288: 27,21 + 3289: 28,21 + 3290: 27,19 + 3291: 27,21 + 3292: 25,18 + 3293: 24,17 + 3308: 10,-12 + 3309: 11,-12 + 3310: 11,-13 + 3311: 11,-15 + 3312: 11,-16 + 3313: 12,-17 + 3314: 11,-15 + 3315: 10,-11 + 3316: 8,-14 + 3317: 5,-16 + 3318: 6,-16 + 3319: 10,-12 + 3320: 12,-14 + 3321: 12,-17 + 3322: 12,-18 + 3323: 11,-14 + 3324: 9,-12 + 3325: 9,-13 + 3326: 5,-13 + 3327: 4,-10 + 3328: 4,-11 + 3329: 4,-13 + 3330: 4,-14 + 3331: 2,-14 + 3332: 4,-11 + 3333: 4,-12 + 3334: 3,-13 + 3335: -4,-14 + 3336: -6,-13 + 3337: -6,-11 + 3338: -7,-8 + 3339: -3,-13 + 3340: -6,-11 + 3341: -7,-9 + 3342: -5,-14 + 3343: -5,-10 + 3344: -1,-11 + 3345: 0,-11 + 3346: -5,-14 + 3347: -6,-11 + 3348: -8,-9 + 3349: -12,-9 + 3350: -10,-10 + 3351: -15,-10 + 3352: -19,-10 + 3353: -19,-13 + 3354: -19,-16 + 3355: -19,-19 + 3356: -16,-10 + 3357: -18,-18 + 3358: -19,-19 + 3359: -17,-12 + 3360: -18,-12 + 3361: -18,-13 + 3362: -19,-12 + 3363: -19,-10 + 3364: -17,-10 + 3365: -15,-9 + 3366: -11,-9 + 3367: -20,-10 + 3368: -20,-10 + 3369: -18,-17 + 3370: -17,-19 + 3371: -17,-20 + 3372: -17,-20 + 3373: -9,-14 + 3374: -13,-12 + 3375: -11,-13 + 3376: -10,-15 + 3377: -10,-15 + 3378: -14,-13 + 3379: -10,-13 + 3380: -9,-16 + 3381: -9,-15 + 3382: -10,-16 + 3383: -9,-16 + 3384: -13,-16 + 3385: -13,-15 + 3386: -13,-13 + 3387: -13,-14 + 3388: -13,-18 + 3389: -13,-19 + 3390: -13,-20 + 3391: -14,-19 + 3392: -12,-19 + 3393: -11,-19 + 3394: -15,-19 + 3395: -8,-19 + 3396: -8,-21 + 3397: -8,-26 + 3398: -8,-28 + 3399: -7,-30 + 3400: -6,-32 + 3401: -9,-34 + 3402: -6,-36 + 3403: -9,-37 + 3404: -10,-39 + 3405: -10,-41 + 3406: -7,-41 + 3407: -9,-39 + 3408: -10,-36 + 3409: -11,-34 + 3410: -10,-38 + 3411: -10,-41 + 3412: -7,-39 + 3413: -7,-33 + 3442: -14,-38 + 3443: -13,-37 + 3444: -13,-35 + 3445: -13,-32 + 3446: -13,-24 + 3447: -13,-24 + 3448: -12,-23 + 3449: -12,-22 + 3450: -13,-22 + 3451: -13,-22 + 3452: -13,-23 + 3453: -13,-24 + 3454: -12,-25 + 3455: 12,-21 + 3456: 12,-22 + 3457: 12,-23 + 3458: 12,-25 + 3459: 12,-27 + 3460: 12,-29 + 3461: 12,-31 + 3462: 12,-33 + 3463: 12,-35 + 3464: 12,-36 + 3465: 12,-37 + 3466: 12,-38 + 3467: 12,-37 + 3468: 12,-35 + 3469: 12,-33 + 3470: 12,-31 + 3471: 12,-29 + 3472: 12,-27 + 3473: 12,-25 + 3474: 12,-23 + 3475: 12,-21 + 3476: 12,-21 + 3477: 12,-25 + 3478: 12,-27 + 3479: 12,-29 + 3480: 12,-34 + 3512: 11,-21 + 3513: 11,-23 + 3514: 11,-25 + 3515: 11,-27 + 3516: 11,-30 + 3517: 11,-32 + 3518: 11,-35 + 3519: 11,-36 + 3520: 11,-35 + 3521: 11,-33 + 3522: 11,-30 + 3523: 11,-27 + 3524: 11,-24 + 3525: 11,-21 + 3526: 13,-24 + 3527: 13,-24 + 3528: 12,-24 + 3529: 11,-24 + 3530: 10,-25 + 3531: 9,-25 + 3532: 10,-25 + 3533: 7,-26 + 3534: 6,-27 + 3535: 4,-26 + 3536: 6,-25 + 3537: 7,-25 + 3538: 10,-21 + 3539: 8,-21 + 3540: 6,-21 + 3541: 5,-20 + 3542: 5,-19 + 3543: 7,-19 + 3545: 7,-18 + 3546: 7,-20 + 3548: 5,-21 + 3549: 5,-21 + 3551: 6,-19 + 3552: 5,-19 + 3553: 6,-20 + 3554: 6,-21 + 3555: 5,-21 + 3560: 10,-21 + 3561: 9,-21 + 3562: 10,-22 + 3563: 9,-22 + 3564: 10,-23 + 3565: 9,-22 + 3566: 11,-22 + 3599: 6,-35 + 3600: 11,-34 + 3601: 7,-37 + 3602: 6,-37 + 3603: 7,-38 + 3604: 7,-37 + 3605: 6,-37 + 3606: 6,-38 + 3607: 6,-38 + 3608: 6,-38 + 3609: 5,-38 + 3610: 4,-40 + 3633: 17,-37 + 3634: 18,-37 + 3635: 18,-37 + 3636: 18,-36 + 3637: 18,-35 + 3638: 18,-35 + 3639: 18,-34 + 3640: 18,-35 + 3641: 18,-35 + 3642: 17,-35 + 3643: 17,-35 + 3644: 17,-34 + 3645: 17,-34 + 3646: 17,-34 + 3647: 17,-34 + 3648: 18,-36 + 3649: 18,-36 + 3650: 18,-36 + 3651: 18,-36 + 3652: 18,-36 + 3663: 15,-41 + 3664: 15,-40 + 3665: 16,-40 + 3666: 16,-41 + 3667: 15,-41 + 3668: 15,-40 + 3669: 15,-38 + 3670: 15,-37 + 3671: 15,-37 + 3672: 15,-38 + 3673: 16,-41 + 3674: 16,-40 + 3675: 15,-41 + 3676: 15,-40 + 3677: 8,-38 + 3678: 9,-39 + 3679: 9,-41 + 3680: 4,-42 + 3681: 4,-39 + 3682: 5,-41 + 3683: -14,-38 + 3684: -13,-35 + 3685: -13,-32 + 3686: -13,-24 + 3687: -12,-23 + 3688: -13,-30 + 3689: -14,-30 + 3690: -16,-27 + 3691: -13,-27 + 3692: -14,-28 + 3693: -16,-29 + 3694: -16,-29 + 3695: -15,-27 + 3696: -13,-28 + 3697: -13,-29 + 3698: -14,-30 + 3699: -13,-29 + 3700: -13,-27 + 3701: -12,-29 + 3702: -7,-6 + 3703: -7,-4 + 3704: -5,-2 + 3705: -2,1 + 3706: -1,4 + 3707: 0,7 + 3708: 2,10 + 3709: 1,8 + 3710: 1,4 + 3711: -3,6 + 3712: -3,11 + 3713: -3,5 + 3714: 1,1 + 3715: -3,-2 + 3716: -1,-5 + 3717: 1,-6 + 3718: 1,-4 + 3719: 1,0 + 3720: 1,4 + 3721: 1,9 + 3722: 2,11 + 3723: 2,7 + 3724: 2,2 + 3725: 3,-2 + 3726: 3,-7 + 3727: 2,-4 + 3728: 1,0 + 3729: 1,5 + 3730: 1,8 + 3731: 1,11 + 3732: -2,11 + 3733: -4,7 + 3734: -4,2 + 3735: -3,-2 + 3736: 7,-5 + 3737: 5,-1 + 3738: 11,-5 + 3739: 11,-3 + 3740: 11,-3 + 3741: 9,-5 + 3742: 8,-5 + 3743: 10,-1 + 3744: 8,-1 + 3745: 11,-1 + 3746: 11,-1 + 3747: 11,-2 + 3748: 11,-1 + 3749: 10,2 + 3750: 10,2 + 3751: 11,2 + 3752: 11,1 + 3753: 10,1 + 3754: 11,1 + 3755: 11,1 + 3756: 12,2 + 3757: 12,2 + 3770: 8,5 + 3771: 7,6 + 3772: 6,8 + 3773: 7,9 + 3774: 9,10 + 3775: 10,9 + 3776: 10,7 + 3777: 7,6 + 3778: 5,11 + 3779: 5,11 + 3780: 5,9 + 3781: 6,6 + 3782: 7,5 + 3783: 11,7 + 3784: 10,10 + 3785: 6,5 + 3786: 5,5 + 3787: 5,5 + 3788: 3,5 + 3789: 4,5 + 3790: 5,5 + 3791: 2,5 + 3792: 3,5 + 3793: 3,5 + 3794: 5,-4 + 3795: 5,-5 + 3796: 6,-5 + 3797: 5,-5 + 3798: 4,-5 + 3810: 5,-3 + 3811: 5,-3 + 3812: 3,-3 + 3813: 3,-2 + 3814: 3,-1 + 3815: 3,-4 + 3816: 2,-6 + 3817: 1,-6 + 3818: 1,-6 + 3819: 1,-5 + 3820: 2,-5 + 3821: 3,-3 + 3822: 3,-2 + 3823: 9,-8 + 3824: 10,-7 + 3825: 11,-7 + 3826: 9,-7 + 3827: 11,-7 + 3828: 10,-7 + 3829: 9,-8 + 3830: 10,-8 + 3831: 10,-9 + 3832: 7,-8 + 3833: 8,-8 + 3834: 7,-8 + 3835: 8,-8 + 3836: 10,-8 + 3837: 10,-7 + 3838: 11,-7 + 3839: 12,-8 + 3840: 13,-8 + 3841: 14,-8 + 3842: 12,-8 + 3843: 13,-9 + 3844: 11,-8 + 3845: 10,-7 + 3846: 9,-8 + 3847: 8,-8 + 3848: 6,-8 + 3849: 9,-8 + 3850: 9,-7 + 3851: 8,-9 + 3862: -3,-1 + 3863: -4,1 + 3864: -4,3 + 3865: -4,4 + 3866: -7,3 + 3867: -9,2 + 3868: -11,-1 + 3869: -11,-1 + 3870: -13,-2 + 3871: -13,-2 + 3872: -15,1 + 3873: -14,0 + 3874: -14,2 + 3875: -14,3 + 3876: -14,4 + 3877: -13,2 + 3878: -13,1 + 3879: -12,0 + 3880: -10,1 + 3881: -9,2 + 3882: -8,2 + 3883: -7,1 + 3884: -8,2 + 3885: -6,0 + 3886: -3,2 + 3887: -3,4 + 3888: -2,6 + 3889: 0,6 + 3896: 3,6 + 3897: 2,6 + 3900: -10,7 + 3901: -9,6 + 3902: -9,6 + 3903: -8,6 + 3904: -7,6 + 3905: -10,7 + 3906: -10,6 + 3907: -10,8 + 3908: -9,8 + 3909: -10,8 + 3910: -11,7 + 3911: -10,6 + 3912: -9,6 + 3913: -9,7 + 3914: -7,8 + 3915: -5,7 + 3916: -5,6 + 3917: -5,5 + 3918: -5,4 + 3919: -8,4 + 3920: -9,4 + 3921: -8,4 + 3922: -9,4 + 3923: -9,4 + 3924: -7,4 + 3925: -5,10 + 3926: -5,10 + 3927: -4,10 + 3928: -4,11 + 3929: -4,11 + 3930: -3,11 + 3931: -4,9 + 3932: -3,10 + 3933: -3,7 + 3934: -3,5 + 3935: -3,3 + 3936: -3,0 + 3937: -3,-2 + 3938: -3,0 + 3939: -3,4 + 3940: -3,8 + 3941: -3,11 + 3942: -3,1 + 3943: -3,-2 + 3944: -3,-5 + 3945: -3,-6 + 4036: -44,43 + 4037: -44,42 + 4038: -44,40 + 4039: -43,38 + 4040: -43,37 + 4041: -43,37 + 4042: -44,39 + 4043: -44,42 + 4044: -45,44 + 4045: -46,43 + 4046: -47,43 + 4047: -48,44 + 4048: -45,43 + 4049: -44,43 + 4050: -45,43 + 4051: -47,43 + 4052: -49,43 + 4053: -49,41 + 4054: -49,39 + 4055: -51,38 + 4056: -51,38 + 4057: -51,37 + 4058: -51,36 + 4059: -51,36 + 4060: -46,36 + 4061: -44,36 + 4062: -49,36 + 4063: -51,36 + 4064: -47,37 + 4065: -51,38 + 4066: -50,38 + 4067: -46,37 + 4068: -43,37 + 4069: -38,37 + 4070: -45,37 + 4071: -51,36 + 4072: -47,36 + 4073: -41,36 + 4074: -44,37 + 4075: -38,37 + 4076: -33,37 + 4077: -38,36 + 4078: -39,36 + 4079: -41,36 + 4080: -39,36 + 4081: -39,37 + 4082: -40,37 + 4083: -40,36 + 4084: -37,37 + 4085: -37,36 + 4086: -41,37 + 4087: -42,37 + 4088: -36,37 + 4089: -35,37 + 4090: -33,36 + 4091: -35,36 + 4092: -35,36 + 4093: -37,37 + 4094: -35,38 + 4095: -30,36 + 4096: -31,36 + 4097: -31,35 + 4098: -31,35 + 4099: -30,37 + 4100: -30,36 + 4101: -31,35 + 4102: -30,33 + 4103: -29,33 + 4104: -27,32 + 4105: -28,31 + 4106: -29,30 + 4107: -30,30 + 4108: -32,30 + 4109: -29,30 + 4110: -28,31 + 4111: -29,33 + 4112: -31,33 + 4113: -31,32 + 4114: -28,33 + 4115: -28,31 + 4116: -28,32 + 4117: -28,33 + 4118: -28,32 + 4119: -28,30 + 4120: -28,30 + 4121: -27,30 + 4122: -27,31 + 4123: -27,33 + 4166: -39,19 + 4167: -39,18 + 4168: -39,20 + 4169: -39,23 + 4170: -39,23 + 4171: -38,26 + 4172: -39,29 + 4173: -38,28 + 4174: -39,26 + 4175: -39,23 + 4176: -39,21 + 4177: -39,27 + 4178: -38,26 + 4179: -38,21 + 4180: -38,19 + 4181: -39,21 + 4182: -39,29 + 4183: -39,27 + 4184: -39,21 + 4185: -39,24 + 4186: -40,27 + 4187: -39,25 + 4188: -39,24 + 4189: -39,26 + 4190: -37,26 + 4191: -37,23 + 4192: -38,20 + 4193: -39,19 + 4194: -39,18 + 4195: -40,18 + 4196: -38,21 + 4197: -38,26 + 4198: -42,26 + 4199: -42,25 + 4200: -41,25 + 4201: -42,25 + 4202: -41,26 + 4203: -41,26 + 4233: -38,15 + 4234: -36,15 + 4235: -36,15 + 4236: -35,15 + 4237: -39,4 + 4238: -40,3 + 4239: -40,2 + 4240: -40,0 + 4241: -40,-1 + 4242: -41,-1 + 4243: -41,-2 + 4244: -42,-2 + 4245: -43,-3 + 4246: -36,2 + 4247: -36,2 + 4248: -36,1 + 4249: -37,2 + 4250: -36,1 + 4251: -40,9 + 4252: -41,9 + 4253: -39,10 + 4254: -39,10 + 4255: -37,10 + 4256: -38,10 + 4257: -37,10 + 4258: -35,10 + 4259: -35,10 + 4260: -36,11 + 4261: -37,10 + 4301: -4,13 + 4302: 2,13 + 4303: 1,13 + 4304: 1,13 + 4305: -3,13 + 4306: -3,13 + 4307: -4,13 + 4308: -5,13 + 4309: -5,13 + 4310: -2,13 + 4311: -2,13 + 4312: 3,13 + 4313: 3,13 + 4314: 0,13 + 4315: 0,13 + 4327: -5,16 + 4328: -4,16 + 4329: -6,16 + 4330: -3,18 + 4331: -3,19 + 4332: 1,18 + 4333: 1,17 + 4334: 1,17 + 4335: 3,16 + 4336: 4,16 + 4337: 2,16 + 4362: 15,47 + 4363: 15,46 + 4364: 14,46 + 4365: 15,47 + 4402: 5,74 + 4403: 5,75 + 4404: 5,76 + 4405: 4,77 + 4406: 4,80 + 4407: 5,81 + 4408: 1,81 + 4409: -2,81 + 4410: 1,82 + 4411: 0,82 + 4412: 1,82 + 4413: 0,83 + 4414: 1,83 + 4415: 1,82 + 4416: 0,83 + 4417: 0,82 + 4418: -1,81 + 4419: -4,81 + 4420: -7,81 + 4421: -5,81 + 4422: 2,79 + 4423: 0,79 + 4424: 0,79 + 4425: -4,76 + 4426: -5,76 + 4427: -6,74 + 4428: -7,74 + 4429: -8,73 + 4430: -9,72 + 4431: -9,73 + 4432: -8,72 + 4433: -8,74 + 4434: -9,70 + 4435: -9,69 + 4436: -8,70 + 4437: 9,66 + 4438: 10,69 + 4439: 12,69 + 4440: 13,58 + 4441: 13,60 + 4442: 12,56 + 4443: 13,56 + 4444: 8,56 + 4445: 8,56 + 4446: 8,56 + 4447: 14,60 + 4448: 14,60 + 4449: 14,61 + 4450: 14,60 + 4451: 22,58 + 4452: 23,57 + 4453: 27,56 + 4454: 28,56 + 4455: 28,55 + 4456: 28,54 + 4457: 34,55 + 4458: 34,54 + 4459: 33,54 + 4460: 30,55 + 4461: 30,56 + 4462: 30,54 + 4463: 31,54 + 4464: 32,54 + 4472: 46,36 + 4473: 46,34 + 4524: 32,16 + 4525: 32,15 + 4526: 32,13 + 4527: 32,11 + 4528: 32,13 + 4557: 34,1 + 4558: 36,1 + 4559: 37,1 + 4560: 37,1 + 4561: 36,1 + 4562: 35,1 + 4563: 35,3 + 4564: 37,3 + 4565: 19,-4 + 4566: 18,-5 + 4567: 17,-6 + 4568: 17,-5 + 4569: 17,-4 + 4570: 18,-6 + 4571: 21,-6 + 4572: 19,-4 + 4573: 22,-4 + 4574: 21,-5 + 4575: 20,-6 + 4576: 22,-6 + 4577: 21,-4 + 4578: 21,-4 + 4579: 19,-5 + 4580: 20,-4 + 4581: 20,-4 + 4582: 20,-5 + 4583: 17,-4 + 4598: -9,-6 + 4599: -9,-5 + 4600: -9,-3 + 4601: -11,-2 + 4602: -10,-2 + 4603: -9,-3 + 4604: -9,-5 + 4605: -16,1 + 4606: -14,0 + 4607: -14,0 + 4608: -14,0 + 4609: -14,-1 + 4610: -13,0 + 4611: -13,1 + 4618: -10,-9 + 4619: -9,-10 + 4620: -6,-10 + 4621: -4,-11 + 4622: -2,-11 + 4623: -6,-14 + 4624: -6,-13 + 4625: 4,-14 + 4626: 4,-13 + 4627: 3,-11 + 4628: 3,-9 + 4629: 1,-9 + 4630: 5,-9 + 4631: 7,-9 + 4632: 8,-10 + 4633: 3,-5 + 4634: 4,-5 + 4635: 3,-5 + 4685: 12,9 + 4686: 13,9 + 4687: 14,9 + 4688: 14,8 + 4689: 14,7 + 4690: 15,9 + 4691: 15,10 + 4692: 15,10 + 4693: 13,10 + 4694: 9,10 + 4695: 6,10 + 4696: 6,8 + 4697: 7,6 + 4698: 7,9 + 4699: 8,8 + 4700: 7,7 + 4701: 8,7 + 4702: 8,9 + 4703: 8,6 + 4704: 8,7 + 4705: 8,9 + 4706: 7,10 + 4707: 6,11 + 4708: 8,11 + 4709: 10,10 + 4710: 10,6 + 4713: 14,38 + 4714: 15,38 + 4715: 14,38 + 4716: 15,38 + 4717: 14,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A461065E' + id: Dirt + decals: + 4931: -42,22 + 4932: -41,22 + 4933: -41,22 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A46106A4' + id: Dirt + decals: + 4934: -41,22 + 4935: -42,22 + 4936: -42,24 + 4937: -42,24 + 4938: -41,24 + 4939: -42,23 + 4940: -43,23 + 4941: -39,22 + 4942: -40,22 + 4943: -40,24 + 4944: -40,25 + 4945: -40,26 + 4946: -42,27 + 4947: -43,27 + 4948: -41,28 + 4949: -40,28 + 4950: -41,27 + 4951: -44,27 + 4952: -44,28 + 4953: -45,28 + 4954: -46,27 + 4955: -47,28 + 4956: -47,27 + 4957: -46,28 + 4958: -38,23 + 4959: -38,24 + 4960: -38,27 + 4961: -38,29 + 4962: -42,24 + 4963: -42,22 + 4964: -41,21 + 4965: -43,21 + 4966: -42,21 + 4967: -43,22 + 4968: -43,25 + 4969: -43,24 + 4970: -41,24 + 4971: -41,22 + 4972: -41,24 + 4973: -40,20 + 4974: -38,17 + 4975: -38,22 + - node: + cleanable: True + color: '#83543273' + id: DirtHeavy + decals: + 3294: 29,6 + 3299: 46,-10 + 3300: 48,-10 + 3414: -13,-41 + 3415: -11,-41 + 3416: -11,-40 + 3417: -10,-37 + 3418: -9,-34 + 3419: -7,-37 + 3420: -8,-40 + 3421: -6,-39 + 3422: -7,-34 + 3423: -7,-28 + 3424: -7,-24 + 3425: -7,-26 + 3426: -7,-30 + 3427: -9,-35 + 3428: -10,-38 + 3429: -10,-40 + 3481: 12,-37 + 3482: 12,-35 + 3483: 12,-34 + 3484: 12,-30 + 3485: 12,-28 + 3486: 12,-26 + 3487: 12,-23 + 3488: 12,-21 + 3489: 12,-20 + 3544: 6,-19 + 3547: 5,-19 + 3550: 5,-20 + 3567: 11,-22 + 3568: 11,-24 + 3569: 11,-27 + 3570: 11,-29 + 3571: 11,-32 + 3572: 11,-34 + 3573: 11,-36 + 3594: 7,-35 + 3595: 5,-35 + 3596: 9,-34 + 3597: 10,-34 + 3598: 8,-35 + 3611: 4,-39 + 3612: 6,-38 + 3613: 7,-38 + 3614: 7,-37 + 3615: 8,-38 + 3616: 9,-39 + 3617: 18,-38 + 3618: 18,-37 + 3619: 17,-37 + 3620: 17,-35 + 3621: 17,-34 + 3622: 17,-34 + 3656: 18,-36 + 3657: 18,-36 + 3658: 16,-41 + 3758: 10,1 + 3759: 10,1 + 3760: 12,2 + 3809: 8,-1 + 3852: 8,-8 + 3894: 3,4 + 3895: 2,4 + 3946: -3,-6 + 3947: -5,-6 + 3948: -3,-4 + 3949: -4,-2 + 3950: -3,1 + 3951: -4,4 + 3952: -4,6 + 3953: -3,8 + 3954: -5,9 + 3955: -3,10 + 3968: 3,14 + 3969: -1,17 + 3970: 0,20 + 3971: -1,25 + 3972: -1,30 + 3973: -1,33 + 3974: -1,36 + 3975: -2,38 + 3976: -1,49 + 3977: -1,50 + 3978: -2,50 + 4002: -7,48 + 4003: -8,48 + 4004: -9,46 + 4005: -10,45 + 4006: -11,45 + 4007: -13,45 + 4008: -16,45 + 4009: -17,45 + 4010: -9,46 + 4011: -7,46 + 4012: -5,45 + 4013: -7,46 + 4014: -8,48 + 4015: -9,49 + 4016: -11,53 + 4017: -14,55 + 4018: -17,53 + 4019: -13,53 + 4020: -12,54 + 4021: -14,53 + 4022: -16,53 + 4023: -18,52 + 4024: -19,51 + 4025: -19,50 + 4026: -19,48 + 4027: -20,48 + 4028: -20,47 + 4029: -20,47 + 4030: -18,46 + 4031: -16,45 + 4124: -27,33 + 4125: -30,33 + 4126: -29,33 + 4134: -29,33 + 4135: -27,30 + 4262: -41,10 + 4263: -40,10 + 4264: -40,9 + 4265: -40,8 + 4266: -39,5 + 4267: -39,4 + 4268: -39,5 + 4269: -40,2 + 4292: -38,6 + 4293: -39,4 + 4294: -38,3 + 4295: -39,3 + 4296: -38,2 + 4297: -38,1 + 4298: -36,2 + 4299: -36,4 + 4300: -36,3 + 4316: -5,13 + 4317: -3,13 + 4318: -2,13 + 4319: 1,13 + 4320: 2,13 + 4366: 15,47 + 4367: 15,47 + 4368: 15,46 + 4369: 14,46 + 4370: 15,45 + 4371: 15,44 + 4372: 2,56 + 4373: 2,54 + 4374: 3,53 + 4375: 4,53 + 4376: 2,53 + 4377: 4,54 + 4378: 4,56 + 4379: 4,56 + 4380: 5,55 + 4381: -2,54 + 4382: -2,54 + 4383: -2,70 + 4384: -2,70 + 4385: -2,68 + 4386: -2,68 + 4387: 0,68 + 4388: -2,67 + 4389: -3,67 + 4390: -3,67 + 4465: 32,54 + 4466: 33,54 + 4474: 46,36 + 4475: 45,36 + 4476: 46,36 + 4477: 49,36 + 4478: 48,36 + 4479: 48,35 + 4480: 48,34 + 4481: 48,35 + 4482: 48,36 + 4511: 27,25 + 4512: 29,25 + 4513: 30,26 + 4514: 30,23 + 4515: 30,24 + 4516: 30,25 + 4517: 30,24 + 4518: 32,19 + 4519: 32,16 + 4520: 32,15 + 4521: 33,15 + 4522: 32,15 + 4523: 32,16 + 4529: 39,14 + 4530: 41,15 + 4531: 42,15 + 4532: 45,14 + 4533: 46,15 + 4534: 48,15 + 4535: 47,15 + 4536: 49,15 + 4537: 49,13 + 4538: 45,15 + 4584: 17,-4 + 4585: 16,-5 + 4586: 16,-6 + 4587: 18,-5 + 4588: 18,-4 + 4589: 19,-6 + 4590: 20,-6 + 4591: 20,-4 + 4592: 20,-5 + 4593: 20,-5 + 4594: 21,-6 + 4595: 21,-4 + 4596: 22,-3 + 4597: 20,-3 + 4612: -12,-10 + 4613: -13,-10 + 4614: -12,-9 + 4615: -13,-10 + 4616: -12,-10 + 4617: -11,-10 + 4636: 3,-5 + 4637: 2,-6 + 4718: 14,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A4610696' + id: DirtHeavy + decals: + 4900: -40,21 + 4901: -41,22 + 4902: -43,23 + 4903: -43,27 + 4904: -43,28 + 4905: -42,28 + 4906: -46,28 + 4907: -45,28 + 4908: -45,27 + 4909: -47,27 + 4910: -38,20 + 4911: -41,20 + 4912: -42,27 + 4913: -41,24 + 4914: -42,24 + - node: + cleanable: True + color: '#83543273' + id: DirtLight + decals: + 3295: 29,6 + 3297: 46,-10 + 3298: 48,-10 + 3301: 46,-10 + 3304: 18,-9 + 3305: 22,-9 + 3490: 12,-36 + 3491: 12,-34 + 3492: 12,-30 + 3493: 12,-28 + 3494: 12,-26 + 3495: 12,-24 + 3496: 12,-22 + 3497: 12,-20 + 3498: 12,-18 + 3499: 12,-18 + 3500: 11,-19 + 3501: 12,-19 + 3556: 6,-21 + 3557: 5,-19 + 3591: 9,-35 + 3592: 7,-35 + 3593: 8,-35 + 3659: 15,-40 + 3660: 16,-40 + 3799: 5,-5 + 3800: 7,-5 + 3801: 10,-5 + 3802: 11,-2 + 3853: 9,-8 + 3854: 10,-8 + 3855: 10,-9 + 3856: 10,-9 + 3857: 9,-9 + 3858: 9,-9 + 3859: 12,-9 + 3860: 11,-8 + 3861: 11,-9 + 3890: -1,6 + 3898: -8,6 + 3899: -11,7 + 3956: 1,11 + 3957: 2,10 + 3958: 1,8 + 3959: 1,6 + 3960: 2,4 + 3961: 0,2 + 3962: 2,0 + 3963: 1,-3 + 3964: 2,-5 + 3965: 1,-6 + 3966: 1,4 + 3967: 2,7 + 3979: -2,48 + 3980: -2,50 + 4032: -44,43 + 4033: -44,43 + 4127: -31,31 + 4128: -31,30 + 4129: -29,30 + 4130: -32,33 + 4131: -31,33 + 4132: -31,30 + 4133: -29,30 + 4136: -27,31 + 4137: -27,32 + 4270: -41,-1 + 4271: -42,-2 + 4272: -40,-1 + 4273: -40,2 + 4274: -37,2 + 4275: -36,2 + 4276: -36,4 + 4277: -35,4 + 4283: -39,10 + 4284: -36,10 + 4285: -35,10 + 4286: -37,10 + 4287: -38,10 + 4288: -36,11 + 4289: -41,10 + 4290: -41,9 + 4291: -42,9 + 4321: 1,13 + 4322: 3,13 + 4323: 5,14 + 4324: 5,14 + 4325: 3,15 + 4326: 2,15 + 4338: 3,16 + 4339: 3,16 + 4340: 4,17 + 4341: 4,18 + 4342: 3,18 + 4351: 6,28 + 4352: 7,28 + 4353: 7,29 + 4354: 6,29 + 4355: 6,30 + 4356: 3,31 + 4357: 3,33 + 4358: 5,29 + 4359: 4,28 + 4360: 4,28 + 4361: 4,30 + 4539: 46,15 + 4540: 46,17 + 4541: 46,17 + 4542: 48,17 + 4543: 49,17 + 4544: 49,17 + 4545: 48,17 + 4638: 3,-5 + 4639: 3,-5 + 4640: 2,-6 + 4719: 15,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A461065E' + id: DirtLight + decals: + 4928: -41,22 + 4929: -42,23 + 4930: -41,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 4832: 46,-11 + 4833: 45,-11 + 4834: 46,-13 + 4835: 47,-14 + 4836: 48,-12 + 4837: 48,-12 + 4838: 48,-14 + 4839: 47,-14 + 4840: 49,-15 + 4841: 49,-8 + 4842: 48,-8 + - node: + cleanable: True + color: '#83543273' + id: DirtMedium + decals: + 3296: 28,-14 + 3302: 48,-10 + 3303: 37,-9 + 3306: 11,-9 + 3307: 9,-9 + 3430: -10,-42 + 3431: -10,-37 + 3432: -10,-34 + 3433: -8,-33 + 3434: -14,-36 + 3435: -13,-33 + 3436: -12,-37 + 3437: -13,-36 + 3438: -12,-34 + 3439: -13,-34 + 3440: -13,-36 + 3441: -13,-37 + 3502: 11,-19 + 3503: 11,-18 + 3504: 12,-18 + 3505: 12,-20 + 3506: 12,-22 + 3507: 12,-25 + 3508: 12,-28 + 3509: 12,-30 + 3510: 12,-34 + 3511: 12,-36 + 3558: 7,-21 + 3559: 7,-21 + 3574: 11,-37 + 3575: 11,-35 + 3576: 11,-32 + 3577: 11,-29 + 3578: 11,-26 + 3579: 11,-24 + 3580: 7,-31 + 3581: 6,-31 + 3582: 5,-35 + 3583: 6,-34 + 3584: 7,-34 + 3585: 6,-35 + 3586: 7,-35 + 3587: 6,-35 + 3588: 8,-34 + 3589: 10,-34 + 3590: 10,-35 + 3623: 17,-37 + 3624: 17,-36 + 3625: 17,-35 + 3626: 17,-35 + 3627: 17,-37 + 3628: 18,-37 + 3629: 18,-35 + 3630: 18,-34 + 3631: 18,-36 + 3632: 18,-37 + 3653: 17,-36 + 3654: 17,-36 + 3655: 18,-35 + 3661: 15,-40 + 3662: 15,-40 + 3761: 11,3 + 3762: 10,2 + 3763: 11,1 + 3764: 11,1 + 3765: 12,2 + 3766: 12,2 + 3767: 12,2 + 3768: 10,1 + 3769: 10,1 + 3803: 5,-1 + 3804: 8,2 + 3805: 8,-1 + 3806: 9,-5 + 3807: 6,-5 + 3808: 11,-5 + 3891: -3,5 + 3892: -4,6 + 3893: -2,5 + 3981: -7,50 + 3982: -7,47 + 3983: -8,50 + 3984: -9,47 + 3985: -9,46 + 3986: -14,45 + 3987: -16,45 + 3988: -19,47 + 3989: -19,49 + 3990: -17,53 + 3991: -15,54 + 3992: -13,54 + 3993: -11,55 + 3994: -10,57 + 3995: -9,55 + 3996: -9,55 + 3997: -9,55 + 3998: -7,48 + 3999: -7,48 + 4000: -7,50 + 4001: -7,50 + 4034: -44,43 + 4035: -44,43 + 4138: -27,33 + 4139: -27,30 + 4140: -33,25 + 4141: -33,24 + 4142: -33,22 + 4143: -33,20 + 4144: -33,17 + 4145: -36,13 + 4146: -43,13 + 4147: -48,14 + 4148: -50,14 + 4149: -46,14 + 4150: -45,14 + 4151: -45,14 + 4152: -46,15 + 4153: -48,15 + 4154: -49,13 + 4155: -42,14 + 4156: -39,15 + 4157: -38,15 + 4158: -36,15 + 4159: -39,17 + 4160: -38,17 + 4161: -38,18 + 4162: -39,16 + 4163: -38,18 + 4164: -39,19 + 4165: -38,17 + 4204: -41,26 + 4205: -42,25 + 4206: -42,25 + 4207: -41,25 + 4208: -38,28 + 4209: -38,29 + 4210: -38,28 + 4211: -40,29 + 4212: -40,29 + 4213: -39,27 + 4214: -39,25 + 4215: -38,23 + 4216: -39,21 + 4217: -39,20 + 4218: -39,19 + 4219: -41,18 + 4220: -40,17 + 4221: -40,18 + 4222: -39,17 + 4223: -38,18 + 4224: -38,15 + 4225: -39,15 + 4226: -38,14 + 4227: -37,15 + 4228: -36,14 + 4229: -36,15 + 4230: -36,16 + 4231: -36,16 + 4232: -36,16 + 4278: -36,2 + 4279: -36,3 + 4280: -35,4 + 4281: -38,6 + 4282: -38,7 + 4343: 3,17 + 4344: 4,17 + 4345: 3,18 + 4346: 3,18 + 4347: 3,17 + 4348: 4,27 + 4349: 7,30 + 4350: 6,30 + 4391: -3,67 + 4392: -3,67 + 4393: -2,68 + 4394: 0,68 + 4395: 0,70 + 4396: 0,74 + 4397: 2,76 + 4398: 3,76 + 4399: 5,76 + 4400: 5,75 + 4401: 5,74 + 4467: 32,54 + 4468: 31,54 + 4469: 40,47 + 4470: 44,43 + 4471: 42,43 + 4483: 47,36 + 4484: 47,37 + 4485: 47,36 + 4486: 47,37 + 4487: 47,37 + 4488: 45,37 + 4489: 45,35 + 4490: 43,36 + 4491: 42,37 + 4492: 41,37 + 4493: 41,40 + 4494: 41,40 + 4495: 39,37 + 4496: 39,36 + 4497: 36,38 + 4498: 34,38 + 4499: 32,38 + 4500: 29,37 + 4501: 30,36 + 4502: 30,38 + 4503: 31,38 + 4504: 31,38 + 4505: 31,38 + 4506: 28,26 + 4507: 27,25 + 4508: 27,25 + 4509: 29,29 + 4510: 30,27 + 4546: 46,15 + 4547: 48,15 + 4548: 46,16 + 4549: 46,17 + 4550: 46,16 + 4551: 34,5 + 4552: 34,5 + 4553: 35,5 + 4554: 34,3 + 4555: 34,3 + 4556: 34,1 + 4641: 2,-6 + 4642: 1,-5 + 4643: 0,-1 + 4644: 1,0 + 4645: 0,0 + 4646: -2,1 + 4647: -2,0 + 4648: 1,3 + 4649: 1,9 + 4650: -2,6 + 4651: -6,0 + 4652: -8,-2 + 4653: -10,-2 + 4654: -11,-1 + 4655: -7,-1 + 4656: -6,-1 + 4657: -4,-1 + 4658: -5,-1 + 4659: -5,0 + 4660: -8,3 + 4661: -9,3 + 4662: -9,3 + 4663: -7,3 + 4664: -4,6 + 4665: 7,4 + 4666: 6,5 + 4667: 6,7 + 4668: 10,10 + 4669: 10,8 + 4670: 10,5 + 4671: 8,5 + 4672: 9,5 + 4673: 13,9 + 4674: 14,8 + 4675: 14,8 + 4676: 14,9 + 4677: 13,10 + 4678: 14,9 + 4679: 15,10 + 4680: 15,9 + 4681: 13,10 + 4682: 15,10 + 4683: 14,10 + 4684: 13,9 + 4720: 14,38 + 4721: 15,38 + 4722: 15,38 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A461065E' + id: DirtMedium + decals: + 4919: -43,27 + 4920: -43,28 + 4921: -46,28 + 4922: -46,27 + 4923: -41,24 + 4924: -40,21 + 4925: -41,27 + 4926: -41,23 + 4927: -41,22 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#A4610696' + id: DirtMedium + decals: + 4915: -42,22 + 4916: -43,24 + 4917: -42,25 + 4918: -42,28 + - node: + color: '#80C71FA4' + id: Flowersbr1 + decals: + 4740: -45.480713,39.888554 + - node: + color: '#80C71FA4' + id: Flowersbr2 + decals: + 4742: -47.82387,40.787373 + - node: + color: '#80C71FAE' + id: Flowerspv2 + decals: + 2178: 22.31159,21.239965 + - node: + color: '#80C71FAE' + id: Flowerspv3 + decals: + 2177: 22.119907,20.303352 + - node: + color: '#80C71FA4' + id: Flowersy1 + decals: + 4737: -45.40703,40.65476 + 4739: -46.468082,40.168514 + - node: + color: '#80C71FAE' + id: Flowersy2 + decals: + 2174: 21.097595,20.409784 + 2179: 21.012402,21.21868 + 2180: 22.780151,20.0692 + - node: + color: '#80C71FA4' + id: Flowersy3 + decals: + 4741: -46.61545,40.787373 + - node: + color: '#80C71FAE' + id: Flowersy3 + decals: + 2173: 22.013416,21.53798 + 2175: 26.379543,16.769766 + 2181: 21.928225,20.32464 + - node: + color: '#80C71FA4' + id: Flowersy4 + decals: + 4738: -47.750187,39.991695 + - node: + color: '#80C71FAE' + id: Flowersy4 + decals: + 2176: 27.061085,17.45094 + - node: + color: '#18A2D50C' + id: FullTileOverlayGreyscale + decals: + 747: 24,31 + 748: 24,32 + 749: 24,33 + 750: 24,34 + 751: 24,31 + 752: 24,32 + 753: 24,33 + 754: 24,34 + - node: + color: '#18A2D522' + id: FullTileOverlayGreyscale + decals: + 739: 25,34 + 740: 26,34 + 741: 25,33 + 742: 26,33 + 743: 25,32 + 744: 26,32 + 745: 27,32 + 746: 27,33 + - node: + color: '#D5188D95' + id: FullTileOverlayGreyscale + decals: + 697: 17,45 + 698: 17,46 + 699: 17,47 + 700: 18,47 + 701: 18,45 + 702: 18,46 + - node: + color: '#80C71FAB' + id: Grassa1 + decals: + 2169: 20.991104,21.857279 + 2171: 26.975891,16.94006 + - node: + color: '#80C71FB4' + id: Grassa1 + decals: + 2194: 20.92721,20.19692 + - node: + color: '#80C71FA4' + id: Grassa2 + decals: + 4724: -47.73545,40.050636 + 4728: -47.764923,40.698963 + 4730: -46.24703,40.743168 + 4731: -46.084923,39.918022 + - node: + color: '#80C71FB4' + id: Grassa2 + decals: + 2195: 22.865343,21.921139 + 2196: 26.358244,16.94006 + - node: + color: '#80C71F95' + id: Grassa3 + decals: + 2190: 22.247696,20.388498 + - node: + color: '#80C71FA4' + id: Grassa3 + decals: + 4725: -45.421764,40.669495 + - node: + color: '#80C71FA4' + id: Grassa4 + decals: + 4726: -45.40703,39.918022 + - node: + color: '#80C71FAB' + id: Grassa4 + decals: + 2168: 21.885628,21.303825 + - node: + color: '#80C71FB4' + id: Grassa4 + decals: + 2191: 21.992119,21.3464 + 2197: 27.124979,17.599947 + - node: + color: '#80C71FA4' + id: Grassa5 + decals: + 4727: -46.60071,39.873817 + - node: + color: '#80C71FAB' + id: Grassa5 + decals: + 2170: 26.209158,17.685093 + 2172: 21.566154,21.814705 + - node: + color: '#80C71FB4' + id: Grassa5 + decals: + 2192: 21.523558,20.409784 + 2193: 20.756824,21.835993 + - node: + color: '#80C71FA4' + id: Grassb2 + decals: + 4748: -46.541767,41.02313 + 4750: -44.994396,39.829613 + - node: + color: '#80C71FAB' + id: Grassb2 + decals: + 2164: 27.188873,17.578661 + 2165: 20.92721,20.111773 + 2166: 23.057028,20.239492 + - node: + color: '#80C71FAB' + id: Grassb3 + decals: + 2162: 21.821733,20.154345 + 2163: 26.954594,16.897486 + - node: + color: '#80C71FA4' + id: Grassb4 + decals: + 4744: -45.392292,40.65476 + 4747: -47.88282,40.743168 + 4749: -47.853344,39.991695 + 4751: -45.30387,40.919987 + - node: + color: '#80C71F95' + id: Grassc1 + decals: + 2187: 27.061085,17.770239 + - node: + color: '#80C71FA4' + id: Grassc1 + decals: + 4746: -46.52703,40.301125 + - node: + color: '#FFFFFF7F' + id: Grassc1 + decals: + 2116: 32.165768,40.007343 + - node: + color: '#80C71F95' + id: Grassc2 + decals: + 2186: 26.081367,17.770239 + - node: + color: '#80C71FA4' + id: Grassc2 + decals: + 4729: -46.29124,40.640026 + - node: + color: '#FFFFFF7F' + id: Grassc2 + decals: + 2115: 32.108974,40.943954 + - node: + color: '#80C71F95' + id: Grassc3 + decals: + 2185: 26.52863,16.897486 + - node: + color: '#80C71FA4' + id: Grassc3 + decals: + 4743: -47.70598,40.0359 + - node: + color: '#FFFFFF7F' + id: Grassc3 + decals: + 2113: 28.90005,40.85881 + - node: + color: '#80C71F95' + id: Grassc4 + decals: + 2182: 21.054998,20.45236 + - node: + color: '#FFFFFF7F' + id: Grassc4 + decals: + 2114: 28.87165,40.035725 + - node: + color: '#FFFFFFEF' + id: Grassd1 + decals: + 2119: 32.13737,39.978962 + - node: + color: '#FFFFFFEF' + id: Grassd2 + decals: + 2117: 28.90005,40.049915 + - node: + color: '#80C71FA4' + id: Grassd3 + decals: + 4745: -45.30387,39.976963 + - node: + color: '#FFFFFFEF' + id: Grassd3 + decals: + 2118: 28.942644,41.057484 + - node: + color: '#80C71F95' + id: Grasse1 + decals: + 2188: 26.379543,17.025208 + 2189: 21.331875,20.494932 + - node: + color: '#FFFFFFEF' + id: Grasse1 + decals: + 2120: 32.15157,40.943954 + - node: + color: '#80C71F95' + id: Grasse2 + decals: + 2183: 22.375484,21.729559 + - node: + color: '#80C71F95' + id: Grasse3 + decals: + 2184: 22.65236,20.175632 + - node: + color: '#5A5A6015' + id: HalfTileOverlayGreyscale + decals: + 9: -2,76 + 10: -1,76 + 11: 0,76 + - node: + color: '#D4D4D426' + id: HalfTileOverlayGreyscale + decals: + 4812: 19,-12 + 4813: 18,-12 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 17: -2,77 + 18: -1,77 + 19: 0,77 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 5142: 15,17 + - node: + color: '#5A5A605A' + id: HalfTileOverlayGreyscale180 + decals: + 0: -2,76 + 1: -1,76 + 2: 0,76 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale180 + decals: + 4814: 18,-12 + 4815: 19,-12 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 16: 1,76 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 5143: 14,19 + - node: + color: '#D381C9FF' + id: HalfTileOverlayGreyscale270 + decals: + 954: -12,27 + 955: -12,28 + 956: -12,29 + 957: -12,30 + 958: -12,31 + 959: -12,32 + 960: -12,33 + 961: -12,34 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 15: -3,76 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 5136: 16,18 + 5137: 16,19 + - node: + color: '#D381C9FF' + id: HalfTileOverlayGreyscale90 + decals: + 962: -10,27 + 963: -10,28 + 964: -10,29 + 965: -10,30 + 966: -10,31 + 967: -10,32 + 968: -10,33 + 969: -10,34 + - node: + angle: 1.5707963267948966 rad + color: '#A46105C0' + id: LoadingArea + decals: + 1910: -36,5 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 5029: -43,1 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 5067: -9,61 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 4880: -42,24 + 4881: -42,22 + 5028: -43,5 + - node: + angle: -1.5707963267948966 rad + color: '#52B4E996' + id: LoadingAreaGreyscale + decals: + 2079: 28,6 + - node: + angle: 1.5707963267948966 rad + color: '#52B4E996' + id: LoadingAreaGreyscale + decals: + 2078: 28,3 + - node: + color: '#334E6DC8' + id: MiniTileCheckerAOverlay + decals: + 1694: 17,-25 + 1695: 17,-24 + 1696: 17,-23 + 1723: 18,-18 + 1724: 19,-18 + 1725: 19,-17 + 1726: 18,-17 + 1727: 18,-16 + 1728: 19,-16 + 1729: 19,-15 + 1730: 18,-15 + 1731: 18,-14 + 1799: 4,46 + 1800: 5,46 + 1801: 5,47 + 1802: 4,47 + 4758: 19,-14 + - node: + color: '#52B4E996' + id: MiniTileCheckerAOverlay + decals: + 1170: -13,-15 + 1171: -13,-14 + 1172: -13,-13 + 1173: -12,-13 + 1174: -11,-13 + 1175: -10,-13 + 1176: -10,-14 + 1177: -10,-15 + 1178: -11,-15 + 1179: -12,-15 + 1180: -12,-14 + 1181: -11,-14 + - node: + color: '#52B4E9FF' + id: MiniTileCheckerAOverlay + decals: + 722: 19,40 + 723: 19,41 + 724: 19,42 + 725: 20,42 + 726: 21,42 + 727: 21,41 + 728: 21,40 + 729: 20,40 + 730: 20,41 + - node: + color: '#D381C996' + id: MiniTileCheckerAOverlay + decals: + 1021: -14,23 + 1022: -14,22 + - node: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + decals: + 1603: 5,-26 + 1604: 5,-25 + 1605: 6,-25 + 1606: 6,-26 + - node: + color: '#3E5C23A8' + id: MiniTileCheckerBOverlay + decals: + 1429: 7,9 + 1430: 8,9 + 1431: 9,9 + 1432: 7,8 + 1433: 8,8 + 1434: 9,8 + 1435: 7,7 + 1436: 8,7 + 1437: 9,7 + 1438: 7,6 + 1439: 8,6 + 1440: 9,6 + - node: + color: '#D381C996' + id: MiniTileCheckerBOverlay + decals: + 1023: -20,23 + 1024: -20,22 + 1095: -7,22 + 1096: -6,22 + 1097: -5,22 + 1098: -5,23 + 1099: -6,23 + 1100: -7,23 + - node: + color: '#D56F18EF' + id: MiniTileCheckerBOverlay + decals: + 858: 3,22 + 859: 3,23 + 860: 3,24 + 861: 4,24 + 862: 5,24 + 863: 5,23 + 864: 4,23 + 865: 4,22 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerBOverlay + decals: + 587: -14,49 + 588: -13,49 + 589: -16,59 + 590: -15,59 + - node: + color: '#EFB34196' + id: MiniTileCheckerBOverlay + decals: + 1182: -13,-13 + 1183: -12,-13 + 1184: -11,-13 + 1185: -10,-13 + 1186: -10,-14 + 1187: -10,-15 + 1188: -11,-15 + 1189: -12,-15 + 1190: -13,-15 + 1191: -13,-14 + 1192: -12,-14 + 1193: -11,-14 + 1204: 8,-13 + 1205: 8,-14 + 1206: 8,-15 + 1207: 9,-15 + 1208: 9,-14 + 1209: 9,-13 + 1210: 10,-13 + 1211: 10,-14 + 1212: 10,-15 + 1213: 11,-15 + 1214: 11,-14 + 1215: 11,-13 + - node: + color: '#52B4E996' + id: MiniTileOverlay + decals: + 4976: 4,27 + 4977: 3,27 + 4978: 2,27 + 4979: 2,28 + 4980: 4,28 + 4981: 3,28 + 4982: 3,29 + 4983: 2,29 + 4984: 2,30 + 4985: 3,30 + 4986: 3,31 + 4987: 2,31 + 4988: 2,32 + 4989: 3,32 + 4990: 3,33 + 4991: 2,33 + 4992: 3,34 + 4993: 2,34 + - node: + color: '#18A2D50C' + id: MonoOverlay + decals: + 755: 27,31 + 756: 26,31 + 757: 25,31 + 758: 23,31 + 759: 23,32 + 760: 23,33 + 761: 23,34 + 762: 27,34 + 763: 27,34 + 764: 27,31 + 765: 26,31 + 766: 25,31 + 767: 23,31 + 768: 23,32 + 769: 23,33 + 770: 23,34 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 213: -2,58 + 214: -2,59 + 215: -2,60 + 216: -2,61 + 217: -2,62 + 218: -2,63 + 219: -2,64 + 220: -2,65 + 221: -2,66 + 222: -2,68 + 223: 0,68 + 224: -1,68 + 225: 2,68 + 226: 3,68 + 227: 4,68 + 228: 5,68 + 229: 6,68 + 230: 7,68 + 2137: -2,67 + 2138: 1,68 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 168: 5,15 + 169: 6,15 + 170: 7,15 + 171: 8,15 + 172: 9,15 + 173: 10,15 + 174: 11,15 + 175: 12,15 + 176: 13,15 + 177: 14,15 + 178: 15,15 + 179: 16,15 + 180: 17,15 + 5099: 14,29 + 5129: 11,18 + 5131: 9,20 + 5132: 8,20 + 5133: 7,20 + 5134: 6,20 + 5135: 6,19 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale + decals: + 1505: 4,-8 + 1506: 5,-8 + 1507: 6,-8 + 1508: 7,-8 + 1509: 8,-8 + 1510: 9,-8 + 1511: 10,-8 + 1512: 11,-8 + 1513: 12,-8 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 279: -33,-7 + 280: -33,-6 + 281: -33,-5 + 282: -33,-4 + 283: -33,-3 + 284: -33,-2 + 285: -33,-1 + 286: -33,0 + 287: -33,1 + 288: -33,2 + 289: -33,3 + 290: -33,8 + 291: -33,9 + 292: -33,10 + 293: -33,11 + 294: -33,12 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 181: -2,38 + 182: -3,38 + 183: -2,39 + 184: -2,40 + 185: -2,41 + 186: -4,38 + 187: -5,38 + 188: -7,38 + 189: -6,38 + 190: -8,38 + 191: -9,38 + 192: -10,38 + 193: -11,38 + 194: -12,38 + 195: -13,38 + 196: -14,38 + 197: -15,38 + 198: -16,38 + 199: -17,38 + 200: -18,38 + 201: -19,38 + 202: -20,38 + 203: -21,38 + 204: -22,38 + 205: -23,38 + 206: -2,42 + 207: -2,43 + 208: -2,44 + 209: -2,46 + 210: -2,45 + 211: -2,47 + 212: -2,51 + 599: -2,48 + 600: -2,49 + 601: -2,50 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 20: -3,77 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 134: 0,20 + 135: 0,21 + 136: 0,22 + 137: 0,23 + 138: 0,24 + 139: 0,25 + 140: 0,27 + 141: 0,26 + 142: 0,28 + 143: 0,29 + 144: 0,30 + 145: 0,31 + 146: 0,32 + 147: 0,33 + 148: 0,34 + 149: 0,35 + 150: 0,36 + 151: 1,36 + 152: 2,36 + 153: 3,36 + 154: 4,36 + 155: 5,36 + 156: 6,36 + 157: 7,36 + 158: 8,36 + 159: 9,36 + 160: 10,36 + 161: 11,36 + 162: 12,36 + 163: 13,36 + 164: 14,36 + 165: 15,36 + 166: 16,36 + 167: 17,36 + 5101: 16,27 + 5102: 15,27 + 5103: 14,27 + 5104: 13,27 + 5105: 17,27 + 5130: 10,19 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale180 + decals: + 1483: -6,13 + 1484: -7,13 + 1485: -8,13 + 1486: -9,13 + 1487: -10,13 + 1488: -11,13 + 1489: -12,13 + 1490: -13,13 + 1491: -14,13 + 1492: -15,13 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 295: -34,13 + 296: -35,13 + 297: -36,13 + 298: -37,13 + 299: -39,13 + 300: -38,13 + 301: -41,13 + 302: -42,13 + 303: -43,13 + 304: -44,13 + 305: -45,13 + 1850: -40,13 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 21: 1,77 + 462: 1,66 + 463: 3,66 + 464: 2,66 + 465: 4,66 + 466: 5,66 + 467: 6,66 + 468: 7,66 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 367: -2,-14 + 368: -4,-14 + 369: -6,-14 + 370: -6,-12 + 371: -6,-10 + 372: -8,-10 + 373: -10,-10 + 374: -12,-10 + 375: -14,-10 + 376: -16,-10 + 5121: 9,18 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale270 + decals: + 1469: 5,13 + 1470: 6,13 + 1471: 8,13 + 1472: 7,13 + 1473: 9,13 + 1474: 10,13 + 1475: 11,13 + 1476: 12,13 + 1477: 13,13 + 1478: 14,13 + 1479: 15,13 + 1480: 16,13 + 1481: 17,13 + 1482: 4,13 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 246: 2,52 + 247: 1,52 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 318: -33,16 + 319: -33,17 + 320: -33,18 + 321: -33,19 + 322: -33,20 + 323: -33,21 + 324: -33,22 + 325: -33,23 + 326: -33,24 + 327: -33,25 + 328: -33,26 + 329: -33,28 + 330: -33,27 + 331: -33,29 + 332: -33,30 + 333: -33,31 + 334: -33,32 + 335: -33,33 + 336: -33,34 + 337: -33,35 + 338: -33,36 + 339: -34,36 + 340: -35,36 + 341: -36,36 + 342: -37,36 + 343: -38,36 + 344: -39,36 + 345: -40,36 + 346: -41,36 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 96: -2,20 + 97: -2,21 + 98: -2,22 + 99: -2,23 + 100: -2,24 + 101: -2,25 + 102: -2,26 + 103: -2,27 + 104: -2,28 + 105: -2,29 + 106: -2,30 + 107: -2,31 + 108: -2,32 + 109: -2,33 + 110: -2,34 + 111: -2,35 + 112: -2,36 + 113: -3,36 + 114: -4,36 + 115: -5,36 + 116: -6,36 + 117: -7,36 + 118: -8,36 + 119: -9,36 + 120: -10,36 + 121: -11,36 + 122: -12,36 + 123: -13,36 + 124: -14,36 + 125: -15,36 + 126: -16,36 + 127: -17,36 + 128: -18,36 + 129: -19,36 + 130: -20,36 + 131: -21,36 + 132: -22,36 + 133: -23,36 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 347: 5,-10 + 348: 6,-10 + 349: 7,-10 + 350: 8,-10 + 351: 9,-10 + 352: 11,-10 + 353: 10,-10 + 354: 12,-10 + 355: 13,-10 + 356: 14,-10 + 361: 4,-14 + 362: 3,-14 + 363: 2,-14 + 364: 1,-14 + 365: 0,-14 + 366: -1,-14 + 377: -15,-10 + 378: -13,-10 + 379: -11,-10 + 380: -9,-10 + 381: -7,-10 + 382: -6,-11 + 383: -6,-13 + 384: -5,-14 + 385: -3,-14 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 231: 0,65 + 232: 0,64 + 233: 0,63 + 234: 0,62 + 235: 0,61 + 236: 0,60 + 237: 0,59 + 238: 0,58 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 5122: 8,17 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale90 + decals: + 1493: -6,-8 + 1494: -7,-8 + 1495: -8,-8 + 1496: -9,-8 + 1497: -10,-8 + 1498: -11,-8 + 1499: -12,-8 + 1500: -13,-8 + 1501: -14,-8 + 1502: -15,-8 + 1503: -16,-8 + 1504: -17,-8 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 239: 1,57 + 240: 2,57 + 241: 2,56 + 242: 2,55 + 243: 2,54 + 244: 2,53 + 245: 2,52 + 248: 0,51 + 249: 0,50 + 250: 0,44 + 251: 0,43 + 252: 0,42 + 253: 0,41 + 254: 0,40 + 255: 0,39 + 256: 0,38 + 257: 1,38 + 258: 2,38 + 259: 3,38 + 260: 4,38 + 261: 5,38 + 262: 7,38 + 263: 6,38 + 264: 8,38 + 265: 9,38 + 266: 10,38 + 267: 11,38 + 268: 13,38 + 269: 12,38 + 270: 16,38 + 271: 17,38 + 272: 18,38 + 273: 19,38 + 274: 20,38 + 275: 21,38 + 276: 22,38 + 277: 23,38 + 278: 24,38 + 1785: 0,49 + 1786: 0,48 + 4711: 14,38 + 4712: 15,38 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 306: -45,15 + 307: -44,15 + 308: -43,15 + 309: -42,15 + 310: -41,15 + 311: -40,15 + 312: -39,15 + 313: -38,15 + 314: -37,15 + 315: -36,15 + 316: -35,15 + 317: -34,15 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 79: -7,15 + 80: -8,15 + 81: -9,15 + 82: -10,15 + 83: -11,15 + 84: -12,15 + 85: -13,15 + 86: -14,15 + 87: -15,15 + 88: -16,15 + 89: -17,15 + 90: -18,15 + 91: -19,15 + 92: -20,15 + 93: -21,15 + 94: -22,15 + 95: -23,15 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 357: 4,-11 + 358: 4,-12 + 359: 4,-13 + 360: 4,-14 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 2154: 22.524572,21.835993 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 2080: -4,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 2081: -3,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 2082: -2,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 2083: -1,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 2084: 0,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 2085: 1,14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 2086: 2,14 + - node: + angle: 1.5707963267948966 rad + color: '#A46105C0' + id: StandClear + decals: + 1909: -36,5 + - node: + color: '#A4610696' + id: StandClear + decals: + 1911: -38,16 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 989: -7,27 + 1155: -12,-27 + 1156: -12,-28 + 1157: -12,-29 + 1158: -12,-30 + 1611: 8,-25 + 1612: 8,-21 + 1613: 11,-20 + 1614: 12,-20 + 1615: 11,-17 + 1616: 12,-17 + 1617: 10,-11 + 1618: 11,-11 + 1619: -12,-11 + 1620: -13,-11 + 1621: -13,-17 + 1622: -10,-19 + 1623: -13,-21 + 1624: 12,-39 + 1625: 6,-36 + 1626: 7,-36 + 1627: 6,-32 + 1628: 7,-32 + 1629: -20,-19 + 1819: -9,-17 + 1841: -42,9 + 1842: -38,10 + 1843: -36,3 + 2147: -20,-13 + 2148: -21,-13 + 4723: -40,12 + - node: + color: '#52B4E996' + id: StandClearGreyscale + decals: + 456: -2,72 + 457: -1,72 + 458: 0,72 + 1795: 1,47 + 1796: 1,46 + 1797: 3,47 + 1798: 3,46 + 1815: 15,-24 + 1816: 14,-24 + 1817: 18,-11 + 1818: 19,-11 + 4820: 18,-13 + 4821: 19,-13 + - node: + color: '#A4610696' + id: StandClearGreyscale + decals: + 4892: -44,27 + 4893: -44,28 + - node: + color: '#D381C9FF' + id: StandClearGreyscale + decals: + 4828: -16,35 + 4829: -15,35 + 4830: -14,35 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 5120: 9,17 + 5139: 14,20 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 5141: 16,17 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 5128: 11,19 + 5140: 14,17 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 5138: 16,20 + - node: + color: '#FFFFFFFF' + id: VentSmall + decals: + 5045: -9,60 + - node: + color: '#79150096' + id: WarnBox + decals: + 1283: -15,-13 + 1284: -15,-12 + - node: + color: '#791500FF' + id: WarnBox + decals: + 1285: -15,-13 + 1286: -15,-12 + - node: + color: '#DE3A3AFF' + id: WarnBox + decals: + 1123: -10,25 + 1281: -15,-15 + 1282: -15,-16 + - node: + color: '#52B4E996' + id: WarnBoxGreyscale + decals: + 1287: -15,-13 + 1288: -15,-12 + - node: + color: '#52B4E9FF' + id: WarnBoxGreyscale + decals: + 1124: -10,24 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 1527: 8,-39 + 2123: -22,-16 + 4826: -14,35 + 5017: -40,4 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 1526: 5,-39 + 2122: -24,-16 + 4831: -16,35 + 4857: 25,31 + 5016: -42,4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 951: -14,32 + 1525: 8,-42 + 2121: -22,-18 + 5018: -40,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 950: -16,32 + 1524: 5,-42 + 2124: -24,-18 + 4847: -7,-18 + 4849: 13,-34 + 4858: 27,34 + 5015: -42,0 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 5014: 13,-31 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 2092: 19,-33 + - node: + color: '#FFFFFFFF' + id: WarnFullGreyscale + decals: + 5065: -9,61 + 5066: -8,60 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 952: -14,33 + 953: -14,34 + 1159: -12,-38 + 1160: -12,-37 + 1161: -12,-36 + 1162: -12,-35 + 1163: -12,-34 + 1164: -12,-33 + 1165: -12,-32 + 1166: -12,-25 + 1167: -12,-24 + 1168: -12,-23 + 1169: -12,-22 + 1522: 8,-40 + 1523: 8,-41 + 1783: 12,-18 + 1784: 12,-19 + 2125: -22,-17 + 4760: 20,-12 + 4761: 20,-13 + 4851: 23,34 + 4852: 23,33 + 4853: 23,32 + 4854: 23,31 + 4894: -45,27 + 4895: -45,28 + 5022: -40,1 + 5023: -40,2 + 5024: -40,3 + 5042: -10,62 + 5043: -10,63 + 5044: -10,64 + 5062: -8,62 + 5063: -8,63 + 5064: -8,64 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnLineE + decals: + 5013: 13,-32 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleE + decals: + 5124: 12,18 + 5125: 12,19 + 5126: 12,17 + 5127: 12,20 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleN + decals: + 5095: 9,32 + 5096: 10,32 + 5097: 11,32 + 5098: 12,32 + 5145: 15,20 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 5144: 14,18 + - node: + color: '#FFA500FF' + id: WarnLineN + decals: + 4844: -28,-29 + 4845: 26,-29 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 947: -15,32 + 986: -8,32 + 987: -7,32 + 988: -6,32 + 1517: 6,-42 + 1518: 7,-42 + 2093: 18,-33 + 2100: 17,-33 + 2128: -23,-18 + 4848: -6,-18 + 4859: -29,49 + 4860: -28,49 + 5020: -41,0 + 5021: -41,0 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 948: -16,33 + 949: -16,34 + 1125: -15,27 + 1126: -15,28 + 1519: 5,-41 + 1520: 5,-40 + 1781: 11,-19 + 1782: 11,-18 + 2087: 19,-35 + 2088: 19,-34 + 2089: 19,-36 + 2090: 19,-37 + 2091: 19,-38 + 2127: -24,-17 + 4762: 17,-13 + 4763: 17,-12 + 4850: 13,-33 + 4876: -43,27 + 4877: -43,28 + 4896: -46,28 + 4897: -46,27 + 5025: -42,1 + 5026: -42,2 + 5027: -42,3 + - node: + color: '#FFA500FF' + id: WarnLineW + decals: + 4843: -28,-29 + 4846: 26,-29 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 1092: -10,18 + 1093: -9,18 + 1094: -8,18 + 1521: 6,-39 + 2126: -23,-16 + 4827: -15,35 + 4855: 27,31 + 4856: 26,31 + 5019: -41,4 + 5039: -5,59 + 5040: -6,59 + 5041: -7,59 + 5059: -5,61 + 5060: -6,61 + 5061: -7,61 + - node: + color: '#E7B795FF' + id: WoodTrimThinCornerNe + decals: + 1998: 43,51 + 2015: 46,48 + - node: + color: '#FFD381FF' + id: WoodTrimThinCornerNe + decals: + 1411: -5,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 707: 14,61 + 1083: -24,21 + 5071: -7,-3 + 5072: -6,-5 + - node: + color: '#E7B795FF' + id: WoodTrimThinCornerNw + decals: + 1999: 41,51 + 2004: 40,49 + 2016: 45,48 + - node: + color: '#FFD381FF' + id: WoodTrimThinCornerNw + decals: + 1422: -12,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 706: 7,61 + 5073: -9,-3 + 5074: -10,-5 + - node: + color: '#E7B795FF' + id: WoodTrimThinCornerSe + decals: + 2013: 46,46 + - node: + color: '#FFD381FF' + id: WoodTrimThinCornerSe + decals: + 1407: -5,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 2049: 14,56 + - node: + color: '#E7B795FF' + id: WoodTrimThinCornerSw + decals: + 2007: 40,46 + - node: + color: '#FFD381FF' + id: WoodTrimThinCornerSw + decals: + 1416: -10,4 + 1420: -12,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 2048: 7,56 + - node: + color: '#E7B795FF' + id: WoodTrimThinInnerNe + decals: + 2003: 43,46 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 481: 3,70 + 5080: -7,-5 + - node: + color: '#E7B795FF' + id: WoodTrimThinInnerNw + decals: + 2002: 41,49 + 2018: 45,46 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 482: 7,70 + 5075: -9,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 483: 3,74 + - node: + color: '#FFD381FF' + id: WoodTrimThinInnerSw + decals: + 1418: -10,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 484: 7,74 + - node: + color: '#E7B795FF' + id: WoodTrimThinLineE + decals: + 1994: 43,47 + 1995: 43,48 + 1996: 43,49 + 1997: 43,50 + 2014: 46,47 + - node: + color: '#FFD381FF' + id: WoodTrimThinLineE + decals: + 1408: -5,5 + 1409: -5,6 + 1410: -5,7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 475: 3,71 + 476: 3,72 + 477: 3,73 + 718: 14,57 + 719: 14,58 + 720: 14,59 + 721: 14,60 + 1084: -24,20 + 1085: -24,19 + 5078: -6,-6 + 5079: -7,-4 + - node: + color: '#E7B795FF' + id: WoodTrimThinLineN + decals: + 2000: 42,51 + 2019: 44,46 + - node: + color: '#FFD381FF' + id: WoodTrimThinLineN + decals: + 1423: -11,8 + 1424: -10,8 + 1425: -9,8 + 1426: -8,8 + 1427: -7,8 + 1428: -6,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 469: 4,70 + 470: 5,70 + 471: 6,70 + 708: 8,61 + 709: 9,61 + 710: 10,61 + 711: 11,61 + 712: 12,61 + 713: 13,61 + 1082: -25,21 + 5003: 5,59 + 5004: 3,59 + 5005: 2,59 + 5006: 4,59 + 5081: -8,-3 + - node: + color: '#E7B795FF' + id: WoodTrimThinLineS + decals: + 2008: 41,46 + 2009: 42,46 + 2010: 43,46 + 2011: 44,46 + 2012: 45,46 + - node: + color: '#FFD381FF' + id: WoodTrimThinLineS + decals: + 1412: -6,4 + 1413: -7,4 + 1414: -8,4 + 1415: -9,4 + 1419: -11,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 472: 4,74 + 473: 5,74 + 474: 6,74 + 2042: 8,56 + 2043: 9,56 + 2044: 10,56 + 2045: 11,56 + 2046: 12,56 + 2047: 13,56 + - node: + color: '#E7B795FF' + id: WoodTrimThinLineW + decals: + 2001: 41,50 + 2005: 40,48 + 2006: 40,47 + 2017: 45,47 + - node: + color: '#FFD381FF' + id: WoodTrimThinLineW + decals: + 1417: -10,5 + 1421: -12,7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 478: 7,71 + 479: 7,72 + 480: 7,73 + 714: 7,60 + 715: 7,59 + 716: 7,58 + 717: 7,57 + 5076: -9,-4 + 5077: -10,-6 + - node: + color: '#80C71F76' + id: grasssnowa2 + decals: + 4754: -45.348083,39.888554 + - node: + color: '#80C71F76' + id: grasssnowb1 + decals: + 4753: -45.952293,40.610558 + - node: + color: '#80C71F76' + id: grasssnowc1 + decals: + 4752: -47.55861,40.00643 + - type: GridAtmosphere + version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,-1: + 0: 65535 + 0,0: + 0: 65535 + -4,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + 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: 13119 + 1: 52416 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 61167 + 1: 4368 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + -4,4: + 0: 65535 + -4,5: + 0: 65535 + -4,6: + 0: 65535 + -4,7: + 0: 65535 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -2,6: + 0: 65535 + -2,7: + 0: 65535 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 65535 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 0: 65535 + 5,-3: + 0: 65535 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 65535 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 65535 + 5,7: + 0: 65535 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 65535 + 6,7: + 0: 65535 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 65535 + 7,7: + 0: 65535 + -8,-4: + 0: 53247 + 1: 12288 + -8,-3: + 1: 3 + 0: 65532 + -8,-2: + 0: 65535 + -8,-1: + 0: 65535 + -7,-4: + 0: 65535 + -7,-3: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-4: + 0: 65535 + -6,-3: + 0: 65535 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 0: 65535 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -8,4: + 0: 65535 + -8,5: + 0: 65535 + -8,6: + 0: 65535 + -8,7: + 0: 65535 + -7,4: + 0: 65535 + -7,5: + 0: 65531 + 2: 4 + -7,6: + 0: 65535 + -7,7: + 0: 65535 + -6,4: + 0: 65535 + -6,5: + 0: 65535 + -6,6: + 0: 65535 + -6,7: + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 65535 + -5,6: + 0: 65535 + -5,7: + 0: 65535 + -8,0: + 0: 65535 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 65535 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 9,-4: + 0: 65535 + 9,-3: + 0: 65535 + 9,-2: + 0: 8191 + 10,-4: + 0: 63999 + 10,-3: + 0: 65535 + 10,-2: + 0: 4095 + 11,-4: + 0: 65535 + 11,-3: + 0: 65535 + 11,-2: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 9,2: + 0: 63487 + 9,3: + 0: 65535 + 10,2: + 0: 61440 + 10,3: + 0: 65535 + 11,2: + 0: 65280 + 11,3: + 0: 65535 + 8,4: + 0: 32767 + 8,5: + 0: 13107 + 8,6: + 0: 13107 + 8,7: + 0: 13107 + 9,4: + 0: 255 + 10,4: + 0: 255 + 11,4: + 0: 4095 + -12,-4: + 0: 61440 + -12,-3: + 0: 65535 + -12,-2: + 0: 36863 + 3: 16384 + -12,-1: + 0: 65224 + 3: 4 + -11,-3: + 0: 65535 + -11,-2: + 0: 65535 + -11,-1: + 0: 65535 + -11,-4: + 0: 64640 + -10,-4: + 0: 65535 + -10,-3: + 0: 65535 + -10,-2: + 0: 65535 + -10,-1: + 0: 65535 + -9,-4: + 0: 32767 + 1: 32768 + -9,-3: + 0: 65527 + 1: 8 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + -12,2: + 0: 63694 + 3: 1024 + -12,3: + 0: 65535 + -12,0: + 0: 65535 + -12,1: + 0: 65535 + -11,0: + 0: 65535 + -11,1: + 0: 65535 + -11,2: + 0: 65519 + 4: 16 + -11,3: + 0: 65535 + -10,0: + 0: 65535 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,0: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + -12,4: + 0: 65535 + -12,6: + 0: 61164 + -12,5: + 0: 52428 + -12,7: + 0: 3822 + -11,4: + 0: 65535 + -11,5: + 0: 65535 + -11,6: + 0: 65535 + -11,7: + 0: 65535 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -10,6: + 0: 65535 + -10,7: + 0: 65535 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -9,6: + 0: 65535 + -9,7: + 0: 65535 + 12,2: + 0: 65280 + 12,3: + 0: 65535 + 13,2: + 0: 4096 + 13,3: + 0: 4369 + 12,4: + 0: 4095 + 13,4: + 0: 17 + 8,8: + 0: 65527 + 8,9: + 0: 65535 + 8,10: + 0: 65535 + 8,11: + 0: 65535 + 9,8: + 0: 65280 + 9,9: + 0: 65535 + 9,10: + 0: 65535 + 9,11: + 0: 65535 + 10,8: + 0: 65280 + 10,9: + 0: 65535 + 10,10: + 0: 65535 + 10,11: + 0: 65535 + 11,8: + 0: 65520 + 11,9: + 0: 65535 + 11,10: + 0: 65535 + 11,11: + 0: 65535 + 12,8: + 0: 63344 + 12,9: + 0: 65535 + 12,10: + 0: 30591 + 12,11: + 0: 8183 + 13,8: + 0: 4096 + 13,9: + 0: 4369 + 13,10: + 0: 4369 + 13,11: + 0: 4369 + 4,8: + 0: 65535 + 4,9: + 0: 65535 + 4,10: + 0: 65535 + 4,11: + 0: 65535 + 5,8: + 0: 65535 + 5,9: + 0: 65535 + 5,10: + 0: 65535 + 5,11: + 0: 65535 + 6,8: + 0: 65535 + 6,9: + 0: 65535 + 6,10: + 0: 65535 + 6,11: + 0: 65535 + 7,8: + 0: 65535 + 7,9: + 0: 65535 + 7,10: + 0: 65535 + 7,11: + 0: 65535 + 12,-4: + 0: 65535 + 12,-3: + 0: 65535 + 12,-2: + 0: 30719 + 13,-3: + 0: 4368 + 13,-2: + 0: 17 + -14,-3: + 0: 52416 + -14,-2: + 0: 204 + -13,-4: + 0: 61440 + -13,-3: + 0: 65535 + -13,-2: + 0: 4095 + -14,3: + 0: 52428 + -13,2: + 0: 61440 + -13,3: + 0: 65535 + -14,4: + 0: 2252 + -13,4: + 0: 65535 + 0,8: + 0: 65535 + 0,9: + 0: 65535 + 0,10: + 0: 65535 + 0,11: + 0: 65535 + 1,8: + 0: 65535 + 1,9: + 0: 65535 + 1,10: + 0: 65535 + 1,11: + 0: 65535 + 2,8: + 0: 65535 + 2,9: + 0: 65535 + 2,10: + 0: 65535 + 2,11: + 0: 65535 + 3,8: + 0: 65535 + 3,9: + 0: 65535 + 3,10: + 0: 65535 + 3,11: + 0: 65535 + -4,8: + 0: 65535 + -4,9: + 0: 65535 + -4,10: + 0: 65535 + -4,11: + 0: 65535 + -3,8: + 0: 65535 + -3,9: + 0: 65535 + -3,10: + 0: 65535 + -3,11: + 0: 65535 + -2,8: + 0: 65535 + -2,9: + 0: 65535 + -2,10: + 0: 65535 + -2,11: + 0: 65535 + -1,8: + 0: 65535 + -1,9: + 0: 65535 + -1,10: + 0: 65535 + -1,11: + 0: 65535 + -8,8: + 0: 65535 + -8,9: + 0: 65535 + -8,10: + 0: 65535 + -8,11: + 0: 65535 + -7,8: + 0: 65535 + -7,9: + 0: 65535 + -7,10: + 0: 65535 + -7,11: + 0: 65535 + -6,8: + 0: 65535 + -6,9: + 0: 65535 + -6,10: + 0: 65535 + -6,11: + 0: 65535 + -5,8: + 0: 65535 + -5,9: + 0: 65535 + -5,10: + 0: 65535 + -5,11: + 0: 65535 + -12,8: + 0: 65527 + -12,9: + 0: 65535 + -12,10: + 0: 65535 + -12,11: + 0: 65535 + -11,8: + 0: 65535 + -11,9: + 0: 65535 + -11,10: + 0: 65535 + -11,11: + 0: 65535 + -10,8: + 0: 65535 + -10,9: + 0: 65535 + -10,10: + 0: 65535 + -10,11: + 0: 65535 + -9,8: + 0: 65535 + -9,9: + 0: 65535 + -9,10: + 0: 65535 + -9,11: + 0: 65535 + -14,8: + 0: 52352 + -14,9: + 0: 52428 + -14,10: + 0: 17484 + -13,8: + 0: 65535 + -13,9: + 0: 65535 + -13,10: + 0: 65535 + -13,11: + 0: 57343 + 0,-8: + 0: 65279 + 3: 256 + 0,-7: + 5: 1 + 0: 65278 + 3: 256 + 0,-6: + 3: 1 + 0: 65278 + 6: 256 + 0,-5: + 7: 1 + 0: 65534 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 65535 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + -4,-8: + 0: 65535 + -4,-7: + 0: 65535 + -4,-6: + 0: 65535 + -4,-5: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -3,-6: + 0: 65535 + -3,-5: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-8: + 0: 62463 + 3: 3072 + -1,-7: + 0: 62451 + 5: 12 + 3: 3072 + -1,-6: + 0: 62451 + 3: 12 + 6: 3072 + -1,-5: + 0: 65523 + 7: 12 + -12,12: + 0: 61439 + -12,13: + 0: 58111 + -11,12: + 0: 65535 + -11,13: + 0: 65279 + -11,14: + 0: 36463 + -10,12: + 0: 65535 + -10,13: + 0: 65535 + -10,14: + 0: 45055 + -10,15: + 0: 43690 + -9,12: + 0: 65535 + -9,13: + 0: 65535 + -9,14: + 0: 4095 + -9,15: + 0: 15 + -13,12: + 0: 20477 + -13,13: + 0: 204 + -8,12: + 0: 65535 + -8,13: + 0: 65535 + -8,14: + 0: 65535 + -8,15: + 0: 3871 + -7,12: + 0: 65535 + -7,13: + 0: 65535 + -7,14: + 0: 65535 + -7,15: + 0: 3855 + -6,12: + 0: 65535 + -6,13: + 0: 65535 + -6,14: + 0: 65535 + -6,15: + 0: 53199 + -5,12: + 0: 65535 + -5,13: + 0: 65535 + -5,14: + 0: 65535 + -5,15: + 0: 65535 + -4,12: + 0: 65535 + -4,13: + 0: 65535 + -4,14: + 0: 65535 + -4,15: + 0: 65535 + -3,12: + 0: 65535 + -3,13: + 0: 65535 + -3,14: + 0: 65535 + -3,15: + 0: 65535 + -2,12: + 0: 65535 + -2,13: + 0: 65535 + -2,14: + 0: 65535 + -2,15: + 0: 65535 + -1,12: + 0: 65535 + -1,13: + 0: 65535 + -1,14: + 0: 65535 + -1,15: + 0: 65535 + 0,12: + 0: 65535 + 0,13: + 0: 65535 + 0,14: + 0: 65535 + 0,15: + 0: 65535 + 1,12: + 0: 65535 + 1,13: + 0: 65535 + 1,14: + 0: 65535 + 1,15: + 0: 65535 + 2,12: + 0: 65535 + 2,13: + 0: 65535 + 2,14: + 0: 65535 + 2,15: + 0: 65535 + 3,12: + 0: 65535 + 3,13: + 0: 65535 + 3,14: + 0: 65535 + 3,15: + 0: 65535 + 4,12: + 0: 65535 + 4,13: + 0: 65535 + 4,14: + 0: 65535 + 4,15: + 0: 65535 + 5,12: + 0: 65535 + 5,13: + 0: 65535 + 5,14: + 0: 65535 + 5,15: + 0: 7967 + 6,12: + 0: 65535 + 6,13: + 0: 65535 + 6,14: + 0: 65535 + 6,15: + 0: 3855 + 7,12: + 0: 65535 + 7,13: + 0: 65535 + 7,14: + 0: 32767 + 7,15: + 0: 1871 + 8,12: + 0: 65535 + 8,13: + 0: 65535 + 8,14: + 0: 36863 + 8,15: + 0: 34959 + 9,12: + 0: 65535 + 9,13: + 0: 65535 + 9,14: + 0: 65535 + 9,15: + 0: 43775 + 10,12: + 0: 65535 + 10,13: + 0: 62463 + 10,14: + 0: 1895 + 11,12: + 0: 16383 + 11,13: + 0: 12863 + -4,16: + 0: 65535 + -4,17: + 0: 65535 + -4,18: + 0: 36639 + -4,19: + 0: 34952 + -3,16: + 0: 65535 + -3,17: + 0: 65535 + -3,18: + 0: 61423 + -3,19: + 0: 65262 + -2,16: + 0: 65535 + -2,17: + 0: 65535 + -2,18: + 0: 65535 + -2,19: + 0: 65535 + -1,16: + 0: 65535 + -1,17: + 0: 65535 + -1,18: + 0: 65535 + -1,19: + 0: 65535 + -6,16: + 0: 19660 + -6,17: + 0: 12 + -5,16: + 0: 4095 + -5,17: + 0: 15 + 0,16: + 0: 65535 + 0,17: + 0: 65535 + 0,18: + 0: 65535 + 0,19: + 0: 65535 + 1,16: + 0: 65535 + 1,17: + 0: 65535 + 1,18: + 0: 65535 + 1,19: + 0: 65535 + 2,16: + 0: 65535 + 2,17: + 0: 65535 + 2,18: + 0: 48959 + 2,19: + 0: 64443 + 3,16: + 0: 32767 + 3: 32768 + 3,17: + 0: 30591 + 3,18: + 0: 1863 + 4,16: + 0: 4095 + 3: 61440 + 4,17: + 0: 15 + 5,16: + 0: 4369 + 5,17: + 0: 1 + -3,20: + 0: 40925 + -3,21: + 0: 3592 + -2,20: + 0: 65535 + -2,21: + 0: 60303 + -1,20: + 0: 65535 + -1,21: + 0: 61695 + 0,20: + 0: 65535 + 0,21: + 0: 63743 + 1,20: + 0: 65535 + 1,21: + 0: 15887 + 2,20: + 0: 18261 + -9,-5: + 0: 65535 + -8,-5: + 0: 65535 + -8,-6: + 0: 65535 + -7,-6: + 0: 65535 + -7,-5: + 0: 65535 + -7,-8: + 0: 65466 + -7,-7: + 0: 65535 + -6,-8: + 0: 65535 + -6,-7: + 0: 65535 + -6,-6: + 0: 65535 + -6,-5: + 0: 65535 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -5,-6: + 0: 65535 + -5,-5: + 0: 65535 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-8: + 0: 65535 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 65535 + 8,-5: + 0: 65535 + 4,-11: + 0: 63474 + 4,-10: + 0: 65535 + 4,-9: + 0: 65535 + 5,-10: + 0: 48063 + 5,-9: + 0: 64443 + 0,-12: + 3: 13073 + 0: 52462 + 0,-11: + 3: 4355 + 0: 61180 + 0,-10: + 3: 1 + 0: 65534 + 0,-9: + 3: 273 + 0: 65262 + 1,-12: + 0: 65535 + 1,-11: + 0: 65535 + 1,-10: + 0: 65535 + 1,-9: + 0: 65535 + 2,-12: + 0: 65535 + 2,-11: + 0: 65535 + 2,-10: + 0: 65535 + 2,-9: + 0: 65535 + 3,-12: + 0: 63359 + 3,-11: + 0: 65535 + 3,-10: + 0: 65535 + 3,-9: + 0: 65535 + -4,-12: + 0: 65535 + -4,-11: + 0: 65535 + -4,-10: + 0: 65535 + -4,-9: + 0: 65535 + -3,-12: + 0: 65535 + -3,-11: + 0: 65535 + -3,-10: + 0: 65535 + -3,-9: + 0: 65535 + -2,-12: + 0: 65535 + -2,-11: + 0: 65535 + -2,-10: + 0: 65535 + -2,-9: + 0: 65535 + -1,-12: + 0: 51 + 3: 65484 + -1,-11: + 3: 52367 + 0: 13168 + -1,-10: + 0: 65523 + 3: 12 + -1,-9: + 0: 62259 + 3: 3276 + -6,-10: + 0: 61167 + -6,-9: + 0: 65262 + -5,-10: + 0: 65535 + -5,-9: + 0: 65535 + -5,-11: + 0: 65530 + -5,-12: + 0: 41518 + -4,-13: + 0: 52352 + -3,-14: + 0: 65518 + -3,-13: + 0: 65535 + -3,-15: + 0: 60620 + -3,-16: + 0: 51336 + -2,-16: + 0: 30583 + -2,-15: + 0: 65535 + -2,-14: + 0: 65535 + -2,-13: + 0: 65535 + -1,-13: + 0: 16320 + 3: 49152 + 0,-13: + 3: 4096 + 0: 61336 + 0,-15: + 0: 34952 + 0,-14: + 0: 34952 + 1,-16: + 0: 65535 + 1,-15: + 0: 65535 + 1,-14: + 0: 65535 + 1,-13: + 0: 65535 + 2,-15: + 0: 12561 + 2,-14: + 0: 30515 + 2,-13: + 0: 65527 + -3,-18: + 0: 34944 + -3,-17: + 0: 34952 + -2,-18: + 0: 13105 + -2,-17: + 0: 29491 + 1,-18: + 0: 61156 + 1,-17: + 0: 65262 + 12,12: + 0: 4383 + 12,13: + 0: 1 + 13,12: + 0: 1 + 2,-16: + 0: 4096 + 3,-13: + 0: 4352 + -10,-5: + 0: 65535 + -10,-6: + 0: 61166 + -9,-6: + 0: 65535 + -9,-7: + 0: 65521 + -8,-7: + 0: 65535 + 8,-6: + 0: 65535 + 9,-6: + 0: 13107 + 9,-5: + 0: 30583 + 9,-1: + 0: 65527 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + -14,11: + 0: 3140 + -12,14: + 0: 14 + 2,21: + 0: 768 + -10,-7: + 0: 8928 + -9,-8: + 0: 61440 + -8,-8: + 0: 63985 + 6,-8: + 0: 65506 + 6,-7: + 0: 65535 + 7,-8: + 0: 62002 + 7,-7: + 0: 65527 + 8,-8: + 0: 28672 + 8,-7: + 0: 30708 + 9,-7: + 0: 8752 + 4,-12: + 0: 8739 + 5,-11: + 0: 8752 + 6,-9: + 0: 61440 + 7,-9: + 0: 12288 + -8,-9: + 0: 61440 + -7,-9: + 0: 63624 + -7,-10: + 0: 34952 + -6,-11: + 0: 41696 + 13,-4: + 0: 273 + -11,15: + 0: 34952 + -8,17: + 0: 3967 + -8,18: + 0: 3967 + -8,19: + 0: 3967 + -7,16: + 0: 4352 + -7,17: + 0: 4369 + -7,18: + 0: 4369 + -7,19: + 0: 4369 + 6,16: + 0: 17408 + 6,17: + 0: 19532 + 6,18: + 0: 19532 + 6,19: + 0: 19532 + 7,17: + 0: 4095 + 7,18: + 0: 4095 + 7,19: + 0: 4095 + 10,-5: + 0: 65535 + 11,-6: + 0: 64799 + 11,-5: + 0: 65535 + 8,17: + 0: 36863 + 8,18: + 0: 36863 + 8,19: + 0: 36863 + 8,16: + 0: 34952 + 9,16: + 0: 44970 + 9,17: + 0: 43770 + 9,18: + 0: 43770 + 9,19: + 0: 64250 + 10,17: + 0: 4095 + 10,18: + 0: 4095 + 10,19: + 0: 4095 + 11,17: + 0: 3967 + 11,18: + 0: 3967 + 11,19: + 0: 3967 + 8,20: + 0: 143 + 9,20: + 0: 248 + 10,20: + 0: 15 + 11,20: + 0: 15 + 6,20: + 0: 12 + 7,20: + 0: 15 + 12,20: + 0: 1 + 12,16: + 0: 4352 + 12,17: + 0: 4369 + 12,18: + 0: 4369 + 12,19: + 0: 4369 + -12,17: + 0: 4095 + -12,18: + 0: 4095 + -12,19: + 0: 4095 + -11,17: + 0: 36863 + -11,18: + 0: 36863 + -11,19: + 0: 36863 + -11,16: + 0: 34952 + -10,17: + 0: 43770 + -10,18: + 0: 43770 + -10,19: + 0: 64250 + -10,16: + 0: 43690 + -9,17: + 0: 4095 + -9,18: + 0: 4095 + -9,19: + 0: 4095 + -13,16: + 0: 17408 + -13,17: + 0: 19532 + -13,18: + 0: 19532 + -13,19: + 0: 19532 + -13,20: + 0: 12 + -12,20: + 0: 15 + -11,20: + 0: 143 + -10,20: + 0: 248 + -9,20: + 0: 15 + -8,20: + 0: 15 + -7,20: + 0: 1 + 12,-6: + 0: 62799 + 12,-5: + 0: 65535 + 13,-5: + 0: 4369 + 10,-6: + 0: 32782 + 13,-6: + 0: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 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 + - volume: 2500 + temperature: 293.15 + moles: + - 21.938612 + - 82.53097 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 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 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Aspid + - type: Joint + joints: + docking21483: !type:WeldJoint + bodyB: 8756 + bodyA: 1 + id: docking21483 + localAnchorB: -5,0.5 + localAnchorA: 38,3.5 + damping: 791.64215 + stiffness: 7105.7637 + docking21482: !type:WeldJoint + bodyB: 8756 + bodyA: 1 + id: docking21482 + localAnchorB: -5,-1.5 + localAnchorA: 38,1.5 + damping: 791.64215 + stiffness: 7105.7637 + - type: SpreaderGrid + - type: GridPathfinding + - uid: 6526 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: Parallax + parallax: AspidParallax + - type: LoadedMap + - type: GridTree + - type: MovedGrids + - uid: 8756 + components: + - type: MetaData + - type: Transform + pos: 43.1,3.5 + parent: 6526 + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAZAAAAAAAJgAAAAACJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAADJgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACJgAAAAAAIgAAAAACJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAJgAAAAADJgAAAAAB + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADJgAAAAAAIgAAAAACJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: IgAAAAADJgAAAAAAIgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABZAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAZAAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACJgAAAAAAIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: Shuttle + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 0: 0,-2 + 1: 2,-2 + 2: 0,0 + 3: 2,0 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 4: -4,0 + 5: -4,-2 + 6: -2,0 + 7: -2,-2 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Bot + decals: + 8: -2,-2 + 9: -4,-2 + 10: -4,0 + 11: -2,0 + 12: 0,0 + 13: 0,-2 + 14: 2,-2 + 15: 2,0 + 16: 1,-4 + 17: 1,-5 + 18: -3,-4 + 19: -3,-5 + 20: -1,-4 + - node: + cleanable: True + color: '#83543273' + id: Dirt + decals: + 21: -4,0 + 22: -4,-1 + 23: -1,-1 + 24: 0,0 + 25: -1,-2 + 26: -2,-2 + 27: -2,-4 + 28: -2,-5 + 29: 0,-5 + 30: 0,-4 + 31: 0,-2 + 32: 0,-1 + 33: -1,2 + 34: -2,2 + 35: 0,-1 + 36: 2,0 + 37: 2,-1 + 38: 2,-2 + 39: 2,0 + 40: 1,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + -1,-1: + 0: 65533 + 1: 2 + -1,0: + 0: 61439 + 0,0: + 0: 14335 + 0,-1: + 0: 65533 + 1: 2 + -2,-1: + 0: 34952 + -1,-2: + 0: 65534 + -1,-3: + 0: 49152 + -2,0: + 0: 136 + -1,1: + 0: 206 + 0,1: + 0: 19 + 0,-3: + 0: 4096 + 0,-2: + 0: 30579 + 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: + - 15.142283 + - 56.963825 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: Joint + joints: + docking21483: !type:WeldJoint + bodyB: 8756 + bodyA: 1 + id: docking21483 + localAnchorB: -5,0.5 + localAnchorA: 38,3.5 + damping: 791.64215 + stiffness: 7105.7637 + docking21482: !type:WeldJoint + bodyB: 8756 + bodyA: 1 + id: docking21482 + localAnchorB: -5,-1.5 + localAnchorA: 38,1.5 + damping: 791.64215 + stiffness: 7105.7637 + - type: SpreaderGrid + - type: GridPathfinding +- proto: AcousticGuitarInstrument + entities: + - uid: 9102 + components: + - type: Transform + pos: 6.605979,-25.237396 + parent: 1 +- proto: AirAlarm + entities: + - uid: 8754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-42.5 + parent: 1 + - type: DeviceList + devices: + - 8752 + - 8751 + - 8753 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 5769 + - 5770 + - 5771 + - 5772 + - 8926 + - 5783 + - 5784 + - 5785 + - 9048 + - 5760 + - 5759 + - 5758 + - 5757 + - 5779 + - 5780 + - 5781 + - 5778 + - 5777 + - 5776 + - 14635 + - 14636 + - 14633 + - 5390 + - 14659 + - 14660 + - 14672 + - 14683 + - 14697 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,75.5 + parent: 1 + - type: DeviceList + devices: + - 6125 + - 6124 + - 6122 + - 6123 + - 17332 + - 16339 + - 16334 + - 16332 + - 16327 + - 16331 + - 16328 + - 16348 + - 16349 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,71.5 + parent: 1 + - type: DeviceList + devices: + - 6125 + - 16348 + - 16349 + - 17335 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,71.5 + parent: 1 + - type: DeviceList + devices: + - 6120 + - 6121 + - 6123 + - 6122 + - 16285 + - 16287 + - 16286 + - 16288 + - 17335 + - 17338 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,65.5 + parent: 1 + - type: DeviceList + devices: + - 6121 + - 6120 + - 6127 + - 6128 + - 6126 + - 6115 + - 6114 + - 6113 + - 6129 + - 16240 + - 16241 + - 17332 + - 16283 + - 16284 + - 17341 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,63.5 + parent: 1 + - type: DeviceList + devices: + - 6129 + - 16238 + - 16239 + - 17338 + - 17344 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,51.5 + parent: 1 + - type: DeviceList + devices: + - 6119 + - 6118 + - 16196 + - 16195 + - 16214 + - 16206 + - 17347 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17349 + components: + - type: Transform + pos: 2.5,58.5 + parent: 1 + - type: DeviceList + devices: + - 6113 + - 6114 + - 6115 + - 6110 + - 6111 + - 6112 + - 6119 + - 6118 + - 6116 + - 6117 + - 17338 + - 17344 + - 17350 + - 15982 + - 15981 + - 17351 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,43.5 + parent: 1 + - type: DeviceList + devices: + - 6130 + - 6131 + - 6110 + - 6111 + - 6112 + - 6133 + - 6132 + - 5635 + - 5636 + - 5637 + - 15921 + - 15922 + - 15945 + - 15944 + - 17347 + - 17354 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17355 + components: + - type: Transform + pos: -12.5,57.5 + parent: 1 + - type: DeviceList + devices: + - 6116 + - 6117 + - 17363 + - 17362 + - 17364 + - 16017 + - 16018 + - 16049 + - 16050 + - 17365 + - 17347 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17358 + components: + - type: Transform + pos: -5.5,65.5 + parent: 1 + - type: DeviceList + devices: + - 15999 + - 16037 + - 16040 + - 15998 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,45.5 + parent: 1 + - type: DeviceList + devices: + - 17368 + - 17369 + - 17370 + - 17371 + - 6130 + - 6131 + - 16142 + - 16141 + - 16006 + - 16007 + - 17354 + - 16183 + - 16191 + - 16184 + - 16189 + - 16185 + - 16188 + - 16186 + - 16187 + - 16095 + - 16094 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17373 + components: + - type: Transform + pos: -33.5,50.5 + parent: 1 + - type: DeviceList + devices: + - 7022 + - 7023 + - 16143 + - 16175 + - 16155 + - 16158 + - 16156 + - 16157 + - 16171 + - 16170 + - 16169 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17376 + components: + - type: Transform + pos: -47.5,45.5 + parent: 1 + - type: DeviceList + devices: + - 7898 + - 7899 + - 7894 + - 7895 + - 15910 + - 15908 + - 17375 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17386 + components: + - type: Transform + pos: -38.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 7898 + - 7899 + - 7894 + - 7895 + - 5835 + - 5833 + - 5834 + - 15909 + - 15907 + - 17378 + - 15911 + - 15906 + - 17387 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17389 + components: + - type: Transform + pos: -22.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 5632 + - 5633 + - 5634 + - 5839 + - 5840 + - 5841 + - 6138 + - 6136 + - 15859 + - 15860 + - 17387 + - 17390 + - 15226 + - 15225 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17394 + components: + - type: Transform + pos: -14.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 9591 + - 9590 + - 9589 + - 5633 + - 5632 + - 5634 + - 6134 + - 6135 + - 6137 + - 15225 + - 15226 + - 17391 + - 17393 + - 17395 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17396 + components: + - type: Transform + pos: 4.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 5644 + - 5645 + - 5646 + - 5640 + - 5639 + - 5638 + - 5637 + - 5636 + - 5635 + - 9591 + - 9590 + - 9589 + - 17398 + - 15200 + - 566 + - 15172 + - 15173 + - 15154 + - 15155 + - 17350 + - 17390 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,35.5 + parent: 1 + - type: DeviceList + devices: + - 5631 + - 5630 + - 5629 + - 5688 + - 5689 + - 5690 + - 5691 + - 5687 + - 5686 + - 7267 + - 7268 + - 5708 + - 5709 + - 5710 + - 15155 + - 15154 + - 15094 + - 17402 + - 17401 + - 15095 + - 14983 + - 15076 + - 15075 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,41.5 + parent: 1 + - type: DeviceList + devices: + - 5686 + - 5687 + - 5689 + - 5688 + - 15101 + - 15102 + - 17405 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,44.5 + parent: 1 + - type: DeviceList + devices: + - 5691 + - 5690 + - 15129 + - 15148 + - 15147 + - 15130 + - 15133 + - 15132 + - 15146 + - 15131 + - 17405 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,47.5 + parent: 1 + - type: DeviceList + devices: + - 5712 + - 5711 + - 14988 + - 14987 + - 15001 + - 15002 + - 15029 + - 15028 + - 15031 + - 15030 + - 17402 + - 14983 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17412 + components: + - type: Transform + pos: 36.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 5694 + - 5693 + - 5692 + - 5700 + - 5699 + - 5698 + - 5697 + - 5708 + - 5709 + - 5710 + - 5711 + - 5712 + - 15036 + - 15037 + - 14983 + - 17402 + - 17413 + - 17405 + - 17414 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,35.5 + parent: 1 + - type: DeviceList + devices: + - 5692 + - 5693 + - 5694 + - 6344 + - 6345 + - 6346 + - 15065 + - 15054 + - 15066 + - 15067 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,26.5 + parent: 1 + - type: DeviceList + devices: + - 5704 + - 5703 + - 5702 + - 5701 + - 5725 + - 5726 + - 5727 + - 7269 + - 17420 + - 5697 + - 5698 + - 5699 + - 5700 + - 17402 + - 14983 + - 14954 + - 14955 + - 14899 + - 14900 + - 17421 + - 17422 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,19.5 + parent: 1 + - type: DeviceList + devices: + - 5727 + - 5726 + - 5725 + - 5724 + - 5723 + - 5722 + - 14906 + - 14907 + - 17413 + - 17422 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 1 + - type: DeviceList + devices: + - 5722 + - 5723 + - 5724 + - 5685 + - 5684 + - 5683 + - 5701 + - 5702 + - 5703 + - 5704 + - 5719 + - 5720 + - 5721 + - 5717 + - 5716 + - 5715 + - 14917 + - 14916 + - 17413 + - 17421 + - 17427 + - 17428 + - 17429 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,12.5 + parent: 1 + - type: DeviceList + devices: + - 5717 + - 5716 + - 5715 + - 14879 + - 14880 + - 17422 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17433 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - type: DeviceList + devices: + - 5683 + - 5684 + - 5685 + - 5623 + - 5624 + - 5625 + - 14929 + - 14928 + - 17422 + - 17434 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17439 + components: + - type: Transform + pos: -8.5,16.5 + parent: 1 + - type: DeviceList + devices: + - 5623 + - 5624 + - 5625 + - 5663 + - 5662 + - 5661 + - 5772 + - 5771 + - 5769 + - 5620 + - 5621 + - 5622 + - 5655 + - 5654 + - 5653 + - 5658 + - 5659 + - 5660 + - 15382 + - 15381 + - 15480 + - 15479 + - 17398 + - 17437 + - 17438 + - 17469 + - 17468 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,24.5 + parent: 1 + - type: DeviceList + devices: + - 5657 + - 5656 + - 4341 + - 15294 + - 15295 + - 15316 + - 15317 + - 17437 + - 17442 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,23.5 + parent: 1 + - type: DeviceList + devices: + - 6363 + - 4341 + - 4344 + - 4338 + - 4340 + - 6364 + - 4343 + - 6365 + - 15458 + - 15457 + - 15447 + - 15452 + - 15411 + - 8694 + - 17443 + - 15459 + - 15460 + - 15265 + - 15266 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,29.5 + parent: 1 + - type: DeviceList + devices: + - 6138 + - 6134 + - 6135 + - 6137 + - 6363 + - 15263 + - 15264 + - 15265 + - 15266 + - 17390 + - 17391 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,32.5 + parent: 1 + - type: DeviceList + devices: + - 17449 + - 6365 + - 15283 + - 15284 + - 17442 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17452 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - type: DeviceList + devices: + - 6399 + - 6400 + - 6398 + - 15499 + - 15500 + - 17453 + - 17438 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,24.5 + parent: 1 + - type: DeviceList + devices: + - 6398 + - 6391 + - 6392 + - 6396 + - 6394 + - 6395 + - 6393 + - 17457 + - 15537 + - 15579 + - 17458 + - 17459 + - 17462 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,25.5 + parent: 1 + - type: DeviceList + devices: + - 15562 + - 15566 + - 15578 + - 15558 + - 12901 + - 17453 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,33.5 + parent: 1 + - type: DeviceList + devices: + - 15550 + - 15544 + - 17453 + - 6394 + - 6395 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17464 + components: + - type: Transform + pos: 3.5,26.5 + parent: 1 + - type: DeviceList + devices: + - 5667 + - 5668 + - 6392 + - 6391 + - 6393 + - 15524 + - 15525 + - 17453 + - 17438 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,26.5 + parent: 1 + - type: DeviceList + devices: + - 5638 + - 5639 + - 5640 + - 5648 + - 5651 + - 5652 + - 5658 + - 5659 + - 5660 + - 5664 + - 5665 + - 5666 + - 15325 + - 15326 + - 15352 + - 15351 + - 17438 + - 17437 + - 17434 + - 17393 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17470 + components: + - type: Transform + pos: -24.5,16.5 + parent: 1 + - type: DeviceList + devices: + - 5620 + - 5621 + - 5622 + - 5673 + - 5672 + - 5671 + - 5670 + - 15609 + - 15610 + - 17434 + - 17472 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,9.5 + parent: 1 + - type: DeviceList + devices: + - 5670 + - 17481 + - 17480 + - 17468 + - 17484 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,28.5 + parent: 1 + - type: DeviceList + devices: + - 5677 + - 5678 + - 5679 + - 5838 + - 5837 + - 5836 + - 15830 + - 15827 + - 15828 + - 15829 + - 15826 + - 15831 + - 17387 + - 17472 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,26.5 + parent: 1 + - type: DeviceList + devices: + - 5832 + - 5831 + - 15680 + - 15681 + - 17379 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17492 + components: + - type: Transform + pos: -45.5,16.5 + parent: 1 + - type: DeviceList + devices: + - 5674 + - 5675 + - 5676 + - 5824 + - 5832 + - 5831 + - 15668 + - 15669 + - 17472 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 5821 + - 5822 + - 5823 + - 6656 + - 6667 + - 5825 + - 5824 + - 15710 + - 15757 + - 15701 + - 15700 + - 17484 + - 6650 + - 15743 + - 15742 + - 15728 + - 15729 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 5808 + - 5810 + - 5809 + - 5820 + - 5819 + - 5818 + - 5817 + - 5670 + - 5680 + - 5681 + - 5682 + - 6649 + - 6666 + - 15778 + - 15777 + - 15742 + - 15743 + - 15696 + - 15695 + - 15701 + - 15700 + - 17472 + - 17499 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17501 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 9431 + - 9430 + - 9429 + - 5809 + - 5810 + - 5808 + - 15775 + - 15776 + - 17484 + - 17502 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17504 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 9429 + - 9430 + - 9431 + - 5619 + - 800 + - 797 + - 15774 + - 15773 + - 14570 + - 14569 + - 14571 + - 14572 + - 17505 + - 17499 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1 + - type: DeviceList + devices: + - 797 + - 800 + - 5619 + - 5765 + - 5766 + - 5746 + - 5747 + - 5748 + - 5757 + - 5758 + - 5759 + - 5760 + - 5749 + - 5750 + - 5753 + - 5754 + - 5755 + - 5756 + - 5628 + - 5627 + - 5626 + - 5768 + - 5767 + - 5789 + - 5788 + - 5787 + - 14751 + - 14750 + - 17509 + - 17510 + - 17511 + - 17469 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 1 + - type: DeviceList + devices: + - 5746 + - 5747 + - 5748 + - 5749 + - 5750 + - 5753 + - 5754 + - 5755 + - 5756 + - 5763 + - 5764 + - 5761 + - 5762 + - 2774 + - 14225 + - 17505 + - 17510 + - 17511 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 5789 + - 5788 + - 5787 + - 9048 + - 5785 + - 5784 + - 5783 + - 9014 + - 9013 + - 9049 + - 14718 + - 14720 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 8926 + - 9014 + - 9013 + - 9049 + - 14749 + - 14748 + - 17469 + - 17434 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,6.5 + parent: 1 + - type: DeviceList + devices: + - 5791 + - 5790 + - 5792 + - 17520 + - 14840 + - 14841 + - 14857 + - 14856 + - 17428 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 5719 + - 5720 + - 5721 + - 17520 + - 5792 + - 5790 + - 5807 + - 5806 + - 5805 + - 14827 + - 14826 + - 14815 + - 14816 + - 14844 + - 14842 + - 17422 + - 17524 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17525 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 5800 + - 5799 + - 5798 + - 14792 + - 14793 + - 17524 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 1 + - type: DeviceList + devices: + - 5800 + - 5799 + - 5798 + - 5807 + - 5806 + - 5805 + - 5793 + - 3584 + - 5795 + - 5796 + - 5797 + - 5801 + - 5802 + - 14772 + - 14771 + - 14807 + - 14808 + - 17529 + - 17530 + - 14761 + - 14760 + - 16358 + - 16359 + - 17428 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17532 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 5628 + - 5627 + - 5626 + - 5795 + - 5796 + - 5797 + - 3458 + - 17533 + - 14298 + - 10903 + - 14286 + - 14285 + - 14295 + - 14296 + - 17524 + - 17505 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-16.5 + parent: 1 + - type: DeviceList + devices: + - 5766 + - 5765 + - 5763 + - 5764 + - 7107 + - 7106 + - 2759 + - 2760 + - 17509 + - 17505 + - 2741 + - 2745 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 1 + - type: DeviceList + devices: + - 7106 + - 7108 + - 7109 + - 7166 + - 7173 + - 7174 + - 7175 + - 2737 + - 2740 + - 17510 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1 + - type: DeviceList + devices: + - 7170 + - 17542 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-16.5 + parent: 1 + - type: DeviceList + devices: + - 5767 + - 5768 + - 5761 + - 5762 + - 7171 + - 7172 + - 14312 + - 14254 + - 17505 + - 17509 + - 17542 + - 14319 + - 14318 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 1 + - type: DeviceList + devices: + - 7261 + - 7172 + - 7171 + - 7170 + - 7169 + - 9028 + - 9030 + - 9029 + - 11931 + - 17545 + - 17546 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 1 + - type: DeviceList + devices: + - 9029 + - 9030 + - 9028 + - 7168 + - 7167 + - 7164 + - 7165 + - 7161 + - 7162 + - 7163 + - 14389 + - 17542 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirAlarmElectronics + entities: + - uid: 9128 + components: + - type: Transform + pos: 13.596838,-24.666937 + parent: 1 +- proto: AirCanister + entities: + - uid: 6412 + components: + - type: Transform + pos: -9.5,24.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 8733 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 8734 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 9976 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10063 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10092 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10122 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10929 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 11051 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13173 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13174 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13380 + components: + - type: Transform + pos: -24.5,27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13416 + components: + - type: Transform + pos: -18.5,61.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13852 + components: + - type: Transform + pos: 18.5,54.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14000 + components: + - type: Transform + pos: 12.5,64.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14013 + components: + - type: Transform + pos: 7.5,40.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14037 + components: + - type: Transform + pos: 25.5,56.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: Airlock + entities: + - uid: 8263 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,48.5 + parent: 1 + - uid: 8389 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,44.5 + parent: 1 + - uid: 8390 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,45.5 + parent: 1 + - uid: 8595 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 9877 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-19.5 + parent: 1 + - uid: 9938 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-32.5 + parent: 1 + - uid: 10943 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-20.5 + parent: 1 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 256 + components: + - type: Transform + pos: -9.5,58.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: -8.5,58.5 + parent: 1 +- proto: AirlockArmoryLocked + entities: + - uid: 8208 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,51.5 + parent: 1 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 2239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 1 + - uid: 7103 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 1 + - uid: 7104 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 1 + - uid: 7105 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 1 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 7113 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-10.5 + parent: 1 + - uid: 7114 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-10.5 + parent: 1 +- proto: AirlockBarGlassLocked + entities: + - uid: 4040 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 +- proto: AirlockBarLocked + entities: + - uid: 9240 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,9.5 + parent: 1 +- proto: AirlockBrigGlassLocked + entities: + - uid: 8204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,50.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8207 + - type: DeviceLinkSource + linkedPorts: + 8207: + - DoorStatus: Close + - uid: 8205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,48.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8206 + - 8207 + - type: DeviceLinkSource + linkedPorts: + 8206: + - DoorStatus: Close + - uid: 8206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,48.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8205 + - type: DeviceLinkSource + linkedPorts: + 8205: + - DoorStatus: Close + - uid: 8207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,50.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8204 + - type: DeviceLinkSource + linkedPorts: + 8205: + - DoorStatus: Close + 8204: + - DoorStatus: Close + - uid: 8469 + components: + - type: Transform + pos: 1.5,63.5 + parent: 1 +- proto: AirlockBrigLocked + entities: + - uid: 8202 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,48.5 + parent: 1 + - uid: 8203 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,47.5 + parent: 1 + - uid: 8470 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,60.5 + parent: 1 +- proto: AirlockCaptainLocked + entities: + - uid: 6791 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,75.5 + parent: 1 +- proto: AirlockCargoGlassLocked + entities: + - uid: 255 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 1 + - uid: 4141 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 1 + - uid: 9354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,10.5 + parent: 1 +- proto: AirlockCargoLocked + entities: + - uid: 156 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,12.5 + parent: 1 + - uid: 9353 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,3.5 + parent: 1 +- proto: AirlockChapelLocked + entities: + - uid: 8380 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,50.5 + parent: 1 + - uid: 14049 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,53.5 + parent: 1 +- proto: AirlockChemistryLocked + entities: + - uid: 8529 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,26.5 + parent: 1 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 9113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 1 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 12404 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,71.5 + parent: 1 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 7148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,30.5 + parent: 1 +- proto: AirlockCommandGlassLocked + entities: + - uid: 6792 + components: + - type: Transform + pos: -1.5,75.5 + parent: 1 + - uid: 6793 + components: + - type: Transform + pos: 0.5,75.5 + parent: 1 + - uid: 6794 + components: + - type: Transform + pos: 5.5,75.5 + parent: 1 + - uid: 6795 + components: + - type: Transform + pos: -1.5,69.5 + parent: 1 + - uid: 6796 + components: + - type: Transform + pos: 0.5,69.5 + parent: 1 +- proto: AirlockCommandLocked + entities: + - uid: 8894 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 8756 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 9075 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 9076 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1 + - uid: 9077 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 1 + - uid: 9078 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 1 + - uid: 9112 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 9136 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 1 + - uid: 9137 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 1 + - uid: 9138 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 1 + - uid: 9139 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 1 +- proto: AirlockEngineeringLocked + entities: + - uid: 9073 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 9074 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 9977 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-16.5 + parent: 1 + - uid: 10869 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-19.5 + parent: 1 + - uid: 11076 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,1.5 + parent: 1 + - uid: 12403 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,28.5 + parent: 1 + - uid: 12820 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,52.5 + parent: 1 + - uid: 13158 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,23.5 + parent: 1 + - uid: 13299 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 1 + - uid: 13440 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,53.5 + parent: 1 +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 4167 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 4171 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-15.5 + parent: 1 +- proto: AirlockExternalGlass + entities: + - uid: 6222 + components: + - type: Transform + pos: 46.5,16.5 + parent: 1 + - uid: 6225 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 1 + - uid: 6477 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 1 + - uid: 6522 + components: + - type: Transform + pos: 35.5,1.5 + parent: 1 + - uid: 6559 + components: + - type: Transform + pos: 48.5,16.5 + parent: 1 + - uid: 6560 + components: + - type: Transform + pos: 46.5,35.5 + parent: 1 + - uid: 6561 + components: + - type: Transform + pos: 48.5,35.5 + parent: 1 + - uid: 6563 + components: + - type: Transform + pos: 50.5,36.5 + parent: 1 + - uid: 6564 + components: + - type: Transform + pos: 50.5,38.5 + parent: 1 + - uid: 6565 + components: + - type: Transform + pos: 50.5,13.5 + parent: 1 + - uid: 6566 + components: + - type: Transform + pos: 50.5,15.5 + parent: 1 + - uid: 6638 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 1 + - uid: 6639 + components: + - type: Transform + pos: -51.5,-8.5 + parent: 1 + - uid: 6640 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 1 + - uid: 6641 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 1 + - uid: 6642 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 1 + - uid: 6643 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 1 + - uid: 7176 + components: + - type: Transform + pos: -51.5,13.5 + parent: 1 + - uid: 7177 + components: + - type: Transform + pos: -51.5,15.5 + parent: 1 + - uid: 7182 + components: + - type: Transform + pos: -51.5,36.5 + parent: 1 + - uid: 7183 + components: + - type: Transform + pos: -51.5,38.5 + parent: 1 + - uid: 7419 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 1 + - uid: 7423 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 1 + - uid: 8597 + components: + - type: Transform + pos: 35.5,3.5 + parent: 1 + - uid: 8872 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 8756 + - uid: 8873 + components: + - type: Transform + pos: -2.5,0.5 + parent: 8756 + - uid: 8874 + components: + - type: Transform + pos: 1.5,0.5 + parent: 8756 + - uid: 8875 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 8756 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 7110 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 1 + - uid: 7111 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 1 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 2971 + components: + - type: Transform + pos: -44.5,2.5 + parent: 1 + - uid: 4162 + components: + - type: Transform + pos: -44.5,4.5 + parent: 1 + - uid: 7814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,28.5 + parent: 1 + - uid: 7917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,27.5 + parent: 1 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 7150 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7151 + - type: DeviceLinkSource + linkedPorts: + 7151: + - DoorStatus: DoorBolt + - uid: 7151 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7150 + - type: DeviceLinkSource + linkedPorts: + 7150: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassLocked + entities: + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,56.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10149 + - type: DeviceLinkSource + linkedPorts: + 10149: + - DoorStatus: DoorBolt + - uid: 2250 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1 + - uid: 10149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,53.5 + parent: 1 + - type: DeviceLinkSink + links: + - 932 + - type: DeviceLinkSource + linkedPorts: + 932: + - DoorStatus: DoorBolt + - uid: 10150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,56.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10151 + - type: DeviceLinkSource + linkedPorts: + 10151: + - DoorStatus: DoorBolt + - uid: 10151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,53.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10150 + - type: DeviceLinkSource + linkedPorts: + 10150: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 2061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-7.5 + parent: 1 + - uid: 6514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-14.5 + parent: 1 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,18.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,18.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 46.5,33.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 48.5,33.5 + parent: 1 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 7427 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 1 + - uid: 7631 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 1 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,15.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,13.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,15.5 + parent: 1 + - uid: 763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,13.5 + parent: 1 + - uid: 764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-7.5 + parent: 1 + - uid: 765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: -49.5,-12.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 1 + - uid: 1298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,36.5 + parent: 1 + - uid: 1299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,38.5 + parent: 1 + - uid: 2145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 1 + - uid: 2146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,38.5 + parent: 1 + - uid: 3160 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 1 + - uid: 3168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-8.5 + parent: 1 +- proto: AirlockExternalLocked + entities: + - uid: 4128 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,67.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4160 + - type: DeviceLinkSource + linkedPorts: + 4160: + - DoorStatus: DoorBolt + - uid: 4160 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,67.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4128 + - type: DeviceLinkSource + linkedPorts: + 4128: + - DoorStatus: DoorBolt + - uid: 6359 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,71.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1694 + - type: DeviceLinkSource + linkedPorts: + 1694: + - DoorStatus: DoorBolt +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 4221 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 6630 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,0.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 127 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 1881 + components: + - type: Transform + pos: -29.5,30.5 + parent: 1 + - uid: 3054 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 3055 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 3056 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 3057 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 3058 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 3059 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 3060 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 3061 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 3524 + components: + - type: Transform + pos: 13.5,41.5 + parent: 1 + - uid: 3527 + components: + - type: Transform + pos: 14.5,39.5 + parent: 1 + - uid: 3528 + components: + - type: Transform + pos: 15.5,39.5 + parent: 1 + - uid: 3990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 1 + - uid: 4161 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 5647 + components: + - type: Transform + pos: -33.5,15.5 + parent: 1 + - uid: 5649 + components: + - type: Transform + pos: -33.5,14.5 + parent: 1 + - uid: 5650 + components: + - type: Transform + pos: -33.5,13.5 + parent: 1 + - uid: 5814 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 1 + - uid: 5815 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 1 + - uid: 5816 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 1 + - uid: 6038 + components: + - type: Transform + pos: -33.5,38.5 + parent: 1 + - uid: 6039 + components: + - type: Transform + pos: -33.5,37.5 + parent: 1 + - uid: 6040 + components: + - type: Transform + pos: -33.5,36.5 + parent: 1 + - uid: 6041 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 + - uid: 6042 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - uid: 6043 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 1 + - uid: 6044 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 1 + - uid: 6045 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 1 + - uid: 6361 + components: + - type: Transform + pos: -29.5,33.5 + parent: 1 + - uid: 6887 + components: + - type: Transform + pos: 31.5,39.5 + parent: 1 + - uid: 6888 + components: + - type: Transform + pos: 30.5,39.5 + parent: 1 + - uid: 6889 + components: + - type: Transform + pos: 31.5,42.5 + parent: 1 + - uid: 6890 + components: + - type: Transform + pos: 30.5,42.5 + parent: 1 + - uid: 7879 + components: + - type: Transform + pos: 33.5,15.5 + parent: 1 + - uid: 7880 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1 + - uid: 7881 + components: + - type: Transform + pos: 33.5,13.5 + parent: 1 + - uid: 7891 + components: + - type: Transform + pos: 33.5,38.5 + parent: 1 + - uid: 7892 + components: + - type: Transform + pos: 33.5,37.5 + parent: 1 + - uid: 7893 + components: + - type: Transform + pos: 33.5,36.5 + parent: 1 + - uid: 8466 + components: + - type: Transform + pos: 3.5,53.5 + parent: 1 + - uid: 8467 + components: + - type: Transform + pos: 3.5,56.5 + parent: 1 + - uid: 9306 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 18224 + components: + - type: Transform + pos: -13.5,15.5 + parent: 1 + - uid: 18225 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 18226 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1 + - uid: 18227 + components: + - type: Transform + pos: -1.5,39.5 + parent: 1 + - uid: 18228 + components: + - type: Transform + pos: -0.5,39.5 + parent: 1 + - uid: 18229 + components: + - type: Transform + pos: 0.5,39.5 + parent: 1 + - uid: 18230 + components: + - type: Transform + pos: -17.5,38.5 + parent: 1 + - uid: 18231 + components: + - type: Transform + pos: -17.5,37.5 + parent: 1 + - uid: 18232 + components: + - type: Transform + pos: -17.5,36.5 + parent: 1 + - uid: 18233 + components: + - type: Transform + pos: 13.5,38.5 + parent: 1 + - uid: 18234 + components: + - type: Transform + pos: 13.5,37.5 + parent: 1 + - uid: 18235 + components: + - type: Transform + pos: 13.5,36.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 1771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,28.5 + parent: 1 + - uid: 1772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,27.5 + parent: 1 + - uid: 2030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,3.5 + parent: 1 + - type: Docking + dockJointId: docking21483 + dockedWith: 8865 + - uid: 2047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 1 + - type: Docking + dockJointId: docking21482 + dockedWith: 8864 + - uid: 6932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,4.5 + parent: 1 + - uid: 6933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,2.5 + parent: 1 + - uid: 8864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 8756 + - type: Docking + dockJointId: docking21482 + dockedWith: 2047 + - uid: 8865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 8756 + - type: Docking + dockJointId: docking21483 + dockedWith: 2030 + - uid: 8866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 8756 + - uid: 8867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 8756 +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 1766 + components: + - type: Transform + pos: 25.5,35.5 + parent: 1 + - uid: 2070 + components: + - type: Transform + pos: 26.5,35.5 + parent: 1 + - uid: 6930 + components: + - type: Transform + pos: 28.5,32.5 + parent: 1 + - uid: 6931 + components: + - type: Transform + pos: 28.5,33.5 + parent: 1 + - uid: 9276 + components: + - type: Transform + pos: 23.5,8.5 + parent: 1 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 9275 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,10.5 + parent: 1 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 8220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,59.5 + parent: 1 +- proto: AirlockHydroGlassLocked + entities: + - uid: 563 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 9046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 +- proto: AirlockJanitorLocked + entities: + - uid: 4158 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 1 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 612 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: AirlockMaint + entities: + - uid: 8596 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,1.5 + parent: 1 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 7112 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-15.5 + parent: 1 + - uid: 8714 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-36.5 + parent: 1 +- proto: AirlockMaintBarLocked + entities: + - uid: 9241 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,11.5 + parent: 1 +- proto: AirlockMaintCaptainLocked + entities: + - uid: 1694 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,69.5 + parent: 1 + - type: DeviceLinkSink + links: + - 6359 + - type: DeviceLinkSource + linkedPorts: + 6359: + - DoorStatus: DoorBolt +- proto: AirlockMaintCargoLocked + entities: + - uid: 9453 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,-8.5 + parent: 1 +- proto: AirlockMaintChapelLocked + entities: + - uid: 8379 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,51.5 + parent: 1 +- proto: AirlockMaintCommandLocked + entities: + - uid: 6934 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,30.5 + parent: 1 +- proto: AirlockMaintEngiLocked + entities: + - uid: 9192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 10417 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-35.5 + parent: 1 +- proto: AirlockMaintHOPLocked + entities: + - uid: 9274 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,2.5 + parent: 1 +- proto: AirlockMaintHydroLocked + entities: + - uid: 4230 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 4231 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,7.5 + parent: 1 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 8328 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-2.5 + parent: 1 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 8576 + components: + - type: MetaData + flags: PvsPriority + name: Freezer Hatch + - type: Transform + pos: 13.5,2.5 + parent: 1 +- proto: AirlockMaintLocked + entities: + - uid: 770 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,50.5 + parent: 1 + - uid: 771 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,50.5 + parent: 1 + - uid: 3920 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-10.5 + parent: 1 + - uid: 6779 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-38.5 + parent: 1 + - uid: 8308 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,45.5 + parent: 1 + - uid: 8309 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,45.5 + parent: 1 + - uid: 8310 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,50.5 + parent: 1 + - uid: 8311 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,50.5 + parent: 1 + - uid: 8312 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,39.5 + parent: 1 + - uid: 8313 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,67.5 + parent: 1 + - uid: 8314 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,51.5 + parent: 1 + - uid: 8315 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,41.5 + parent: 1 + - uid: 8316 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,48.5 + parent: 1 + - uid: 8317 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,45.5 + parent: 1 + - uid: 8318 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,45.5 + parent: 1 + - uid: 8319 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,40.5 + parent: 1 + - uid: 8320 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,39.5 + parent: 1 + - uid: 8321 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,39.5 + parent: 1 + - uid: 8322 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,35.5 + parent: 1 + - uid: 8323 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,35.5 + parent: 1 + - uid: 8324 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,44.5 + parent: 1 + - uid: 8325 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,25.5 + parent: 1 + - uid: 8326 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 8329 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-5.5 + parent: 1 + - uid: 8330 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 8331 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,0.5 + parent: 1 + - uid: 8332 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-6.5 + parent: 1 + - uid: 8333 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,1.5 + parent: 1 + - uid: 8334 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,12.5 + parent: 1 + - uid: 8335 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,7.5 + parent: 1 + - uid: 8336 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-7.5 + parent: 1 + - uid: 8337 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-20.5 + parent: 1 + - uid: 8338 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-10.5 + parent: 1 + - uid: 8339 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-10.5 + parent: 1 + - uid: 8693 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,16.5 + parent: 1 + - uid: 9891 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,65.5 + parent: 1 + - uid: 9907 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-38.5 + parent: 1 + - uid: 13347 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,17.5 + parent: 1 + - uid: 13348 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,23.5 + parent: 1 + - uid: 13367 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,23.5 + parent: 1 +- proto: AirlockMaintMedLocked + entities: + - uid: 2614 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,21.5 + parent: 1 + - uid: 8505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,27.5 + parent: 1 + - uid: 8522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,22.5 + parent: 1 +- proto: AirlockMaintRnDLocked + entities: + - uid: 8607 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,26.5 + parent: 1 + - uid: 8608 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,17.5 + parent: 1 +- proto: AirlockMaintSalvageLocked + entities: + - uid: 9371 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,21.5 + parent: 1 +- proto: AirlockMaintSecLocked + entities: + - uid: 1909 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,58.5 + parent: 1 + - uid: 8213 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,55.5 + parent: 1 + - uid: 9361 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-6.5 + parent: 1 + - uid: 9408 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-14.5 + parent: 1 + - uid: 9424 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,43.5 + parent: 1 +- proto: AirlockMaintTheatreLocked + entities: + - uid: 9247 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-5.5 + parent: 1 + - uid: 9248 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-0.5 + parent: 1 + - uid: 9249 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,5.5 + parent: 1 +- proto: AirlockMedicalGlass + entities: + - uid: 8665 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1 + - uid: 8671 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 908 + components: + - type: Transform + pos: 6.5,29.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: 7.5,29.5 + parent: 1 + - uid: 3689 + components: + - type: Transform + pos: 13.5,27.5 + parent: 1 + - uid: 3722 + components: + - type: Transform + pos: 12.5,21.5 + parent: 1 + - uid: 4208 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1 + - uid: 6405 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1 + - uid: 8501 + components: + - type: Transform + pos: 17.5,27.5 + parent: 1 + - uid: 8502 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1 + - uid: 8523 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1 + - uid: 8555 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1 +- proto: AirlockMedicalLocked + entities: + - uid: 3721 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,30.5 + parent: 1 + - uid: 4210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,32.5 + parent: 1 +- proto: AirlockMedicalScienceLocked + entities: + - uid: 8604 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,35.5 + parent: 1 + - uid: 8605 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,29.5 + parent: 1 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 9358 + components: + - type: Transform + pos: -41.5,9.5 + parent: 1 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 8621 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,23.5 + parent: 1 +- proto: AirlockSalvageLocked + entities: + - uid: 537 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,16.5 + parent: 1 +- proto: AirlockScienceGlassLocked + entities: + - uid: 8606 + components: + - type: Transform + pos: -14.5,26.5 + parent: 1 + - uid: 8609 + components: + - type: Transform + pos: -19.5,19.5 + parent: 1 + - uid: 8610 + components: + - type: Transform + pos: -19.5,18.5 + parent: 1 + - uid: 8611 + components: + - type: Transform + pos: -10.5,26.5 + parent: 1 + - uid: 8612 + components: + - type: Transform + pos: -8.5,33.5 + parent: 1 + - uid: 8613 + components: + - type: Transform + pos: -6.5,31.5 + parent: 1 + - uid: 8619 + components: + - type: Transform + pos: -8.5,22.5 + parent: 1 +- proto: AirlockScienceLocked + entities: + - uid: 8650 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,18.5 + parent: 1 + - uid: 8651 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 1 + - uid: 8652 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 1 + - uid: 8653 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,17.5 + parent: 1 +- proto: AirlockSecurityGlass + entities: + - uid: 8255 + components: + - type: Transform + pos: -29.5,47.5 + parent: 1 + - uid: 8256 + components: + - type: Transform + pos: -29.5,48.5 + parent: 1 + - uid: 8258 + components: + - type: Transform + pos: -36.5,45.5 + parent: 1 + - uid: 8259 + components: + - type: Transform + pos: -36.5,43.5 + parent: 1 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 3192 + components: + - type: Transform + pos: 39.5,48.5 + parent: 1 + - uid: 8211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,47.5 + parent: 1 + - uid: 8212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,48.5 + parent: 1 + - uid: 8214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,43.5 + parent: 1 + - uid: 8215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,43.5 + parent: 1 + - uid: 8216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,43.5 + parent: 1 + - uid: 8217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,43.5 + parent: 1 + - uid: 8218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,43.5 + parent: 1 + - uid: 8219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,55.5 + parent: 1 + - uid: 9359 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 1 + - uid: 9360 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 1 + - uid: 9407 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 1 + - uid: 9425 + components: + - type: Transform + pos: 45.5,43.5 + parent: 1 +- proto: AirlockSecurityLocked + entities: + - uid: 8209 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,47.5 + parent: 1 + - uid: 8210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,48.5 + parent: 1 +- proto: AirlockServiceCaptainLocked + entities: + - uid: 1693 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,71.5 + parent: 1 +- proto: AirlockTheatreLocked + entities: + - uid: 9244 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 9245 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,4.5 + parent: 1 + - uid: 9246 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-3.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 8751 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 1 + - uid: 8752 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 1 + - uid: 8753 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17332 + components: + - type: Transform + pos: -0.5,72.5 + parent: 1 + - uid: 17335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,78.5 + parent: 1 + - uid: 17338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,67.5 + parent: 1 + - uid: 17341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,62.5 + parent: 1 + - uid: 17344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,56.5 + parent: 1 + - uid: 17347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,57.5 + parent: 1 + - uid: 17350 + components: + - type: Transform + pos: -0.5,47.5 + parent: 1 + - uid: 17351 + components: + - type: Transform + pos: -5.5,56.5 + parent: 1 + - uid: 17354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,53.5 + parent: 1 + - uid: 17365 + components: + - type: Transform + pos: -18.5,46.5 + parent: 1 + - uid: 17372 + components: + - type: Transform + pos: -25.5,48.5 + parent: 1 + - uid: 17375 + components: + - type: Transform + pos: -48.5,37.5 + parent: 1 + - uid: 17378 + components: + - type: Transform + pos: -46.5,42.5 + parent: 1 + - uid: 17379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,14.5 + parent: 1 + - uid: 17387 + components: + - type: Transform + pos: -31.5,38.5 + parent: 1 + - uid: 17390 + components: + - type: Transform + pos: -14.5,37.5 + parent: 1 + - uid: 17391 + components: + - type: Transform + pos: -23.5,37.5 + parent: 1 + - uid: 17393 + components: + - type: Transform + pos: -6.5,37.5 + parent: 1 + - uid: 17395 + components: + - type: Transform + pos: -16.5,31.5 + parent: 1 + - uid: 17398 + components: + - type: Transform + pos: -0.5,25.5 + parent: 1 + - uid: 17401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,42.5 + parent: 1 + - uid: 17405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 1 + - uid: 17413 + components: + - type: Transform + pos: 31.5,26.5 + parent: 1 + - uid: 17414 + components: + - type: Transform + pos: 46.5,39.5 + parent: 1 + - uid: 17421 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1 + - uid: 17422 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1 + - uid: 17427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,14.5 + parent: 1 + - uid: 17428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,2.5 + parent: 1 + - uid: 17429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,14.5 + parent: 1 + - uid: 17434 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 17437 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - uid: 17438 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 17442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,24.5 + parent: 1 + - uid: 17443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,18.5 + parent: 1 + - uid: 17453 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1 + - uid: 17457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,23.5 + parent: 1 + - uid: 17458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 1 + - uid: 17459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 1 + - uid: 17462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,32.5 + parent: 1 + - uid: 17468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,14.5 + parent: 1 + - uid: 17469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 17472 + components: + - type: Transform + pos: -32.5,14.5 + parent: 1 + - uid: 17484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,2.5 + parent: 1 + - uid: 17485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,25.5 + parent: 1 + - uid: 17499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 1 + - uid: 17502 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 1 + - uid: 17505 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 17509 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 17510 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 1 + - uid: 17511 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - uid: 17524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 1 + - uid: 17529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-8.5 + parent: 1 + - uid: 17530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 1 + - uid: 17542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-23.5 + parent: 1 + - uid: 17545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 1 + - uid: 17546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 1 +- proto: AltarSpawner + entities: + - uid: 4401 + components: + - type: Transform + pos: 30.5,47.5 + parent: 1 + - uid: 17626 + components: + - type: Transform + pos: 31.5,47.5 + parent: 1 +- proto: AltarToolbox + entities: + - uid: 6993 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 1 +- proto: AmeController + entities: + - uid: 9144 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 1 +- proto: AnomalyScanner + entities: + - uid: 3447 + components: + - type: Transform + pos: -18.56863,17.749208 + parent: 1 + - uid: 4701 + components: + - type: Transform + pos: -18.171062,17.493765 + parent: 1 +- proto: APCBasic + entities: + - uid: 8819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 8756 + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-19.5 + parent: 1 + - uid: 9764 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 1 + - uid: 10145 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 1 + - uid: 10308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,7.5 + parent: 1 + - uid: 10442 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1 + - uid: 10458 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 1 + - uid: 10545 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 1 + - uid: 10595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-16.5 + parent: 1 + - uid: 10650 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 10693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 1 + - uid: 10723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-38.5 + parent: 1 + - uid: 10991 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 1 + - uid: 11083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,5.5 + parent: 1 + - uid: 11109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 1 + - uid: 11235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 1 + - uid: 11281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + - uid: 11339 + components: + - type: Transform + pos: 24.5,23.5 + parent: 1 + - uid: 11375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,75.5 + parent: 1 + - uid: 11376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,74.5 + parent: 1 + - uid: 11377 + components: + - type: Transform + pos: 6.5,75.5 + parent: 1 + - uid: 11551 + components: + - type: Transform + pos: -24.5,49.5 + parent: 1 + - uid: 11552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,50.5 + parent: 1 + - uid: 11573 + components: + - type: Transform + pos: -42.5,44.5 + parent: 1 + - uid: 11610 + components: + - type: Transform + pos: -30.5,57.5 + parent: 1 + - uid: 11862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,56.5 + parent: 1 + - uid: 12023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,31.5 + parent: 1 + - uid: 12024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,32.5 + parent: 1 + - uid: 12025 + components: + - type: Transform + pos: -17.5,26.5 + parent: 1 + - uid: 12026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,23.5 + parent: 1 + - uid: 12027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,32.5 + parent: 1 + - uid: 12325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,25.5 + parent: 1 + - uid: 12405 + components: + - type: Transform + pos: 10.5,62.5 + parent: 1 + - uid: 12406 + components: + - type: Transform + pos: 27.5,51.5 + parent: 1 + - uid: 12407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,42.5 + parent: 1 + - uid: 12408 + components: + - type: Transform + pos: 41.5,41.5 + parent: 1 + - uid: 12460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,46.5 + parent: 1 + - uid: 12862 + components: + - type: Transform + pos: 20.5,30.5 + parent: 1 + - uid: 12863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,31.5 + parent: 1 + - uid: 12864 + components: + - type: Transform + pos: 5.5,26.5 + parent: 1 + - uid: 12865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 1 + - uid: 13196 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 13197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,8.5 + parent: 1 + - uid: 13198 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 1 +- proto: APCElectronics + entities: + - uid: 9127 + components: + - type: Transform + pos: 13.367671,-24.354437 + parent: 1 +- proto: AppraisalTool + entities: + - uid: 9332 + components: + - type: Transform + pos: -42.699795,7.55936 + parent: 1 + - uid: 9389 + components: + - type: Transform + pos: -43.303722,-2.4856074 + parent: 1 +- proto: Ash + entities: + - uid: 6945 + components: + - type: Transform + pos: 31.405294,56.585308 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 609 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 1 + - uid: 1996 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 1 + - uid: 2031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,3.5 + parent: 1 + - uid: 2036 + components: + - type: Transform + pos: 51.5,-14.5 + parent: 1 + - uid: 2606 + components: + - type: Transform + pos: -47.5,2.5 + parent: 1 + - uid: 2609 + components: + - type: Transform + pos: -47.5,4.5 + parent: 1 + - uid: 6771 + components: + - type: Transform + pos: 52.5,13.5 + parent: 1 + - uid: 6772 + components: + - type: Transform + pos: 52.5,15.5 + parent: 1 + - uid: 6773 + components: + - type: Transform + pos: 48.5,18.5 + parent: 1 + - uid: 6774 + components: + - type: Transform + pos: 46.5,18.5 + parent: 1 + - uid: 6775 + components: + - type: Transform + pos: 46.5,33.5 + parent: 1 + - uid: 6776 + components: + - type: Transform + pos: 48.5,33.5 + parent: 1 + - uid: 6777 + components: + - type: Transform + pos: 52.5,36.5 + parent: 1 + - uid: 6778 + components: + - type: Transform + pos: 52.5,38.5 + parent: 1 + - uid: 7127 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 7128 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 7420 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 1 + - uid: 7633 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 1 + - uid: 7936 + components: + - type: Transform + pos: -46.5,27.5 + parent: 1 + - uid: 7937 + components: + - type: Transform + pos: -46.5,28.5 + parent: 1 + - uid: 8868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 8756 + - uid: 8869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 8756 + - uid: 8870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 8756 + - uid: 8871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 8756 + - uid: 17637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,36.5 + parent: 1 + - uid: 17638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,38.5 + parent: 1 + - uid: 17639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,15.5 + parent: 1 + - uid: 17640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,13.5 + parent: 1 + - uid: 17641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-7.5 + parent: 1 + - uid: 17642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-8.5 + parent: 1 + - uid: 17643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-9.5 + parent: 1 + - uid: 17644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-12.5 + parent: 1 + - uid: 17645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-12.5 + parent: 1 + - uid: 17646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-12.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 2706 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 1 + - uid: 2716 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 1 + - uid: 2729 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 1 + - uid: 7045 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 1 + - uid: 7046 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 1 + - uid: 7047 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1 + - uid: 7048 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 1 + - uid: 7049 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 1 + - uid: 7050 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 1 + - uid: 7051 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 1 + - uid: 7052 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 1 + - uid: 7053 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 1 + - uid: 7054 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 1 + - uid: 7055 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 1 + - uid: 7056 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 1 + - uid: 7057 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 1 + - uid: 7058 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 1 + - uid: 7059 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 1 + - uid: 7060 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 1 + - uid: 7061 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 1 + - uid: 7062 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 1 + - uid: 7063 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 1 + - uid: 7064 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 1 + - uid: 7065 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 1 + - uid: 7066 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 1 + - uid: 7067 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 1 + - uid: 7068 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 1 + - uid: 7069 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 1 + - uid: 7070 + components: + - type: Transform + pos: -2.5,-43.5 + parent: 1 + - uid: 7071 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 1 + - uid: 7072 + components: + - type: Transform + pos: -2.5,-45.5 + parent: 1 + - uid: 7073 + components: + - type: Transform + pos: -1.5,-43.5 + parent: 1 + - uid: 7074 + components: + - type: Transform + pos: -1.5,-44.5 + parent: 1 + - uid: 7075 + components: + - type: Transform + pos: -1.5,-45.5 + parent: 1 + - uid: 7076 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 1 + - uid: 7077 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 1 + - uid: 7078 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 1 + - uid: 7079 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 1 + - uid: 7080 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 1 + - uid: 7081 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 1 + - uid: 7082 + components: + - type: Transform + pos: 1.5,-43.5 + parent: 1 + - uid: 7083 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 1 + - uid: 7084 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 1 + - uid: 7085 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 1 + - uid: 7086 + components: + - type: Transform + pos: -1.5,-47.5 + parent: 1 + - uid: 7087 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 1 + - uid: 7088 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 1 + - uid: 7089 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 1 + - uid: 7090 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 1 + - uid: 7091 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 1 + - uid: 7092 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 1 + - uid: 7093 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 1 + - uid: 7876 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 1 + - uid: 7877 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1 + - uid: 7878 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1 +- proto: AtmosFixFreezerMarker + entities: + - uid: 7129 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 7130 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 7131 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 7132 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 7133 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1 + - uid: 7134 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 7135 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - uid: 7136 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 7137 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 9854 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 1 + - uid: 9855 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 1 + - uid: 9856 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 1 + - uid: 9857 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 1 + - uid: 9858 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 1 + - uid: 9859 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 1 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 7036 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 1 + - uid: 7037 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 1 + - uid: 7038 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 +- proto: AtmosFixOxygenMarker + entities: + - uid: 7039 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1 + - uid: 7040 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1 + - uid: 7041 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 7042 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 1 + - uid: 7043 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 1 + - uid: 7044 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 1 +- proto: Autolathe + entities: + - uid: 3552 + components: + - type: Transform + pos: -4.5,24.5 + parent: 1 + - uid: 4159 + components: + - type: Transform + pos: -34.5,1.5 + parent: 1 + - uid: 4214 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 +- proto: BagpipeInstrument + entities: + - uid: 8618 + components: + - type: Transform + pos: -3.6259267,26.581953 + parent: 1 +- proto: BananaPhoneInstrument + entities: + - uid: 6459 + components: + - type: Transform + pos: -15.461665,-0.34175533 + parent: 1 +- proto: BannerEngineering + entities: + - uid: 8567 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 8570 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 +- proto: BannerMedical + entities: + - uid: 8569 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 +- proto: BannerScience + entities: + - uid: 8568 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 +- proto: Barricade + entities: + - uid: 1710 + components: + - type: Transform + pos: -36.5,52.5 + parent: 1 + - uid: 2491 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1 + - uid: 4453 + components: + - type: Transform + pos: -30.5,55.5 + parent: 1 + - uid: 4455 + components: + - type: Transform + pos: -33.5,55.5 + parent: 1 + - uid: 4456 + components: + - type: Transform + pos: -35.5,55.5 + parent: 1 + - uid: 4457 + components: + - type: Transform + pos: -27.5,56.5 + parent: 1 + - uid: 4458 + components: + - type: Transform + pos: -26.5,57.5 + parent: 1 + - uid: 5554 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 + - uid: 6658 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 1 + - uid: 6659 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 1 + - uid: 6660 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 1 + - uid: 6992 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 1 + - uid: 10942 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 1 + - uid: 10954 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 1 + - uid: 13381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,27.5 + parent: 1 + - uid: 13452 + components: + - type: Transform + pos: -45.5,48.5 + parent: 1 + - uid: 13479 + components: + - type: Transform + pos: -13.5,68.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 8180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,52.5 + parent: 1 + - uid: 9642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,52.5 + parent: 1 +- proto: BarSignOfficerBeersky + entities: + - uid: 538 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + pos: -28.5,59.5 + parent: 1 + - uid: 4023 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 +- proto: BaseGasCondenser + entities: + - uid: 8563 + components: + - type: Transform + pos: 5.5,25.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: Basketball + entities: + - uid: 8261 + components: + - type: Transform + pos: -38.63891,43.594166 + parent: 1 +- proto: BassGuitarInstrument + entities: + - uid: 17737 + components: + - type: Transform + pos: 6.633194,-70.24802 + parent: 1 +- proto: Bed + entities: + - uid: 1991 + components: + - type: Transform + pos: -13.5,60.5 + parent: 1 + - uid: 2449 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 1 + - uid: 3262 + components: + - type: Transform + pos: 26.5,52.5 + parent: 1 + - uid: 3558 + components: + - type: Transform + pos: -25.5,19.5 + parent: 1 + - uid: 3666 + components: + - type: Transform + pos: 9.5,31.5 + parent: 1 + - uid: 3681 + components: + - type: Transform + pos: 9.5,30.5 + parent: 1 + - uid: 4176 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1 + - uid: 4177 + components: + - type: Transform + pos: 18.5,47.5 + parent: 1 + - uid: 4178 + components: + - type: Transform + pos: 46.5,48.5 + parent: 1 + - uid: 4317 + components: + - type: Transform + pos: -38.5,42.5 + parent: 1 + - uid: 4318 + components: + - type: Transform + pos: -38.5,46.5 + parent: 1 + - uid: 4387 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 4423 + components: + - type: Transform + pos: 14.5,34.5 + parent: 1 + - uid: 6476 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 6480 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 1 + - uid: 6482 + components: + - type: Transform + pos: -10.5,40.5 + parent: 1 + - uid: 6486 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 6487 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 + - uid: 6489 + components: + - type: Transform + pos: -4.5,40.5 + parent: 1 + - uid: 6490 + components: + - type: Transform + pos: -7.5,40.5 + parent: 1 + - uid: 6494 + components: + - type: Transform + pos: -13.5,40.5 + parent: 1 + - uid: 6506 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 6797 + components: + - type: Transform + pos: -5.5,72.5 + parent: 1 + - uid: 7024 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1 + - uid: 9326 + components: + - type: Transform + pos: -42.5,11.5 + parent: 1 + - uid: 9868 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 1 +- proto: BedsheetBlack + entities: + - uid: 7344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,52.5 + parent: 1 + - uid: 13319 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 +- proto: BedsheetBrown + entities: + - uid: 6843 + components: + - type: Transform + pos: 46.5,48.5 + parent: 1 +- proto: BedsheetCaptain + entities: + - uid: 6801 + components: + - type: Transform + pos: -5.5,72.5 + parent: 1 +- proto: BedsheetCE + entities: + - uid: 4199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 1 +- proto: BedsheetClown + entities: + - uid: 6612 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 +- proto: BedsheetCMO + entities: + - uid: 4422 + components: + - type: Transform + pos: 14.5,34.5 + parent: 1 +- proto: BedsheetCosmos + entities: + - uid: 6623 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 +- proto: BedsheetHOP + entities: + - uid: 2490 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 +- proto: BedsheetHOS + entities: + - uid: 6817 + components: + - type: Transform + pos: -13.5,60.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 9386 + components: + - type: Transform + pos: 2.5,29.5 + parent: 1 + - uid: 9484 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1 + - uid: 9486 + components: + - type: Transform + pos: 2.5,34.5 + parent: 1 +- proto: BedsheetMime + entities: + - uid: 6620 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 +- proto: BedsheetOrange + entities: + - uid: 8238 + components: + - type: Transform + pos: -13.5,40.5 + parent: 1 + - uid: 8239 + components: + - type: Transform + pos: -10.5,40.5 + parent: 1 + - uid: 8240 + components: + - type: Transform + pos: -7.5,40.5 + parent: 1 + - uid: 8241 + components: + - type: Transform + pos: -4.5,40.5 + parent: 1 +- proto: BedsheetQM + entities: + - uid: 9324 + components: + - type: Transform + pos: -42.5,11.5 + parent: 1 +- proto: BedsheetRD + entities: + - uid: 3559 + components: + - type: Transform + pos: -25.5,19.5 + parent: 1 +- proto: BedsheetSpawner + entities: + - uid: 6941 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1 + - uid: 6942 + components: + - type: Transform + pos: 18.5,47.5 + parent: 1 + - uid: 7025 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1 + - uid: 8260 + components: + - type: Transform + pos: -38.5,42.5 + parent: 1 + - uid: 9871 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 1 + - uid: 10384 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 1 +- proto: BedsheetSyndie + entities: + - uid: 4319 + components: + - type: Transform + pos: -38.5,46.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 4135 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,24.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7826 + - uid: 7923 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,22.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7826 + - uid: 9406 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-15.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9404 +- proto: BlastDoorBridgeOpen + entities: + - uid: 4282 + components: + - type: Transform + pos: -9.5,76.5 + parent: 1 + - uid: 4283 + components: + - type: Transform + pos: -9.5,77.5 + parent: 1 + - uid: 4284 + components: + - type: Transform + pos: -8.5,79.5 + parent: 1 + - uid: 4285 + components: + - type: Transform + pos: -8.5,80.5 + parent: 1 + - uid: 4286 + components: + - type: Transform + pos: -7.5,82.5 + parent: 1 + - uid: 4287 + components: + - type: Transform + pos: -6.5,83.5 + parent: 1 + - uid: 4288 + components: + - type: Transform + pos: -5.5,83.5 + parent: 1 + - uid: 4289 + components: + - type: Transform + pos: -3.5,84.5 + parent: 1 + - uid: 4290 + components: + - type: Transform + pos: -2.5,84.5 + parent: 1 + - uid: 4291 + components: + - type: Transform + pos: -1.5,84.5 + parent: 1 + - uid: 4292 + components: + - type: Transform + pos: 0.5,84.5 + parent: 1 + - uid: 4293 + components: + - type: Transform + pos: 1.5,84.5 + parent: 1 + - uid: 4294 + components: + - type: Transform + pos: 2.5,84.5 + parent: 1 + - uid: 4295 + components: + - type: Transform + pos: 5.5,83.5 + parent: 1 + - uid: 4296 + components: + - type: Transform + pos: 4.5,83.5 + parent: 1 + - uid: 4297 + components: + - type: Transform + pos: 6.5,82.5 + parent: 1 + - uid: 4298 + components: + - type: Transform + pos: 7.5,80.5 + parent: 1 + - uid: 4299 + components: + - type: Transform + pos: 7.5,79.5 + parent: 1 + - uid: 4300 + components: + - type: Transform + pos: 8.5,77.5 + parent: 1 + - uid: 4301 + components: + - type: Transform + pos: 8.5,76.5 + parent: 1 + - uid: 4302 + components: + - type: Transform + pos: 0.5,72.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4305 + - uid: 4303 + components: + - type: Transform + pos: -0.5,72.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4305 + - uid: 4304 + components: + - type: Transform + pos: -1.5,72.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4305 +- proto: BlastDoorExterior3Open + entities: + - uid: 9643 + components: + - type: Transform + pos: -13.5,39.5 + parent: 1 + - uid: 9644 + components: + - type: Transform + pos: -12.5,39.5 + parent: 1 + - uid: 9645 + components: + - type: Transform + pos: -9.5,39.5 + parent: 1 + - uid: 9646 + components: + - type: Transform + pos: -10.5,39.5 + parent: 1 + - uid: 9647 + components: + - type: Transform + pos: -6.5,39.5 + parent: 1 + - uid: 9648 + components: + - type: Transform + pos: -7.5,39.5 + parent: 1 + - uid: 9649 + components: + - type: Transform + pos: -3.5,39.5 + parent: 1 + - uid: 9650 + components: + - type: Transform + pos: -4.5,39.5 + parent: 1 + - uid: 9651 + components: + - type: Transform + pos: -3.5,48.5 + parent: 1 + - uid: 9652 + components: + - type: Transform + pos: -3.5,49.5 + parent: 1 + - uid: 9653 + components: + - type: Transform + pos: -3.5,50.5 + parent: 1 + - uid: 9654 + components: + - type: Transform + pos: -4.5,53.5 + parent: 1 + - uid: 9655 + components: + - type: Transform + pos: -4.5,54.5 + parent: 1 + - uid: 9656 + components: + - type: Transform + pos: -4.5,56.5 + parent: 1 + - uid: 9657 + components: + - type: Transform + pos: -4.5,57.5 + parent: 1 +- proto: BlastDoorOpen + entities: + - uid: 1048 + components: + - type: Transform + pos: -6.5,27.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8572 + - uid: 2129 + components: + - type: Transform + pos: -44.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2291 + - uid: 2130 + components: + - type: Transform + pos: -47.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2128 + - uid: 2607 + components: + - type: Transform + pos: -44.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2291 + - uid: 2610 + components: + - type: Transform + pos: -47.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2612 + - uid: 2813 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-26.5 + parent: 1 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - type: Airtight + airBlocked: True + - type: DeviceLinkSink + links: + - 8738 + - uid: 2814 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-27.5 + parent: 1 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - type: Airtight + airBlocked: True + - type: DeviceLinkSink + links: + - 8738 + - uid: 2821 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-28.5 + parent: 1 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - type: Airtight + airBlocked: True + - type: DeviceLinkSink + links: + - 8738 + - uid: 2822 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-29.5 + parent: 1 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - type: Airtight + airBlocked: True + - type: DeviceLinkSink + links: + - 8738 + - uid: 3050 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8749 + - uid: 3051 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8750 + - uid: 3052 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8750 + - uid: 3053 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8750 + - uid: 3066 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-38.5 + parent: 1 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - type: Airtight + airBlocked: True + - type: DeviceLinkSink + links: + - 17649 + - uid: 4205 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-23.5 + parent: 1 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - type: Airtight + airBlocked: True + - type: DeviceLinkSink + links: + - 17648 +- proto: BlastDoorWindowsOpen + entities: + - uid: 18360 + components: + - type: Transform + pos: -9.5,74.5 + parent: 1 + - uid: 18361 + components: + - type: Transform + pos: -9.5,73.5 + parent: 1 + - uid: 18362 + components: + - type: Transform + pos: -9.5,72.5 + parent: 1 +- proto: BodyBag_Folded + entities: + - uid: 6946 + components: + - type: Transform + pos: 33.33633,56.840748 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.3955739 + - 12.773826 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6947 + components: + - type: Transform + pos: 33.648705,56.61369 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 3.1239278 + - 11.75192 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: Bola + entities: + - uid: 8195 + components: + - type: Transform + pos: -16.57336,48.668964 + parent: 1 + - uid: 9421 + components: + - type: Transform + pos: 41.316933,42.55459 + parent: 1 +- proto: BookAtmosAirAlarms + entities: + - uid: 9185 + components: + - type: Transform + pos: 6.038775,-21.429781 + parent: 1 +- proto: BookAtmosDistro + entities: + - uid: 9183 + components: + - type: Transform + pos: 7.4437623,-15.369677 + parent: 1 +- proto: BookAtmosVentsMore + entities: + - uid: 9184 + components: + - type: Transform + pos: -11.074379,-15.383043 + parent: 1 +- proto: BookAtmosWaste + entities: + - uid: 9186 + components: + - type: Transform + pos: -13.559183,-33.321575 + parent: 1 +- proto: BookBase + entities: + - uid: 10101 + components: + - type: Transform + pos: -35.309326,-21.379847 + parent: 1 +- proto: BookRandom + entities: + - uid: 8374 + components: + - type: Transform + pos: 29.490294,49.539463 + parent: 1 + - uid: 8377 + components: + - type: Transform + pos: 24.466179,53.695103 + parent: 1 + - uid: 9270 + components: + - type: Transform + pos: 24.172997,11.661996 + parent: 1 + - uid: 13472 + components: + - type: Transform + pos: -17.602375,64.72776 + parent: 1 + - uid: 13477 + components: + - type: Transform + pos: -12.50277,64.65098 + parent: 1 +- proto: BooksBag + entities: + - uid: 564 + components: + - type: Transform + pos: -25.599146,3.2273636 + parent: 1 +- proto: Bookshelf + entities: + - uid: 6474 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-33.5 + parent: 1 + - uid: 9265 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,11.5 + parent: 1 + - uid: 9866 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-20.5 + parent: 1 +- proto: BookshelfFilled + entities: + - uid: 579 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,11.5 + parent: 1 + - uid: 591 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,9.5 + parent: 1 + - uid: 785 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,11.5 + parent: 1 + - uid: 790 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,11.5 + parent: 1 + - uid: 3020 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,64.5 + parent: 1 +- proto: BoozeDispenser + entities: + - uid: 4043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,7.5 + parent: 1 + - uid: 4451 + components: + - type: Transform + pos: -34.5,56.5 + parent: 1 +- proto: BorgCharger + entities: + - uid: 2602 + components: + - type: Transform + pos: -16.5,34.5 + parent: 1 + - uid: 2605 + components: + - type: Transform + pos: -17.5,34.5 + parent: 1 + - uid: 2646 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 1 +- proto: BoxBeanbag + entities: + - uid: 13331 + components: + - type: Transform + pos: -9.5083065,10.722602 + parent: 1 +- proto: BoxBodyBag + entities: + - uid: 3705 + components: + - type: Transform + pos: 18.323305,31.666723 + parent: 1 +- proto: BoxBottle + entities: + - uid: 8534 + components: + - type: Transform + pos: 6.2325087,22.657133 + parent: 1 +- proto: BoxFlashbang + entities: + - uid: 18430 + components: + - type: Transform + pos: -16.611473,48.986847 + parent: 1 +- proto: BoxFolderBlack + entities: + - uid: 1934 + components: + - type: Transform + pos: 9.125238,57.460705 + parent: 1 + - uid: 1935 + components: + - type: Transform + pos: 12.500238,57.648205 + parent: 1 + - uid: 8080 + components: + - type: Transform + pos: -0.32539943,82.85567 + parent: 1 + - uid: 8657 + components: + - type: Transform + pos: -23.526514,19.927814 + parent: 1 + - uid: 9107 + components: + - type: Transform + pos: 5.668479,-25.549896 + parent: 1 +- proto: BoxFolderBlue + entities: + - uid: 3445 + components: + - type: Transform + pos: -9.412775,27.467733 + parent: 1 + - uid: 8078 + components: + - type: Transform + pos: -0.5525799,82.65699 + parent: 1 + - uid: 8517 + components: + - type: Transform + pos: 7.566098,19.575048 + parent: 1 +- proto: BoxFolderClipboard + entities: + - uid: 9636 + components: + - type: Transform + pos: -38.639683,-6.348105 + parent: 1 +- proto: BoxFolderGrey + entities: + - uid: 3446 + components: + - type: Transform + pos: -9.554764,27.609644 + parent: 1 + - uid: 8105 + components: + - type: Transform + pos: 6.4373384,71.640045 + parent: 1 + - uid: 8658 + components: + - type: Transform + pos: -23.384525,19.700756 + parent: 1 + - uid: 9218 + components: + - type: Transform + pos: 25.298811,4.565318 + parent: 1 + - uid: 9219 + components: + - type: Transform + pos: 25.548811,4.5861516 + parent: 1 + - uid: 9337 + components: + - type: Transform + pos: -43.574795,8.288526 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 7284 + components: + - type: Transform + pos: 5.333919,63.8167 + parent: 1 + - uid: 7289 + components: + - type: Transform + pos: 3.0905108,61.46098 + parent: 1 + - uid: 8232 + components: + - type: Transform + pos: -19.604881,52.742233 + parent: 1 + - uid: 8233 + components: + - type: Transform + pos: -12.990286,56.554054 + parent: 1 + - uid: 8246 + components: + - type: Transform + pos: -13.392934,47.51383 + parent: 1 + - uid: 8344 + components: + - type: Transform + pos: -16.417713,58.622196 + parent: 1 + - uid: 8361 + components: + - type: Transform + pos: 42.90648,50.630825 + parent: 1 +- proto: BoxFolderWhite + entities: + - uid: 7285 + components: + - type: Transform + pos: 5.6462917,63.53288 + parent: 1 + - uid: 8079 + components: + - type: Transform + pos: 2.6563458,82.571846 + parent: 1 + - uid: 8493 + components: + - type: Transform + pos: 15.860265,32.633404 + parent: 1 +- proto: BoxFolderYellow + entities: + - uid: 8104 + components: + - type: Transform + pos: 4.5346994,73.39974 + parent: 1 + - uid: 9106 + components: + - type: Transform + pos: 5.460146,-25.362396 + parent: 1 + - uid: 9178 + components: + - type: Transform + pos: 13.689603,-12.275042 + parent: 1 + - uid: 9179 + components: + - type: Transform + pos: 13.41877,-12.462542 + parent: 1 + - uid: 9335 + components: + - type: Transform + pos: -43.637295,8.517693 + parent: 1 + - uid: 9336 + components: + - type: Transform + pos: -43.366463,8.267693 + parent: 1 + - uid: 18179 + components: + - type: Transform + pos: -35.620438,12.58034 + parent: 1 +- proto: BoxHandcuff + entities: + - uid: 18431 + components: + - type: Transform + pos: -16.528141,49.174347 + parent: 1 +- proto: BoxLightbulb + entities: + - uid: 18095 + components: + - type: Transform + pos: -46.66187,46.44237 + parent: 1 +- proto: BoxMousetrap + entities: + - uid: 6634 + components: + - type: Transform + pos: 12.496991,1.4858572 + parent: 1 +- proto: BoxTrashbag + entities: + - uid: 9255 + components: + - type: Transform + pos: 16.332394,-5.251412 + parent: 1 +- proto: BoxZiptie + entities: + - uid: 8194 + components: + - type: Transform + pos: -16.340641,49.341015 + parent: 1 +- proto: BrbSign + entities: + - uid: 9213 + components: + - type: Transform + pos: 25.652977,4.377818 + parent: 1 +- proto: BriefcaseBrownFilled + entities: + - uid: 7286 + components: + - type: Transform + pos: 4.538786,64.696556 + parent: 1 + - uid: 8120 + components: + - type: Transform + pos: 13.062738,57.648205 + parent: 1 +- proto: BrigTimer + entities: + - uid: 7666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,43.5 + parent: 1 + - uid: 7667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,43.5 + parent: 1 + - uid: 7668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,43.5 + parent: 1 + - uid: 7669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,43.5 + parent: 1 +- proto: Bucket + entities: + - uid: 9006 + components: + - type: Transform + pos: 8.547974,11.674014 + parent: 1 + - uid: 10965 + components: + - type: Transform + pos: 37.59104,-15.971035 + parent: 1 +- proto: ButchCleaver + entities: + - uid: 10645 + components: + - type: Transform + pos: 8.613402,-2.6485355 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 101 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: -23.5,10.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: -23.5,9.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 2002 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 1 + - uid: 2003 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 1 + - uid: 2037 + components: + - type: Transform + pos: 51.5,-14.5 + parent: 1 + - uid: 2038 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 1 + - uid: 2039 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 1 + - uid: 2052 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 1 + - uid: 2057 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 1 + - uid: 2059 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 1 + - uid: 2060 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 1 + - uid: 2618 + components: + - type: Transform + pos: 15.5,30.5 + parent: 1 + - uid: 2622 + components: + - type: Transform + pos: -42.5,1.5 + parent: 1 + - uid: 2635 + components: + - type: Transform + pos: -17.5,30.5 + parent: 1 + - uid: 2644 + components: + - type: Transform + pos: -17.5,31.5 + parent: 1 + - uid: 2654 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1 + - uid: 2657 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 3023 + components: + - type: Transform + pos: -35.5,11.5 + parent: 1 + - uid: 3679 + components: + - type: Transform + pos: 14.5,67.5 + parent: 1 + - uid: 3687 + components: + - type: Transform + pos: 13.5,18.5 + parent: 1 + - uid: 5533 + components: + - type: Transform + pos: -42.5,0.5 + parent: 1 + - uid: 6000 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 1 + - uid: 6022 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 1 + - uid: 6402 + components: + - type: Transform + pos: 13.5,67.5 + parent: 1 + - uid: 6521 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 1 + - uid: 6525 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 1 + - uid: 6546 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 1 + - uid: 6547 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 1 + - uid: 6770 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 1 + - uid: 7422 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 1 + - uid: 7652 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 1 + - uid: 7661 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 1 + - uid: 7662 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 1 + - uid: 7938 + components: + - type: Transform + pos: -42.5,24.5 + parent: 1 + - uid: 7939 + components: + - type: Transform + pos: -42.5,23.5 + parent: 1 + - uid: 7940 + components: + - type: Transform + pos: -42.5,22.5 + parent: 1 + - uid: 7941 + components: + - type: Transform + pos: -43.5,22.5 + parent: 1 + - uid: 7942 + components: + - type: Transform + pos: -44.5,22.5 + parent: 1 + - uid: 7943 + components: + - type: Transform + pos: -45.5,22.5 + parent: 1 + - uid: 7944 + components: + - type: Transform + pos: -45.5,21.5 + parent: 1 + - uid: 8009 + components: + - type: Transform + pos: -45.5,20.5 + parent: 1 + - uid: 8140 + components: + - type: Transform + pos: -43.5,24.5 + parent: 1 + - uid: 8141 + components: + - type: Transform + pos: -44.5,24.5 + parent: 1 + - uid: 8142 + components: + - type: Transform + pos: -45.5,24.5 + parent: 1 + - uid: 8143 + components: + - type: Transform + pos: -42.5,27.5 + parent: 1 + - uid: 8144 + components: + - type: Transform + pos: -43.5,27.5 + parent: 1 + - uid: 8146 + components: + - type: Transform + pos: -44.5,27.5 + parent: 1 + - uid: 8151 + components: + - type: Transform + pos: -45.5,27.5 + parent: 1 + - uid: 8152 + components: + - type: Transform + pos: -45.5,28.5 + parent: 1 + - uid: 8156 + components: + - type: Transform + pos: -42.5,26.5 + parent: 1 + - uid: 8157 + components: + - type: Transform + pos: -42.5,28.5 + parent: 1 + - uid: 8158 + components: + - type: Transform + pos: -41.5,28.5 + parent: 1 + - uid: 8159 + components: + - type: Transform + pos: -40.5,28.5 + parent: 1 + - uid: 8160 + components: + - type: Transform + pos: -39.5,28.5 + parent: 1 + - uid: 8193 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 8434 + components: + - type: Transform + pos: 12.5,18.5 + parent: 1 + - uid: 8518 + components: + - type: Transform + pos: -44.5,2.5 + parent: 1 + - uid: 8598 + components: + - type: Transform + pos: -45.5,2.5 + parent: 1 + - uid: 8599 + components: + - type: Transform + pos: -46.5,2.5 + parent: 1 + - uid: 8600 + components: + - type: Transform + pos: -45.5,4.5 + parent: 1 + - uid: 8601 + components: + - type: Transform + pos: -46.5,4.5 + parent: 1 + - uid: 8701 + components: + - type: Transform + pos: -44.5,4.5 + parent: 1 + - uid: 8830 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 8756 + - uid: 8831 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 8756 + - uid: 8832 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 8756 + - uid: 8833 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 8756 + - uid: 8834 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 8756 + - uid: 8835 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 8756 + - uid: 8836 + components: + - type: Transform + pos: 1.5,0.5 + parent: 8756 + - uid: 8837 + components: + - type: Transform + pos: 0.5,0.5 + parent: 8756 + - uid: 8838 + components: + - type: Transform + pos: 0.5,1.5 + parent: 8756 + - uid: 8839 + components: + - type: Transform + pos: 0.5,2.5 + parent: 8756 + - uid: 8840 + components: + - type: Transform + pos: 0.5,3.5 + parent: 8756 + - uid: 8841 + components: + - type: Transform + pos: -0.5,3.5 + parent: 8756 + - uid: 8842 + components: + - type: Transform + pos: -1.5,3.5 + parent: 8756 + - uid: 8843 + components: + - type: Transform + pos: -1.5,2.5 + parent: 8756 + - uid: 8844 + components: + - type: Transform + pos: -1.5,1.5 + parent: 8756 + - uid: 8845 + components: + - type: Transform + pos: -1.5,0.5 + parent: 8756 + - uid: 8846 + components: + - type: Transform + pos: -2.5,0.5 + parent: 8756 + - uid: 8847 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 8756 + - uid: 8848 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 8756 + - uid: 8849 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 8756 + - uid: 8850 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 8756 + - uid: 8851 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 8756 + - uid: 8852 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 8756 + - uid: 8853 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 8756 + - uid: 8854 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 8756 + - uid: 8855 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 8756 + - uid: 8856 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 8756 + - uid: 9620 + components: + - type: Transform + pos: 19.5,28.5 + parent: 1 + - uid: 9718 + components: + - type: Transform + pos: -9.5,46.5 + parent: 1 + - uid: 9737 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 1 + - uid: 9738 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 1 + - uid: 9739 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 1 + - uid: 9740 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 1 + - uid: 9741 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 1 + - uid: 9742 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 1 + - uid: 9743 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 1 + - uid: 9744 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 1 + - uid: 9745 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 1 + - uid: 9746 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 1 + - uid: 9747 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 1 + - uid: 9748 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 1 + - uid: 9749 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 1 + - uid: 9750 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 1 + - uid: 9751 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 1 + - uid: 9752 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 1 + - uid: 9753 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 1 + - uid: 9754 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 1 + - uid: 9755 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 1 + - uid: 9756 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 1 + - uid: 9757 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 1 + - uid: 9758 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 1 + - uid: 9759 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 1 + - uid: 9760 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 1 + - uid: 9761 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 1 + - uid: 9762 + components: + - type: Transform + pos: -24.5,-23.5 + parent: 1 + - uid: 9763 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 1 + - uid: 9776 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 1 + - uid: 9777 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 1 + - uid: 9778 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 1 + - uid: 9779 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 1 + - uid: 9780 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 1 + - uid: 9781 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 1 + - uid: 9782 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 1 + - uid: 9783 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 1 + - uid: 9784 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 1 + - uid: 9785 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 1 + - uid: 9786 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 1 + - uid: 9787 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 1 + - uid: 9788 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 1 + - uid: 9789 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 1 + - uid: 9790 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 1 + - uid: 9791 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 1 + - uid: 9792 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 1 + - uid: 9793 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 1 + - uid: 9794 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 1 + - uid: 9795 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 1 + - uid: 9796 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 1 + - uid: 9797 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 1 + - uid: 9798 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 1 + - uid: 9799 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 1 + - uid: 9800 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 1 + - uid: 9801 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 1 + - uid: 9802 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 1 + - uid: 9803 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 1 + - uid: 9804 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 1 + - uid: 9805 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 1 + - uid: 9806 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 1 + - uid: 9807 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 1 + - uid: 9808 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 1 + - uid: 9809 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 1 + - uid: 9810 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 1 + - uid: 9811 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 1 + - uid: 9812 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 1 + - uid: 9813 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 1 + - uid: 9814 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 1 + - uid: 9818 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 1 + - uid: 9819 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 1 + - uid: 9820 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 1 + - uid: 9821 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 1 + - uid: 9822 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 1 + - uid: 9823 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 1 + - uid: 9824 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 1 + - uid: 9825 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 1 + - uid: 9826 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 1 + - uid: 9827 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 1 + - uid: 9828 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 1 + - uid: 9829 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 1 + - uid: 9830 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 1 + - uid: 9831 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 1 + - uid: 9832 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 1 + - uid: 9833 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 1 + - uid: 9834 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 1 + - uid: 9835 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 1 + - uid: 9836 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 1 + - uid: 9837 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 1 + - uid: 9838 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 1 + - uid: 9839 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 1 + - uid: 9840 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 1 + - uid: 9990 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 1 + - uid: 9991 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 1 + - uid: 9992 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 1 + - uid: 9993 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 1 + - uid: 9994 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 1 + - uid: 9995 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 1 + - uid: 9996 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 1 + - uid: 9997 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 1 + - uid: 9998 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 1 + - uid: 9999 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 1 + - uid: 10000 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 1 + - uid: 10001 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 1 + - uid: 10002 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 1 + - uid: 10003 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 1 + - uid: 10004 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 1 + - uid: 10005 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 1 + - uid: 10006 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 1 + - uid: 10007 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 1 + - uid: 10008 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 1 + - uid: 10009 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 1 + - uid: 10010 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 1 + - uid: 10011 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 1 + - uid: 10012 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 1 + - uid: 10013 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 1 + - uid: 10014 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 1 + - uid: 10015 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 1 + - uid: 10016 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 1 + - uid: 10017 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 1 + - uid: 10018 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 1 + - uid: 10019 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 1 + - uid: 10020 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 1 + - uid: 10021 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 1 + - uid: 10022 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 1 + - uid: 10023 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 1 + - uid: 10024 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 1 + - uid: 10025 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 1 + - uid: 10026 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 1 + - uid: 10027 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 1 + - uid: 10028 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 1 + - uid: 10029 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 1 + - uid: 10030 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 1 + - uid: 10031 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 1 + - uid: 10032 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 1 + - uid: 10033 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 1 + - uid: 10034 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 1 + - uid: 10035 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 1 + - uid: 10036 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 1 + - uid: 10037 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 1 + - uid: 10038 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 1 + - uid: 10039 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 1 + - uid: 10040 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 1 + - uid: 10041 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 1 + - uid: 10042 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 1 + - uid: 10043 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 1 + - uid: 10044 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 1 + - uid: 10045 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 1 + - uid: 10046 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 1 + - uid: 10047 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 1 + - uid: 10049 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 1 + - uid: 10050 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 1 + - uid: 10051 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 1 + - uid: 10052 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 1 + - uid: 10053 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 1 + - uid: 10054 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 1 + - uid: 10055 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 1 + - uid: 10056 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 1 + - uid: 10057 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 1 + - uid: 10058 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 1 + - uid: 10059 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 1 + - uid: 10164 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 1 + - uid: 10165 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 1 + - uid: 10166 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 1 + - uid: 10167 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 1 + - uid: 10168 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 10169 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 10170 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 10171 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 1 + - uid: 10172 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 1 + - uid: 10173 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 1 + - uid: 10174 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 1 + - uid: 10175 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 1 + - uid: 10176 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 1 + - uid: 10177 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 1 + - uid: 10178 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 1 + - uid: 10179 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 1 + - uid: 10180 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1 + - uid: 10181 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1 + - uid: 10182 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 1 + - uid: 10183 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 1 + - uid: 10184 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 1 + - uid: 10185 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 1 + - uid: 10186 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 1 + - uid: 10187 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 1 + - uid: 10188 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 1 + - uid: 10189 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 1 + - uid: 10190 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 1 + - uid: 10191 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 1 + - uid: 10192 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1 + - uid: 10193 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 1 + - uid: 10194 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 1 + - uid: 10195 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 1 + - uid: 10196 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1 + - uid: 10197 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 1 + - uid: 10198 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 1 + - uid: 10199 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1 + - uid: 10200 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1 + - uid: 10201 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 1 + - uid: 10202 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1 + - uid: 10203 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1 + - uid: 10204 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1 + - uid: 10205 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1 + - uid: 10206 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 1 + - uid: 10207 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1 + - uid: 10208 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 1 + - uid: 10209 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 1 + - uid: 10210 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 1 + - uid: 10211 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 1 + - uid: 10212 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 1 + - uid: 10213 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 1 + - uid: 10214 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 1 + - uid: 10215 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 1 + - uid: 10216 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 1 + - uid: 10217 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 1 + - uid: 10218 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 1 + - uid: 10219 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 1 + - uid: 10220 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 1 + - uid: 10221 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 1 + - uid: 10222 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 1 + - uid: 10223 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 1 + - uid: 10224 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 1 + - uid: 10225 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1 + - uid: 10226 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 1 + - uid: 10227 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1 + - uid: 10228 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 1 + - uid: 10229 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 1 + - uid: 10230 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 1 + - uid: 10231 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 1 + - uid: 10232 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 1 + - uid: 10233 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 1 + - uid: 10234 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 1 + - uid: 10235 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 1 + - uid: 10236 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 1 + - uid: 10237 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1 + - uid: 10238 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 1 + - uid: 10239 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1 + - uid: 10240 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 1 + - uid: 10241 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 1 + - uid: 10242 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1 + - uid: 10243 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 1 + - uid: 10244 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 1 + - uid: 10245 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1 + - uid: 10246 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1 + - uid: 10247 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 1 + - uid: 10248 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 1 + - uid: 10249 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 1 + - uid: 10250 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 1 + - uid: 10251 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1 + - uid: 10252 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 1 + - uid: 10253 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 1 + - uid: 10254 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 1 + - uid: 10255 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 1 + - uid: 10256 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 1 + - uid: 10257 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 1 + - uid: 10258 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 1 + - uid: 10259 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 1 + - uid: 10261 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 1 + - uid: 10262 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 1 + - uid: 10263 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 1 + - uid: 10264 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 1 + - uid: 10265 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 1 + - uid: 10266 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 1 + - uid: 10267 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 1 + - uid: 10268 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 1 + - uid: 10269 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 1 + - uid: 10270 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 1 + - uid: 10271 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 1 + - uid: 10309 + components: + - type: Transform + pos: -41.5,7.5 + parent: 1 + - uid: 10310 + components: + - type: Transform + pos: -42.5,7.5 + parent: 1 + - uid: 10311 + components: + - type: Transform + pos: -43.5,7.5 + parent: 1 + - uid: 10312 + components: + - type: Transform + pos: -44.5,7.5 + parent: 1 + - uid: 10313 + components: + - type: Transform + pos: -44.5,8.5 + parent: 1 + - uid: 10314 + components: + - type: Transform + pos: -44.5,9.5 + parent: 1 + - uid: 10315 + components: + - type: Transform + pos: -43.5,9.5 + parent: 1 + - uid: 10316 + components: + - type: Transform + pos: -43.5,10.5 + parent: 1 + - uid: 10317 + components: + - type: Transform + pos: -43.5,11.5 + parent: 1 + - uid: 10318 + components: + - type: Transform + pos: -42.5,11.5 + parent: 1 + - uid: 10319 + components: + - type: Transform + pos: -40.5,7.5 + parent: 1 + - uid: 10320 + components: + - type: Transform + pos: -39.5,7.5 + parent: 1 + - uid: 10321 + components: + - type: Transform + pos: -38.5,7.5 + parent: 1 + - uid: 10322 + components: + - type: Transform + pos: -37.5,7.5 + parent: 1 + - uid: 10323 + components: + - type: Transform + pos: -36.5,7.5 + parent: 1 + - uid: 10324 + components: + - type: Transform + pos: -35.5,7.5 + parent: 1 + - uid: 10325 + components: + - type: Transform + pos: -34.5,7.5 + parent: 1 + - uid: 10326 + components: + - type: Transform + pos: -33.5,7.5 + parent: 1 + - uid: 10327 + components: + - type: Transform + pos: -33.5,6.5 + parent: 1 + - uid: 10328 + components: + - type: Transform + pos: -33.5,5.5 + parent: 1 + - uid: 10329 + components: + - type: Transform + pos: -33.5,4.5 + parent: 1 + - uid: 10330 + components: + - type: Transform + pos: -34.5,4.5 + parent: 1 + - uid: 10331 + components: + - type: Transform + pos: -35.5,4.5 + parent: 1 + - uid: 10332 + components: + - type: Transform + pos: -36.5,4.5 + parent: 1 + - uid: 10333 + components: + - type: Transform + pos: -37.5,4.5 + parent: 1 + - uid: 10334 + components: + - type: Transform + pos: -38.5,4.5 + parent: 1 + - uid: 10335 + components: + - type: Transform + pos: -39.5,4.5 + parent: 1 + - uid: 10336 + components: + - type: Transform + pos: -40.5,4.5 + parent: 1 + - uid: 10337 + components: + - type: Transform + pos: -40.5,5.5 + parent: 1 + - uid: 10338 + components: + - type: Transform + pos: -40.5,6.5 + parent: 1 + - uid: 10339 + components: + - type: Transform + pos: -40.5,3.5 + parent: 1 + - uid: 10340 + components: + - type: Transform + pos: -40.5,2.5 + parent: 1 + - uid: 10341 + components: + - type: Transform + pos: -40.5,1.5 + parent: 1 + - uid: 10342 + components: + - type: Transform + pos: -40.5,0.5 + parent: 1 + - uid: 10343 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 1 + - uid: 10344 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 1 + - uid: 10345 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 1 + - uid: 10346 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 1 + - uid: 10347 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 1 + - uid: 10348 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 1 + - uid: 10349 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 1 + - uid: 10350 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 1 + - uid: 10351 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 1 + - uid: 10352 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 1 + - uid: 10353 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 1 + - uid: 10354 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 1 + - uid: 10355 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 1 + - uid: 10356 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 1 + - uid: 10357 + components: + - type: Transform + pos: -38.5,2.5 + parent: 1 + - uid: 10358 + components: + - type: Transform + pos: -37.5,2.5 + parent: 1 + - uid: 10359 + components: + - type: Transform + pos: -36.5,2.5 + parent: 1 + - uid: 10360 + components: + - type: Transform + pos: -35.5,2.5 + parent: 1 + - uid: 10361 + components: + - type: Transform + pos: -34.5,2.5 + parent: 1 + - uid: 10362 + components: + - type: Transform + pos: -39.5,2.5 + parent: 1 + - uid: 10363 + components: + - type: Transform + pos: -41.5,2.5 + parent: 1 + - uid: 10364 + components: + - type: Transform + pos: -42.5,2.5 + parent: 1 + - uid: 10365 + components: + - type: Transform + pos: -43.5,2.5 + parent: 1 + - uid: 10366 + components: + - type: Transform + pos: -42.5,4.5 + parent: 1 + - uid: 10367 + components: + - type: Transform + pos: -43.5,4.5 + parent: 1 + - uid: 10368 + components: + - type: Transform + pos: -41.5,4.5 + parent: 1 + - uid: 10369 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 1 + - uid: 10370 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 1 + - uid: 10371 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 1 + - uid: 10372 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 1 + - uid: 10373 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 1 + - uid: 10374 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 1 + - uid: 10375 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 1 + - uid: 10376 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 1 + - uid: 10377 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 1 + - uid: 10378 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 1 + - uid: 10379 + components: + - type: Transform + pos: -39.5,8.5 + parent: 1 + - uid: 10380 + components: + - type: Transform + pos: -39.5,9.5 + parent: 1 + - uid: 10381 + components: + - type: Transform + pos: -39.5,10.5 + parent: 1 + - uid: 10382 + components: + - type: Transform + pos: -39.5,11.5 + parent: 1 + - uid: 10443 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1 + - uid: 10444 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 1 + - uid: 10445 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 + - uid: 10446 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 10447 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 1 + - uid: 10448 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 1 + - uid: 10449 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 1 + - uid: 10450 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 10451 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 1 + - uid: 10452 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 1 + - uid: 10453 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 1 + - uid: 10454 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 1 + - uid: 10455 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 1 + - uid: 10456 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 1 + - uid: 10457 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 1 + - uid: 10470 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 1 + - uid: 10471 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 1 + - uid: 10472 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 1 + - uid: 10473 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 1 + - uid: 10474 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 1 + - uid: 10475 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 1 + - uid: 10476 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 1 + - uid: 10477 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 1 + - uid: 10478 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 1 + - uid: 10479 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1 + - uid: 10480 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 1 + - uid: 10481 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 1 + - uid: 10482 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 1 + - uid: 10483 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 1 + - uid: 10484 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 1 + - uid: 10485 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 1 + - uid: 10486 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 1 + - uid: 10487 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 1 + - uid: 10488 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 1 + - uid: 10489 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 1 + - uid: 10490 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 1 + - uid: 10491 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 1 + - uid: 10492 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 1 + - uid: 10493 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 1 + - uid: 10494 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 1 + - uid: 10495 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 1 + - uid: 10496 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 1 + - uid: 10497 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 1 + - uid: 10498 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 1 + - uid: 10499 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 1 + - uid: 10500 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 1 + - uid: 10501 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 1 + - uid: 10502 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 1 + - uid: 10503 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 1 + - uid: 10504 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 1 + - uid: 10505 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 1 + - uid: 10506 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 1 + - uid: 10507 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 1 + - uid: 10508 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 1 + - uid: 10509 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 1 + - uid: 10510 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 1 + - uid: 10511 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 1 + - uid: 10512 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 1 + - uid: 10513 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 1 + - uid: 10514 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 1 + - uid: 10515 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 1 + - uid: 10516 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 1 + - uid: 10517 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 1 + - uid: 10518 + components: + - type: Transform + pos: 12.5,-43.5 + parent: 1 + - uid: 10519 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 1 + - uid: 10520 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 1 + - uid: 10521 + components: + - type: Transform + pos: 12.5,-46.5 + parent: 1 + - uid: 10522 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 1 + - uid: 10523 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 1 + - uid: 10524 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1 + - uid: 10525 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 10526 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - uid: 10527 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1 + - uid: 10528 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1 + - uid: 10529 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1 + - uid: 10530 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 + - uid: 10531 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1 + - uid: 10532 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 1 + - uid: 10533 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 1 + - uid: 10534 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 1 + - uid: 10535 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 1 + - uid: 10536 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 1 + - uid: 10537 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 1 + - uid: 10538 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 1 + - uid: 10539 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 1 + - uid: 10540 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 1 + - uid: 10549 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 1 + - uid: 10550 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 1 + - uid: 10551 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 1 + - uid: 10552 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 1 + - uid: 10553 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 1 + - uid: 10554 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 1 + - uid: 10555 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 1 + - uid: 10556 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 1 + - uid: 10557 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 1 + - uid: 10558 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1 + - uid: 10559 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - uid: 10560 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1 + - uid: 10561 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 1 + - uid: 10562 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 1 + - uid: 10563 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 1 + - uid: 10564 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 1 + - uid: 10565 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 1 + - uid: 10566 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 1 + - uid: 10567 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 1 + - uid: 10568 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1 + - uid: 10569 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 1 + - uid: 10570 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 1 + - uid: 10571 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 1 + - uid: 10572 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 1 + - uid: 10573 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 10574 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 1 + - uid: 10575 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 1 + - uid: 10576 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 1 + - uid: 10577 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1 + - uid: 10578 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - uid: 10579 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 + - uid: 10580 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 + - uid: 10581 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 10582 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1 + - uid: 10583 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 1 + - uid: 10584 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 1 + - uid: 10585 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 1 + - uid: 10586 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 1 + - uid: 10587 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 1 + - uid: 10588 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 1 + - uid: 10589 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 1 + - uid: 10590 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 1 + - uid: 10591 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 1 + - uid: 10592 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 1 + - uid: 10593 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 1 + - uid: 10594 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 1 + - uid: 10596 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 1 + - uid: 10597 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 10598 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1 + - uid: 10599 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1 + - uid: 10600 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 10601 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 10602 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 10603 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 10604 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 10605 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 10606 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 10607 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 10608 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 10609 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 1 + - uid: 10610 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 10611 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 10612 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 10613 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - uid: 10614 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 10615 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1 + - uid: 10616 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1 + - uid: 10617 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 + - uid: 10618 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1 + - uid: 10619 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 10620 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 10621 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 10622 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 1 + - uid: 10623 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1 + - uid: 10624 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 10625 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 10626 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 10627 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 10628 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 10629 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 10630 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 10648 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 1 + - uid: 10649 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 1 + - uid: 10651 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 1 + - uid: 10652 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1 + - uid: 10653 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 1 + - uid: 10654 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 + - uid: 10655 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 1 + - uid: 10656 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 1 + - uid: 10657 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 1 + - uid: 10658 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 1 + - uid: 10659 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 1 + - uid: 10660 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 1 + - uid: 10661 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 1 + - uid: 10665 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 1 + - uid: 10666 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 1 + - uid: 10724 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 1 + - uid: 10725 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 1 + - uid: 10726 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 1 + - uid: 10727 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 1 + - uid: 10728 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 1 + - uid: 10729 + components: + - type: Transform + pos: -13.5,-39.5 + parent: 1 + - uid: 10730 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 1 + - uid: 10731 + components: + - type: Transform + pos: -13.5,-41.5 + parent: 1 + - uid: 10732 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 1 + - uid: 10733 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 1 + - uid: 10734 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 1 + - uid: 10735 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 1 + - uid: 10736 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 1 + - uid: 10737 + components: + - type: Transform + pos: -13.5,-47.5 + parent: 1 + - uid: 10738 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 1 + - uid: 10739 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 1 + - uid: 10740 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 1 + - uid: 10741 + components: + - type: Transform + pos: -9.5,-47.5 + parent: 1 + - uid: 10742 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 1 + - uid: 10743 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 1 + - uid: 10744 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 1 + - uid: 10745 + components: + - type: Transform + pos: -5.5,-47.5 + parent: 1 + - uid: 10746 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 1 + - uid: 10747 + components: + - type: Transform + pos: -3.5,-47.5 + parent: 1 + - uid: 10748 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 1 + - uid: 10749 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 1 + - uid: 10750 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 1 + - uid: 10751 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 1 + - uid: 10752 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 1 + - uid: 10753 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 1 + - uid: 10754 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 1 + - uid: 10755 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 1 + - uid: 10756 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 1 + - uid: 10757 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 1 + - uid: 10758 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 1 + - uid: 10759 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 1 + - uid: 10760 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 1 + - uid: 10761 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 1 + - uid: 10762 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 1 + - uid: 10763 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 1 + - uid: 10764 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 1 + - uid: 10765 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 1 + - uid: 10766 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 1 + - uid: 10767 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 1 + - uid: 10768 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 1 + - uid: 10769 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 1 + - uid: 10770 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 1 + - uid: 10771 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 1 + - uid: 10772 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 1 + - uid: 10773 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 1 + - uid: 10774 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 1 + - uid: 10775 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 1 + - uid: 10776 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 1 + - uid: 10777 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1 + - uid: 10778 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1 + - uid: 10779 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 10780 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 10781 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 10782 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 10783 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 10784 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 10785 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 10786 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 10787 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 10788 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 10789 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1 + - uid: 10790 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 1 + - uid: 10791 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 1 + - uid: 10792 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 1 + - uid: 10793 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 1 + - uid: 10794 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1 + - uid: 10795 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1 + - uid: 10796 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1 + - uid: 10797 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 1 + - uid: 10798 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 1 + - uid: 10799 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 1 + - uid: 10800 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 1 + - uid: 10801 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 1 + - uid: 10802 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 1 + - uid: 10803 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 1 + - uid: 10804 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 1 + - uid: 10805 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 1 + - uid: 10806 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 1 + - uid: 10807 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 1 + - uid: 10808 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 1 + - uid: 10809 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 1 + - uid: 10810 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 1 + - uid: 10811 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 1 + - uid: 10812 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 1 + - uid: 10813 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 1 + - uid: 10814 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 1 + - uid: 10815 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 1 + - uid: 10816 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 1 + - uid: 10817 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 1 + - uid: 10818 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 1 + - uid: 10819 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 1 + - uid: 10820 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 1 + - uid: 10821 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 1 + - uid: 10822 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 1 + - uid: 10823 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 1 + - uid: 10824 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 1 + - uid: 10825 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 1 + - uid: 10826 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 1 + - uid: 10827 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 1 + - uid: 10828 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 1 + - uid: 10829 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 1 + - uid: 10830 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1 + - uid: 10831 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 1 + - uid: 10832 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1 + - uid: 10833 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 1 + - uid: 10834 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - uid: 10835 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1 + - uid: 10836 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 + - uid: 10837 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 10838 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 10839 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 1 + - uid: 10840 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 10841 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 1 + - uid: 10842 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 1 + - uid: 10843 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 + - uid: 10844 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 10845 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 1 + - uid: 10846 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 1 + - uid: 10847 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 1 + - uid: 10848 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 1 + - uid: 10849 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 1 + - uid: 10850 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 1 + - uid: 10851 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 1 + - uid: 10852 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 1 + - uid: 10853 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 1 + - uid: 10854 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 1 + - uid: 10855 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 1 + - uid: 10856 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 1 + - uid: 10857 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 1 + - uid: 10858 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1 + - uid: 10859 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 1 + - uid: 10860 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 1 + - uid: 10861 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 1 + - uid: 10862 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 1 + - uid: 10863 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 1 + - uid: 10864 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 1 + - uid: 10865 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 1 + - uid: 10866 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 1 + - uid: 10867 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 1 + - uid: 10868 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 1 + - uid: 10971 + components: + - type: Transform + pos: -24.5,36.5 + parent: 1 + - uid: 10992 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 1 + - uid: 10993 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 1 + - uid: 10994 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 1 + - uid: 10995 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 1 + - uid: 10996 + components: + - type: Transform + pos: 48.5,-6.5 + parent: 1 + - uid: 10997 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 1 + - uid: 10998 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 1 + - uid: 11001 + components: + - type: Transform + pos: 49.5,-8.5 + parent: 1 + - uid: 11002 + components: + - type: Transform + pos: 49.5,-9.5 + parent: 1 + - uid: 11005 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 1 + - uid: 11006 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 1 + - uid: 11007 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 1 + - uid: 11008 + components: + - type: Transform + pos: 45.5,-9.5 + parent: 1 + - uid: 11009 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 1 + - uid: 11010 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 1 + - uid: 11011 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 1 + - uid: 11012 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 1 + - uid: 11013 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 1 + - uid: 11014 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 1 + - uid: 11015 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 1 + - uid: 11016 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 1 + - uid: 11017 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 1 + - uid: 11018 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 1 + - uid: 11019 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1 + - uid: 11020 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 1 + - uid: 11021 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 1 + - uid: 11022 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 1 + - uid: 11023 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 1 + - uid: 11024 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 1 + - uid: 11025 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 1 + - uid: 11026 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 1 + - uid: 11027 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 1 + - uid: 11028 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 1 + - uid: 11029 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 1 + - uid: 11030 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 1 + - uid: 11031 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 1 + - uid: 11032 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 1 + - uid: 11033 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 1 + - uid: 11110 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 1 + - uid: 11111 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 1 + - uid: 11112 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1 + - uid: 11113 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - uid: 11114 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 11115 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1 + - uid: 11116 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 11117 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1 + - uid: 11118 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 1 + - uid: 11119 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 11120 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 11121 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1 + - uid: 11122 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - uid: 11123 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - uid: 11124 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1 + - uid: 11125 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 11126 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 11127 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 1 + - uid: 11128 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 11129 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 + - uid: 11130 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 11131 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 11132 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 11133 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 1 + - uid: 11134 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 1 + - uid: 11135 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 1 + - uid: 11136 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 1 + - uid: 11137 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 1 + - uid: 11138 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 1 + - uid: 11139 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 1 + - uid: 11140 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 1 + - uid: 11141 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 1 + - uid: 11142 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 1 + - uid: 11143 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 1 + - uid: 11144 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 1 + - uid: 11145 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 1 + - uid: 11146 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 1 + - uid: 11147 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 1 + - uid: 11148 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 1 + - uid: 11149 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 1 + - uid: 11150 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 1 + - uid: 11151 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 1 + - uid: 11152 + components: + - type: Transform + pos: 31.5,0.5 + parent: 1 + - uid: 11153 + components: + - type: Transform + pos: 32.5,0.5 + parent: 1 + - uid: 11154 + components: + - type: Transform + pos: 33.5,0.5 + parent: 1 + - uid: 11155 + components: + - type: Transform + pos: 34.5,0.5 + parent: 1 + - uid: 11156 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 11157 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 11158 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - uid: 11159 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 1 + - uid: 11160 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 1 + - uid: 11161 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 1 + - uid: 11162 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1 + - uid: 11163 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 1 + - uid: 11164 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 1 + - uid: 11165 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 1 + - uid: 11166 + components: + - type: Transform + pos: 25.5,0.5 + parent: 1 + - uid: 11167 + components: + - type: Transform + pos: 26.5,0.5 + parent: 1 + - uid: 11168 + components: + - type: Transform + pos: 27.5,0.5 + parent: 1 + - uid: 11169 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 1 + - uid: 11170 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 1 + - uid: 11171 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 1 + - uid: 11172 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - uid: 11173 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 1 + - uid: 11174 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 1 + - uid: 11175 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 + - uid: 11176 + components: + - type: Transform + pos: 22.5,5.5 + parent: 1 + - uid: 11177 + components: + - type: Transform + pos: 23.5,5.5 + parent: 1 + - uid: 11178 + components: + - type: Transform + pos: 24.5,5.5 + parent: 1 + - uid: 11179 + components: + - type: Transform + pos: 25.5,5.5 + parent: 1 + - uid: 11180 + components: + - type: Transform + pos: 25.5,4.5 + parent: 1 + - uid: 11181 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1 + - uid: 11182 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1 + - uid: 11183 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1 + - uid: 11184 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1 + - uid: 11185 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1 + - uid: 11186 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1 + - uid: 11187 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1 + - uid: 11188 + components: + - type: Transform + pos: 21.5,4.5 + parent: 1 + - uid: 11189 + components: + - type: Transform + pos: 21.5,5.5 + parent: 1 + - uid: 11190 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 11191 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 11192 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 11193 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 + - uid: 11194 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1 + - uid: 11195 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 11196 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 11197 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 11198 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 + - uid: 11199 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 11200 + components: + - type: Transform + pos: 23.5,6.5 + parent: 1 + - uid: 11201 + components: + - type: Transform + pos: 23.5,7.5 + parent: 1 + - uid: 11202 + components: + - type: Transform + pos: 23.5,8.5 + parent: 1 + - uid: 11203 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1 + - uid: 11204 + components: + - type: Transform + pos: 23.5,10.5 + parent: 1 + - uid: 11205 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1 + - uid: 11206 + components: + - type: Transform + pos: 25.5,10.5 + parent: 1 + - uid: 11207 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1 + - uid: 11208 + components: + - type: Transform + pos: 27.5,10.5 + parent: 1 + - uid: 11209 + components: + - type: Transform + pos: 28.5,10.5 + parent: 1 + - uid: 11210 + components: + - type: Transform + pos: 29.5,10.5 + parent: 1 + - uid: 11211 + components: + - type: Transform + pos: 30.5,10.5 + parent: 1 + - uid: 11212 + components: + - type: Transform + pos: 31.5,10.5 + parent: 1 + - uid: 11213 + components: + - type: Transform + pos: 32.5,10.5 + parent: 1 + - uid: 11214 + components: + - type: Transform + pos: 32.5,9.5 + parent: 1 + - uid: 11215 + components: + - type: Transform + pos: 32.5,8.5 + parent: 1 + - uid: 11216 + components: + - type: Transform + pos: 32.5,7.5 + parent: 1 + - uid: 11218 + components: + - type: Transform + pos: 32.5,5.5 + parent: 1 + - uid: 11219 + components: + - type: Transform + pos: 32.5,4.5 + parent: 1 + - uid: 11220 + components: + - type: Transform + pos: 32.5,3.5 + parent: 1 + - uid: 11221 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1 + - uid: 11222 + components: + - type: Transform + pos: 34.5,3.5 + parent: 1 + - uid: 11223 + components: + - type: Transform + pos: 31.5,3.5 + parent: 1 + - uid: 11224 + components: + - type: Transform + pos: 30.5,3.5 + parent: 1 + - uid: 11225 + components: + - type: Transform + pos: 29.5,3.5 + parent: 1 + - uid: 11226 + components: + - type: Transform + pos: 28.5,3.5 + parent: 1 + - uid: 11227 + components: + - type: Transform + pos: 27.5,3.5 + parent: 1 + - uid: 11228 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1 + - uid: 11229 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1 + - uid: 11230 + components: + - type: Transform + pos: 26.5,4.5 + parent: 1 + - uid: 11231 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1 + - uid: 11232 + components: + - type: Transform + pos: 26.5,5.5 + parent: 1 + - uid: 11233 + components: + - type: Transform + pos: 24.5,3.5 + parent: 1 + - uid: 11234 + components: + - type: Transform + pos: 23.5,3.5 + parent: 1 + - uid: 11245 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 11246 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 11247 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1 + - uid: 11248 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1 + - uid: 11249 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - uid: 11250 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 11251 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 11252 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 11253 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 11254 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 11255 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 11256 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 11257 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 11258 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 11259 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 11260 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 11261 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 11262 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 11263 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 11264 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 11265 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 + - uid: 11266 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 11267 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 11268 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - uid: 11269 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 11270 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 11271 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 11272 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 11273 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 11274 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 11275 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 11276 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 11277 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 11278 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 11279 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 11280 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 11289 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 11290 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 11291 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 11292 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 11293 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1 + - uid: 11294 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1 + - uid: 11295 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 + - uid: 11296 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 11297 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 11298 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 11299 + components: + - type: Transform + pos: 15.5,6.5 + parent: 1 + - uid: 11300 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 + - uid: 11301 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1 + - uid: 11302 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 11303 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 11304 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 11305 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1 + - uid: 11306 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 11307 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 11308 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 11309 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 11310 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 11311 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 11312 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 11313 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 11314 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 11315 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 11316 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 11317 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 11318 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 11319 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 11320 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 11321 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 11322 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 11323 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 11324 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 11325 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 11326 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 11327 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 11328 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 11329 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 11330 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 11331 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 11332 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 11333 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 11334 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 11335 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 11336 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 11337 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 11338 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 11425 + components: + - type: Transform + pos: 6.5,75.5 + parent: 1 + - uid: 11426 + components: + - type: Transform + pos: 6.5,74.5 + parent: 1 + - uid: 11427 + components: + - type: Transform + pos: 6.5,73.5 + parent: 1 + - uid: 11428 + components: + - type: Transform + pos: 6.5,72.5 + parent: 1 + - uid: 11429 + components: + - type: Transform + pos: 6.5,71.5 + parent: 1 + - uid: 11430 + components: + - type: Transform + pos: 6.5,70.5 + parent: 1 + - uid: 11431 + components: + - type: Transform + pos: 7.5,74.5 + parent: 1 + - uid: 11432 + components: + - type: Transform + pos: 8.5,74.5 + parent: 1 + - uid: 11433 + components: + - type: Transform + pos: 8.5,73.5 + parent: 1 + - uid: 11434 + components: + - type: Transform + pos: 8.5,72.5 + parent: 1 + - uid: 11435 + components: + - type: Transform + pos: 5.5,74.5 + parent: 1 + - uid: 11436 + components: + - type: Transform + pos: 4.5,74.5 + parent: 1 + - uid: 11437 + components: + - type: Transform + pos: 3.5,74.5 + parent: 1 + - uid: 11438 + components: + - type: Transform + pos: 2.5,74.5 + parent: 1 + - uid: 11439 + components: + - type: Transform + pos: 1.5,74.5 + parent: 1 + - uid: 11440 + components: + - type: Transform + pos: 2.5,75.5 + parent: 1 + - uid: 11441 + components: + - type: Transform + pos: 3.5,75.5 + parent: 1 + - uid: 11442 + components: + - type: Transform + pos: 1.5,73.5 + parent: 1 + - uid: 11443 + components: + - type: Transform + pos: 1.5,72.5 + parent: 1 + - uid: 11444 + components: + - type: Transform + pos: 1.5,71.5 + parent: 1 + - uid: 11445 + components: + - type: Transform + pos: 1.5,70.5 + parent: 1 + - uid: 11446 + components: + - type: Transform + pos: 1.5,69.5 + parent: 1 + - uid: 11447 + components: + - type: Transform + pos: 2.5,69.5 + parent: 1 + - uid: 11448 + components: + - type: Transform + pos: 3.5,69.5 + parent: 1 + - uid: 11449 + components: + - type: Transform + pos: 4.5,69.5 + parent: 1 + - uid: 11450 + components: + - type: Transform + pos: 5.5,69.5 + parent: 1 + - uid: 11451 + components: + - type: Transform + pos: 6.5,69.5 + parent: 1 + - uid: 11452 + components: + - type: Transform + pos: 7.5,69.5 + parent: 1 + - uid: 11453 + components: + - type: Transform + pos: 8.5,69.5 + parent: 1 + - uid: 11454 + components: + - type: Transform + pos: 8.5,70.5 + parent: 1 + - uid: 11455 + components: + - type: Transform + pos: 8.5,71.5 + parent: 1 + - uid: 11456 + components: + - type: Transform + pos: 8.5,68.5 + parent: 1 + - uid: 11457 + components: + - type: Transform + pos: 9.5,68.5 + parent: 1 + - uid: 11458 + components: + - type: Transform + pos: 10.5,68.5 + parent: 1 + - uid: 11459 + components: + - type: Transform + pos: 11.5,68.5 + parent: 1 + - uid: 11460 + components: + - type: Transform + pos: 12.5,68.5 + parent: 1 + - uid: 11461 + components: + - type: Transform + pos: 12.5,69.5 + parent: 1 + - uid: 11462 + components: + - type: Transform + pos: 12.5,70.5 + parent: 1 + - uid: 11463 + components: + - type: Transform + pos: 12.5,67.5 + parent: 1 + - uid: 11464 + components: + - type: Transform + pos: 12.5,66.5 + parent: 1 + - uid: 11465 + components: + - type: Transform + pos: 7.5,68.5 + parent: 1 + - uid: 11466 + components: + - type: Transform + pos: 6.5,68.5 + parent: 1 + - uid: 11467 + components: + - type: Transform + pos: 5.5,68.5 + parent: 1 + - uid: 11468 + components: + - type: Transform + pos: 4.5,68.5 + parent: 1 + - uid: 11469 + components: + - type: Transform + pos: 3.5,68.5 + parent: 1 + - uid: 11470 + components: + - type: Transform + pos: 2.5,68.5 + parent: 1 + - uid: 11471 + components: + - type: Transform + pos: 1.5,68.5 + parent: 1 + - uid: 11472 + components: + - type: Transform + pos: 0.5,68.5 + parent: 1 + - uid: 11473 + components: + - type: Transform + pos: -0.5,68.5 + parent: 1 + - uid: 11474 + components: + - type: Transform + pos: -1.5,68.5 + parent: 1 + - uid: 11475 + components: + - type: Transform + pos: -1.5,69.5 + parent: 1 + - uid: 11476 + components: + - type: Transform + pos: -1.5,70.5 + parent: 1 + - uid: 11477 + components: + - type: Transform + pos: -1.5,71.5 + parent: 1 + - uid: 11478 + components: + - type: Transform + pos: -1.5,72.5 + parent: 1 + - uid: 11479 + components: + - type: Transform + pos: -1.5,73.5 + parent: 1 + - uid: 11480 + components: + - type: Transform + pos: -1.5,74.5 + parent: 1 + - uid: 11481 + components: + - type: Transform + pos: 0.5,69.5 + parent: 1 + - uid: 11482 + components: + - type: Transform + pos: 0.5,70.5 + parent: 1 + - uid: 11483 + components: + - type: Transform + pos: 0.5,71.5 + parent: 1 + - uid: 11484 + components: + - type: Transform + pos: 0.5,72.5 + parent: 1 + - uid: 11485 + components: + - type: Transform + pos: 0.5,73.5 + parent: 1 + - uid: 11486 + components: + - type: Transform + pos: 0.5,74.5 + parent: 1 + - uid: 11487 + components: + - type: Transform + pos: -3.5,75.5 + parent: 1 + - uid: 11488 + components: + - type: Transform + pos: -3.5,76.5 + parent: 1 + - uid: 11489 + components: + - type: Transform + pos: 0.5,77.5 + parent: 1 + - uid: 11490 + components: + - type: Transform + pos: 1.5,77.5 + parent: 1 + - uid: 11491 + components: + - type: Transform + pos: 2.5,77.5 + parent: 1 + - uid: 11492 + components: + - type: Transform + pos: 3.5,77.5 + parent: 1 + - uid: 11493 + components: + - type: Transform + pos: 4.5,77.5 + parent: 1 + - uid: 11494 + components: + - type: Transform + pos: 5.5,77.5 + parent: 1 + - uid: 11495 + components: + - type: Transform + pos: -0.5,77.5 + parent: 1 + - uid: 11496 + components: + - type: Transform + pos: -1.5,77.5 + parent: 1 + - uid: 11497 + components: + - type: Transform + pos: -2.5,77.5 + parent: 1 + - uid: 11498 + components: + - type: Transform + pos: -3.5,77.5 + parent: 1 + - uid: 11499 + components: + - type: Transform + pos: 7.5,76.5 + parent: 1 + - uid: 11500 + components: + - type: Transform + pos: 6.5,77.5 + parent: 1 + - uid: 11501 + components: + - type: Transform + pos: -4.5,77.5 + parent: 1 + - uid: 11502 + components: + - type: Transform + pos: -5.5,77.5 + parent: 1 + - uid: 11503 + components: + - type: Transform + pos: -6.5,77.5 + parent: 1 + - uid: 11504 + components: + - type: Transform + pos: -7.5,77.5 + parent: 1 + - uid: 11505 + components: + - type: Transform + pos: -8.5,77.5 + parent: 1 + - uid: 11506 + components: + - type: Transform + pos: -5.5,78.5 + parent: 1 + - uid: 11507 + components: + - type: Transform + pos: -5.5,79.5 + parent: 1 + - uid: 11508 + components: + - type: Transform + pos: -5.5,80.5 + parent: 1 + - uid: 11509 + components: + - type: Transform + pos: -5.5,81.5 + parent: 1 + - uid: 11510 + components: + - type: Transform + pos: -5.5,82.5 + parent: 1 + - uid: 11511 + components: + - type: Transform + pos: 4.5,78.5 + parent: 1 + - uid: 11512 + components: + - type: Transform + pos: 4.5,79.5 + parent: 1 + - uid: 11513 + components: + - type: Transform + pos: 4.5,80.5 + parent: 1 + - uid: 11514 + components: + - type: Transform + pos: 4.5,81.5 + parent: 1 + - uid: 11515 + components: + - type: Transform + pos: 4.5,82.5 + parent: 1 + - uid: 11516 + components: + - type: Transform + pos: 3.5,81.5 + parent: 1 + - uid: 11517 + components: + - type: Transform + pos: 2.5,81.5 + parent: 1 + - uid: 11518 + components: + - type: Transform + pos: 1.5,81.5 + parent: 1 + - uid: 11519 + components: + - type: Transform + pos: 0.5,81.5 + parent: 1 + - uid: 11520 + components: + - type: Transform + pos: -0.5,81.5 + parent: 1 + - uid: 11521 + components: + - type: Transform + pos: -1.5,81.5 + parent: 1 + - uid: 11522 + components: + - type: Transform + pos: -2.5,81.5 + parent: 1 + - uid: 11523 + components: + - type: Transform + pos: -3.5,81.5 + parent: 1 + - uid: 11524 + components: + - type: Transform + pos: -4.5,81.5 + parent: 1 + - uid: 11525 + components: + - type: Transform + pos: -0.5,82.5 + parent: 1 + - uid: 11526 + components: + - type: Transform + pos: -0.5,83.5 + parent: 1 + - uid: 11527 + components: + - type: Transform + pos: -0.5,84.5 + parent: 1 + - uid: 11528 + components: + - type: Transform + pos: -1.5,84.5 + parent: 1 + - uid: 11529 + components: + - type: Transform + pos: -2.5,84.5 + parent: 1 + - uid: 11530 + components: + - type: Transform + pos: -3.5,84.5 + parent: 1 + - uid: 11531 + components: + - type: Transform + pos: 0.5,84.5 + parent: 1 + - uid: 11532 + components: + - type: Transform + pos: 1.5,84.5 + parent: 1 + - uid: 11533 + components: + - type: Transform + pos: 2.5,84.5 + parent: 1 + - uid: 11534 + components: + - type: Transform + pos: -4.5,74.5 + parent: 1 + - uid: 11535 + components: + - type: Transform + pos: -5.5,74.5 + parent: 1 + - uid: 11536 + components: + - type: Transform + pos: -6.5,74.5 + parent: 1 + - uid: 11537 + components: + - type: Transform + pos: -7.5,74.5 + parent: 1 + - uid: 11538 + components: + - type: Transform + pos: -8.5,74.5 + parent: 1 + - uid: 11539 + components: + - type: Transform + pos: -8.5,73.5 + parent: 1 + - uid: 11540 + components: + - type: Transform + pos: -8.5,72.5 + parent: 1 + - uid: 11541 + components: + - type: Transform + pos: -8.5,71.5 + parent: 1 + - uid: 11542 + components: + - type: Transform + pos: -8.5,70.5 + parent: 1 + - uid: 11543 + components: + - type: Transform + pos: -8.5,69.5 + parent: 1 + - uid: 11544 + components: + - type: Transform + pos: -9.5,69.5 + parent: 1 + - uid: 11545 + components: + - type: Transform + pos: -10.5,69.5 + parent: 1 + - uid: 11546 + components: + - type: Transform + pos: -10.5,70.5 + parent: 1 + - uid: 11547 + components: + - type: Transform + pos: -7.5,72.5 + parent: 1 + - uid: 11548 + components: + - type: Transform + pos: -6.5,72.5 + parent: 1 + - uid: 11549 + components: + - type: Transform + pos: -5.5,72.5 + parent: 1 + - uid: 11550 + components: + - type: Transform + pos: -5.5,73.5 + parent: 1 + - uid: 11611 + components: + - type: Transform + pos: -30.5,57.5 + parent: 1 + - uid: 11612 + components: + - type: Transform + pos: -30.5,56.5 + parent: 1 + - uid: 11613 + components: + - type: Transform + pos: -31.5,56.5 + parent: 1 + - uid: 11614 + components: + - type: Transform + pos: -32.5,56.5 + parent: 1 + - uid: 11615 + components: + - type: Transform + pos: -33.5,56.5 + parent: 1 + - uid: 11616 + components: + - type: Transform + pos: -34.5,56.5 + parent: 1 + - uid: 11617 + components: + - type: Transform + pos: -35.5,56.5 + parent: 1 + - uid: 11618 + components: + - type: Transform + pos: -35.5,55.5 + parent: 1 + - uid: 11619 + components: + - type: Transform + pos: -35.5,54.5 + parent: 1 + - uid: 11620 + components: + - type: Transform + pos: -35.5,53.5 + parent: 1 + - uid: 11621 + components: + - type: Transform + pos: -35.5,52.5 + parent: 1 + - uid: 11622 + components: + - type: Transform + pos: -34.5,52.5 + parent: 1 + - uid: 11623 + components: + - type: Transform + pos: -33.5,52.5 + parent: 1 + - uid: 11624 + components: + - type: Transform + pos: -32.5,52.5 + parent: 1 + - uid: 11625 + components: + - type: Transform + pos: -31.5,52.5 + parent: 1 + - uid: 11626 + components: + - type: Transform + pos: -30.5,52.5 + parent: 1 + - uid: 11627 + components: + - type: Transform + pos: -29.5,52.5 + parent: 1 + - uid: 11628 + components: + - type: Transform + pos: -28.5,52.5 + parent: 1 + - uid: 11629 + components: + - type: Transform + pos: -27.5,52.5 + parent: 1 + - uid: 11630 + components: + - type: Transform + pos: -27.5,53.5 + parent: 1 + - uid: 11631 + components: + - type: Transform + pos: -27.5,54.5 + parent: 1 + - uid: 11632 + components: + - type: Transform + pos: -27.5,55.5 + parent: 1 + - uid: 11633 + components: + - type: Transform + pos: -27.5,56.5 + parent: 1 + - uid: 11634 + components: + - type: Transform + pos: -28.5,56.5 + parent: 1 + - uid: 11635 + components: + - type: Transform + pos: -29.5,56.5 + parent: 1 + - uid: 11636 + components: + - type: Transform + pos: -27.5,57.5 + parent: 1 + - uid: 11637 + components: + - type: Transform + pos: -26.5,57.5 + parent: 1 + - uid: 11638 + components: + - type: Transform + pos: -25.5,57.5 + parent: 1 + - uid: 11639 + components: + - type: Transform + pos: -24.5,57.5 + parent: 1 + - uid: 11640 + components: + - type: Transform + pos: -24.5,56.5 + parent: 1 + - uid: 11641 + components: + - type: Transform + pos: -24.5,55.5 + parent: 1 + - uid: 11642 + components: + - type: Transform + pos: -24.5,54.5 + parent: 1 + - uid: 11643 + components: + - type: Transform + pos: -24.5,53.5 + parent: 1 + - uid: 11644 + components: + - type: Transform + pos: -24.5,52.5 + parent: 1 + - uid: 11645 + components: + - type: Transform + pos: -24.5,51.5 + parent: 1 + - uid: 11646 + components: + - type: Transform + pos: -36.5,52.5 + parent: 1 + - uid: 11647 + components: + - type: Transform + pos: -37.5,52.5 + parent: 1 + - uid: 11648 + components: + - type: Transform + pos: -38.5,52.5 + parent: 1 + - uid: 11649 + components: + - type: Transform + pos: -38.5,53.5 + parent: 1 + - uid: 11650 + components: + - type: Transform + pos: -38.5,54.5 + parent: 1 + - uid: 11651 + components: + - type: Transform + pos: -38.5,55.5 + parent: 1 + - uid: 11652 + components: + - type: Transform + pos: -42.5,44.5 + parent: 1 + - uid: 11653 + components: + - type: Transform + pos: -43.5,44.5 + parent: 1 + - uid: 11654 + components: + - type: Transform + pos: -43.5,45.5 + parent: 1 + - uid: 11655 + components: + - type: Transform + pos: -43.5,46.5 + parent: 1 + - uid: 11656 + components: + - type: Transform + pos: -43.5,47.5 + parent: 1 + - uid: 11657 + components: + - type: Transform + pos: -43.5,48.5 + parent: 1 + - uid: 11658 + components: + - type: Transform + pos: -43.5,49.5 + parent: 1 + - uid: 11659 + components: + - type: Transform + pos: -43.5,50.5 + parent: 1 + - uid: 11660 + components: + - type: Transform + pos: -43.5,51.5 + parent: 1 + - uid: 11661 + components: + - type: Transform + pos: -42.5,51.5 + parent: 1 + - uid: 11662 + components: + - type: Transform + pos: -41.5,51.5 + parent: 1 + - uid: 11663 + components: + - type: Transform + pos: -44.5,48.5 + parent: 1 + - uid: 11665 + components: + - type: Transform + pos: -46.5,48.5 + parent: 1 + - uid: 11666 + components: + - type: Transform + pos: -47.5,48.5 + parent: 1 + - uid: 11667 + components: + - type: Transform + pos: -42.5,43.5 + parent: 1 + - uid: 11668 + components: + - type: Transform + pos: -43.5,43.5 + parent: 1 + - uid: 11669 + components: + - type: Transform + pos: -44.5,43.5 + parent: 1 + - uid: 11670 + components: + - type: Transform + pos: -45.5,43.5 + parent: 1 + - uid: 11671 + components: + - type: Transform + pos: -46.5,43.5 + parent: 1 + - uid: 11672 + components: + - type: Transform + pos: -47.5,43.5 + parent: 1 + - uid: 11673 + components: + - type: Transform + pos: -48.5,43.5 + parent: 1 + - uid: 11674 + components: + - type: Transform + pos: -49.5,43.5 + parent: 1 + - uid: 11675 + components: + - type: Transform + pos: -49.5,42.5 + parent: 1 + - uid: 11676 + components: + - type: Transform + pos: -49.5,41.5 + parent: 1 + - uid: 11677 + components: + - type: Transform + pos: -49.5,40.5 + parent: 1 + - uid: 11678 + components: + - type: Transform + pos: -49.5,39.5 + parent: 1 + - uid: 11679 + components: + - type: Transform + pos: -49.5,38.5 + parent: 1 + - uid: 11680 + components: + - type: Transform + pos: -49.5,37.5 + parent: 1 + - uid: 11681 + components: + - type: Transform + pos: -49.5,36.5 + parent: 1 + - uid: 11682 + components: + - type: Transform + pos: -49.5,35.5 + parent: 1 + - uid: 11683 + components: + - type: Transform + pos: -49.5,34.5 + parent: 1 + - uid: 11684 + components: + - type: Transform + pos: -50.5,38.5 + parent: 1 + - uid: 11685 + components: + - type: Transform + pos: -51.5,38.5 + parent: 1 + - uid: 11686 + components: + - type: Transform + pos: -52.5,38.5 + parent: 1 + - uid: 11687 + components: + - type: Transform + pos: -50.5,36.5 + parent: 1 + - uid: 11688 + components: + - type: Transform + pos: -51.5,36.5 + parent: 1 + - uid: 11689 + components: + - type: Transform + pos: -52.5,36.5 + parent: 1 + - uid: 11690 + components: + - type: Transform + pos: -48.5,36.5 + parent: 1 + - uid: 11691 + components: + - type: Transform + pos: -47.5,36.5 + parent: 1 + - uid: 11692 + components: + - type: Transform + pos: -47.5,35.5 + parent: 1 + - uid: 11693 + components: + - type: Transform + pos: -47.5,34.5 + parent: 1 + - uid: 11694 + components: + - type: Transform + pos: -46.5,36.5 + parent: 1 + - uid: 11695 + components: + - type: Transform + pos: -45.5,36.5 + parent: 1 + - uid: 11696 + components: + - type: Transform + pos: -44.5,36.5 + parent: 1 + - uid: 11697 + components: + - type: Transform + pos: -43.5,36.5 + parent: 1 + - uid: 11698 + components: + - type: Transform + pos: -42.5,36.5 + parent: 1 + - uid: 11699 + components: + - type: Transform + pos: -41.5,36.5 + parent: 1 + - uid: 11700 + components: + - type: Transform + pos: -40.5,36.5 + parent: 1 + - uid: 11701 + components: + - type: Transform + pos: -39.5,36.5 + parent: 1 + - uid: 11702 + components: + - type: Transform + pos: -38.5,36.5 + parent: 1 + - uid: 11703 + components: + - type: Transform + pos: -37.5,36.5 + parent: 1 + - uid: 11704 + components: + - type: Transform + pos: -36.5,36.5 + parent: 1 + - uid: 11705 + components: + - type: Transform + pos: -35.5,36.5 + parent: 1 + - uid: 11706 + components: + - type: Transform + pos: -34.5,36.5 + parent: 1 + - uid: 11707 + components: + - type: Transform + pos: -34.5,37.5 + parent: 1 + - uid: 11708 + components: + - type: Transform + pos: -34.5,38.5 + parent: 1 + - uid: 11709 + components: + - type: Transform + pos: -35.5,38.5 + parent: 1 + - uid: 11710 + components: + - type: Transform + pos: -36.5,38.5 + parent: 1 + - uid: 11711 + components: + - type: Transform + pos: -37.5,38.5 + parent: 1 + - uid: 11712 + components: + - type: Transform + pos: -38.5,38.5 + parent: 1 + - uid: 11713 + components: + - type: Transform + pos: -39.5,38.5 + parent: 1 + - uid: 11714 + components: + - type: Transform + pos: -40.5,38.5 + parent: 1 + - uid: 11715 + components: + - type: Transform + pos: -41.5,38.5 + parent: 1 + - uid: 11716 + components: + - type: Transform + pos: -42.5,38.5 + parent: 1 + - uid: 11717 + components: + - type: Transform + pos: -42.5,39.5 + parent: 1 + - uid: 11718 + components: + - type: Transform + pos: -42.5,40.5 + parent: 1 + - uid: 11719 + components: + - type: Transform + pos: -42.5,41.5 + parent: 1 + - uid: 11720 + components: + - type: Transform + pos: -42.5,42.5 + parent: 1 + - uid: 11721 + components: + - type: Transform + pos: -33.5,38.5 + parent: 1 + - uid: 11722 + components: + - type: Transform + pos: -32.5,38.5 + parent: 1 + - uid: 11723 + components: + - type: Transform + pos: -31.5,38.5 + parent: 1 + - uid: 11724 + components: + - type: Transform + pos: -30.5,38.5 + parent: 1 + - uid: 11725 + components: + - type: Transform + pos: -29.5,38.5 + parent: 1 + - uid: 11726 + components: + - type: Transform + pos: -28.5,38.5 + parent: 1 + - uid: 11727 + components: + - type: Transform + pos: -27.5,38.5 + parent: 1 + - uid: 11728 + components: + - type: Transform + pos: -26.5,38.5 + parent: 1 + - uid: 11729 + components: + - type: Transform + pos: -25.5,38.5 + parent: 1 + - uid: 11730 + components: + - type: Transform + pos: -24.5,38.5 + parent: 1 + - uid: 11731 + components: + - type: Transform + pos: -24.5,49.5 + parent: 1 + - uid: 11732 + components: + - type: Transform + pos: -24.5,48.5 + parent: 1 + - uid: 11733 + components: + - type: Transform + pos: -24.5,47.5 + parent: 1 + - uid: 11734 + components: + - type: Transform + pos: -25.5,47.5 + parent: 1 + - uid: 11735 + components: + - type: Transform + pos: -26.5,47.5 + parent: 1 + - uid: 11736 + components: + - type: Transform + pos: -27.5,47.5 + parent: 1 + - uid: 11737 + components: + - type: Transform + pos: -28.5,47.5 + parent: 1 + - uid: 11738 + components: + - type: Transform + pos: -29.5,47.5 + parent: 1 + - uid: 11739 + components: + - type: Transform + pos: -30.5,47.5 + parent: 1 + - uid: 11740 + components: + - type: Transform + pos: -31.5,47.5 + parent: 1 + - uid: 11741 + components: + - type: Transform + pos: -32.5,47.5 + parent: 1 + - uid: 11742 + components: + - type: Transform + pos: -33.5,47.5 + parent: 1 + - uid: 11743 + components: + - type: Transform + pos: -34.5,47.5 + parent: 1 + - uid: 11744 + components: + - type: Transform + pos: -35.5,47.5 + parent: 1 + - uid: 11745 + components: + - type: Transform + pos: -35.5,48.5 + parent: 1 + - uid: 11746 + components: + - type: Transform + pos: -36.5,48.5 + parent: 1 + - uid: 11747 + components: + - type: Transform + pos: -37.5,48.5 + parent: 1 + - uid: 11748 + components: + - type: Transform + pos: -38.5,48.5 + parent: 1 + - uid: 11749 + components: + - type: Transform + pos: -32.5,48.5 + parent: 1 + - uid: 11750 + components: + - type: Transform + pos: -30.5,46.5 + parent: 1 + - uid: 11751 + components: + - type: Transform + pos: -30.5,45.5 + parent: 1 + - uid: 11752 + components: + - type: Transform + pos: -30.5,44.5 + parent: 1 + - uid: 11753 + components: + - type: Transform + pos: -30.5,43.5 + parent: 1 + - uid: 11754 + components: + - type: Transform + pos: -30.5,42.5 + parent: 1 + - uid: 11755 + components: + - type: Transform + pos: -29.5,42.5 + parent: 1 + - uid: 11756 + components: + - type: Transform + pos: -28.5,42.5 + parent: 1 + - uid: 11757 + components: + - type: Transform + pos: -27.5,42.5 + parent: 1 + - uid: 11758 + components: + - type: Transform + pos: -26.5,42.5 + parent: 1 + - uid: 11759 + components: + - type: Transform + pos: -26.5,43.5 + parent: 1 + - uid: 11760 + components: + - type: Transform + pos: -26.5,44.5 + parent: 1 + - uid: 11761 + components: + - type: Transform + pos: -30.5,41.5 + parent: 1 + - uid: 11762 + components: + - type: Transform + pos: -31.5,41.5 + parent: 1 + - uid: 11763 + components: + - type: Transform + pos: -32.5,41.5 + parent: 1 + - uid: 11764 + components: + - type: Transform + pos: -34.5,41.5 + parent: 1 + - uid: 11765 + components: + - type: Transform + pos: -35.5,41.5 + parent: 1 + - uid: 11766 + components: + - type: Transform + pos: -31.5,43.5 + parent: 1 + - uid: 11767 + components: + - type: Transform + pos: -32.5,43.5 + parent: 1 + - uid: 11768 + components: + - type: Transform + pos: -33.5,43.5 + parent: 1 + - uid: 11769 + components: + - type: Transform + pos: -34.5,43.5 + parent: 1 + - uid: 11770 + components: + - type: Transform + pos: -35.5,43.5 + parent: 1 + - uid: 11771 + components: + - type: Transform + pos: -36.5,43.5 + parent: 1 + - uid: 11772 + components: + - type: Transform + pos: -37.5,43.5 + parent: 1 + - uid: 11773 + components: + - type: Transform + pos: -38.5,43.5 + parent: 1 + - uid: 11774 + components: + - type: Transform + pos: -39.5,43.5 + parent: 1 + - uid: 11775 + components: + - type: Transform + pos: -39.5,42.5 + parent: 1 + - uid: 11776 + components: + - type: Transform + pos: -35.5,46.5 + parent: 1 + - uid: 11777 + components: + - type: Transform + pos: -35.5,45.5 + parent: 1 + - uid: 11778 + components: + - type: Transform + pos: -35.5,44.5 + parent: 1 + - uid: 11779 + components: + - type: Transform + pos: -36.5,45.5 + parent: 1 + - uid: 11780 + components: + - type: Transform + pos: -37.5,45.5 + parent: 1 + - uid: 11781 + components: + - type: Transform + pos: -38.5,45.5 + parent: 1 + - uid: 11782 + components: + - type: Transform + pos: -39.5,45.5 + parent: 1 + - uid: 11783 + components: + - type: Transform + pos: -39.5,46.5 + parent: 1 + - uid: 11784 + components: + - type: Transform + pos: -20.5,50.5 + parent: 1 + - uid: 11785 + components: + - type: Transform + pos: -19.5,50.5 + parent: 1 + - uid: 11786 + components: + - type: Transform + pos: -18.5,50.5 + parent: 1 + - uid: 11787 + components: + - type: Transform + pos: -17.5,50.5 + parent: 1 + - uid: 11788 + components: + - type: Transform + pos: -16.5,50.5 + parent: 1 + - uid: 11789 + components: + - type: Transform + pos: -16.5,51.5 + parent: 1 + - uid: 11790 + components: + - type: Transform + pos: -16.5,52.5 + parent: 1 + - uid: 11791 + components: + - type: Transform + pos: -16.5,53.5 + parent: 1 + - uid: 11792 + components: + - type: Transform + pos: -16.5,54.5 + parent: 1 + - uid: 11793 + components: + - type: Transform + pos: -16.5,55.5 + parent: 1 + - uid: 11794 + components: + - type: Transform + pos: -16.5,56.5 + parent: 1 + - uid: 11795 + components: + - type: Transform + pos: -15.5,56.5 + parent: 1 + - uid: 11796 + components: + - type: Transform + pos: -14.5,56.5 + parent: 1 + - uid: 11797 + components: + - type: Transform + pos: -13.5,56.5 + parent: 1 + - uid: 11798 + components: + - type: Transform + pos: -12.5,56.5 + parent: 1 + - uid: 11799 + components: + - type: Transform + pos: -12.5,55.5 + parent: 1 + - uid: 11800 + components: + - type: Transform + pos: -12.5,54.5 + parent: 1 + - uid: 11801 + components: + - type: Transform + pos: -12.5,53.5 + parent: 1 + - uid: 11802 + components: + - type: Transform + pos: -12.5,52.5 + parent: 1 + - uid: 11803 + components: + - type: Transform + pos: -12.5,51.5 + parent: 1 + - uid: 11804 + components: + - type: Transform + pos: -12.5,50.5 + parent: 1 + - uid: 11805 + components: + - type: Transform + pos: -12.5,49.5 + parent: 1 + - uid: 11806 + components: + - type: Transform + pos: -12.5,48.5 + parent: 1 + - uid: 11807 + components: + - type: Transform + pos: -12.5,47.5 + parent: 1 + - uid: 11808 + components: + - type: Transform + pos: -12.5,46.5 + parent: 1 + - uid: 11809 + components: + - type: Transform + pos: -12.5,45.5 + parent: 1 + - uid: 11810 + components: + - type: Transform + pos: -12.5,44.5 + parent: 1 + - uid: 11811 + components: + - type: Transform + pos: -12.5,43.5 + parent: 1 + - uid: 11812 + components: + - type: Transform + pos: -12.5,42.5 + parent: 1 + - uid: 11813 + components: + - type: Transform + pos: -12.5,41.5 + parent: 1 + - uid: 11814 + components: + - type: Transform + pos: -12.5,40.5 + parent: 1 + - uid: 11815 + components: + - type: Transform + pos: -12.5,39.5 + parent: 1 + - uid: 11816 + components: + - type: Transform + pos: -13.5,39.5 + parent: 1 + - uid: 11817 + components: + - type: Transform + pos: -13.5,44.5 + parent: 1 + - uid: 11818 + components: + - type: Transform + pos: -14.5,44.5 + parent: 1 + - uid: 11819 + components: + - type: Transform + pos: -15.5,44.5 + parent: 1 + - uid: 11820 + components: + - type: Transform + pos: -16.5,44.5 + parent: 1 + - uid: 11821 + components: + - type: Transform + pos: -17.5,44.5 + parent: 1 + - uid: 11822 + components: + - type: Transform + pos: -17.5,43.5 + parent: 1 + - uid: 11823 + components: + - type: Transform + pos: -17.5,42.5 + parent: 1 + - uid: 11824 + components: + - type: Transform + pos: -17.5,41.5 + parent: 1 + - uid: 11825 + components: + - type: Transform + pos: -17.5,40.5 + parent: 1 + - uid: 11826 + components: + - type: Transform + pos: -17.5,39.5 + parent: 1 + - uid: 11831 + components: + - type: Transform + pos: -18.5,44.5 + parent: 1 + - uid: 11832 + components: + - type: Transform + pos: -19.5,44.5 + parent: 1 + - uid: 11833 + components: + - type: Transform + pos: -19.5,45.5 + parent: 1 + - uid: 11834 + components: + - type: Transform + pos: -19.5,46.5 + parent: 1 + - uid: 11835 + components: + - type: Transform + pos: -19.5,47.5 + parent: 1 + - uid: 11836 + components: + - type: Transform + pos: -19.5,48.5 + parent: 1 + - uid: 11837 + components: + - type: Transform + pos: -19.5,49.5 + parent: 1 + - uid: 11838 + components: + - type: Transform + pos: -19.5,50.5 + parent: 1 + - uid: 11864 + components: + - type: Transform + pos: -7.5,56.5 + parent: 1 + - uid: 11865 + components: + - type: Transform + pos: -8.5,56.5 + parent: 1 + - uid: 11866 + components: + - type: Transform + pos: -9.5,56.5 + parent: 1 + - uid: 11867 + components: + - type: Transform + pos: -10.5,56.5 + parent: 1 + - uid: 11868 + components: + - type: Transform + pos: -10.5,57.5 + parent: 1 + - uid: 11869 + components: + - type: Transform + pos: -10.5,58.5 + parent: 1 + - uid: 11870 + components: + - type: Transform + pos: -10.5,59.5 + parent: 1 + - uid: 11871 + components: + - type: Transform + pos: -11.5,59.5 + parent: 1 + - uid: 11872 + components: + - type: Transform + pos: -12.5,59.5 + parent: 1 + - uid: 11873 + components: + - type: Transform + pos: -13.5,59.5 + parent: 1 + - uid: 11874 + components: + - type: Transform + pos: -14.5,59.5 + parent: 1 + - uid: 11875 + components: + - type: Transform + pos: -15.5,59.5 + parent: 1 + - uid: 11876 + components: + - type: Transform + pos: -16.5,59.5 + parent: 1 + - uid: 11877 + components: + - type: Transform + pos: -9.5,59.5 + parent: 1 + - uid: 11878 + components: + - type: Transform + pos: -8.5,59.5 + parent: 1 + - uid: 11879 + components: + - type: Transform + pos: -7.5,59.5 + parent: 1 + - uid: 11880 + components: + - type: Transform + pos: -6.5,59.5 + parent: 1 + - uid: 11881 + components: + - type: Transform + pos: -5.5,59.5 + parent: 1 + - uid: 11882 + components: + - type: Transform + pos: -5.5,60.5 + parent: 1 + - uid: 11883 + components: + - type: Transform + pos: -5.5,61.5 + parent: 1 + - uid: 11884 + components: + - type: Transform + pos: -5.5,62.5 + parent: 1 + - uid: 11885 + components: + - type: Transform + pos: -5.5,63.5 + parent: 1 + - uid: 11886 + components: + - type: Transform + pos: -5.5,64.5 + parent: 1 + - uid: 11887 + components: + - type: Transform + pos: -6.5,64.5 + parent: 1 + - uid: 11888 + components: + - type: Transform + pos: -7.5,64.5 + parent: 1 + - uid: 11889 + components: + - type: Transform + pos: -8.5,64.5 + parent: 1 + - uid: 11890 + components: + - type: Transform + pos: -8.5,63.5 + parent: 1 + - uid: 11891 + components: + - type: Transform + pos: -8.5,62.5 + parent: 1 + - uid: 11892 + components: + - type: Transform + pos: -8.5,61.5 + parent: 1 + - uid: 11893 + components: + - type: Transform + pos: -9.5,61.5 + parent: 1 + - uid: 11894 + components: + - type: Transform + pos: -7.5,60.5 + parent: 1 + - uid: 11895 + components: + - type: Transform + pos: -6.5,56.5 + parent: 1 + - uid: 11896 + components: + - type: Transform + pos: -5.5,56.5 + parent: 1 + - uid: 11897 + components: + - type: Transform + pos: -5.5,55.5 + parent: 1 + - uid: 11898 + components: + - type: Transform + pos: -5.5,54.5 + parent: 1 + - uid: 11899 + components: + - type: Transform + pos: -5.5,53.5 + parent: 1 + - uid: 11900 + components: + - type: Transform + pos: -5.5,52.5 + parent: 1 + - uid: 11901 + components: + - type: Transform + pos: -4.5,54.5 + parent: 1 + - uid: 11902 + components: + - type: Transform + pos: -3.5,54.5 + parent: 1 + - uid: 11903 + components: + - type: Transform + pos: -2.5,54.5 + parent: 1 + - uid: 11904 + components: + - type: Transform + pos: -1.5,54.5 + parent: 1 + - uid: 11905 + components: + - type: Transform + pos: -3.5,53.5 + parent: 1 + - uid: 11906 + components: + - type: Transform + pos: -3.5,52.5 + parent: 1 + - uid: 11907 + components: + - type: Transform + pos: -3.5,55.5 + parent: 1 + - uid: 11908 + components: + - type: Transform + pos: -3.5,56.5 + parent: 1 + - uid: 11909 + components: + - type: Transform + pos: -1.5,53.5 + parent: 1 + - uid: 11910 + components: + - type: Transform + pos: -1.5,52.5 + parent: 1 + - uid: 11911 + components: + - type: Transform + pos: -1.5,51.5 + parent: 1 + - uid: 11912 + components: + - type: Transform + pos: -1.5,50.5 + parent: 1 + - uid: 11913 + components: + - type: Transform + pos: -1.5,49.5 + parent: 1 + - uid: 11914 + components: + - type: Transform + pos: -1.5,48.5 + parent: 1 + - uid: 11915 + components: + - type: Transform + pos: -2.5,48.5 + parent: 1 + - uid: 11916 + components: + - type: Transform + pos: -3.5,48.5 + parent: 1 + - uid: 11917 + components: + - type: Transform + pos: -4.5,48.5 + parent: 1 + - uid: 11918 + components: + - type: Transform + pos: -5.5,48.5 + parent: 1 + - uid: 11919 + components: + - type: Transform + pos: -6.5,48.5 + parent: 1 + - uid: 11920 + components: + - type: Transform + pos: -7.5,48.5 + parent: 1 + - uid: 11921 + components: + - type: Transform + pos: -8.5,48.5 + parent: 1 + - uid: 11922 + components: + - type: Transform + pos: -9.5,48.5 + parent: 1 + - uid: 11923 + components: + - type: Transform + pos: -9.5,49.5 + parent: 1 + - uid: 11924 + components: + - type: Transform + pos: -9.5,50.5 + parent: 1 + - uid: 11925 + components: + - type: Transform + pos: -9.5,51.5 + parent: 1 + - uid: 11926 + components: + - type: Transform + pos: -9.5,52.5 + parent: 1 + - uid: 11927 + components: + - type: Transform + pos: -9.5,53.5 + parent: 1 + - uid: 11928 + components: + - type: Transform + pos: -9.5,54.5 + parent: 1 + - uid: 11929 + components: + - type: Transform + pos: -9.5,55.5 + parent: 1 + - uid: 11930 + components: + - type: Transform + pos: -9.5,47.5 + parent: 1 + - uid: 11932 + components: + - type: Transform + pos: -9.5,45.5 + parent: 1 + - uid: 11933 + components: + - type: Transform + pos: -9.5,44.5 + parent: 1 + - uid: 11934 + components: + - type: Transform + pos: -9.5,43.5 + parent: 1 + - uid: 11935 + components: + - type: Transform + pos: -9.5,42.5 + parent: 1 + - uid: 11936 + components: + - type: Transform + pos: -9.5,41.5 + parent: 1 + - uid: 11937 + components: + - type: Transform + pos: -9.5,40.5 + parent: 1 + - uid: 11938 + components: + - type: Transform + pos: -9.5,39.5 + parent: 1 + - uid: 11939 + components: + - type: Transform + pos: -10.5,39.5 + parent: 1 + - uid: 11940 + components: + - type: Transform + pos: -6.5,43.5 + parent: 1 + - uid: 11941 + components: + - type: Transform + pos: -6.5,44.5 + parent: 1 + - uid: 11942 + components: + - type: Transform + pos: -6.5,45.5 + parent: 1 + - uid: 11943 + components: + - type: Transform + pos: -6.5,46.5 + parent: 1 + - uid: 11944 + components: + - type: Transform + pos: -6.5,47.5 + parent: 1 + - uid: 11945 + components: + - type: Transform + pos: -6.5,42.5 + parent: 1 + - uid: 11946 + components: + - type: Transform + pos: -6.5,41.5 + parent: 1 + - uid: 11947 + components: + - type: Transform + pos: -6.5,40.5 + parent: 1 + - uid: 11948 + components: + - type: Transform + pos: -6.5,39.5 + parent: 1 + - uid: 11949 + components: + - type: Transform + pos: -7.5,39.5 + parent: 1 + - uid: 11950 + components: + - type: Transform + pos: -3.5,39.5 + parent: 1 + - uid: 11951 + components: + - type: Transform + pos: -3.5,40.5 + parent: 1 + - uid: 11952 + components: + - type: Transform + pos: -3.5,41.5 + parent: 1 + - uid: 11953 + components: + - type: Transform + pos: -3.5,42.5 + parent: 1 + - uid: 11954 + components: + - type: Transform + pos: -3.5,43.5 + parent: 1 + - uid: 11955 + components: + - type: Transform + pos: -3.5,44.5 + parent: 1 + - uid: 11956 + components: + - type: Transform + pos: -3.5,45.5 + parent: 1 + - uid: 11957 + components: + - type: Transform + pos: -3.5,46.5 + parent: 1 + - uid: 11958 + components: + - type: Transform + pos: -3.5,47.5 + parent: 1 + - uid: 11959 + components: + - type: Transform + pos: -4.5,47.5 + parent: 1 + - uid: 11960 + components: + - type: Transform + pos: -23.5,47.5 + parent: 1 + - uid: 11961 + components: + - type: Transform + pos: -22.5,47.5 + parent: 1 + - uid: 11962 + components: + - type: Transform + pos: -22.5,48.5 + parent: 1 + - uid: 11963 + components: + - type: Transform + pos: -21.5,52.5 + parent: 1 + - uid: 11964 + components: + - type: Transform + pos: -21.5,51.5 + parent: 1 + - uid: 11965 + components: + - type: Transform + pos: -21.5,53.5 + parent: 1 + - uid: 11966 + components: + - type: Transform + pos: -21.5,54.5 + parent: 1 + - uid: 11967 + components: + - type: Transform + pos: -21.5,55.5 + parent: 1 + - uid: 11968 + components: + - type: Transform + pos: -21.5,56.5 + parent: 1 + - uid: 11969 + components: + - type: Transform + pos: -21.5,57.5 + parent: 1 + - uid: 11970 + components: + - type: Transform + pos: -20.5,57.5 + parent: 1 + - uid: 11971 + components: + - type: Transform + pos: -19.5,57.5 + parent: 1 + - uid: 11972 + components: + - type: Transform + pos: -19.5,58.5 + parent: 1 + - uid: 11973 + components: + - type: Transform + pos: -19.5,59.5 + parent: 1 + - uid: 11974 + components: + - type: Transform + pos: -19.5,60.5 + parent: 1 + - uid: 11975 + components: + - type: Transform + pos: -19.5,61.5 + parent: 1 + - uid: 11976 + components: + - type: Transform + pos: -19.5,62.5 + parent: 1 + - uid: 11977 + components: + - type: Transform + pos: -18.5,62.5 + parent: 1 + - uid: 11978 + components: + - type: Transform + pos: -17.5,62.5 + parent: 1 + - uid: 11979 + components: + - type: Transform + pos: -16.5,62.5 + parent: 1 + - uid: 11980 + components: + - type: Transform + pos: -15.5,62.5 + parent: 1 + - uid: 11981 + components: + - type: Transform + pos: -14.5,62.5 + parent: 1 + - uid: 11982 + components: + - type: Transform + pos: -13.5,62.5 + parent: 1 + - uid: 11983 + components: + - type: Transform + pos: -13.5,63.5 + parent: 1 + - uid: 11984 + components: + - type: Transform + pos: -13.5,64.5 + parent: 1 + - uid: 11985 + components: + - type: Transform + pos: -13.5,65.5 + parent: 1 + - uid: 11986 + components: + - type: Transform + pos: -13.5,66.5 + parent: 1 + - uid: 11987 + components: + - type: Transform + pos: -13.5,67.5 + parent: 1 + - uid: 11988 + components: + - type: Transform + pos: -13.5,68.5 + parent: 1 + - uid: 11989 + components: + - type: Transform + pos: -13.5,69.5 + parent: 1 + - uid: 11990 + components: + - type: Transform + pos: -13.5,70.5 + parent: 1 + - uid: 11991 + components: + - type: Transform + pos: -12.5,67.5 + parent: 1 + - uid: 11992 + components: + - type: Transform + pos: -11.5,67.5 + parent: 1 + - uid: 11993 + components: + - type: Transform + pos: -10.5,67.5 + parent: 1 + - uid: 11994 + components: + - type: Transform + pos: -9.5,67.5 + parent: 1 + - uid: 11995 + components: + - type: Transform + pos: -8.5,67.5 + parent: 1 + - uid: 11996 + components: + - type: Transform + pos: -7.5,67.5 + parent: 1 + - uid: 11997 + components: + - type: Transform + pos: -6.5,67.5 + parent: 1 + - uid: 11998 + components: + - type: Transform + pos: -5.5,67.5 + parent: 1 + - uid: 11999 + components: + - type: Transform + pos: -4.5,67.5 + parent: 1 + - uid: 12000 + components: + - type: Transform + pos: -4.5,68.5 + parent: 1 + - uid: 12001 + components: + - type: Transform + pos: -4.5,69.5 + parent: 1 + - uid: 12002 + components: + - type: Transform + pos: -4.5,70.5 + parent: 1 + - uid: 12003 + components: + - type: Transform + pos: -3.5,70.5 + parent: 1 + - uid: 12004 + components: + - type: Transform + pos: -1.5,47.5 + parent: 1 + - uid: 12005 + components: + - type: Transform + pos: -1.5,46.5 + parent: 1 + - uid: 12006 + components: + - type: Transform + pos: -1.5,45.5 + parent: 1 + - uid: 12007 + components: + - type: Transform + pos: -1.5,44.5 + parent: 1 + - uid: 12008 + components: + - type: Transform + pos: -1.5,43.5 + parent: 1 + - uid: 12009 + components: + - type: Transform + pos: -1.5,42.5 + parent: 1 + - uid: 12010 + components: + - type: Transform + pos: -1.5,41.5 + parent: 1 + - uid: 12011 + components: + - type: Transform + pos: -1.5,40.5 + parent: 1 + - uid: 12012 + components: + - type: Transform + pos: -22.5,46.5 + parent: 1 + - uid: 12013 + components: + - type: Transform + pos: -21.5,46.5 + parent: 1 + - uid: 12014 + components: + - type: Transform + pos: -21.5,45.5 + parent: 1 + - uid: 12015 + components: + - type: Transform + pos: -21.5,44.5 + parent: 1 + - uid: 12016 + components: + - type: Transform + pos: -21.5,43.5 + parent: 1 + - uid: 12017 + components: + - type: Transform + pos: -21.5,42.5 + parent: 1 + - uid: 12018 + components: + - type: Transform + pos: -21.5,41.5 + parent: 1 + - uid: 12019 + components: + - type: Transform + pos: -21.5,40.5 + parent: 1 + - uid: 12060 + components: + - type: Transform + pos: -12.5,32.5 + parent: 1 + - uid: 12061 + components: + - type: Transform + pos: -11.5,32.5 + parent: 1 + - uid: 12062 + components: + - type: Transform + pos: -10.5,32.5 + parent: 1 + - uid: 12063 + components: + - type: Transform + pos: -9.5,32.5 + parent: 1 + - uid: 12064 + components: + - type: Transform + pos: -9.5,33.5 + parent: 1 + - uid: 12065 + components: + - type: Transform + pos: -8.5,33.5 + parent: 1 + - uid: 12066 + components: + - type: Transform + pos: -7.5,33.5 + parent: 1 + - uid: 12067 + components: + - type: Transform + pos: -6.5,33.5 + parent: 1 + - uid: 12068 + components: + - type: Transform + pos: -6.5,32.5 + parent: 1 + - uid: 12069 + components: + - type: Transform + pos: -6.5,31.5 + parent: 1 + - uid: 12070 + components: + - type: Transform + pos: -6.5,30.5 + parent: 1 + - uid: 12071 + components: + - type: Transform + pos: -6.5,29.5 + parent: 1 + - uid: 12072 + components: + - type: Transform + pos: -6.5,28.5 + parent: 1 + - uid: 12073 + components: + - type: Transform + pos: -6.5,27.5 + parent: 1 + - uid: 12074 + components: + - type: Transform + pos: -9.5,31.5 + parent: 1 + - uid: 12075 + components: + - type: Transform + pos: -9.5,30.5 + parent: 1 + - uid: 12076 + components: + - type: Transform + pos: -9.5,29.5 + parent: 1 + - uid: 12077 + components: + - type: Transform + pos: -9.5,28.5 + parent: 1 + - uid: 12078 + components: + - type: Transform + pos: -9.5,27.5 + parent: 1 + - uid: 12079 + components: + - type: Transform + pos: -10.5,27.5 + parent: 1 + - uid: 12080 + components: + - type: Transform + pos: -11.5,27.5 + parent: 1 + - uid: 12081 + components: + - type: Transform + pos: -11.5,28.5 + parent: 1 + - uid: 12082 + components: + - type: Transform + pos: -11.5,29.5 + parent: 1 + - uid: 12083 + components: + - type: Transform + pos: -11.5,30.5 + parent: 1 + - uid: 12084 + components: + - type: Transform + pos: -11.5,31.5 + parent: 1 + - uid: 12085 + components: + - type: Transform + pos: -11.5,33.5 + parent: 1 + - uid: 12086 + components: + - type: Transform + pos: -11.5,34.5 + parent: 1 + - uid: 12087 + components: + - type: Transform + pos: -10.5,34.5 + parent: 1 + - uid: 12088 + components: + - type: Transform + pos: -20.5,31.5 + parent: 1 + - uid: 12089 + components: + - type: Transform + pos: -20.5,30.5 + parent: 1 + - uid: 12090 + components: + - type: Transform + pos: -20.5,29.5 + parent: 1 + - uid: 12091 + components: + - type: Transform + pos: -20.5,28.5 + parent: 1 + - uid: 12092 + components: + - type: Transform + pos: -20.5,32.5 + parent: 1 + - uid: 12093 + components: + - type: Transform + pos: -20.5,33.5 + parent: 1 + - uid: 12094 + components: + - type: Transform + pos: -20.5,34.5 + parent: 1 + - uid: 12095 + components: + - type: Transform + pos: -20.5,35.5 + parent: 1 + - uid: 12096 + components: + - type: Transform + pos: -20.5,36.5 + parent: 1 + - uid: 12097 + components: + - type: Transform + pos: -21.5,36.5 + parent: 1 + - uid: 12098 + components: + - type: Transform + pos: -22.5,36.5 + parent: 1 + - uid: 12099 + components: + - type: Transform + pos: -23.5,36.5 + parent: 1 + - uid: 12101 + components: + - type: Transform + pos: -25.5,36.5 + parent: 1 + - uid: 12102 + components: + - type: Transform + pos: -26.5,36.5 + parent: 1 + - uid: 12103 + components: + - type: Transform + pos: -27.5,36.5 + parent: 1 + - uid: 12104 + components: + - type: Transform + pos: -28.5,36.5 + parent: 1 + - uid: 12105 + components: + - type: Transform + pos: -19.5,36.5 + parent: 1 + - uid: 12106 + components: + - type: Transform + pos: -18.5,36.5 + parent: 1 + - uid: 12107 + components: + - type: Transform + pos: -17.5,36.5 + parent: 1 + - uid: 12108 + components: + - type: Transform + pos: -16.5,36.5 + parent: 1 + - uid: 12109 + components: + - type: Transform + pos: -15.5,36.5 + parent: 1 + - uid: 12110 + components: + - type: Transform + pos: -14.5,36.5 + parent: 1 + - uid: 12111 + components: + - type: Transform + pos: -13.5,36.5 + parent: 1 + - uid: 12112 + components: + - type: Transform + pos: -12.5,36.5 + parent: 1 + - uid: 12113 + components: + - type: Transform + pos: -11.5,36.5 + parent: 1 + - uid: 12114 + components: + - type: Transform + pos: -10.5,36.5 + parent: 1 + - uid: 12115 + components: + - type: Transform + pos: -9.5,36.5 + parent: 1 + - uid: 12116 + components: + - type: Transform + pos: -8.5,36.5 + parent: 1 + - uid: 12117 + components: + - type: Transform + pos: -7.5,36.5 + parent: 1 + - uid: 12118 + components: + - type: Transform + pos: -6.5,36.5 + parent: 1 + - uid: 12119 + components: + - type: Transform + pos: -5.5,36.5 + parent: 1 + - uid: 12120 + components: + - type: Transform + pos: -4.5,36.5 + parent: 1 + - uid: 12121 + components: + - type: Transform + pos: -3.5,36.5 + parent: 1 + - uid: 12122 + components: + - type: Transform + pos: -2.5,36.5 + parent: 1 + - uid: 12123 + components: + - type: Transform + pos: -19.5,32.5 + parent: 1 + - uid: 12124 + components: + - type: Transform + pos: -18.5,32.5 + parent: 1 + - uid: 12125 + components: + - type: Transform + pos: -17.5,32.5 + parent: 1 + - uid: 12126 + components: + - type: Transform + pos: -16.5,32.5 + parent: 1 + - uid: 12127 + components: + - type: Transform + pos: -15.5,32.5 + parent: 1 + - uid: 12128 + components: + - type: Transform + pos: -14.5,32.5 + parent: 1 + - uid: 12129 + components: + - type: Transform + pos: -14.5,31.5 + parent: 1 + - uid: 12130 + components: + - type: Transform + pos: -14.5,30.5 + parent: 1 + - uid: 12131 + components: + - type: Transform + pos: -14.5,29.5 + parent: 1 + - uid: 12132 + components: + - type: Transform + pos: -14.5,28.5 + parent: 1 + - uid: 12133 + components: + - type: Transform + pos: -14.5,27.5 + parent: 1 + - uid: 12134 + components: + - type: Transform + pos: -14.5,33.5 + parent: 1 + - uid: 12135 + components: + - type: Transform + pos: -14.5,34.5 + parent: 1 + - uid: 12136 + components: + - type: Transform + pos: -17.5,26.5 + parent: 1 + - uid: 12137 + components: + - type: Transform + pos: -17.5,25.5 + parent: 1 + - uid: 12138 + components: + - type: Transform + pos: -17.5,24.5 + parent: 1 + - uid: 12139 + components: + - type: Transform + pos: -16.5,24.5 + parent: 1 + - uid: 12140 + components: + - type: Transform + pos: -15.5,24.5 + parent: 1 + - uid: 12141 + components: + - type: Transform + pos: -14.5,24.5 + parent: 1 + - uid: 12142 + components: + - type: Transform + pos: -13.5,24.5 + parent: 1 + - uid: 12143 + components: + - type: Transform + pos: -12.5,24.5 + parent: 1 + - uid: 12144 + components: + - type: Transform + pos: -11.5,24.5 + parent: 1 + - uid: 12145 + components: + - type: Transform + pos: -10.5,24.5 + parent: 1 + - uid: 12146 + components: + - type: Transform + pos: -10.5,23.5 + parent: 1 + - uid: 12147 + components: + - type: Transform + pos: -10.5,22.5 + parent: 1 + - uid: 12148 + components: + - type: Transform + pos: -10.5,21.5 + parent: 1 + - uid: 12149 + components: + - type: Transform + pos: -11.5,21.5 + parent: 1 + - uid: 12150 + components: + - type: Transform + pos: -11.5,20.5 + parent: 1 + - uid: 12151 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1 + - uid: 12152 + components: + - type: Transform + pos: -11.5,18.5 + parent: 1 + - uid: 12153 + components: + - type: Transform + pos: -18.5,24.5 + parent: 1 + - uid: 12154 + components: + - type: Transform + pos: -19.5,24.5 + parent: 1 + - uid: 12155 + components: + - type: Transform + pos: -20.5,24.5 + parent: 1 + - uid: 12156 + components: + - type: Transform + pos: -20.5,23.5 + parent: 1 + - uid: 12157 + components: + - type: Transform + pos: -20.5,22.5 + parent: 1 + - uid: 12158 + components: + - type: Transform + pos: -20.5,21.5 + parent: 1 + - uid: 12159 + components: + - type: Transform + pos: -20.5,20.5 + parent: 1 + - uid: 12160 + components: + - type: Transform + pos: -20.5,19.5 + parent: 1 + - uid: 12161 + components: + - type: Transform + pos: -20.5,18.5 + parent: 1 + - uid: 12162 + components: + - type: Transform + pos: -20.5,17.5 + parent: 1 + - uid: 12163 + components: + - type: Transform + pos: -19.5,18.5 + parent: 1 + - uid: 12164 + components: + - type: Transform + pos: -18.5,18.5 + parent: 1 + - uid: 12165 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1 + - uid: 12166 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1 + - uid: 12167 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1 + - uid: 12168 + components: + - type: Transform + pos: -14.5,18.5 + parent: 1 + - uid: 12169 + components: + - type: Transform + pos: -16.5,19.5 + parent: 1 + - uid: 12170 + components: + - type: Transform + pos: -16.5,20.5 + parent: 1 + - uid: 12171 + components: + - type: Transform + pos: -16.5,21.5 + parent: 1 + - uid: 12172 + components: + - type: Transform + pos: -16.5,22.5 + parent: 1 + - uid: 12173 + components: + - type: Transform + pos: -21.5,23.5 + parent: 1 + - uid: 12174 + components: + - type: Transform + pos: -22.5,23.5 + parent: 1 + - uid: 12175 + components: + - type: Transform + pos: -23.5,23.5 + parent: 1 + - uid: 12176 + components: + - type: Transform + pos: -24.5,23.5 + parent: 1 + - uid: 12177 + components: + - type: Transform + pos: -25.5,23.5 + parent: 1 + - uid: 12178 + components: + - type: Transform + pos: -24.5,22.5 + parent: 1 + - uid: 12179 + components: + - type: Transform + pos: -24.5,21.5 + parent: 1 + - uid: 12180 + components: + - type: Transform + pos: -24.5,20.5 + parent: 1 + - uid: 12181 + components: + - type: Transform + pos: -24.5,19.5 + parent: 1 + - uid: 12182 + components: + - type: Transform + pos: -20.5,27.5 + parent: 1 + - uid: 12183 + components: + - type: Transform + pos: -21.5,27.5 + parent: 1 + - uid: 12184 + components: + - type: Transform + pos: -22.5,27.5 + parent: 1 + - uid: 12185 + components: + - type: Transform + pos: -23.5,27.5 + parent: 1 + - uid: 12186 + components: + - type: Transform + pos: -23.5,28.5 + parent: 1 + - uid: 12187 + components: + - type: Transform + pos: -23.5,29.5 + parent: 1 + - uid: 12188 + components: + - type: Transform + pos: -23.5,30.5 + parent: 1 + - uid: 12189 + components: + - type: Transform + pos: -23.5,31.5 + parent: 1 + - uid: 12190 + components: + - type: Transform + pos: -23.5,32.5 + parent: 1 + - uid: 12191 + components: + - type: Transform + pos: -23.5,33.5 + parent: 1 + - uid: 12192 + components: + - type: Transform + pos: -23.5,34.5 + parent: 1 + - uid: 12193 + components: + - type: Transform + pos: -23.5,35.5 + parent: 1 + - uid: 12194 + components: + - type: Transform + pos: -23.5,26.5 + parent: 1 + - uid: 12195 + components: + - type: Transform + pos: -23.5,25.5 + parent: 1 + - uid: 12196 + components: + - type: Transform + pos: -24.5,25.5 + parent: 1 + - uid: 12197 + components: + - type: Transform + pos: -25.5,25.5 + parent: 1 + - uid: 12198 + components: + - type: Transform + pos: -26.5,25.5 + parent: 1 + - uid: 12199 + components: + - type: Transform + pos: -27.5,25.5 + parent: 1 + - uid: 12200 + components: + - type: Transform + pos: -27.5,24.5 + parent: 1 + - uid: 12201 + components: + - type: Transform + pos: -27.5,23.5 + parent: 1 + - uid: 12202 + components: + - type: Transform + pos: -27.5,22.5 + parent: 1 + - uid: 12203 + components: + - type: Transform + pos: -27.5,21.5 + parent: 1 + - uid: 12204 + components: + - type: Transform + pos: -27.5,20.5 + parent: 1 + - uid: 12205 + components: + - type: Transform + pos: -27.5,19.5 + parent: 1 + - uid: 12206 + components: + - type: Transform + pos: -27.5,18.5 + parent: 1 + - uid: 12207 + components: + - type: Transform + pos: -27.5,17.5 + parent: 1 + - uid: 12208 + components: + - type: Transform + pos: -26.5,17.5 + parent: 1 + - uid: 12209 + components: + - type: Transform + pos: -25.5,17.5 + parent: 1 + - uid: 12210 + components: + - type: Transform + pos: -28.5,23.5 + parent: 1 + - uid: 12211 + components: + - type: Transform + pos: -25.5,32.5 + parent: 1 + - uid: 12212 + components: + - type: Transform + pos: -26.5,32.5 + parent: 1 + - uid: 12213 + components: + - type: Transform + pos: -27.5,32.5 + parent: 1 + - uid: 12214 + components: + - type: Transform + pos: -28.5,32.5 + parent: 1 + - uid: 12215 + components: + - type: Transform + pos: -28.5,33.5 + parent: 1 + - uid: 12216 + components: + - type: Transform + pos: -29.5,33.5 + parent: 1 + - uid: 12217 + components: + - type: Transform + pos: -30.5,33.5 + parent: 1 + - uid: 12218 + components: + - type: Transform + pos: -30.5,32.5 + parent: 1 + - uid: 12219 + components: + - type: Transform + pos: -30.5,31.5 + parent: 1 + - uid: 12220 + components: + - type: Transform + pos: -30.5,30.5 + parent: 1 + - uid: 12221 + components: + - type: Transform + pos: -30.5,29.5 + parent: 1 + - uid: 12222 + components: + - type: Transform + pos: -30.5,28.5 + parent: 1 + - uid: 12223 + components: + - type: Transform + pos: -30.5,27.5 + parent: 1 + - uid: 12224 + components: + - type: Transform + pos: -30.5,26.5 + parent: 1 + - uid: 12225 + components: + - type: Transform + pos: -30.5,25.5 + parent: 1 + - uid: 12226 + components: + - type: Transform + pos: -30.5,24.5 + parent: 1 + - uid: 12227 + components: + - type: Transform + pos: -30.5,23.5 + parent: 1 + - uid: 12228 + components: + - type: Transform + pos: -30.5,22.5 + parent: 1 + - uid: 12229 + components: + - type: Transform + pos: -30.5,21.5 + parent: 1 + - uid: 12230 + components: + - type: Transform + pos: -30.5,20.5 + parent: 1 + - uid: 12231 + components: + - type: Transform + pos: -30.5,19.5 + parent: 1 + - uid: 12232 + components: + - type: Transform + pos: -30.5,18.5 + parent: 1 + - uid: 12233 + components: + - type: Transform + pos: -30.5,17.5 + parent: 1 + - uid: 12234 + components: + - type: Transform + pos: -27.5,31.5 + parent: 1 + - uid: 12235 + components: + - type: Transform + pos: -27.5,30.5 + parent: 1 + - uid: 12246 + components: + - type: Transform + pos: -8.5,23.5 + parent: 1 + - uid: 12247 + components: + - type: Transform + pos: -7.5,23.5 + parent: 1 + - uid: 12248 + components: + - type: Transform + pos: -6.5,23.5 + parent: 1 + - uid: 12249 + components: + - type: Transform + pos: -5.5,23.5 + parent: 1 + - uid: 12250 + components: + - type: Transform + pos: -4.5,23.5 + parent: 1 + - uid: 12251 + components: + - type: Transform + pos: -3.5,23.5 + parent: 1 + - uid: 12252 + components: + - type: Transform + pos: -5.5,22.5 + parent: 1 + - uid: 12253 + components: + - type: Transform + pos: -5.5,21.5 + parent: 1 + - uid: 12254 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1 + - uid: 12255 + components: + - type: Transform + pos: -5.5,19.5 + parent: 1 + - uid: 12256 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1 + - uid: 12257 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1 + - uid: 12258 + components: + - type: Transform + pos: -4.5,19.5 + parent: 1 + - uid: 12259 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1 + - uid: 12260 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1 + - uid: 12261 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1 + - uid: 12262 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1 + - uid: 12263 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1 + - uid: 12264 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1 + - uid: 12265 + components: + - type: Transform + pos: -1.5,23.5 + parent: 1 + - uid: 12266 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1 + - uid: 12267 + components: + - type: Transform + pos: -1.5,25.5 + parent: 1 + - uid: 12268 + components: + - type: Transform + pos: -1.5,26.5 + parent: 1 + - uid: 12269 + components: + - type: Transform + pos: -1.5,27.5 + parent: 1 + - uid: 12270 + components: + - type: Transform + pos: -1.5,28.5 + parent: 1 + - uid: 12271 + components: + - type: Transform + pos: -1.5,29.5 + parent: 1 + - uid: 12272 + components: + - type: Transform + pos: -1.5,30.5 + parent: 1 + - uid: 12273 + components: + - type: Transform + pos: -1.5,31.5 + parent: 1 + - uid: 12274 + components: + - type: Transform + pos: -1.5,32.5 + parent: 1 + - uid: 12275 + components: + - type: Transform + pos: -1.5,33.5 + parent: 1 + - uid: 12276 + components: + - type: Transform + pos: -1.5,34.5 + parent: 1 + - uid: 12277 + components: + - type: Transform + pos: -5.5,16.5 + parent: 1 + - uid: 12278 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 12279 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 12280 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 12281 + components: + - type: Transform + pos: -8.5,15.5 + parent: 1 + - uid: 12282 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 12283 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1 + - uid: 12284 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1 + - uid: 12285 + components: + - type: Transform + pos: -12.5,15.5 + parent: 1 + - uid: 12286 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1 + - uid: 12287 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 12288 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 12289 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 12326 + components: + - type: Transform + pos: -35.5,25.5 + parent: 1 + - uid: 12327 + components: + - type: Transform + pos: -36.5,25.5 + parent: 1 + - uid: 12328 + components: + - type: Transform + pos: -37.5,25.5 + parent: 1 + - uid: 12329 + components: + - type: Transform + pos: -38.5,25.5 + parent: 1 + - uid: 12330 + components: + - type: Transform + pos: -39.5,25.5 + parent: 1 + - uid: 12331 + components: + - type: Transform + pos: -40.5,25.5 + parent: 1 + - uid: 12332 + components: + - type: Transform + pos: -41.5,25.5 + parent: 1 + - uid: 12333 + components: + - type: Transform + pos: -42.5,25.5 + parent: 1 + - uid: 12337 + components: + - type: Transform + pos: -38.5,26.5 + parent: 1 + - uid: 12338 + components: + - type: Transform + pos: -38.5,27.5 + parent: 1 + - uid: 12339 + components: + - type: Transform + pos: -38.5,28.5 + parent: 1 + - uid: 12340 + components: + - type: Transform + pos: -38.5,29.5 + parent: 1 + - uid: 12341 + components: + - type: Transform + pos: -38.5,30.5 + parent: 1 + - uid: 12342 + components: + - type: Transform + pos: -38.5,24.5 + parent: 1 + - uid: 12343 + components: + - type: Transform + pos: -38.5,23.5 + parent: 1 + - uid: 12344 + components: + - type: Transform + pos: -38.5,22.5 + parent: 1 + - uid: 12345 + components: + - type: Transform + pos: -38.5,21.5 + parent: 1 + - uid: 12346 + components: + - type: Transform + pos: -38.5,20.5 + parent: 1 + - uid: 12347 + components: + - type: Transform + pos: -38.5,19.5 + parent: 1 + - uid: 12348 + components: + - type: Transform + pos: -38.5,18.5 + parent: 1 + - uid: 12349 + components: + - type: Transform + pos: -38.5,17.5 + parent: 1 + - uid: 12350 + components: + - type: Transform + pos: -37.5,17.5 + parent: 1 + - uid: 12351 + components: + - type: Transform + pos: -37.5,16.5 + parent: 1 + - uid: 12352 + components: + - type: Transform + pos: -37.5,15.5 + parent: 1 + - uid: 12353 + components: + - type: Transform + pos: -38.5,15.5 + parent: 1 + - uid: 12354 + components: + - type: Transform + pos: -39.5,15.5 + parent: 1 + - uid: 12355 + components: + - type: Transform + pos: -40.5,15.5 + parent: 1 + - uid: 12356 + components: + - type: Transform + pos: -41.5,15.5 + parent: 1 + - uid: 12357 + components: + - type: Transform + pos: -42.5,15.5 + parent: 1 + - uid: 12358 + components: + - type: Transform + pos: -43.5,15.5 + parent: 1 + - uid: 12359 + components: + - type: Transform + pos: -44.5,15.5 + parent: 1 + - uid: 12360 + components: + - type: Transform + pos: -45.5,15.5 + parent: 1 + - uid: 12361 + components: + - type: Transform + pos: -46.5,15.5 + parent: 1 + - uid: 12362 + components: + - type: Transform + pos: -47.5,15.5 + parent: 1 + - uid: 12363 + components: + - type: Transform + pos: -48.5,15.5 + parent: 1 + - uid: 12364 + components: + - type: Transform + pos: -49.5,15.5 + parent: 1 + - uid: 12365 + components: + - type: Transform + pos: -50.5,15.5 + parent: 1 + - uid: 12366 + components: + - type: Transform + pos: -52.5,15.5 + parent: 1 + - uid: 12367 + components: + - type: Transform + pos: -51.5,15.5 + parent: 1 + - uid: 12368 + components: + - type: Transform + pos: -49.5,16.5 + parent: 1 + - uid: 12369 + components: + - type: Transform + pos: -49.5,17.5 + parent: 1 + - uid: 12370 + components: + - type: Transform + pos: -47.5,16.5 + parent: 1 + - uid: 12371 + components: + - type: Transform + pos: -47.5,17.5 + parent: 1 + - uid: 12372 + components: + - type: Transform + pos: -49.5,14.5 + parent: 1 + - uid: 12373 + components: + - type: Transform + pos: -49.5,13.5 + parent: 1 + - uid: 12374 + components: + - type: Transform + pos: -50.5,13.5 + parent: 1 + - uid: 12375 + components: + - type: Transform + pos: -51.5,13.5 + parent: 1 + - uid: 12376 + components: + - type: Transform + pos: -52.5,13.5 + parent: 1 + - uid: 12377 + components: + - type: Transform + pos: -36.5,15.5 + parent: 1 + - uid: 12378 + components: + - type: Transform + pos: -35.5,15.5 + parent: 1 + - uid: 12379 + components: + - type: Transform + pos: -35.5,16.5 + parent: 1 + - uid: 12380 + components: + - type: Transform + pos: -35.5,17.5 + parent: 1 + - uid: 12381 + components: + - type: Transform + pos: -35.5,18.5 + parent: 1 + - uid: 12382 + components: + - type: Transform + pos: -35.5,19.5 + parent: 1 + - uid: 12383 + components: + - type: Transform + pos: -35.5,20.5 + parent: 1 + - uid: 12384 + components: + - type: Transform + pos: -35.5,21.5 + parent: 1 + - uid: 12385 + components: + - type: Transform + pos: -34.5,21.5 + parent: 1 + - uid: 12386 + components: + - type: Transform + pos: -34.5,22.5 + parent: 1 + - uid: 12387 + components: + - type: Transform + pos: -34.5,23.5 + parent: 1 + - uid: 12388 + components: + - type: Transform + pos: -34.5,24.5 + parent: 1 + - uid: 12389 + components: + - type: Transform + pos: -34.5,25.5 + parent: 1 + - uid: 12390 + components: + - type: Transform + pos: -34.5,26.5 + parent: 1 + - uid: 12391 + components: + - type: Transform + pos: -34.5,27.5 + parent: 1 + - uid: 12392 + components: + - type: Transform + pos: -34.5,28.5 + parent: 1 + - uid: 12393 + components: + - type: Transform + pos: -34.5,29.5 + parent: 1 + - uid: 12394 + components: + - type: Transform + pos: -34.5,30.5 + parent: 1 + - uid: 12395 + components: + - type: Transform + pos: -34.5,31.5 + parent: 1 + - uid: 12396 + components: + - type: Transform + pos: -34.5,32.5 + parent: 1 + - uid: 12397 + components: + - type: Transform + pos: -34.5,33.5 + parent: 1 + - uid: 12398 + components: + - type: Transform + pos: -35.5,33.5 + parent: 1 + - uid: 12399 + components: + - type: Transform + pos: -36.5,33.5 + parent: 1 + - uid: 12400 + components: + - type: Transform + pos: -37.5,33.5 + parent: 1 + - uid: 12401 + components: + - type: Transform + pos: -38.5,33.5 + parent: 1 + - uid: 12402 + components: + - type: Transform + pos: -38.5,34.5 + parent: 1 + - uid: 12543 + components: + - type: Transform + pos: 41.5,41.5 + parent: 1 + - uid: 12544 + components: + - type: Transform + pos: 41.5,42.5 + parent: 1 + - uid: 12545 + components: + - type: Transform + pos: 41.5,43.5 + parent: 1 + - uid: 12546 + components: + - type: Transform + pos: 41.5,44.5 + parent: 1 + - uid: 12547 + components: + - type: Transform + pos: 42.5,44.5 + parent: 1 + - uid: 12548 + components: + - type: Transform + pos: 43.5,44.5 + parent: 1 + - uid: 12549 + components: + - type: Transform + pos: 44.5,44.5 + parent: 1 + - uid: 12550 + components: + - type: Transform + pos: 44.5,43.5 + parent: 1 + - uid: 12551 + components: + - type: Transform + pos: 45.5,43.5 + parent: 1 + - uid: 12552 + components: + - type: Transform + pos: 46.5,43.5 + parent: 1 + - uid: 12553 + components: + - type: Transform + pos: 47.5,43.5 + parent: 1 + - uid: 12554 + components: + - type: Transform + pos: 48.5,43.5 + parent: 1 + - uid: 12555 + components: + - type: Transform + pos: 48.5,42.5 + parent: 1 + - uid: 12556 + components: + - type: Transform + pos: 48.5,41.5 + parent: 1 + - uid: 12557 + components: + - type: Transform + pos: 48.5,40.5 + parent: 1 + - uid: 12558 + components: + - type: Transform + pos: 48.5,39.5 + parent: 1 + - uid: 12559 + components: + - type: Transform + pos: 48.5,38.5 + parent: 1 + - uid: 12560 + components: + - type: Transform + pos: 48.5,37.5 + parent: 1 + - uid: 12561 + components: + - type: Transform + pos: 48.5,36.5 + parent: 1 + - uid: 12562 + components: + - type: Transform + pos: 48.5,35.5 + parent: 1 + - uid: 12563 + components: + - type: Transform + pos: 48.5,34.5 + parent: 1 + - uid: 12564 + components: + - type: Transform + pos: 47.5,36.5 + parent: 1 + - uid: 12565 + components: + - type: Transform + pos: 46.5,36.5 + parent: 1 + - uid: 12566 + components: + - type: Transform + pos: 45.5,36.5 + parent: 1 + - uid: 12567 + components: + - type: Transform + pos: 44.5,36.5 + parent: 1 + - uid: 12568 + components: + - type: Transform + pos: 43.5,36.5 + parent: 1 + - uid: 12569 + components: + - type: Transform + pos: 42.5,36.5 + parent: 1 + - uid: 12570 + components: + - type: Transform + pos: 41.5,36.5 + parent: 1 + - uid: 12571 + components: + - type: Transform + pos: 40.5,36.5 + parent: 1 + - uid: 12572 + components: + - type: Transform + pos: 39.5,36.5 + parent: 1 + - uid: 12573 + components: + - type: Transform + pos: 38.5,36.5 + parent: 1 + - uid: 12574 + components: + - type: Transform + pos: 37.5,36.5 + parent: 1 + - uid: 12575 + components: + - type: Transform + pos: 36.5,36.5 + parent: 1 + - uid: 12576 + components: + - type: Transform + pos: 35.5,36.5 + parent: 1 + - uid: 12577 + components: + - type: Transform + pos: 34.5,36.5 + parent: 1 + - uid: 12578 + components: + - type: Transform + pos: 34.5,37.5 + parent: 1 + - uid: 12579 + components: + - type: Transform + pos: 34.5,38.5 + parent: 1 + - uid: 12580 + components: + - type: Transform + pos: 34.5,39.5 + parent: 1 + - uid: 12581 + components: + - type: Transform + pos: 34.5,40.5 + parent: 1 + - uid: 12582 + components: + - type: Transform + pos: 35.5,40.5 + parent: 1 + - uid: 12583 + components: + - type: Transform + pos: 36.5,40.5 + parent: 1 + - uid: 12584 + components: + - type: Transform + pos: 37.5,40.5 + parent: 1 + - uid: 12585 + components: + - type: Transform + pos: 38.5,40.5 + parent: 1 + - uid: 12586 + components: + - type: Transform + pos: 39.5,40.5 + parent: 1 + - uid: 12587 + components: + - type: Transform + pos: 39.5,41.5 + parent: 1 + - uid: 12588 + components: + - type: Transform + pos: 39.5,42.5 + parent: 1 + - uid: 12589 + components: + - type: Transform + pos: 39.5,43.5 + parent: 1 + - uid: 12590 + components: + - type: Transform + pos: 39.5,44.5 + parent: 1 + - uid: 12591 + components: + - type: Transform + pos: 40.5,43.5 + parent: 1 + - uid: 12592 + components: + - type: Transform + pos: 38.5,44.5 + parent: 1 + - uid: 12593 + components: + - type: Transform + pos: 38.5,45.5 + parent: 1 + - uid: 12594 + components: + - type: Transform + pos: 38.5,46.5 + parent: 1 + - uid: 12595 + components: + - type: Transform + pos: 38.5,47.5 + parent: 1 + - uid: 12596 + components: + - type: Transform + pos: 38.5,48.5 + parent: 1 + - uid: 12597 + components: + - type: Transform + pos: 39.5,48.5 + parent: 1 + - uid: 12598 + components: + - type: Transform + pos: 40.5,48.5 + parent: 1 + - uid: 12599 + components: + - type: Transform + pos: 41.5,48.5 + parent: 1 + - uid: 12600 + components: + - type: Transform + pos: 42.5,48.5 + parent: 1 + - uid: 12601 + components: + - type: Transform + pos: 43.5,48.5 + parent: 1 + - uid: 12602 + components: + - type: Transform + pos: 42.5,49.5 + parent: 1 + - uid: 12603 + components: + - type: Transform + pos: 42.5,50.5 + parent: 1 + - uid: 12604 + components: + - type: Transform + pos: 42.5,51.5 + parent: 1 + - uid: 12605 + components: + - type: Transform + pos: 43.5,47.5 + parent: 1 + - uid: 12606 + components: + - type: Transform + pos: 43.5,46.5 + parent: 1 + - uid: 12607 + components: + - type: Transform + pos: 44.5,46.5 + parent: 1 + - uid: 12608 + components: + - type: Transform + pos: 45.5,46.5 + parent: 1 + - uid: 12609 + components: + - type: Transform + pos: 43.5,37.5 + parent: 1 + - uid: 12610 + components: + - type: Transform + pos: 43.5,38.5 + parent: 1 + - uid: 12611 + components: + - type: Transform + pos: 43.5,39.5 + parent: 1 + - uid: 12612 + components: + - type: Transform + pos: 43.5,40.5 + parent: 1 + - uid: 12613 + components: + - type: Transform + pos: 43.5,41.5 + parent: 1 + - uid: 12614 + components: + - type: Transform + pos: 43.5,42.5 + parent: 1 + - uid: 12615 + components: + - type: Transform + pos: 43.5,43.5 + parent: 1 + - uid: 12616 + components: + - type: Transform + pos: 46.5,35.5 + parent: 1 + - uid: 12617 + components: + - type: Transform + pos: 46.5,34.5 + parent: 1 + - uid: 12618 + components: + - type: Transform + pos: 50.5,36.5 + parent: 1 + - uid: 12619 + components: + - type: Transform + pos: 51.5,36.5 + parent: 1 + - uid: 12620 + components: + - type: Transform + pos: 51.5,38.5 + parent: 1 + - uid: 12621 + components: + - type: Transform + pos: 50.5,38.5 + parent: 1 + - uid: 12622 + components: + - type: Transform + pos: 49.5,38.5 + parent: 1 + - uid: 12623 + components: + - type: Transform + pos: 49.5,36.5 + parent: 1 + - uid: 12624 + components: + - type: Transform + pos: 27.5,51.5 + parent: 1 + - uid: 12625 + components: + - type: Transform + pos: 27.5,50.5 + parent: 1 + - uid: 12626 + components: + - type: Transform + pos: 27.5,49.5 + parent: 1 + - uid: 12627 + components: + - type: Transform + pos: 27.5,48.5 + parent: 1 + - uid: 12628 + components: + - type: Transform + pos: 27.5,47.5 + parent: 1 + - uid: 12629 + components: + - type: Transform + pos: 27.5,46.5 + parent: 1 + - uid: 12630 + components: + - type: Transform + pos: 27.5,45.5 + parent: 1 + - uid: 12631 + components: + - type: Transform + pos: 27.5,44.5 + parent: 1 + - uid: 12632 + components: + - type: Transform + pos: 27.5,43.5 + parent: 1 + - uid: 12633 + components: + - type: Transform + pos: 28.5,43.5 + parent: 1 + - uid: 12634 + components: + - type: Transform + pos: 29.5,43.5 + parent: 1 + - uid: 12635 + components: + - type: Transform + pos: 30.5,43.5 + parent: 1 + - uid: 12636 + components: + - type: Transform + pos: 31.5,43.5 + parent: 1 + - uid: 12637 + components: + - type: Transform + pos: 32.5,43.5 + parent: 1 + - uid: 12638 + components: + - type: Transform + pos: 33.5,43.5 + parent: 1 + - uid: 12639 + components: + - type: Transform + pos: 34.5,43.5 + parent: 1 + - uid: 12640 + components: + - type: Transform + pos: 34.5,44.5 + parent: 1 + - uid: 12641 + components: + - type: Transform + pos: 34.5,45.5 + parent: 1 + - uid: 12642 + components: + - type: Transform + pos: 34.5,46.5 + parent: 1 + - uid: 12643 + components: + - type: Transform + pos: 34.5,47.5 + parent: 1 + - uid: 12644 + components: + - type: Transform + pos: 34.5,48.5 + parent: 1 + - uid: 12645 + components: + - type: Transform + pos: 34.5,49.5 + parent: 1 + - uid: 12646 + components: + - type: Transform + pos: 33.5,49.5 + parent: 1 + - uid: 12647 + components: + - type: Transform + pos: 32.5,49.5 + parent: 1 + - uid: 12648 + components: + - type: Transform + pos: 31.5,49.5 + parent: 1 + - uid: 12649 + components: + - type: Transform + pos: 30.5,49.5 + parent: 1 + - uid: 12650 + components: + - type: Transform + pos: 29.5,49.5 + parent: 1 + - uid: 12651 + components: + - type: Transform + pos: 28.5,49.5 + parent: 1 + - uid: 12652 + components: + - type: Transform + pos: 31.5,50.5 + parent: 1 + - uid: 12653 + components: + - type: Transform + pos: 31.5,51.5 + parent: 1 + - uid: 12654 + components: + - type: Transform + pos: 32.5,51.5 + parent: 1 + - uid: 12655 + components: + - type: Transform + pos: 32.5,52.5 + parent: 1 + - uid: 12656 + components: + - type: Transform + pos: 32.5,53.5 + parent: 1 + - uid: 12657 + components: + - type: Transform + pos: 32.5,54.5 + parent: 1 + - uid: 12658 + components: + - type: Transform + pos: 32.5,55.5 + parent: 1 + - uid: 12659 + components: + - type: Transform + pos: 32.5,56.5 + parent: 1 + - uid: 12660 + components: + - type: Transform + pos: 31.5,55.5 + parent: 1 + - uid: 12661 + components: + - type: Transform + pos: 30.5,55.5 + parent: 1 + - uid: 12662 + components: + - type: Transform + pos: 33.5,55.5 + parent: 1 + - uid: 12663 + components: + - type: Transform + pos: 34.5,55.5 + parent: 1 + - uid: 12664 + components: + - type: Transform + pos: 33.5,51.5 + parent: 1 + - uid: 12665 + components: + - type: Transform + pos: 34.5,51.5 + parent: 1 + - uid: 12666 + components: + - type: Transform + pos: 35.5,51.5 + parent: 1 + - uid: 12667 + components: + - type: Transform + pos: 36.5,51.5 + parent: 1 + - uid: 12668 + components: + - type: Transform + pos: 36.5,52.5 + parent: 1 + - uid: 12669 + components: + - type: Transform + pos: 36.5,53.5 + parent: 1 + - uid: 12670 + components: + - type: Transform + pos: 36.5,54.5 + parent: 1 + - uid: 12671 + components: + - type: Transform + pos: 36.5,50.5 + parent: 1 + - uid: 12672 + components: + - type: Transform + pos: 36.5,49.5 + parent: 1 + - uid: 12673 + components: + - type: Transform + pos: 36.5,48.5 + parent: 1 + - uid: 12674 + components: + - type: Transform + pos: 36.5,47.5 + parent: 1 + - uid: 12675 + components: + - type: Transform + pos: 36.5,46.5 + parent: 1 + - uid: 12676 + components: + - type: Transform + pos: 36.5,45.5 + parent: 1 + - uid: 12677 + components: + - type: Transform + pos: 36.5,44.5 + parent: 1 + - uid: 12678 + components: + - type: Transform + pos: 36.5,43.5 + parent: 1 + - uid: 12679 + components: + - type: Transform + pos: 30.5,42.5 + parent: 1 + - uid: 12680 + components: + - type: Transform + pos: 30.5,41.5 + parent: 1 + - uid: 12681 + components: + - type: Transform + pos: 30.5,40.5 + parent: 1 + - uid: 12682 + components: + - type: Transform + pos: 30.5,39.5 + parent: 1 + - uid: 12683 + components: + - type: Transform + pos: 30.5,38.5 + parent: 1 + - uid: 12684 + components: + - type: Transform + pos: 29.5,38.5 + parent: 1 + - uid: 12685 + components: + - type: Transform + pos: 28.5,38.5 + parent: 1 + - uid: 12686 + components: + - type: Transform + pos: 27.5,38.5 + parent: 1 + - uid: 12687 + components: + - type: Transform + pos: 26.5,38.5 + parent: 1 + - uid: 12688 + components: + - type: Transform + pos: 25.5,38.5 + parent: 1 + - uid: 12689 + components: + - type: Transform + pos: 26.5,47.5 + parent: 1 + - uid: 12690 + components: + - type: Transform + pos: 25.5,47.5 + parent: 1 + - uid: 12691 + components: + - type: Transform + pos: 26.5,50.5 + parent: 1 + - uid: 12692 + components: + - type: Transform + pos: 25.5,50.5 + parent: 1 + - uid: 12693 + components: + - type: Transform + pos: 25.5,51.5 + parent: 1 + - uid: 12694 + components: + - type: Transform + pos: 25.5,52.5 + parent: 1 + - uid: 12695 + components: + - type: Transform + pos: 25.5,53.5 + parent: 1 + - uid: 12696 + components: + - type: Transform + pos: 25.5,54.5 + parent: 1 + - uid: 12697 + components: + - type: Transform + pos: 24.5,51.5 + parent: 1 + - uid: 12698 + components: + - type: Transform + pos: 23.5,51.5 + parent: 1 + - uid: 12699 + components: + - type: Transform + pos: 22.5,51.5 + parent: 1 + - uid: 12700 + components: + - type: Transform + pos: 22.5,52.5 + parent: 1 + - uid: 12701 + components: + - type: Transform + pos: 22.5,53.5 + parent: 1 + - uid: 12702 + components: + - type: Transform + pos: 22.5,54.5 + parent: 1 + - uid: 12703 + components: + - type: Transform + pos: 22.5,55.5 + parent: 1 + - uid: 12704 + components: + - type: Transform + pos: 22.5,56.5 + parent: 1 + - uid: 12705 + components: + - type: Transform + pos: 22.5,57.5 + parent: 1 + - uid: 12706 + components: + - type: Transform + pos: 23.5,57.5 + parent: 1 + - uid: 12707 + components: + - type: Transform + pos: 24.5,57.5 + parent: 1 + - uid: 12708 + components: + - type: Transform + pos: 25.5,57.5 + parent: 1 + - uid: 12709 + components: + - type: Transform + pos: 26.5,57.5 + parent: 1 + - uid: 12710 + components: + - type: Transform + pos: 27.5,57.5 + parent: 1 + - uid: 12711 + components: + - type: Transform + pos: 28.5,57.5 + parent: 1 + - uid: 12712 + components: + - type: Transform + pos: 28.5,56.5 + parent: 1 + - uid: 12713 + components: + - type: Transform + pos: 28.5,55.5 + parent: 1 + - uid: 12714 + components: + - type: Transform + pos: 28.5,54.5 + parent: 1 + - uid: 12715 + components: + - type: Transform + pos: 28.5,53.5 + parent: 1 + - uid: 12716 + components: + - type: Transform + pos: 28.5,52.5 + parent: 1 + - uid: 12717 + components: + - type: Transform + pos: 29.5,52.5 + parent: 1 + - uid: 12718 + components: + - type: Transform + pos: 29.5,51.5 + parent: 1 + - uid: 12719 + components: + - type: Transform + pos: 30.5,51.5 + parent: 1 + - uid: 12720 + components: + - type: Transform + pos: 24.5,42.5 + parent: 1 + - uid: 12721 + components: + - type: Transform + pos: 23.5,42.5 + parent: 1 + - uid: 12722 + components: + - type: Transform + pos: 22.5,42.5 + parent: 1 + - uid: 12723 + components: + - type: Transform + pos: 21.5,42.5 + parent: 1 + - uid: 12724 + components: + - type: Transform + pos: 20.5,42.5 + parent: 1 + - uid: 12725 + components: + - type: Transform + pos: 19.5,42.5 + parent: 1 + - uid: 12726 + components: + - type: Transform + pos: 18.5,42.5 + parent: 1 + - uid: 12727 + components: + - type: Transform + pos: 17.5,42.5 + parent: 1 + - uid: 12728 + components: + - type: Transform + pos: 25.5,42.5 + parent: 1 + - uid: 12729 + components: + - type: Transform + pos: 25.5,43.5 + parent: 1 + - uid: 12730 + components: + - type: Transform + pos: 25.5,44.5 + parent: 1 + - uid: 12731 + components: + - type: Transform + pos: 25.5,45.5 + parent: 1 + - uid: 12732 + components: + - type: Transform + pos: 24.5,45.5 + parent: 1 + - uid: 12733 + components: + - type: Transform + pos: 23.5,45.5 + parent: 1 + - uid: 12734 + components: + - type: Transform + pos: 22.5,45.5 + parent: 1 + - uid: 12735 + components: + - type: Transform + pos: 22.5,46.5 + parent: 1 + - uid: 12736 + components: + - type: Transform + pos: 22.5,47.5 + parent: 1 + - uid: 12737 + components: + - type: Transform + pos: 22.5,48.5 + parent: 1 + - uid: 12738 + components: + - type: Transform + pos: 22.5,49.5 + parent: 1 + - uid: 12739 + components: + - type: Transform + pos: 21.5,49.5 + parent: 1 + - uid: 12740 + components: + - type: Transform + pos: 20.5,49.5 + parent: 1 + - uid: 12741 + components: + - type: Transform + pos: 19.5,49.5 + parent: 1 + - uid: 12742 + components: + - type: Transform + pos: 18.5,49.5 + parent: 1 + - uid: 12743 + components: + - type: Transform + pos: 17.5,49.5 + parent: 1 + - uid: 12744 + components: + - type: Transform + pos: 16.5,49.5 + parent: 1 + - uid: 12745 + components: + - type: Transform + pos: 16.5,50.5 + parent: 1 + - uid: 12746 + components: + - type: Transform + pos: 16.5,51.5 + parent: 1 + - uid: 12747 + components: + - type: Transform + pos: 16.5,52.5 + parent: 1 + - uid: 12748 + components: + - type: Transform + pos: 17.5,52.5 + parent: 1 + - uid: 12749 + components: + - type: Transform + pos: 18.5,52.5 + parent: 1 + - uid: 12750 + components: + - type: Transform + pos: 19.5,52.5 + parent: 1 + - uid: 12751 + components: + - type: Transform + pos: 20.5,52.5 + parent: 1 + - uid: 12752 + components: + - type: Transform + pos: 20.5,53.5 + parent: 1 + - uid: 12753 + components: + - type: Transform + pos: 15.5,50.5 + parent: 1 + - uid: 12754 + components: + - type: Transform + pos: 15.5,49.5 + parent: 1 + - uid: 12755 + components: + - type: Transform + pos: 15.5,48.5 + parent: 1 + - uid: 12756 + components: + - type: Transform + pos: 15.5,47.5 + parent: 1 + - uid: 12757 + components: + - type: Transform + pos: 15.5,46.5 + parent: 1 + - uid: 12758 + components: + - type: Transform + pos: 15.5,45.5 + parent: 1 + - uid: 12759 + components: + - type: Transform + pos: 15.5,44.5 + parent: 1 + - uid: 12760 + components: + - type: Transform + pos: 15.5,43.5 + parent: 1 + - uid: 12761 + components: + - type: Transform + pos: 15.5,42.5 + parent: 1 + - uid: 12762 + components: + - type: Transform + pos: 15.5,41.5 + parent: 1 + - uid: 12763 + components: + - type: Transform + pos: 15.5,40.5 + parent: 1 + - uid: 12764 + components: + - type: Transform + pos: 16.5,45.5 + parent: 1 + - uid: 12765 + components: + - type: Transform + pos: 17.5,45.5 + parent: 1 + - uid: 12766 + components: + - type: Transform + pos: 18.5,45.5 + parent: 1 + - uid: 12767 + components: + - type: Transform + pos: 19.5,45.5 + parent: 1 + - uid: 12768 + components: + - type: Transform + pos: 20.5,45.5 + parent: 1 + - uid: 12769 + components: + - type: Transform + pos: 21.5,45.5 + parent: 1 + - uid: 12770 + components: + - type: Transform + pos: 14.5,44.5 + parent: 1 + - uid: 12771 + components: + - type: Transform + pos: 13.5,44.5 + parent: 1 + - uid: 12772 + components: + - type: Transform + pos: 12.5,44.5 + parent: 1 + - uid: 12773 + components: + - type: Transform + pos: 11.5,44.5 + parent: 1 + - uid: 12774 + components: + - type: Transform + pos: 14.5,42.5 + parent: 1 + - uid: 12775 + components: + - type: Transform + pos: 13.5,42.5 + parent: 1 + - uid: 12776 + components: + - type: Transform + pos: 12.5,42.5 + parent: 1 + - uid: 12777 + components: + - type: Transform + pos: 11.5,42.5 + parent: 1 + - uid: 12778 + components: + - type: Transform + pos: 14.5,50.5 + parent: 1 + - uid: 12779 + components: + - type: Transform + pos: 13.5,50.5 + parent: 1 + - uid: 12780 + components: + - type: Transform + pos: 12.5,50.5 + parent: 1 + - uid: 12781 + components: + - type: Transform + pos: 11.5,50.5 + parent: 1 + - uid: 12782 + components: + - type: Transform + pos: 10.5,50.5 + parent: 1 + - uid: 12783 + components: + - type: Transform + pos: 9.5,50.5 + parent: 1 + - uid: 12784 + components: + - type: Transform + pos: 9.5,49.5 + parent: 1 + - uid: 12785 + components: + - type: Transform + pos: 9.5,48.5 + parent: 1 + - uid: 12786 + components: + - type: Transform + pos: 9.5,47.5 + parent: 1 + - uid: 12787 + components: + - type: Transform + pos: 9.5,46.5 + parent: 1 + - uid: 12788 + components: + - type: Transform + pos: 9.5,45.5 + parent: 1 + - uid: 12789 + components: + - type: Transform + pos: 9.5,44.5 + parent: 1 + - uid: 12790 + components: + - type: Transform + pos: 9.5,43.5 + parent: 1 + - uid: 12791 + components: + - type: Transform + pos: 9.5,42.5 + parent: 1 + - uid: 12792 + components: + - type: Transform + pos: 9.5,41.5 + parent: 1 + - uid: 12793 + components: + - type: Transform + pos: 8.5,41.5 + parent: 1 + - uid: 12794 + components: + - type: Transform + pos: 7.5,41.5 + parent: 1 + - uid: 12795 + components: + - type: Transform + pos: 6.5,41.5 + parent: 1 + - uid: 12796 + components: + - type: Transform + pos: 5.5,41.5 + parent: 1 + - uid: 12797 + components: + - type: Transform + pos: 4.5,41.5 + parent: 1 + - uid: 12798 + components: + - type: Transform + pos: 3.5,41.5 + parent: 1 + - uid: 12799 + components: + - type: Transform + pos: 2.5,41.5 + parent: 1 + - uid: 12800 + components: + - type: Transform + pos: 6.5,46.5 + parent: 1 + - uid: 12801 + components: + - type: Transform + pos: 5.5,46.5 + parent: 1 + - uid: 12802 + components: + - type: Transform + pos: 4.5,46.5 + parent: 1 + - uid: 12803 + components: + - type: Transform + pos: 3.5,46.5 + parent: 1 + - uid: 12804 + components: + - type: Transform + pos: 2.5,46.5 + parent: 1 + - uid: 12805 + components: + - type: Transform + pos: 1.5,46.5 + parent: 1 + - uid: 12806 + components: + - type: Transform + pos: 0.5,46.5 + parent: 1 + - uid: 12807 + components: + - type: Transform + pos: 0.5,47.5 + parent: 1 + - uid: 12808 + components: + - type: Transform + pos: 0.5,48.5 + parent: 1 + - uid: 12809 + components: + - type: Transform + pos: 0.5,49.5 + parent: 1 + - uid: 12810 + components: + - type: Transform + pos: 0.5,50.5 + parent: 1 + - uid: 12811 + components: + - type: Transform + pos: 0.5,45.5 + parent: 1 + - uid: 12812 + components: + - type: Transform + pos: 0.5,44.5 + parent: 1 + - uid: 12813 + components: + - type: Transform + pos: 0.5,43.5 + parent: 1 + - uid: 12814 + components: + - type: Transform + pos: 0.5,42.5 + parent: 1 + - uid: 12815 + components: + - type: Transform + pos: 0.5,41.5 + parent: 1 + - uid: 12816 + components: + - type: Transform + pos: 0.5,40.5 + parent: 1 + - uid: 12817 + components: + - type: Transform + pos: 5.5,47.5 + parent: 1 + - uid: 12818 + components: + - type: Transform + pos: 5.5,48.5 + parent: 1 + - uid: 12819 + components: + - type: Transform + pos: 5.5,49.5 + parent: 1 + - uid: 12826 + components: + - type: Transform + pos: 36.5,55.5 + parent: 1 + - uid: 12827 + components: + - type: Transform + pos: 37.5,54.5 + parent: 1 + - uid: 12828 + components: + - type: Transform + pos: 37.5,55.5 + parent: 1 + - uid: 12829 + components: + - type: Transform + pos: 37.5,56.5 + parent: 1 + - uid: 12830 + components: + - type: Transform + pos: 37.5,57.5 + parent: 1 + - uid: 12831 + components: + - type: Transform + pos: 37.5,58.5 + parent: 1 + - uid: 12832 + components: + - type: Transform + pos: 37.5,59.5 + parent: 1 + - uid: 12833 + components: + - type: Transform + pos: 37.5,60.5 + parent: 1 + - uid: 12834 + components: + - type: Transform + pos: 17.5,41.5 + parent: 1 + - uid: 12835 + components: + - type: Transform + pos: 17.5,40.5 + parent: 1 + - uid: 12836 + components: + - type: Transform + pos: 17.5,39.5 + parent: 1 + - uid: 12837 + components: + - type: Transform + pos: 17.5,38.5 + parent: 1 + - uid: 12838 + components: + - type: Transform + pos: 16.5,38.5 + parent: 1 + - uid: 12839 + components: + - type: Transform + pos: 15.5,38.5 + parent: 1 + - uid: 12840 + components: + - type: Transform + pos: 15.5,39.5 + parent: 1 + - uid: 12841 + components: + - type: Transform + pos: 13.5,38.5 + parent: 1 + - uid: 12842 + components: + - type: Transform + pos: 12.5,38.5 + parent: 1 + - uid: 12843 + components: + - type: Transform + pos: 11.5,38.5 + parent: 1 + - uid: 12844 + components: + - type: Transform + pos: 10.5,38.5 + parent: 1 + - uid: 12845 + components: + - type: Transform + pos: 9.5,38.5 + parent: 1 + - uid: 12846 + components: + - type: Transform + pos: 8.5,38.5 + parent: 1 + - uid: 12847 + components: + - type: Transform + pos: 7.5,38.5 + parent: 1 + - uid: 12848 + components: + - type: Transform + pos: 6.5,38.5 + parent: 1 + - uid: 12849 + components: + - type: Transform + pos: 5.5,38.5 + parent: 1 + - uid: 12850 + components: + - type: Transform + pos: 4.5,38.5 + parent: 1 + - uid: 12851 + components: + - type: Transform + pos: 3.5,38.5 + parent: 1 + - uid: 12852 + components: + - type: Transform + pos: 2.5,38.5 + parent: 1 + - uid: 12853 + components: + - type: Transform + pos: 1.5,38.5 + parent: 1 + - uid: 12854 + components: + - type: Transform + pos: 0.5,38.5 + parent: 1 + - uid: 12855 + components: + - type: Transform + pos: -8.5,37.5 + parent: 1 + - uid: 12856 + components: + - type: Transform + pos: 18.5,38.5 + parent: 1 + - uid: 12857 + components: + - type: Transform + pos: 19.5,38.5 + parent: 1 + - uid: 12858 + components: + - type: Transform + pos: 20.5,38.5 + parent: 1 + - uid: 12859 + components: + - type: Transform + pos: 21.5,38.5 + parent: 1 + - uid: 12860 + components: + - type: Transform + pos: 22.5,38.5 + parent: 1 + - uid: 12861 + components: + - type: Transform + pos: 23.5,38.5 + parent: 1 + - uid: 12923 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1 + - uid: 12924 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1 + - uid: 12925 + components: + - type: Transform + pos: 4.5,31.5 + parent: 1 + - uid: 12926 + components: + - type: Transform + pos: 5.5,31.5 + parent: 1 + - uid: 12927 + components: + - type: Transform + pos: 6.5,31.5 + parent: 1 + - uid: 12928 + components: + - type: Transform + pos: 7.5,31.5 + parent: 1 + - uid: 12929 + components: + - type: Transform + pos: 8.5,31.5 + parent: 1 + - uid: 12930 + components: + - type: Transform + pos: 9.5,31.5 + parent: 1 + - uid: 12931 + components: + - type: Transform + pos: 10.5,31.5 + parent: 1 + - uid: 12932 + components: + - type: Transform + pos: 11.5,31.5 + parent: 1 + - uid: 12933 + components: + - type: Transform + pos: 12.5,31.5 + parent: 1 + - uid: 12936 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1 + - uid: 12937 + components: + - type: Transform + pos: 16.5,31.5 + parent: 1 + - uid: 12938 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1 + - uid: 12939 + components: + - type: Transform + pos: 16.5,33.5 + parent: 1 + - uid: 12940 + components: + - type: Transform + pos: 16.5,34.5 + parent: 1 + - uid: 12941 + components: + - type: Transform + pos: 2.5,32.5 + parent: 1 + - uid: 12942 + components: + - type: Transform + pos: 2.5,33.5 + parent: 1 + - uid: 12943 + components: + - type: Transform + pos: 2.5,34.5 + parent: 1 + - uid: 12944 + components: + - type: Transform + pos: 5.5,32.5 + parent: 1 + - uid: 12945 + components: + - type: Transform + pos: 5.5,33.5 + parent: 1 + - uid: 12946 + components: + - type: Transform + pos: 5.5,34.5 + parent: 1 + - uid: 12947 + components: + - type: Transform + pos: 10.5,32.5 + parent: 1 + - uid: 12948 + components: + - type: Transform + pos: 10.5,33.5 + parent: 1 + - uid: 12949 + components: + - type: Transform + pos: 10.5,34.5 + parent: 1 + - uid: 12950 + components: + - type: Transform + pos: 4.5,30.5 + parent: 1 + - uid: 12951 + components: + - type: Transform + pos: 4.5,29.5 + parent: 1 + - uid: 12952 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1 + - uid: 12953 + components: + - type: Transform + pos: 4.5,27.5 + parent: 1 + - uid: 12954 + components: + - type: Transform + pos: 10.5,30.5 + parent: 1 + - uid: 12955 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1 + - uid: 12956 + components: + - type: Transform + pos: 5.5,26.5 + parent: 1 + - uid: 12957 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1 + - uid: 12958 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1 + - uid: 12959 + components: + - type: Transform + pos: 6.5,24.5 + parent: 1 + - uid: 12960 + components: + - type: Transform + pos: 6.5,23.5 + parent: 1 + - uid: 12961 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1 + - uid: 12962 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1 + - uid: 12963 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1 + - uid: 12964 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1 + - uid: 12965 + components: + - type: Transform + pos: 9.5,23.5 + parent: 1 + - uid: 12966 + components: + - type: Transform + pos: 5.5,23.5 + parent: 1 + - uid: 12967 + components: + - type: Transform + pos: 4.5,23.5 + parent: 1 + - uid: 12968 + components: + - type: Transform + pos: 3.5,23.5 + parent: 1 + - uid: 12969 + components: + - type: Transform + pos: 2.5,23.5 + parent: 1 + - uid: 12970 + components: + - type: Transform + pos: 2.5,22.5 + parent: 1 + - uid: 12971 + components: + - type: Transform + pos: 2.5,21.5 + parent: 1 + - uid: 12972 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 + - uid: 12973 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 12974 + components: + - type: Transform + pos: 3.5,24.5 + parent: 1 + - uid: 12975 + components: + - type: Transform + pos: 3.5,25.5 + parent: 1 + - uid: 12976 + components: + - type: Transform + pos: 10.5,22.5 + parent: 1 + - uid: 12977 + components: + - type: Transform + pos: 10.5,23.5 + parent: 1 + - uid: 12978 + components: + - type: Transform + pos: 10.5,24.5 + parent: 1 + - uid: 12979 + components: + - type: Transform + pos: 10.5,25.5 + parent: 1 + - uid: 12980 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1 + - uid: 12981 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1 + - uid: 12982 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1 + - uid: 12983 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1 + - uid: 12984 + components: + - type: Transform + pos: 7.5,27.5 + parent: 1 + - uid: 12985 + components: + - type: Transform + pos: 6.5,27.5 + parent: 1 + - uid: 12986 + components: + - type: Transform + pos: 11.5,27.5 + parent: 1 + - uid: 12987 + components: + - type: Transform + pos: 12.5,27.5 + parent: 1 + - uid: 12988 + components: + - type: Transform + pos: 12.5,26.5 + parent: 1 + - uid: 12989 + components: + - type: Transform + pos: 12.5,25.5 + parent: 1 + - uid: 12990 + components: + - type: Transform + pos: 12.5,24.5 + parent: 1 + - uid: 12991 + components: + - type: Transform + pos: 12.5,23.5 + parent: 1 + - uid: 12992 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1 + - uid: 12993 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 + - uid: 12994 + components: + - type: Transform + pos: 17.5,19.5 + parent: 1 + - uid: 12995 + components: + - type: Transform + pos: 16.5,19.5 + parent: 1 + - uid: 12996 + components: + - type: Transform + pos: 15.5,19.5 + parent: 1 + - uid: 12997 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1 + - uid: 12999 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1 + - uid: 13000 + components: + - type: Transform + pos: 11.5,19.5 + parent: 1 + - uid: 13001 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1 + - uid: 13002 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 + - uid: 13003 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 13004 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 13005 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 13006 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1 + - uid: 13007 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1 + - uid: 13008 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 13009 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 13010 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 13011 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 13012 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 13013 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 13014 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 13015 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 13016 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 13017 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1 + - uid: 13018 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 13019 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 + - uid: 13020 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1 + - uid: 13021 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 13022 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - uid: 13023 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 13024 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 + - uid: 13025 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1 + - uid: 13026 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 + - uid: 13027 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 13028 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 13029 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 13030 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 13031 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1 + - uid: 13032 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 13033 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 13034 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 13035 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 13036 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1 + - uid: 13037 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1 + - uid: 13038 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1 + - uid: 13039 + components: + - type: Transform + pos: 20.5,30.5 + parent: 1 + - uid: 13040 + components: + - type: Transform + pos: 20.5,31.5 + parent: 1 + - uid: 13041 + components: + - type: Transform + pos: 20.5,32.5 + parent: 1 + - uid: 13042 + components: + - type: Transform + pos: 20.5,33.5 + parent: 1 + - uid: 13043 + components: + - type: Transform + pos: 20.5,34.5 + parent: 1 + - uid: 13044 + components: + - type: Transform + pos: 19.5,34.5 + parent: 1 + - uid: 13045 + components: + - type: Transform + pos: 21.5,34.5 + parent: 1 + - uid: 13046 + components: + - type: Transform + pos: 20.5,29.5 + parent: 1 + - uid: 13047 + components: + - type: Transform + pos: 20.5,28.5 + parent: 1 + - uid: 13048 + components: + - type: Transform + pos: 20.5,27.5 + parent: 1 + - uid: 13049 + components: + - type: Transform + pos: 20.5,26.5 + parent: 1 + - uid: 13050 + components: + - type: Transform + pos: 21.5,27.5 + parent: 1 + - uid: 13051 + components: + - type: Transform + pos: 22.5,27.5 + parent: 1 + - uid: 13053 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1 + - uid: 13054 + components: + - type: Transform + pos: 18.5,28.5 + parent: 1 + - uid: 13055 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1 + - uid: 13056 + components: + - type: Transform + pos: 16.5,28.5 + parent: 1 + - uid: 13057 + components: + - type: Transform + pos: 15.5,28.5 + parent: 1 + - uid: 13058 + components: + - type: Transform + pos: 14.5,28.5 + parent: 1 + - uid: 13059 + components: + - type: Transform + pos: 23.5,27.5 + parent: 1 + - uid: 13060 + components: + - type: Transform + pos: 24.5,27.5 + parent: 1 + - uid: 13061 + components: + - type: Transform + pos: 24.5,28.5 + parent: 1 + - uid: 13062 + components: + - type: Transform + pos: 24.5,29.5 + parent: 1 + - uid: 13063 + components: + - type: Transform + pos: 24.5,30.5 + parent: 1 + - uid: 13064 + components: + - type: Transform + pos: 24.5,31.5 + parent: 1 + - uid: 13065 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1 + - uid: 13066 + components: + - type: Transform + pos: 24.5,33.5 + parent: 1 + - uid: 13067 + components: + - type: Transform + pos: 24.5,34.5 + parent: 1 + - uid: 13068 + components: + - type: Transform + pos: 25.5,34.5 + parent: 1 + - uid: 13069 + components: + - type: Transform + pos: 26.5,34.5 + parent: 1 + - uid: 13070 + components: + - type: Transform + pos: 27.5,34.5 + parent: 1 + - uid: 13071 + components: + - type: Transform + pos: 27.5,33.5 + parent: 1 + - uid: 13072 + components: + - type: Transform + pos: 27.5,32.5 + parent: 1 + - uid: 13073 + components: + - type: Transform + pos: 27.5,31.5 + parent: 1 + - uid: 13074 + components: + - type: Transform + pos: 24.5,23.5 + parent: 1 + - uid: 13075 + components: + - type: Transform + pos: 24.5,24.5 + parent: 1 + - uid: 13076 + components: + - type: Transform + pos: 24.5,25.5 + parent: 1 + - uid: 13077 + components: + - type: Transform + pos: 25.5,25.5 + parent: 1 + - uid: 13078 + components: + - type: Transform + pos: 26.5,25.5 + parent: 1 + - uid: 13079 + components: + - type: Transform + pos: 27.5,25.5 + parent: 1 + - uid: 13080 + components: + - type: Transform + pos: 28.5,25.5 + parent: 1 + - uid: 13081 + components: + - type: Transform + pos: 29.5,25.5 + parent: 1 + - uid: 13082 + components: + - type: Transform + pos: 30.5,25.5 + parent: 1 + - uid: 13083 + components: + - type: Transform + pos: 31.5,25.5 + parent: 1 + - uid: 13084 + components: + - type: Transform + pos: 32.5,25.5 + parent: 1 + - uid: 13085 + components: + - type: Transform + pos: 32.5,26.5 + parent: 1 + - uid: 13086 + components: + - type: Transform + pos: 32.5,27.5 + parent: 1 + - uid: 13087 + components: + - type: Transform + pos: 32.5,28.5 + parent: 1 + - uid: 13088 + components: + - type: Transform + pos: 32.5,29.5 + parent: 1 + - uid: 13089 + components: + - type: Transform + pos: 32.5,30.5 + parent: 1 + - uid: 13090 + components: + - type: Transform + pos: 32.5,31.5 + parent: 1 + - uid: 13091 + components: + - type: Transform + pos: 32.5,32.5 + parent: 1 + - uid: 13092 + components: + - type: Transform + pos: 32.5,33.5 + parent: 1 + - uid: 13093 + components: + - type: Transform + pos: 32.5,34.5 + parent: 1 + - uid: 13094 + components: + - type: Transform + pos: 32.5,24.5 + parent: 1 + - uid: 13095 + components: + - type: Transform + pos: 32.5,23.5 + parent: 1 + - uid: 13096 + components: + - type: Transform + pos: 32.5,22.5 + parent: 1 + - uid: 13097 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1 + - uid: 13098 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1 + - uid: 13099 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1 + - uid: 13100 + components: + - type: Transform + pos: 32.5,18.5 + parent: 1 + - uid: 13101 + components: + - type: Transform + pos: 32.5,17.5 + parent: 1 + - uid: 13102 + components: + - type: Transform + pos: 32.5,16.5 + parent: 1 + - uid: 13103 + components: + - type: Transform + pos: 32.5,15.5 + parent: 1 + - uid: 13104 + components: + - type: Transform + pos: 32.5,14.5 + parent: 1 + - uid: 13105 + components: + - type: Transform + pos: 32.5,13.5 + parent: 1 + - uid: 13106 + components: + - type: Transform + pos: 31.5,13.5 + parent: 1 + - uid: 13107 + components: + - type: Transform + pos: 30.5,13.5 + parent: 1 + - uid: 13108 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1 + - uid: 13109 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1 + - uid: 13110 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1 + - uid: 13111 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1 + - uid: 13112 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1 + - uid: 13113 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1 + - uid: 13114 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 13115 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1 + - uid: 13116 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 + - uid: 13117 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1 + - uid: 13118 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1 + - uid: 13119 + components: + - type: Transform + pos: 23.5,16.5 + parent: 1 + - uid: 13120 + components: + - type: Transform + pos: 23.5,17.5 + parent: 1 + - uid: 13121 + components: + - type: Transform + pos: 23.5,18.5 + parent: 1 + - uid: 13122 + components: + - type: Transform + pos: 23.5,19.5 + parent: 1 + - uid: 13123 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1 + - uid: 13124 + components: + - type: Transform + pos: 24.5,20.5 + parent: 1 + - uid: 13125 + components: + - type: Transform + pos: 24.5,21.5 + parent: 1 + - uid: 13126 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1 + - uid: 13127 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1 + - uid: 13128 + components: + - type: Transform + pos: 26.5,22.5 + parent: 1 + - uid: 13129 + components: + - type: Transform + pos: 27.5,22.5 + parent: 1 + - uid: 13130 + components: + - type: Transform + pos: 27.5,21.5 + parent: 1 + - uid: 13131 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1 + - uid: 13132 + components: + - type: Transform + pos: 29.5,21.5 + parent: 1 + - uid: 13133 + components: + - type: Transform + pos: 30.5,21.5 + parent: 1 + - uid: 13134 + components: + - type: Transform + pos: 31.5,21.5 + parent: 1 + - uid: 13135 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1 + - uid: 13136 + components: + - type: Transform + pos: 29.5,15.5 + parent: 1 + - uid: 13137 + components: + - type: Transform + pos: 29.5,16.5 + parent: 1 + - uid: 13138 + components: + - type: Transform + pos: 29.5,17.5 + parent: 1 + - uid: 13139 + components: + - type: Transform + pos: 30.5,17.5 + parent: 1 + - uid: 13140 + components: + - type: Transform + pos: 31.5,17.5 + parent: 1 + - uid: 13186 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 13187 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 13188 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 13189 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 13190 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 13191 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 13192 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 13193 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 13194 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 13195 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 13208 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1 + - uid: 13209 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 13210 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 + - uid: 13211 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 + - uid: 13212 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1 + - uid: 13213 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1 + - uid: 13214 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1 + - uid: 13215 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1 + - uid: 13216 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1 + - uid: 13217 + components: + - type: Transform + pos: 0.5,27.5 + parent: 1 + - uid: 13218 + components: + - type: Transform + pos: 0.5,28.5 + parent: 1 + - uid: 13219 + components: + - type: Transform + pos: 0.5,29.5 + parent: 1 + - uid: 13220 + components: + - type: Transform + pos: 0.5,30.5 + parent: 1 + - uid: 13221 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1 + - uid: 13222 + components: + - type: Transform + pos: 0.5,32.5 + parent: 1 + - uid: 13223 + components: + - type: Transform + pos: 0.5,33.5 + parent: 1 + - uid: 13224 + components: + - type: Transform + pos: 0.5,34.5 + parent: 1 + - uid: 13225 + components: + - type: Transform + pos: 15.5,20.5 + parent: 1 + - uid: 13226 + components: + - type: Transform + pos: 15.5,21.5 + parent: 1 + - uid: 13227 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 13228 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1 + - uid: 13229 + components: + - type: Transform + pos: 14.5,23.5 + parent: 1 + - uid: 13230 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1 + - uid: 13231 + components: + - type: Transform + pos: 15.5,24.5 + parent: 1 + - uid: 13232 + components: + - type: Transform + pos: 16.5,24.5 + parent: 1 + - uid: 13234 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 13235 + components: + - type: Transform + pos: 17.5,22.5 + parent: 1 + - uid: 13236 + components: + - type: Transform + pos: 28.5,26.5 + parent: 1 + - uid: 13237 + components: + - type: Transform + pos: 28.5,27.5 + parent: 1 + - uid: 13238 + components: + - type: Transform + pos: 28.5,29.5 + parent: 1 + - uid: 13239 + components: + - type: Transform + pos: 28.5,28.5 + parent: 1 + - uid: 13240 + components: + - type: Transform + pos: 23.5,24.5 + parent: 1 + - uid: 13241 + components: + - type: Transform + pos: 22.5,24.5 + parent: 1 + - uid: 13242 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1 + - uid: 13243 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1 + - uid: 13244 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1 + - uid: 13245 + components: + - type: Transform + pos: 24.5,17.5 + parent: 1 + - uid: 13246 + components: + - type: Transform + pos: 25.5,17.5 + parent: 1 + - uid: 13247 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1 + - uid: 13248 + components: + - type: Transform + pos: 27.5,19.5 + parent: 1 + - uid: 13249 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1 + - uid: 13250 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1 + - uid: 13251 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1 + - uid: 13252 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1 + - uid: 13253 + components: + - type: Transform + pos: 37.5,14.5 + parent: 1 + - uid: 13254 + components: + - type: Transform + pos: 38.5,14.5 + parent: 1 + - uid: 13255 + components: + - type: Transform + pos: 39.5,14.5 + parent: 1 + - uid: 13256 + components: + - type: Transform + pos: 40.5,14.5 + parent: 1 + - uid: 13257 + components: + - type: Transform + pos: 41.5,14.5 + parent: 1 + - uid: 13258 + components: + - type: Transform + pos: 42.5,14.5 + parent: 1 + - uid: 13259 + components: + - type: Transform + pos: 43.5,14.5 + parent: 1 + - uid: 13260 + components: + - type: Transform + pos: 44.5,14.5 + parent: 1 + - uid: 13261 + components: + - type: Transform + pos: 45.5,14.5 + parent: 1 + - uid: 13262 + components: + - type: Transform + pos: 46.5,14.5 + parent: 1 + - uid: 13263 + components: + - type: Transform + pos: 47.5,14.5 + parent: 1 + - uid: 13264 + components: + - type: Transform + pos: 48.5,14.5 + parent: 1 + - uid: 13265 + components: + - type: Transform + pos: 49.5,14.5 + parent: 1 + - uid: 13266 + components: + - type: Transform + pos: 49.5,15.5 + parent: 1 + - uid: 13267 + components: + - type: Transform + pos: 50.5,15.5 + parent: 1 + - uid: 13268 + components: + - type: Transform + pos: 51.5,15.5 + parent: 1 + - uid: 13269 + components: + - type: Transform + pos: 48.5,15.5 + parent: 1 + - uid: 13270 + components: + - type: Transform + pos: 48.5,16.5 + parent: 1 + - uid: 13271 + components: + - type: Transform + pos: 48.5,17.5 + parent: 1 + - uid: 13272 + components: + - type: Transform + pos: 46.5,15.5 + parent: 1 + - uid: 13273 + components: + - type: Transform + pos: 46.5,16.5 + parent: 1 + - uid: 13274 + components: + - type: Transform + pos: 46.5,17.5 + parent: 1 + - uid: 13275 + components: + - type: Transform + pos: 49.5,13.5 + parent: 1 + - uid: 13276 + components: + - type: Transform + pos: 50.5,13.5 + parent: 1 + - uid: 13277 + components: + - type: Transform + pos: 51.5,13.5 + parent: 1 + - uid: 13278 + components: + - type: Transform + pos: 46.5,13.5 + parent: 1 + - uid: 13279 + components: + - type: Transform + pos: 46.5,12.5 + parent: 1 + - uid: 13280 + components: + - type: Transform + pos: -33.5,23.5 + parent: 1 + - uid: 13281 + components: + - type: Transform + pos: -32.5,23.5 + parent: 1 + - uid: 13282 + components: + - type: Transform + pos: -32.5,24.5 + parent: 1 + - uid: 13283 + components: + - type: Transform + pos: -32.5,25.5 + parent: 1 + - uid: 13284 + components: + - type: Transform + pos: -32.5,26.5 + parent: 1 + - uid: 13285 + components: + - type: Transform + pos: -32.5,27.5 + parent: 1 + - uid: 13286 + components: + - type: Transform + pos: -32.5,28.5 + parent: 1 + - uid: 13287 + components: + - type: Transform + pos: -32.5,29.5 + parent: 1 + - uid: 13288 + components: + - type: Transform + pos: -32.5,30.5 + parent: 1 + - uid: 13289 + components: + - type: Transform + pos: -32.5,31.5 + parent: 1 + - uid: 13290 + components: + - type: Transform + pos: -32.5,32.5 + parent: 1 + - uid: 13291 + components: + - type: Transform + pos: -32.5,33.5 + parent: 1 + - uid: 13292 + components: + - type: Transform + pos: -32.5,34.5 + parent: 1 + - uid: 13293 + components: + - type: Transform + pos: -32.5,22.5 + parent: 1 + - uid: 13294 + components: + - type: Transform + pos: -32.5,21.5 + parent: 1 + - uid: 13295 + components: + - type: Transform + pos: -32.5,20.5 + parent: 1 + - uid: 13296 + components: + - type: Transform + pos: -32.5,19.5 + parent: 1 + - uid: 13297 + components: + - type: Transform + pos: -32.5,18.5 + parent: 1 + - uid: 13298 + components: + - type: Transform + pos: -32.5,17.5 + parent: 1 + - uid: 13534 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 1 + - uid: 13535 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1 + - uid: 13536 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - uid: 13537 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 13538 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 13539 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 + - uid: 13540 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1 + - uid: 13541 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1 + - uid: 13542 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1 + - uid: 13543 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 13544 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1 + - uid: 13545 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1 + - uid: 13546 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1 + - uid: 13547 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1 + - uid: 13548 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1 + - uid: 13549 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 + - uid: 13550 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1 + - uid: 13551 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 1 + - uid: 13552 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 1 + - uid: 13553 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 1 + - uid: 13554 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1 + - uid: 13555 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1 + - uid: 13556 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 1 + - uid: 13557 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - uid: 13558 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - uid: 13559 + components: + - type: Transform + pos: -27.5,1.5 + parent: 1 + - uid: 13560 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1 + - uid: 13561 + components: + - type: Transform + pos: -29.5,1.5 + parent: 1 + - uid: 13562 + components: + - type: Transform + pos: -30.5,1.5 + parent: 1 + - uid: 13563 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1 + - uid: 13564 + components: + - type: Transform + pos: -30.5,3.5 + parent: 1 + - uid: 13565 + components: + - type: Transform + pos: -30.5,0.5 + parent: 1 + - uid: 13566 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1 + - uid: 13567 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 1 + - uid: 13568 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 1 + - uid: 13569 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 1 + - uid: 13570 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 1 + - uid: 13571 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 1 + - uid: 13572 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 1 + - uid: 13573 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 1 + - uid: 13574 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 1 + - uid: 13575 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 1 + - uid: 13576 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 1 + - uid: 13577 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 1 + - uid: 13578 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 1 + - uid: 13579 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 1 + - uid: 13580 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 1 + - uid: 13581 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 1 + - uid: 13582 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 1 + - uid: 13583 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 1 + - uid: 13584 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 1 + - uid: 13585 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 1 + - uid: 13586 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1 + - uid: 13587 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 1 + - uid: 13588 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1 + - uid: 13589 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 1 + - uid: 13590 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 1 + - uid: 13591 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 1 + - uid: 13592 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 1 + - uid: 13593 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 1 + - uid: 13594 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 1 + - uid: 13595 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 1 + - uid: 13596 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 1 + - uid: 13597 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 1 + - uid: 13598 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 1 + - uid: 13599 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 1 + - uid: 13600 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 1 + - uid: 13601 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 1 + - uid: 13602 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 1 + - uid: 13603 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 1 + - uid: 13604 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 1 + - uid: 13605 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 1 + - uid: 13606 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 1 + - uid: 13607 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1 + - uid: 13608 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - uid: 13609 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 13610 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 13611 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 + - uid: 13612 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 13613 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 + - uid: 13614 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 13615 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 13616 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 13617 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 13618 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 13619 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1 + - uid: 13620 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1 + - uid: 13621 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1 + - uid: 13622 + components: + - type: Transform + pos: -15.5,10.5 + parent: 1 + - uid: 13623 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1 + - uid: 13624 + components: + - type: Transform + pos: -21.5,8.5 + parent: 1 + - uid: 13625 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1 + - uid: 13626 + components: + - type: Transform + pos: -23.5,8.5 + parent: 1 + - uid: 13627 + components: + - type: Transform + pos: -24.5,8.5 + parent: 1 + - uid: 13628 + components: + - type: Transform + pos: -25.5,8.5 + parent: 1 + - uid: 13629 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1 + - uid: 13630 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1 + - uid: 13631 + components: + - type: Transform + pos: -28.5,8.5 + parent: 1 + - uid: 13632 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1 + - uid: 13633 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 + - uid: 13634 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 + - uid: 13635 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 13636 + components: + - type: Transform + pos: -24.5,5.5 + parent: 1 + - uid: 13637 + components: + - type: Transform + pos: -24.5,6.5 + parent: 1 + - uid: 13638 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - uid: 13640 + components: + - type: Transform + pos: -24.5,10.5 + parent: 1 + - uid: 13641 + components: + - type: Transform + pos: -24.5,11.5 + parent: 1 + - uid: 13642 + components: + - type: Transform + pos: -23.5,11.5 + parent: 1 + - uid: 13643 + components: + - type: Transform + pos: -22.5,11.5 + parent: 1 + - uid: 13644 + components: + - type: Transform + pos: -22.5,12.5 + parent: 1 + - uid: 13645 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1 + - uid: 13646 + components: + - type: Transform + pos: -23.5,13.5 + parent: 1 + - uid: 13647 + components: + - type: Transform + pos: -24.5,13.5 + parent: 1 + - uid: 13648 + components: + - type: Transform + pos: -25.5,13.5 + parent: 1 + - uid: 13649 + components: + - type: Transform + pos: -26.5,13.5 + parent: 1 + - uid: 13650 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1 + - uid: 13651 + components: + - type: Transform + pos: -28.5,13.5 + parent: 1 + - uid: 13652 + components: + - type: Transform + pos: -29.5,13.5 + parent: 1 + - uid: 13653 + components: + - type: Transform + pos: -30.5,13.5 + parent: 1 + - uid: 13654 + components: + - type: Transform + pos: -30.5,12.5 + parent: 1 + - uid: 13655 + components: + - type: Transform + pos: -30.5,11.5 + parent: 1 + - uid: 13656 + components: + - type: Transform + pos: -30.5,10.5 + parent: 1 + - uid: 13657 + components: + - type: Transform + pos: -30.5,9.5 + parent: 1 + - uid: 13658 + components: + - type: Transform + pos: -30.5,8.5 + parent: 1 + - uid: 13659 + components: + - type: Transform + pos: -30.5,7.5 + parent: 1 + - uid: 13660 + components: + - type: Transform + pos: -30.5,6.5 + parent: 1 + - uid: 13661 + components: + - type: Transform + pos: -21.5,13.5 + parent: 1 + - uid: 13662 + components: + - type: Transform + pos: -20.5,13.5 + parent: 1 + - uid: 13663 + components: + - type: Transform + pos: -19.5,13.5 + parent: 1 + - uid: 13664 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1 + - uid: 13665 + components: + - type: Transform + pos: -17.5,13.5 + parent: 1 + - uid: 13666 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1 + - uid: 13667 + components: + - type: Transform + pos: -15.5,13.5 + parent: 1 + - uid: 13668 + components: + - type: Transform + pos: -14.5,13.5 + parent: 1 + - uid: 13669 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1 + - uid: 13670 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1 + - uid: 13671 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 13672 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 13673 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 13674 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 13675 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 13676 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 13677 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 13678 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 13679 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 13680 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 13681 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 13682 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 1 + - uid: 13683 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 13684 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1 + - uid: 13685 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1 + - uid: 13686 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1 + - uid: 13687 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 1 + - uid: 13688 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1 + - uid: 13689 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 13690 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 13691 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 13692 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 13693 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - uid: 13694 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - uid: 13695 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1 + - uid: 13696 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1 + - uid: 13697 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1 + - uid: 13698 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1 + - uid: 13699 + components: + - type: Transform + pos: -16.5,4.5 + parent: 1 + - uid: 13700 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1 + - uid: 13701 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 13702 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 13703 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 13704 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 13705 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 13706 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 13707 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 13708 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 13709 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 13710 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 13711 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 13712 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 13713 + components: + - type: Transform + pos: -11.5,11.5 + parent: 1 + - uid: 13714 + components: + - type: Transform + pos: -12.5,11.5 + parent: 1 + - uid: 13715 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 13716 + components: + - type: Transform + pos: -13.5,10.5 + parent: 1 + - uid: 13717 + components: + - type: Transform + pos: -7.5,11.5 + parent: 1 + - uid: 13718 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 13719 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 13720 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 13721 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 13722 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 13723 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 13724 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 13725 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 13726 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 13727 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 13728 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 13729 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 13730 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 13731 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 13732 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 13733 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 13734 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 13735 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 13736 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 13737 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 13738 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 13739 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 13740 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 13741 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 13742 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 13743 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 13744 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 13745 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 13746 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 13747 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 13748 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 13749 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 13750 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 13751 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 13752 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 13753 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 13754 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 13755 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 13756 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 13757 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 13758 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 13759 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 13760 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 13761 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 13762 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 13763 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 13764 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 13765 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 13766 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 13767 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 13768 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 13769 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 13770 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 1 + - uid: 13771 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 1 + - uid: 13772 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1 + - uid: 13773 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 1 + - uid: 13774 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 13775 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 13776 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 13777 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 13778 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 13779 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 13780 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 13781 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 13782 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 13783 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 13784 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 13785 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 13786 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 13787 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 13788 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 13789 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 13790 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 13791 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 13792 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 13794 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 13795 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 13796 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 13797 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 13798 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 13799 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 13800 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 13801 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 13802 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 13803 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 13804 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 13805 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 13806 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 13807 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 13808 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 13809 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 13810 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 13811 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 13812 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 13813 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 13814 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 13815 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 13816 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 13817 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 13818 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 13819 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 13820 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 13821 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 13822 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 13823 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 13824 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 13825 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 13826 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 13827 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 13828 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 + - uid: 13829 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - uid: 13830 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 13831 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 13832 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 13833 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 13834 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 13835 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 13836 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 13837 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 13838 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 13839 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 13840 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 13841 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 13842 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 13843 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 13844 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 13845 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 13846 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 13847 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1 + - uid: 13848 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 13849 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 + - uid: 13850 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1 + - uid: 13851 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 13887 + components: + - type: Transform + pos: 10.5,62.5 + parent: 1 + - uid: 13888 + components: + - type: Transform + pos: 10.5,63.5 + parent: 1 + - uid: 13889 + components: + - type: Transform + pos: 9.5,63.5 + parent: 1 + - uid: 13890 + components: + - type: Transform + pos: 8.5,63.5 + parent: 1 + - uid: 13891 + components: + - type: Transform + pos: 7.5,63.5 + parent: 1 + - uid: 13892 + components: + - type: Transform + pos: 7.5,64.5 + parent: 1 + - uid: 13893 + components: + - type: Transform + pos: 7.5,65.5 + parent: 1 + - uid: 13894 + components: + - type: Transform + pos: 7.5,66.5 + parent: 1 + - uid: 13895 + components: + - type: Transform + pos: 10.5,61.5 + parent: 1 + - uid: 13896 + components: + - type: Transform + pos: 9.5,61.5 + parent: 1 + - uid: 13897 + components: + - type: Transform + pos: 8.5,61.5 + parent: 1 + - uid: 13898 + components: + - type: Transform + pos: 7.5,61.5 + parent: 1 + - uid: 13899 + components: + - type: Transform + pos: 7.5,60.5 + parent: 1 + - uid: 13900 + components: + - type: Transform + pos: 6.5,60.5 + parent: 1 + - uid: 13901 + components: + - type: Transform + pos: 5.5,60.5 + parent: 1 + - uid: 13902 + components: + - type: Transform + pos: 4.5,60.5 + parent: 1 + - uid: 13903 + components: + - type: Transform + pos: 3.5,60.5 + parent: 1 + - uid: 13904 + components: + - type: Transform + pos: 2.5,60.5 + parent: 1 + - uid: 13905 + components: + - type: Transform + pos: 2.5,61.5 + parent: 1 + - uid: 13906 + components: + - type: Transform + pos: 2.5,62.5 + parent: 1 + - uid: 13907 + components: + - type: Transform + pos: 2.5,63.5 + parent: 1 + - uid: 13908 + components: + - type: Transform + pos: 1.5,63.5 + parent: 1 + - uid: 13909 + components: + - type: Transform + pos: 0.5,63.5 + parent: 1 + - uid: 13910 + components: + - type: Transform + pos: 0.5,64.5 + parent: 1 + - uid: 13911 + components: + - type: Transform + pos: 0.5,65.5 + parent: 1 + - uid: 13912 + components: + - type: Transform + pos: 0.5,66.5 + parent: 1 + - uid: 13913 + components: + - type: Transform + pos: 1.5,66.5 + parent: 1 + - uid: 13914 + components: + - type: Transform + pos: 2.5,66.5 + parent: 1 + - uid: 13915 + components: + - type: Transform + pos: 3.5,66.5 + parent: 1 + - uid: 13916 + components: + - type: Transform + pos: 4.5,66.5 + parent: 1 + - uid: 13917 + components: + - type: Transform + pos: 5.5,66.5 + parent: 1 + - uid: 13918 + components: + - type: Transform + pos: 6.5,66.5 + parent: 1 + - uid: 13919 + components: + - type: Transform + pos: 0.5,62.5 + parent: 1 + - uid: 13920 + components: + - type: Transform + pos: 0.5,61.5 + parent: 1 + - uid: 13921 + components: + - type: Transform + pos: 0.5,60.5 + parent: 1 + - uid: 13922 + components: + - type: Transform + pos: 0.5,59.5 + parent: 1 + - uid: 13923 + components: + - type: Transform + pos: 0.5,58.5 + parent: 1 + - uid: 13924 + components: + - type: Transform + pos: 0.5,57.5 + parent: 1 + - uid: 13925 + components: + - type: Transform + pos: 0.5,56.5 + parent: 1 + - uid: 13926 + components: + - type: Transform + pos: 0.5,55.5 + parent: 1 + - uid: 13927 + components: + - type: Transform + pos: 0.5,54.5 + parent: 1 + - uid: 13928 + components: + - type: Transform + pos: 0.5,53.5 + parent: 1 + - uid: 13929 + components: + - type: Transform + pos: 0.5,52.5 + parent: 1 + - uid: 13930 + components: + - type: Transform + pos: 1.5,56.5 + parent: 1 + - uid: 13931 + components: + - type: Transform + pos: 2.5,56.5 + parent: 1 + - uid: 13932 + components: + - type: Transform + pos: 3.5,56.5 + parent: 1 + - uid: 13933 + components: + - type: Transform + pos: 4.5,56.5 + parent: 1 + - uid: 13934 + components: + - type: Transform + pos: 5.5,56.5 + parent: 1 + - uid: 13935 + components: + - type: Transform + pos: 6.5,56.5 + parent: 1 + - uid: 13936 + components: + - type: Transform + pos: 7.5,56.5 + parent: 1 + - uid: 13937 + components: + - type: Transform + pos: 8.5,56.5 + parent: 1 + - uid: 13938 + components: + - type: Transform + pos: 9.5,56.5 + parent: 1 + - uid: 13939 + components: + - type: Transform + pos: 10.5,56.5 + parent: 1 + - uid: 13940 + components: + - type: Transform + pos: 11.5,56.5 + parent: 1 + - uid: 13941 + components: + - type: Transform + pos: 12.5,56.5 + parent: 1 + - uid: 13942 + components: + - type: Transform + pos: 13.5,56.5 + parent: 1 + - uid: 13943 + components: + - type: Transform + pos: 14.5,56.5 + parent: 1 + - uid: 13944 + components: + - type: Transform + pos: 14.5,57.5 + parent: 1 + - uid: 13945 + components: + - type: Transform + pos: 14.5,58.5 + parent: 1 + - uid: 13946 + components: + - type: Transform + pos: 14.5,59.5 + parent: 1 + - uid: 13947 + components: + - type: Transform + pos: 14.5,60.5 + parent: 1 + - uid: 13948 + components: + - type: Transform + pos: 14.5,61.5 + parent: 1 + - uid: 13949 + components: + - type: Transform + pos: 13.5,61.5 + parent: 1 + - uid: 13950 + components: + - type: Transform + pos: 12.5,61.5 + parent: 1 + - uid: 13951 + components: + - type: Transform + pos: 11.5,61.5 + parent: 1 + - uid: 13952 + components: + - type: Transform + pos: 10.5,61.5 + parent: 1 + - uid: 13953 + components: + - type: Transform + pos: 15.5,58.5 + parent: 1 + - uid: 13954 + components: + - type: Transform + pos: 16.5,58.5 + parent: 1 + - uid: 13955 + components: + - type: Transform + pos: 17.5,58.5 + parent: 1 + - uid: 13956 + components: + - type: Transform + pos: 18.5,58.5 + parent: 1 + - uid: 13957 + components: + - type: Transform + pos: 18.5,59.5 + parent: 1 + - uid: 13958 + components: + - type: Transform + pos: 18.5,60.5 + parent: 1 + - uid: 13959 + components: + - type: Transform + pos: 18.5,61.5 + parent: 1 + - uid: 13960 + components: + - type: Transform + pos: 18.5,62.5 + parent: 1 + - uid: 13961 + components: + - type: Transform + pos: 18.5,63.5 + parent: 1 + - uid: 13962 + components: + - type: Transform + pos: 17.5,63.5 + parent: 1 + - uid: 13963 + components: + - type: Transform + pos: 16.5,63.5 + parent: 1 + - uid: 13964 + components: + - type: Transform + pos: 15.5,63.5 + parent: 1 + - uid: 13965 + components: + - type: Transform + pos: 14.5,63.5 + parent: 1 + - uid: 13966 + components: + - type: Transform + pos: 13.5,63.5 + parent: 1 + - uid: 13967 + components: + - type: Transform + pos: 12.5,63.5 + parent: 1 + - uid: 13968 + components: + - type: Transform + pos: 11.5,63.5 + parent: 1 + - uid: 13969 + components: + - type: Transform + pos: 14.5,55.5 + parent: 1 + - uid: 13970 + components: + - type: Transform + pos: 14.5,54.5 + parent: 1 + - uid: 13971 + components: + - type: Transform + pos: 14.5,53.5 + parent: 1 + - uid: 13972 + components: + - type: Transform + pos: 14.5,52.5 + parent: 1 + - uid: 13973 + components: + - type: Transform + pos: 13.5,52.5 + parent: 1 + - uid: 13974 + components: + - type: Transform + pos: 12.5,52.5 + parent: 1 + - uid: 13975 + components: + - type: Transform + pos: 11.5,52.5 + parent: 1 + - uid: 13976 + components: + - type: Transform + pos: 10.5,52.5 + parent: 1 + - uid: 13977 + components: + - type: Transform + pos: 9.5,52.5 + parent: 1 + - uid: 13978 + components: + - type: Transform + pos: 8.5,52.5 + parent: 1 + - uid: 13979 + components: + - type: Transform + pos: 7.5,52.5 + parent: 1 + - uid: 13980 + components: + - type: Transform + pos: 6.5,52.5 + parent: 1 + - uid: 13981 + components: + - type: Transform + pos: 5.5,52.5 + parent: 1 + - uid: 13982 + components: + - type: Transform + pos: 4.5,52.5 + parent: 1 + - uid: 13983 + components: + - type: Transform + pos: 4.5,53.5 + parent: 1 + - uid: 13984 + components: + - type: Transform + pos: 4.5,54.5 + parent: 1 + - uid: 13985 + components: + - type: Transform + pos: 4.5,55.5 + parent: 1 + - uid: 13986 + components: + - type: Transform + pos: 19.5,58.5 + parent: 1 + - uid: 13987 + components: + - type: Transform + pos: 19.5,57.5 + parent: 1 + - uid: 13988 + components: + - type: Transform + pos: 19.5,56.5 + parent: 1 + - uid: 13989 + components: + - type: Transform + pos: 18.5,56.5 + parent: 1 + - uid: 13990 + components: + - type: Transform + pos: 17.5,56.5 + parent: 1 + - uid: 13991 + components: + - type: Transform + pos: 16.5,56.5 + parent: 1 + - uid: 13992 + components: + - type: Transform + pos: 16.5,55.5 + parent: 1 + - uid: 13993 + components: + - type: Transform + pos: 16.5,54.5 + parent: 1 + - uid: 14446 + components: + - type: Transform + pos: 32.5,6.5 + parent: 1 + - uid: 15386 + components: + - type: Transform + pos: -35.5,8.5 + parent: 1 + - uid: 15387 + components: + - type: Transform + pos: -35.5,9.5 + parent: 1 + - uid: 15388 + components: + - type: Transform + pos: -35.5,10.5 + parent: 1 + - uid: 15389 + components: + - type: Transform + pos: -45.5,14.5 + parent: 1 + - uid: 15390 + components: + - type: Transform + pos: -45.5,13.5 + parent: 1 + - uid: 15391 + components: + - type: Transform + pos: -35.5,12.5 + parent: 1 + - uid: 15392 + components: + - type: Transform + pos: -35.5,13.5 + parent: 1 + - uid: 15393 + components: + - type: Transform + pos: -36.5,13.5 + parent: 1 + - uid: 15394 + components: + - type: Transform + pos: -37.5,13.5 + parent: 1 + - uid: 15395 + components: + - type: Transform + pos: -38.5,13.5 + parent: 1 + - uid: 15396 + components: + - type: Transform + pos: -39.5,13.5 + parent: 1 + - uid: 15397 + components: + - type: Transform + pos: -40.5,13.5 + parent: 1 + - uid: 15398 + components: + - type: Transform + pos: -34.5,10.5 + parent: 1 + - uid: 15399 + components: + - type: Transform + pos: -33.5,10.5 + parent: 1 + - uid: 16385 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 1 + - uid: 16386 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 1 + - uid: 16387 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 1 + - uid: 16388 + components: + - type: Transform + pos: 11.5,-43.5 + parent: 1 + - uid: 16389 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 1 + - uid: 16390 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 1 + - uid: 17312 + components: + - type: Transform + pos: 5.5,80.5 + parent: 1 + - uid: 17313 + components: + - type: Transform + pos: 6.5,80.5 + parent: 1 + - uid: 17315 + components: + - type: Transform + pos: -6.5,80.5 + parent: 1 + - uid: 17316 + components: + - type: Transform + pos: -6.5,80.5 + parent: 1 + - uid: 17317 + components: + - type: Transform + pos: -7.5,80.5 + parent: 1 + - uid: 17328 + components: + - type: Transform + pos: 43.5,51.5 + parent: 1 + - uid: 18064 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 1 + - uid: 18066 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 1 + - uid: 18069 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 1 + - uid: 18072 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 1 + - uid: 18073 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 1 + - uid: 18074 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 1 + - uid: 18075 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 1 + - uid: 18094 + components: + - type: Transform + pos: -44.5,51.5 + parent: 1 + - uid: 18132 + components: + - type: Transform + pos: 14.5,38.5 + parent: 1 + - uid: 18133 + components: + - type: Transform + pos: -33.5,41.5 + parent: 1 + - uid: 18134 + components: + - type: Transform + pos: -23.5,57.5 + parent: 1 + - uid: 18135 + components: + - type: Transform + pos: -22.5,57.5 + parent: 1 + - uid: 18197 + components: + - type: Transform + pos: 34.5,4.5 + parent: 1 + - uid: 18198 + components: + - type: Transform + pos: 34.5,5.5 + parent: 1 + - uid: 18199 + components: + - type: Transform + pos: 35.5,3.5 + parent: 1 + - uid: 18200 + components: + - type: Transform + pos: 36.5,3.5 + parent: 1 + - uid: 18201 + components: + - type: Transform + pos: 34.5,1.5 + parent: 1 + - uid: 18202 + components: + - type: Transform + pos: 35.5,1.5 + parent: 1 + - uid: 18203 + components: + - type: Transform + pos: 36.5,1.5 + parent: 1 + - uid: 18204 + components: + - type: Transform + pos: 34.5,6.5 + parent: 1 + - uid: 18259 + components: + - type: Transform + pos: 35.5,6.5 + parent: 1 + - uid: 18260 + components: + - type: Transform + pos: 36.5,6.5 + parent: 1 + - uid: 18318 + components: + - type: Transform + pos: -19.5,63.5 + parent: 1 + - uid: 18319 + components: + - type: Transform + pos: -19.5,64.5 + parent: 1 + - uid: 18467 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 18468 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - uid: 18469 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 18470 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 +- proto: CableApcStack + entities: + - uid: 7462 + components: + - type: Transform + pos: 22.493486,-23.113226 + parent: 1 + - uid: 8668 + components: + - type: Transform + pos: -6.657152,21.752699 + parent: 1 + - uid: 8710 + components: + - type: Transform + pos: -10.359692,-19.510866 + parent: 1 + - uid: 9126 + components: + - type: Transform + pos: 13.59571,-22.378843 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 9815 + components: + - type: Transform + pos: -41.44949,-9.492805 + parent: 1 + - uid: 9816 + components: + - type: Transform + pos: -43.623955,-9.494401 + parent: 1 + - uid: 9817 + components: + - type: Transform + pos: -42.65844,-9.466018 + parent: 1 + - uid: 10260 + components: + - type: Transform + pos: 37.522205,-12.480022 + parent: 1 + - uid: 11664 + components: + - type: Transform + pos: -45.537365,48.54528 + parent: 1 +- proto: CableHV + entities: + - uid: 175 + components: + - type: Transform + pos: -44.5,72.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -43.5,72.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -45.5,72.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: -20.5,28.5 + parent: 1 + - uid: 1990 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 1 + - uid: 2048 + components: + - type: Transform + pos: -40.5,72.5 + parent: 1 + - uid: 3036 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 1 + - uid: 3037 + components: + - type: Transform + pos: -8.5,-45.5 + parent: 1 + - uid: 3249 + components: + - type: Transform + pos: -35.5,74.5 + parent: 1 + - uid: 3460 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 1 + - uid: 3566 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 1 + - uid: 3805 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 1 + - uid: 3833 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 1 + - uid: 3834 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 1 + - uid: 4139 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 1 + - uid: 4595 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 1 + - uid: 4596 + components: + - type: Transform + pos: -6.5,-69.5 + parent: 1 + - uid: 4597 + components: + - type: Transform + pos: -6.5,-68.5 + parent: 1 + - uid: 4598 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 1 + - uid: 4599 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 1 + - uid: 4600 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 1 + - uid: 4601 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 1 + - uid: 4602 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 1 + - uid: 4603 + components: + - type: Transform + pos: -8.5,-69.5 + parent: 1 + - uid: 4604 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 1 + - uid: 4605 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 1 + - uid: 4606 + components: + - type: Transform + pos: -8.5,-66.5 + parent: 1 + - uid: 4607 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 1 + - uid: 4608 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 1 + - uid: 4609 + components: + - type: Transform + pos: -7.5,-64.5 + parent: 1 + - uid: 4610 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 1 + - uid: 4611 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 1 + - uid: 4612 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 1 + - uid: 4613 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 1 + - uid: 4614 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 1 + - uid: 4615 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 1 + - uid: 4616 + components: + - type: Transform + pos: -7.5,-57.5 + parent: 1 + - uid: 4617 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 1 + - uid: 4618 + components: + - type: Transform + pos: -7.5,-55.5 + parent: 1 + - uid: 4619 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 1 + - uid: 4620 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 1 + - uid: 4621 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 1 + - uid: 4622 + components: + - type: Transform + pos: -9.5,-53.5 + parent: 1 + - uid: 4624 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 1 + - uid: 4625 + components: + - type: Transform + pos: -9.5,-50.5 + parent: 1 + - uid: 4626 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 1 + - uid: 4627 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 1 + - uid: 4628 + components: + - type: Transform + pos: -9.5,-47.5 + parent: 1 + - uid: 4629 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 1 + - uid: 4630 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 1 + - uid: 4631 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 1 + - uid: 4632 + components: + - type: Transform + pos: -13.5,-47.5 + parent: 1 + - uid: 4633 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 1 + - uid: 4634 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 1 + - uid: 4635 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 1 + - uid: 4636 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 1 + - uid: 4637 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 1 + - uid: 4638 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 1 + - uid: 4639 + components: + - type: Transform + pos: -10.5,-51.5 + parent: 1 + - uid: 4640 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 1 + - uid: 4641 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 1 + - uid: 4642 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 1 + - uid: 4643 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 1 + - uid: 4644 + components: + - type: Transform + pos: -10.5,-53.5 + parent: 1 + - uid: 4645 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 1 + - uid: 4646 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 1 + - uid: 4647 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 1 + - uid: 4648 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 1 + - uid: 4649 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 1 + - uid: 4650 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 1 + - uid: 4651 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 1 + - uid: 4652 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 1 + - uid: 4653 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 1 + - uid: 4654 + components: + - type: Transform + pos: -8.5,-61.5 + parent: 1 + - uid: 4655 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 1 + - uid: 4656 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 1 + - uid: 4657 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 1 + - uid: 4658 + components: + - type: Transform + pos: -5.5,-61.5 + parent: 1 + - uid: 4659 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 1 + - uid: 4660 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 1 + - uid: 4661 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 1 + - uid: 4662 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 1 + - uid: 4663 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 1 + - uid: 4664 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 1 + - uid: 4665 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 1 + - uid: 4666 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 1 + - uid: 4667 + components: + - type: Transform + pos: -4.5,-53.5 + parent: 1 + - uid: 4668 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 1 + - uid: 4669 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 1 + - uid: 4670 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 1 + - uid: 4671 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 1 + - uid: 4672 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 1 + - uid: 4673 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 1 + - uid: 4674 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 1 + - uid: 4675 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 1 + - uid: 4676 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 1 + - uid: 4677 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 1 + - uid: 4678 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 1 + - uid: 4679 + components: + - type: Transform + pos: 5.5,-62.5 + parent: 1 + - uid: 4680 + components: + - type: Transform + pos: 6.5,-64.5 + parent: 1 + - uid: 4681 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 1 + - uid: 4682 + components: + - type: Transform + pos: 6.5,-62.5 + parent: 1 + - uid: 4683 + components: + - type: Transform + pos: 6.5,-61.5 + parent: 1 + - uid: 4684 + components: + - type: Transform + pos: 6.5,-60.5 + parent: 1 + - uid: 4685 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 1 + - uid: 4686 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 1 + - uid: 4687 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 1 + - uid: 4688 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 1 + - uid: 4689 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 1 + - uid: 4690 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 1 + - uid: 4691 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 1 + - uid: 4692 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 1 + - uid: 4693 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 1 + - uid: 4694 + components: + - type: Transform + pos: -5.5,-47.5 + parent: 1 + - uid: 4695 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 1 + - uid: 4696 + components: + - type: Transform + pos: -3.5,-47.5 + parent: 1 + - uid: 4697 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 1 + - uid: 4698 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 1 + - uid: 4704 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 1 + - uid: 4705 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 1 + - uid: 4706 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 1 + - uid: 4707 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 1 + - uid: 4708 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 1 + - uid: 4709 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 1 + - uid: 4710 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 1 + - uid: 4711 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 1 + - uid: 4712 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 1 + - uid: 4713 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 1 + - uid: 4714 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 1 + - uid: 4715 + components: + - type: Transform + pos: 8.5,-50.5 + parent: 1 + - uid: 4716 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 1 + - uid: 4718 + components: + - type: Transform + pos: 8.5,-53.5 + parent: 1 + - uid: 4719 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 1 + - uid: 4720 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 1 + - uid: 4721 + components: + - type: Transform + pos: 9.5,-53.5 + parent: 1 + - uid: 4722 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 1 + - uid: 4723 + components: + - type: Transform + pos: 9.5,-55.5 + parent: 1 + - uid: 4724 + components: + - type: Transform + pos: 9.5,-56.5 + parent: 1 + - uid: 4725 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 1 + - uid: 4726 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 1 + - uid: 4727 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 1 + - uid: 4728 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 1 + - uid: 4729 + components: + - type: Transform + pos: 7.5,-59.5 + parent: 1 + - uid: 4730 + components: + - type: Transform + pos: 7.5,-60.5 + parent: 1 + - uid: 4731 + components: + - type: Transform + pos: 7.5,-61.5 + parent: 1 + - uid: 4732 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 1 + - uid: 4733 + components: + - type: Transform + pos: 9.5,-51.5 + parent: 1 + - uid: 4734 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 1 + - uid: 4735 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 1 + - uid: 4736 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 1 + - uid: 4737 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 1 + - uid: 4738 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 1 + - uid: 4739 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 1 + - uid: 4740 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 1 + - uid: 4741 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 1 + - uid: 4742 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 1 + - uid: 4743 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 1 + - uid: 4744 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 1 + - uid: 4745 + components: + - type: Transform + pos: 12.5,-46.5 + parent: 1 + - uid: 4746 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 1 + - uid: 4747 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 1 + - uid: 4748 + components: + - type: Transform + pos: 12.5,-43.5 + parent: 1 + - uid: 4749 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 1 + - uid: 4750 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 1 + - uid: 4751 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 1 + - uid: 4752 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 1 + - uid: 4753 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 1 + - uid: 4754 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 1 + - uid: 4755 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 1 + - uid: 4756 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 1 + - uid: 4757 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 1 + - uid: 4758 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 1 + - uid: 4759 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 1 + - uid: 4760 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 1 + - uid: 4761 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1 + - uid: 4762 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 4763 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 1 + - uid: 4764 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 1 + - uid: 4765 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 1 + - uid: 4766 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 1 + - uid: 4767 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 1 + - uid: 4768 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 1 + - uid: 4769 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 1 + - uid: 4770 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 1 + - uid: 4771 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 1 + - uid: 4772 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 1 + - uid: 4773 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 1 + - uid: 4774 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 1 + - uid: 4775 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1 + - uid: 4776 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 1 + - uid: 4777 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 1 + - uid: 4778 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 1 + - uid: 4783 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 1 + - uid: 4784 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 1 + - uid: 4785 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 1 + - uid: 4786 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 1 + - uid: 4787 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 1 + - uid: 4788 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1 + - uid: 4789 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 + - uid: 4790 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1 + - uid: 4791 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1 + - uid: 4792 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1 + - uid: 4793 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1 + - uid: 4794 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1 + - uid: 4795 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 1 + - uid: 4796 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 1 + - uid: 4797 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 1 + - uid: 4798 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 1 + - uid: 4799 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 1 + - uid: 4800 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 1 + - uid: 4801 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1 + - uid: 4802 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 1 + - uid: 4803 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1 + - uid: 4804 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1 + - uid: 4805 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 + - uid: 4806 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - uid: 4807 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - uid: 4808 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 4809 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 4810 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 4811 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 1 + - uid: 4812 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1 + - uid: 4813 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 4814 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 4815 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 4816 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 4817 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 4818 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 4819 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 4820 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - uid: 4821 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 4822 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 4823 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 + - uid: 4824 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1 + - uid: 4825 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - uid: 4826 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 1 + - uid: 4827 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 1 + - uid: 4828 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 1 + - uid: 4829 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 1 + - uid: 4830 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1 + - uid: 4831 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 1 + - uid: 4832 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 1 + - uid: 4833 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 1 + - uid: 4834 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 1 + - uid: 4835 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 1 + - uid: 4836 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 1 + - uid: 4837 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 1 + - uid: 4838 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 1 + - uid: 4839 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 1 + - uid: 4840 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 1 + - uid: 4841 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 1 + - uid: 4842 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 1 + - uid: 4843 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 1 + - uid: 4844 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 1 + - uid: 4845 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 1 + - uid: 4846 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 1 + - uid: 4847 + components: + - type: Transform + pos: -12.5,-29.5 + parent: 1 + - uid: 4848 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 1 + - uid: 4849 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 1 + - uid: 4850 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 1 + - uid: 4851 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 1 + - uid: 4852 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 1 + - uid: 4853 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 1 + - uid: 4854 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 1 + - uid: 4855 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 1 + - uid: 4856 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 1 + - uid: 4857 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 1 + - uid: 4858 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 1 + - uid: 4859 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 1 + - uid: 4860 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 1 + - uid: 4861 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 1 + - uid: 4862 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 1 + - uid: 4863 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 1 + - uid: 4864 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 1 + - uid: 4865 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 1 + - uid: 4866 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 1 + - uid: 4867 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 1 + - uid: 4868 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 1 + - uid: 4869 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 1 + - uid: 4870 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 1 + - uid: 4871 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 1 + - uid: 4872 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 1 + - uid: 4873 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 1 + - uid: 4874 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 1 + - uid: 4875 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 1 + - uid: 4876 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 1 + - uid: 4877 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 1 + - uid: 4878 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 1 + - uid: 4879 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 1 + - uid: 4880 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 1 + - uid: 4881 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 1 + - uid: 4882 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 1 + - uid: 4883 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 1 + - uid: 4884 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 1 + - uid: 4885 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 1 + - uid: 4886 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 1 + - uid: 4887 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 1 + - uid: 4888 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 1 + - uid: 4889 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 1 + - uid: 4890 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 1 + - uid: 4891 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 1 + - uid: 4892 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 1 + - uid: 4893 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 1 + - uid: 4894 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 1 + - uid: 4895 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 1 + - uid: 4896 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 1 + - uid: 4897 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 1 + - uid: 4898 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 1 + - uid: 4899 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 1 + - uid: 4900 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 1 + - uid: 4901 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 1 + - uid: 4902 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 1 + - uid: 4903 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 1 + - uid: 4904 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 1 + - uid: 4905 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 1 + - uid: 4906 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 1 + - uid: 4907 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 1 + - uid: 4908 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 1 + - uid: 4909 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 1 + - uid: 4910 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 1 + - uid: 4911 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 1 + - uid: 4912 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 1 + - uid: 4913 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 1 + - uid: 4914 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 1 + - uid: 4915 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 1 + - uid: 4916 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 1 + - uid: 4917 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 1 + - uid: 4918 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 1 + - uid: 4919 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 1 + - uid: 4920 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 1 + - uid: 4921 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 1 + - uid: 4922 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 1 + - uid: 4923 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 1 + - uid: 4924 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 1 + - uid: 4925 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 1 + - uid: 4926 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 1 + - uid: 4927 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 1 + - uid: 4928 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 1 + - uid: 4929 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 1 + - uid: 4930 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 1 + - uid: 4932 + components: + - type: Transform + pos: -3.5,74.5 + parent: 1 + - uid: 4933 + components: + - type: Transform + pos: -3.5,73.5 + parent: 1 + - uid: 4934 + components: + - type: Transform + pos: -3.5,72.5 + parent: 1 + - uid: 4935 + components: + - type: Transform + pos: -3.5,71.5 + parent: 1 + - uid: 4936 + components: + - type: Transform + pos: -3.5,70.5 + parent: 1 + - uid: 4937 + components: + - type: Transform + pos: -4.5,70.5 + parent: 1 + - uid: 4938 + components: + - type: Transform + pos: -4.5,69.5 + parent: 1 + - uid: 4939 + components: + - type: Transform + pos: -4.5,68.5 + parent: 1 + - uid: 4940 + components: + - type: Transform + pos: -4.5,67.5 + parent: 1 + - uid: 4941 + components: + - type: Transform + pos: -3.5,67.5 + parent: 1 + - uid: 4942 + components: + - type: Transform + pos: -2.5,67.5 + parent: 1 + - uid: 4943 + components: + - type: Transform + pos: -1.5,67.5 + parent: 1 + - uid: 4944 + components: + - type: Transform + pos: -5.5,67.5 + parent: 1 + - uid: 4945 + components: + - type: Transform + pos: -6.5,67.5 + parent: 1 + - uid: 4946 + components: + - type: Transform + pos: -7.5,67.5 + parent: 1 + - uid: 4947 + components: + - type: Transform + pos: -8.5,67.5 + parent: 1 + - uid: 4948 + components: + - type: Transform + pos: -9.5,67.5 + parent: 1 + - uid: 4949 + components: + - type: Transform + pos: -10.5,67.5 + parent: 1 + - uid: 4950 + components: + - type: Transform + pos: -11.5,67.5 + parent: 1 + - uid: 4951 + components: + - type: Transform + pos: -12.5,67.5 + parent: 1 + - uid: 4952 + components: + - type: Transform + pos: -13.5,67.5 + parent: 1 + - uid: 4953 + components: + - type: Transform + pos: -13.5,66.5 + parent: 1 + - uid: 4954 + components: + - type: Transform + pos: -13.5,65.5 + parent: 1 + - uid: 4955 + components: + - type: Transform + pos: -13.5,64.5 + parent: 1 + - uid: 4956 + components: + - type: Transform + pos: -13.5,63.5 + parent: 1 + - uid: 4957 + components: + - type: Transform + pos: -13.5,62.5 + parent: 1 + - uid: 4958 + components: + - type: Transform + pos: -14.5,62.5 + parent: 1 + - uid: 4959 + components: + - type: Transform + pos: -15.5,62.5 + parent: 1 + - uid: 4960 + components: + - type: Transform + pos: -16.5,62.5 + parent: 1 + - uid: 4961 + components: + - type: Transform + pos: -17.5,62.5 + parent: 1 + - uid: 4962 + components: + - type: Transform + pos: -18.5,62.5 + parent: 1 + - uid: 4963 + components: + - type: Transform + pos: -19.5,62.5 + parent: 1 + - uid: 4964 + components: + - type: Transform + pos: -19.5,61.5 + parent: 1 + - uid: 4965 + components: + - type: Transform + pos: -19.5,60.5 + parent: 1 + - uid: 4966 + components: + - type: Transform + pos: -19.5,59.5 + parent: 1 + - uid: 4967 + components: + - type: Transform + pos: -19.5,58.5 + parent: 1 + - uid: 4968 + components: + - type: Transform + pos: -19.5,57.5 + parent: 1 + - uid: 4969 + components: + - type: Transform + pos: -20.5,57.5 + parent: 1 + - uid: 4970 + components: + - type: Transform + pos: -21.5,57.5 + parent: 1 + - uid: 4971 + components: + - type: Transform + pos: -21.5,56.5 + parent: 1 + - uid: 4972 + components: + - type: Transform + pos: -21.5,55.5 + parent: 1 + - uid: 4973 + components: + - type: Transform + pos: -21.5,54.5 + parent: 1 + - uid: 4974 + components: + - type: Transform + pos: -21.5,53.5 + parent: 1 + - uid: 4975 + components: + - type: Transform + pos: -21.5,52.5 + parent: 1 + - uid: 4976 + components: + - type: Transform + pos: -21.5,51.5 + parent: 1 + - uid: 4977 + components: + - type: Transform + pos: -21.5,50.5 + parent: 1 + - uid: 4978 + components: + - type: Transform + pos: -21.5,49.5 + parent: 1 + - uid: 4979 + components: + - type: Transform + pos: -21.5,48.5 + parent: 1 + - uid: 4980 + components: + - type: Transform + pos: -21.5,47.5 + parent: 1 + - uid: 4981 + components: + - type: Transform + pos: -21.5,46.5 + parent: 1 + - uid: 4982 + components: + - type: Transform + pos: -21.5,45.5 + parent: 1 + - uid: 4983 + components: + - type: Transform + pos: -21.5,44.5 + parent: 1 + - uid: 4984 + components: + - type: Transform + pos: -21.5,43.5 + parent: 1 + - uid: 4985 + components: + - type: Transform + pos: -21.5,42.5 + parent: 1 + - uid: 4986 + components: + - type: Transform + pos: -21.5,41.5 + parent: 1 + - uid: 4987 + components: + - type: Transform + pos: -21.5,40.5 + parent: 1 + - uid: 4988 + components: + - type: Transform + pos: -21.5,39.5 + parent: 1 + - uid: 4989 + components: + - type: Transform + pos: -21.5,38.5 + parent: 1 + - uid: 4990 + components: + - type: Transform + pos: -21.5,37.5 + parent: 1 + - uid: 4991 + components: + - type: Transform + pos: -21.5,36.5 + parent: 1 + - uid: 4992 + components: + - type: Transform + pos: -22.5,57.5 + parent: 1 + - uid: 4993 + components: + - type: Transform + pos: -23.5,57.5 + parent: 1 + - uid: 4994 + components: + - type: Transform + pos: -24.5,57.5 + parent: 1 + - uid: 4995 + components: + - type: Transform + pos: -24.5,56.5 + parent: 1 + - uid: 4996 + components: + - type: Transform + pos: -24.5,55.5 + parent: 1 + - uid: 4997 + components: + - type: Transform + pos: -24.5,54.5 + parent: 1 + - uid: 4998 + components: + - type: Transform + pos: -24.5,53.5 + parent: 1 + - uid: 4999 + components: + - type: Transform + pos: -24.5,52.5 + parent: 1 + - uid: 5000 + components: + - type: Transform + pos: -24.5,51.5 + parent: 1 + - uid: 5001 + components: + - type: Transform + pos: -24.5,50.5 + parent: 1 + - uid: 5002 + components: + - type: Transform + pos: -0.5,67.5 + parent: 1 + - uid: 5003 + components: + - type: Transform + pos: 0.5,67.5 + parent: 1 + - uid: 5004 + components: + - type: Transform + pos: 1.5,67.5 + parent: 1 + - uid: 5005 + components: + - type: Transform + pos: 2.5,67.5 + parent: 1 + - uid: 5006 + components: + - type: Transform + pos: 3.5,67.5 + parent: 1 + - uid: 5007 + components: + - type: Transform + pos: 4.5,67.5 + parent: 1 + - uid: 5008 + components: + - type: Transform + pos: 5.5,67.5 + parent: 1 + - uid: 5009 + components: + - type: Transform + pos: 6.5,67.5 + parent: 1 + - uid: 5010 + components: + - type: Transform + pos: 7.5,67.5 + parent: 1 + - uid: 5011 + components: + - type: Transform + pos: 7.5,66.5 + parent: 1 + - uid: 5012 + components: + - type: Transform + pos: 7.5,65.5 + parent: 1 + - uid: 5013 + components: + - type: Transform + pos: 7.5,64.5 + parent: 1 + - uid: 5014 + components: + - type: Transform + pos: 7.5,63.5 + parent: 1 + - uid: 5015 + components: + - type: Transform + pos: 8.5,63.5 + parent: 1 + - uid: 5016 + components: + - type: Transform + pos: 9.5,63.5 + parent: 1 + - uid: 5017 + components: + - type: Transform + pos: 10.5,63.5 + parent: 1 + - uid: 5018 + components: + - type: Transform + pos: 11.5,63.5 + parent: 1 + - uid: 5019 + components: + - type: Transform + pos: 12.5,63.5 + parent: 1 + - uid: 5020 + components: + - type: Transform + pos: 13.5,63.5 + parent: 1 + - uid: 5021 + components: + - type: Transform + pos: 14.5,63.5 + parent: 1 + - uid: 5022 + components: + - type: Transform + pos: 15.5,63.5 + parent: 1 + - uid: 5023 + components: + - type: Transform + pos: 16.5,63.5 + parent: 1 + - uid: 5024 + components: + - type: Transform + pos: 17.5,63.5 + parent: 1 + - uid: 5025 + components: + - type: Transform + pos: 18.5,63.5 + parent: 1 + - uid: 5026 + components: + - type: Transform + pos: 18.5,62.5 + parent: 1 + - uid: 5027 + components: + - type: Transform + pos: 18.5,61.5 + parent: 1 + - uid: 5028 + components: + - type: Transform + pos: 18.5,60.5 + parent: 1 + - uid: 5029 + components: + - type: Transform + pos: 18.5,59.5 + parent: 1 + - uid: 5030 + components: + - type: Transform + pos: 18.5,58.5 + parent: 1 + - uid: 5031 + components: + - type: Transform + pos: 19.5,58.5 + parent: 1 + - uid: 5032 + components: + - type: Transform + pos: 19.5,57.5 + parent: 1 + - uid: 5033 + components: + - type: Transform + pos: 19.5,56.5 + parent: 1 + - uid: 5034 + components: + - type: Transform + pos: 18.5,56.5 + parent: 1 + - uid: 5035 + components: + - type: Transform + pos: 17.5,56.5 + parent: 1 + - uid: 5036 + components: + - type: Transform + pos: 16.5,56.5 + parent: 1 + - uid: 5037 + components: + - type: Transform + pos: 20.5,56.5 + parent: 1 + - uid: 5038 + components: + - type: Transform + pos: 21.5,56.5 + parent: 1 + - uid: 5039 + components: + - type: Transform + pos: 22.5,56.5 + parent: 1 + - uid: 5040 + components: + - type: Transform + pos: 22.5,55.5 + parent: 1 + - uid: 5041 + components: + - type: Transform + pos: 22.5,54.5 + parent: 1 + - uid: 5042 + components: + - type: Transform + pos: 22.5,53.5 + parent: 1 + - uid: 5043 + components: + - type: Transform + pos: 22.5,52.5 + parent: 1 + - uid: 5044 + components: + - type: Transform + pos: 22.5,51.5 + parent: 1 + - uid: 5045 + components: + - type: Transform + pos: 22.5,50.5 + parent: 1 + - uid: 5046 + components: + - type: Transform + pos: 22.5,49.5 + parent: 1 + - uid: 5047 + components: + - type: Transform + pos: 22.5,48.5 + parent: 1 + - uid: 5048 + components: + - type: Transform + pos: 22.5,47.5 + parent: 1 + - uid: 5049 + components: + - type: Transform + pos: 22.5,46.5 + parent: 1 + - uid: 5050 + components: + - type: Transform + pos: 22.5,45.5 + parent: 1 + - uid: 5051 + components: + - type: Transform + pos: 23.5,45.5 + parent: 1 + - uid: 5052 + components: + - type: Transform + pos: 24.5,45.5 + parent: 1 + - uid: 5053 + components: + - type: Transform + pos: 25.5,45.5 + parent: 1 + - uid: 5054 + components: + - type: Transform + pos: 25.5,44.5 + parent: 1 + - uid: 5055 + components: + - type: Transform + pos: 25.5,43.5 + parent: 1 + - uid: 5056 + components: + - type: Transform + pos: 25.5,42.5 + parent: 1 + - uid: 5057 + components: + - type: Transform + pos: 25.5,41.5 + parent: 1 + - uid: 5058 + components: + - type: Transform + pos: 25.5,40.5 + parent: 1 + - uid: 5059 + components: + - type: Transform + pos: 25.5,39.5 + parent: 1 + - uid: 5060 + components: + - type: Transform + pos: 25.5,38.5 + parent: 1 + - uid: 5061 + components: + - type: Transform + pos: 25.5,37.5 + parent: 1 + - uid: 5062 + components: + - type: Transform + pos: 25.5,36.5 + parent: 1 + - uid: 5063 + components: + - type: Transform + pos: 16.5,55.5 + parent: 1 + - uid: 5064 + components: + - type: Transform + pos: 16.5,54.5 + parent: 1 + - uid: 5065 + components: + - type: Transform + pos: 16.5,53.5 + parent: 1 + - uid: 5066 + components: + - type: Transform + pos: 16.5,52.5 + parent: 1 + - uid: 5067 + components: + - type: Transform + pos: 16.5,52.5 + parent: 1 + - uid: 5068 + components: + - type: Transform + pos: 17.5,52.5 + parent: 1 + - uid: 5069 + components: + - type: Transform + pos: 18.5,52.5 + parent: 1 + - uid: 5070 + components: + - type: Transform + pos: 19.5,52.5 + parent: 1 + - uid: 5071 + components: + - type: Transform + pos: 20.5,52.5 + parent: 1 + - uid: 5072 + components: + - type: Transform + pos: 20.5,53.5 + parent: 1 + - uid: 5073 + components: + - type: Transform + pos: 20.5,54.5 + parent: 1 + - uid: 5074 + components: + - type: Transform + pos: -20.5,36.5 + parent: 1 + - uid: 5075 + components: + - type: Transform + pos: -19.5,36.5 + parent: 1 + - uid: 5076 + components: + - type: Transform + pos: -18.5,36.5 + parent: 1 + - uid: 5077 + components: + - type: Transform + pos: -17.5,36.5 + parent: 1 + - uid: 5078 + components: + - type: Transform + pos: -16.5,36.5 + parent: 1 + - uid: 5079 + components: + - type: Transform + pos: -15.5,36.5 + parent: 1 + - uid: 5080 + components: + - type: Transform + pos: -14.5,36.5 + parent: 1 + - uid: 5081 + components: + - type: Transform + pos: -13.5,36.5 + parent: 1 + - uid: 5082 + components: + - type: Transform + pos: -12.5,36.5 + parent: 1 + - uid: 5083 + components: + - type: Transform + pos: -11.5,36.5 + parent: 1 + - uid: 5084 + components: + - type: Transform + pos: -10.5,36.5 + parent: 1 + - uid: 5085 + components: + - type: Transform + pos: -9.5,36.5 + parent: 1 + - uid: 5086 + components: + - type: Transform + pos: -8.5,36.5 + parent: 1 + - uid: 5087 + components: + - type: Transform + pos: -7.5,36.5 + parent: 1 + - uid: 5088 + components: + - type: Transform + pos: -6.5,36.5 + parent: 1 + - uid: 5089 + components: + - type: Transform + pos: -5.5,36.5 + parent: 1 + - uid: 5090 + components: + - type: Transform + pos: -4.5,36.5 + parent: 1 + - uid: 5091 + components: + - type: Transform + pos: -3.5,36.5 + parent: 1 + - uid: 5092 + components: + - type: Transform + pos: -2.5,36.5 + parent: 1 + - uid: 5093 + components: + - type: Transform + pos: -1.5,36.5 + parent: 1 + - uid: 5094 + components: + - type: Transform + pos: -0.5,36.5 + parent: 1 + - uid: 5095 + components: + - type: Transform + pos: 0.5,36.5 + parent: 1 + - uid: 5096 + components: + - type: Transform + pos: 1.5,36.5 + parent: 1 + - uid: 5097 + components: + - type: Transform + pos: 2.5,36.5 + parent: 1 + - uid: 5098 + components: + - type: Transform + pos: 3.5,36.5 + parent: 1 + - uid: 5099 + components: + - type: Transform + pos: 4.5,36.5 + parent: 1 + - uid: 5100 + components: + - type: Transform + pos: 5.5,36.5 + parent: 1 + - uid: 5101 + components: + - type: Transform + pos: 6.5,36.5 + parent: 1 + - uid: 5102 + components: + - type: Transform + pos: 7.5,36.5 + parent: 1 + - uid: 5103 + components: + - type: Transform + pos: 8.5,36.5 + parent: 1 + - uid: 5104 + components: + - type: Transform + pos: 9.5,36.5 + parent: 1 + - uid: 5105 + components: + - type: Transform + pos: 10.5,36.5 + parent: 1 + - uid: 5106 + components: + - type: Transform + pos: 11.5,36.5 + parent: 1 + - uid: 5107 + components: + - type: Transform + pos: 12.5,36.5 + parent: 1 + - uid: 5108 + components: + - type: Transform + pos: 13.5,36.5 + parent: 1 + - uid: 5109 + components: + - type: Transform + pos: 14.5,36.5 + parent: 1 + - uid: 5110 + components: + - type: Transform + pos: 15.5,36.5 + parent: 1 + - uid: 5111 + components: + - type: Transform + pos: 16.5,36.5 + parent: 1 + - uid: 5112 + components: + - type: Transform + pos: 17.5,36.5 + parent: 1 + - uid: 5113 + components: + - type: Transform + pos: 18.5,36.5 + parent: 1 + - uid: 5114 + components: + - type: Transform + pos: 19.5,36.5 + parent: 1 + - uid: 5115 + components: + - type: Transform + pos: 20.5,36.5 + parent: 1 + - uid: 5116 + components: + - type: Transform + pos: 21.5,36.5 + parent: 1 + - uid: 5117 + components: + - type: Transform + pos: 22.5,36.5 + parent: 1 + - uid: 5118 + components: + - type: Transform + pos: 23.5,36.5 + parent: 1 + - uid: 5119 + components: + - type: Transform + pos: 24.5,36.5 + parent: 1 + - uid: 5120 + components: + - type: Transform + pos: -1.5,66.5 + parent: 1 + - uid: 5121 + components: + - type: Transform + pos: -1.5,65.5 + parent: 1 + - uid: 5122 + components: + - type: Transform + pos: -1.5,64.5 + parent: 1 + - uid: 5123 + components: + - type: Transform + pos: -1.5,63.5 + parent: 1 + - uid: 5124 + components: + - type: Transform + pos: -1.5,62.5 + parent: 1 + - uid: 5125 + components: + - type: Transform + pos: -1.5,61.5 + parent: 1 + - uid: 5126 + components: + - type: Transform + pos: -1.5,60.5 + parent: 1 + - uid: 5127 + components: + - type: Transform + pos: -1.5,59.5 + parent: 1 + - uid: 5128 + components: + - type: Transform + pos: -1.5,58.5 + parent: 1 + - uid: 5129 + components: + - type: Transform + pos: -1.5,57.5 + parent: 1 + - uid: 5130 + components: + - type: Transform + pos: -1.5,56.5 + parent: 1 + - uid: 5131 + components: + - type: Transform + pos: -1.5,55.5 + parent: 1 + - uid: 5132 + components: + - type: Transform + pos: -1.5,54.5 + parent: 1 + - uid: 5133 + components: + - type: Transform + pos: -1.5,53.5 + parent: 1 + - uid: 5134 + components: + - type: Transform + pos: -1.5,52.5 + parent: 1 + - uid: 5135 + components: + - type: Transform + pos: -1.5,51.5 + parent: 1 + - uid: 5136 + components: + - type: Transform + pos: -1.5,50.5 + parent: 1 + - uid: 5137 + components: + - type: Transform + pos: -1.5,49.5 + parent: 1 + - uid: 5138 + components: + - type: Transform + pos: -1.5,48.5 + parent: 1 + - uid: 5139 + components: + - type: Transform + pos: -1.5,47.5 + parent: 1 + - uid: 5140 + components: + - type: Transform + pos: -1.5,46.5 + parent: 1 + - uid: 5141 + components: + - type: Transform + pos: -1.5,45.5 + parent: 1 + - uid: 5142 + components: + - type: Transform + pos: -1.5,44.5 + parent: 1 + - uid: 5143 + components: + - type: Transform + pos: -1.5,43.5 + parent: 1 + - uid: 5144 + components: + - type: Transform + pos: -1.5,42.5 + parent: 1 + - uid: 5145 + components: + - type: Transform + pos: -1.5,41.5 + parent: 1 + - uid: 5146 + components: + - type: Transform + pos: -1.5,40.5 + parent: 1 + - uid: 5147 + components: + - type: Transform + pos: -1.5,39.5 + parent: 1 + - uid: 5148 + components: + - type: Transform + pos: -1.5,38.5 + parent: 1 + - uid: 5149 + components: + - type: Transform + pos: -1.5,37.5 + parent: 1 + - uid: 5150 + components: + - type: Transform + pos: 0.5,35.5 + parent: 1 + - uid: 5151 + components: + - type: Transform + pos: 0.5,34.5 + parent: 1 + - uid: 5152 + components: + - type: Transform + pos: 0.5,33.5 + parent: 1 + - uid: 5153 + components: + - type: Transform + pos: 0.5,32.5 + parent: 1 + - uid: 5154 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1 + - uid: 5155 + components: + - type: Transform + pos: 0.5,30.5 + parent: 1 + - uid: 5156 + components: + - type: Transform + pos: 0.5,29.5 + parent: 1 + - uid: 5157 + components: + - type: Transform + pos: 0.5,28.5 + parent: 1 + - uid: 5158 + components: + - type: Transform + pos: 0.5,27.5 + parent: 1 + - uid: 5159 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1 + - uid: 5160 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1 + - uid: 5161 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1 + - uid: 5162 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1 + - uid: 5163 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1 + - uid: 5164 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 + - uid: 5165 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 + - uid: 5166 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 5167 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 5168 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 5169 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 5170 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 5171 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 5172 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 5173 + components: + - type: Transform + pos: 25.5,35.5 + parent: 1 + - uid: 5174 + components: + - type: Transform + pos: 24.5,34.5 + parent: 1 + - uid: 5175 + components: + - type: Transform + pos: 24.5,33.5 + parent: 1 + - uid: 5176 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1 + - uid: 5177 + components: + - type: Transform + pos: 24.5,31.5 + parent: 1 + - uid: 5178 + components: + - type: Transform + pos: 24.5,30.5 + parent: 1 + - uid: 5179 + components: + - type: Transform + pos: 24.5,29.5 + parent: 1 + - uid: 5180 + components: + - type: Transform + pos: 24.5,28.5 + parent: 1 + - uid: 5181 + components: + - type: Transform + pos: 24.5,27.5 + parent: 1 + - uid: 5182 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1 + - uid: 5183 + components: + - type: Transform + pos: 24.5,25.5 + parent: 1 + - uid: 5184 + components: + - type: Transform + pos: 24.5,24.5 + parent: 1 + - uid: 5185 + components: + - type: Transform + pos: 23.5,24.5 + parent: 1 + - uid: 5186 + components: + - type: Transform + pos: 22.5,24.5 + parent: 1 + - uid: 5187 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1 + - uid: 5188 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1 + - uid: 5189 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1 + - uid: 5190 + components: + - type: Transform + pos: 19.5,23.5 + parent: 1 + - uid: 5191 + components: + - type: Transform + pos: 19.5,22.5 + parent: 1 + - uid: 5192 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1 + - uid: 5193 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1 + - uid: 5194 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1 + - uid: 5195 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1 + - uid: 5196 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 5197 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 5198 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 5199 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 5200 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 5201 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1 + - uid: 5202 + components: + - type: Transform + pos: 17.5,22.5 + parent: 1 + - uid: 5203 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 5204 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 5205 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1 + - uid: 5206 + components: + - type: Transform + pos: 14.5,23.5 + parent: 1 + - uid: 5207 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1 + - uid: 5208 + components: + - type: Transform + pos: 14.5,25.5 + parent: 1 + - uid: 5209 + components: + - type: Transform + pos: 15.5,25.5 + parent: 1 + - uid: 5210 + components: + - type: Transform + pos: 16.5,25.5 + parent: 1 + - uid: 5211 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 5212 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1 + - uid: 5213 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 + - uid: 5214 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 5215 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1 + - uid: 5216 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 5217 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 5218 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 5219 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 5220 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 5221 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 5222 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 5223 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 5224 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 5225 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 5226 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 5227 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 5228 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 5229 + components: + - type: Transform + pos: 26.5,36.5 + parent: 1 + - uid: 5230 + components: + - type: Transform + pos: 27.5,36.5 + parent: 1 + - uid: 5231 + components: + - type: Transform + pos: 28.5,36.5 + parent: 1 + - uid: 5232 + components: + - type: Transform + pos: 29.5,36.5 + parent: 1 + - uid: 5233 + components: + - type: Transform + pos: 30.5,36.5 + parent: 1 + - uid: 5234 + components: + - type: Transform + pos: 31.5,36.5 + parent: 1 + - uid: 5235 + components: + - type: Transform + pos: 32.5,36.5 + parent: 1 + - uid: 5236 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1 + - uid: 5237 + components: + - type: Transform + pos: 32.5,34.5 + parent: 1 + - uid: 5238 + components: + - type: Transform + pos: 32.5,33.5 + parent: 1 + - uid: 5239 + components: + - type: Transform + pos: 32.5,32.5 + parent: 1 + - uid: 5240 + components: + - type: Transform + pos: 32.5,31.5 + parent: 1 + - uid: 5241 + components: + - type: Transform + pos: 32.5,30.5 + parent: 1 + - uid: 5242 + components: + - type: Transform + pos: 32.5,29.5 + parent: 1 + - uid: 5243 + components: + - type: Transform + pos: 32.5,28.5 + parent: 1 + - uid: 5244 + components: + - type: Transform + pos: 32.5,27.5 + parent: 1 + - uid: 5245 + components: + - type: Transform + pos: 32.5,26.5 + parent: 1 + - uid: 5246 + components: + - type: Transform + pos: 32.5,25.5 + parent: 1 + - uid: 5247 + components: + - type: Transform + pos: 32.5,24.5 + parent: 1 + - uid: 5248 + components: + - type: Transform + pos: 32.5,23.5 + parent: 1 + - uid: 5249 + components: + - type: Transform + pos: 32.5,22.5 + parent: 1 + - uid: 5250 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1 + - uid: 5251 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1 + - uid: 5252 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1 + - uid: 5253 + components: + - type: Transform + pos: 32.5,18.5 + parent: 1 + - uid: 5254 + components: + - type: Transform + pos: 32.5,17.5 + parent: 1 + - uid: 5255 + components: + - type: Transform + pos: 32.5,16.5 + parent: 1 + - uid: 5256 + components: + - type: Transform + pos: 32.5,15.5 + parent: 1 + - uid: 5257 + components: + - type: Transform + pos: 32.5,14.5 + parent: 1 + - uid: 5258 + components: + - type: Transform + pos: 32.5,13.5 + parent: 1 + - uid: 5259 + components: + - type: Transform + pos: 32.5,12.5 + parent: 1 + - uid: 5260 + components: + - type: Transform + pos: 32.5,11.5 + parent: 1 + - uid: 5261 + components: + - type: Transform + pos: 32.5,10.5 + parent: 1 + - uid: 5262 + components: + - type: Transform + pos: 32.5,9.5 + parent: 1 + - uid: 5263 + components: + - type: Transform + pos: 32.5,8.5 + parent: 1 + - uid: 5264 + components: + - type: Transform + pos: 32.5,7.5 + parent: 1 + - uid: 5265 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1 + - uid: 5266 + components: + - type: Transform + pos: 31.5,6.5 + parent: 1 + - uid: 5267 + components: + - type: Transform + pos: 31.5,5.5 + parent: 1 + - uid: 5268 + components: + - type: Transform + pos: 31.5,4.5 + parent: 1 + - uid: 5269 + components: + - type: Transform + pos: 31.5,3.5 + parent: 1 + - uid: 5270 + components: + - type: Transform + pos: 31.5,2.5 + parent: 1 + - uid: 5271 + components: + - type: Transform + pos: 31.5,1.5 + parent: 1 + - uid: 5272 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 5273 + components: + - type: Transform + pos: 31.5,0.5 + parent: 1 + - uid: 5274 + components: + - type: Transform + pos: 32.5,0.5 + parent: 1 + - uid: 5275 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 1 + - uid: 5276 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 1 + - uid: 5277 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 1 + - uid: 5278 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 + - uid: 5279 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 1 + - uid: 5280 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 1 + - uid: 5281 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 1 + - uid: 5282 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 1 + - uid: 5283 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 1 + - uid: 5284 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 1 + - uid: 5285 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 1 + - uid: 5286 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1 + - uid: 5287 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 1 + - uid: 5288 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 1 + - uid: 5289 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 1 + - uid: 5290 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 + - uid: 5291 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 5292 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 5293 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 5294 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1 + - uid: 5295 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 5296 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1 + - uid: 5297 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 + - uid: 5298 + components: + - type: Transform + pos: 15.5,6.5 + parent: 1 + - uid: 5299 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 5300 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 5301 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 + - uid: 5302 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1 + - uid: 5303 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1 + - uid: 5304 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 5305 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 5306 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 5307 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 5308 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 5309 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 5310 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1 + - uid: 5311 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 1 + - uid: 5312 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 1 + - uid: 5313 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 5314 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 1 + - uid: 5315 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1 + - uid: 5316 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 5317 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 5318 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1 + - uid: 5319 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - uid: 5320 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - uid: 5321 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 + - uid: 5322 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 + - uid: 5323 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1 + - uid: 5324 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 1 + - uid: 5325 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 1 + - uid: 5326 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 1 + - uid: 5327 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 1 + - uid: 5328 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 1 + - uid: 5329 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 1 + - uid: 5330 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 1 + - uid: 5331 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 1 + - uid: 5332 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 1 + - uid: 5333 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 1 + - uid: 5334 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 5335 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 5336 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 5337 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 5338 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 5339 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 5340 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1 + - uid: 5341 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1 + - uid: 5342 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1 + - uid: 5343 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - uid: 5344 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 5345 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 5346 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 5347 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 5349 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1 + - uid: 5350 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 5351 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 5352 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 5353 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 5354 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 5355 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 5356 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 5357 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 5358 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 5359 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 + - uid: 5360 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 5361 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - uid: 5362 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 5363 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 5364 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 5365 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 5366 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 5367 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1 + - uid: 5368 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1 + - uid: 5369 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 1 + - uid: 5370 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 1 + - uid: 5371 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1 + - uid: 5372 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 1 + - uid: 5373 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 1 + - uid: 5374 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 1 + - uid: 5375 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 1 + - uid: 5376 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 1 + - uid: 5377 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 1 + - uid: 5378 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 1 + - uid: 5379 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 1 + - uid: 5380 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 1 + - uid: 5381 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 1 + - uid: 5382 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 1 + - uid: 5383 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 1 + - uid: 5384 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 1 + - uid: 5385 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 1 + - uid: 5386 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 1 + - uid: 5387 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 1 + - uid: 5388 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 1 + - uid: 5389 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 1 + - uid: 5391 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 1 + - uid: 5392 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 1 + - uid: 5393 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 1 + - uid: 5394 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 1 + - uid: 5395 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 1 + - uid: 5396 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 1 + - uid: 5397 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1 + - uid: 5398 + components: + - type: Transform + pos: -32.5,0.5 + parent: 1 + - uid: 5399 + components: + - type: Transform + pos: -32.5,1.5 + parent: 1 + - uid: 5400 + components: + - type: Transform + pos: -32.5,2.5 + parent: 1 + - uid: 5401 + components: + - type: Transform + pos: -32.5,3.5 + parent: 1 + - uid: 5402 + components: + - type: Transform + pos: -32.5,4.5 + parent: 1 + - uid: 5403 + components: + - type: Transform + pos: -32.5,5.5 + parent: 1 + - uid: 5404 + components: + - type: Transform + pos: -32.5,6.5 + parent: 1 + - uid: 5405 + components: + - type: Transform + pos: -32.5,7.5 + parent: 1 + - uid: 5406 + components: + - type: Transform + pos: -32.5,8.5 + parent: 1 + - uid: 5407 + components: + - type: Transform + pos: -32.5,9.5 + parent: 1 + - uid: 5408 + components: + - type: Transform + pos: -32.5,10.5 + parent: 1 + - uid: 5409 + components: + - type: Transform + pos: -32.5,11.5 + parent: 1 + - uid: 5410 + components: + - type: Transform + pos: -32.5,12.5 + parent: 1 + - uid: 5411 + components: + - type: Transform + pos: -32.5,13.5 + parent: 1 + - uid: 5412 + components: + - type: Transform + pos: -31.5,13.5 + parent: 1 + - uid: 5413 + components: + - type: Transform + pos: -30.5,13.5 + parent: 1 + - uid: 5414 + components: + - type: Transform + pos: -29.5,13.5 + parent: 1 + - uid: 5415 + components: + - type: Transform + pos: -28.5,13.5 + parent: 1 + - uid: 5416 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1 + - uid: 5417 + components: + - type: Transform + pos: -26.5,13.5 + parent: 1 + - uid: 5418 + components: + - type: Transform + pos: -25.5,13.5 + parent: 1 + - uid: 5419 + components: + - type: Transform + pos: -24.5,13.5 + parent: 1 + - uid: 5420 + components: + - type: Transform + pos: -23.5,13.5 + parent: 1 + - uid: 5421 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1 + - uid: 5422 + components: + - type: Transform + pos: -21.5,13.5 + parent: 1 + - uid: 5423 + components: + - type: Transform + pos: -20.5,13.5 + parent: 1 + - uid: 5424 + components: + - type: Transform + pos: -19.5,13.5 + parent: 1 + - uid: 5425 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1 + - uid: 5426 + components: + - type: Transform + pos: -17.5,13.5 + parent: 1 + - uid: 5427 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1 + - uid: 5428 + components: + - type: Transform + pos: -15.5,13.5 + parent: 1 + - uid: 5429 + components: + - type: Transform + pos: -14.5,13.5 + parent: 1 + - uid: 5430 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1 + - uid: 5431 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1 + - uid: 5432 + components: + - type: Transform + pos: -11.5,13.5 + parent: 1 + - uid: 5433 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - uid: 5434 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 + - uid: 5435 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 5436 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 5437 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 5438 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 5439 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 5440 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 5441 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 5442 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 5443 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 5444 + components: + - type: Transform + pos: -30.5,14.5 + parent: 1 + - uid: 5445 + components: + - type: Transform + pos: -30.5,15.5 + parent: 1 + - uid: 5446 + components: + - type: Transform + pos: -30.5,16.5 + parent: 1 + - uid: 5447 + components: + - type: Transform + pos: -30.5,17.5 + parent: 1 + - uid: 5448 + components: + - type: Transform + pos: -30.5,18.5 + parent: 1 + - uid: 5449 + components: + - type: Transform + pos: -30.5,19.5 + parent: 1 + - uid: 5450 + components: + - type: Transform + pos: -30.5,20.5 + parent: 1 + - uid: 5451 + components: + - type: Transform + pos: -30.5,21.5 + parent: 1 + - uid: 5452 + components: + - type: Transform + pos: -30.5,22.5 + parent: 1 + - uid: 5453 + components: + - type: Transform + pos: -30.5,23.5 + parent: 1 + - uid: 5454 + components: + - type: Transform + pos: -30.5,24.5 + parent: 1 + - uid: 5455 + components: + - type: Transform + pos: -30.5,25.5 + parent: 1 + - uid: 5456 + components: + - type: Transform + pos: -30.5,26.5 + parent: 1 + - uid: 5457 + components: + - type: Transform + pos: -30.5,27.5 + parent: 1 + - uid: 5458 + components: + - type: Transform + pos: -30.5,28.5 + parent: 1 + - uid: 5459 + components: + - type: Transform + pos: -30.5,29.5 + parent: 1 + - uid: 5460 + components: + - type: Transform + pos: -30.5,30.5 + parent: 1 + - uid: 5461 + components: + - type: Transform + pos: -30.5,31.5 + parent: 1 + - uid: 5462 + components: + - type: Transform + pos: -30.5,32.5 + parent: 1 + - uid: 5463 + components: + - type: Transform + pos: -30.5,33.5 + parent: 1 + - uid: 5464 + components: + - type: Transform + pos: -30.5,34.5 + parent: 1 + - uid: 5465 + components: + - type: Transform + pos: -30.5,35.5 + parent: 1 + - uid: 5466 + components: + - type: Transform + pos: -30.5,36.5 + parent: 1 + - uid: 5467 + components: + - type: Transform + pos: -29.5,36.5 + parent: 1 + - uid: 5468 + components: + - type: Transform + pos: -28.5,36.5 + parent: 1 + - uid: 5469 + components: + - type: Transform + pos: -27.5,36.5 + parent: 1 + - uid: 5470 + components: + - type: Transform + pos: -26.5,36.5 + parent: 1 + - uid: 5471 + components: + - type: Transform + pos: -25.5,36.5 + parent: 1 + - uid: 5472 + components: + - type: Transform + pos: -24.5,36.5 + parent: 1 + - uid: 5473 + components: + - type: Transform + pos: -23.5,36.5 + parent: 1 + - uid: 5474 + components: + - type: Transform + pos: -22.5,36.5 + parent: 1 + - uid: 5475 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 1 + - uid: 5476 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 1 + - uid: 5477 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 1 + - uid: 5478 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 1 + - uid: 5479 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1 + - uid: 5480 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 + - uid: 5481 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1 + - uid: 5482 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1 + - uid: 5483 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1 + - uid: 5484 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1 + - uid: 5485 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1 + - uid: 5486 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 5487 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1 + - uid: 5488 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1 + - uid: 5489 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 1 + - uid: 5490 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1 + - uid: 5491 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - uid: 5492 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 5493 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 5494 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 + - uid: 5495 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 5496 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 + - uid: 5497 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 5498 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 5499 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 5500 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 5501 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 5502 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1 + - uid: 5503 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1 + - uid: 5504 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1 + - uid: 5505 + components: + - type: Transform + pos: -15.5,10.5 + parent: 1 + - uid: 5506 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1 + - uid: 5507 + components: + - type: Transform + pos: -15.5,12.5 + parent: 1 + - uid: 5508 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1 + - uid: 5509 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1 + - uid: 5510 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - uid: 5511 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 5512 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 5513 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 + - uid: 5514 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 1 + - uid: 5515 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1 + - uid: 5516 + components: + - type: Transform + pos: -23.5,35.5 + parent: 1 + - uid: 5517 + components: + - type: Transform + pos: -23.5,34.5 + parent: 1 + - uid: 5518 + components: + - type: Transform + pos: -23.5,33.5 + parent: 1 + - uid: 5519 + components: + - type: Transform + pos: -23.5,32.5 + parent: 1 + - uid: 5520 + components: + - type: Transform + pos: -23.5,31.5 + parent: 1 + - uid: 5521 + components: + - type: Transform + pos: -23.5,30.5 + parent: 1 + - uid: 5522 + components: + - type: Transform + pos: -23.5,29.5 + parent: 1 + - uid: 5523 + components: + - type: Transform + pos: -23.5,28.5 + parent: 1 + - uid: 5524 + components: + - type: Transform + pos: -23.5,27.5 + parent: 1 + - uid: 5525 + components: + - type: Transform + pos: -23.5,26.5 + parent: 1 + - uid: 5526 + components: + - type: Transform + pos: -23.5,25.5 + parent: 1 + - uid: 5527 + components: + - type: Transform + pos: -22.5,27.5 + parent: 1 + - uid: 5528 + components: + - type: Transform + pos: -21.5,27.5 + parent: 1 + - uid: 5529 + components: + - type: Transform + pos: -20.5,27.5 + parent: 1 + - uid: 5536 + components: + - type: Transform + pos: -21.5,29.5 + parent: 1 + - uid: 5537 + components: + - type: Transform + pos: -21.5,30.5 + parent: 1 + - uid: 5538 + components: + - type: Transform + pos: -24.5,25.5 + parent: 1 + - uid: 5539 + components: + - type: Transform + pos: -25.5,25.5 + parent: 1 + - uid: 5540 + components: + - type: Transform + pos: -26.5,25.5 + parent: 1 + - uid: 5541 + components: + - type: Transform + pos: -27.5,25.5 + parent: 1 + - uid: 5542 + components: + - type: Transform + pos: -27.5,24.5 + parent: 1 + - uid: 5543 + components: + - type: Transform + pos: -27.5,23.5 + parent: 1 + - uid: 5544 + components: + - type: Transform + pos: -27.5,22.5 + parent: 1 + - uid: 5545 + components: + - type: Transform + pos: -27.5,21.5 + parent: 1 + - uid: 5546 + components: + - type: Transform + pos: -27.5,20.5 + parent: 1 + - uid: 5547 + components: + - type: Transform + pos: -27.5,19.5 + parent: 1 + - uid: 5548 + components: + - type: Transform + pos: -27.5,18.5 + parent: 1 + - uid: 5549 + components: + - type: Transform + pos: -27.5,17.5 + parent: 1 + - uid: 5550 + components: + - type: Transform + pos: -26.5,17.5 + parent: 1 + - uid: 5551 + components: + - type: Transform + pos: -25.5,17.5 + parent: 1 + - uid: 5552 + components: + - type: Transform + pos: -25.5,15.5 + parent: 1 + - uid: 5553 + components: + - type: Transform + pos: -25.5,16.5 + parent: 1 + - uid: 5557 + components: + - type: Transform + pos: -28.5,23.5 + parent: 1 + - uid: 5558 + components: + - type: Transform + pos: -29.5,23.5 + parent: 1 + - uid: 5559 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 1 + - uid: 5560 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 1 + - uid: 5561 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 1 + - uid: 5562 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 1 + - uid: 5563 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 1 + - uid: 5564 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 1 + - uid: 5565 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 1 + - uid: 5566 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 1 + - uid: 5567 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1 + - uid: 5568 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 1 + - uid: 5569 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1 + - uid: 5570 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 1 + - uid: 5571 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 1 + - uid: 5572 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1 + - uid: 5573 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 1 + - uid: 5574 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1 + - uid: 5575 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 1 + - uid: 5576 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 1 + - uid: 5577 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1 + - uid: 5578 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 1 + - uid: 5579 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 1 + - uid: 5580 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1 + - uid: 5581 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1 + - uid: 5582 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 1 + - uid: 5583 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 1 + - uid: 5584 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 1 + - uid: 5585 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 1 + - uid: 5586 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 1 + - uid: 5587 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 1 + - uid: 5588 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 1 + - uid: 5589 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 1 + - uid: 5590 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - uid: 5591 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1 + - uid: 5592 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1 + - uid: 5593 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 1 + - uid: 5595 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1 + - uid: 5596 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1 + - uid: 5599 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1 + - uid: 5600 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1 + - uid: 5601 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 1 + - uid: 5602 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1 + - uid: 5603 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1 + - uid: 5604 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 1 + - uid: 5605 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 1 + - uid: 5606 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1 + - uid: 5607 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 1 + - uid: 5608 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 1 + - uid: 5609 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 1 + - uid: 5610 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1 + - uid: 5611 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 1 + - uid: 5612 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 1 + - uid: 5613 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 1 + - uid: 5614 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 1 + - uid: 5615 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 1 + - uid: 5616 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 1 + - uid: 5617 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1 + - uid: 5618 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 1 + - uid: 5706 + components: + - type: Transform + pos: -32.5,74.5 + parent: 1 + - uid: 5813 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 1 + - uid: 5936 + components: + - type: Transform + pos: -25.5,14.5 + parent: 1 + - uid: 5955 + components: + - type: Transform + pos: -20.5,29.5 + parent: 1 + - uid: 5957 + components: + - type: Transform + pos: 5.5,-64.5 + parent: 1 + - uid: 5958 + components: + - type: Transform + pos: 5.5,-65.5 + parent: 1 + - uid: 5959 + components: + - type: Transform + pos: 5.5,-66.5 + parent: 1 + - uid: 5960 + components: + - type: Transform + pos: 5.5,-67.5 + parent: 1 + - uid: 5961 + components: + - type: Transform + pos: 5.5,-68.5 + parent: 1 + - uid: 5962 + components: + - type: Transform + pos: 5.5,-69.5 + parent: 1 + - uid: 5963 + components: + - type: Transform + pos: 5.5,-70.5 + parent: 1 + - uid: 5964 + components: + - type: Transform + pos: 7.5,-70.5 + parent: 1 + - uid: 5965 + components: + - type: Transform + pos: 7.5,-69.5 + parent: 1 + - uid: 5966 + components: + - type: Transform + pos: 7.5,-68.5 + parent: 1 + - uid: 5967 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 1 + - uid: 5968 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 1 + - uid: 5969 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 1 + - uid: 5970 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 1 + - uid: 5971 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 1 + - uid: 5972 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 1 + - uid: 5973 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 1 + - uid: 5974 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 1 + - uid: 5975 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 1 + - uid: 5976 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 1 + - uid: 5977 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 1 + - uid: 5978 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 1 + - uid: 5979 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 1 + - uid: 5980 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 1 + - uid: 5981 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 1 + - uid: 5982 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 1 + - uid: 5983 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 1 + - uid: 5984 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 1 + - uid: 5985 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 1 + - uid: 5986 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 1 + - uid: 5987 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 1 + - uid: 6036 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 1 + - uid: 6037 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 6046 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 1 + - uid: 6047 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 1 + - uid: 6048 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 1 + - uid: 6076 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 1 + - uid: 6079 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1 + - uid: 6080 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 1 + - uid: 6102 + components: + - type: Transform + pos: 25.5,34.5 + parent: 1 + - uid: 6408 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - uid: 6409 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 1 + - uid: 6410 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 1 + - uid: 6411 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1 + - uid: 6440 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 1 + - uid: 6441 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 1 + - uid: 6442 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1 + - uid: 6443 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1 + - uid: 6444 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 1 + - uid: 6445 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - uid: 6446 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - uid: 6447 + components: + - type: Transform + pos: -27.5,1.5 + parent: 1 + - uid: 6448 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1 + - uid: 6449 + components: + - type: Transform + pos: -29.5,1.5 + parent: 1 + - uid: 6450 + components: + - type: Transform + pos: -30.5,1.5 + parent: 1 + - uid: 6451 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1 + - uid: 6500 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 1 + - uid: 6519 + components: + - type: Transform + pos: -44.5,74.5 + parent: 1 + - uid: 6520 + components: + - type: Transform + pos: -42.5,74.5 + parent: 1 + - uid: 6527 + components: + - type: Transform + pos: -46.5,72.5 + parent: 1 + - uid: 6529 + components: + - type: Transform + pos: -40.5,74.5 + parent: 1 + - uid: 6539 + components: + - type: Transform + pos: -45.5,74.5 + parent: 1 + - uid: 6540 + components: + - type: Transform + pos: -47.5,74.5 + parent: 1 + - uid: 6541 + components: + - type: Transform + pos: -46.5,74.5 + parent: 1 + - uid: 6548 + components: + - type: Transform + pos: -36.5,74.5 + parent: 1 + - uid: 6572 + components: + - type: Transform + pos: -41.5,74.5 + parent: 1 + - uid: 6573 + components: + - type: Transform + pos: -47.5,72.5 + parent: 1 + - uid: 6574 + components: + - type: Transform + pos: -43.5,74.5 + parent: 1 + - uid: 6576 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 1 + - uid: 6577 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 1 + - uid: 6579 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 1 + - uid: 6580 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 1 + - uid: 6674 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 1 + - uid: 6675 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 1 + - uid: 6677 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 1 + - uid: 6678 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 1 + - uid: 6679 + components: + - type: Transform + pos: 11.5,-48.5 + parent: 1 + - uid: 6682 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 1 + - uid: 6708 + components: + - type: Transform + pos: -35.5,21.5 + parent: 1 + - uid: 6709 + components: + - type: Transform + pos: -35.5,20.5 + parent: 1 + - uid: 6710 + components: + - type: Transform + pos: -35.5,19.5 + parent: 1 + - uid: 6711 + components: + - type: Transform + pos: -32.5,23.5 + parent: 1 + - uid: 6712 + components: + - type: Transform + pos: -33.5,23.5 + parent: 1 + - uid: 6726 + components: + - type: Transform + pos: -34.5,13.5 + parent: 1 + - uid: 6727 + components: + - type: Transform + pos: -35.5,13.5 + parent: 1 + - uid: 6728 + components: + - type: Transform + pos: -33.5,13.5 + parent: 1 + - uid: 6729 + components: + - type: Transform + pos: -35.5,14.5 + parent: 1 + - uid: 6730 + components: + - type: Transform + pos: -35.5,15.5 + parent: 1 + - uid: 6731 + components: + - type: Transform + pos: -35.5,16.5 + parent: 1 + - uid: 6732 + components: + - type: Transform + pos: -35.5,17.5 + parent: 1 + - uid: 6733 + components: + - type: Transform + pos: -35.5,18.5 + parent: 1 + - uid: 6734 + components: + - type: Transform + pos: -34.5,21.5 + parent: 1 + - uid: 6738 + components: + - type: Transform + pos: -34.5,22.5 + parent: 1 + - uid: 6739 + components: + - type: Transform + pos: -34.5,23.5 + parent: 1 + - uid: 6740 + components: + - type: Transform + pos: -34.5,24.5 + parent: 1 + - uid: 6741 + components: + - type: Transform + pos: -34.5,25.5 + parent: 1 + - uid: 6742 + components: + - type: Transform + pos: -34.5,26.5 + parent: 1 + - uid: 6743 + components: + - type: Transform + pos: -34.5,27.5 + parent: 1 + - uid: 6744 + components: + - type: Transform + pos: -34.5,28.5 + parent: 1 + - uid: 6745 + components: + - type: Transform + pos: -34.5,29.5 + parent: 1 + - uid: 6746 + components: + - type: Transform + pos: -34.5,30.5 + parent: 1 + - uid: 6747 + components: + - type: Transform + pos: -34.5,31.5 + parent: 1 + - uid: 6748 + components: + - type: Transform + pos: -34.5,32.5 + parent: 1 + - uid: 6749 + components: + - type: Transform + pos: -34.5,33.5 + parent: 1 + - uid: 6750 + components: + - type: Transform + pos: -35.5,33.5 + parent: 1 + - uid: 6751 + components: + - type: Transform + pos: -36.5,33.5 + parent: 1 + - uid: 6752 + components: + - type: Transform + pos: -37.5,33.5 + parent: 1 + - uid: 6753 + components: + - type: Transform + pos: -38.5,33.5 + parent: 1 + - uid: 6754 + components: + - type: Transform + pos: -38.5,34.5 + parent: 1 + - uid: 6755 + components: + - type: Transform + pos: -38.5,35.5 + parent: 1 + - uid: 6756 + components: + - type: Transform + pos: -38.5,36.5 + parent: 1 + - uid: 6757 + components: + - type: Transform + pos: -37.5,36.5 + parent: 1 + - uid: 6758 + components: + - type: Transform + pos: -36.5,36.5 + parent: 1 + - uid: 6759 + components: + - type: Transform + pos: -35.5,36.5 + parent: 1 + - uid: 6760 + components: + - type: Transform + pos: -34.5,36.5 + parent: 1 + - uid: 6761 + components: + - type: Transform + pos: -33.5,36.5 + parent: 1 + - uid: 6762 + components: + - type: Transform + pos: -32.5,36.5 + parent: 1 + - uid: 6763 + components: + - type: Transform + pos: -31.5,36.5 + parent: 1 + - uid: 6767 + components: + - type: Transform + pos: -41.5,72.5 + parent: 1 + - uid: 6768 + components: + - type: Transform + pos: -42.5,72.5 + parent: 1 + - uid: 7209 + components: + - type: Transform + pos: 21.5,49.5 + parent: 1 + - uid: 7210 + components: + - type: Transform + pos: 20.5,49.5 + parent: 1 + - uid: 7211 + components: + - type: Transform + pos: 19.5,49.5 + parent: 1 + - uid: 7212 + components: + - type: Transform + pos: 18.5,49.5 + parent: 1 + - uid: 7213 + components: + - type: Transform + pos: 17.5,49.5 + parent: 1 + - uid: 7214 + components: + - type: Transform + pos: 16.5,49.5 + parent: 1 + - uid: 7215 + components: + - type: Transform + pos: 16.5,50.5 + parent: 1 + - uid: 7216 + components: + - type: Transform + pos: 16.5,51.5 + parent: 1 + - uid: 7217 + components: + - type: Transform + pos: 15.5,50.5 + parent: 1 + - uid: 7218 + components: + - type: Transform + pos: 14.5,50.5 + parent: 1 + - uid: 7219 + components: + - type: Transform + pos: 13.5,50.5 + parent: 1 + - uid: 7220 + components: + - type: Transform + pos: 12.5,50.5 + parent: 1 + - uid: 7221 + components: + - type: Transform + pos: 11.5,50.5 + parent: 1 + - uid: 7222 + components: + - type: Transform + pos: 10.5,50.5 + parent: 1 + - uid: 7223 + components: + - type: Transform + pos: 9.5,50.5 + parent: 1 + - uid: 7224 + components: + - type: Transform + pos: 9.5,49.5 + parent: 1 + - uid: 7225 + components: + - type: Transform + pos: 9.5,48.5 + parent: 1 + - uid: 7226 + components: + - type: Transform + pos: 9.5,47.5 + parent: 1 + - uid: 7227 + components: + - type: Transform + pos: 9.5,46.5 + parent: 1 + - uid: 7228 + components: + - type: Transform + pos: 9.5,45.5 + parent: 1 + - uid: 7229 + components: + - type: Transform + pos: 9.5,44.5 + parent: 1 + - uid: 7230 + components: + - type: Transform + pos: 9.5,43.5 + parent: 1 + - uid: 7231 + components: + - type: Transform + pos: 9.5,42.5 + parent: 1 + - uid: 7232 + components: + - type: Transform + pos: 9.5,41.5 + parent: 1 + - uid: 7233 + components: + - type: Transform + pos: 8.5,41.5 + parent: 1 + - uid: 7234 + components: + - type: Transform + pos: 7.5,41.5 + parent: 1 + - uid: 7235 + components: + - type: Transform + pos: 6.5,41.5 + parent: 1 + - uid: 7236 + components: + - type: Transform + pos: 5.5,41.5 + parent: 1 + - uid: 7237 + components: + - type: Transform + pos: 4.5,41.5 + parent: 1 + - uid: 7238 + components: + - type: Transform + pos: 3.5,41.5 + parent: 1 + - uid: 7239 + components: + - type: Transform + pos: 2.5,41.5 + parent: 1 + - uid: 7240 + components: + - type: Transform + pos: 1.5,41.5 + parent: 1 + - uid: 7241 + components: + - type: Transform + pos: 0.5,41.5 + parent: 1 + - uid: 7242 + components: + - type: Transform + pos: -0.5,41.5 + parent: 1 + - uid: 7294 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 1 + - uid: 7295 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 1 + - uid: 7296 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 1 + - uid: 7297 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 1 + - uid: 7298 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 1 + - uid: 7299 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 1 + - uid: 7300 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 1 + - uid: 7301 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 1 + - uid: 7322 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1 + - uid: 7323 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 1 + - uid: 7324 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 1 + - uid: 7325 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 1 + - uid: 7326 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 1 + - uid: 7327 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 1 + - uid: 7328 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 1 + - uid: 7336 + components: + - type: Transform + pos: -31.5,23.5 + parent: 1 + - uid: 7337 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 1 + - uid: 7338 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1 + - uid: 7339 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 1 + - uid: 7340 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 1 + - uid: 7341 + components: + - type: Transform + pos: 36.5,54.5 + parent: 1 + - uid: 7347 + components: + - type: Transform + pos: 33.5,36.5 + parent: 1 + - uid: 7348 + components: + - type: Transform + pos: 34.5,36.5 + parent: 1 + - uid: 7349 + components: + - type: Transform + pos: 34.5,37.5 + parent: 1 + - uid: 7350 + components: + - type: Transform + pos: 34.5,38.5 + parent: 1 + - uid: 7351 + components: + - type: Transform + pos: 34.5,39.5 + parent: 1 + - uid: 7352 + components: + - type: Transform + pos: 34.5,40.5 + parent: 1 + - uid: 7353 + components: + - type: Transform + pos: 34.5,41.5 + parent: 1 + - uid: 7354 + components: + - type: Transform + pos: 35.5,41.5 + parent: 1 + - uid: 7355 + components: + - type: Transform + pos: 36.5,41.5 + parent: 1 + - uid: 7356 + components: + - type: Transform + pos: 36.5,42.5 + parent: 1 + - uid: 7357 + components: + - type: Transform + pos: 36.5,43.5 + parent: 1 + - uid: 7358 + components: + - type: Transform + pos: 36.5,44.5 + parent: 1 + - uid: 7359 + components: + - type: Transform + pos: 36.5,45.5 + parent: 1 + - uid: 7360 + components: + - type: Transform + pos: 36.5,46.5 + parent: 1 + - uid: 7361 + components: + - type: Transform + pos: 36.5,47.5 + parent: 1 + - uid: 7362 + components: + - type: Transform + pos: 36.5,48.5 + parent: 1 + - uid: 7363 + components: + - type: Transform + pos: 36.5,49.5 + parent: 1 + - uid: 7364 + components: + - type: Transform + pos: 36.5,50.5 + parent: 1 + - uid: 7365 + components: + - type: Transform + pos: 36.5,51.5 + parent: 1 + - uid: 7366 + components: + - type: Transform + pos: 35.5,51.5 + parent: 1 + - uid: 7367 + components: + - type: Transform + pos: 34.5,51.5 + parent: 1 + - uid: 7368 + components: + - type: Transform + pos: 33.5,51.5 + parent: 1 + - uid: 7369 + components: + - type: Transform + pos: 32.5,51.5 + parent: 1 + - uid: 7370 + components: + - type: Transform + pos: 31.5,51.5 + parent: 1 + - uid: 7371 + components: + - type: Transform + pos: 30.5,51.5 + parent: 1 + - uid: 7372 + components: + - type: Transform + pos: 29.5,51.5 + parent: 1 + - uid: 7373 + components: + - type: Transform + pos: 29.5,52.5 + parent: 1 + - uid: 7374 + components: + - type: Transform + pos: 28.5,52.5 + parent: 1 + - uid: 7375 + components: + - type: Transform + pos: 28.5,53.5 + parent: 1 + - uid: 7376 + components: + - type: Transform + pos: 28.5,54.5 + parent: 1 + - uid: 7377 + components: + - type: Transform + pos: 28.5,55.5 + parent: 1 + - uid: 7378 + components: + - type: Transform + pos: 28.5,56.5 + parent: 1 + - uid: 7379 + components: + - type: Transform + pos: 28.5,57.5 + parent: 1 + - uid: 7380 + components: + - type: Transform + pos: 27.5,57.5 + parent: 1 + - uid: 7381 + components: + - type: Transform + pos: 26.5,57.5 + parent: 1 + - uid: 7382 + components: + - type: Transform + pos: 25.5,57.5 + parent: 1 + - uid: 7383 + components: + - type: Transform + pos: 24.5,57.5 + parent: 1 + - uid: 7384 + components: + - type: Transform + pos: 23.5,57.5 + parent: 1 + - uid: 7385 + components: + - type: Transform + pos: 22.5,57.5 + parent: 1 + - uid: 7546 + components: + - type: Transform + pos: 37.5,60.5 + parent: 1 + - uid: 7547 + components: + - type: Transform + pos: 37.5,59.5 + parent: 1 + - uid: 7548 + components: + - type: Transform + pos: 37.5,58.5 + parent: 1 + - uid: 7549 + components: + - type: Transform + pos: 37.5,57.5 + parent: 1 + - uid: 7550 + components: + - type: Transform + pos: 37.5,56.5 + parent: 1 + - uid: 7551 + components: + - type: Transform + pos: 37.5,55.5 + parent: 1 + - uid: 7552 + components: + - type: Transform + pos: 36.5,69.5 + parent: 1 + - uid: 7553 + components: + - type: Transform + pos: 35.5,69.5 + parent: 1 + - uid: 7554 + components: + - type: Transform + pos: 35.5,70.5 + parent: 1 + - uid: 7555 + components: + - type: Transform + pos: 34.5,70.5 + parent: 1 + - uid: 7556 + components: + - type: Transform + pos: 33.5,70.5 + parent: 1 + - uid: 7557 + components: + - type: Transform + pos: 32.5,70.5 + parent: 1 + - uid: 7558 + components: + - type: Transform + pos: 31.5,70.5 + parent: 1 + - uid: 7559 + components: + - type: Transform + pos: 30.5,70.5 + parent: 1 + - uid: 7560 + components: + - type: Transform + pos: 29.5,70.5 + parent: 1 + - uid: 7561 + components: + - type: Transform + pos: 28.5,70.5 + parent: 1 + - uid: 7562 + components: + - type: Transform + pos: 35.5,68.5 + parent: 1 + - uid: 7563 + components: + - type: Transform + pos: 34.5,68.5 + parent: 1 + - uid: 7564 + components: + - type: Transform + pos: 33.5,68.5 + parent: 1 + - uid: 7565 + components: + - type: Transform + pos: 32.5,68.5 + parent: 1 + - uid: 7566 + components: + - type: Transform + pos: 31.5,68.5 + parent: 1 + - uid: 7567 + components: + - type: Transform + pos: 30.5,68.5 + parent: 1 + - uid: 7568 + components: + - type: Transform + pos: 29.5,68.5 + parent: 1 + - uid: 7569 + components: + - type: Transform + pos: 28.5,68.5 + parent: 1 + - uid: 7570 + components: + - type: Transform + pos: 38.5,69.5 + parent: 1 + - uid: 7571 + components: + - type: Transform + pos: 39.5,69.5 + parent: 1 + - uid: 7572 + components: + - type: Transform + pos: 39.5,70.5 + parent: 1 + - uid: 7573 + components: + - type: Transform + pos: 40.5,70.5 + parent: 1 + - uid: 7574 + components: + - type: Transform + pos: 41.5,70.5 + parent: 1 + - uid: 7575 + components: + - type: Transform + pos: 42.5,70.5 + parent: 1 + - uid: 7576 + components: + - type: Transform + pos: 43.5,70.5 + parent: 1 + - uid: 7577 + components: + - type: Transform + pos: 44.5,70.5 + parent: 1 + - uid: 7578 + components: + - type: Transform + pos: 45.5,70.5 + parent: 1 + - uid: 7579 + components: + - type: Transform + pos: 46.5,70.5 + parent: 1 + - uid: 7580 + components: + - type: Transform + pos: 39.5,68.5 + parent: 1 + - uid: 7581 + components: + - type: Transform + pos: 40.5,68.5 + parent: 1 + - uid: 7582 + components: + - type: Transform + pos: 41.5,68.5 + parent: 1 + - uid: 7583 + components: + - type: Transform + pos: 42.5,68.5 + parent: 1 + - uid: 7584 + components: + - type: Transform + pos: 43.5,68.5 + parent: 1 + - uid: 7585 + components: + - type: Transform + pos: 44.5,68.5 + parent: 1 + - uid: 7586 + components: + - type: Transform + pos: 45.5,68.5 + parent: 1 + - uid: 7587 + components: + - type: Transform + pos: 46.5,68.5 + parent: 1 + - uid: 7588 + components: + - type: Transform + pos: 38.5,73.5 + parent: 1 + - uid: 7589 + components: + - type: Transform + pos: 39.5,73.5 + parent: 1 + - uid: 7590 + components: + - type: Transform + pos: 39.5,72.5 + parent: 1 + - uid: 7591 + components: + - type: Transform + pos: 40.5,72.5 + parent: 1 + - uid: 7592 + components: + - type: Transform + pos: 41.5,72.5 + parent: 1 + - uid: 7593 + components: + - type: Transform + pos: 42.5,72.5 + parent: 1 + - uid: 7594 + components: + - type: Transform + pos: 43.5,72.5 + parent: 1 + - uid: 7595 + components: + - type: Transform + pos: 44.5,72.5 + parent: 1 + - uid: 7596 + components: + - type: Transform + pos: 45.5,72.5 + parent: 1 + - uid: 7597 + components: + - type: Transform + pos: 46.5,72.5 + parent: 1 + - uid: 7598 + components: + - type: Transform + pos: 39.5,74.5 + parent: 1 + - uid: 7599 + components: + - type: Transform + pos: 40.5,74.5 + parent: 1 + - uid: 7600 + components: + - type: Transform + pos: 41.5,74.5 + parent: 1 + - uid: 7601 + components: + - type: Transform + pos: 42.5,74.5 + parent: 1 + - uid: 7602 + components: + - type: Transform + pos: 43.5,74.5 + parent: 1 + - uid: 7603 + components: + - type: Transform + pos: 44.5,74.5 + parent: 1 + - uid: 7604 + components: + - type: Transform + pos: 45.5,74.5 + parent: 1 + - uid: 7605 + components: + - type: Transform + pos: 46.5,74.5 + parent: 1 + - uid: 7606 + components: + - type: Transform + pos: 36.5,73.5 + parent: 1 + - uid: 7607 + components: + - type: Transform + pos: 35.5,73.5 + parent: 1 + - uid: 7608 + components: + - type: Transform + pos: 35.5,74.5 + parent: 1 + - uid: 7609 + components: + - type: Transform + pos: 34.5,74.5 + parent: 1 + - uid: 7610 + components: + - type: Transform + pos: 33.5,74.5 + parent: 1 + - uid: 7611 + components: + - type: Transform + pos: 32.5,74.5 + parent: 1 + - uid: 7612 + components: + - type: Transform + pos: 31.5,74.5 + parent: 1 + - uid: 7613 + components: + - type: Transform + pos: 30.5,74.5 + parent: 1 + - uid: 7614 + components: + - type: Transform + pos: 29.5,74.5 + parent: 1 + - uid: 7615 + components: + - type: Transform + pos: 28.5,74.5 + parent: 1 + - uid: 7616 + components: + - type: Transform + pos: 35.5,72.5 + parent: 1 + - uid: 7617 + components: + - type: Transform + pos: 34.5,72.5 + parent: 1 + - uid: 7618 + components: + - type: Transform + pos: 33.5,72.5 + parent: 1 + - uid: 7619 + components: + - type: Transform + pos: 32.5,72.5 + parent: 1 + - uid: 7620 + components: + - type: Transform + pos: 31.5,72.5 + parent: 1 + - uid: 7621 + components: + - type: Transform + pos: 30.5,72.5 + parent: 1 + - uid: 7622 + components: + - type: Transform + pos: 29.5,72.5 + parent: 1 + - uid: 7623 + components: + - type: Transform + pos: 28.5,72.5 + parent: 1 + - uid: 7830 + components: + - type: Transform + pos: -37.5,73.5 + parent: 1 + - uid: 7831 + components: + - type: Transform + pos: -39.5,73.5 + parent: 1 + - uid: 7832 + components: + - type: Transform + pos: -39.5,69.5 + parent: 1 + - uid: 7833 + components: + - type: Transform + pos: -37.5,69.5 + parent: 1 + - uid: 7834 + components: + - type: Transform + pos: -36.5,69.5 + parent: 1 + - uid: 7835 + components: + - type: Transform + pos: -36.5,73.5 + parent: 1 + - uid: 7836 + components: + - type: Transform + pos: -40.5,73.5 + parent: 1 + - uid: 7837 + components: + - type: Transform + pos: -40.5,69.5 + parent: 1 + - uid: 7838 + components: + - type: Transform + pos: -40.5,68.5 + parent: 1 + - uid: 7839 + components: + - type: Transform + pos: -41.5,68.5 + parent: 1 + - uid: 7840 + components: + - type: Transform + pos: -42.5,68.5 + parent: 1 + - uid: 7841 + components: + - type: Transform + pos: -43.5,68.5 + parent: 1 + - uid: 7842 + components: + - type: Transform + pos: -44.5,68.5 + parent: 1 + - uid: 7843 + components: + - type: Transform + pos: -45.5,68.5 + parent: 1 + - uid: 7844 + components: + - type: Transform + pos: -46.5,68.5 + parent: 1 + - uid: 7845 + components: + - type: Transform + pos: -47.5,68.5 + parent: 1 + - uid: 7846 + components: + - type: Transform + pos: -40.5,70.5 + parent: 1 + - uid: 7847 + components: + - type: Transform + pos: -41.5,70.5 + parent: 1 + - uid: 7848 + components: + - type: Transform + pos: -42.5,70.5 + parent: 1 + - uid: 7849 + components: + - type: Transform + pos: -43.5,70.5 + parent: 1 + - uid: 7850 + components: + - type: Transform + pos: -44.5,70.5 + parent: 1 + - uid: 7851 + components: + - type: Transform + pos: -45.5,70.5 + parent: 1 + - uid: 7852 + components: + - type: Transform + pos: -46.5,70.5 + parent: 1 + - uid: 7853 + components: + - type: Transform + pos: -47.5,70.5 + parent: 1 + - uid: 7854 + components: + - type: Transform + pos: -36.5,70.5 + parent: 1 + - uid: 7855 + components: + - type: Transform + pos: -35.5,70.5 + parent: 1 + - uid: 7856 + components: + - type: Transform + pos: -34.5,70.5 + parent: 1 + - uid: 7857 + components: + - type: Transform + pos: -33.5,70.5 + parent: 1 + - uid: 7858 + components: + - type: Transform + pos: -32.5,70.5 + parent: 1 + - uid: 7859 + components: + - type: Transform + pos: -31.5,70.5 + parent: 1 + - uid: 7860 + components: + - type: Transform + pos: -30.5,70.5 + parent: 1 + - uid: 7861 + components: + - type: Transform + pos: -29.5,70.5 + parent: 1 + - uid: 7862 + components: + - type: Transform + pos: -36.5,68.5 + parent: 1 + - uid: 7863 + components: + - type: Transform + pos: -35.5,68.5 + parent: 1 + - uid: 7864 + components: + - type: Transform + pos: -34.5,68.5 + parent: 1 + - uid: 7865 + components: + - type: Transform + pos: -33.5,68.5 + parent: 1 + - uid: 7866 + components: + - type: Transform + pos: -32.5,68.5 + parent: 1 + - uid: 7867 + components: + - type: Transform + pos: -31.5,68.5 + parent: 1 + - uid: 7868 + components: + - type: Transform + pos: -30.5,68.5 + parent: 1 + - uid: 7869 + components: + - type: Transform + pos: -29.5,68.5 + parent: 1 + - uid: 7871 + components: + - type: Transform + pos: -38.5,59.5 + parent: 1 + - uid: 7872 + components: + - type: Transform + pos: -38.5,58.5 + parent: 1 + - uid: 7873 + components: + - type: Transform + pos: -38.5,57.5 + parent: 1 + - uid: 7874 + components: + - type: Transform + pos: -38.5,56.5 + parent: 1 + - uid: 7875 + components: + - type: Transform + pos: -38.5,55.5 + parent: 1 + - uid: 7883 + components: + - type: Transform + pos: -35.5,72.5 + parent: 1 + - uid: 7896 + components: + - type: Transform + pos: -34.5,74.5 + parent: 1 + - uid: 7897 + components: + - type: Transform + pos: -30.5,74.5 + parent: 1 + - uid: 7903 + components: + - type: Transform + pos: -31.5,74.5 + parent: 1 + - uid: 7904 + components: + - type: Transform + pos: -33.5,74.5 + parent: 1 + - uid: 7905 + components: + - type: Transform + pos: -29.5,74.5 + parent: 1 + - uid: 7906 + components: + - type: Transform + pos: -36.5,72.5 + parent: 1 + - uid: 7907 + components: + - type: Transform + pos: -34.5,72.5 + parent: 1 + - uid: 7908 + components: + - type: Transform + pos: -33.5,72.5 + parent: 1 + - uid: 7909 + components: + - type: Transform + pos: -32.5,72.5 + parent: 1 + - uid: 7910 + components: + - type: Transform + pos: -31.5,72.5 + parent: 1 + - uid: 7911 + components: + - type: Transform + pos: -30.5,72.5 + parent: 1 + - uid: 7912 + components: + - type: Transform + pos: -29.5,72.5 + parent: 1 + - uid: 8012 + components: + - type: Transform + pos: -25.5,57.5 + parent: 1 + - uid: 8013 + components: + - type: Transform + pos: -26.5,57.5 + parent: 1 + - uid: 8014 + components: + - type: Transform + pos: -27.5,57.5 + parent: 1 + - uid: 8015 + components: + - type: Transform + pos: -27.5,56.5 + parent: 1 + - uid: 8016 + components: + - type: Transform + pos: -27.5,55.5 + parent: 1 + - uid: 8017 + components: + - type: Transform + pos: -27.5,54.5 + parent: 1 + - uid: 8018 + components: + - type: Transform + pos: -27.5,53.5 + parent: 1 + - uid: 8019 + components: + - type: Transform + pos: -27.5,52.5 + parent: 1 + - uid: 8020 + components: + - type: Transform + pos: -28.5,52.5 + parent: 1 + - uid: 8021 + components: + - type: Transform + pos: -29.5,52.5 + parent: 1 + - uid: 8022 + components: + - type: Transform + pos: -30.5,52.5 + parent: 1 + - uid: 8023 + components: + - type: Transform + pos: -31.5,52.5 + parent: 1 + - uid: 8024 + components: + - type: Transform + pos: -32.5,52.5 + parent: 1 + - uid: 8025 + components: + - type: Transform + pos: -33.5,52.5 + parent: 1 + - uid: 8026 + components: + - type: Transform + pos: -34.5,52.5 + parent: 1 + - uid: 8027 + components: + - type: Transform + pos: -35.5,52.5 + parent: 1 + - uid: 8028 + components: + - type: Transform + pos: -36.5,52.5 + parent: 1 + - uid: 8029 + components: + - type: Transform + pos: -37.5,52.5 + parent: 1 + - uid: 8030 + components: + - type: Transform + pos: -38.5,52.5 + parent: 1 + - uid: 8031 + components: + - type: Transform + pos: -39.5,52.5 + parent: 1 + - uid: 8032 + components: + - type: Transform + pos: -40.5,52.5 + parent: 1 + - uid: 8033 + components: + - type: Transform + pos: -40.5,51.5 + parent: 1 + - uid: 8034 + components: + - type: Transform + pos: -41.5,51.5 + parent: 1 + - uid: 8035 + components: + - type: Transform + pos: -42.5,51.5 + parent: 1 + - uid: 8036 + components: + - type: Transform + pos: -43.5,51.5 + parent: 1 + - uid: 8037 + components: + - type: Transform + pos: -43.5,50.5 + parent: 1 + - uid: 8038 + components: + - type: Transform + pos: -43.5,49.5 + parent: 1 + - uid: 8039 + components: + - type: Transform + pos: -43.5,48.5 + parent: 1 + - uid: 8040 + components: + - type: Transform + pos: -43.5,47.5 + parent: 1 + - uid: 8041 + components: + - type: Transform + pos: -43.5,46.5 + parent: 1 + - uid: 8042 + components: + - type: Transform + pos: -43.5,45.5 + parent: 1 + - uid: 8043 + components: + - type: Transform + pos: -43.5,44.5 + parent: 1 + - uid: 8044 + components: + - type: Transform + pos: -43.5,43.5 + parent: 1 + - uid: 8045 + components: + - type: Transform + pos: -43.5,42.5 + parent: 1 + - uid: 8046 + components: + - type: Transform + pos: -43.5,41.5 + parent: 1 + - uid: 8047 + components: + - type: Transform + pos: -43.5,40.5 + parent: 1 + - uid: 8048 + components: + - type: Transform + pos: -43.5,39.5 + parent: 1 + - uid: 8049 + components: + - type: Transform + pos: -43.5,38.5 + parent: 1 + - uid: 8050 + components: + - type: Transform + pos: -43.5,37.5 + parent: 1 + - uid: 8051 + components: + - type: Transform + pos: -43.5,36.5 + parent: 1 + - uid: 8052 + components: + - type: Transform + pos: -42.5,36.5 + parent: 1 + - uid: 8053 + components: + - type: Transform + pos: -41.5,36.5 + parent: 1 + - uid: 8054 + components: + - type: Transform + pos: -40.5,36.5 + parent: 1 + - uid: 8055 + components: + - type: Transform + pos: -39.5,36.5 + parent: 1 + - uid: 8057 + components: + - type: Transform + pos: -39.5,55.5 + parent: 1 + - uid: 8058 + components: + - type: Transform + pos: -39.5,54.5 + parent: 1 + - uid: 8059 + components: + - type: Transform + pos: -39.5,53.5 + parent: 1 + - uid: 8821 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 8756 + - uid: 8822 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 8756 + - uid: 8823 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 8756 + - uid: 8824 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 8756 + - uid: 9727 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 1 + - uid: 9728 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 1 + - uid: 9729 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 1 + - uid: 9730 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 1 + - uid: 9731 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 1 + - uid: 9732 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 1 + - uid: 9733 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 1 + - uid: 10144 + components: + - type: Transform + pos: 36.5,52.5 + parent: 1 + - uid: 10147 + components: + - type: Transform + pos: 36.5,53.5 + parent: 1 + - uid: 10541 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 1 + - uid: 10542 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 1 + - uid: 10543 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 1 + - uid: 10544 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 1 + - uid: 10663 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 10871 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 1 + - uid: 13141 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 13142 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 + - uid: 13143 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1 + - uid: 13144 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 13145 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1 + - uid: 13146 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1 + - uid: 13147 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1 + - uid: 13148 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1 + - uid: 13149 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1 + - uid: 13150 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1 + - uid: 13151 + components: + - type: Transform + pos: 30.5,13.5 + parent: 1 + - uid: 13152 + components: + - type: Transform + pos: 31.5,13.5 + parent: 1 + - uid: 13178 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 1 + - uid: 13179 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 1 + - uid: 14045 + components: + - type: Transform + pos: 36.5,55.5 + parent: 1 + - uid: 14634 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 1 + - uid: 16380 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - uid: 18454 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 1 + - uid: 18455 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 1 + - uid: 18456 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 18458 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - uid: 18459 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 18460 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 1 + - uid: 18461 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 1 + - uid: 18462 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 + - uid: 18463 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 1 + - uid: 18464 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 1 +- proto: CableHVStack + entities: + - uid: 9124 + components: + - type: Transform + pos: 13.366544,-22.108011 + parent: 1 +- proto: CableMV + entities: + - uid: 4571 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 8825 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 8756 + - uid: 8826 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 8756 + - uid: 8827 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 8756 + - uid: 8828 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 8756 + - uid: 8829 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 8756 + - uid: 9079 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 1 + - uid: 9294 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 9734 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 1 + - uid: 9735 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 1 + - uid: 9736 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 1 + - uid: 9765 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 1 + - uid: 9766 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 1 + - uid: 9767 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 1 + - uid: 9768 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 1 + - uid: 9769 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 1 + - uid: 9770 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 1 + - uid: 9771 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 1 + - uid: 9772 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 1 + - uid: 9773 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 1 + - uid: 9774 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 1 + - uid: 9775 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 1 + - uid: 10124 + components: + - type: Transform + pos: -24.5,36.5 + parent: 1 + - uid: 10152 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 1 + - uid: 10153 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 1 + - uid: 10154 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 1 + - uid: 10155 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 1 + - uid: 10156 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1 + - uid: 10157 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 1 + - uid: 10158 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1 + - uid: 10159 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 1 + - uid: 10160 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1 + - uid: 10161 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 1 + - uid: 10162 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 1 + - uid: 10163 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 1 + - uid: 10272 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 1 + - uid: 10273 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 1 + - uid: 10274 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 1 + - uid: 10275 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 1 + - uid: 10276 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 1 + - uid: 10277 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 1 + - uid: 10278 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 1 + - uid: 10279 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 1 + - uid: 10280 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 1 + - uid: 10281 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 1 + - uid: 10282 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 1 + - uid: 10283 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 1 + - uid: 10284 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 1 + - uid: 10285 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 1 + - uid: 10286 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 1 + - uid: 10287 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 1 + - uid: 10288 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 1 + - uid: 10289 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 1 + - uid: 10290 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 1 + - uid: 10291 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 1 + - uid: 10292 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 1 + - uid: 10293 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 1 + - uid: 10294 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 1 + - uid: 10295 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 1 + - uid: 10296 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 1 + - uid: 10297 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 1 + - uid: 10298 + components: + - type: Transform + pos: -39.5,0.5 + parent: 1 + - uid: 10299 + components: + - type: Transform + pos: -39.5,1.5 + parent: 1 + - uid: 10300 + components: + - type: Transform + pos: -39.5,2.5 + parent: 1 + - uid: 10301 + components: + - type: Transform + pos: -39.5,3.5 + parent: 1 + - uid: 10302 + components: + - type: Transform + pos: -39.5,4.5 + parent: 1 + - uid: 10303 + components: + - type: Transform + pos: -39.5,5.5 + parent: 1 + - uid: 10304 + components: + - type: Transform + pos: -39.5,6.5 + parent: 1 + - uid: 10305 + components: + - type: Transform + pos: -39.5,7.5 + parent: 1 + - uid: 10306 + components: + - type: Transform + pos: -40.5,7.5 + parent: 1 + - uid: 10307 + components: + - type: Transform + pos: -41.5,7.5 + parent: 1 + - uid: 10386 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 1 + - uid: 10387 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1 + - uid: 10388 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 1 + - uid: 10389 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 1 + - uid: 10390 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1 + - uid: 10391 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 1 + - uid: 10392 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1 + - uid: 10393 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 1 + - uid: 10394 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 1 + - uid: 10395 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 1 + - uid: 10396 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 1 + - uid: 10397 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 1 + - uid: 10398 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 1 + - uid: 10399 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1 + - uid: 10400 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 1 + - uid: 10401 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 1 + - uid: 10402 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 1 + - uid: 10403 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1 + - uid: 10404 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 1 + - uid: 10405 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 1 + - uid: 10406 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1 + - uid: 10407 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1 + - uid: 10408 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 1 + - uid: 10409 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1 + - uid: 10410 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1 + - uid: 10411 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1 + - uid: 10412 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1 + - uid: 10413 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 1 + - uid: 10414 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1 + - uid: 10415 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 1 + - uid: 10416 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1 + - uid: 10418 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 1 + - uid: 10419 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 1 + - uid: 10420 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1 + - uid: 10421 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 10422 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - uid: 10423 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1 + - uid: 10424 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1 + - uid: 10425 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1 + - uid: 10426 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1 + - uid: 10427 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1 + - uid: 10428 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1 + - uid: 10429 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1 + - uid: 10430 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1 + - uid: 10431 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 1 + - uid: 10432 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 1 + - uid: 10433 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 1 + - uid: 10434 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 1 + - uid: 10435 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 1 + - uid: 10436 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 1 + - uid: 10437 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 1 + - uid: 10438 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 1 + - uid: 10439 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 1 + - uid: 10440 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1 + - uid: 10441 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1 + - uid: 10459 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 1 + - uid: 10460 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 1 + - uid: 10461 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 1 + - uid: 10462 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 1 + - uid: 10463 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 1 + - uid: 10464 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 1 + - uid: 10465 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 1 + - uid: 10466 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 1 + - uid: 10467 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 1 + - uid: 10468 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 1 + - uid: 10469 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 1 + - uid: 10546 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 1 + - uid: 10547 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 1 + - uid: 10548 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 1 + - uid: 10631 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 1 + - uid: 10632 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 1 + - uid: 10633 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 1 + - uid: 10634 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 1 + - uid: 10635 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 1 + - uid: 10636 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 1 + - uid: 10637 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 1 + - uid: 10638 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1 + - uid: 10639 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 1 + - uid: 10640 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 1 + - uid: 10641 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 1 + - uid: 10662 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1 + - uid: 10664 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 1 + - uid: 10667 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1 + - uid: 10668 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 1 + - uid: 10669 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 1 + - uid: 10670 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 10671 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 1 + - uid: 10672 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 10673 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 10674 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 1 + - uid: 10675 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 1 + - uid: 10676 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - uid: 10677 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1 + - uid: 10678 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 10679 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 10680 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 10681 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 10682 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 10683 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 10684 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 10685 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - uid: 10686 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 10687 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 10688 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 + - uid: 10689 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1 + - uid: 10690 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - uid: 10691 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 1 + - uid: 10692 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 1 + - uid: 10694 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 1 + - uid: 10695 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 1 + - uid: 10696 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1 + - uid: 10697 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 1 + - uid: 10698 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 1 + - uid: 10699 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 1 + - uid: 10700 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 1 + - uid: 10701 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 1 + - uid: 10702 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 1 + - uid: 10703 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 1 + - uid: 10704 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 1 + - uid: 10705 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 1 + - uid: 10706 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 1 + - uid: 10707 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 1 + - uid: 10708 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 1 + - uid: 10709 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 1 + - uid: 10710 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 1 + - uid: 10711 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 1 + - uid: 10712 + components: + - type: Transform + pos: -12.5,-29.5 + parent: 1 + - uid: 10713 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 1 + - uid: 10714 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 1 + - uid: 10715 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 1 + - uid: 10716 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 1 + - uid: 10717 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 1 + - uid: 10718 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 1 + - uid: 10719 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 1 + - uid: 10720 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 1 + - uid: 10721 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 1 + - uid: 10722 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 1 + - uid: 10968 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 1 + - uid: 10969 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 1 + - uid: 10970 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 1 + - uid: 10972 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 1 + - uid: 10973 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 1 + - uid: 10974 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 1 + - uid: 10975 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 1 + - uid: 10976 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 1 + - uid: 10977 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1 + - uid: 10978 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 1 + - uid: 10979 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 1 + - uid: 10980 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 1 + - uid: 10981 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 1 + - uid: 10982 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 1 + - uid: 10983 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 1 + - uid: 10984 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 1 + - uid: 10985 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 1 + - uid: 10986 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 1 + - uid: 10987 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 1 + - uid: 10988 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 1 + - uid: 10989 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 1 + - uid: 10990 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 1 + - uid: 11084 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1 + - uid: 11085 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 + - uid: 11086 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 + - uid: 11087 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - uid: 11088 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - uid: 11089 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1 + - uid: 11090 + components: + - type: Transform + pos: 19.5,0.5 + parent: 1 + - uid: 11091 + components: + - type: Transform + pos: 20.5,0.5 + parent: 1 + - uid: 11092 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1 + - uid: 11093 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 11094 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1 + - uid: 11095 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1 + - uid: 11096 + components: + - type: Transform + pos: 21.5,4.5 + parent: 1 + - uid: 11097 + components: + - type: Transform + pos: 21.5,5.5 + parent: 1 + - uid: 11098 + components: + - type: Transform + pos: 22.5,5.5 + parent: 1 + - uid: 11099 + components: + - type: Transform + pos: 22.5,0.5 + parent: 1 + - uid: 11100 + components: + - type: Transform + pos: 23.5,0.5 + parent: 1 + - uid: 11101 + components: + - type: Transform + pos: 24.5,0.5 + parent: 1 + - uid: 11102 + components: + - type: Transform + pos: 25.5,0.5 + parent: 1 + - uid: 11103 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 1 + - uid: 11104 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 1 + - uid: 11105 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 1 + - uid: 11106 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 1 + - uid: 11107 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1 + - uid: 11108 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 1 + - uid: 11236 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 11237 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1 + - uid: 11238 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 11239 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 11240 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1 + - uid: 11241 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 + - uid: 11242 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 11243 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 11244 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 11282 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 11283 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 11284 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 11285 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 1 + - uid: 11286 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1 + - uid: 11287 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 11288 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 11378 + components: + - type: Transform + pos: -4.5,74.5 + parent: 1 + - uid: 11379 + components: + - type: Transform + pos: -3.5,74.5 + parent: 1 + - uid: 11380 + components: + - type: Transform + pos: -3.5,75.5 + parent: 1 + - uid: 11381 + components: + - type: Transform + pos: -3.5,76.5 + parent: 1 + - uid: 11382 + components: + - type: Transform + pos: -4.5,76.5 + parent: 1 + - uid: 11383 + components: + - type: Transform + pos: -5.5,76.5 + parent: 1 + - uid: 11384 + components: + - type: Transform + pos: -6.5,76.5 + parent: 1 + - uid: 11385 + components: + - type: Transform + pos: -7.5,76.5 + parent: 1 + - uid: 11386 + components: + - type: Transform + pos: -8.5,76.5 + parent: 1 + - uid: 11387 + components: + - type: Transform + pos: -9.5,76.5 + parent: 1 + - uid: 11388 + components: + - type: Transform + pos: -9.5,77.5 + parent: 1 + - uid: 11389 + components: + - type: Transform + pos: -9.5,78.5 + parent: 1 + - uid: 11390 + components: + - type: Transform + pos: -8.5,78.5 + parent: 1 + - uid: 11391 + components: + - type: Transform + pos: -8.5,79.5 + parent: 1 + - uid: 11392 + components: + - type: Transform + pos: -8.5,80.5 + parent: 1 + - uid: 11393 + components: + - type: Transform + pos: -8.5,81.5 + parent: 1 + - uid: 11394 + components: + - type: Transform + pos: -7.5,81.5 + parent: 1 + - uid: 11395 + components: + - type: Transform + pos: -7.5,82.5 + parent: 1 + - uid: 11396 + components: + - type: Transform + pos: -7.5,83.5 + parent: 1 + - uid: 11397 + components: + - type: Transform + pos: -6.5,83.5 + parent: 1 + - uid: 11398 + components: + - type: Transform + pos: -5.5,83.5 + parent: 1 + - uid: 11399 + components: + - type: Transform + pos: -4.5,83.5 + parent: 1 + - uid: 11400 + components: + - type: Transform + pos: -4.5,84.5 + parent: 1 + - uid: 11401 + components: + - type: Transform + pos: -3.5,84.5 + parent: 1 + - uid: 11402 + components: + - type: Transform + pos: -2.5,84.5 + parent: 1 + - uid: 11403 + components: + - type: Transform + pos: -1.5,84.5 + parent: 1 + - uid: 11404 + components: + - type: Transform + pos: -0.5,84.5 + parent: 1 + - uid: 11405 + components: + - type: Transform + pos: 0.5,84.5 + parent: 1 + - uid: 11406 + components: + - type: Transform + pos: 1.5,84.5 + parent: 1 + - uid: 11407 + components: + - type: Transform + pos: 2.5,84.5 + parent: 1 + - uid: 11408 + components: + - type: Transform + pos: 3.5,84.5 + parent: 1 + - uid: 11409 + components: + - type: Transform + pos: 3.5,83.5 + parent: 1 + - uid: 11410 + components: + - type: Transform + pos: 4.5,83.5 + parent: 1 + - uid: 11411 + components: + - type: Transform + pos: 5.5,83.5 + parent: 1 + - uid: 11412 + components: + - type: Transform + pos: 6.5,83.5 + parent: 1 + - uid: 11413 + components: + - type: Transform + pos: 6.5,82.5 + parent: 1 + - uid: 11414 + components: + - type: Transform + pos: 6.5,81.5 + parent: 1 + - uid: 11415 + components: + - type: Transform + pos: 7.5,81.5 + parent: 1 + - uid: 11416 + components: + - type: Transform + pos: 7.5,80.5 + parent: 1 + - uid: 11417 + components: + - type: Transform + pos: 7.5,79.5 + parent: 1 + - uid: 11418 + components: + - type: Transform + pos: 7.5,78.5 + parent: 1 + - uid: 11419 + components: + - type: Transform + pos: 8.5,78.5 + parent: 1 + - uid: 11420 + components: + - type: Transform + pos: 8.5,77.5 + parent: 1 + - uid: 11421 + components: + - type: Transform + pos: 8.5,76.5 + parent: 1 + - uid: 11422 + components: + - type: Transform + pos: 8.5,75.5 + parent: 1 + - uid: 11423 + components: + - type: Transform + pos: 7.5,75.5 + parent: 1 + - uid: 11424 + components: + - type: Transform + pos: 6.5,75.5 + parent: 1 + - uid: 11553 + components: + - type: Transform + pos: -24.5,50.5 + parent: 1 + - uid: 11554 + components: + - type: Transform + pos: -24.5,49.5 + parent: 1 + - uid: 11555 + components: + - type: Transform + pos: -24.5,51.5 + parent: 1 + - uid: 11556 + components: + - type: Transform + pos: -24.5,52.5 + parent: 1 + - uid: 11557 + components: + - type: Transform + pos: -24.5,53.5 + parent: 1 + - uid: 11558 + components: + - type: Transform + pos: -24.5,54.5 + parent: 1 + - uid: 11559 + components: + - type: Transform + pos: -24.5,55.5 + parent: 1 + - uid: 11560 + components: + - type: Transform + pos: -24.5,56.5 + parent: 1 + - uid: 11561 + components: + - type: Transform + pos: -24.5,57.5 + parent: 1 + - uid: 11562 + components: + - type: Transform + pos: -23.5,57.5 + parent: 1 + - uid: 11563 + components: + - type: Transform + pos: -22.5,57.5 + parent: 1 + - uid: 11564 + components: + - type: Transform + pos: -21.5,57.5 + parent: 1 + - uid: 11565 + components: + - type: Transform + pos: -21.5,56.5 + parent: 1 + - uid: 11566 + components: + - type: Transform + pos: -21.5,55.5 + parent: 1 + - uid: 11567 + components: + - type: Transform + pos: -21.5,54.5 + parent: 1 + - uid: 11568 + components: + - type: Transform + pos: -21.5,53.5 + parent: 1 + - uid: 11569 + components: + - type: Transform + pos: -21.5,52.5 + parent: 1 + - uid: 11570 + components: + - type: Transform + pos: -21.5,51.5 + parent: 1 + - uid: 11571 + components: + - type: Transform + pos: -21.5,50.5 + parent: 1 + - uid: 11572 + components: + - type: Transform + pos: -20.5,50.5 + parent: 1 + - uid: 11574 + components: + - type: Transform + pos: -42.5,44.5 + parent: 1 + - uid: 11575 + components: + - type: Transform + pos: -43.5,44.5 + parent: 1 + - uid: 11576 + components: + - type: Transform + pos: -43.5,45.5 + parent: 1 + - uid: 11577 + components: + - type: Transform + pos: -43.5,46.5 + parent: 1 + - uid: 11578 + components: + - type: Transform + pos: -43.5,47.5 + parent: 1 + - uid: 11579 + components: + - type: Transform + pos: -43.5,48.5 + parent: 1 + - uid: 11580 + components: + - type: Transform + pos: -43.5,49.5 + parent: 1 + - uid: 11581 + components: + - type: Transform + pos: -43.5,50.5 + parent: 1 + - uid: 11582 + components: + - type: Transform + pos: -43.5,51.5 + parent: 1 + - uid: 11583 + components: + - type: Transform + pos: -41.5,51.5 + parent: 1 + - uid: 11584 + components: + - type: Transform + pos: -42.5,51.5 + parent: 1 + - uid: 11585 + components: + - type: Transform + pos: -40.5,51.5 + parent: 1 + - uid: 11586 + components: + - type: Transform + pos: -40.5,52.5 + parent: 1 + - uid: 11587 + components: + - type: Transform + pos: -39.5,52.5 + parent: 1 + - uid: 11588 + components: + - type: Transform + pos: -38.5,52.5 + parent: 1 + - uid: 11589 + components: + - type: Transform + pos: -37.5,52.5 + parent: 1 + - uid: 11590 + components: + - type: Transform + pos: -36.5,52.5 + parent: 1 + - uid: 11591 + components: + - type: Transform + pos: -35.5,52.5 + parent: 1 + - uid: 11592 + components: + - type: Transform + pos: -34.5,52.5 + parent: 1 + - uid: 11593 + components: + - type: Transform + pos: -33.5,52.5 + parent: 1 + - uid: 11594 + components: + - type: Transform + pos: -32.5,52.5 + parent: 1 + - uid: 11595 + components: + - type: Transform + pos: -31.5,52.5 + parent: 1 + - uid: 11596 + components: + - type: Transform + pos: -30.5,52.5 + parent: 1 + - uid: 11597 + components: + - type: Transform + pos: -29.5,52.5 + parent: 1 + - uid: 11598 + components: + - type: Transform + pos: -28.5,52.5 + parent: 1 + - uid: 11599 + components: + - type: Transform + pos: -27.5,52.5 + parent: 1 + - uid: 11600 + components: + - type: Transform + pos: -27.5,53.5 + parent: 1 + - uid: 11601 + components: + - type: Transform + pos: -27.5,54.5 + parent: 1 + - uid: 11602 + components: + - type: Transform + pos: -27.5,55.5 + parent: 1 + - uid: 11603 + components: + - type: Transform + pos: -27.5,56.5 + parent: 1 + - uid: 11604 + components: + - type: Transform + pos: -27.5,57.5 + parent: 1 + - uid: 11605 + components: + - type: Transform + pos: -30.5,57.5 + parent: 1 + - uid: 11606 + components: + - type: Transform + pos: -30.5,56.5 + parent: 1 + - uid: 11607 + components: + - type: Transform + pos: -29.5,56.5 + parent: 1 + - uid: 11608 + components: + - type: Transform + pos: -26.5,57.5 + parent: 1 + - uid: 11609 + components: + - type: Transform + pos: -25.5,57.5 + parent: 1 + - uid: 11839 + components: + - type: Transform + pos: -21.5,49.5 + parent: 1 + - uid: 11840 + components: + - type: Transform + pos: -21.5,48.5 + parent: 1 + - uid: 11841 + components: + - type: Transform + pos: -20.5,48.5 + parent: 1 + - uid: 11842 + components: + - type: Transform + pos: -19.5,48.5 + parent: 1 + - uid: 11843 + components: + - type: Transform + pos: -19.5,49.5 + parent: 1 + - uid: 11844 + components: + - type: Transform + pos: -19.5,50.5 + parent: 1 + - uid: 11845 + components: + - type: Transform + pos: -18.5,50.5 + parent: 1 + - uid: 11846 + components: + - type: Transform + pos: -17.5,50.5 + parent: 1 + - uid: 11847 + components: + - type: Transform + pos: -16.5,50.5 + parent: 1 + - uid: 11848 + components: + - type: Transform + pos: -16.5,51.5 + parent: 1 + - uid: 11849 + components: + - type: Transform + pos: -16.5,52.5 + parent: 1 + - uid: 11850 + components: + - type: Transform + pos: -16.5,53.5 + parent: 1 + - uid: 11851 + components: + - type: Transform + pos: -16.5,54.5 + parent: 1 + - uid: 11852 + components: + - type: Transform + pos: -16.5,55.5 + parent: 1 + - uid: 11853 + components: + - type: Transform + pos: -16.5,56.5 + parent: 1 + - uid: 11854 + components: + - type: Transform + pos: -15.5,56.5 + parent: 1 + - uid: 11855 + components: + - type: Transform + pos: -14.5,56.5 + parent: 1 + - uid: 11856 + components: + - type: Transform + pos: -13.5,56.5 + parent: 1 + - uid: 11857 + components: + - type: Transform + pos: -12.5,56.5 + parent: 1 + - uid: 11858 + components: + - type: Transform + pos: -11.5,56.5 + parent: 1 + - uid: 11859 + components: + - type: Transform + pos: -10.5,56.5 + parent: 1 + - uid: 11860 + components: + - type: Transform + pos: -9.5,56.5 + parent: 1 + - uid: 11861 + components: + - type: Transform + pos: -8.5,56.5 + parent: 1 + - uid: 11863 + components: + - type: Transform + pos: -7.5,56.5 + parent: 1 + - uid: 12020 + components: + - type: Transform + pos: -28.5,56.5 + parent: 1 + - uid: 12028 + components: + - type: Transform + pos: -21.5,30.5 + parent: 1 + - uid: 12029 + components: + - type: Transform + pos: -20.5,30.5 + parent: 1 + - uid: 12030 + components: + - type: Transform + pos: -20.5,31.5 + parent: 1 + - uid: 12031 + components: + - type: Transform + pos: -20.5,29.5 + parent: 1 + - uid: 12032 + components: + - type: Transform + pos: -20.5,28.5 + parent: 1 + - uid: 12033 + components: + - type: Transform + pos: -20.5,27.5 + parent: 1 + - uid: 12034 + components: + - type: Transform + pos: -20.5,26.5 + parent: 1 + - uid: 12035 + components: + - type: Transform + pos: -20.5,25.5 + parent: 1 + - uid: 12036 + components: + - type: Transform + pos: -19.5,25.5 + parent: 1 + - uid: 12037 + components: + - type: Transform + pos: -18.5,25.5 + parent: 1 + - uid: 12038 + components: + - type: Transform + pos: -17.5,25.5 + parent: 1 + - uid: 12039 + components: + - type: Transform + pos: -17.5,26.5 + parent: 1 + - uid: 12040 + components: + - type: Transform + pos: -16.5,25.5 + parent: 1 + - uid: 12041 + components: + - type: Transform + pos: -15.5,25.5 + parent: 1 + - uid: 12042 + components: + - type: Transform + pos: -14.5,25.5 + parent: 1 + - uid: 12043 + components: + - type: Transform + pos: -13.5,25.5 + parent: 1 + - uid: 12044 + components: + - type: Transform + pos: -12.5,25.5 + parent: 1 + - uid: 12045 + components: + - type: Transform + pos: -11.5,25.5 + parent: 1 + - uid: 12046 + components: + - type: Transform + pos: -10.5,25.5 + parent: 1 + - uid: 12047 + components: + - type: Transform + pos: -10.5,24.5 + parent: 1 + - uid: 12048 + components: + - type: Transform + pos: -10.5,23.5 + parent: 1 + - uid: 12049 + components: + - type: Transform + pos: -9.5,23.5 + parent: 1 + - uid: 12050 + components: + - type: Transform + pos: -8.5,23.5 + parent: 1 + - uid: 12051 + components: + - type: Transform + pos: -10.5,26.5 + parent: 1 + - uid: 12052 + components: + - type: Transform + pos: -10.5,27.5 + parent: 1 + - uid: 12053 + components: + - type: Transform + pos: -10.5,28.5 + parent: 1 + - uid: 12054 + components: + - type: Transform + pos: -10.5,29.5 + parent: 1 + - uid: 12055 + components: + - type: Transform + pos: -10.5,30.5 + parent: 1 + - uid: 12056 + components: + - type: Transform + pos: -10.5,31.5 + parent: 1 + - uid: 12057 + components: + - type: Transform + pos: -10.5,32.5 + parent: 1 + - uid: 12058 + components: + - type: Transform + pos: -11.5,32.5 + parent: 1 + - uid: 12059 + components: + - type: Transform + pos: -12.5,32.5 + parent: 1 + - uid: 12236 + components: + - type: Transform + pos: -21.5,27.5 + parent: 1 + - uid: 12237 + components: + - type: Transform + pos: -22.5,27.5 + parent: 1 + - uid: 12238 + components: + - type: Transform + pos: -23.5,27.5 + parent: 1 + - uid: 12239 + components: + - type: Transform + pos: -23.5,28.5 + parent: 1 + - uid: 12240 + components: + - type: Transform + pos: -23.5,29.5 + parent: 1 + - uid: 12241 + components: + - type: Transform + pos: -23.5,30.5 + parent: 1 + - uid: 12242 + components: + - type: Transform + pos: -23.5,31.5 + parent: 1 + - uid: 12243 + components: + - type: Transform + pos: -23.5,32.5 + parent: 1 + - uid: 12244 + components: + - type: Transform + pos: -24.5,32.5 + parent: 1 + - uid: 12245 + components: + - type: Transform + pos: -25.5,32.5 + parent: 1 + - uid: 12290 + components: + - type: Transform + pos: -23.5,33.5 + parent: 1 + - uid: 12291 + components: + - type: Transform + pos: -23.5,34.5 + parent: 1 + - uid: 12292 + components: + - type: Transform + pos: -23.5,35.5 + parent: 1 + - uid: 12293 + components: + - type: Transform + pos: -23.5,36.5 + parent: 1 + - uid: 12295 + components: + - type: Transform + pos: -25.5,36.5 + parent: 1 + - uid: 12296 + components: + - type: Transform + pos: -26.5,36.5 + parent: 1 + - uid: 12297 + components: + - type: Transform + pos: -27.5,36.5 + parent: 1 + - uid: 12298 + components: + - type: Transform + pos: -28.5,36.5 + parent: 1 + - uid: 12299 + components: + - type: Transform + pos: -29.5,36.5 + parent: 1 + - uid: 12300 + components: + - type: Transform + pos: -30.5,36.5 + parent: 1 + - uid: 12301 + components: + - type: Transform + pos: -31.5,36.5 + parent: 1 + - uid: 12302 + components: + - type: Transform + pos: -32.5,36.5 + parent: 1 + - uid: 12303 + components: + - type: Transform + pos: -33.5,36.5 + parent: 1 + - uid: 12304 + components: + - type: Transform + pos: -34.5,36.5 + parent: 1 + - uid: 12305 + components: + - type: Transform + pos: -35.5,36.5 + parent: 1 + - uid: 12306 + components: + - type: Transform + pos: -36.5,36.5 + parent: 1 + - uid: 12307 + components: + - type: Transform + pos: -37.5,36.5 + parent: 1 + - uid: 12308 + components: + - type: Transform + pos: -38.5,36.5 + parent: 1 + - uid: 12309 + components: + - type: Transform + pos: -38.5,35.5 + parent: 1 + - uid: 12310 + components: + - type: Transform + pos: -38.5,34.5 + parent: 1 + - uid: 12311 + components: + - type: Transform + pos: -38.5,33.5 + parent: 1 + - uid: 12312 + components: + - type: Transform + pos: -37.5,33.5 + parent: 1 + - uid: 12313 + components: + - type: Transform + pos: -36.5,33.5 + parent: 1 + - uid: 12314 + components: + - type: Transform + pos: -35.5,33.5 + parent: 1 + - uid: 12315 + components: + - type: Transform + pos: -34.5,33.5 + parent: 1 + - uid: 12316 + components: + - type: Transform + pos: -34.5,32.5 + parent: 1 + - uid: 12317 + components: + - type: Transform + pos: -34.5,31.5 + parent: 1 + - uid: 12318 + components: + - type: Transform + pos: -34.5,30.5 + parent: 1 + - uid: 12319 + components: + - type: Transform + pos: -34.5,29.5 + parent: 1 + - uid: 12320 + components: + - type: Transform + pos: -34.5,28.5 + parent: 1 + - uid: 12321 + components: + - type: Transform + pos: -34.5,27.5 + parent: 1 + - uid: 12322 + components: + - type: Transform + pos: -34.5,26.5 + parent: 1 + - uid: 12323 + components: + - type: Transform + pos: -34.5,25.5 + parent: 1 + - uid: 12324 + components: + - type: Transform + pos: -35.5,25.5 + parent: 1 + - uid: 12409 + components: + - type: Transform + pos: 20.5,54.5 + parent: 1 + - uid: 12410 + components: + - type: Transform + pos: 20.5,53.5 + parent: 1 + - uid: 12411 + components: + - type: Transform + pos: 20.5,52.5 + parent: 1 + - uid: 12412 + components: + - type: Transform + pos: 19.5,52.5 + parent: 1 + - uid: 12413 + components: + - type: Transform + pos: 18.5,52.5 + parent: 1 + - uid: 12414 + components: + - type: Transform + pos: 17.5,52.5 + parent: 1 + - uid: 12415 + components: + - type: Transform + pos: 16.5,52.5 + parent: 1 + - uid: 12416 + components: + - type: Transform + pos: 16.5,53.5 + parent: 1 + - uid: 12417 + components: + - type: Transform + pos: 16.5,54.5 + parent: 1 + - uid: 12418 + components: + - type: Transform + pos: 16.5,55.5 + parent: 1 + - uid: 12419 + components: + - type: Transform + pos: 16.5,56.5 + parent: 1 + - uid: 12420 + components: + - type: Transform + pos: 17.5,56.5 + parent: 1 + - uid: 12421 + components: + - type: Transform + pos: 18.5,56.5 + parent: 1 + - uid: 12422 + components: + - type: Transform + pos: 19.5,56.5 + parent: 1 + - uid: 12423 + components: + - type: Transform + pos: 19.5,57.5 + parent: 1 + - uid: 12424 + components: + - type: Transform + pos: 19.5,58.5 + parent: 1 + - uid: 12425 + components: + - type: Transform + pos: 18.5,58.5 + parent: 1 + - uid: 12426 + components: + - type: Transform + pos: 18.5,59.5 + parent: 1 + - uid: 12427 + components: + - type: Transform + pos: 18.5,60.5 + parent: 1 + - uid: 12428 + components: + - type: Transform + pos: 18.5,61.5 + parent: 1 + - uid: 12429 + components: + - type: Transform + pos: 18.5,62.5 + parent: 1 + - uid: 12430 + components: + - type: Transform + pos: 18.5,63.5 + parent: 1 + - uid: 12431 + components: + - type: Transform + pos: 17.5,63.5 + parent: 1 + - uid: 12432 + components: + - type: Transform + pos: 16.5,63.5 + parent: 1 + - uid: 12433 + components: + - type: Transform + pos: 15.5,63.5 + parent: 1 + - uid: 12434 + components: + - type: Transform + pos: 14.5,63.5 + parent: 1 + - uid: 12435 + components: + - type: Transform + pos: 13.5,63.5 + parent: 1 + - uid: 12436 + components: + - type: Transform + pos: 12.5,63.5 + parent: 1 + - uid: 12437 + components: + - type: Transform + pos: 11.5,63.5 + parent: 1 + - uid: 12438 + components: + - type: Transform + pos: 10.5,63.5 + parent: 1 + - uid: 12439 + components: + - type: Transform + pos: 10.5,62.5 + parent: 1 + - uid: 12440 + components: + - type: Transform + pos: 16.5,51.5 + parent: 1 + - uid: 12441 + components: + - type: Transform + pos: 16.5,50.5 + parent: 1 + - uid: 12442 + components: + - type: Transform + pos: 16.5,49.5 + parent: 1 + - uid: 12443 + components: + - type: Transform + pos: 17.5,49.5 + parent: 1 + - uid: 12444 + components: + - type: Transform + pos: 18.5,49.5 + parent: 1 + - uid: 12445 + components: + - type: Transform + pos: 19.5,49.5 + parent: 1 + - uid: 12446 + components: + - type: Transform + pos: 20.5,49.5 + parent: 1 + - uid: 12447 + components: + - type: Transform + pos: 21.5,49.5 + parent: 1 + - uid: 12448 + components: + - type: Transform + pos: 22.5,49.5 + parent: 1 + - uid: 12449 + components: + - type: Transform + pos: 22.5,48.5 + parent: 1 + - uid: 12450 + components: + - type: Transform + pos: 22.5,47.5 + parent: 1 + - uid: 12451 + components: + - type: Transform + pos: 22.5,46.5 + parent: 1 + - uid: 12452 + components: + - type: Transform + pos: 22.5,45.5 + parent: 1 + - uid: 12453 + components: + - type: Transform + pos: 23.5,45.5 + parent: 1 + - uid: 12454 + components: + - type: Transform + pos: 24.5,45.5 + parent: 1 + - uid: 12455 + components: + - type: Transform + pos: 25.5,45.5 + parent: 1 + - uid: 12456 + components: + - type: Transform + pos: 25.5,44.5 + parent: 1 + - uid: 12457 + components: + - type: Transform + pos: 25.5,43.5 + parent: 1 + - uid: 12458 + components: + - type: Transform + pos: 25.5,42.5 + parent: 1 + - uid: 12459 + components: + - type: Transform + pos: 24.5,42.5 + parent: 1 + - uid: 12461 + components: + - type: Transform + pos: 6.5,46.5 + parent: 1 + - uid: 12462 + components: + - type: Transform + pos: 5.5,46.5 + parent: 1 + - uid: 12463 + components: + - type: Transform + pos: 4.5,46.5 + parent: 1 + - uid: 12464 + components: + - type: Transform + pos: 3.5,46.5 + parent: 1 + - uid: 12465 + components: + - type: Transform + pos: 2.5,46.5 + parent: 1 + - uid: 12466 + components: + - type: Transform + pos: 1.5,46.5 + parent: 1 + - uid: 12467 + components: + - type: Transform + pos: 0.5,46.5 + parent: 1 + - uid: 12468 + components: + - type: Transform + pos: 0.5,47.5 + parent: 1 + - uid: 12469 + components: + - type: Transform + pos: 0.5,48.5 + parent: 1 + - uid: 12470 + components: + - type: Transform + pos: 0.5,49.5 + parent: 1 + - uid: 12471 + components: + - type: Transform + pos: 0.5,50.5 + parent: 1 + - uid: 12472 + components: + - type: Transform + pos: 0.5,51.5 + parent: 1 + - uid: 12473 + components: + - type: Transform + pos: 0.5,52.5 + parent: 1 + - uid: 12474 + components: + - type: Transform + pos: 0.5,53.5 + parent: 1 + - uid: 12475 + components: + - type: Transform + pos: 1.5,53.5 + parent: 1 + - uid: 12476 + components: + - type: Transform + pos: 2.5,53.5 + parent: 1 + - uid: 12477 + components: + - type: Transform + pos: 3.5,53.5 + parent: 1 + - uid: 12478 + components: + - type: Transform + pos: 4.5,53.5 + parent: 1 + - uid: 12479 + components: + - type: Transform + pos: 5.5,53.5 + parent: 1 + - uid: 12480 + components: + - type: Transform + pos: 6.5,53.5 + parent: 1 + - uid: 12481 + components: + - type: Transform + pos: 7.5,53.5 + parent: 1 + - uid: 12482 + components: + - type: Transform + pos: 8.5,53.5 + parent: 1 + - uid: 12483 + components: + - type: Transform + pos: 9.5,53.5 + parent: 1 + - uid: 12484 + components: + - type: Transform + pos: 10.5,53.5 + parent: 1 + - uid: 12485 + components: + - type: Transform + pos: 11.5,53.5 + parent: 1 + - uid: 12486 + components: + - type: Transform + pos: 12.5,53.5 + parent: 1 + - uid: 12487 + components: + - type: Transform + pos: 13.5,53.5 + parent: 1 + - uid: 12488 + components: + - type: Transform + pos: 14.5,53.5 + parent: 1 + - uid: 12489 + components: + - type: Transform + pos: 5.5,47.5 + parent: 1 + - uid: 12490 + components: + - type: Transform + pos: 5.5,48.5 + parent: 1 + - uid: 12491 + components: + - type: Transform + pos: 5.5,49.5 + parent: 1 + - uid: 12492 + components: + - type: Transform + pos: 14.5,54.5 + parent: 1 + - uid: 12493 + components: + - type: Transform + pos: 14.5,55.5 + parent: 1 + - uid: 12494 + components: + - type: Transform + pos: 14.5,56.5 + parent: 1 + - uid: 12495 + components: + - type: Transform + pos: 14.5,57.5 + parent: 1 + - uid: 12496 + components: + - type: Transform + pos: 14.5,58.5 + parent: 1 + - uid: 12497 + components: + - type: Transform + pos: 15.5,58.5 + parent: 1 + - uid: 12498 + components: + - type: Transform + pos: 16.5,58.5 + parent: 1 + - uid: 12499 + components: + - type: Transform + pos: 17.5,58.5 + parent: 1 + - uid: 12500 + components: + - type: Transform + pos: 20.5,56.5 + parent: 1 + - uid: 12501 + components: + - type: Transform + pos: 21.5,56.5 + parent: 1 + - uid: 12502 + components: + - type: Transform + pos: 22.5,56.5 + parent: 1 + - uid: 12503 + components: + - type: Transform + pos: 22.5,57.5 + parent: 1 + - uid: 12504 + components: + - type: Transform + pos: 23.5,57.5 + parent: 1 + - uid: 12505 + components: + - type: Transform + pos: 24.5,57.5 + parent: 1 + - uid: 12506 + components: + - type: Transform + pos: 25.5,57.5 + parent: 1 + - uid: 12507 + components: + - type: Transform + pos: 26.5,57.5 + parent: 1 + - uid: 12508 + components: + - type: Transform + pos: 27.5,57.5 + parent: 1 + - uid: 12509 + components: + - type: Transform + pos: 28.5,57.5 + parent: 1 + - uid: 12510 + components: + - type: Transform + pos: 28.5,56.5 + parent: 1 + - uid: 12511 + components: + - type: Transform + pos: 28.5,55.5 + parent: 1 + - uid: 12512 + components: + - type: Transform + pos: 28.5,54.5 + parent: 1 + - uid: 12513 + components: + - type: Transform + pos: 28.5,53.5 + parent: 1 + - uid: 12514 + components: + - type: Transform + pos: 28.5,52.5 + parent: 1 + - uid: 12515 + components: + - type: Transform + pos: 28.5,51.5 + parent: 1 + - uid: 12516 + components: + - type: Transform + pos: 27.5,51.5 + parent: 1 + - uid: 12517 + components: + - type: Transform + pos: 29.5,52.5 + parent: 1 + - uid: 12518 + components: + - type: Transform + pos: 29.5,51.5 + parent: 1 + - uid: 12519 + components: + - type: Transform + pos: 30.5,51.5 + parent: 1 + - uid: 12520 + components: + - type: Transform + pos: 31.5,51.5 + parent: 1 + - uid: 12521 + components: + - type: Transform + pos: 32.5,51.5 + parent: 1 + - uid: 12522 + components: + - type: Transform + pos: 33.5,51.5 + parent: 1 + - uid: 12523 + components: + - type: Transform + pos: 34.5,51.5 + parent: 1 + - uid: 12524 + components: + - type: Transform + pos: 35.5,51.5 + parent: 1 + - uid: 12525 + components: + - type: Transform + pos: 36.5,51.5 + parent: 1 + - uid: 12526 + components: + - type: Transform + pos: 36.5,50.5 + parent: 1 + - uid: 12527 + components: + - type: Transform + pos: 36.5,49.5 + parent: 1 + - uid: 12528 + components: + - type: Transform + pos: 36.5,48.5 + parent: 1 + - uid: 12529 + components: + - type: Transform + pos: 36.5,47.5 + parent: 1 + - uid: 12530 + components: + - type: Transform + pos: 36.5,46.5 + parent: 1 + - uid: 12531 + components: + - type: Transform + pos: 36.5,45.5 + parent: 1 + - uid: 12532 + components: + - type: Transform + pos: 36.5,44.5 + parent: 1 + - uid: 12533 + components: + - type: Transform + pos: 36.5,43.5 + parent: 1 + - uid: 12534 + components: + - type: Transform + pos: 36.5,42.5 + parent: 1 + - uid: 12535 + components: + - type: Transform + pos: 36.5,41.5 + parent: 1 + - uid: 12536 + components: + - type: Transform + pos: 36.5,40.5 + parent: 1 + - uid: 12537 + components: + - type: Transform + pos: 37.5,40.5 + parent: 1 + - uid: 12538 + components: + - type: Transform + pos: 38.5,40.5 + parent: 1 + - uid: 12539 + components: + - type: Transform + pos: 39.5,40.5 + parent: 1 + - uid: 12540 + components: + - type: Transform + pos: 40.5,40.5 + parent: 1 + - uid: 12541 + components: + - type: Transform + pos: 41.5,40.5 + parent: 1 + - uid: 12542 + components: + - type: Transform + pos: 41.5,41.5 + parent: 1 + - uid: 12866 + components: + - type: Transform + pos: 16.5,25.5 + parent: 1 + - uid: 12867 + components: + - type: Transform + pos: 15.5,25.5 + parent: 1 + - uid: 12868 + components: + - type: Transform + pos: 14.5,25.5 + parent: 1 + - uid: 12869 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1 + - uid: 12870 + components: + - type: Transform + pos: 14.5,23.5 + parent: 1 + - uid: 12871 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1 + - uid: 12872 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 12873 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 12874 + components: + - type: Transform + pos: 17.5,22.5 + parent: 1 + - uid: 12875 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1 + - uid: 12876 + components: + - type: Transform + pos: 19.5,22.5 + parent: 1 + - uid: 12877 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1 + - uid: 12878 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1 + - uid: 12879 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1 + - uid: 12880 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1 + - uid: 12881 + components: + - type: Transform + pos: 17.5,19.5 + parent: 1 + - uid: 12882 + components: + - type: Transform + pos: 19.5,23.5 + parent: 1 + - uid: 12883 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1 + - uid: 12884 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1 + - uid: 12885 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1 + - uid: 12886 + components: + - type: Transform + pos: 22.5,24.5 + parent: 1 + - uid: 12887 + components: + - type: Transform + pos: 23.5,24.5 + parent: 1 + - uid: 12888 + components: + - type: Transform + pos: 24.5,24.5 + parent: 1 + - uid: 12889 + components: + - type: Transform + pos: 24.5,23.5 + parent: 1 + - uid: 12890 + components: + - type: Transform + pos: 24.5,25.5 + parent: 1 + - uid: 12891 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1 + - uid: 12892 + components: + - type: Transform + pos: 24.5,27.5 + parent: 1 + - uid: 12893 + components: + - type: Transform + pos: 23.5,27.5 + parent: 1 + - uid: 12894 + components: + - type: Transform + pos: 22.5,27.5 + parent: 1 + - uid: 12895 + components: + - type: Transform + pos: 21.5,27.5 + parent: 1 + - uid: 12896 + components: + - type: Transform + pos: 20.5,27.5 + parent: 1 + - uid: 12897 + components: + - type: Transform + pos: 20.5,28.5 + parent: 1 + - uid: 12898 + components: + - type: Transform + pos: 20.5,29.5 + parent: 1 + - uid: 12899 + components: + - type: Transform + pos: 20.5,30.5 + parent: 1 + - uid: 12902 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1 + - uid: 12903 + components: + - type: Transform + pos: 16.5,28.5 + parent: 1 + - uid: 12904 + components: + - type: Transform + pos: 15.5,28.5 + parent: 1 + - uid: 12905 + components: + - type: Transform + pos: 14.5,28.5 + parent: 1 + - uid: 12906 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1 + - uid: 12907 + components: + - type: Transform + pos: 12.5,28.5 + parent: 1 + - uid: 12908 + components: + - type: Transform + pos: 11.5,28.5 + parent: 1 + - uid: 12909 + components: + - type: Transform + pos: 10.5,28.5 + parent: 1 + - uid: 12910 + components: + - type: Transform + pos: 9.5,28.5 + parent: 1 + - uid: 12911 + components: + - type: Transform + pos: 8.5,28.5 + parent: 1 + - uid: 12912 + components: + - type: Transform + pos: 7.5,28.5 + parent: 1 + - uid: 12913 + components: + - type: Transform + pos: 6.5,28.5 + parent: 1 + - uid: 12914 + components: + - type: Transform + pos: 6.5,27.5 + parent: 1 + - uid: 12915 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1 + - uid: 12916 + components: + - type: Transform + pos: 5.5,26.5 + parent: 1 + - uid: 12917 + components: + - type: Transform + pos: 15.5,21.5 + parent: 1 + - uid: 12918 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1 + - uid: 12919 + components: + - type: Transform + pos: 10.5,30.5 + parent: 1 + - uid: 12920 + components: + - type: Transform + pos: 10.5,31.5 + parent: 1 + - uid: 12921 + components: + - type: Transform + pos: 9.5,31.5 + parent: 1 + - uid: 12922 + components: + - type: Transform + pos: 8.5,31.5 + parent: 1 + - uid: 13491 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 1 + - uid: 13497 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1 + - uid: 13498 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 1 + - uid: 13499 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 + - uid: 13500 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 13501 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 13502 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - uid: 13503 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1 + - uid: 13504 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1 + - uid: 13505 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1 + - uid: 13506 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 1 + - uid: 13507 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1 + - uid: 13508 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - uid: 13509 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 13510 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 13511 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 + - uid: 13512 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 13513 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 + - uid: 13514 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 13515 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 13516 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 + - uid: 13517 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1 + - uid: 13518 + components: + - type: Transform + pos: -21.5,8.5 + parent: 1 + - uid: 13519 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1 + - uid: 13520 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 13521 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 13522 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1 + - uid: 13523 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 13524 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 13525 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 13526 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 13527 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 13528 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 13529 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 13530 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 13531 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 13532 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 13533 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 1 + - uid: 14379 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 1 + - uid: 17238 + components: + - type: Transform + pos: 18.5,28.5 + parent: 1 + - uid: 17239 + components: + - type: Transform + pos: 19.5,28.5 + parent: 1 + - uid: 18340 + components: + - type: Transform + pos: -9.5,74.5 + parent: 1 + - uid: 18341 + components: + - type: Transform + pos: -9.5,73.5 + parent: 1 + - uid: 18342 + components: + - type: Transform + pos: -9.5,72.5 + parent: 1 + - uid: 18343 + components: + - type: Transform + pos: -9.5,75.5 + parent: 1 + - uid: 18451 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 1 + - uid: 18452 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 1 + - uid: 18453 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 1 + - uid: 18465 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - uid: 18466 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 18474 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 18475 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 +- proto: CableMVStack + entities: + - uid: 9125 + components: + - type: Transform + pos: 13.491544,-22.233011 + parent: 1 +- proto: CableTerminal + entities: + - uid: 4779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-30.5 + parent: 1 + - uid: 4780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-30.5 + parent: 1 + - uid: 4781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-30.5 + parent: 1 + - uid: 4782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-30.5 + parent: 1 + - uid: 8056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,55.5 + parent: 1 + - uid: 14043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,55.5 + parent: 1 + - uid: 18457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 1 +- proto: CandleGreenSmallInfinite + entities: + - uid: 8900 + components: + - type: Transform + pos: -29.63941,56.42083 + parent: 1 +- proto: CandleRedSmallInfinite + entities: + - uid: 4454 + components: + - type: Transform + pos: -29.780035,56.57708 + parent: 1 +- proto: CannabisSeeds + entities: + - uid: 8276 + components: + - type: Transform + pos: -38.424377,49.4277 + parent: 1 + - uid: 10966 + components: + - type: Transform + pos: 36.56873,-16.396769 + parent: 1 +- proto: CapacitorStockPart + entities: + - uid: 6544 + components: + - type: Transform + pos: 22.399736,-23.44135 + parent: 1 + - uid: 13453 + components: + - type: Transform + pos: -46.782776,46.69757 + parent: 1 +- proto: CarbonDioxideCanister + entities: + - uid: 3028 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3044 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: Carpet + entities: + - uid: 614 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: -25.5,8.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: -24.5,5.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: -25.5,5.5 + parent: 1 + - uid: 780 + components: + - type: Transform + pos: -25.5,6.5 + parent: 1 + - uid: 781 + components: + - type: Transform + pos: -25.5,7.5 + parent: 1 + - uid: 5786 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1 + - uid: 6687 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 6702 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1 + - uid: 6978 + components: + - type: Transform + pos: 10.5,58.5 + parent: 1 + - uid: 6979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,57.5 + parent: 1 + - uid: 6980 + components: + - type: Transform + pos: 10.5,56.5 + parent: 1 + - uid: 6981 + components: + - type: Transform + pos: 11.5,58.5 + parent: 1 + - uid: 6982 + components: + - type: Transform + pos: 11.5,57.5 + parent: 1 + - uid: 6983 + components: + - type: Transform + pos: 11.5,56.5 + parent: 1 + - uid: 6986 + components: + - type: Transform + pos: 9.5,58.5 + parent: 1 + - uid: 6987 + components: + - type: Transform + pos: 12.5,58.5 + parent: 1 + - uid: 6988 + components: + - type: Transform + pos: 10.5,60.5 + parent: 1 + - uid: 6989 + components: + - type: Transform + pos: 11.5,60.5 + parent: 1 + - uid: 6990 + components: + - type: Transform + pos: 11.5,61.5 + parent: 1 + - uid: 6991 + components: + - type: Transform + pos: 10.5,61.5 + parent: 1 + - uid: 7147 + components: + - type: Transform + pos: -23.5,6.5 + parent: 1 + - uid: 7915 + components: + - type: Transform + pos: -24.5,6.5 + parent: 1 + - uid: 8168 + components: + - type: Transform + pos: -24.5,8.5 + parent: 1 + - uid: 8249 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1 + - uid: 8593 + components: + - type: Transform + pos: -22.5,6.5 + parent: 1 + - uid: 8930 + components: + - type: Transform + pos: -28.5,57.5 + parent: 1 + - uid: 8964 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 8965 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 8966 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 8967 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 8968 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 8969 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 8970 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 8971 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 8972 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 8973 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 8974 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 8975 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 9002 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1 + - uid: 9039 + components: + - type: Transform + pos: -23.5,8.5 + parent: 1 +- proto: CarpetBlack + entities: + - uid: 8400 + components: + - type: Transform + pos: 11.5,46.5 + parent: 1 + - uid: 8401 + components: + - type: Transform + pos: 12.5,46.5 + parent: 1 + - uid: 8403 + components: + - type: Transform + pos: 12.5,45.5 + parent: 1 + - uid: 8405 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1 +- proto: CarpetBlue + entities: + - uid: 8976 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 8977 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 8978 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 8979 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 8980 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 8981 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 +- proto: CarpetChapel + entities: + - uid: 6861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,46.5 + parent: 1 + - uid: 6862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,46.5 + parent: 1 + - uid: 6863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,45.5 + parent: 1 + - uid: 6864 + components: + - type: Transform + pos: 28.5,45.5 + parent: 1 + - uid: 6865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,46.5 + parent: 1 + - uid: 6866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,46.5 + parent: 1 + - uid: 6867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,45.5 + parent: 1 + - uid: 6868 + components: + - type: Transform + pos: 32.5,45.5 + parent: 1 + - uid: 6869 + components: + - type: Transform + pos: 28.5,43.5 + parent: 1 + - uid: 6870 + components: + - type: Transform + pos: 32.5,43.5 + parent: 1 + - uid: 6871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,44.5 + parent: 1 + - uid: 6872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,44.5 + parent: 1 + - uid: 6873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,44.5 + parent: 1 + - uid: 6874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,43.5 + parent: 1 + - uid: 6875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,44.5 + parent: 1 + - uid: 6876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,43.5 + parent: 1 + - uid: 6877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,48.5 + parent: 1 + - uid: 6878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,48.5 + parent: 1 + - uid: 6879 + components: + - type: Transform + pos: 28.5,48.5 + parent: 1 + - uid: 6880 + components: + - type: Transform + pos: 32.5,48.5 + parent: 1 + - uid: 6881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,49.5 + parent: 1 + - uid: 6882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,49.5 + parent: 1 + - uid: 6883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,49.5 + parent: 1 + - uid: 6884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,49.5 + parent: 1 +- proto: CarpetGreen + entities: + - uid: 6691 + components: + - type: Transform + pos: -28.5,6.5 + parent: 1 + - uid: 6692 + components: + - type: Transform + pos: -28.5,5.5 + parent: 1 + - uid: 6694 + components: + - type: Transform + pos: -27.5,6.5 + parent: 1 + - uid: 6695 + components: + - type: Transform + pos: -27.5,5.5 + parent: 1 +- proto: CarpetOrange + entities: + - uid: 617 + components: + - type: Transform + pos: -24.5,10.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: -25.5,10.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 2.5,60.5 + parent: 1 + - uid: 6673 + components: + - type: Transform + pos: -26.5,10.5 + parent: 1 + - uid: 9349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,11.5 + parent: 1 + - uid: 9350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,10.5 + parent: 1 + - uid: 9351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,11.5 + parent: 1 + - uid: 9352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 1 + - uid: 9380 + components: + - type: Transform + pos: 2.5,61.5 + parent: 1 + - uid: 9381 + components: + - type: Transform + pos: 3.5,60.5 + parent: 1 + - uid: 9382 + components: + - type: Transform + pos: 3.5,61.5 + parent: 1 + - uid: 9383 + components: + - type: Transform + pos: 4.5,60.5 + parent: 1 + - uid: 9384 + components: + - type: Transform + pos: 4.5,61.5 + parent: 1 +- proto: CarpetPink + entities: + - uid: 526 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 3418 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 7635 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 8353 + components: + - type: Transform + pos: 42.5,51.5 + parent: 1 + - uid: 8354 + components: + - type: Transform + pos: 43.5,51.5 + parent: 1 + - uid: 8355 + components: + - type: Transform + pos: 43.5,50.5 + parent: 1 + - uid: 8356 + components: + - type: Transform + pos: 42.5,50.5 + parent: 1 + - uid: 8357 + components: + - type: Transform + pos: 41.5,50.5 + parent: 1 + - uid: 8358 + components: + - type: Transform + pos: 41.5,51.5 + parent: 1 + - uid: 8394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,47.5 + parent: 1 + - uid: 8395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,47.5 + parent: 1 + - uid: 8504 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 8559 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 8675 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 8676 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 8681 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 9873 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 1 + - uid: 9874 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 1 + - uid: 9875 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 1 + - uid: 9876 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 1 +- proto: CarpetPurple + entities: + - uid: 8578 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 8581 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 8582 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 8583 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 8584 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 8632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,20.5 + parent: 1 + - uid: 8633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,19.5 + parent: 1 + - uid: 8634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,20.5 + parent: 1 + - uid: 8635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,19.5 + parent: 1 + - uid: 8636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 1 + - uid: 8637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,19.5 + parent: 1 + - uid: 8672 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 +- proto: CarpetSBlue + entities: + - uid: 6806 + components: + - type: Transform + pos: -5.5,72.5 + parent: 1 + - uid: 6810 + components: + - type: Transform + pos: -5.5,73.5 + parent: 1 + - uid: 6811 + components: + - type: Transform + pos: -6.5,73.5 + parent: 1 + - uid: 6812 + components: + - type: Transform + pos: -6.5,72.5 + parent: 1 + - uid: 8484 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1 + - uid: 8485 + components: + - type: Transform + pos: 15.5,33.5 + parent: 1 + - uid: 8486 + components: + - type: Transform + pos: 16.5,33.5 + parent: 1 + - uid: 8487 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1 + - uid: 9266 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 9267 + components: + - type: Transform + pos: 27.5,8.5 + parent: 1 + - uid: 9268 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1 + - uid: 9269 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 749 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: -15.5,10.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1 + - uid: 985 + components: + - type: Transform + pos: -38.5,74.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: -43.5,45.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + pos: -38.5,73.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: -38.5,52.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + pos: -37.5,52.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + pos: -38.5,75.5 + parent: 1 + - uid: 1785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,20.5 + parent: 1 + - uid: 1987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,21.5 + parent: 1 + - uid: 2147 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 1 + - uid: 2372 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 1 + - uid: 2373 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 1 + - uid: 2375 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 1 + - uid: 2376 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 1 + - uid: 2811 + components: + - type: Transform + pos: 8.5,-52.5 + parent: 1 + - uid: 2836 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 1 + - uid: 2995 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 1 + - uid: 2996 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 1 + - uid: 2997 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 1 + - uid: 2998 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 1 + - uid: 2999 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 1 + - uid: 3000 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 1 + - uid: 3001 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 1 + - uid: 3002 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 1 + - uid: 3003 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 1 + - uid: 3004 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 1 + - uid: 3005 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 1 + - uid: 3006 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 1 + - uid: 3007 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 1 + - uid: 3008 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 1 + - uid: 3009 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 1 + - uid: 3010 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 1 + - uid: 3011 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 1 + - uid: 3012 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 1 + - uid: 3013 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 1 + - uid: 3014 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 1 + - uid: 3015 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 1 + - uid: 3016 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 1 + - uid: 3017 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 1 + - uid: 3018 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1 + - uid: 3019 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1 + - uid: 3034 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 1 + - uid: 3035 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 1 + - uid: 3426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-43.5 + parent: 1 + - uid: 3427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-44.5 + parent: 1 + - uid: 3428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-45.5 + parent: 1 + - uid: 3429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-46.5 + parent: 1 + - uid: 3430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-47.5 + parent: 1 + - uid: 3431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-47.5 + parent: 1 + - uid: 3432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-47.5 + parent: 1 + - uid: 3433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-47.5 + parent: 1 + - uid: 3434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-47.5 + parent: 1 + - uid: 3435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-47.5 + parent: 1 + - uid: 3436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-47.5 + parent: 1 + - uid: 3437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-47.5 + parent: 1 + - uid: 3438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-47.5 + parent: 1 + - uid: 3439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-47.5 + parent: 1 + - uid: 3440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-47.5 + parent: 1 + - uid: 3441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-48.5 + parent: 1 + - uid: 3442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-49.5 + parent: 1 + - uid: 3448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-49.5 + parent: 1 + - uid: 3449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-48.5 + parent: 1 + - uid: 3450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-47.5 + parent: 1 + - uid: 3451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-48.5 + parent: 1 + - uid: 3452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-47.5 + parent: 1 + - uid: 3453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-47.5 + parent: 1 + - uid: 3454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-47.5 + parent: 1 + - uid: 3455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-47.5 + parent: 1 + - uid: 3456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-47.5 + parent: 1 + - uid: 3457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-47.5 + parent: 1 + - uid: 3461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-47.5 + parent: 1 + - uid: 3462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-46.5 + parent: 1 + - uid: 3463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-45.5 + parent: 1 + - uid: 3464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-44.5 + parent: 1 + - uid: 3465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-43.5 + parent: 1 + - uid: 3466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-49.5 + parent: 1 + - uid: 3467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-50.5 + parent: 1 + - uid: 3468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-51.5 + parent: 1 + - uid: 3469 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 1 + - uid: 3470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-53.5 + parent: 1 + - uid: 3471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-54.5 + parent: 1 + - uid: 3472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-54.5 + parent: 1 + - uid: 3473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-54.5 + parent: 1 + - uid: 3474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-55.5 + parent: 1 + - uid: 3475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-56.5 + parent: 1 + - uid: 3476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-57.5 + parent: 1 + - uid: 3477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-58.5 + parent: 1 + - uid: 3478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-59.5 + parent: 1 + - uid: 3479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-60.5 + parent: 1 + - uid: 3480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-61.5 + parent: 1 + - uid: 3481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-62.5 + parent: 1 + - uid: 3482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-63.5 + parent: 1 + - uid: 3483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-64.5 + parent: 1 + - uid: 3484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-65.5 + parent: 1 + - uid: 3485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-66.5 + parent: 1 + - uid: 3486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-67.5 + parent: 1 + - uid: 3487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-68.5 + parent: 1 + - uid: 3488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-69.5 + parent: 1 + - uid: 3489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-70.5 + parent: 1 + - uid: 3490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-70.5 + parent: 1 + - uid: 3491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-69.5 + parent: 1 + - uid: 3492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-68.5 + parent: 1 + - uid: 3493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-67.5 + parent: 1 + - uid: 3494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-66.5 + parent: 1 + - uid: 3495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-65.5 + parent: 1 + - uid: 3496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-64.5 + parent: 1 + - uid: 3497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-63.5 + parent: 1 + - uid: 3498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-62.5 + parent: 1 + - uid: 3499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-61.5 + parent: 1 + - uid: 3500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-60.5 + parent: 1 + - uid: 3501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-59.5 + parent: 1 + - uid: 3502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-58.5 + parent: 1 + - uid: 3503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-57.5 + parent: 1 + - uid: 3504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-56.5 + parent: 1 + - uid: 3505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-55.5 + parent: 1 + - uid: 3506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-54.5 + parent: 1 + - uid: 3507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-54.5 + parent: 1 + - uid: 3508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-54.5 + parent: 1 + - uid: 3509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-53.5 + parent: 1 + - uid: 3510 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 1 + - uid: 3511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-51.5 + parent: 1 + - uid: 3512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-50.5 + parent: 1 + - uid: 3513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-49.5 + parent: 1 + - uid: 3514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-48.5 + parent: 1 + - uid: 4164 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - uid: 4165 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1 + - uid: 4166 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 + - uid: 4168 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 4169 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - uid: 4170 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 4172 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 4173 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 4174 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 4623 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 1 + - uid: 4717 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 1 + - uid: 5594 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1 + - uid: 5597 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1 + - uid: 5598 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1 + - uid: 5842 + components: + - type: Transform + pos: -21.5,44.5 + parent: 1 + - uid: 5843 + components: + - type: Transform + pos: -21.5,43.5 + parent: 1 + - uid: 5844 + components: + - type: Transform + pos: -21.5,42.5 + parent: 1 + - uid: 5845 + components: + - type: Transform + pos: -21.5,41.5 + parent: 1 + - uid: 5846 + components: + - type: Transform + pos: -21.5,40.5 + parent: 1 + - uid: 5847 + components: + - type: Transform + pos: -21.5,51.5 + parent: 1 + - uid: 5848 + components: + - type: Transform + pos: -21.5,52.5 + parent: 1 + - uid: 5849 + components: + - type: Transform + pos: -21.5,53.5 + parent: 1 + - uid: 5850 + components: + - type: Transform + pos: -21.5,54.5 + parent: 1 + - uid: 5851 + components: + - type: Transform + pos: -21.5,55.5 + parent: 1 + - uid: 5852 + components: + - type: Transform + pos: -21.5,56.5 + parent: 1 + - uid: 5853 + components: + - type: Transform + pos: -22.5,57.5 + parent: 1 + - uid: 5854 + components: + - type: Transform + pos: -23.5,57.5 + parent: 1 + - uid: 5855 + components: + - type: Transform + pos: -19.5,58.5 + parent: 1 + - uid: 5856 + components: + - type: Transform + pos: -19.5,59.5 + parent: 1 + - uid: 5857 + components: + - type: Transform + pos: -19.5,60.5 + parent: 1 + - uid: 5858 + components: + - type: Transform + pos: -19.5,61.5 + parent: 1 + - uid: 5859 + components: + - type: Transform + pos: -18.5,62.5 + parent: 1 + - uid: 5860 + components: + - type: Transform + pos: -17.5,62.5 + parent: 1 + - uid: 5861 + components: + - type: Transform + pos: -16.5,62.5 + parent: 1 + - uid: 5862 + components: + - type: Transform + pos: -15.5,62.5 + parent: 1 + - uid: 5863 + components: + - type: Transform + pos: -14.5,62.5 + parent: 1 + - uid: 5864 + components: + - type: Transform + pos: -13.5,63.5 + parent: 1 + - uid: 5865 + components: + - type: Transform + pos: -13.5,64.5 + parent: 1 + - uid: 5866 + components: + - type: Transform + pos: -13.5,65.5 + parent: 1 + - uid: 5868 + components: + - type: Transform + pos: -12.5,67.5 + parent: 1 + - uid: 5869 + components: + - type: Transform + pos: -11.5,67.5 + parent: 1 + - uid: 5870 + components: + - type: Transform + pos: -10.5,67.5 + parent: 1 + - uid: 5871 + components: + - type: Transform + pos: -9.5,67.5 + parent: 1 + - uid: 5872 + components: + - type: Transform + pos: -8.5,67.5 + parent: 1 + - uid: 5873 + components: + - type: Transform + pos: -7.5,67.5 + parent: 1 + - uid: 5874 + components: + - type: Transform + pos: -6.5,67.5 + parent: 1 + - uid: 5875 + components: + - type: Transform + pos: -5.5,67.5 + parent: 1 + - uid: 5876 + components: + - type: Transform + pos: -4.5,68.5 + parent: 1 + - uid: 5877 + components: + - type: Transform + pos: -4.5,69.5 + parent: 1 + - uid: 5878 + components: + - type: Transform + pos: 8.5,63.5 + parent: 1 + - uid: 5879 + components: + - type: Transform + pos: 9.5,63.5 + parent: 1 + - uid: 5880 + components: + - type: Transform + pos: 10.5,63.5 + parent: 1 + - uid: 5881 + components: + - type: Transform + pos: 11.5,63.5 + parent: 1 + - uid: 5882 + components: + - type: Transform + pos: 12.5,63.5 + parent: 1 + - uid: 5883 + components: + - type: Transform + pos: 13.5,63.5 + parent: 1 + - uid: 5884 + components: + - type: Transform + pos: 14.5,63.5 + parent: 1 + - uid: 5885 + components: + - type: Transform + pos: 15.5,63.5 + parent: 1 + - uid: 5886 + components: + - type: Transform + pos: 16.5,63.5 + parent: 1 + - uid: 5887 + components: + - type: Transform + pos: 17.5,63.5 + parent: 1 + - uid: 5888 + components: + - type: Transform + pos: 18.5,62.5 + parent: 1 + - uid: 5889 + components: + - type: Transform + pos: 18.5,61.5 + parent: 1 + - uid: 5890 + components: + - type: Transform + pos: 18.5,60.5 + parent: 1 + - uid: 5891 + components: + - type: Transform + pos: 18.5,59.5 + parent: 1 + - uid: 5892 + components: + - type: Transform + pos: 18.5,56.5 + parent: 1 + - uid: 5893 + components: + - type: Transform + pos: 17.5,56.5 + parent: 1 + - uid: 5894 + components: + - type: Transform + pos: 20.5,56.5 + parent: 1 + - uid: 5895 + components: + - type: Transform + pos: 21.5,56.5 + parent: 1 + - uid: 5898 + components: + - type: Transform + pos: 16.5,54.5 + parent: 1 + - uid: 5899 + components: + - type: Transform + pos: 16.5,53.5 + parent: 1 + - uid: 5901 + components: + - type: Transform + pos: 22.5,54.5 + parent: 1 + - uid: 5902 + components: + - type: Transform + pos: 22.5,53.5 + parent: 1 + - uid: 5903 + components: + - type: Transform + pos: 22.5,52.5 + parent: 1 + - uid: 5904 + components: + - type: Transform + pos: 22.5,51.5 + parent: 1 + - uid: 5905 + components: + - type: Transform + pos: 22.5,50.5 + parent: 1 + - uid: 5906 + components: + - type: Transform + pos: 21.5,49.5 + parent: 1 + - uid: 5907 + components: + - type: Transform + pos: 22.5,48.5 + parent: 1 + - uid: 5908 + components: + - type: Transform + pos: 22.5,47.5 + parent: 1 + - uid: 5909 + components: + - type: Transform + pos: 22.5,46.5 + parent: 1 + - uid: 5910 + components: + - type: Transform + pos: 23.5,45.5 + parent: 1 + - uid: 5911 + components: + - type: Transform + pos: 24.5,45.5 + parent: 1 + - uid: 5912 + components: + - type: Transform + pos: 25.5,44.5 + parent: 1 + - uid: 5913 + components: + - type: Transform + pos: 25.5,43.5 + parent: 1 + - uid: 5914 + components: + - type: Transform + pos: 25.5,42.5 + parent: 1 + - uid: 5915 + components: + - type: Transform + pos: 25.5,41.5 + parent: 1 + - uid: 5916 + components: + - type: Transform + pos: 25.5,40.5 + parent: 1 + - uid: 5917 + components: + - type: Transform + pos: 24.5,29.5 + parent: 1 + - uid: 5918 + components: + - type: Transform + pos: 24.5,28.5 + parent: 1 + - uid: 5919 + components: + - type: Transform + pos: 24.5,27.5 + parent: 1 + - uid: 5920 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1 + - uid: 5921 + components: + - type: Transform + pos: 24.5,25.5 + parent: 1 + - uid: 5922 + components: + - type: Transform + pos: 23.5,24.5 + parent: 1 + - uid: 5923 + components: + - type: Transform + pos: 22.5,24.5 + parent: 1 + - uid: 5924 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1 + - uid: 5925 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1 + - uid: 5926 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1 + - uid: 5927 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1 + - uid: 5928 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1 + - uid: 5929 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1 + - uid: 5930 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 5931 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1 + - uid: 5932 + components: + - type: Transform + pos: 17.5,22.5 + parent: 1 + - uid: 5933 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 5934 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 5938 + components: + - type: Transform + pos: -27.5,18.5 + parent: 1 + - uid: 5939 + components: + - type: Transform + pos: -27.5,19.5 + parent: 1 + - uid: 5940 + components: + - type: Transform + pos: -27.5,20.5 + parent: 1 + - uid: 5941 + components: + - type: Transform + pos: -27.5,21.5 + parent: 1 + - uid: 5942 + components: + - type: Transform + pos: -27.5,22.5 + parent: 1 + - uid: 5943 + components: + - type: Transform + pos: -26.5,25.5 + parent: 1 + - uid: 5944 + components: + - type: Transform + pos: -25.5,25.5 + parent: 1 + - uid: 5945 + components: + - type: Transform + pos: -24.5,25.5 + parent: 1 + - uid: 5946 + components: + - type: Transform + pos: -23.5,28.5 + parent: 1 + - uid: 5947 + components: + - type: Transform + pos: -23.5,29.5 + parent: 1 + - uid: 5948 + components: + - type: Transform + pos: -23.5,30.5 + parent: 1 + - uid: 5949 + components: + - type: Transform + pos: -23.5,31.5 + parent: 1 + - uid: 5950 + components: + - type: Transform + pos: -23.5,32.5 + parent: 1 + - uid: 5951 + components: + - type: Transform + pos: -23.5,33.5 + parent: 1 + - uid: 5952 + components: + - type: Transform + pos: -23.5,34.5 + parent: 1 + - uid: 5953 + components: + - type: Transform + pos: -22.5,27.5 + parent: 1 + - uid: 5954 + components: + - type: Transform + pos: -21.5,27.5 + parent: 1 + - uid: 5988 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 1 + - uid: 5989 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 1 + - uid: 5990 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 1 + - uid: 5991 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 1 + - uid: 5992 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 1 + - uid: 5993 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 1 + - uid: 5994 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 1 + - uid: 5995 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 1 + - uid: 5996 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 1 + - uid: 5997 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 1 + - uid: 5998 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 1 + - uid: 5999 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 1 + - uid: 6001 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 1 + - uid: 6002 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 1 + - uid: 6003 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 1 + - uid: 6004 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 1 + - uid: 6005 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 1 + - uid: 6006 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 1 + - uid: 6007 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 1 + - uid: 6008 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 1 + - uid: 6009 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 1 + - uid: 6010 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 1 + - uid: 6011 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 1 + - uid: 6012 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 1 + - uid: 6013 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 1 + - uid: 6015 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 1 + - uid: 6016 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 1 + - uid: 6017 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 1 + - uid: 6018 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 1 + - uid: 6019 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 1 + - uid: 6020 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 1 + - uid: 6021 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 1 + - uid: 6023 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 1 + - uid: 6024 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 1 + - uid: 6025 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 1 + - uid: 6026 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 1 + - uid: 6027 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 1 + - uid: 6028 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 1 + - uid: 6029 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 1 + - uid: 6030 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 1 + - uid: 6031 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 1 + - uid: 6032 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 1 + - uid: 6033 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 1 + - uid: 6034 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 1 + - uid: 6050 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 1 + - uid: 6051 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 1 + - uid: 6052 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 1 + - uid: 6053 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 1 + - uid: 6054 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 1 + - uid: 6055 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1 + - uid: 6056 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 1 + - uid: 6057 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1 + - uid: 6058 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 1 + - uid: 6059 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1 + - uid: 6060 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 1 + - uid: 6061 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1 + - uid: 6062 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 1 + - uid: 6063 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 1 + - uid: 6064 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1 + - uid: 6065 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 1 + - uid: 6066 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 1 + - uid: 6067 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 1 + - uid: 6068 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 1 + - uid: 6069 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 1 + - uid: 6070 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1 + - uid: 6071 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 1 + - uid: 6072 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 1 + - uid: 6073 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1 + - uid: 6074 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1 + - uid: 6075 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 1 + - uid: 6077 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 1 + - uid: 6078 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1 + - uid: 6334 + components: + - type: Transform + pos: -43.5,46.5 + parent: 1 + - uid: 6335 + components: + - type: Transform + pos: -43.5,47.5 + parent: 1 + - uid: 6336 + components: + - type: Transform + pos: -43.5,48.5 + parent: 1 + - uid: 6337 + components: + - type: Transform + pos: -43.5,49.5 + parent: 1 + - uid: 6338 + components: + - type: Transform + pos: -43.5,50.5 + parent: 1 + - uid: 6339 + components: + - type: Transform + pos: -42.5,51.5 + parent: 1 + - uid: 6340 + components: + - type: Transform + pos: -41.5,51.5 + parent: 1 + - uid: 6417 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1 + - uid: 6418 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 6419 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 6420 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 6421 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 6422 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 + - uid: 6423 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 6424 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 + - uid: 6425 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 6426 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 6427 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - uid: 6428 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1 + - uid: 6429 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 1 + - uid: 6430 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1 + - uid: 6431 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1 + - uid: 6432 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1 + - uid: 6433 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 6434 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1 + - uid: 6435 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1 + - uid: 6436 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1 + - uid: 6437 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1 + - uid: 6438 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 + - uid: 6439 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1 + - uid: 6452 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 1 + - uid: 6453 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1 + - uid: 6454 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1 + - uid: 6455 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 1 + - uid: 6456 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - uid: 6457 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - uid: 6473 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 1 + - uid: 6485 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 1 + - uid: 6488 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 1 + - uid: 6578 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 1 + - uid: 6683 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 1 + - uid: 6713 + components: + - type: Transform + pos: -34.5,24.5 + parent: 1 + - uid: 6714 + components: + - type: Transform + pos: -34.5,25.5 + parent: 1 + - uid: 6715 + components: + - type: Transform + pos: -34.5,26.5 + parent: 1 + - uid: 6716 + components: + - type: Transform + pos: -34.5,27.5 + parent: 1 + - uid: 6717 + components: + - type: Transform + pos: -34.5,28.5 + parent: 1 + - uid: 6718 + components: + - type: Transform + pos: -34.5,29.5 + parent: 1 + - uid: 6719 + components: + - type: Transform + pos: -34.5,30.5 + parent: 1 + - uid: 6720 + components: + - type: Transform + pos: -34.5,31.5 + parent: 1 + - uid: 6721 + components: + - type: Transform + pos: -34.5,32.5 + parent: 1 + - uid: 6722 + components: + - type: Transform + pos: -35.5,33.5 + parent: 1 + - uid: 6723 + components: + - type: Transform + pos: -36.5,33.5 + parent: 1 + - uid: 6724 + components: + - type: Transform + pos: -37.5,33.5 + parent: 1 + - uid: 6725 + components: + - type: Transform + pos: -38.5,33.5 + parent: 1 + - uid: 6735 + components: + - type: Transform + pos: -35.5,20.5 + parent: 1 + - uid: 6736 + components: + - type: Transform + pos: -35.5,19.5 + parent: 1 + - uid: 6737 + components: + - type: Transform + pos: -35.5,18.5 + parent: 1 + - uid: 6955 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 6956 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 6957 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 + - uid: 6958 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1 + - uid: 6959 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1 + - uid: 6960 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 6961 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 6962 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 6963 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 1 + - uid: 6964 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1 + - uid: 6965 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 6966 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1 + - uid: 6967 + components: + - type: Transform + pos: 15.5,6.5 + parent: 1 + - uid: 6968 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 + - uid: 6969 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1 + - uid: 6970 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1 + - uid: 6971 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 6972 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 6973 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 6974 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 + - uid: 6975 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 6976 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 6977 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1 + - uid: 6998 + components: + - type: Transform + pos: 36.5,41.5 + parent: 1 + - uid: 6999 + components: + - type: Transform + pos: 36.5,42.5 + parent: 1 + - uid: 7000 + components: + - type: Transform + pos: 36.5,43.5 + parent: 1 + - uid: 7001 + components: + - type: Transform + pos: 36.5,44.5 + parent: 1 + - uid: 7002 + components: + - type: Transform + pos: 36.5,45.5 + parent: 1 + - uid: 7003 + components: + - type: Transform + pos: 36.5,46.5 + parent: 1 + - uid: 7004 + components: + - type: Transform + pos: 36.5,47.5 + parent: 1 + - uid: 7005 + components: + - type: Transform + pos: 36.5,48.5 + parent: 1 + - uid: 7006 + components: + - type: Transform + pos: 36.5,49.5 + parent: 1 + - uid: 7007 + components: + - type: Transform + pos: 36.5,50.5 + parent: 1 + - uid: 7008 + components: + - type: Transform + pos: 35.5,51.5 + parent: 1 + - uid: 7009 + components: + - type: Transform + pos: 34.5,51.5 + parent: 1 + - uid: 7010 + components: + - type: Transform + pos: 33.5,51.5 + parent: 1 + - uid: 7011 + components: + - type: Transform + pos: 32.5,51.5 + parent: 1 + - uid: 7012 + components: + - type: Transform + pos: 31.5,51.5 + parent: 1 + - uid: 7013 + components: + - type: Transform + pos: 30.5,51.5 + parent: 1 + - uid: 7014 + components: + - type: Transform + pos: 28.5,54.5 + parent: 1 + - uid: 7016 + components: + - type: Transform + pos: 28.5,56.5 + parent: 1 + - uid: 7017 + components: + - type: Transform + pos: 27.5,57.5 + parent: 1 + - uid: 7018 + components: + - type: Transform + pos: 26.5,57.5 + parent: 1 + - uid: 7019 + components: + - type: Transform + pos: 25.5,57.5 + parent: 1 + - uid: 7020 + components: + - type: Transform + pos: 24.5,57.5 + parent: 1 + - uid: 7021 + components: + - type: Transform + pos: 23.5,57.5 + parent: 1 + - uid: 7184 + components: + - type: Transform + pos: 2.5,41.5 + parent: 1 + - uid: 7185 + components: + - type: Transform + pos: 3.5,41.5 + parent: 1 + - uid: 7186 + components: + - type: Transform + pos: 4.5,41.5 + parent: 1 + - uid: 7187 + components: + - type: Transform + pos: 5.5,41.5 + parent: 1 + - uid: 7188 + components: + - type: Transform + pos: 6.5,41.5 + parent: 1 + - uid: 7189 + components: + - type: Transform + pos: 7.5,41.5 + parent: 1 + - uid: 7190 + components: + - type: Transform + pos: 8.5,41.5 + parent: 1 + - uid: 7191 + components: + - type: Transform + pos: 9.5,42.5 + parent: 1 + - uid: 7192 + components: + - type: Transform + pos: 9.5,43.5 + parent: 1 + - uid: 7193 + components: + - type: Transform + pos: 9.5,44.5 + parent: 1 + - uid: 7194 + components: + - type: Transform + pos: 9.5,45.5 + parent: 1 + - uid: 7195 + components: + - type: Transform + pos: 9.5,46.5 + parent: 1 + - uid: 7196 + components: + - type: Transform + pos: 9.5,47.5 + parent: 1 + - uid: 7197 + components: + - type: Transform + pos: 9.5,48.5 + parent: 1 + - uid: 7198 + components: + - type: Transform + pos: 9.5,49.5 + parent: 1 + - uid: 7199 + components: + - type: Transform + pos: 11.5,50.5 + parent: 1 + - uid: 7200 + components: + - type: Transform + pos: 10.5,50.5 + parent: 1 + - uid: 7201 + components: + - type: Transform + pos: 12.5,50.5 + parent: 1 + - uid: 7203 + components: + - type: Transform + pos: 14.5,50.5 + parent: 1 + - uid: 7204 + components: + - type: Transform + pos: 15.5,50.5 + parent: 1 + - uid: 7205 + components: + - type: Transform + pos: 17.5,49.5 + parent: 1 + - uid: 7206 + components: + - type: Transform + pos: 18.5,49.5 + parent: 1 + - uid: 7207 + components: + - type: Transform + pos: 19.5,49.5 + parent: 1 + - uid: 7208 + components: + - type: Transform + pos: 20.5,49.5 + parent: 1 + - uid: 7302 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 1 + - uid: 7303 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 1 + - uid: 7304 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 1 + - uid: 7305 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 1 + - uid: 7306 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 1 + - uid: 7307 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1 + - uid: 7308 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 1 + - uid: 7309 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 1 + - uid: 7310 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 1 + - uid: 7311 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 1 + - uid: 7312 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 1 + - uid: 7313 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 1 + - uid: 7314 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 1 + - uid: 7315 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1 + - uid: 7320 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 1 + - uid: 7321 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 1 + - uid: 7329 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - uid: 7330 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 + - uid: 7331 + components: + - type: Transform + pos: 18.5,52.5 + parent: 1 + - uid: 7332 + components: + - type: Transform + pos: 19.5,52.5 + parent: 1 + - uid: 7333 + components: + - type: Transform + pos: -24.5,56.5 + parent: 1 + - uid: 7334 + components: + - type: Transform + pos: -24.5,55.5 + parent: 1 + - uid: 7335 + components: + - type: Transform + pos: -24.5,54.5 + parent: 1 + - uid: 7386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,53.5 + parent: 1 + - uid: 7400 + components: + - type: Transform + pos: 37.5,75.5 + parent: 1 + - uid: 7401 + components: + - type: Transform + pos: 37.5,74.5 + parent: 1 + - uid: 7402 + components: + - type: Transform + pos: 37.5,73.5 + parent: 1 + - uid: 7403 + components: + - type: Transform + pos: 37.5,72.5 + parent: 1 + - uid: 7404 + components: + - type: Transform + pos: 37.5,71.5 + parent: 1 + - uid: 7405 + components: + - type: Transform + pos: 37.5,70.5 + parent: 1 + - uid: 7406 + components: + - type: Transform + pos: 37.5,69.5 + parent: 1 + - uid: 7407 + components: + - type: Transform + pos: 37.5,68.5 + parent: 1 + - uid: 7408 + components: + - type: Transform + pos: 37.5,67.5 + parent: 1 + - uid: 7409 + components: + - type: Transform + pos: 37.5,66.5 + parent: 1 + - uid: 7410 + components: + - type: Transform + pos: 37.5,65.5 + parent: 1 + - uid: 7411 + components: + - type: Transform + pos: 37.5,64.5 + parent: 1 + - uid: 7412 + components: + - type: Transform + pos: 37.5,63.5 + parent: 1 + - uid: 7413 + components: + - type: Transform + pos: 37.5,62.5 + parent: 1 + - uid: 7414 + components: + - type: Transform + pos: 37.5,61.5 + parent: 1 + - uid: 7415 + components: + - type: Transform + pos: 37.5,60.5 + parent: 1 + - uid: 7416 + components: + - type: Transform + pos: 37.5,59.5 + parent: 1 + - uid: 7417 + components: + - type: Transform + pos: 37.5,58.5 + parent: 1 + - uid: 7418 + components: + - type: Transform + pos: 37.5,57.5 + parent: 1 + - uid: 7513 + components: + - type: Transform + pos: 35.5,73.5 + parent: 1 + - uid: 7514 + components: + - type: Transform + pos: 34.5,73.5 + parent: 1 + - uid: 7515 + components: + - type: Transform + pos: 33.5,73.5 + parent: 1 + - uid: 7516 + components: + - type: Transform + pos: 32.5,73.5 + parent: 1 + - uid: 7517 + components: + - type: Transform + pos: 31.5,73.5 + parent: 1 + - uid: 7518 + components: + - type: Transform + pos: 30.5,73.5 + parent: 1 + - uid: 7519 + components: + - type: Transform + pos: 29.5,73.5 + parent: 1 + - uid: 7520 + components: + - type: Transform + pos: 28.5,73.5 + parent: 1 + - uid: 7521 + components: + - type: Transform + pos: 39.5,73.5 + parent: 1 + - uid: 7522 + components: + - type: Transform + pos: 40.5,73.5 + parent: 1 + - uid: 7523 + components: + - type: Transform + pos: 41.5,73.5 + parent: 1 + - uid: 7524 + components: + - type: Transform + pos: 42.5,73.5 + parent: 1 + - uid: 7525 + components: + - type: Transform + pos: 43.5,73.5 + parent: 1 + - uid: 7526 + components: + - type: Transform + pos: 44.5,73.5 + parent: 1 + - uid: 7527 + components: + - type: Transform + pos: 45.5,73.5 + parent: 1 + - uid: 7528 + components: + - type: Transform + pos: 46.5,73.5 + parent: 1 + - uid: 7529 + components: + - type: Transform + pos: 35.5,69.5 + parent: 1 + - uid: 7530 + components: + - type: Transform + pos: 34.5,69.5 + parent: 1 + - uid: 7531 + components: + - type: Transform + pos: 33.5,69.5 + parent: 1 + - uid: 7532 + components: + - type: Transform + pos: 32.5,69.5 + parent: 1 + - uid: 7533 + components: + - type: Transform + pos: 31.5,69.5 + parent: 1 + - uid: 7534 + components: + - type: Transform + pos: 30.5,69.5 + parent: 1 + - uid: 7535 + components: + - type: Transform + pos: 29.5,69.5 + parent: 1 + - uid: 7536 + components: + - type: Transform + pos: 28.5,69.5 + parent: 1 + - uid: 7537 + components: + - type: Transform + pos: 39.5,69.5 + parent: 1 + - uid: 7538 + components: + - type: Transform + pos: 40.5,69.5 + parent: 1 + - uid: 7539 + components: + - type: Transform + pos: 41.5,69.5 + parent: 1 + - uid: 7540 + components: + - type: Transform + pos: 42.5,69.5 + parent: 1 + - uid: 7541 + components: + - type: Transform + pos: 43.5,69.5 + parent: 1 + - uid: 7542 + components: + - type: Transform + pos: 44.5,69.5 + parent: 1 + - uid: 7543 + components: + - type: Transform + pos: 45.5,69.5 + parent: 1 + - uid: 7544 + components: + - type: Transform + pos: 46.5,69.5 + parent: 1 + - uid: 7715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 1 + - uid: 7730 + components: + - type: Transform + pos: -38.5,72.5 + parent: 1 + - uid: 7731 + components: + - type: Transform + pos: -38.5,71.5 + parent: 1 + - uid: 7732 + components: + - type: Transform + pos: -38.5,70.5 + parent: 1 + - uid: 7733 + components: + - type: Transform + pos: -38.5,69.5 + parent: 1 + - uid: 7734 + components: + - type: Transform + pos: -38.5,68.5 + parent: 1 + - uid: 7735 + components: + - type: Transform + pos: -38.5,67.5 + parent: 1 + - uid: 7736 + components: + - type: Transform + pos: -38.5,66.5 + parent: 1 + - uid: 7737 + components: + - type: Transform + pos: -38.5,65.5 + parent: 1 + - uid: 7738 + components: + - type: Transform + pos: -38.5,64.5 + parent: 1 + - uid: 7739 + components: + - type: Transform + pos: -38.5,63.5 + parent: 1 + - uid: 7740 + components: + - type: Transform + pos: -38.5,62.5 + parent: 1 + - uid: 7741 + components: + - type: Transform + pos: -38.5,61.5 + parent: 1 + - uid: 7742 + components: + - type: Transform + pos: -38.5,60.5 + parent: 1 + - uid: 7743 + components: + - type: Transform + pos: -38.5,59.5 + parent: 1 + - uid: 7744 + components: + - type: Transform + pos: -38.5,58.5 + parent: 1 + - uid: 7745 + components: + - type: Transform + pos: -38.5,57.5 + parent: 1 + - uid: 7746 + components: + - type: Transform + pos: -40.5,73.5 + parent: 1 + - uid: 7747 + components: + - type: Transform + pos: -41.5,73.5 + parent: 1 + - uid: 7748 + components: + - type: Transform + pos: -42.5,73.5 + parent: 1 + - uid: 7749 + components: + - type: Transform + pos: -43.5,73.5 + parent: 1 + - uid: 7750 + components: + - type: Transform + pos: -44.5,73.5 + parent: 1 + - uid: 7751 + components: + - type: Transform + pos: -45.5,73.5 + parent: 1 + - uid: 7752 + components: + - type: Transform + pos: -46.5,73.5 + parent: 1 + - uid: 7753 + components: + - type: Transform + pos: -47.5,73.5 + parent: 1 + - uid: 7754 + components: + - type: Transform + pos: -36.5,73.5 + parent: 1 + - uid: 7755 + components: + - type: Transform + pos: -35.5,73.5 + parent: 1 + - uid: 7756 + components: + - type: Transform + pos: -34.5,73.5 + parent: 1 + - uid: 7757 + components: + - type: Transform + pos: -33.5,73.5 + parent: 1 + - uid: 7758 + components: + - type: Transform + pos: -32.5,73.5 + parent: 1 + - uid: 7759 + components: + - type: Transform + pos: -31.5,73.5 + parent: 1 + - uid: 7760 + components: + - type: Transform + pos: -30.5,73.5 + parent: 1 + - uid: 7761 + components: + - type: Transform + pos: -29.5,73.5 + parent: 1 + - uid: 7778 + components: + - type: Transform + pos: -40.5,69.5 + parent: 1 + - uid: 7779 + components: + - type: Transform + pos: -41.5,69.5 + parent: 1 + - uid: 7780 + components: + - type: Transform + pos: -42.5,69.5 + parent: 1 + - uid: 7781 + components: + - type: Transform + pos: -43.5,69.5 + parent: 1 + - uid: 7782 + components: + - type: Transform + pos: -44.5,69.5 + parent: 1 + - uid: 7783 + components: + - type: Transform + pos: -45.5,69.5 + parent: 1 + - uid: 7784 + components: + - type: Transform + pos: -46.5,69.5 + parent: 1 + - uid: 7785 + components: + - type: Transform + pos: -47.5,69.5 + parent: 1 + - uid: 7786 + components: + - type: Transform + pos: -36.5,69.5 + parent: 1 + - uid: 7787 + components: + - type: Transform + pos: -35.5,69.5 + parent: 1 + - uid: 7788 + components: + - type: Transform + pos: -34.5,69.5 + parent: 1 + - uid: 7789 + components: + - type: Transform + pos: -33.5,69.5 + parent: 1 + - uid: 7790 + components: + - type: Transform + pos: -32.5,69.5 + parent: 1 + - uid: 7791 + components: + - type: Transform + pos: -31.5,69.5 + parent: 1 + - uid: 7792 + components: + - type: Transform + pos: -30.5,69.5 + parent: 1 + - uid: 7793 + components: + - type: Transform + pos: -29.5,69.5 + parent: 1 + - uid: 7803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,21.5 + parent: 1 + - uid: 8153 + components: + - type: Transform + pos: -45.5,25.5 + parent: 1 + - uid: 8162 + components: + - type: Transform + pos: -44.5,25.5 + parent: 1 + - uid: 8573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,33.5 + parent: 1 + - uid: 8574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,34.5 + parent: 1 + - uid: 8614 + components: + - type: Transform + pos: -7.5,26.5 + parent: 1 + - uid: 8615 + components: + - type: Transform + pos: -6.5,26.5 + parent: 1 + - uid: 8616 + components: + - type: Transform + pos: -5.5,26.5 + parent: 1 + - uid: 8617 + components: + - type: Transform + pos: -4.5,26.5 + parent: 1 + - uid: 8746 + components: + - type: Transform + pos: -13.5,-41.5 + parent: 1 + - uid: 8747 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 1 + - uid: 8748 + components: + - type: Transform + pos: -13.5,-39.5 + parent: 1 + - uid: 9080 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 1 + - uid: 9081 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 1 + - uid: 9082 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 1 + - uid: 9200 + components: + - type: Transform + pos: -45.5,4.5 + parent: 1 + - uid: 9201 + components: + - type: Transform + pos: -46.5,4.5 + parent: 1 + - uid: 9202 + components: + - type: Transform + pos: -45.5,2.5 + parent: 1 + - uid: 9308 + components: + - type: Transform + pos: -46.5,2.5 + parent: 1 + - uid: 9600 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 1 + - uid: 10048 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 1 + - uid: 10872 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 1 + - uid: 10873 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 1 + - uid: 10874 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 1 + - uid: 13160 + components: + - type: Transform + pos: 15.5,24.5 + parent: 1 + - uid: 13163 + components: + - type: Transform + pos: 16.5,24.5 + parent: 1 + - uid: 13164 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1 + - uid: 13175 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 + - uid: 13176 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 13177 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 13202 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 1 + - uid: 13203 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 1 + - uid: 13204 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 1 + - uid: 17775 + components: + - type: Transform + pos: -3.5,72.5 + parent: 1 + - uid: 17776 + components: + - type: Transform + pos: -3.5,73.5 + parent: 1 +- proto: Chair + entities: + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,0.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 1 + - uid: 1779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,17.5 + parent: 1 + - uid: 1938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,36.5 + parent: 1 + - uid: 1939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 1 + - uid: 1940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,54.5 + parent: 1 + - uid: 1941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,54.5 + parent: 1 + - uid: 1942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,54.5 + parent: 1 + - uid: 1943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,54.5 + parent: 1 + - uid: 1944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,52.5 + parent: 1 + - uid: 1945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,52.5 + parent: 1 + - uid: 1946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,52.5 + parent: 1 + - uid: 1947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,53.5 + parent: 1 + - uid: 1948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,53.5 + parent: 1 + - uid: 1949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,53.5 + parent: 1 + - uid: 1950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,52.5 + parent: 1 + - uid: 1951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,52.5 + parent: 1 + - uid: 1952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,52.5 + parent: 1 + - uid: 1953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,53.5 + parent: 1 + - uid: 1954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,53.5 + parent: 1 + - uid: 1955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,53.5 + parent: 1 + - uid: 1956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,36.5 + parent: 1 + - uid: 1957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,54.5 + parent: 1 + - uid: 1958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,54.5 + parent: 1 + - uid: 3185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,49.5 + parent: 1 + - uid: 3186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,49.5 + parent: 1 + - uid: 3684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,17.5 + parent: 1 + - uid: 4247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-11.5 + parent: 1 + - uid: 4248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-9.5 + parent: 1 + - uid: 5641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,36.5 + parent: 1 + - uid: 5642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,36.5 + parent: 1 + - uid: 5643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,36.5 + parent: 1 + - uid: 6090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,40.5 + parent: 1 + - uid: 6091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,41.5 + parent: 1 + - uid: 6092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,41.5 + parent: 1 + - uid: 6093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,40.5 + parent: 1 + - uid: 6140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-10.5 + parent: 1 + - uid: 6380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,17.5 + parent: 1 + - uid: 6491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-12.5 + parent: 1 + - uid: 6899 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1 + - uid: 6900 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1 + - uid: 6901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,19.5 + parent: 1 + - uid: 6902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,18.5 + parent: 1 + - uid: 7278 + components: + - type: Transform + pos: 2.5,64.5 + parent: 1 + - uid: 7279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,60.5 + parent: 1 + - uid: 7280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,61.5 + parent: 1 + - uid: 8119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,56.5 + parent: 1 + - uid: 8121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,56.5 + parent: 1 + - uid: 8122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,56.5 + parent: 1 + - uid: 8446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,52.5 + parent: 1 + - uid: 8447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,52.5 + parent: 1 + - uid: 8448 + components: + - type: Transform + pos: 1.5,57.5 + parent: 1 + - uid: 8449 + components: + - type: Transform + pos: 2.5,57.5 + parent: 1 + - uid: 8450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,52.5 + parent: 1 + - uid: 8451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,52.5 + parent: 1 + - uid: 8455 + components: + - type: Transform + pos: 10.5,70.5 + parent: 1 + - uid: 8456 + components: + - type: Transform + pos: 11.5,70.5 + parent: 1 + - uid: 9442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 1 + - uid: 9443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,7.5 + parent: 1 + - uid: 9467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,5.5 + parent: 1 + - uid: 9468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,6.5 + parent: 1 + - uid: 9507 + components: + - type: Transform + pos: 14.5,61.5 + parent: 1 + - uid: 9511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,56.5 + parent: 1 + - uid: 9515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,36.5 + parent: 1 + - uid: 9516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,36.5 + parent: 1 + - uid: 9517 + components: + - type: Transform + pos: 44.5,38.5 + parent: 1 + - uid: 9518 + components: + - type: Transform + pos: 45.5,38.5 + parent: 1 + - uid: 9519 + components: + - type: Transform + pos: 43.5,38.5 + parent: 1 + - uid: 9520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,39.5 + parent: 1 + - uid: 9521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,39.5 + parent: 1 + - uid: 9522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,39.5 + parent: 1 + - uid: 9526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,13.5 + parent: 1 + - uid: 9527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,13.5 + parent: 1 + - uid: 9528 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 1 + - uid: 9529 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 1 + - uid: 9530 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 1 + - uid: 9531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,8.5 + parent: 1 + - uid: 9532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 1 + - uid: 9533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 1 + - uid: 9534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,1.5 + parent: 1 + - uid: 9537 + components: + - type: Transform + pos: -43.5,15.5 + parent: 1 + - uid: 9538 + components: + - type: Transform + pos: -42.5,15.5 + parent: 1 + - uid: 9539 + components: + - type: Transform + pos: -41.5,15.5 + parent: 1 + - uid: 9540 + components: + - type: Transform + pos: -25.5,38.5 + parent: 1 + - uid: 9541 + components: + - type: Transform + pos: -26.5,38.5 + parent: 1 + - uid: 9542 + components: + - type: Transform + pos: -27.5,38.5 + parent: 1 + - uid: 9544 + components: + - type: Transform + pos: -46.5,38.5 + parent: 1 + - uid: 9545 + components: + - type: Transform + pos: -45.5,38.5 + parent: 1 + - uid: 9546 + components: + - type: Transform + pos: -44.5,38.5 + parent: 1 + - uid: 9547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,29.5 + parent: 1 + - uid: 9548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,28.5 + parent: 1 + - uid: 9549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,27.5 + parent: 1 + - uid: 9550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,24.5 + parent: 1 + - uid: 9551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,23.5 + parent: 1 + - uid: 9552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,22.5 + parent: 1 + - uid: 9553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,13.5 + parent: 1 + - uid: 9555 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 1 + - uid: 9556 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 1 + - uid: 9567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1 + - uid: 9568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 1 + - uid: 9569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 1 + - uid: 9570 + components: + - type: Transform + pos: -20.5,15.5 + parent: 1 + - uid: 9571 + components: + - type: Transform + pos: -21.5,15.5 + parent: 1 + - uid: 9572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,30.5 + parent: 1 + - uid: 9573 + components: + - type: Transform + pos: -22.5,15.5 + parent: 1 + - uid: 9574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,29.5 + parent: 1 + - uid: 9575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,28.5 + parent: 1 + - uid: 9576 + components: + - type: Transform + pos: 6.5,38.5 + parent: 1 + - uid: 9577 + components: + - type: Transform + pos: 5.5,38.5 + parent: 1 + - uid: 9578 + components: + - type: Transform + pos: 4.5,38.5 + parent: 1 + - uid: 9593 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 9594 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 9626 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 1 + - uid: 9627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-7.5 + parent: 1 + - uid: 9719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 1 + - uid: 9726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 1 + - uid: 9912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-37.5 + parent: 1 + - uid: 13206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,12.5 + parent: 1 + - uid: 13207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,12.5 + parent: 1 + - uid: 16403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 1 + - uid: 16404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 1 + - uid: 16405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + - uid: 16693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 1 + - uid: 16694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,25.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 3167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 1 + - uid: 3254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,54.5 + parent: 1 + - uid: 3256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,54.5 + parent: 1 + - uid: 3263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,54.5 + parent: 1 + - uid: 3264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,46.5 + parent: 1 + - uid: 3274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,46.5 + parent: 1 + - uid: 3275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,45.5 + parent: 1 + - uid: 3276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,45.5 + parent: 1 + - uid: 3277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,44.5 + parent: 1 + - uid: 3278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,44.5 + parent: 1 + - uid: 3279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,46.5 + parent: 1 + - uid: 3280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,46.5 + parent: 1 + - uid: 3281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,45.5 + parent: 1 + - uid: 3282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,45.5 + parent: 1 + - uid: 3283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,44.5 + parent: 1 + - uid: 3284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,44.5 + parent: 1 + - uid: 3287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,54.5 + parent: 1 + - uid: 3944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 1 + - uid: 3947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 1 + - uid: 3948 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 1 + - uid: 3949 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 1 + - uid: 3950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-12.5 + parent: 1 + - uid: 6550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 1 + - uid: 7421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-26.5 + parent: 1 + - uid: 7443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 1 + - uid: 8288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,44.5 + parent: 1 + - uid: 8289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,43.5 + parent: 1 + - uid: 8290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,44.5 + parent: 1 + - uid: 8291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,43.5 + parent: 1 + - uid: 9089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-34.5 + parent: 1 + - uid: 9915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-36.5 + parent: 1 + - uid: 9931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 1 + - uid: 9959 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 1 + - uid: 9960 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 1 + - uid: 9961 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 1 + - uid: 9962 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 1 + - uid: 9963 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 1 + - uid: 9964 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 1 + - uid: 9972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 1 + - uid: 10068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 1 + - uid: 10070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 1 + - uid: 10135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-19.5 + parent: 1 + - uid: 11054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,0.5 + parent: 1 + - uid: 13169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,26.5 + parent: 1 + - uid: 13311 + components: + - type: Transform + pos: -27.5,3.5 + parent: 1 + - uid: 13359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,33.5 + parent: 1 + - uid: 13389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,31.5 + parent: 1 + - uid: 13399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,42.5 + parent: 1 + - uid: 13426 + components: + - type: Transform + pos: -24.5,58.5 + parent: 1 + - uid: 13427 + components: + - type: Transform + pos: -22.5,58.5 + parent: 1 + - uid: 13455 + components: + - type: Transform + pos: -46.5,47.5 + parent: 1 + - uid: 13459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,47.5 + parent: 1 + - uid: 14004 + components: + - type: Transform + pos: 17.5,64.5 + parent: 1 + - uid: 14021 + components: + - type: Transform + pos: 19.5,50.5 + parent: 1 + - uid: 14023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,58.5 + parent: 1 + - uid: 14024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,58.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 4150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 1 + - uid: 6665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 1 + - uid: 6668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,6.5 + parent: 1 + - uid: 7281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,60.5 + parent: 1 + - uid: 7282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,63.5 + parent: 1 + - uid: 7932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,25.5 + parent: 1 + - uid: 8133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,53.5 + parent: 1 + - uid: 8134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,54.5 + parent: 1 + - uid: 8343 + components: + - type: Transform + pos: -15.5,59.5 + parent: 1 + - uid: 8363 + components: + - type: Transform + pos: 42.5,51.5 + parent: 1 + - uid: 8662 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1 + - uid: 8663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,29.5 + parent: 1 + - uid: 9104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 1 + - uid: 9210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,73.5 + parent: 1 + - uid: 9416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-11.5 + parent: 1 + - uid: 9417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 1 + - uid: 10928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 1 + - uid: 11073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 1 + - uid: 13165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,24.5 + parent: 1 + - uid: 13205 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 1 + - uid: 14071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,53.5 + parent: 1 + - uid: 17586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,17.5 + parent: 1 + - uid: 17587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 1 + - uid: 18344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,20.5 + parent: 1 + - uid: 18433 + components: + - type: Transform + pos: 44.5,42.5 + parent: 1 + - uid: 18436 + components: + - type: Transform + pos: 43.5,42.5 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 2714 + components: + - type: Transform + pos: -11.5,55.5 + parent: 1 + - uid: 3655 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 3759 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1 + - uid: 6652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,7.5 + parent: 1 + - uid: 6664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 1 + - uid: 7387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,52.5 + parent: 1 + - uid: 7388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,55.5 + parent: 1 + - uid: 7389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,49.5 + parent: 1 + - uid: 8483 + components: + - type: Transform + pos: 15.5,33.5 + parent: 1 + - uid: 8541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 1 + - uid: 8542 + components: + - type: Transform + pos: 4.5,21.5 + parent: 1 + - uid: 8543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,23.5 + parent: 1 + - uid: 8659 + components: + - type: Transform + pos: -4.5,21.5 + parent: 1 + - uid: 8660 + components: + - type: Transform + pos: -5.5,21.5 + parent: 1 + - uid: 8661 + components: + - type: Transform + pos: -17.5,31.5 + parent: 1 + - uid: 8722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1 + - uid: 8723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 1 + - uid: 9174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 1 + - uid: 9175 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 + - uid: 9176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 1 + - uid: 9579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,33.5 + parent: 1 + - uid: 9607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,33.5 + parent: 1 + - uid: 9914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 1 + - uid: 17590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,34.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 4306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,79.5 + parent: 1 + - uid: 4307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,79.5 + parent: 1 + - uid: 4308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,82.5 + parent: 1 + - uid: 4309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,82.5 + parent: 1 + - uid: 4310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,81.5 + parent: 1 + - uid: 4311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,81.5 + parent: 1 + - uid: 4312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,82.5 + parent: 1 + - uid: 4313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,82.5 + parent: 1 + - uid: 8123 + components: + - type: Transform + pos: 10.5,60.5 + parent: 1 + - uid: 8124 + components: + - type: Transform + pos: 11.5,60.5 + parent: 1 + - uid: 8857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 8756 + - uid: 8858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 8756 + - uid: 8859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 8756 + - uid: 8860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 8756 + - uid: 8885 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 8756 + - uid: 8895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 8756 +- proto: ChairWood + entities: + - uid: 4059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 1 + - uid: 4064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 1 + - uid: 4065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,7.5 + parent: 1 + - uid: 7029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 1 + - uid: 7345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,47.5 + parent: 1 + - uid: 7346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,49.5 + parent: 1 + - uid: 8254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 1 + - uid: 8684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 8685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 8686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - uid: 8691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 8692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 8898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 8899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 8901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - uid: 8916 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 8917 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 8918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 1 + - uid: 8919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + - uid: 8924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - uid: 8925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - uid: 8927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 + - uid: 8932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 8934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 8935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 8936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 8937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 8938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 8943 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 8947 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 8948 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 8949 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 8950 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 8951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 1 + - uid: 8952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-4.5 + parent: 1 + - uid: 9282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,10.5 + parent: 1 + - uid: 9341 + components: + - type: Transform + pos: -42.5,8.5 + parent: 1 + - uid: 9870 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 1 + - uid: 10939 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 1 + - uid: 13471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,64.5 + parent: 1 + - uid: 13476 + components: + - type: Transform + pos: -12.5,65.5 + parent: 1 + - uid: 18099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,55.5 + parent: 1 + - uid: 18100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,52.5 + parent: 1 + - uid: 18419 + components: + - type: Transform + pos: -29.5,57.5 + parent: 1 +- proto: CheapLighter + entities: + - uid: 8106 + components: + - type: Transform + pos: 6.550927,72.406364 + parent: 1 + - uid: 8460 + components: + - type: Transform + pos: 12.457194,70.49379 + parent: 1 + - uid: 11057 + components: + - type: Transform + pos: 17.68046,-0.38290828 + parent: 1 + - uid: 13334 + components: + - type: Transform + pos: -12.437875,10.642552 + parent: 1 + - uid: 17384 + components: + - type: Transform + pos: -49.49224,16.547865 + parent: 1 + - uid: 18325 + components: + - type: Transform + pos: -0.54356754,-5.4461226 + parent: 1 +- proto: CheapRollerBed + entities: + - uid: 3686 + components: + - type: Transform + pos: 12.461244,31.655691 + parent: 1 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 1759 + components: + - type: Transform + pos: 12.612317,24.547678 + parent: 1 + - uid: 8514 + components: + - type: Transform + pos: 12.643567,25.563303 + parent: 1 + - uid: 8557 + components: + - type: Transform + pos: 12.627942,25.032053 + parent: 1 +- proto: chem_master + entities: + - uid: 4046 + components: + - type: Transform + pos: 2.5,21.5 + parent: 1 + - uid: 4047 + components: + - type: Transform + pos: 8.5,24.5 + parent: 1 +- proto: ChemDispenser + entities: + - uid: 4050 + components: + - type: Transform + pos: 2.5,22.5 + parent: 1 + - uid: 4051 + components: + - type: Transform + pos: 7.5,24.5 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 4052 + components: + - type: Transform + pos: 5.5,22.5 + parent: 1 +- proto: ChessBoard + entities: + - uid: 10071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.55108,-17.47344 + parent: 1 + - uid: 17380 + components: + - type: Transform + pos: -47.624664,35.52521 + parent: 1 +- proto: ChurchOrganInstrument + entities: + - uid: 8375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,49.5 + parent: 1 +- proto: Cigar + entities: + - uid: 9954 + components: + - type: Transform + pos: -38.443047,-11.989926 + parent: 1 + - uid: 9955 + components: + - type: Transform + pos: -38.443047,-11.989926 + parent: 1 + - uid: 13401 + components: + - type: Transform + pos: -23.455694,43.57468 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 9935 + components: + - type: Transform + pos: -22.582382,-29.382385 + parent: 1 + - uid: 9936 + components: + - type: Transform + pos: -22.454592,-29.29724 + parent: 1 + - uid: 18326 + components: + - type: Transform + pos: -0.79409397,-5.3871837 + parent: 1 + - uid: 18327 + components: + - type: Transform + pos: -0.83830374,-5.2693057 + parent: 1 +- proto: CigarGold + entities: + - uid: 8103 + components: + - type: Transform + pos: 4.563099,71.78196 + parent: 1 + - uid: 8459 + components: + - type: Transform + pos: 12.343604,70.664085 + parent: 1 + - uid: 17382 + components: + - type: Transform + pos: -49.609077,16.675528 + parent: 1 +- proto: CigarSpent + entities: + - uid: 13402 + components: + - type: Transform + pos: -23.228514,43.489532 + parent: 1 +- proto: CigCartonBlack + entities: + - uid: 13332 + components: + - type: Transform + pos: -12.518449,10.410398 + parent: 1 +- proto: CigPackGreen + entities: + - uid: 18324 + components: + - type: Transform + pos: -0.35198832,-5.3871837 + parent: 1 +- proto: CigPackRed + entities: + - uid: 11056 + components: + - type: Transform + pos: 17.282892,-0.41129082 + parent: 1 +- proto: CircuitImprinter + entities: + - uid: 3551 + components: + - type: Transform + pos: -5.5,24.5 + parent: 1 +- proto: ClosetBase + entities: + - uid: 9867 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetBombFilled + entities: + - uid: 8170 + components: + - type: Transform + pos: -5.2650685,56.347507 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 3.4919806 + - 13.136498 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8178 + components: + - type: Transform + pos: -15.5,40.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetChefFilled + entities: + - uid: 2695 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 4272 + components: + - type: Transform + pos: -8.5,77.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7676 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 1 + - uid: 8417 + components: + - type: Transform + pos: -47.5,44.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8462 + components: + - type: Transform + pos: 12.5,66.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8664 + components: + - type: Transform + pos: -20.5,17.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8741 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9387 + components: + - type: Transform + pos: 48.5,-6.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9458 + components: + - type: Transform + pos: 47.5,44.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9460 + components: + - type: Transform + pos: 49.5,12.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9465 + components: + - type: Transform + pos: -50.5,12.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9471 + components: + - type: Transform + pos: -30.5,18.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9473 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9558 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9893 + components: + - type: Transform + pos: 9.5,64.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9980 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10061 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10078 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10086 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10118 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10129 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10131 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11049 + components: + - type: Transform + pos: 15.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11065 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13154 + components: + - type: Transform + pos: 18.5,18.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13167 + components: + - type: Transform + pos: 25.5,28.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13308 + components: + - type: Transform + pos: -28.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13323 + components: + - type: Transform + pos: -16.5,10.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13350 + components: + - type: Transform + pos: -34.5,19.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13356 + components: + - type: Transform + pos: -35.5,34.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13387 + components: + - type: Transform + pos: -24.5,33.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13396 + components: + - type: Transform + pos: -23.5,41.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13410 + components: + - type: Transform + pos: -19.5,56.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13449 + components: + - type: Transform + pos: -42.5,46.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13467 + components: + - type: Transform + pos: -5.5,69.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14012 + components: + - type: Transform + pos: 3.5,40.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14018 + components: + - type: Transform + pos: 20.5,47.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14041 + components: + - type: Transform + pos: 27.5,41.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14054 + components: + - type: Transform + pos: 33.5,52.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetFireFilled + entities: + - uid: 4392 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7015 + components: + - type: Transform + pos: 20.5,46.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7681 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 1 + - uid: 8060 + components: + - type: Transform + pos: 7.5,76.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8416 + components: + - type: Transform + pos: -46.5,44.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8463 + components: + - type: Transform + pos: 11.5,66.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8586 + components: + - type: Transform + pos: -9.5,19.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8742 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9457 + components: + - type: Transform + pos: 46.5,44.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9461 + components: + - type: Transform + pos: 48.5,12.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9462 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9466 + components: + - type: Transform + pos: -49.5,12.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9470 + components: + - type: Transform + pos: -30.5,19.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9472 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9894 + components: + - type: Transform + pos: 8.5,64.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9981 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10060 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10079 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10085 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10130 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11050 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11064 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13166 + components: + - type: Transform + pos: 25.5,29.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13309 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13324 + components: + - type: Transform + pos: -16.5,9.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13351 + components: + - type: Transform + pos: -34.5,18.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13357 + components: + - type: Transform + pos: -36.5,34.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13369 + components: + - type: Transform + pos: -28.5,17.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13386 + components: + - type: Transform + pos: -24.5,34.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13395 + components: + - type: Transform + pos: -23.5,40.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13409 + components: + - type: Transform + pos: -19.5,55.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13448 + components: + - type: Transform + pos: -42.5,45.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13466 + components: + - type: Transform + pos: -5.5,70.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14011 + components: + - type: Transform + pos: 2.5,40.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14032 + components: + - type: Transform + pos: 27.5,40.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14055 + components: + - type: Transform + pos: 34.5,52.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetJanitorFilled + entities: + - uid: 9261 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3JanitorFilled + entities: + - uid: 9260 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3ScienceFilled + entities: + - uid: 6596 + components: + - type: Transform + pos: -8.5,19.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6597 + components: + - type: Transform + pos: -15.5,28.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetLegalFilled + entities: + - uid: 9295 + components: + - type: Transform + pos: 7.5,61.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1093 + components: + - type: Transform + pos: -28.5,18.5 + parent: 1 + - uid: 7675 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 1 + - uid: 9898 + components: + - type: Transform + pos: 4.5,40.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9979 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10062 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10119 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10128 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10132 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11047 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11067 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13153 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13168 + components: + - type: Transform + pos: 25.5,27.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13310 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13320 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13322 + components: + - type: Transform + pos: -16.5,11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13349 + components: + - type: Transform + pos: -34.5,20.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13355 + components: + - type: Transform + pos: -34.5,34.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13388 + components: + - type: Transform + pos: -24.5,32.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13408 + components: + - type: Transform + pos: -22.5,54.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13423 + components: + - type: Transform + pos: -25.5,58.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13447 + components: + - type: Transform + pos: -44.5,46.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13468 + components: + - type: Transform + pos: -5.5,68.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13478 + components: + - type: Transform + pos: -12.5,63.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13999 + components: + - type: Transform + pos: 10.5,64.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14019 + components: + - type: Transform + pos: 20.5,48.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14056 + components: + - type: Transform + pos: 35.5,52.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 6598 + components: + - type: Transform + pos: -15.5,27.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6599 + components: + - type: Transform + pos: -7.5,19.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7156 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10127 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetToolFilled + entities: + - uid: 7155 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8743 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10930 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11071 + components: + - type: Transform + pos: 17.5,2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13372 + components: + - type: Transform + pos: -28.5,21.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.0214376 + - 7.6044564 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13424 + components: + - type: Transform + pos: -21.5,58.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 8896 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 8756 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 2.747938 + - 10.337481 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8897 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 8756 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 2.747938 + - 10.337481 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClothingBackpackClown + entities: + - uid: 6611 + components: + - type: Transform + pos: -16.569172,-0.39851928 + parent: 1 +- proto: ClothingBackpackMerc + entities: + - uid: 6921 + components: + - type: Transform + pos: -42.38712,-12.466305 + parent: 1 +- proto: ClothingBackpackSatchelLeather + entities: + - uid: 18320 + components: + - type: Transform + pos: 40.47693,-7.527403 + parent: 1 + - uid: 18321 + components: + - type: Transform + pos: -33.544666,54.621593 + parent: 1 +- proto: ClothingBeltChampion + entities: + - uid: 7259 + components: + - type: Transform + pos: 4.51736,45.55318 + parent: 1 +- proto: ClothingBeltHolster + entities: + - uid: 9333 + components: + - type: Transform + pos: -43.116463,7.68436 + parent: 1 + - uid: 17749 + components: + - type: Transform + pos: -15.469988,66.40932 + parent: 1 +- proto: ClothingBeltMercWebbing + entities: + - uid: 7776 + components: + - type: Transform + pos: -39.31486,-19.325691 + parent: 1 +- proto: ClothingBeltPlant + entities: + - uid: 4242 + components: + - type: Transform + pos: 15.602159,8.388835 + parent: 1 +- proto: ClothingBeltUtility + entities: + - uid: 9621 + components: + - type: Transform + pos: -43.50088,-2.459965 + parent: 1 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 4702 + components: + - type: Transform + pos: -17.489521,17.578913 + parent: 1 + - uid: 9114 + components: + - type: Transform + pos: 10.45504,-18.357496 + parent: 1 + - uid: 18097 + components: + - type: Transform + pos: -32.452248,55.430744 + parent: 1 +- proto: ClothingEyesGlasses + entities: + - uid: 6669 + components: + - type: Transform + pos: -26.470171,6.9534106 + parent: 1 + - uid: 8081 + components: + - type: Transform + pos: -0.46738756,83.39493 + parent: 1 + - uid: 8129 + components: + - type: Transform + pos: 10.319884,59.595665 + parent: 1 + - uid: 8492 + components: + - type: Transform + pos: 15.420103,32.434727 + parent: 1 + - uid: 9271 + components: + - type: Transform + pos: 24.589664,11.557829 + parent: 1 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 8082 + components: + - type: Transform + pos: -7.367997,79.81877 + parent: 1 + - uid: 9189 + components: + - type: Transform + pos: 9.406997,-15.281609 + parent: 1 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 8247 + components: + - type: Transform + pos: -12.668796,47.542213 + parent: 1 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 18101 + components: + - type: Transform + pos: -29.678068,53.78091 + parent: 1 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 18102 + components: + - type: Transform + pos: -29.522928,53.4829 + parent: 1 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 8700 + components: + - type: Transform + pos: -13.44191,-34.247616 + parent: 1 + - uid: 9093 + components: + - type: Transform + pos: 7.4150662,-11.358664 + parent: 1 + - uid: 9239 + components: + - type: Transform + pos: -21.620941,-13.378785 + parent: 1 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 7464 + components: + - type: Transform + pos: 18.631903,31.596643 + parent: 1 +- proto: ClothingHandsGlovesLeather + entities: + - uid: 4235 + components: + - type: Transform + pos: 15.58796,8.644276 + parent: 1 +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 18476 + components: + - type: Transform + pos: 22.441998,-12.412416 + parent: 1 +- proto: ClothingHeadHatBunny + entities: + - uid: 10095 + components: + - type: Transform + pos: -13.595756,-19.311182 + parent: 1 +- proto: ClothingHeadHatChef + entities: + - uid: 18450 + components: + - type: Transform + pos: 8.40042,-2.435669 + parent: 1 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 10938 + components: + - type: Transform + pos: 33.51424,-17.677885 + parent: 1 +- proto: ClothingHeadHatFedoraGrey + entities: + - uid: 18348 + components: + - type: Transform + pos: -46.5004,47.295025 + parent: 1 +- proto: ClothingHeadHatFez + entities: + - uid: 11078 + components: + - type: Transform + pos: 20.427416,11.411529 + parent: 1 +- proto: ClothingHeadHatHairflower + entities: + - uid: 7260 + components: + - type: Transform + pos: 4.375372,45.69509 + parent: 1 +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 9864 + components: + - type: Transform + pos: -37.818073,-17.247238 + parent: 1 +- proto: ClothingHeadHatJesterAlt + entities: + - uid: 18417 + components: + - type: Transform + pos: -28.410465,52.86911 + parent: 1 +- proto: ClothingHeadHatMimesoftFlipped + entities: + - uid: 6617 + components: + - type: Transform + pos: -15.675494,5.6185107 + parent: 1 +- proto: ClothingHeadHatOutlawHat + entities: + - uid: 17760 + components: + - type: Transform + pos: -18.557217,-21.471539 + parent: 1 +- proto: ClothingHeadHatPumpkin + entities: + - uid: 4237 + components: + - type: Transform + pos: 15.36078,8.743613 + parent: 1 +- proto: ClothingHeadHatPwig + entities: + - uid: 8130 + components: + - type: Transform + pos: 11.512583,59.624046 + parent: 1 +- proto: ClothingHeadHatQMsoftFlipped + entities: + - uid: 9331 + components: + - type: Transform + pos: -42.387295,7.580193 + parent: 1 +- proto: ClothingHeadHatWelding + entities: + - uid: 8347 + components: + - type: Transform + pos: -28.660612,29.63867 + parent: 1 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 9886 + components: + - type: Transform + pos: -28.362438,31.526087 + parent: 1 +- proto: ClothingHeadHatXmasCrown + entities: + - uid: 611 + components: + - type: Transform + pos: 8.417196,2.4837458 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 8.589071,2.3899958 + parent: 1 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 4057 + components: + - type: Transform + pos: -19.491697,40.80205 + parent: 1 + - uid: 7799 + components: + - type: Transform + pos: -19.335447,40.598927 + parent: 1 +- proto: ClothingHeadNurseHat + entities: + - uid: 3624 + components: + - type: Transform + pos: 9.456723,19.606298 + parent: 1 +- proto: ClothingHeadPyjamaSyndicatePink + entities: + - uid: 8399 + components: + - type: Transform + pos: 18.72468,47.52865 + parent: 1 +- proto: ClothingMaskGas + entities: + - uid: 7157 + components: + - type: Transform + pos: 11.357593,-37.31936 + parent: 1 + - uid: 7158 + components: + - type: Transform + pos: 11.641568,-37.518036 + parent: 1 + - uid: 9094 + components: + - type: Transform + pos: 7.6234,-11.483664 + parent: 1 + - uid: 9969 + components: + - type: Transform + pos: -20.622124,-24.324959 + parent: 1 +- proto: ClothingMaskGasAtmos + entities: + - uid: 8744 + components: + - type: Transform + pos: -12.37689,-41.391964 + parent: 1 +- proto: ClothingNeckAromanticPin + entities: + - uid: 17713 + components: + - type: Transform + pos: 43.669888,38.451065 + parent: 1 +- proto: ClothingNeckAsexualPin + entities: + - uid: 17714 + components: + - type: Transform + pos: 1.4304651,57.357273 + parent: 1 +- proto: ClothingNeckBisexualPin + entities: + - uid: 17715 + components: + - type: Transform + pos: -44.6231,38.434673 + parent: 1 +- proto: ClothingNeckCloakGoliathCloak + entities: + - uid: 17734 + components: + - type: Transform + pos: 7.523013,47.61037 + parent: 1 +- proto: ClothingNeckCloakHerald + entities: + - uid: 17736 + components: + - type: Transform + pos: 50.46923,40.362823 + parent: 1 +- proto: ClothingNeckCloakMiner + entities: + - uid: 17653 + components: + - type: Transform + pos: -44.542686,34.539337 + parent: 1 +- proto: ClothingNeckIntersexPin + entities: + - uid: 4027 + components: + - type: Transform + pos: -0.6386776,-0.42031726 + parent: 1 +- proto: ClothingNeckLesbianPin + entities: + - uid: 17717 + components: + - type: Transform + pos: -16.415733,-15.699648 + parent: 1 +- proto: ClothingNeckLGBTPin + entities: + - uid: 17712 + components: + - type: Transform + pos: 14.597307,15.443957 + parent: 1 +- proto: ClothingNeckMantleCap + entities: + - uid: 8883 + components: + - type: Transform + pos: -7.486513,72.816246 + parent: 1 +- proto: ClothingNeckMantleCE + entities: + - uid: 8887 + components: + - type: Transform + pos: 6.0722814,-25.273577 + parent: 1 +- proto: ClothingNeckMantleCMO + entities: + - uid: 8888 + components: + - type: Transform + pos: 16.477184,33.464405 + parent: 1 +- proto: ClothingNeckMantleHOP + entities: + - uid: 9272 + components: + - type: Transform + pos: 23.735497,11.474496 + parent: 1 +- proto: ClothingNeckMantleHOS + entities: + - uid: 6828 + components: + - type: Transform + pos: -13.651763,60.464382 + parent: 1 +- proto: ClothingNeckMantleQM + entities: + - uid: 8884 + components: + - type: Transform + pos: -43.55383,11.723603 + parent: 1 +- proto: ClothingNeckMantleRD + entities: + - uid: 8345 + components: + - type: Transform + pos: -23.611712,20.376474 + parent: 1 +- proto: ClothingNeckNonBinaryPin + entities: + - uid: 17718 + components: + - type: Transform + pos: 24.628267,-1.6318419 + parent: 1 +- proto: ClothingNeckPansexualPin + entities: + - uid: 17719 + components: + - type: Transform + pos: 21.441319,19.536022 + parent: 1 +- proto: ClothingNeckStethoscope + entities: + - uid: 8491 + components: + - type: Transform + pos: 16.445831,32.692505 + parent: 1 + - uid: 9606 + components: + - type: Transform + pos: 3.3985047,31.605078 + parent: 1 +- proto: ClothingNeckTieRed + entities: + - uid: 10936 + components: + - type: Transform + pos: 33.429047,-17.73465 + parent: 1 +- proto: ClothingNeckTransPin + entities: + - uid: 17720 + components: + - type: Transform + pos: 19.415567,41.43221 + parent: 1 + - uid: 17721 + components: + - type: Transform + pos: -4.304539,54.705074 + parent: 1 +- proto: ClothingOuterApronBotanist + entities: + - uid: 4243 + components: + - type: Transform + pos: 5.6728125,7.328458 + parent: 1 +- proto: ClothingOuterArmorRiot + entities: + - uid: 4127 + components: + - type: Transform + pos: -19.444822,40.4583 + parent: 1 + - uid: 7714 + components: + - type: Transform + pos: -19.632322,40.661427 + parent: 1 +- proto: ClothingOuterCoatInspector + entities: + - uid: 10937 + components: + - type: Transform + pos: 33.429047,-17.59274 + parent: 1 +- proto: ClothingOuterCoatJensen + entities: + - uid: 18357 + components: + - type: Transform + pos: 37.44033,50.617104 + parent: 1 +- proto: ClothingOuterGhostSheet + entities: + - uid: 18107 + components: + - type: Transform + pos: -13.221982,69.88774 + parent: 1 + - uid: 18108 + components: + - type: Transform + pos: 35.625576,-21.402008 + parent: 1 +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 8499 + components: + - type: Transform + pos: -36.512154,23.610739 + parent: 1 +- proto: ClothingOuterHoodieChaplain + entities: + - uid: 8378 + components: + - type: Transform + pos: 24.56557,54.496185 + parent: 1 +- proto: ClothingOuterRobesCult + entities: + - uid: 9861 + components: + - type: Transform + pos: -37.519897,-17.403341 + parent: 1 +- proto: ClothingOuterVestWebMerc + entities: + - uid: 7772 + components: + - type: Transform + pos: -24.647196,-32.421364 + parent: 1 + - uid: 17750 + components: + - type: Transform + pos: 20.426132,60.536144 + parent: 1 +- proto: ClothingShoesBootsCombatFilled + entities: + - uid: 17751 + components: + - type: Transform + pos: 34.459908,-27.393188 + parent: 1 +- proto: ClothingShoesBootsJack + entities: + - uid: 18358 + components: + - type: Transform + pos: 37.606995,50.742104 + parent: 1 +- proto: ClothingShoesBootsMag + entities: + - uid: 4367 + components: + - type: Transform + pos: 25.694765,31.717653 + parent: 1 + - uid: 8706 + components: + - type: Transform + pos: -13.482979,-24.072556 + parent: 1 +- proto: ClothingShoesBootsMerc + entities: + - uid: 6920 + components: + - type: Transform + pos: -42.277744,-12.73193 + parent: 1 +- proto: ClothingShoesBootsPerformer + entities: + - uid: 6625 + components: + - type: Transform + pos: -16.470627,-5.3569727 + parent: 1 +- proto: ClothingShoesBootsWork + entities: + - uid: 9971 + components: + - type: MetaData + desc: Legendary boots worn by the king of the tiders + name: boots of the grey king + - type: Transform + pos: -22.53896,-24.152784 + parent: 1 + - type: NoSlip +- proto: ClothingShoesCult + entities: + - uid: 9862 + components: + - type: Transform + pos: -37.94586,-17.687162 + parent: 1 +- proto: ClothingShoesJester + entities: + - uid: 18416 + components: + - type: Transform + pos: -28.389633,52.43161 + parent: 1 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 18109 + components: + - type: Transform + pos: 35.418114,-20.345602 + parent: 1 +- proto: ClothingUnderSocksCoder + entities: + - uid: 18359 + components: + - type: Transform + pos: 18.34029,46.950535 + parent: 1 +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 14060 + components: + - type: Transform + pos: 21.290764,58.71069 + parent: 1 +- proto: ClothingUniformJumpskirtDetectiveGrey + entities: + - uid: 18347 + components: + - type: Transform + pos: -33.43428,52.538555 + parent: 1 +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 17761 + components: + - type: Transform + pos: -18.64241,-22.485422 + parent: 1 +- proto: ClothingUniformJumpskirtPerformer + entities: + - uid: 6624 + components: + - type: Transform + pos: -16.07306,-5.413738 + parent: 1 +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 8149 + components: + - type: Transform + pos: 21.540764,58.502357 + parent: 1 +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 18346 + components: + - type: Transform + pos: -33.618862,52.69466 + parent: 1 +- proto: ClothingUniformJumpsuitEngineeringHazard + entities: + - uid: 9190 + components: + - type: Transform + pos: 9.531997,-15.469109 + parent: 1 +- proto: ClothingUniformJumpsuitHoSBlue + entities: + - uid: 6827 + components: + - type: Transform + pos: -13.412797,60.456165 + parent: 1 +- proto: ClothingUniformJumpsuitJesterAlt + entities: + - uid: 18415 + components: + - type: Transform + pos: -28.181301,52.660778 + parent: 1 +- proto: ClothingUniformJumpsuitSecBlue + entities: + - uid: 8150 + components: + - type: Transform + pos: 21.707432,58.689857 + parent: 1 +- proto: ClownRecorder + entities: + - uid: 8191 + components: + - type: Transform + pos: -15.323214,-0.60332537 + parent: 1 +- proto: ComfyChair + entities: + - uid: 427 + components: + - type: Transform + pos: -50.5,16.5 + parent: 1 + - uid: 1292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,35.5 + parent: 1 + - uid: 1295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,35.5 + parent: 1 + - uid: 1297 + components: + - type: Transform + pos: -48.5,16.5 + parent: 1 + - uid: 1992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,5.5 + parent: 1 + - uid: 8093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,73.5 + parent: 1 + - uid: 8094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,72.5 + parent: 1 + - uid: 8095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,71.5 + parent: 1 + - uid: 8100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,73.5 + parent: 1 + - uid: 8101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,72.5 + parent: 1 + - uid: 8102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,71.5 + parent: 1 + - uid: 8958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - uid: 9913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-37.5 + parent: 1 +- proto: ComputerAlert + entities: + - uid: 4191 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 4270 + components: + - type: Transform + pos: -6.5,82.5 + parent: 1 + - uid: 4273 + components: + - type: Transform + pos: 5.5,82.5 + parent: 1 + - uid: 7115 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1 +- proto: ComputerAnalysisConsole + entities: + - uid: 3536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,29.5 + parent: 1 +- proto: computerBodyScanner + entities: + - uid: 1620 + components: + - type: Transform + pos: 4.5,82.5 + parent: 1 + - uid: 4336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,32.5 + parent: 1 + - uid: 8516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,27.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 7665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 1 + - uid: 9988 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 1 + - uid: 14033 + components: + - type: Transform + pos: 25.5,58.5 + parent: 1 +- proto: ComputerCargoBounty + entities: + - uid: 9679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,3.5 + parent: 1 +- proto: ComputerCargoOrders + entities: + - uid: 323 + components: + - type: Transform + pos: 1.5,83.5 + parent: 1 + - uid: 4152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,7.5 + parent: 1 +- proto: ComputerCargoShuttle + entities: + - uid: 320 + components: + - type: Transform + pos: 0.5,83.5 + parent: 1 + - uid: 4153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-1.5 + parent: 1 +- proto: ComputerComms + entities: + - uid: 4262 + components: + - type: Transform + pos: -2.5,80.5 + parent: 1 + - uid: 6802 + components: + - type: Transform + pos: -7.5,74.5 + parent: 1 +- proto: ComputerCrewMonitoring + entities: + - uid: 3654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,20.5 + parent: 1 + - uid: 4271 + components: + - type: Transform + pos: 3.5,82.5 + parent: 1 +- proto: ComputerCriminalRecords + entities: + - uid: 258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-3.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 1.5,80.5 + parent: 1 + - uid: 7890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,42.5 + parent: 1 + - uid: 8136 + components: + - type: Transform + pos: -5.5,55.5 + parent: 1 + - uid: 9415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-12.5 + parent: 1 +- proto: ComputerFrame + entities: + - uid: 7442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 1 + - uid: 8889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 8756 +- proto: ComputerId + entities: + - uid: 2900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,2.5 + parent: 1 + - uid: 4256 + components: + - type: Transform + pos: -3.5,80.5 + parent: 1 +- proto: ComputerMedicalRecords + entities: + - uid: 571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,34.5 + parent: 1 + - uid: 3633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,19.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 4192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 1 + - uid: 4269 + components: + - type: Transform + pos: -4.5,82.5 + parent: 1 + - uid: 10870 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 1 + - uid: 11069 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 + - uid: 13161 + components: + - type: Transform + pos: 15.5,25.5 + parent: 1 + - uid: 13180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-18.5 + parent: 1 + - uid: 13181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 1 + - uid: 13853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,53.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 4257 + components: + - type: Transform + pos: -1.5,80.5 + parent: 1 + - uid: 7798 + components: + - type: Transform + pos: -39.5,18.5 + parent: 1 + - uid: 7934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,21.5 + parent: 1 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 325 + components: + - type: Transform + pos: -1.5,83.5 + parent: 1 + - uid: 3556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,21.5 + parent: 1 + - uid: 18345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,21.5 + parent: 1 +- proto: ComputerSalvageExpedition + entities: + - uid: 1781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,25.5 + parent: 1 +- proto: ComputerShuttleCargo + entities: + - uid: 4154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 1 +- proto: ComputerShuttleSalvage + entities: + - uid: 4370 + components: + - type: Transform + pos: -41.5,26.5 + parent: 1 +- proto: ComputerSolarControl + entities: + - uid: 4194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 1 + - uid: 4268 + components: + - type: Transform + pos: -5.5,82.5 + parent: 1 + - uid: 7152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-40.5 + parent: 1 + - uid: 8010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,54.5 + parent: 1 + - uid: 14046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,54.5 + parent: 1 +- proto: ComputerStationRecords + entities: + - uid: 324 + components: + - type: Transform + pos: -2.5,83.5 + parent: 1 + - uid: 2902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,5.5 + parent: 1 + - uid: 7393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,49.5 + parent: 1 + - uid: 18502 + components: + - type: Transform + pos: -6.5,57.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 4259 + components: + - type: Transform + pos: 2.5,80.5 + parent: 1 + - uid: 6661 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 1 + - uid: 7244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 1 + - uid: 7391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,48.5 + parent: 1 + - uid: 7900 + components: + - type: Transform + pos: 43.5,44.5 + parent: 1 + - uid: 8135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,52.5 + parent: 1 + - uid: 8181 + components: + - type: Transform + pos: -14.5,56.5 + parent: 1 + - uid: 9414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-11.5 + parent: 1 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 4260 + components: + - type: Transform + pos: 0.5,80.5 + parent: 1 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 2633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,30.5 + parent: 1 +- proto: ContrabassInstrument + entities: + - uid: 1664 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7815 + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8179 + - uid: 460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8179 + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8179 + - uid: 1767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,24.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7918 + - 7808 + - uid: 2127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8179 + - uid: 2722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8179 + - uid: 2723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7815 + - uid: 3830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4007 + - uid: 3994 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4007 + - uid: 3995 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4007 + - uid: 3996 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4007 + - uid: 3997 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4007 + - uid: 3998 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4007 + - uid: 3999 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4007 + - uid: 4000 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4007 + - uid: 4001 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4007 + - uid: 4002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4007 + - uid: 4110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,22.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7918 + - 7808 + - uid: 4115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,22.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7918 + - 7808 + - uid: 4130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,22.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7918 + - 7808 + - uid: 4134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,24.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7918 + - 7808 + - uid: 4146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9364 + - uid: 4147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9364 + - uid: 7254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7815 + - uid: 7291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7815 + - uid: 7704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7815 + - uid: 7818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,22.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7918 + - 7808 + - uid: 7820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,24.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7918 + - 7808 + - uid: 7821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,24.5 + parent: 1 + - type: DeviceLinkSink + links: + - 7918 + - 7808 +- proto: CornSeeds + entities: + - uid: 8277 + components: + - type: Transform + pos: -29.621134,44.53177 + parent: 1 +- proto: CowToolboxFilled + entities: + - uid: 13384 + components: + - type: Transform + pos: -17.809574,28.530706 + parent: 1 +- proto: CrateArtifactContainer + entities: + - uid: 3550 + components: + - type: Transform + pos: -9.5,34.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEmptySpawner + entities: + - uid: 5555 + components: + - type: Transform + pos: -20.5,9.5 + parent: 1 + - uid: 9317 + components: + - type: Transform + pos: -41.5,0.5 + parent: 1 + - uid: 9318 + components: + - type: Transform + pos: -39.5,0.5 + parent: 1 + - uid: 9319 + components: + - type: Transform + pos: -39.5,1.5 + parent: 1 + - uid: 9320 + components: + - type: Transform + pos: -40.5,1.5 + parent: 1 + - uid: 9448 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 1 + - uid: 9449 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 1 +- proto: CrateEngineeringAMEJar + entities: + - uid: 9025 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 9024 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9026 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEngineeringCableBulk + entities: + - uid: 4185 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4592 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13183 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEngineeringCableHV + entities: + - uid: 7153 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13441 + components: + - type: Transform + pos: -37.5,55.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13442 + components: + - type: Transform + pos: 38.5,55.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEngineeringElectricalSupplies + entities: + - uid: 4593 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEngineeringGear + entities: + - uid: 13439 + components: + - type: Transform + pos: -25.5,52.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateFilledSpawner + entities: + - uid: 5556 + components: + - type: Transform + pos: -20.5,10.5 + parent: 1 + - uid: 9311 + components: + - type: Transform + pos: -40.5,0.5 + parent: 1 + - uid: 9312 + components: + - type: Transform + pos: -41.5,1.5 + parent: 1 + - uid: 9313 + components: + - type: Transform + pos: -41.5,2.5 + parent: 1 + - uid: 9314 + components: + - type: Transform + pos: -39.5,3.5 + parent: 1 + - uid: 9315 + components: + - type: Transform + pos: -39.5,4.5 + parent: 1 + - uid: 9316 + components: + - type: Transform + pos: -40.5,4.5 + parent: 1 +- proto: CrateFreezer + entities: + - uid: 4062 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateFunArtSupplies + entities: + - uid: 9363 + components: + - type: Transform + pos: -40.5,3.5 + parent: 1 +- proto: CrateMedicalSurgery + entities: + - uid: 8515 + components: + - type: Transform + pos: 2.5,28.5 + parent: 1 +- proto: CrateMindShieldImplants + entities: + - uid: 7690 + components: + - type: Transform + pos: -6.5,61.5 + parent: 1 +- proto: CrateNPCCow + entities: + - uid: 3804 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - type: EntityStorage + air: + volume: 800 + immutable: False + temperature: 293.14987 + moles: + - 13.772371 + - 51.81035 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateServiceBureaucracy + entities: + - uid: 9321 + components: + - type: Transform + pos: -40.5,2.5 + parent: 1 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 9378 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 +- proto: CrateTrackingImplants + entities: + - uid: 9110 + components: + - type: Transform + pos: -6.5,62.5 + parent: 1 +- proto: CrateWeaponSecure + entities: + - uid: 1836 + components: + - type: Transform + pos: -4.5,62.5 + parent: 1 +- proto: CrayonBox + entities: + - uid: 8283 + components: + - type: Transform + pos: -28.997604,44.572357 + parent: 1 + - uid: 8472 + components: + - type: Transform + pos: 20.349487,40.573277 + parent: 1 +- proto: CrayonMime + entities: + - uid: 6618 + components: + - type: Transform + pos: -15.95947,5.6185107 + parent: 1 +- proto: CrayonPurple + entities: + - uid: 8473 + components: + - type: Transform + pos: 20.718657,40.559086 + parent: 1 +- proto: Crematorium + entities: + - uid: 4403 + components: + - type: Transform + pos: 32.5,56.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 8882 + components: + - type: Transform + pos: 14.5,25.5 + parent: 1 +- proto: Crowbar + entities: + - uid: 9970 + components: + - type: Transform + pos: -20.366545,-24.481062 + parent: 1 + - uid: 18414 + components: + - type: Transform + pos: -5.550656,32.42306 + parent: 1 +- proto: CryogenicSleepUnit + entities: + - uid: 4175 + components: + - type: Transform + pos: 11.5,42.5 + parent: 1 + - uid: 4253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,42.5 + parent: 1 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 6937 + components: + - type: Transform + pos: 11.5,40.5 + parent: 1 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 6940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,40.5 + parent: 1 +- proto: CryoPod + entities: + - uid: 6368 + components: + - type: Transform + pos: 12.5,33.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 6388 + components: + - type: Transform + pos: 9.315549,34.734295 + parent: 1 + - uid: 8527 + components: + - type: Transform + pos: 9.471799,34.609295 + parent: 1 +- proto: CultAltarSpawner + entities: + - uid: 9860 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 1 +- proto: d20Dice + entities: + - uid: 9922 + components: + - type: Transform + pos: -19.295444,-36.252487 + parent: 1 +- proto: d4Dice + entities: + - uid: 9923 + components: + - type: Transform + pos: -19.636215,-36.919468 + parent: 1 +- proto: d6Dice + entities: + - uid: 9957 + components: + - type: Transform + pos: -38.76962,-12.060882 + parent: 1 + - uid: 9958 + components: + - type: Transform + pos: -38.75542,-12.231175 + parent: 1 + - uid: 14027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.553741,58.430557 + parent: 1 + - uid: 14028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.638933,58.82791 + parent: 1 +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 6621 + components: + - type: Transform + pos: -15.5903015,-5.413738 + parent: 1 +- proto: DecoratedFirTree + entities: + - uid: 2645 + components: + - type: Transform + pos: -28.5,58.5 + parent: 1 +- proto: DefaultStationBeaconAME + entities: + - uid: 8928 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 1 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 8929 + components: + - type: Transform + pos: -16.5,20.5 + parent: 1 +- proto: DefaultStationBeaconArmory + entities: + - uid: 8942 + components: + - type: Transform + pos: -8.5,62.5 + parent: 1 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 8957 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 1 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 9609 + components: + - type: Transform + pos: -9.5,30.5 + parent: 1 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 8960 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 1 +- proto: DefaultStationBeaconBar + entities: + - uid: 8961 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 +- proto: DefaultStationBeaconBotany + entities: + - uid: 8962 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 +- proto: DefaultStationBeaconBridge + entities: + - uid: 8963 + components: + - type: Transform + pos: -0.5,81.5 + parent: 1 +- proto: DefaultStationBeaconBrig + entities: + - uid: 8982 + components: + - type: Transform + pos: -9.5,45.5 + parent: 1 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 8985 + components: + - type: Transform + pos: -7.5,72.5 + parent: 1 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 8986 + components: + - type: Transform + pos: -42.5,3.5 + parent: 1 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 8987 + components: + - type: Transform + pos: -35.5,6.5 + parent: 1 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 8983 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 1 +- proto: DefaultStationBeaconChapel + entities: + - uid: 9036 + components: + - type: Transform + pos: 30.5,48.5 + parent: 1 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 9038 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 8984 + components: + - type: Transform + pos: 14.5,33.5 + parent: 1 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 9342 + components: + - type: Transform + pos: 8.5,58.5 + parent: 1 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 9375 + components: + - type: Transform + pos: 10.5,30.5 + parent: 1 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 9377 + components: + - type: Transform + pos: 41.5,47.5 + parent: 1 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 9487 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 1 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 9690 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 +- proto: DefaultStationBeaconEvac + entities: + - uid: 9688 + components: + - type: Transform + pos: 47.5,15.5 + parent: 1 + - uid: 9689 + components: + - type: Transform + pos: 47.5,36.5 + parent: 1 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 9490 + components: + - type: Transform + pos: 25.5,32.5 + parent: 1 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 9695 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 1 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 9491 + components: + - type: Transform + pos: 23.5,5.5 + parent: 1 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 9492 + components: + - type: Transform + pos: -14.5,59.5 + parent: 1 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 9493 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 9494 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 9501 + components: + - type: Transform + pos: 2.5,63.5 + parent: 1 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 9581 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 9608 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 9680 + components: + - type: Transform + pos: 20.5,31.5 + parent: 1 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 9610 + components: + - type: Transform + pos: -31.5,46.5 + parent: 1 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 9611 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 1 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 9612 + components: + - type: Transform + pos: -42.5,10.5 + parent: 1 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 9613 + components: + - type: Transform + pos: -23.5,22.5 + parent: 1 +- proto: DefaultStationBeaconRND + entities: + - uid: 9614 + components: + - type: Transform + pos: -5.5,22.5 + parent: 1 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 8959 + components: + - type: Transform + pos: -17.5,33.5 + parent: 1 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 9681 + components: + - type: Transform + pos: -40.5,26.5 + parent: 1 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 9696 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 1 + - uid: 9697 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 1 + - uid: 9698 + components: + - type: Transform + pos: 42.5,43.5 + parent: 1 +- proto: DefaultStationBeaconSolars + entities: + - uid: 9691 + components: + - type: Transform + pos: -38.5,54.5 + parent: 1 + - uid: 9692 + components: + - type: Transform + pos: 37.5,54.5 + parent: 1 + - uid: 9693 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 1 + - uid: 9694 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 1 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 9683 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 1 +- proto: DefaultStationBeaconTEG + entities: + - uid: 9684 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 1 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 9682 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 1 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 9685 + components: + - type: Transform + pos: -27.5,31.5 + parent: 1 +- proto: DefaultStationBeaconVault + entities: + - uid: 9687 + components: + - type: Transform + pos: 4.5,47.5 + parent: 1 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 9686 + components: + - type: Transform + pos: -13.5,48.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,20.5 + parent: 1 + - uid: 4111 + components: + - type: Transform + pos: -25.5,49.5 + parent: 1 + - uid: 6804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,40.5 + parent: 1 + - uid: 6909 + components: + - type: Transform + pos: 40.5,39.5 + parent: 1 + - uid: 6925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 1 + - uid: 6926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,31.5 + parent: 1 + - uid: 7430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,26.5 + parent: 1 + - uid: 7431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + - uid: 7636 + components: + - type: Transform + pos: -12.5,26.5 + parent: 1 + - uid: 7637 + components: + - type: Transform + pos: 3.5,83.5 + parent: 1 + - uid: 7638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + - uid: 7641 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1 + - uid: 7643 + components: + - type: Transform + pos: -10.5,47.5 + parent: 1 + - uid: 7722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,3.5 + parent: 1 + - uid: 7729 + components: + - type: Transform + pos: 1.5,69.5 + parent: 1 + - uid: 7768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-8.5 + parent: 1 + - uid: 7794 + components: + - type: Transform + pos: 28.5,16.5 + parent: 1 + - uid: 7795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,7.5 + parent: 1 + - uid: 7796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 1 + - uid: 7797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,0.5 + parent: 1 +- proto: DeployableBarrier + entities: + - uid: 4383 + components: + - type: Transform + pos: -19.5,44.5 + parent: 1 + - uid: 4384 + components: + - type: Transform + pos: -19.5,45.5 + parent: 1 + - uid: 9675 + components: + - type: Transform + pos: -13.5,52.5 + parent: 1 + - uid: 9676 + components: + - type: Transform + pos: -11.5,52.5 + parent: 1 +- proto: DeskBell + entities: + - uid: 4505 + components: + - type: Transform + pos: -5.772716,20.447916 + parent: 1 + - uid: 4565 + components: + - type: Transform + pos: 4.7110076,20.385416 + parent: 1 + - uid: 4566 + components: + - type: Transform + pos: -6.6414404,-12.133052 + parent: 1 + - uid: 4567 + components: + - type: Transform + pos: 5.5849104,-12.195552 + parent: 1 + - uid: 6152 + components: + - type: Transform + pos: 4.2470655,-2.5974627 + parent: 1 + - uid: 6153 + components: + - type: Transform + pos: 11.743292,-5.633137 + parent: 1 + - uid: 6154 + components: + - type: Transform + pos: -6.2473664,5.4515653 + parent: 1 + - uid: 6193 + components: + - type: Transform + pos: -4.4996243,53.44499 + parent: 1 + - uid: 7655 + components: + - type: Transform + pos: 26.62281,3.3925822 + parent: 1 +- proto: DiceBag + entities: + - uid: 7030 + components: + - type: Transform + pos: -25.707123,3.7152946 + parent: 1 + - uid: 9296 + components: + - type: Transform + pos: 20.707039,40.88435 + parent: 1 + - uid: 9921 + components: + - type: Transform + pos: -19.423235,-37.373585 + parent: 1 +- proto: DiseaseDiagnoser + entities: + - uid: 4080 + components: + - type: Transform + pos: 6.5,34.5 + parent: 1 +- proto: DiseaseSwab + entities: + - uid: 7122 + components: + - type: Transform + pos: -13.290618,28.210794 + parent: 1 + - uid: 7123 + components: + - type: Transform + pos: -13.432607,27.955353 + parent: 1 +- proto: DisposalBend + entities: + - uid: 1784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,24.5 + parent: 1 + - uid: 16494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,70.5 + parent: 1 + - uid: 16500 + components: + - type: Transform + pos: 5.5,76.5 + parent: 1 + - uid: 16558 + components: + - type: Transform + pos: -8.5,53.5 + parent: 1 + - uid: 16559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,50.5 + parent: 1 + - uid: 16603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,37.5 + parent: 1 + - uid: 16604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,38.5 + parent: 1 + - uid: 16612 + components: + - type: Transform + pos: -15.5,31.5 + parent: 1 + - uid: 16613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,31.5 + parent: 1 + - uid: 16642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,37.5 + parent: 1 + - uid: 16643 + components: + - type: Transform + pos: -43.5,42.5 + parent: 1 + - uid: 16644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,42.5 + parent: 1 + - uid: 16657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,23.5 + parent: 1 + - uid: 16662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 1 + - uid: 16744 + components: + - type: Transform + pos: 31.5,43.5 + parent: 1 + - uid: 16766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,37.5 + parent: 1 + - uid: 16788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 1 + - uid: 16800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 1 + - uid: 16808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,28.5 + parent: 1 + - uid: 16827 + components: + - type: Transform + pos: 30.5,26.5 + parent: 1 + - uid: 16836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,21.5 + parent: 1 + - uid: 16852 + components: + - type: Transform + pos: 45.5,13.5 + parent: 1 + - uid: 16867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 1 + - uid: 16898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + - uid: 16899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + - uid: 16933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,14.5 + parent: 1 + - uid: 16973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,22.5 + parent: 1 + - uid: 16974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + - uid: 16975 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 17020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + - uid: 17033 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 17051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 1 + - uid: 17052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,2.5 + parent: 1 + - uid: 17053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,4.5 + parent: 1 + - uid: 17060 + components: + - type: Transform + pos: -31.5,4.5 + parent: 1 + - uid: 17098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-14.5 + parent: 1 + - uid: 17145 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 17175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 1 + - uid: 17194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,7.5 + parent: 1 + - uid: 17212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 1 + - uid: 17213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 1 + - uid: 17217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-27.5 + parent: 1 + - uid: 17218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-27.5 + parent: 1 + - uid: 17220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-29.5 + parent: 1 + - uid: 17226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-29.5 + parent: 1 + - uid: 17231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-34.5 + parent: 1 + - uid: 17233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-34.5 + parent: 1 +- proto: DisposalJunction + entities: + - uid: 8445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 1 + - uid: 16520 + components: + - type: Transform + pos: 0.5,68.5 + parent: 1 + - uid: 16534 + components: + - type: Transform + pos: 0.5,57.5 + parent: 1 + - uid: 16570 + components: + - type: Transform + pos: 0.5,50.5 + parent: 1 + - uid: 16583 + components: + - type: Transform + pos: 0.5,38.5 + parent: 1 + - uid: 16609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,38.5 + parent: 1 + - uid: 16683 + components: + - type: Transform + pos: 0.5,27.5 + parent: 1 + - uid: 16725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,37.5 + parent: 1 + - uid: 16738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,37.5 + parent: 1 + - uid: 16772 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 16792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 1 + - uid: 16821 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 16833 + components: + - type: Transform + pos: 30.5,21.5 + parent: 1 + - uid: 17025 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 17104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 1 + - uid: 17132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 1 + - uid: 17178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 1 +- proto: DisposalJunctionFlipped + entities: + - uid: 16543 + components: + - type: Transform + pos: 0.5,52.5 + parent: 1 + - uid: 16584 + components: + - type: Transform + pos: 0.5,37.5 + parent: 1 + - uid: 16622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,37.5 + parent: 1 + - uid: 16698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,37.5 + parent: 1 + - uid: 16773 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 16822 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 16922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,14.5 + parent: 1 + - uid: 16930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,14.5 + parent: 1 + - uid: 16946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,14.5 + parent: 1 + - uid: 16971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,14.5 + parent: 1 + - uid: 16993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 17023 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 17024 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 17027 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 17075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 1 + - uid: 17135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 1 + - uid: 17150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 2603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,31.5 + parent: 1 + - uid: 16492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,70.5 + parent: 1 + - uid: 16493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,70.5 + parent: 1 + - uid: 16495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,71.5 + parent: 1 + - uid: 16496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,72.5 + parent: 1 + - uid: 16497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,73.5 + parent: 1 + - uid: 16498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,74.5 + parent: 1 + - uid: 16499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,75.5 + parent: 1 + - uid: 16501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,76.5 + parent: 1 + - uid: 16502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,76.5 + parent: 1 + - uid: 16503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,76.5 + parent: 1 + - uid: 16504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,76.5 + parent: 1 + - uid: 16506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,76.5 + parent: 1 + - uid: 16507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,76.5 + parent: 1 + - uid: 16508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,76.5 + parent: 1 + - uid: 16509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,76.5 + parent: 1 + - uid: 16510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,76.5 + parent: 1 + - uid: 16511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,76.5 + parent: 1 + - uid: 16512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,76.5 + parent: 1 + - uid: 16513 + components: + - type: Transform + pos: 0.5,75.5 + parent: 1 + - uid: 16514 + components: + - type: Transform + pos: 0.5,74.5 + parent: 1 + - uid: 16515 + components: + - type: Transform + pos: 0.5,73.5 + parent: 1 + - uid: 16516 + components: + - type: Transform + pos: 0.5,72.5 + parent: 1 + - uid: 16517 + components: + - type: Transform + pos: 0.5,71.5 + parent: 1 + - uid: 16518 + components: + - type: Transform + pos: 0.5,70.5 + parent: 1 + - uid: 16519 + components: + - type: Transform + pos: 0.5,69.5 + parent: 1 + - uid: 16521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,68.5 + parent: 1 + - uid: 16522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,68.5 + parent: 1 + - uid: 16524 + components: + - type: Transform + pos: 0.5,67.5 + parent: 1 + - uid: 16525 + components: + - type: Transform + pos: 0.5,66.5 + parent: 1 + - uid: 16526 + components: + - type: Transform + pos: 0.5,65.5 + parent: 1 + - uid: 16527 + components: + - type: Transform + pos: 0.5,64.5 + parent: 1 + - uid: 16528 + components: + - type: Transform + pos: 0.5,63.5 + parent: 1 + - uid: 16529 + components: + - type: Transform + pos: 0.5,62.5 + parent: 1 + - uid: 16530 + components: + - type: Transform + pos: 0.5,61.5 + parent: 1 + - uid: 16531 + components: + - type: Transform + pos: 0.5,60.5 + parent: 1 + - uid: 16532 + components: + - type: Transform + pos: 0.5,59.5 + parent: 1 + - uid: 16533 + components: + - type: Transform + pos: 0.5,58.5 + parent: 1 + - uid: 16537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,57.5 + parent: 1 + - uid: 16538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,57.5 + parent: 1 + - uid: 16539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,57.5 + parent: 1 + - uid: 16540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,52.5 + parent: 1 + - uid: 16541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,52.5 + parent: 1 + - uid: 16542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,52.5 + parent: 1 + - uid: 16544 + components: + - type: Transform + pos: 0.5,56.5 + parent: 1 + - uid: 16545 + components: + - type: Transform + pos: 0.5,55.5 + parent: 1 + - uid: 16546 + components: + - type: Transform + pos: 0.5,54.5 + parent: 1 + - uid: 16547 + components: + - type: Transform + pos: 0.5,53.5 + parent: 1 + - uid: 16550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,53.5 + parent: 1 + - uid: 16551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,53.5 + parent: 1 + - uid: 16552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,53.5 + parent: 1 + - uid: 16553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,53.5 + parent: 1 + - uid: 16554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,53.5 + parent: 1 + - uid: 16555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,53.5 + parent: 1 + - uid: 16556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,53.5 + parent: 1 + - uid: 16557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,53.5 + parent: 1 + - uid: 16560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,52.5 + parent: 1 + - uid: 16561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,51.5 + parent: 1 + - uid: 16562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,50.5 + parent: 1 + - uid: 16563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,50.5 + parent: 1 + - uid: 16564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,50.5 + parent: 1 + - uid: 16565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,50.5 + parent: 1 + - uid: 16566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,50.5 + parent: 1 + - uid: 16567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,50.5 + parent: 1 + - uid: 16568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,50.5 + parent: 1 + - uid: 16569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,50.5 + parent: 1 + - uid: 16571 + components: + - type: Transform + pos: 0.5,51.5 + parent: 1 + - uid: 16572 + components: + - type: Transform + pos: 0.5,49.5 + parent: 1 + - uid: 16573 + components: + - type: Transform + pos: 0.5,48.5 + parent: 1 + - uid: 16574 + components: + - type: Transform + pos: 0.5,47.5 + parent: 1 + - uid: 16575 + components: + - type: Transform + pos: 0.5,46.5 + parent: 1 + - uid: 16576 + components: + - type: Transform + pos: 0.5,45.5 + parent: 1 + - uid: 16577 + components: + - type: Transform + pos: 0.5,44.5 + parent: 1 + - uid: 16578 + components: + - type: Transform + pos: 0.5,43.5 + parent: 1 + - uid: 16579 + components: + - type: Transform + pos: 0.5,42.5 + parent: 1 + - uid: 16580 + components: + - type: Transform + pos: 0.5,41.5 + parent: 1 + - uid: 16581 + components: + - type: Transform + pos: 0.5,40.5 + parent: 1 + - uid: 16582 + components: + - type: Transform + pos: 0.5,39.5 + parent: 1 + - uid: 16585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,38.5 + parent: 1 + - uid: 16586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,38.5 + parent: 1 + - uid: 16587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 1 + - uid: 16588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,38.5 + parent: 1 + - uid: 16589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,38.5 + parent: 1 + - uid: 16590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,38.5 + parent: 1 + - uid: 16591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,38.5 + parent: 1 + - uid: 16592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,38.5 + parent: 1 + - uid: 16593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,38.5 + parent: 1 + - uid: 16594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,38.5 + parent: 1 + - uid: 16595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,38.5 + parent: 1 + - uid: 16596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,38.5 + parent: 1 + - uid: 16597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,38.5 + parent: 1 + - uid: 16598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,38.5 + parent: 1 + - uid: 16599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,38.5 + parent: 1 + - uid: 16600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,38.5 + parent: 1 + - uid: 16601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,38.5 + parent: 1 + - uid: 16602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,38.5 + parent: 1 + - uid: 16605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,38.5 + parent: 1 + - uid: 16606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,38.5 + parent: 1 + - uid: 16607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,38.5 + parent: 1 + - uid: 16608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,38.5 + parent: 1 + - uid: 16615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,31.5 + parent: 1 + - uid: 16616 + components: + - type: Transform + pos: -18.5,32.5 + parent: 1 + - uid: 16617 + components: + - type: Transform + pos: -18.5,33.5 + parent: 1 + - uid: 16618 + components: + - type: Transform + pos: -18.5,34.5 + parent: 1 + - uid: 16619 + components: + - type: Transform + pos: -18.5,35.5 + parent: 1 + - uid: 16620 + components: + - type: Transform + pos: -18.5,36.5 + parent: 1 + - uid: 16621 + components: + - type: Transform + pos: -18.5,37.5 + parent: 1 + - uid: 16624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,37.5 + parent: 1 + - uid: 16625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,37.5 + parent: 1 + - uid: 16626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,37.5 + parent: 1 + - uid: 16627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,37.5 + parent: 1 + - uid: 16628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,37.5 + parent: 1 + - uid: 16629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,37.5 + parent: 1 + - uid: 16630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,37.5 + parent: 1 + - uid: 16631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,37.5 + parent: 1 + - uid: 16632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,37.5 + parent: 1 + - uid: 16633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,37.5 + parent: 1 + - uid: 16634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,37.5 + parent: 1 + - uid: 16635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,37.5 + parent: 1 + - uid: 16636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,37.5 + parent: 1 + - uid: 16637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,37.5 + parent: 1 + - uid: 16638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,37.5 + parent: 1 + - uid: 16639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,37.5 + parent: 1 + - uid: 16640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,37.5 + parent: 1 + - uid: 16641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,37.5 + parent: 1 + - uid: 16645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,42.5 + parent: 1 + - uid: 16646 + components: + - type: Transform + pos: -43.5,41.5 + parent: 1 + - uid: 16647 + components: + - type: Transform + pos: -43.5,40.5 + parent: 1 + - uid: 16648 + components: + - type: Transform + pos: -43.5,39.5 + parent: 1 + - uid: 16649 + components: + - type: Transform + pos: -43.5,38.5 + parent: 1 + - uid: 16650 + components: + - type: Transform + pos: -45.5,43.5 + parent: 1 + - uid: 16656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,23.5 + parent: 1 + - uid: 16658 + components: + - type: Transform + pos: -11.5,22.5 + parent: 1 + - uid: 16659 + components: + - type: Transform + pos: -11.5,21.5 + parent: 1 + - uid: 16660 + components: + - type: Transform + pos: -11.5,20.5 + parent: 1 + - uid: 16661 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1 + - uid: 16663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,18.5 + parent: 1 + - uid: 16664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,18.5 + parent: 1 + - uid: 16665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,18.5 + parent: 1 + - uid: 16666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,18.5 + parent: 1 + - uid: 16667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,18.5 + parent: 1 + - uid: 16668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,18.5 + parent: 1 + - uid: 16669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,18.5 + parent: 1 + - uid: 16670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,18.5 + parent: 1 + - uid: 16671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,18.5 + parent: 1 + - uid: 16672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,18.5 + parent: 1 + - uid: 16673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 1 + - uid: 16674 + components: + - type: Transform + pos: 0.5,36.5 + parent: 1 + - uid: 16675 + components: + - type: Transform + pos: 0.5,35.5 + parent: 1 + - uid: 16676 + components: + - type: Transform + pos: 0.5,34.5 + parent: 1 + - uid: 16677 + components: + - type: Transform + pos: 0.5,33.5 + parent: 1 + - uid: 16678 + components: + - type: Transform + pos: 0.5,32.5 + parent: 1 + - uid: 16679 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1 + - uid: 16680 + components: + - type: Transform + pos: 0.5,30.5 + parent: 1 + - uid: 16681 + components: + - type: Transform + pos: 0.5,29.5 + parent: 1 + - uid: 16682 + components: + - type: Transform + pos: 0.5,28.5 + parent: 1 + - uid: 16684 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1 + - uid: 16685 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1 + - uid: 16686 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1 + - uid: 16687 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1 + - uid: 16688 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1 + - uid: 16689 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 + - uid: 16690 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 + - uid: 16691 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 16696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,27.5 + parent: 1 + - uid: 16699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,37.5 + parent: 1 + - uid: 16700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,37.5 + parent: 1 + - uid: 16701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,37.5 + parent: 1 + - uid: 16703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,37.5 + parent: 1 + - uid: 16704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,37.5 + parent: 1 + - uid: 16705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,37.5 + parent: 1 + - uid: 16706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,37.5 + parent: 1 + - uid: 16707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,37.5 + parent: 1 + - uid: 16708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,37.5 + parent: 1 + - uid: 16709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,37.5 + parent: 1 + - uid: 16710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,37.5 + parent: 1 + - uid: 16711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,37.5 + parent: 1 + - uid: 16712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,37.5 + parent: 1 + - uid: 16713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,37.5 + parent: 1 + - uid: 16714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,37.5 + parent: 1 + - uid: 16715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,37.5 + parent: 1 + - uid: 16716 + components: + - type: Transform + pos: 14.5,46.5 + parent: 1 + - uid: 16717 + components: + - type: Transform + pos: 14.5,45.5 + parent: 1 + - uid: 16718 + components: + - type: Transform + pos: 14.5,44.5 + parent: 1 + - uid: 16719 + components: + - type: Transform + pos: 14.5,43.5 + parent: 1 + - uid: 16720 + components: + - type: Transform + pos: 14.5,42.5 + parent: 1 + - uid: 16721 + components: + - type: Transform + pos: 14.5,41.5 + parent: 1 + - uid: 16722 + components: + - type: Transform + pos: 14.5,40.5 + parent: 1 + - uid: 16723 + components: + - type: Transform + pos: 14.5,39.5 + parent: 1 + - uid: 16724 + components: + - type: Transform + pos: 14.5,38.5 + parent: 1 + - uid: 16726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,37.5 + parent: 1 + - uid: 16727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 1 + - uid: 16728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,37.5 + parent: 1 + - uid: 16729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,37.5 + parent: 1 + - uid: 16730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,37.5 + parent: 1 + - uid: 16731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,37.5 + parent: 1 + - uid: 16732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,37.5 + parent: 1 + - uid: 16733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,37.5 + parent: 1 + - uid: 16734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,37.5 + parent: 1 + - uid: 16735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,37.5 + parent: 1 + - uid: 16736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,37.5 + parent: 1 + - uid: 16737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,37.5 + parent: 1 + - uid: 16739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,38.5 + parent: 1 + - uid: 16740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,39.5 + parent: 1 + - uid: 16741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,40.5 + parent: 1 + - uid: 16742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,41.5 + parent: 1 + - uid: 16743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,42.5 + parent: 1 + - uid: 16745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,43.5 + parent: 1 + - uid: 16746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,43.5 + parent: 1 + - uid: 16747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,43.5 + parent: 1 + - uid: 16749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,37.5 + parent: 1 + - uid: 16751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,37.5 + parent: 1 + - uid: 16752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,37.5 + parent: 1 + - uid: 16753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,37.5 + parent: 1 + - uid: 16754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,37.5 + parent: 1 + - uid: 16755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,37.5 + parent: 1 + - uid: 16756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,37.5 + parent: 1 + - uid: 16757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,37.5 + parent: 1 + - uid: 16758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,37.5 + parent: 1 + - uid: 16759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,37.5 + parent: 1 + - uid: 16760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,37.5 + parent: 1 + - uid: 16761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,37.5 + parent: 1 + - uid: 16762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,37.5 + parent: 1 + - uid: 16763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,37.5 + parent: 1 + - uid: 16764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,37.5 + parent: 1 + - uid: 16765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,37.5 + parent: 1 + - uid: 16767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,38.5 + parent: 1 + - uid: 16768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,39.5 + parent: 1 + - uid: 16769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,40.5 + parent: 1 + - uid: 16770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,41.5 + parent: 1 + - uid: 16774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + - uid: 16775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + - uid: 16776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,17.5 + parent: 1 + - uid: 16777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + - uid: 16778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 1 + - uid: 16779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 1 + - uid: 16780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,17.5 + parent: 1 + - uid: 16781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,17.5 + parent: 1 + - uid: 16782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,17.5 + parent: 1 + - uid: 16783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 1 + - uid: 16784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 1 + - uid: 16785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 1 + - uid: 16786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,17.5 + parent: 1 + - uid: 16787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,17.5 + parent: 1 + - uid: 16789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,18.5 + parent: 1 + - uid: 16790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 1 + - uid: 16794 + components: + - type: Transform + pos: 7.5,33.5 + parent: 1 + - uid: 16795 + components: + - type: Transform + pos: 7.5,32.5 + parent: 1 + - uid: 16796 + components: + - type: Transform + pos: 7.5,31.5 + parent: 1 + - uid: 16797 + components: + - type: Transform + pos: 7.5,30.5 + parent: 1 + - uid: 16798 + components: + - type: Transform + pos: 7.5,29.5 + parent: 1 + - uid: 16801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1 + - uid: 16802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 1 + - uid: 16803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1 + - uid: 16804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 1 + - uid: 16805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,28.5 + parent: 1 + - uid: 16806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1 + - uid: 16807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,28.5 + parent: 1 + - uid: 16810 + components: + - type: Transform + pos: 11.5,27.5 + parent: 1 + - uid: 16811 + components: + - type: Transform + pos: 11.5,26.5 + parent: 1 + - uid: 16812 + components: + - type: Transform + pos: 11.5,25.5 + parent: 1 + - uid: 16813 + components: + - type: Transform + pos: 11.5,24.5 + parent: 1 + - uid: 16814 + components: + - type: Transform + pos: 11.5,23.5 + parent: 1 + - uid: 16815 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 + - uid: 16816 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1 + - uid: 16817 + components: + - type: Transform + pos: 11.5,20.5 + parent: 1 + - uid: 16818 + components: + - type: Transform + pos: 11.5,19.5 + parent: 1 + - uid: 16819 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1 + - uid: 16820 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 16823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + - uid: 16824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + - uid: 16826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,26.5 + parent: 1 + - uid: 16828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,26.5 + parent: 1 + - uid: 16829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,25.5 + parent: 1 + - uid: 16830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 1 + - uid: 16831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 1 + - uid: 16832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,22.5 + parent: 1 + - uid: 16834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,21.5 + parent: 1 + - uid: 16835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,21.5 + parent: 1 + - uid: 16837 + components: + - type: Transform + pos: 27.5,22.5 + parent: 1 + - uid: 16839 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1 + - uid: 16840 + components: + - type: Transform + pos: 30.5,19.5 + parent: 1 + - uid: 16841 + components: + - type: Transform + pos: 30.5,18.5 + parent: 1 + - uid: 16842 + components: + - type: Transform + pos: 30.5,17.5 + parent: 1 + - uid: 16843 + components: + - type: Transform + pos: 30.5,16.5 + parent: 1 + - uid: 16853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,13.5 + parent: 1 + - uid: 16854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,13.5 + parent: 1 + - uid: 16855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,13.5 + parent: 1 + - uid: 16856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,13.5 + parent: 1 + - uid: 16857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,13.5 + parent: 1 + - uid: 16858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,13.5 + parent: 1 + - uid: 16859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,13.5 + parent: 1 + - uid: 16860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,13.5 + parent: 1 + - uid: 16861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,13.5 + parent: 1 + - uid: 16862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,13.5 + parent: 1 + - uid: 16863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,13.5 + parent: 1 + - uid: 16864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 1 + - uid: 16865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,13.5 + parent: 1 + - uid: 16866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 1 + - uid: 16868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 1 + - uid: 16870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1 + - uid: 16871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 1 + - uid: 16872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,14.5 + parent: 1 + - uid: 16873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 1 + - uid: 16874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 1 + - uid: 16875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,14.5 + parent: 1 + - uid: 16876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 1 + - uid: 16877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 1 + - uid: 16878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 1 + - uid: 16879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,14.5 + parent: 1 + - uid: 16880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,14.5 + parent: 1 + - uid: 16881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,14.5 + parent: 1 + - uid: 16882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1 + - uid: 16883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1 + - uid: 16884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 1 + - uid: 16885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + - uid: 16886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1 + - uid: 16887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,14.5 + parent: 1 + - uid: 16888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 1 + - uid: 16889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,14.5 + parent: 1 + - uid: 16890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1 + - uid: 16891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + - uid: 16892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 + - uid: 16893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + - uid: 16894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1 + - uid: 16895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + - uid: 16896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + - uid: 16897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + - uid: 16900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + - uid: 16901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + - uid: 16902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + - uid: 16903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 + - uid: 16904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,14.5 + parent: 1 + - uid: 16905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 + - uid: 16906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 1 + - uid: 16907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,14.5 + parent: 1 + - uid: 16908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,14.5 + parent: 1 + - uid: 16909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,14.5 + parent: 1 + - uid: 16910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,14.5 + parent: 1 + - uid: 16911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,14.5 + parent: 1 + - uid: 16912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,14.5 + parent: 1 + - uid: 16913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,14.5 + parent: 1 + - uid: 16914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,14.5 + parent: 1 + - uid: 16915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,14.5 + parent: 1 + - uid: 16916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,14.5 + parent: 1 + - uid: 16917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,14.5 + parent: 1 + - uid: 16918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,14.5 + parent: 1 + - uid: 16919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,14.5 + parent: 1 + - uid: 16920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,14.5 + parent: 1 + - uid: 16923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,14.5 + parent: 1 + - uid: 16924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,14.5 + parent: 1 + - uid: 16925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,14.5 + parent: 1 + - uid: 16926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,14.5 + parent: 1 + - uid: 16927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,14.5 + parent: 1 + - uid: 16928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,14.5 + parent: 1 + - uid: 16929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,14.5 + parent: 1 + - uid: 16931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,14.5 + parent: 1 + - uid: 16932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,14.5 + parent: 1 + - uid: 16935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,13.5 + parent: 1 + - uid: 16936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,14.5 + parent: 1 + - uid: 16937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,14.5 + parent: 1 + - uid: 16938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,14.5 + parent: 1 + - uid: 16939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,14.5 + parent: 1 + - uid: 16940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,14.5 + parent: 1 + - uid: 16941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,14.5 + parent: 1 + - uid: 16942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,14.5 + parent: 1 + - uid: 16944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,14.5 + parent: 1 + - uid: 16945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,14.5 + parent: 1 + - uid: 16947 + components: + - type: Transform + pos: -34.5,15.5 + parent: 1 + - uid: 16949 + components: + - type: Transform + pos: -31.5,15.5 + parent: 1 + - uid: 16950 + components: + - type: Transform + pos: -31.5,16.5 + parent: 1 + - uid: 16951 + components: + - type: Transform + pos: -31.5,17.5 + parent: 1 + - uid: 16952 + components: + - type: Transform + pos: -31.5,18.5 + parent: 1 + - uid: 16953 + components: + - type: Transform + pos: -31.5,19.5 + parent: 1 + - uid: 16954 + components: + - type: Transform + pos: -31.5,20.5 + parent: 1 + - uid: 16955 + components: + - type: Transform + pos: -31.5,21.5 + parent: 1 + - uid: 16962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,23.5 + parent: 1 + - uid: 16963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,22.5 + parent: 1 + - uid: 16964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,21.5 + parent: 1 + - uid: 16965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,20.5 + parent: 1 + - uid: 16966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,19.5 + parent: 1 + - uid: 16967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,18.5 + parent: 1 + - uid: 16968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,17.5 + parent: 1 + - uid: 16969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,16.5 + parent: 1 + - uid: 16970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,15.5 + parent: 1 + - uid: 16976 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 16977 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 16978 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 16979 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 16980 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 16981 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 16982 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 16983 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 16984 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 16985 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 16986 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 16987 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 16988 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 16989 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 16990 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 16991 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 16992 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 16995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + - uid: 16996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + - uid: 16997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - uid: 16998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - uid: 16999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + - uid: 17000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + - uid: 17001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - uid: 17002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 17003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 17004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 17005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 17006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 17007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 17008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 17010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 17011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 17012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 17013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + - uid: 17014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 17015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + - uid: 17016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + - uid: 17017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + - uid: 17018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + - uid: 17019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + - uid: 17021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + - uid: 17028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 17029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 17030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 17031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 17032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 17036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 1 + - uid: 17037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-17.5 + parent: 1 + - uid: 17038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-16.5 + parent: 1 + - uid: 17039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-15.5 + parent: 1 + - uid: 17040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-14.5 + parent: 1 + - uid: 17041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-13.5 + parent: 1 + - uid: 17042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-12.5 + parent: 1 + - uid: 17043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-11.5 + parent: 1 + - uid: 17044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-10.5 + parent: 1 + - uid: 17045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 1 + - uid: 17047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-1.5 + parent: 1 + - uid: 17048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 1 + - uid: 17049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 1 + - uid: 17050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 1 + - uid: 17054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,2.5 + parent: 1 + - uid: 17055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,2.5 + parent: 1 + - uid: 17056 + components: + - type: Transform + pos: -35.5,3.5 + parent: 1 + - uid: 17057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,4.5 + parent: 1 + - uid: 17058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 1 + - uid: 17059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 1 + - uid: 17061 + components: + - type: Transform + pos: -31.5,3.5 + parent: 1 + - uid: 17062 + components: + - type: Transform + pos: -31.5,2.5 + parent: 1 + - uid: 17063 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1 + - uid: 17064 + components: + - type: Transform + pos: -31.5,0.5 + parent: 1 + - uid: 17065 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 1 + - uid: 17066 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 1 + - uid: 17067 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 1 + - uid: 17068 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 1 + - uid: 17069 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 1 + - uid: 17070 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 1 + - uid: 17071 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 1 + - uid: 17072 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 1 + - uid: 17074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 1 + - uid: 17076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 1 + - uid: 17077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 1 + - uid: 17078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 1 + - uid: 17079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 1 + - uid: 17080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 1 + - uid: 17081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 1 + - uid: 17082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 1 + - uid: 17083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 1 + - uid: 17084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-8.5 + parent: 1 + - uid: 17085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 1 + - uid: 17086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 1 + - uid: 17087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 1 + - uid: 17088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 1 + - uid: 17089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 1 + - uid: 17090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 1 + - uid: 17091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 1 + - uid: 17092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 1 + - uid: 17093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 1 + - uid: 17095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1 + - uid: 17096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 1 + - uid: 17097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 1 + - uid: 17099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-13.5 + parent: 1 + - uid: 17100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 1 + - uid: 17101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-11.5 + parent: 1 + - uid: 17102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 1 + - uid: 17103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-9.5 + parent: 1 + - uid: 17105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 1 + - uid: 17106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 + - uid: 17107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 1 + - uid: 17108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 1 + - uid: 17109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + - uid: 17110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + - uid: 17111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + - uid: 17112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + - uid: 17113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + - uid: 17114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 17115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 17116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 17118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 1 + - uid: 17119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 1 + - uid: 17120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 1 + - uid: 17121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 1 + - uid: 17122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 1 + - uid: 17123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 1 + - uid: 17124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + - uid: 17125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + - uid: 17126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + - uid: 17127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + - uid: 17128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + - uid: 17129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 1 + - uid: 17130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + - uid: 17131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 1 + - uid: 17133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 1 + - uid: 17134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 1 + - uid: 17136 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1 + - uid: 17138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 1 + - uid: 17139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 1 + - uid: 17140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 1 + - uid: 17141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 1 + - uid: 17142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 1 + - uid: 17144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 1 + - uid: 17146 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 17147 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 17148 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 1 + - uid: 17149 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 17151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 1 + - uid: 17152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 1 + - uid: 17153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 1 + - uid: 17154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 1 + - uid: 17156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 + parent: 1 + - uid: 17157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-8.5 + parent: 1 + - uid: 17158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 1 + - uid: 17159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 1 + - uid: 17160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 1 + - uid: 17161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 1 + - uid: 17162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 1 + - uid: 17163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 1 + - uid: 17164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 1 + - uid: 17165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 1 + - uid: 17166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 1 + - uid: 17167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-8.5 + parent: 1 + - uid: 17168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 1 + - uid: 17169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-8.5 + parent: 1 + - uid: 17170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-8.5 + parent: 1 + - uid: 17171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 1 + - uid: 17172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-8.5 + parent: 1 + - uid: 17173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-8.5 + parent: 1 + - uid: 17174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-8.5 + parent: 1 + - uid: 17176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-7.5 + parent: 1 + - uid: 17179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 1 + - uid: 17180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-6.5 + parent: 1 + - uid: 17181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-5.5 + parent: 1 + - uid: 17182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-4.5 + parent: 1 + - uid: 17183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-3.5 + parent: 1 + - uid: 17184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-2.5 + parent: 1 + - uid: 17185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 1 + - uid: 17186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-0.5 + parent: 1 + - uid: 17187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,0.5 + parent: 1 + - uid: 17188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,1.5 + parent: 1 + - uid: 17189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,2.5 + parent: 1 + - uid: 17190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,3.5 + parent: 1 + - uid: 17191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,4.5 + parent: 1 + - uid: 17192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 1 + - uid: 17193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,6.5 + parent: 1 + - uid: 17195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,7.5 + parent: 1 + - uid: 17197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-9.5 + parent: 1 + - uid: 17198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 1 + - uid: 17199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 1 + - uid: 17200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 1 + - uid: 17201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 1 + - uid: 17202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 1 + - uid: 17203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 1 + - uid: 17204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-16.5 + parent: 1 + - uid: 17205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-17.5 + parent: 1 + - uid: 17206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-18.5 + parent: 1 + - uid: 17207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 1 + - uid: 17208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-20.5 + parent: 1 + - uid: 17209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 1 + - uid: 17210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-22.5 + parent: 1 + - uid: 17211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-23.5 + parent: 1 + - uid: 17214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 1 + - uid: 17215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-25.5 + parent: 1 + - uid: 17216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-26.5 + parent: 1 + - uid: 17219 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1 + - uid: 17221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 1 + - uid: 17222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-29.5 + parent: 1 + - uid: 17223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 1 + - uid: 17224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-29.5 + parent: 1 + - uid: 17225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-29.5 + parent: 1 + - uid: 17227 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1 + - uid: 17228 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1 + - uid: 17229 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 1 + - uid: 17230 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1 + - uid: 17232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 1 + - uid: 17234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-33.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 1783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,24.5 + parent: 1 + - uid: 16491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,70.5 + parent: 1 + - uid: 16505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,76.5 + parent: 1 + - uid: 16523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,68.5 + parent: 1 + - uid: 16535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,57.5 + parent: 1 + - uid: 16548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,52.5 + parent: 1 + - uid: 16549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,53.5 + parent: 1 + - uid: 16611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,30.5 + parent: 1 + - uid: 16623 + components: + - type: Transform + pos: -24.5,38.5 + parent: 1 + - uid: 16651 + components: + - type: Transform + pos: -45.5,44.5 + parent: 1 + - uid: 16655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 1 + - uid: 16695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,27.5 + parent: 1 + - uid: 16697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,36.5 + parent: 1 + - uid: 16702 + components: + - type: Transform + pos: 14.5,47.5 + parent: 1 + - uid: 16748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,43.5 + parent: 1 + - uid: 16771 + components: + - type: Transform + pos: 48.5,42.5 + parent: 1 + - uid: 16791 + components: + - type: Transform + pos: 16.5,20.5 + parent: 1 + - uid: 16793 + components: + - type: Transform + pos: 7.5,34.5 + parent: 1 + - uid: 16809 + components: + - type: Transform + pos: 16.5,29.5 + parent: 1 + - uid: 16825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,26.5 + parent: 1 + - uid: 16838 + components: + - type: Transform + pos: 27.5,23.5 + parent: 1 + - uid: 16851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,12.5 + parent: 1 + - uid: 16921 + components: + - type: Transform + pos: -23.5,15.5 + parent: 1 + - uid: 16934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,12.5 + parent: 1 + - uid: 16948 + components: + - type: Transform + pos: -34.5,16.5 + parent: 1 + - uid: 16972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,22.5 + parent: 1 + - uid: 16994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 1 + - uid: 17009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 17022 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 17034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + - uid: 17035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-19.5 + parent: 1 + - uid: 17046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-2.5 + parent: 1 + - uid: 17073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 1 + - uid: 17094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 1 + - uid: 17117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 1 + - uid: 17137 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1 + - uid: 17143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 1 + - uid: 17177 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 1 + - uid: 17196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,7.5 + parent: 1 + - uid: 17235 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 1988 + components: + - type: Transform + pos: -36.5,24.5 + parent: 1 + - uid: 2033 + components: + - type: Transform + pos: 33.5,7.5 + parent: 1 + - uid: 4017 + components: + - type: Transform + pos: 4.5,52.5 + parent: 1 + - uid: 4082 + components: + - type: Transform + pos: 7.5,34.5 + parent: 1 + - uid: 4389 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 6403 + components: + - type: Transform + pos: 16.5,20.5 + parent: 1 + - uid: 6404 + components: + - type: Transform + pos: 16.5,29.5 + parent: 1 + - uid: 6949 + components: + - type: Transform + pos: 27.5,23.5 + parent: 1 + - uid: 8065 + components: + - type: Transform + pos: -7.5,76.5 + parent: 1 + - uid: 8087 + components: + - type: Transform + pos: 2.5,70.5 + parent: 1 + - uid: 8415 + components: + - type: Transform + pos: -45.5,44.5 + parent: 1 + - uid: 8453 + components: + - type: Transform + pos: -3.5,57.5 + parent: 1 + - uid: 8454 + components: + - type: Transform + pos: -2.5,68.5 + parent: 1 + - uid: 8666 + components: + - type: Transform + pos: -21.5,25.5 + parent: 1 + - uid: 8998 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 9097 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 9400 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 1 + - uid: 9433 + components: + - type: Transform + pos: 48.5,42.5 + parent: 1 + - uid: 9437 + components: + - type: Transform + pos: 27.5,26.5 + parent: 1 + - uid: 9441 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 1 + - uid: 9445 + components: + - type: Transform + pos: -30.5,22.5 + parent: 1 + - uid: 9452 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 9454 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 1 + - uid: 9455 + components: + - type: Transform + pos: 45.5,12.5 + parent: 1 + - uid: 9456 + components: + - type: Transform + pos: -45.5,12.5 + parent: 1 + - uid: 9459 + components: + - type: Transform + pos: 14.5,47.5 + parent: 1 + - uid: 9469 + components: + - type: Transform + pos: -34.5,16.5 + parent: 1 + - uid: 9488 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 9536 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 9565 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1 + - uid: 9566 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 1 + - uid: 9595 + components: + - type: Transform + pos: 18.5,36.5 + parent: 1 + - uid: 9597 + components: + - type: Transform + pos: -24.5,38.5 + parent: 1 + - uid: 9702 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 1 + - uid: 9878 + components: + - type: Transform + pos: -17.5,53.5 + parent: 1 + - uid: 9888 + components: + - type: Transform + pos: -23.5,15.5 + parent: 1 + - uid: 16610 + components: + - type: Transform + pos: -15.5,30.5 + parent: 1 + - uid: 16654 + components: + - type: Transform + pos: -9.5,23.5 + parent: 1 + - uid: 16692 + components: + - type: Transform + pos: -1.5,27.5 + parent: 1 + - uid: 16750 + components: + - type: Transform + pos: 27.5,43.5 + parent: 1 +- proto: DisposalYJunction + entities: + - uid: 16490 + components: + - type: Transform + pos: 0.5,76.5 + parent: 1 + - uid: 16799 + components: + - type: Transform + pos: 11.5,28.5 + parent: 1 + - uid: 16869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 1 + - uid: 17155 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 1 +- proto: DogBed + entities: + - uid: 6680 + components: + - type: Transform + pos: -28.5,6.5 + parent: 1 + - uid: 9216 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1 +- proto: DonkpocketBoxSpawner + entities: + - uid: 9142 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 1 +- proto: DoorElectronics + entities: + - uid: 9129 + components: + - type: Transform + pos: 13.305171,-24.81277 + parent: 1 + - uid: 9130 + components: + - type: Transform + pos: 13.409338,-24.958605 + parent: 1 +- proto: Dresser + entities: + - uid: 931 + components: + - type: Transform + pos: 26.5,53.5 + parent: 1 + - uid: 6503 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 1 + - uid: 6613 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 6614 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1 + - uid: 6615 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 6842 + components: + - type: Transform + pos: 46.5,46.5 + parent: 1 + - uid: 7026 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1 + - uid: 8409 + components: + - type: Transform + pos: 11.5,44.5 + parent: 1 + - uid: 10385 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 1 +- proto: DresserCaptainFilled + entities: + - uid: 8881 + components: + - type: Transform + pos: -7.5,72.5 + parent: 1 +- proto: DresserChiefEngineerFilled + entities: + - uid: 6705 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 1 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 1438 + components: + - type: Transform + pos: 16.5,31.5 + parent: 1 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 2488 + components: + - type: Transform + pos: 27.5,8.5 + parent: 1 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 3560 + components: + - type: Transform + pos: -14.5,60.5 + parent: 1 +- proto: DresserQuarterMasterFilled + entities: + - uid: 6918 + components: + - type: Transform + pos: -43.5,11.5 + parent: 1 +- proto: DresserResearchDirectorFilled + entities: + - uid: 8090 + components: + - type: Transform + pos: -24.5,19.5 + parent: 1 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 6616 + components: + - type: Transform + pos: -15.221133,5.7888036 + parent: 1 +- proto: DrinkBottleWine + entities: + - uid: 8367 + components: + - type: Transform + pos: 28.565235,49.837475 + parent: 1 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 8489 + components: + - type: Transform + pos: 16.144281,32.546616 + parent: 1 +- proto: DrinkDriestMartiniGlass + entities: + - uid: 17381 + components: + - type: Transform + pos: -47.28389,35.84451 + parent: 1 +- proto: DrinkFlask + entities: + - uid: 8074 + components: + - type: Transform + pos: -4.482217,79.8525 + parent: 1 +- proto: DrinkGlass + entities: + - uid: 4026 + components: + - type: Transform + pos: -0.59446716,-0.80342096 + parent: 1 + - uid: 8956 + components: + - type: Transform + pos: -12.645039,-3.25968 + parent: 1 + - uid: 9293 + components: + - type: Transform + pos: 12.67594,-1.3800613 + parent: 1 + - uid: 17296 + components: + - type: Transform + pos: -4.7264047,2.7601516 + parent: 1 +- proto: DrinkGoldenCup + entities: + - uid: 7258 + components: + - type: Transform + pos: 4.7445407,45.893764 + parent: 1 +- proto: DrinkIceCreamGlass + entities: + - uid: 9851 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 9844 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkLean + entities: + - uid: 9302 + components: + - type: Transform + pos: 8.309154,2.9839857 + parent: 1 +- proto: DrinkMilkCarton + entities: + - uid: 9299 + components: + - type: Transform + pos: 5.60893,1.827802 + parent: 1 +- proto: DrinkMug + entities: + - uid: 8281 + components: + - type: Transform + pos: -28.63788,44.586548 + parent: 1 + - uid: 8282 + components: + - type: Transform + pos: -28.353905,44.3453 + parent: 1 +- proto: DrinkMugBlue + entities: + - uid: 8719 + components: + - type: Transform + pos: -10.5935335,-15.327366 + parent: 1 + - uid: 9208 + components: + - type: Transform + pos: 2.5492742,71.47509 + parent: 1 +- proto: DrinkMugDog + entities: + - uid: 8590 + components: + - type: Transform + pos: -26.584906,6.5633206 + parent: 1 + - uid: 9091 + components: + - type: Transform + pos: 4.278154,-33.29549 + parent: 1 +- proto: DrinkMugHeart + entities: + - uid: 8720 + components: + - type: Transform + pos: -10.394751,-15.49766 + parent: 1 +- proto: DrinkMugMetal + entities: + - uid: 9092 + components: + - type: Transform + pos: 4.507321,-33.378826 + parent: 1 +- proto: DrinkMugMoebius + entities: + - uid: 8444 + components: + - type: Transform + pos: 5.3876348,57.690006 + parent: 1 + - uid: 9334 + components: + - type: Transform + pos: -43.366463,7.49686 + parent: 1 +- proto: DrinkMugOne + entities: + - uid: 9207 + components: + - type: Transform + pos: 2.4034402,71.704254 + parent: 1 +- proto: DrinkMugRainbow + entities: + - uid: 8670 + components: + - type: Transform + pos: -6.3873754,21.667553 + parent: 1 +- proto: DrinkOatMilkCarton + entities: + - uid: 9297 + components: + - type: Transform + pos: 5.35893,2.077802 + parent: 1 +- proto: DrinkRumBottleFull + entities: + - uid: 8362 + components: + - type: Transform + pos: 43.673214,51.17009 + parent: 1 +- proto: DrinkShaker + entities: + - uid: 17299 + components: + - type: Transform + pos: -10.796385,6.7194715 + parent: 1 + - uid: 17300 + components: + - type: Transform + pos: -10.6047,6.421458 + parent: 1 +- proto: DrinkShotGlass + entities: + - uid: 3187 + components: + - type: Transform + pos: 46.64082,46.78565 + parent: 1 + - uid: 13314 + components: + - type: Transform + pos: -28.208918,3.5744889 + parent: 1 + - uid: 17302 + components: + - type: Transform + pos: -11.013691,6.5249143 + parent: 1 +- proto: DrinkSoyMilkCarton + entities: + - uid: 9298 + components: + - type: Transform + pos: 5.504763,1.973635 + parent: 1 +- proto: DrinkWaterCup + entities: + - uid: 6951 + components: + - type: Transform + pos: 25.367998,22.514523 + parent: 1 + - uid: 6952 + components: + - type: Transform + pos: 25.48159,22.429377 + parent: 1 + - uid: 8442 + components: + - type: Transform + pos: 5.5438213,57.47714 + parent: 1 + - uid: 8443 + components: + - type: Transform + pos: 5.67161,57.67581 + parent: 1 + - uid: 9632 + components: + - type: Transform + pos: -42.65752,-7.2487845 + parent: 1 + - uid: 9633 + components: + - type: Transform + pos: -42.641895,-7.3894095 + parent: 1 +- proto: DrinkWineGlass + entities: + - uid: 8368 + components: + - type: Transform + pos: 28.820814,49.62461 + parent: 1 + - uid: 8369 + components: + - type: Transform + pos: 28.991198,49.88005 + parent: 1 +- proto: Dropper + entities: + - uid: 8535 + components: + - type: Transform + pos: 6.6016774,22.699707 + parent: 1 + - uid: 8536 + components: + - type: Transform + pos: 6.6584716,22.543604 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 11340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11341 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11342 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11343 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,13.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,2.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11346 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11348 + components: + - type: Transform + pos: -18.5,15.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,13.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11354 + components: + - type: Transform + pos: 12.5,38.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11355 + components: + - type: Transform + pos: -8.5,38.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,26.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,26.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,40.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,36.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11360 + components: + - type: Transform + pos: -2.5,57.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,50.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11362 + components: + - type: Transform + pos: -33.5,49.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11363 + components: + - type: Transform + pos: -7.5,64.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11364 + components: + - type: Transform + pos: 11.5,61.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,72.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,70.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11370 + components: + - type: Transform + pos: -16.5,25.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,30.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11372 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,46.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 11374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,36.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13994 + components: + - type: Transform + pos: -0.5,68.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,26.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,78.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 14219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,78.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,43.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18157 + components: + - type: Transform + pos: -20.5,38.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,19.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,7.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18160 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18161 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18162 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,4.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,33.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18166 + components: + - type: Transform + pos: 35.5,38.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,41.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,44.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18169 + components: + - type: Transform + pos: -0.5,83.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 18170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,54.5 + parent: 1 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 8558 + components: + - type: Transform + pos: 16.430817,18.544188 + parent: 1 +- proto: Emitter + entities: + - uid: 9187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 +- proto: EncryptionKeyCargo + entities: + - uid: 6461 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 4703 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 8436 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 7316 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 3730 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 3729 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 4349 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 3982 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 3587 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 3583 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 18435 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 18434 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 4569 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 4391 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 18447 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 18446 + - type: Physics + canCollide: False +- proto: ExosuitFabricator + entities: + - uid: 2604 + components: + - type: Transform + pos: -16.5,30.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 5532 + components: + - type: Transform + pos: -37.5,0.5 + parent: 1 + - uid: 18367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-35.5 + parent: 1 + - uid: 18368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1 + - uid: 18369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 1 + - uid: 18370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 1 + - uid: 18371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 1 + - uid: 18372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-10.5 + parent: 1 + - uid: 18374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,7.5 + parent: 1 + - uid: 18375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,16.5 + parent: 1 + - uid: 18376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,17.5 + parent: 1 + - uid: 18377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,42.5 + parent: 1 + - uid: 18378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,35.5 + parent: 1 + - uid: 18379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,39.5 + parent: 1 + - uid: 18380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 1 + - uid: 18381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + - uid: 18382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 1 + - uid: 18383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 1 + - uid: 18384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 1 + - uid: 18386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,12.5 + parent: 1 + - uid: 18387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,24.5 + parent: 1 + - uid: 18388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,20.5 + parent: 1 + - uid: 18389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,34.5 + parent: 1 + - uid: 18390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,39.5 + parent: 1 + - uid: 18391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,33.5 + parent: 1 + - uid: 18392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,39.5 + parent: 1 + - uid: 18393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,51.5 + parent: 1 + - uid: 18394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,54.5 + parent: 1 + - uid: 18395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,65.5 + parent: 1 + - uid: 18396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,53.5 + parent: 1 + - uid: 18397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,58.5 + parent: 1 + - uid: 18398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,46.5 + parent: 1 + - uid: 18399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,7.5 + parent: 1 + - uid: 18400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + - uid: 18401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 1 + - uid: 18402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 1 + - uid: 18404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,21.5 + parent: 1 + - uid: 18405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1 + - uid: 18406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,29.5 + parent: 1 + - uid: 18407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,75.5 + parent: 1 + - uid: 18408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,83.5 + parent: 1 + - uid: 18409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,30.5 + parent: 1 + - uid: 18410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 1 + - uid: 18411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 1 + - uid: 18412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,12.5 + parent: 1 + - uid: 18413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 1 +- proto: FaxMachineBase + entities: + - uid: 4346 + components: + - type: Transform + pos: -34.5,9.5 + parent: 1 + - type: FaxMachine + name: Mail Room + - uid: 6676 + components: + - type: Transform + pos: -28.5,7.5 + parent: 1 + - type: FaxMachine + name: Library + - uid: 6847 + components: + - type: Transform + pos: 40.5,46.5 + parent: 1 + - uid: 7283 + components: + - type: Transform + pos: 5.5,64.5 + parent: 1 + - type: FaxMachine + name: Lawyer's Office + - uid: 8230 + components: + - type: Transform + pos: -19.5,53.5 + parent: 1 + - type: FaxMachine + name: Security + - uid: 8284 + components: + - type: Transform + pos: -28.5,43.5 + parent: 1 + - type: FaxMachine + name: Perma + - uid: 8552 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - type: FaxMachine + name: Medical + - uid: 8697 + components: + - type: Transform + pos: -9.5,28.5 + parent: 1 + - type: FaxMachine + name: Science + - uid: 9177 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - type: FaxMachine + name: Engineering + - uid: 9226 + components: + - type: Transform + pos: 24.5,4.5 + parent: 1 + - type: FaxMachine + name: HoP's Office + - uid: 17613 + components: + - type: Transform + pos: 5.5,73.5 + parent: 1 + - type: FaxMachine + name: Bridge + - uid: 18175 + components: + - type: Transform + pos: 0.5,3.5 + parent: 8756 + - type: FaxMachine + name: Captain's Private Shuttle +- proto: FaxMachineCaptain + entities: + - uid: 6800 + components: + - type: Transform + pos: -8.5,74.5 + parent: 1 +- proto: FigureSpawner + entities: + - uid: 9924 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 1 + - uid: 9925 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 1 + - uid: 9926 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 1 +- proto: filingCabinet + entities: + - uid: 6844 + components: + - type: Transform + pos: 41.5,46.5 + parent: 1 +- proto: filingCabinetTall + entities: + - uid: 8438 + components: + - type: Transform + pos: 2.5,62.5 + parent: 1 +- proto: filingCabinetTallRandom + entities: + - uid: 3166 + components: + - type: Transform + pos: -34.5,11.5 + parent: 1 +- proto: FireAlarm + entities: + - uid: 8155 + components: + - type: Transform + pos: -40.5,29.5 + parent: 1 + - type: DeviceList + devices: + - 7827 + - 7913 + - 7922 + - 8154 + - 7812 + - type: AtmosDevice + joinedGrid: 1 + - uid: 9150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + - type: DeviceList + devices: + - 5769 + - 5770 + - 5771 + - 5772 + - 8926 + - 5783 + - 5784 + - 5785 + - 9048 + - 5760 + - 5759 + - 5758 + - 5757 + - 5779 + - 5780 + - 5781 + - 5778 + - 5777 + - 5776 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,75.5 + parent: 1 + - type: DeviceList + devices: + - 6125 + - 6124 + - 6122 + - 6123 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17333 + components: + - type: Transform + pos: 7.5,75.5 + parent: 1 + - type: DeviceList + devices: + - 6125 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,70.5 + parent: 1 + - type: DeviceList + devices: + - 6120 + - 6121 + - 6123 + - 6122 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,66.5 + parent: 1 + - type: DeviceList + devices: + - 6121 + - 6120 + - 6127 + - 6128 + - 6126 + - 6115 + - 6114 + - 6113 + - 6129 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,62.5 + parent: 1 + - type: DeviceList + devices: + - 6129 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,51.5 + parent: 1 + - type: DeviceList + devices: + - 6119 + - 6118 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17348 + components: + - type: Transform + pos: -3.5,58.5 + parent: 1 + - type: DeviceList + devices: + - 6113 + - 6114 + - 6115 + - 6110 + - 6111 + - 6112 + - 6119 + - 6118 + - 6116 + - 6117 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,43.5 + parent: 1 + - type: DeviceList + devices: + - 6130 + - 6131 + - 6110 + - 6111 + - 6112 + - 6133 + - 6132 + - 5635 + - 5636 + - 5637 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,54.5 + parent: 1 + - type: DeviceList + devices: + - 6116 + - 6117 + - 17363 + - 17362 + - 17364 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17367 + components: + - type: Transform + pos: -15.5,47.5 + parent: 1 + - type: DeviceList + devices: + - 17368 + - 17369 + - 17370 + - 17371 + - 6130 + - 6131 + - 1324 + - 1323 + - 1317 + - 1316 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17374 + components: + - type: Transform + pos: -32.5,50.5 + parent: 1 + - type: DeviceList + devices: + - 7022 + - 7023 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17377 + components: + - type: Transform + pos: -46.5,45.5 + parent: 1 + - type: DeviceList + devices: + - 7898 + - 7899 + - 7894 + - 7895 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17385 + components: + - type: Transform + pos: -39.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 7898 + - 7899 + - 7894 + - 7895 + - 5835 + - 5833 + - 5834 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17388 + components: + - type: Transform + pos: -20.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 5632 + - 5633 + - 5634 + - 5839 + - 5840 + - 5841 + - 6138 + - 6136 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,35.5 + parent: 1 + - type: DeviceList + devices: + - 9591 + - 9590 + - 9589 + - 5633 + - 5632 + - 5634 + - 6134 + - 6135 + - 6137 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17397 + components: + - type: Transform + pos: -5.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 5644 + - 5645 + - 5646 + - 5640 + - 5639 + - 5638 + - 5637 + - 5636 + - 5635 + - 9591 + - 9590 + - 9589 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,35.5 + parent: 1 + - type: DeviceList + devices: + - 5631 + - 5630 + - 5629 + - 5688 + - 5689 + - 5690 + - 5691 + - 5687 + - 5686 + - 7267 + - 7268 + - 5708 + - 5709 + - 5710 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,41.5 + parent: 1 + - type: DeviceList + devices: + - 5686 + - 5687 + - 5689 + - 5688 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,40.5 + parent: 1 + - type: DeviceList + devices: + - 5691 + - 5690 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,41.5 + parent: 1 + - type: DeviceList + devices: + - 5700 + - 5699 + - 5698 + - 5697 + - 5708 + - 5709 + - 5710 + - 5711 + - 5712 + - 5692 + - 5693 + - 5694 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,45.5 + parent: 1 + - type: DeviceList + devices: + - 5712 + - 5711 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17411 + components: + - type: Transform + pos: 35.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 5694 + - 5693 + - 5692 + - 5700 + - 5699 + - 5698 + - 5697 + - 5708 + - 5709 + - 5710 + - 5711 + - 5712 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,35.5 + parent: 1 + - type: DeviceList + devices: + - 5692 + - 5693 + - 5694 + - 6344 + - 6345 + - 6346 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,25.5 + parent: 1 + - type: DeviceList + devices: + - 5704 + - 5703 + - 5702 + - 5701 + - 5725 + - 5726 + - 5727 + - 7269 + - 17420 + - 5697 + - 5698 + - 5699 + - 5700 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17423 + components: + - type: Transform + pos: 25.5,23.5 + parent: 1 + - type: DeviceList + devices: + - 5727 + - 5726 + - 5725 + - 5724 + - 5723 + - 5722 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 1 + - type: DeviceList + devices: + - 5722 + - 5723 + - 5724 + - 5685 + - 5684 + - 5683 + - 5701 + - 5702 + - 5703 + - 5704 + - 5719 + - 5720 + - 5721 + - 5717 + - 5716 + - 5715 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,12.5 + parent: 1 + - type: DeviceList + devices: + - 5717 + - 5716 + - 5715 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17432 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1 + - type: DeviceList + devices: + - 5683 + - 5684 + - 5685 + - 5623 + - 5624 + - 5625 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,12.5 + parent: 1 + - type: DeviceList + devices: + - 5623 + - 5624 + - 5625 + - 5663 + - 5662 + - 5661 + - 5772 + - 5771 + - 5769 + - 5620 + - 5621 + - 5622 + - 5655 + - 5654 + - 5653 + - 5658 + - 5659 + - 5660 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17436 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1 + - type: DeviceList + devices: + - 5623 + - 5624 + - 5625 + - 5663 + - 5662 + - 5661 + - 5772 + - 5771 + - 5769 + - 5620 + - 5621 + - 5622 + - 5655 + - 5654 + - 5653 + - 5658 + - 5659 + - 5660 + - 18237 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 1 + - type: DeviceList + devices: + - 5657 + - 5656 + - 4341 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,23.5 + parent: 1 + - type: DeviceList + devices: + - 6363 + - 4341 + - 4344 + - 4338 + - 4340 + - 6364 + - 4343 + - 6365 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,31.5 + parent: 1 + - type: DeviceList + devices: + - 6138 + - 6134 + - 6135 + - 6137 + - 6363 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,29.5 + parent: 1 + - type: DeviceList + devices: + - 17449 + - 6365 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17451 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - type: DeviceList + devices: + - 6399 + - 6400 + - 6398 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 1 + - type: DeviceList + devices: + - 6398 + - 6391 + - 6392 + - 6396 + - 6394 + - 6395 + - 6393 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,25.5 + parent: 1 + - type: DeviceList + devices: + - 5667 + - 5668 + - 6392 + - 6391 + - 6393 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,25.5 + parent: 1 + - type: DeviceList + devices: + - 5638 + - 5639 + - 5640 + - 5648 + - 5651 + - 5652 + - 5658 + - 5659 + - 5660 + - 5664 + - 5665 + - 5666 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17471 + components: + - type: Transform + pos: -26.5,16.5 + parent: 1 + - type: DeviceList + devices: + - 5620 + - 5621 + - 5622 + - 5673 + - 5672 + - 5671 + - 5670 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 5670 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,32.5 + parent: 1 + - type: DeviceList + devices: + - 5677 + - 5678 + - 5679 + - 5838 + - 5837 + - 5836 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,18.5 + parent: 1 + - type: DeviceList + devices: + - 5832 + - 5831 + - 7827 + - 7913 + - 7922 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,12.5 + parent: 1 + - type: DeviceList + devices: + - 5674 + - 5675 + - 5676 + - 5824 + - 5832 + - 5831 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 5824 + - 5826 + - 5822 + - 5821 + - 5823 + - 6650 + - 6667 + - 6656 + - 5825 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17496 + components: + - type: Transform + pos: -34.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 5817 + - 5818 + - 5819 + - 5820 + - 5823 + - 5822 + - 5821 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 1 + - type: DeviceList + devices: + - 5808 + - 5810 + - 5809 + - 5820 + - 5819 + - 5818 + - 5817 + - 5670 + - 5680 + - 5681 + - 5682 + - 6649 + - 6666 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17500 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 9431 + - 9430 + - 9429 + - 5809 + - 5810 + - 5808 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17503 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 9429 + - 9430 + - 9431 + - 5619 + - 800 + - 797 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 1 + - type: DeviceList + devices: + - 797 + - 800 + - 5619 + - 5765 + - 5766 + - 5746 + - 5747 + - 5748 + - 5757 + - 5758 + - 5759 + - 5760 + - 5749 + - 5750 + - 5753 + - 5754 + - 5755 + - 5756 + - 5628 + - 5627 + - 5626 + - 5768 + - 5767 + - 5789 + - 5788 + - 5787 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17508 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 797 + - 800 + - 5619 + - 5765 + - 5766 + - 5746 + - 5747 + - 5748 + - 5757 + - 5758 + - 5759 + - 5760 + - 5749 + - 5750 + - 5753 + - 5754 + - 5755 + - 5756 + - 5628 + - 5627 + - 5626 + - 5768 + - 5767 + - 5789 + - 5788 + - 5787 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 1 + - type: DeviceList + devices: + - 5746 + - 5747 + - 5748 + - 5749 + - 5750 + - 5753 + - 5754 + - 5755 + - 5756 + - 5763 + - 5764 + - 5761 + - 5762 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 5789 + - 5788 + - 5787 + - 9048 + - 5785 + - 5784 + - 5783 + - 9014 + - 9013 + - 9049 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 8926 + - 9014 + - 9013 + - 9049 + - 18237 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 5791 + - 5790 + - 5792 + - 17520 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 1 + - type: DeviceList + devices: + - 5719 + - 5720 + - 5721 + - 17520 + - 5792 + - 5790 + - 5807 + - 5806 + - 5805 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 5719 + - 5720 + - 5721 + - 17520 + - 5792 + - 5790 + - 5807 + - 5806 + - 5805 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-10.5 + parent: 1 + - type: DeviceList + devices: + - 5800 + - 5799 + - 5798 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 1 + - type: DeviceList + devices: + - 5800 + - 5799 + - 5798 + - 5807 + - 5806 + - 5805 + - 5793 + - 3584 + - 5795 + - 5796 + - 5797 + - 5801 + - 5802 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17531 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 5628 + - 5627 + - 5626 + - 5795 + - 5796 + - 5797 + - 3458 + - 17533 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-16.5 + parent: 1 + - type: DeviceList + devices: + - 5766 + - 5765 + - 5763 + - 5764 + - 7107 + - 7106 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17537 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 1 + - type: DeviceList + devices: + - 7106 + - 7108 + - 7109 + - 7166 + - 7173 + - 7174 + - 7175 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 1 + - type: DeviceList + devices: + - 7170 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-16.5 + parent: 1 + - type: DeviceList + devices: + - 5767 + - 5768 + - 5761 + - 5762 + - 7171 + - 7172 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 1 + - type: DeviceList + devices: + - 7261 + - 7172 + - 7171 + - 7170 + - 7169 + - 9028 + - 9030 + - 9029 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 1 + - type: DeviceList + devices: + - 9029 + - 9030 + - 9028 + - 7168 + - 7167 + - 7164 + - 7165 + - 7161 + - 7162 + - 7163 + - type: AtmosDevice + joinedGrid: 1 +- proto: FireAlarmElectronics + entities: + - uid: 9131 + components: + - type: Transform + pos: 13.701005,-25.229437 + parent: 1 +- proto: FireAxeCabinetFilled + entities: + - uid: 9205 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 1 + - uid: 9206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,81.5 + parent: 1 +- proto: FireExtinguisher + entities: + - uid: 7125 + components: + - type: Transform + pos: -13.517798,27.785059 + parent: 1 +- proto: Firelock + entities: + - uid: 5867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,66.5 + parent: 1 + - uid: 5896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,55.5 + parent: 1 + - uid: 5897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,55.5 + parent: 1 + - uid: 5900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,55.5 + parent: 1 + - uid: 7166 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 1 + - uid: 7173 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 1 + - uid: 7174 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 1 + - uid: 7175 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 1 + - uid: 7202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,50.5 + parent: 1 + - uid: 7261 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 1 + - uid: 7317 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1 + - uid: 7318 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 1 + - uid: 10067 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 1 + - uid: 13464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,52.5 + parent: 1 + - uid: 13465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,57.5 + parent: 1 + - uid: 17331 + components: + - type: Transform + pos: -8.5,71.5 + parent: 1 + - uid: 17533 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 1 +- proto: FirelockEdge + entities: + - uid: 1316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,46.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,46.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,46.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,46.5 + parent: 1 + - uid: 2817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-23.5 + parent: 1 + - uid: 2818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 1 + - uid: 2820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 1 + - uid: 2825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 1 + - uid: 2826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-37.5 + parent: 1 + - uid: 2827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-36.5 + parent: 1 + - uid: 2828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 1 + - uid: 3030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-33.5 + parent: 1 + - uid: 3031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-31.5 + parent: 1 + - uid: 3032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-32.5 + parent: 1 + - uid: 3033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-34.5 + parent: 1 + - uid: 7812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,27.5 + parent: 1 + - uid: 8154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,28.5 + parent: 1 +- proto: FirelockElectronics + entities: + - uid: 9132 + components: + - type: Transform + pos: 13.367671,-25.458605 + parent: 1 + - uid: 9133 + components: + - type: Transform + pos: 13.263505,-25.166937 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 157 + components: + - type: Transform + pos: -23.5,12.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 1 + - uid: 2621 + components: + - type: Transform + pos: 17.5,27.5 + parent: 1 + - uid: 2643 + components: + - type: Transform + pos: 12.5,21.5 + parent: 1 + - uid: 3458 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1 + - uid: 3584 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 1 + - uid: 4163 + components: + - type: Transform + pos: -39.5,12.5 + parent: 1 + - uid: 4338 + components: + - type: Transform + pos: -19.5,18.5 + parent: 1 + - uid: 4340 + components: + - type: Transform + pos: -22.5,23.5 + parent: 1 + - uid: 4341 + components: + - type: Transform + pos: -8.5,22.5 + parent: 1 + - uid: 4343 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1 + - uid: 4344 + components: + - type: Transform + pos: -19.5,19.5 + parent: 1 + - uid: 5619 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 1 + - uid: 5620 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1 + - uid: 5621 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 5622 + components: + - type: Transform + pos: -13.5,15.5 + parent: 1 + - uid: 5623 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 5624 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 5625 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 + - uid: 5626 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 + - uid: 5627 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1 + - uid: 5628 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - uid: 5629 + components: + - type: Transform + pos: 13.5,36.5 + parent: 1 + - uid: 5630 + components: + - type: Transform + pos: 13.5,37.5 + parent: 1 + - uid: 5631 + components: + - type: Transform + pos: 13.5,38.5 + parent: 1 + - uid: 5632 + components: + - type: Transform + pos: -17.5,38.5 + parent: 1 + - uid: 5633 + components: + - type: Transform + pos: -17.5,37.5 + parent: 1 + - uid: 5634 + components: + - type: Transform + pos: -17.5,36.5 + parent: 1 + - uid: 5635 + components: + - type: Transform + pos: -1.5,39.5 + parent: 1 + - uid: 5636 + components: + - type: Transform + pos: -0.5,39.5 + parent: 1 + - uid: 5637 + components: + - type: Transform + pos: 0.5,39.5 + parent: 1 + - uid: 5638 + components: + - type: Transform + pos: -1.5,35.5 + parent: 1 + - uid: 5639 + components: + - type: Transform + pos: -0.5,35.5 + parent: 1 + - uid: 5640 + components: + - type: Transform + pos: 0.5,35.5 + parent: 1 + - uid: 5644 + components: + - type: Transform + pos: 8.5,36.5 + parent: 1 + - uid: 5645 + components: + - type: Transform + pos: 8.5,37.5 + parent: 1 + - uid: 5646 + components: + - type: Transform + pos: 8.5,38.5 + parent: 1 + - uid: 5648 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1 + - uid: 5651 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1 + - uid: 5652 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 5653 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 5654 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1 + - uid: 5655 + components: + - type: Transform + pos: -5.5,16.5 + parent: 1 + - uid: 5656 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1 + - uid: 5657 + components: + - type: Transform + pos: -4.5,20.5 + parent: 1 + - uid: 5658 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 5659 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 5660 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 5661 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 5662 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 5663 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 5664 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1 + - uid: 5665 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 5666 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1 + - uid: 5667 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 5668 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 5670 + components: + - type: Transform + pos: -29.5,10.5 + parent: 1 + - uid: 5671 + components: + - type: Transform + pos: -29.5,13.5 + parent: 1 + - uid: 5672 + components: + - type: Transform + pos: -29.5,14.5 + parent: 1 + - uid: 5673 + components: + - type: Transform + pos: -29.5,15.5 + parent: 1 + - uid: 5674 + components: + - type: Transform + pos: -33.5,13.5 + parent: 1 + - uid: 5675 + components: + - type: Transform + pos: -33.5,14.5 + parent: 1 + - uid: 5676 + components: + - type: Transform + pos: -33.5,15.5 + parent: 1 + - uid: 5677 + components: + - type: Transform + pos: -32.5,16.5 + parent: 1 + - uid: 5678 + components: + - type: Transform + pos: -31.5,16.5 + parent: 1 + - uid: 5679 + components: + - type: Transform + pos: -30.5,16.5 + parent: 1 + - uid: 5680 + components: + - type: Transform + pos: -32.5,12.5 + parent: 1 + - uid: 5681 + components: + - type: Transform + pos: -31.5,12.5 + parent: 1 + - uid: 5682 + components: + - type: Transform + pos: -30.5,12.5 + parent: 1 + - uid: 5683 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 5684 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 5685 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 5686 + components: + - type: Transform + pos: 23.5,39.5 + parent: 1 + - uid: 5687 + components: + - type: Transform + pos: 22.5,39.5 + parent: 1 + - uid: 5688 + components: + - type: Transform + pos: 17.5,39.5 + parent: 1 + - uid: 5689 + components: + - type: Transform + pos: 18.5,39.5 + parent: 1 + - uid: 5690 + components: + - type: Transform + pos: 14.5,39.5 + parent: 1 + - uid: 5691 + components: + - type: Transform + pos: 15.5,39.5 + parent: 1 + - uid: 5692 + components: + - type: Transform + pos: 38.5,36.5 + parent: 1 + - uid: 5693 + components: + - type: Transform + pos: 38.5,37.5 + parent: 1 + - uid: 5694 + components: + - type: Transform + pos: 38.5,38.5 + parent: 1 + - uid: 5697 + components: + - type: Transform + pos: 29.5,35.5 + parent: 1 + - uid: 5698 + components: + - type: Transform + pos: 30.5,35.5 + parent: 1 + - uid: 5699 + components: + - type: Transform + pos: 31.5,35.5 + parent: 1 + - uid: 5700 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1 + - uid: 5701 + components: + - type: Transform + pos: 29.5,16.5 + parent: 1 + - uid: 5702 + components: + - type: Transform + pos: 30.5,16.5 + parent: 1 + - uid: 5703 + components: + - type: Transform + pos: 31.5,16.5 + parent: 1 + - uid: 5704 + components: + - type: Transform + pos: 32.5,16.5 + parent: 1 + - uid: 5708 + components: + - type: Transform + pos: 28.5,36.5 + parent: 1 + - uid: 5709 + components: + - type: Transform + pos: 28.5,37.5 + parent: 1 + - uid: 5710 + components: + - type: Transform + pos: 28.5,38.5 + parent: 1 + - uid: 5711 + components: + - type: Transform + pos: 30.5,42.5 + parent: 1 + - uid: 5712 + components: + - type: Transform + pos: 31.5,42.5 + parent: 1 + - uid: 5713 + components: + - type: Transform + pos: 30.5,50.5 + parent: 1 + - uid: 5714 + components: + - type: Transform + pos: 31.5,50.5 + parent: 1 + - uid: 5715 + components: + - type: Transform + pos: 38.5,15.5 + parent: 1 + - uid: 5716 + components: + - type: Transform + pos: 38.5,14.5 + parent: 1 + - uid: 5717 + components: + - type: Transform + pos: 38.5,13.5 + parent: 1 + - uid: 5719 + components: + - type: Transform + pos: 30.5,12.5 + parent: 1 + - uid: 5720 + components: + - type: Transform + pos: 31.5,12.5 + parent: 1 + - uid: 5721 + components: + - type: Transform + pos: 32.5,12.5 + parent: 1 + - uid: 5722 + components: + - type: Transform + pos: 23.5,16.5 + parent: 1 + - uid: 5723 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1 + - uid: 5724 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1 + - uid: 5725 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1 + - uid: 5726 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1 + - uid: 5727 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1 + - uid: 5746 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - uid: 5747 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 + - uid: 5748 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - uid: 5749 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 5750 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 5753 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 5754 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 5755 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 5756 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 5757 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 5758 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 5759 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 5760 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 5761 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 5762 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 5763 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 1 + - uid: 5764 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 1 + - uid: 5765 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 1 + - uid: 5766 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 1 + - uid: 5767 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 5768 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 5769 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 5770 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 5771 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 5772 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 5776 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 5777 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 5778 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 5779 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 5780 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 5781 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 5782 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 5783 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 5784 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 5785 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 5787 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 5788 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 5789 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 5790 + components: + - type: Transform + pos: 28.5,3.5 + parent: 1 + - uid: 5791 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1 + - uid: 5792 + components: + - type: Transform + pos: 28.5,6.5 + parent: 1 + - uid: 5793 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 1 + - uid: 5795 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 1 + - uid: 5796 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 1 + - uid: 5797 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 5798 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 1 + - uid: 5799 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 1 + - uid: 5800 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 1 + - uid: 5801 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - uid: 5802 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 + - uid: 5805 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 1 + - uid: 5806 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 1 + - uid: 5807 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 1 + - uid: 5808 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 1 + - uid: 5809 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 1 + - uid: 5810 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 1 + - uid: 5817 + components: + - type: Transform + pos: -33.5,7.5 + parent: 1 + - uid: 5818 + components: + - type: Transform + pos: -33.5,6.5 + parent: 1 + - uid: 5819 + components: + - type: Transform + pos: -33.5,5.5 + parent: 1 + - uid: 5820 + components: + - type: Transform + pos: -33.5,4.5 + parent: 1 + - uid: 5821 + components: + - type: Transform + pos: -36.5,6.5 + parent: 1 + - uid: 5822 + components: + - type: Transform + pos: -36.5,7.5 + parent: 1 + - uid: 5823 + components: + - type: Transform + pos: -35.5,3.5 + parent: 1 + - uid: 5824 + components: + - type: Transform + pos: -35.5,12.5 + parent: 1 + - uid: 5825 + components: + - type: Transform + pos: -41.5,9.5 + parent: 1 + - uid: 5826 + components: + - type: Transform + pos: -37.5,10.5 + parent: 1 + - uid: 5831 + components: + - type: Transform + pos: -39.5,16.5 + parent: 1 + - uid: 5832 + components: + - type: Transform + pos: -37.5,16.5 + parent: 1 + - uid: 5833 + components: + - type: Transform + pos: -33.5,37.5 + parent: 1 + - uid: 5834 + components: + - type: Transform + pos: -33.5,36.5 + parent: 1 + - uid: 5835 + components: + - type: Transform + pos: -33.5,38.5 + parent: 1 + - uid: 5836 + components: + - type: Transform + pos: -32.5,35.5 + parent: 1 + - uid: 5837 + components: + - type: Transform + pos: -31.5,35.5 + parent: 1 + - uid: 5838 + components: + - type: Transform + pos: -30.5,35.5 + parent: 1 + - uid: 5839 + components: + - type: Transform + pos: -29.5,36.5 + parent: 1 + - uid: 5840 + components: + - type: Transform + pos: -29.5,37.5 + parent: 1 + - uid: 5841 + components: + - type: Transform + pos: -29.5,38.5 + parent: 1 + - uid: 6014 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 1 + - uid: 6110 + components: + - type: Transform + pos: -1.5,51.5 + parent: 1 + - uid: 6111 + components: + - type: Transform + pos: -0.5,51.5 + parent: 1 + - uid: 6112 + components: + - type: Transform + pos: 0.5,51.5 + parent: 1 + - uid: 6113 + components: + - type: Transform + pos: -1.5,58.5 + parent: 1 + - uid: 6114 + components: + - type: Transform + pos: -0.5,58.5 + parent: 1 + - uid: 6115 + components: + - type: Transform + pos: 0.5,58.5 + parent: 1 + - uid: 6116 + components: + - type: Transform + pos: -4.5,54.5 + parent: 1 + - uid: 6117 + components: + - type: Transform + pos: -4.5,53.5 + parent: 1 + - uid: 6118 + components: + - type: Transform + pos: 3.5,56.5 + parent: 1 + - uid: 6119 + components: + - type: Transform + pos: 3.5,53.5 + parent: 1 + - uid: 6120 + components: + - type: Transform + pos: -1.5,69.5 + parent: 1 + - uid: 6121 + components: + - type: Transform + pos: 0.5,69.5 + parent: 1 + - uid: 6122 + components: + - type: Transform + pos: -1.5,75.5 + parent: 1 + - uid: 6123 + components: + - type: Transform + pos: 0.5,75.5 + parent: 1 + - uid: 6124 + components: + - type: Transform + pos: -5.5,75.5 + parent: 1 + - uid: 6125 + components: + - type: Transform + pos: 5.5,75.5 + parent: 1 + - uid: 6126 + components: + - type: Transform + pos: 8.5,66.5 + parent: 1 + - uid: 6127 + components: + - type: Transform + pos: 8.5,68.5 + parent: 1 + - uid: 6128 + components: + - type: Transform + pos: 8.5,67.5 + parent: 1 + - uid: 6129 + components: + - type: Transform + pos: 1.5,63.5 + parent: 1 + - uid: 6130 + components: + - type: Transform + pos: -2.5,48.5 + parent: 1 + - uid: 6131 + components: + - type: Transform + pos: -2.5,50.5 + parent: 1 + - uid: 6132 + components: + - type: Transform + pos: 1.5,46.5 + parent: 1 + - uid: 6133 + components: + - type: Transform + pos: 1.5,47.5 + parent: 1 + - uid: 6134 + components: + - type: Transform + pos: -15.5,35.5 + parent: 1 + - uid: 6135 + components: + - type: Transform + pos: -14.5,35.5 + parent: 1 + - uid: 6136 + components: + - type: Transform + pos: -18.5,35.5 + parent: 1 + - uid: 6137 + components: + - type: Transform + pos: -13.5,35.5 + parent: 1 + - uid: 6138 + components: + - type: Transform + pos: -20.5,35.5 + parent: 1 + - uid: 6344 + components: + - type: Transform + pos: 43.5,41.5 + parent: 1 + - uid: 6345 + components: + - type: Transform + pos: 44.5,41.5 + parent: 1 + - uid: 6346 + components: + - type: Transform + pos: 45.5,43.5 + parent: 1 + - uid: 6363 + components: + - type: Transform + pos: -14.5,26.5 + parent: 1 + - uid: 6364 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1 + - uid: 6365 + components: + - type: Transform + pos: -10.5,26.5 + parent: 1 + - uid: 6391 + components: + - type: Transform + pos: 9.5,23.5 + parent: 1 + - uid: 6392 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1 + - uid: 6393 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1 + - uid: 6394 + components: + - type: Transform + pos: 6.5,29.5 + parent: 1 + - uid: 6395 + components: + - type: Transform + pos: 7.5,29.5 + parent: 1 + - uid: 6396 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1 + - uid: 6398 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1 + - uid: 6399 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1 + - uid: 6400 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 6648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 1 + - uid: 6649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 1 + - uid: 6650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 1 + - uid: 6656 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 1 + - uid: 6666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 1 + - uid: 6667 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 1 + - uid: 7022 + components: + - type: Transform + pos: -26.5,48.5 + parent: 1 + - uid: 7023 + components: + - type: Transform + pos: -26.5,47.5 + parent: 1 + - uid: 7106 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 1 + - uid: 7107 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 1 + - uid: 7108 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 1 + - uid: 7109 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 1 + - uid: 7161 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 1 + - uid: 7162 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 1 + - uid: 7163 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 1 + - uid: 7164 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 1 + - uid: 7165 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 1 + - uid: 7167 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 1 + - uid: 7168 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 1 + - uid: 7169 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 1 + - uid: 7170 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 7171 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 1 + - uid: 7172 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 1 + - uid: 7267 + components: + - type: Transform + pos: 25.5,35.5 + parent: 1 + - uid: 7268 + components: + - type: Transform + pos: 26.5,35.5 + parent: 1 + - uid: 7269 + components: + - type: Transform + pos: 28.5,32.5 + parent: 1 + - uid: 7827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,20.5 + parent: 1 + - uid: 7894 + components: + - type: Transform + pos: -43.5,39.5 + parent: 1 + - uid: 7895 + components: + - type: Transform + pos: -42.5,39.5 + parent: 1 + - uid: 7898 + components: + - type: Transform + pos: -49.5,39.5 + parent: 1 + - uid: 7899 + components: + - type: Transform + pos: -48.5,39.5 + parent: 1 + - uid: 7913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,20.5 + parent: 1 + - uid: 7922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,20.5 + parent: 1 + - uid: 8327 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1 + - uid: 8425 + components: + - type: Transform + pos: 13.5,27.5 + parent: 1 + - uid: 8561 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1 + - uid: 8562 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1 + - uid: 8861 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 8756 + - uid: 8862 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 8756 + - uid: 8863 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 8756 + - uid: 8926 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 9013 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 9014 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 9028 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 1 + - uid: 9029 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - uid: 9030 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1 + - uid: 9048 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 9049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - uid: 9411 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 1 + - uid: 9429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-9.5 + parent: 1 + - uid: 9430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 1 + - uid: 9431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 1 + - uid: 9589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,38.5 + parent: 1 + - uid: 9590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,37.5 + parent: 1 + - uid: 9591 + components: + - type: Transform + pos: -11.5,36.5 + parent: 1 + - uid: 17362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,51.5 + parent: 1 + - uid: 17363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,51.5 + parent: 1 + - uid: 17364 + components: + - type: Transform + pos: -12.5,51.5 + parent: 1 + - uid: 17368 + components: + - type: Transform + pos: -13.5,47.5 + parent: 1 + - uid: 17369 + components: + - type: Transform + pos: -12.5,47.5 + parent: 1 + - uid: 17370 + components: + - type: Transform + pos: -20.5,48.5 + parent: 1 + - uid: 17371 + components: + - type: Transform + pos: -20.5,47.5 + parent: 1 + - uid: 17420 + components: + - type: Transform + pos: 28.5,33.5 + parent: 1 + - uid: 17449 + components: + - type: Transform + pos: -8.5,33.5 + parent: 1 + - uid: 17520 + components: + - type: Transform + pos: 28.5,10.5 + parent: 1 + - uid: 18237 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 +- proto: Fireplace + entities: + - uid: 787 + components: + - type: Transform + pos: -25.5,11.5 + parent: 1 + - uid: 3191 + components: + - type: Transform + pos: 45.5,48.5 + parent: 1 + - uid: 4388 + components: + - type: Transform + pos: 25.5,11.5 + parent: 1 + - uid: 9162 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1 + - uid: 9865 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 1 + - uid: 10933 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 1 +- proto: Flash + entities: + - uid: 8072 + components: + - type: Transform + pos: 3.497499,80.1647 + parent: 1 + - uid: 9397 + components: + - type: Transform + pos: -34.791756,-5.4286704 + parent: 1 +- proto: FlashlightLantern + entities: + - uid: 9191 + components: + - type: Transform + pos: 9.627577,-15.47229 + parent: 1 +- proto: FlashlightSeclite + entities: + - uid: 7770 + components: + - type: Transform + pos: -18.39577,40.731785 + parent: 1 + - uid: 7771 + components: + - type: Transform + pos: -18.58327,40.43491 + parent: 1 + - uid: 8184 + components: + - type: Transform + pos: -16.611473,49.69518 + parent: 1 + - uid: 8189 + components: + - type: Transform + pos: -16.444807,50.07018 + parent: 1 + - uid: 9419 + components: + - type: Transform + pos: 26.518345,-13.504487 + parent: 1 +- proto: Floodlight + entities: + - uid: 18421 + components: + - type: Transform + pos: 39.53336,61.486675 + parent: 1 +- proto: FloodlightBroken + entities: + - uid: 18356 + components: + - type: Transform + pos: -40.523964,60.07001 + parent: 1 +- proto: FloorDrain + entities: + - uid: 2930 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 4021 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 4316 + components: + - type: Transform + pos: -38.5,49.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 6631 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 6816 + components: + - type: Transform + pos: -7.5,69.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 7439 + components: + - type: Transform + pos: 20.5,32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 17277 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 17456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemGold + entities: + - uid: 17989 + components: + - type: Transform + pos: 45.45488,55.465294 + parent: 1 + - type: Stack + count: 20 +- proto: FloorTileItemLino + entities: + - uid: 17988 + components: + - type: Transform + pos: 34.302074,-18.390522 + parent: 1 + - type: Stack + count: 20 +- proto: FloraTree02 + entities: + - uid: 17655 + components: + - type: Transform + pos: 21.618893,21.654818 + parent: 1 +- proto: FloraTree05 + entities: + - uid: 17657 + components: + - type: Transform + pos: 27.071226,18.057373 + parent: 1 +- proto: FloraTree06 + entities: + - uid: 3419 + components: + - type: Transform + pos: -46.77861,40.963207 + parent: 1 +- proto: FloraTreeStump + entities: + - uid: 3420 + components: + - type: Transform + pos: -44.965977,40.860065 + parent: 1 + - uid: 17656 + components: + - type: Transform + pos: 23.131063,21.378092 + parent: 1 +- proto: FoodBakedPancakeBb + entities: + - uid: 17743 + components: + - type: Transform + pos: -35.421543,-26.464243 + parent: 1 +- proto: FoodBanana + entities: + - uid: 9661 + components: + - type: Transform + pos: -16.203074,-0.3446604 + parent: 1 + - uid: 9662 + components: + - type: Transform + pos: -16.203074,-0.3446604 + parent: 1 + - uid: 9663 + components: + - type: Transform + pos: -16.203074,-0.3446604 + parent: 1 +- proto: FoodBowlBig + entities: + - uid: 8268 + components: + - type: Transform + pos: -33.667786,49.56961 + parent: 1 + - uid: 8269 + components: + - type: Transform + pos: -33.41221,49.71152 + parent: 1 + - uid: 9289 + components: + - type: Transform + pos: 12.48844,-0.40089428 + parent: 1 +- proto: FoodBowlBigTrash + entities: + - uid: 10111 + components: + - type: Transform + pos: 17.411285,-36.66307 + parent: 1 + - uid: 10112 + components: + - type: Transform + pos: 18.107027,-35.953514 + parent: 1 +- proto: FoodBoxDonkpocket + entities: + - uid: 8097 + components: + - type: Transform + pos: 2.518909,73.08398 + parent: 1 + - uid: 9631 + components: + - type: Transform + pos: -42.173145,-7.3112845 + parent: 1 +- proto: FoodBoxDonut + entities: + - uid: 8073 + components: + - type: Transform + pos: -4.45382,80.533676 + parent: 1 +- proto: FoodBoxNugget + entities: + - uid: 9301 + components: + - type: Transform + pos: 8.65722,2.8053331 + parent: 1 +- proto: FoodBoxPizzaFilled + entities: + - uid: 10096 + components: + - type: Transform + pos: -17.506914,-29.281166 + parent: 1 +- proto: FoodBreadPlain + entities: + - uid: 8370 + components: + - type: Transform + pos: 33.378624,49.652992 + parent: 1 +- proto: FoodBreadPlainSlice + entities: + - uid: 8371 + components: + - type: Transform + pos: 32.38471,49.709755 + parent: 1 + - uid: 8372 + components: + - type: Transform + pos: 32.526695,49.610416 + parent: 1 +- proto: FoodBurgerBig + entities: + - uid: 2726 + components: + - type: Transform + pos: -38.561558,-5.6145735 + parent: 1 +- proto: FoodBurgerCrazy + entities: + - uid: 9637 + components: + - type: Transform + pos: -18.525078,-21.779133 + parent: 1 +- proto: FoodCakeBirthdaySlice + entities: + - uid: 13330 + components: + - type: Transform + pos: -9.337922,10.467162 + parent: 1 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 9300 + components: + - type: Transform + pos: 5.3300986,1.7788405 + parent: 1 +- proto: FoodCondimentPacketHorseradish + entities: + - uid: 17286 + components: + - type: Transform + pos: -0.25378847,-0.7095739 + parent: 1 +- proto: FoodCondimentPacketSoy + entities: + - uid: 17287 + components: + - type: Transform + pos: -10.562105,2.6537187 + parent: 1 +- proto: FoodContainerEgg + entities: + - uid: 3775 + components: + - type: Transform + pos: 7.601603,-3.2161803 + parent: 1 +- proto: FoodFrozenCornuto + entities: + - uid: 7696 + components: + - type: Transform + pos: -40.490295,77.610565 + parent: 1 +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 9848 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 9844 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 9849 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 9844 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 9846 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 9844 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwich + entities: + - uid: 9847 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 9844 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 9845 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 9844 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSundae + entities: + - uid: 9850 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 9844 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodKebabSkewer + entities: + - uid: 8273 + components: + - type: Transform + pos: -33.142433,49.626377 + parent: 1 + - uid: 9287 + components: + - type: Transform + pos: 12.36344,-0.23422778 + parent: 1 + - uid: 9288 + components: + - type: Transform + pos: 12.571773,-0.33839428 + parent: 1 +- proto: FoodMealMemoryleek + entities: + - uid: 4378 + components: + - type: Transform + pos: 47.521317,74.488594 + parent: 1 +- proto: FoodMealMilkape + entities: + - uid: 17747 + components: + - type: Transform + pos: -3.4239073,34.287933 + parent: 1 +- proto: FoodMeatBaconCooked + entities: + - uid: 17740 + components: + - type: Transform + pos: 24.415808,-29.499893 + parent: 1 +- proto: FoodPieBaklava + entities: + - uid: 17741 + components: + - type: Transform + pos: -7.44179,-70.460884 + parent: 1 +- proto: FoodPieBananaCream + entities: + - uid: 6607 + components: + - type: Transform + pos: -15.830833,-0.5688125 + parent: 1 + - uid: 6608 + components: + - type: Transform + pos: -15.8876295,-0.25660872 + parent: 1 + - uid: 6609 + components: + - type: Transform + pos: -16.086414,-0.6255777 + parent: 1 +- proto: FoodPlate + entities: + - uid: 8266 + components: + - type: Transform + pos: -33.63939,49.881817 + parent: 1 + - uid: 9291 + components: + - type: Transform + pos: 12.33918,-1.1745799 + parent: 1 +- proto: FoodPlateSmall + entities: + - uid: 8267 + components: + - type: Transform + pos: -33.667786,49.72571 + parent: 1 + - uid: 8955 + components: + - type: Transform + pos: -12.011354,-3.421762 + parent: 1 + - uid: 9292 + components: + - type: Transform + pos: 12.342606,-1.2967278 + parent: 1 + - uid: 17294 + components: + - type: Transform + pos: -10.796385,2.6324317 + parent: 1 +- proto: FoodPlateTin + entities: + - uid: 8270 + components: + - type: Transform + pos: -33.327015,49.498657 + parent: 1 + - uid: 8271 + components: + - type: Transform + pos: -33.142433,49.597996 + parent: 1 + - uid: 9290 + components: + - type: Transform + pos: 12.42594,-0.8383943 + parent: 1 +- proto: FoodSnackSus + entities: + - uid: 17739 + components: + - type: Transform + pos: 27.402672,-19.487795 + parent: 1 +- proto: FoodTartMime + entities: + - uid: 6619 + components: + - type: Transform + pos: -16.442228,5.5049815 + parent: 1 +- proto: FoodTinPeachesMaint + entities: + - uid: 9978 + components: + - type: Transform + pos: -33.61911,-24.182272 + parent: 1 +- proto: Football + entities: + - uid: 8306 + components: + - type: Transform + pos: -38.624706,46.43239 + parent: 1 +- proto: Fork + entities: + - uid: 8920 + components: + - type: Transform + pos: -11.613461,-3.25968 + parent: 1 +- proto: ForkPlastic + entities: + - uid: 6688 + components: + - type: Transform + pos: 3.365237,0.54051036 + parent: 1 + - uid: 6700 + components: + - type: Transform + pos: 3.365237,0.54051036 + parent: 1 + - uid: 6701 + components: + - type: Transform + pos: 3.365237,0.54051036 + parent: 1 + - uid: 8820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5293255,72.579636 + parent: 1 +- proto: GasAnalyzer + entities: + - uid: 7117 + components: + - type: Transform + pos: -11.540349,34.601944 + parent: 1 + - uid: 8070 + components: + - type: Transform + pos: -7.5491548,79.71059 + parent: 1 + - uid: 8713 + components: + - type: Transform + pos: -11.3678055,-19.468292 + parent: 1 + - uid: 9233 + components: + - type: Transform + pos: -22.495941,-11.441285 + parent: 1 + - uid: 13885 + components: + - type: Transform + pos: 20.339535,52.7268 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 10109 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 1 +- proto: GasMinerCarbonDioxide + entities: + - uid: 6766 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 6765 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 6764 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasMixerFlipped + entities: + - uid: 4699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,33.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasOutletInjector + entities: + - uid: 2666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-39.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2667 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2668 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2669 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2670 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2671 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2672 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-33.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasPassiveVent + entities: + - uid: 450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-29.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-39.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2662 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-44.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-45.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2961 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,28.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 9195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 9853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 18480 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 18481 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasPipeBend + entities: + - uid: 2346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-43.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + - uid: 2573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1 + - uid: 2574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 1 + - uid: 2575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1 + - uid: 2576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-28.5 + parent: 1 + - uid: 2577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 1 + - uid: 2611 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 2717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-45.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 2744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2756 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2956 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 1 + - uid: 2960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 1 + - uid: 4140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-45.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-45.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,33.5 + parent: 1 + - uid: 6376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,30.5 + parent: 1 + - uid: 6586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,33.5 + parent: 1 + - uid: 9031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,32.5 + parent: 1 + - uid: 10878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10885 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13868 + components: + - type: Transform + pos: 22.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13875 + components: + - type: Transform + pos: 25.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14301 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14304 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14676 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14737 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14794 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14881 + components: + - type: Transform + pos: 48.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14908 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14964 + components: + - type: Transform + pos: 32.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15009 + components: + - type: Transform + pos: 30.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15017 + components: + - type: Transform + pos: 27.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15053 + components: + - type: Transform + pos: 44.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15251 + components: + - type: Transform + pos: -13.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15314 + components: + - type: Transform + pos: -5.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15548 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15682 + components: + - type: Transform + pos: -37.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15711 + components: + - type: Transform + pos: -40.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15740 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15745 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15772 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16059 + components: + - type: Transform + pos: -4.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16070 + components: + - type: Transform + pos: -3.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16118 + components: + - type: Transform + pos: -17.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16137 + components: + - type: Transform + pos: -18.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16167 + components: + - type: Transform + pos: -35.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,72.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,74.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1 + - uid: 18140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 1 + - uid: 18144 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1 + - uid: 18147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-5.5 + parent: 1 + - uid: 18154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 1 + - uid: 18477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 1 + - uid: 18479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-12.5 + parent: 1 +- proto: GasPipeFourway + entities: + - uid: 2648 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2736 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2767 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9444 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14412 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14453 + components: + - type: Transform + pos: 32.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14668 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14688 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14863 + components: + - type: Transform + pos: 30.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14891 + components: + - type: Transform + pos: 30.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14960 + components: + - type: Transform + pos: 32.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14973 + components: + - type: Transform + pos: 30.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15085 + components: + - type: Transform + pos: 22.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15181 + components: + - type: Transform + pos: 0.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15182 + components: + - type: Transform + pos: -1.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15214 + components: + - type: Transform + pos: -15.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15272 + components: + - type: Transform + pos: -10.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15355 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15361 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15519 + components: + - type: Transform + pos: 11.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15533 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15630 + components: + - type: Transform + pos: -30.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15631 + components: + - type: Transform + pos: -32.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15983 + components: + - type: Transform + pos: -8.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15984 + components: + - type: Transform + pos: -9.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16052 + components: + - type: Transform + pos: -9.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 2542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-20.5 + parent: 1 + - uid: 2543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 1 + - uid: 2544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-20.5 + parent: 1 + - uid: 2545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 1 + - uid: 2546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 1 + - uid: 2547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 1 + - uid: 2548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 1 + - uid: 2549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 1 + - uid: 2550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 1 + - uid: 2551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 1 + - uid: 2552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + - uid: 2553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 1 + - uid: 2554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 1 + - uid: 2555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1 + - uid: 2556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 1 + - uid: 2557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 1 + - uid: 2558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 1 + - uid: 2559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-26.5 + parent: 1 + - uid: 2560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 1 + - uid: 2561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 1 + - uid: 2562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-28.5 + parent: 1 + - uid: 2563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 1 + - uid: 2564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 1 + - uid: 2565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-28.5 + parent: 1 + - uid: 2566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1 + - uid: 2567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1 + - uid: 2568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1 + - uid: 2569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-30.5 + parent: 1 + - uid: 2570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 1 + - uid: 2571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-30.5 + parent: 1 + - uid: 2578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1 + - uid: 2579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-29.5 + parent: 1 + - uid: 2580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 1 + - uid: 2581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 1 + - uid: 2582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 1 + - uid: 2583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 1 + - uid: 2584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 1 + - uid: 2585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1 + - uid: 2586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 1 + - uid: 2587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + - uid: 2588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 1 + - uid: 2589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 1 + - uid: 2590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 1 + - uid: 2591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 1 + - uid: 2592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 1 + - uid: 2593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 1 + - uid: 2594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 1 + - uid: 2595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 1 + - uid: 2626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 1 + - uid: 2647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 1 + - uid: 2664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-39.5 + parent: 1 + - uid: 2665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 1 + - uid: 2674 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 1 + - uid: 2675 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 1 + - uid: 2677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-33.5 + parent: 1 + - uid: 2678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 1 + - uid: 2679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-33.5 + parent: 1 + - uid: 2681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 1 + - uid: 2682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 1 + - uid: 2683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 1 + - uid: 2732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2766 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2780 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 1 + - uid: 2954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-44.5 + parent: 1 + - uid: 2955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 1 + - uid: 3540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,30.5 + parent: 1 + - uid: 3541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,30.5 + parent: 1 + - uid: 3542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,28.5 + parent: 1 + - uid: 3543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,28.5 + parent: 1 + - uid: 3544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,28.5 + parent: 1 + - uid: 3545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,30.5 + parent: 1 + - uid: 4402 + components: + - type: Transform + pos: 31.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,31.5 + parent: 1 + - uid: 8550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9033 + components: + - type: Transform + pos: 11.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9034 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9035 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 1 + - uid: 9197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-41.5 + parent: 1 + - uid: 9198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-41.5 + parent: 1 + - uid: 9725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1 + - uid: 10880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13052 + components: + - type: Transform + pos: 19.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13492 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13860 + components: + - type: Transform + pos: 16.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13861 + components: + - type: Transform + pos: 16.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13869 + components: + - type: Transform + pos: 22.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13870 + components: + - type: Transform + pos: 22.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13871 + components: + - type: Transform + pos: 22.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13876 + components: + - type: Transform + pos: 25.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13877 + components: + - type: Transform + pos: 25.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13878 + components: + - type: Transform + pos: 25.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13879 + components: + - type: Transform + pos: 25.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13880 + components: + - type: Transform + pos: 25.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13881 + components: + - type: Transform + pos: 25.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14220 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14221 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14222 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14280 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14281 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14282 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14283 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14284 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14302 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14305 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14306 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14307 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14308 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14309 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14310 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14311 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14346 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14368 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14369 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14370 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14371 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14372 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14373 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14374 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14375 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14376 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14377 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14378 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14387 + components: + - type: Transform + pos: -32.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14388 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14413 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14414 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14426 + components: + - type: Transform + pos: -30.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14443 + components: + - type: Transform + pos: 32.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14568 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14593 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14594 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14595 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14596 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14597 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14598 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14600 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14601 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14602 + components: + - type: Transform + pos: -30.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14603 + components: + - type: Transform + pos: -30.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14604 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14605 + components: + - type: Transform + pos: -30.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14607 + components: + - type: Transform + pos: -30.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14608 + components: + - type: Transform + pos: -30.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14609 + components: + - type: Transform + pos: -30.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14611 + components: + - type: Transform + pos: -30.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14612 + components: + - type: Transform + pos: -30.5,10.5 + parent: 1 + - uid: 14613 + components: + - type: Transform + pos: -30.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14614 + components: + - type: Transform + pos: -32.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14617 + components: + - type: Transform + pos: -32.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14619 + components: + - type: Transform + pos: -32.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14620 + components: + - type: Transform + pos: -32.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14621 + components: + - type: Transform + pos: -32.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14622 + components: + - type: Transform + pos: -32.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14623 + components: + - type: Transform + pos: -32.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14624 + components: + - type: Transform + pos: -32.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14625 + components: + - type: Transform + pos: -32.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14626 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14627 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14628 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14630 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14631 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14632 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14651 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14652 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14653 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14654 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14655 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14656 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14657 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14658 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14686 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14687 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14695 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14698 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14699 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14715 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14716 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14762 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14763 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14764 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14767 + components: + - type: Transform + pos: -32.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14809 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14810 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14811 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14812 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14813 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14814 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14818 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14819 + components: + - type: Transform + pos: 30.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14858 + components: + - type: Transform + pos: 30.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14859 + components: + - type: Transform + pos: 30.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14860 + components: + - type: Transform + pos: 30.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14861 + components: + - type: Transform + pos: 30.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14862 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14909 + components: + - type: Transform + pos: 24.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14910 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14911 + components: + - type: Transform + pos: 24.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14912 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14942 + components: + - type: Transform + pos: 30.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14943 + components: + - type: Transform + pos: 30.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14944 + components: + - type: Transform + pos: 30.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14945 + components: + - type: Transform + pos: 30.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14946 + components: + - type: Transform + pos: 30.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14947 + components: + - type: Transform + pos: 30.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14948 + components: + - type: Transform + pos: 30.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14949 + components: + - type: Transform + pos: 30.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14950 + components: + - type: Transform + pos: 30.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14951 + components: + - type: Transform + pos: 30.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14952 + components: + - type: Transform + pos: 30.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14953 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14956 + components: + - type: Transform + pos: 32.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14957 + components: + - type: Transform + pos: 32.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14958 + components: + - type: Transform + pos: 32.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14959 + components: + - type: Transform + pos: 32.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14969 + components: + - type: Transform + pos: 30.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14970 + components: + - type: Transform + pos: 30.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14971 + components: + - type: Transform + pos: 30.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15003 + components: + - type: Transform + pos: 30.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15004 + components: + - type: Transform + pos: 30.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15005 + components: + - type: Transform + pos: 30.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15006 + components: + - type: Transform + pos: 30.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15007 + components: + - type: Transform + pos: 30.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15026 + components: + - type: Transform + pos: 24.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15027 + components: + - type: Transform + pos: 24.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15096 + components: + - type: Transform + pos: 18.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15097 + components: + - type: Transform + pos: 18.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15098 + components: + - type: Transform + pos: 18.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15099 + components: + - type: Transform + pos: 22.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15100 + components: + - type: Transform + pos: 22.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15115 + components: + - type: Transform + pos: 14.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15116 + components: + - type: Transform + pos: 14.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15117 + components: + - type: Transform + pos: 14.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15118 + components: + - type: Transform + pos: 14.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15122 + components: + - type: Transform + pos: 14.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15123 + components: + - type: Transform + pos: 14.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15136 + components: + - type: Transform + pos: 15.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15138 + components: + - type: Transform + pos: 15.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15139 + components: + - type: Transform + pos: 15.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15140 + components: + - type: Transform + pos: 15.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15202 + components: + - type: Transform + pos: 0.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15203 + components: + - type: Transform + pos: 0.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15204 + components: + - type: Transform + pos: 0.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15205 + components: + - type: Transform + pos: 0.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15206 + components: + - type: Transform + pos: -1.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15207 + components: + - type: Transform + pos: -1.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15208 + components: + - type: Transform + pos: -1.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15209 + components: + - type: Transform + pos: -1.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15222 + components: + - type: Transform + pos: -15.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15223 + components: + - type: Transform + pos: -15.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15224 + components: + - type: Transform + pos: -15.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15240 + components: + - type: Transform + pos: -15.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15258 + components: + - type: Transform + pos: -20.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15259 + components: + - type: Transform + pos: -20.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15260 + components: + - type: Transform + pos: -20.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15261 + components: + - type: Transform + pos: -20.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15289 + components: + - type: Transform + pos: -9.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15290 + components: + - type: Transform + pos: -9.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15309 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15310 + components: + - type: Transform + pos: -4.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15311 + components: + - type: Transform + pos: -4.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15312 + components: + - type: Transform + pos: -4.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15313 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15318 + components: + - type: Transform + pos: -1.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15327 + components: + - type: Transform + pos: -1.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15328 + components: + - type: Transform + pos: -1.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15329 + components: + - type: Transform + pos: -1.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15330 + components: + - type: Transform + pos: -1.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15331 + components: + - type: Transform + pos: -1.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15332 + components: + - type: Transform + pos: -1.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15333 + components: + - type: Transform + pos: -1.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15334 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15335 + components: + - type: Transform + pos: -1.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15336 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15337 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15338 + components: + - type: Transform + pos: 0.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15339 + components: + - type: Transform + pos: 0.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15340 + components: + - type: Transform + pos: 0.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15341 + components: + - type: Transform + pos: 0.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15342 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15343 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15344 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15345 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15346 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15347 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15348 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15529 + components: + - type: Transform + pos: 10.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15530 + components: + - type: Transform + pos: 10.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15531 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15532 + components: + - type: Transform + pos: 10.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15560 + components: + - type: Transform + pos: 19.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15561 + components: + - type: Transform + pos: 19.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15632 + components: + - type: Transform + pos: -32.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15633 + components: + - type: Transform + pos: -32.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15683 + components: + - type: Transform + pos: -37.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15684 + components: + - type: Transform + pos: -37.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15685 + components: + - type: Transform + pos: -37.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15686 + components: + - type: Transform + pos: -37.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15687 + components: + - type: Transform + pos: -37.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15688 + components: + - type: Transform + pos: -37.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15689 + components: + - type: Transform + pos: -37.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15690 + components: + - type: Transform + pos: -37.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15691 + components: + - type: Transform + pos: -37.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15692 + components: + - type: Transform + pos: -37.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15693 + components: + - type: Transform + pos: -37.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15694 + components: + - type: Transform + pos: -37.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15716 + components: + - type: Transform + pos: -40.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15717 + components: + - type: Transform + pos: -40.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15718 + components: + - type: Transform + pos: -40.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15719 + components: + - type: Transform + pos: -40.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15720 + components: + - type: Transform + pos: -40.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15721 + components: + - type: Transform + pos: -40.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15722 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15724 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15725 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15726 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15727 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15741 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15749 + components: + - type: Transform + pos: -38.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15750 + components: + - type: Transform + pos: -38.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15751 + components: + - type: Transform + pos: -38.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15752 + components: + - type: Transform + pos: -38.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15758 + components: + - type: Transform + pos: -38.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15759 + components: + - type: Transform + pos: -38.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15760 + components: + - type: Transform + pos: -38.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15761 + components: + - type: Transform + pos: -38.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15762 + components: + - type: Transform + pos: -38.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15779 + components: + - type: Transform + pos: -32.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15780 + components: + - type: Transform + pos: -32.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15781 + components: + - type: Transform + pos: -32.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15782 + components: + - type: Transform + pos: -30.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15783 + components: + - type: Transform + pos: -30.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15784 + components: + - type: Transform + pos: -30.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15785 + components: + - type: Transform + pos: -30.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15786 + components: + - type: Transform + pos: -30.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15787 + components: + - type: Transform + pos: -30.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15788 + components: + - type: Transform + pos: -32.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15789 + components: + - type: Transform + pos: -32.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15790 + components: + - type: Transform + pos: -32.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15791 + components: + - type: Transform + pos: -32.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15792 + components: + - type: Transform + pos: -32.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15793 + components: + - type: Transform + pos: -32.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15794 + components: + - type: Transform + pos: -32.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15795 + components: + - type: Transform + pos: -32.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15796 + components: + - type: Transform + pos: -32.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15797 + components: + - type: Transform + pos: -32.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15798 + components: + - type: Transform + pos: -32.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15799 + components: + - type: Transform + pos: -32.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15800 + components: + - type: Transform + pos: -30.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15801 + components: + - type: Transform + pos: -30.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15802 + components: + - type: Transform + pos: -30.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15803 + components: + - type: Transform + pos: -30.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15804 + components: + - type: Transform + pos: -30.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15805 + components: + - type: Transform + pos: -30.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15806 + components: + - type: Transform + pos: -30.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15807 + components: + - type: Transform + pos: -30.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15808 + components: + - type: Transform + pos: -30.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15809 + components: + - type: Transform + pos: -30.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15810 + components: + - type: Transform + pos: -30.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15817 + components: + - type: Transform + pos: -30.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15818 + components: + - type: Transform + pos: -30.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15819 + components: + - type: Transform + pos: -32.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15923 + components: + - type: Transform + pos: 0.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15926 + components: + - type: Transform + pos: -1.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15927 + components: + - type: Transform + pos: -1.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15928 + components: + - type: Transform + pos: -1.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15970 + components: + - type: Transform + pos: -1.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15985 + components: + - type: Transform + pos: -8.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15988 + components: + - type: Transform + pos: -8.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15989 + components: + - type: Transform + pos: -8.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15990 + components: + - type: Transform + pos: -8.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15991 + components: + - type: Transform + pos: -8.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15994 + components: + - type: Transform + pos: -8.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15995 + components: + - type: Transform + pos: -8.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15996 + components: + - type: Transform + pos: -8.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16010 + components: + - type: Transform + pos: -9.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16011 + components: + - type: Transform + pos: -9.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16012 + components: + - type: Transform + pos: -9.5,51.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16013 + components: + - type: Transform + pos: -9.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16014 + components: + - type: Transform + pos: -9.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16032 + components: + - type: Transform + pos: -9.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16033 + components: + - type: Transform + pos: -9.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16051 + components: + - type: Transform + pos: -9.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16090 + components: + - type: Transform + pos: -18.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16091 + components: + - type: Transform + pos: -18.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16117 + components: + - type: Transform + pos: -17.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16151 + components: + - type: Transform + pos: -31.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16152 + components: + - type: Transform + pos: -31.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16153 + components: + - type: Transform + pos: -31.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16172 + components: + - type: Transform + pos: -35.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16207 + components: + - type: Transform + pos: 11.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16208 + components: + - type: Transform + pos: 11.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16209 + components: + - type: Transform + pos: 11.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16210 + components: + - type: Transform + pos: 11.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16211 + components: + - type: Transform + pos: 11.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16222 + components: + - type: Transform + pos: -1.5,57.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16223 + components: + - type: Transform + pos: -1.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16224 + components: + - type: Transform + pos: -1.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16225 + components: + - type: Transform + pos: -1.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16226 + components: + - type: Transform + pos: -1.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16227 + components: + - type: Transform + pos: -1.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16242 + components: + - type: Transform + pos: 0.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16243 + components: + - type: Transform + pos: 0.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16244 + components: + - type: Transform + pos: 0.5,62.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16247 + components: + - type: Transform + pos: -1.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16248 + components: + - type: Transform + pos: -1.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16249 + components: + - type: Transform + pos: -1.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16250 + components: + - type: Transform + pos: 0.5,67.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16251 + components: + - type: Transform + pos: 0.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16252 + components: + - type: Transform + pos: 0.5,69.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16253 + components: + - type: Transform + pos: 0.5,70.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16258 + components: + - type: Transform + pos: -1.5,69.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16259 + components: + - type: Transform + pos: -1.5,71.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16260 + components: + - type: Transform + pos: -1.5,72.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16289 + components: + - type: Transform + pos: 0.5,72.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16290 + components: + - type: Transform + pos: 0.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16291 + components: + - type: Transform + pos: -1.5,74.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16292 + components: + - type: Transform + pos: -1.5,75.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16293 + components: + - type: Transform + pos: -1.5,76.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16294 + components: + - type: Transform + pos: 0.5,75.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16295 + components: + - type: Transform + pos: 0.5,76.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16318 + components: + - type: Transform + pos: -5.5,76.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16319 + components: + - type: Transform + pos: -5.5,75.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16320 + components: + - type: Transform + pos: -5.5,74.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16321 + components: + - type: Transform + pos: -6.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16322 + components: + - type: Transform + pos: -6.5,76.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16323 + components: + - type: Transform + pos: -6.5,75.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16324 + components: + - type: Transform + pos: -6.5,74.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16333 + components: + - type: Transform + pos: -5.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,72.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,72.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,71.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,76.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,75.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,76.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,75.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16350 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16351 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16360 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16373 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 1 + - uid: 17474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,10.5 + parent: 1 + - uid: 17475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,10.5 + parent: 1 + - uid: 17476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,10.5 + parent: 1 + - uid: 17477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 1 + - uid: 17478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,11.5 + parent: 1 + - uid: 18141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 1 + - uid: 18142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 1 + - uid: 18143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + - uid: 18145 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1 + - uid: 18146 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 18148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 1 + - uid: 18149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 1 + - uid: 18150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 1 + - uid: 18151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + - uid: 18152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 1 + - uid: 18153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-5.5 + parent: 1 + - uid: 18155 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 1 + - uid: 18482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 1 + - uid: 18483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 2300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-43.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2630 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2765 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2779 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2781 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2796 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-44.5 + parent: 1 + - uid: 2958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-45.5 + parent: 1 + - uid: 3691 + components: + - type: Transform + pos: 11.5,32.5 + parent: 1 + - uid: 4418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,33.5 + parent: 1 + - uid: 6374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,32.5 + parent: 1 + - uid: 9032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-43.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10899 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10902 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10905 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10919 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10923 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14227 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14253 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14261 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14279 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14351 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14392 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14496 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14528 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14532 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14534 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14535 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14539 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14579 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-7.5 + parent: 1 + - uid: 14587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14615 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1 + - uid: 14616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14667 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14769 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14777 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14868 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14915 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14927 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,37.5 + parent: 1 + - uid: 14980 + components: + - type: Transform + pos: 25.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,49.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15035 + components: + - type: Transform + pos: 36.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15134 + components: + - type: Transform + pos: 15.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15153 + components: + - type: Transform + pos: 11.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15165 + components: + - type: Transform + pos: 5.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15193 + components: + - type: Transform + pos: -8.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15213 + components: + - type: Transform + pos: -13.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15231 + components: + - type: Transform + pos: -20.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15262 + components: + - type: Transform + pos: -17.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15267 + components: + - type: Transform + pos: -12.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15288 + components: + - type: Transform + pos: -9.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15293 + components: + - type: Transform + pos: -7.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15380 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15468 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15539 + components: + - type: Transform + pos: 9.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15597 + components: + - type: Transform + pos: -22.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,10.5 + parent: 1 + - uid: 15638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15698 + components: + - type: Transform + pos: -34.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15763 + components: + - type: Transform + pos: -38.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15832 + components: + - type: Transform + pos: -30.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15833 + components: + - type: Transform + pos: -32.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15842 + components: + - type: Transform + pos: -22.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15872 + components: + - type: Transform + pos: -37.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,50.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,52.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,54.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,58.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,55.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,59.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,60.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16058 + components: + - type: Transform + pos: -7.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16063 + components: + - type: Transform + pos: -10.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16064 + components: + - type: Transform + pos: -13.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16069 + components: + - type: Transform + pos: -6.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16075 + components: + - type: Transform + pos: -12.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16076 + components: + - type: Transform + pos: -16.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16077 + components: + - type: Transform + pos: -15.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16126 + components: + - type: Transform + pos: -25.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16131 + components: + - type: Transform + pos: -28.5,48.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,46.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16150 + components: + - type: Transform + pos: -30.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,47.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,45.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16190 + components: + - type: Transform + pos: 6.5,56.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,53.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,61.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,63.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,64.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,65.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,66.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,68.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,71.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,74.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,70.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,73.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16296 + components: + - type: Transform + pos: 0.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16297 + components: + - type: Transform + pos: -1.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16304 + components: + - type: Transform + pos: 3.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16312 + components: + - type: Transform + pos: -5.5,77.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,78.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,72.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-12.5 + parent: 1 +- proto: GasPort + entities: + - uid: 2876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,33.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,28.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,30.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 4067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 4143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-38.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 4144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-39.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6369 + components: + - type: Transform + pos: 10.5,34.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6584 + components: + - type: Transform + pos: -6.5,34.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6585 + components: + - type: Transform + pos: -7.5,34.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13171 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13855 + components: + - type: Transform + pos: 18.5,54.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 15270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,24.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,25.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPressurePump + entities: + - uid: 2615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-39.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-29.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,28.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,30.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13172 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13856 + components: + - type: Transform + pos: 18.5,53.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasRecyclerMachineCircuitboard + entities: + - uid: 8725 + components: + - type: Transform + pos: -10.353789,-19.334864 + parent: 1 +- proto: GasThermoMachineFreezer + entities: + - uid: 2710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-38.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2769 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: AtmosDevice + joinedGrid: 1 + - uid: 6370 + components: + - type: Transform + pos: 11.5,34.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 9204 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 9852 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 1 + - type: GasThermoMachine + targetTemperature: 0 + - type: AtmosDevice + joinedGrid: 1 + - uid: 18205 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasThermoMachineHeater + entities: + - uid: 2709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-39.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2768 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: AtmosDevice + joinedGrid: 1 + - uid: 9203 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasValve + entities: + - uid: 2629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2676 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 1 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 1 + - uid: 2959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-44.5 + parent: 1 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 1 +- proto: GasVentPump + entities: + - uid: 2737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14295 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14332 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-33.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14415 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14659 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14748 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14761 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14906 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,32.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,47.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15030 + components: + - type: Transform + pos: 24.5,51.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15065 + components: + - type: Transform + pos: 43.5,42.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,38.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,33.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 15101 + components: + - type: Transform + pos: 22.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,45.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,45.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,44.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,42.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,28.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,29.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15295 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15317 + components: + - type: Transform + pos: -4.5,22.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,32.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,20.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,22.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,22.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15499 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15524 + components: + - type: Transform + pos: 4.5,23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15544 + components: + - type: Transform + pos: 7.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15558 + components: + - type: Transform + pos: 20.5,29.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15582 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,28.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,30.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15910 + components: + - type: Transform + pos: -43.5,42.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,42.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,54.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,48.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,54.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16024 + components: + - type: Transform + pos: -6.5,56.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,63.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,60.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,59.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,45.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,44.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,47.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,47.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,55.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16206 + components: + - type: Transform + pos: 8.5,59.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,63.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,64.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,68.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,70.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,73.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16327 + components: + - type: Transform + pos: -6.5,79.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16328 + components: + - type: Transform + pos: 5.5,79.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,73.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,74.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-34.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 18353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasVentScrubber + entities: + - uid: 566 + components: + - type: Transform + pos: -7.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-21.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9037 + components: + - type: Transform + pos: 10.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,29.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-15.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14296 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14298 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14333 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14404 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-33.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14569 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14660 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14672 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14717 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14749 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14750 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14760 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14771 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14792 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14808 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14875 + components: + - type: Transform + pos: 36.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14879 + components: + - type: Transform + pos: 46.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14916 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14928 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,36.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,40.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,47.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,49.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,47.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15031 + components: + - type: Transform + pos: 25.5,51.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15037 + components: + - type: Transform + pos: 35.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,43.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15067 + components: + - type: Transform + pos: 46.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,33.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15084 + components: + - type: Transform + pos: 32.5,54.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15102 + components: + - type: Transform + pos: 18.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,45.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,46.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,43.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15155 + components: + - type: Transform + pos: 10.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15173 + components: + - type: Transform + pos: 4.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15226 + components: + - type: Transform + pos: -15.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,32.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15283 + components: + - type: Transform + pos: -10.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15316 + components: + - type: Transform + pos: -6.5,22.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15381 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,22.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15447 + components: + - type: Transform + pos: -24.5,21.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,21.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15479 + components: + - type: Transform + pos: -9.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15525 + components: + - type: Transform + pos: 3.5,23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15562 + components: + - type: Transform + pos: 19.5,32.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15587 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15610 + components: + - type: Transform + pos: -19.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15668 + components: + - type: Transform + pos: -49.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15701 + components: + - type: Transform + pos: -34.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15757 + components: + - type: Transform + pos: -39.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15776 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,20.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,32.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,33.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15859 + components: + - type: Transform + pos: -24.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15906 + components: + - type: Transform + pos: -36.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15907 + components: + - type: Transform + pos: -47.5,37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15908 + components: + - type: Transform + pos: -48.5,42.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,43.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,55.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,59.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15999 + components: + - type: Transform + pos: -8.5,63.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,50.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,53.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16025 + components: + - type: Transform + pos: -6.5,53.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,58.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,46.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16143 + components: + - type: Transform + pos: -24.5,48.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16155 + components: + - type: Transform + pos: -27.5,48.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,45.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,48.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,45.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 16171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,43.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16196 + components: + - type: Transform + pos: 6.5,54.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,59.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16238 + components: + - type: Transform + pos: 4.5,62.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,65.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16283 + components: + - type: Transform + pos: 11.5,67.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,71.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,74.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,77.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,77.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16339 + components: + - type: Transform + pos: -8.5,73.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,70.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,74.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 18354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-37.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: GasVolumePump + entities: + - uid: 2718 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-44.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GeigerCounter + entities: + - uid: 7118 + components: + - type: Transform + pos: -11.17118,34.431652 + parent: 1 + - uid: 8352 + components: + - type: Transform + pos: -28.472635,29.713726 + parent: 1 + - uid: 8712 + components: + - type: Transform + pos: -11.651781,-19.255426 + parent: 1 + - uid: 9087 + components: + - type: Transform + pos: 6.3722563,-21.377989 + parent: 1 + - uid: 9236 + components: + - type: Transform + pos: -22.141773,-11.462118 + parent: 1 + - uid: 10931 + components: + - type: Transform + pos: 28.285597,-18.438898 + parent: 1 + - uid: 11075 + components: + - type: Transform + pos: 19.660683,4.558688 + parent: 1 +- proto: Girder + entities: + - uid: 1853 + components: + - type: Transform + pos: -23.5,55.5 + parent: 1 + - uid: 3206 + components: + - type: Transform + pos: 37.5,43.5 + parent: 1 + - uid: 3598 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 1 + - uid: 4529 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 1 + - uid: 4556 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 1 + - uid: 6855 + components: + - type: Transform + pos: 37.5,48.5 + parent: 1 +- proto: GlowstickPurple + entities: + - uid: 9934 + components: + - type: Transform + pos: -22.667574,-29.32562 + parent: 1 +- proto: GravityGenerator + entities: + - uid: 4408 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 1 + - type: GravityGenerator + charge: 99 + - type: PointLight + radius: 174 +- proto: GravityGeneratorMini + entities: + - uid: 8815 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 8756 +- proto: Grille + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,18.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,17.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,18.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,17.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 42.5,16.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 41.5,16.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 40.5,16.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 39.5,16.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 34.5,16.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 35.5,16.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 36.5,16.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 37.5,16.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,28.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,27.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,24.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,23.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,33.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,32.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,34.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 33.5,19.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 33.5,18.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 33.5,17.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,16.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,16.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,12.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,39.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,33.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,34.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,35.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,34.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,33.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,11.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,11.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -45.5,3.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -46.5,3.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,7.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,8.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,9.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-2.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -42.5,6.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,11.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -43.5,6.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-5.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-5.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-5.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-5.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-5.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,11.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,11.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,11.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,11.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,9.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,10.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,11.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,12.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,12.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,12.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,12.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,12.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,12.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,12.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,29.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,22.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,35.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,35.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,35.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,35.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,35.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,35.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,35.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,35.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -33.5,10.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-3.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,25.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 8.5,73.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 8.5,72.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 5.5,83.5 + parent: 1 + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,84.5 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,84.5 + parent: 1 + - uid: 308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,84.5 + parent: 1 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,84.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,83.5 + parent: 1 + - uid: 311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,83.5 + parent: 1 + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,82.5 + parent: 1 + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,80.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,79.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,83.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,77.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,76.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -9.5,74.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -9.5,73.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -9.5,72.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 1.5,74.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 3.5,75.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 2.5,75.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 1.5,73.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 1.5,71.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 5.5,69.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 6.5,69.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 1.5,70.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 8.5,74.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 2.5,69.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 3.5,69.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 2.5,84.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: -1.5,84.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 6.5,82.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 7.5,80.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 7.5,79.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 8.5,77.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 8.5,76.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: -36.5,4.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: -22.5,12.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 777 + components: + - type: Transform + pos: -28.5,12.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: -27.5,12.5 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: -29.5,11.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: -2.5,28.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: -2.5,29.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: -2.5,30.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: 49.5,41.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: 49.5,42.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 49.5,43.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: 49.5,44.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 48.5,45.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 47.5,48.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 47.5,47.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 47.5,46.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: 46.5,49.5 + parent: 1 + - uid: 875 + components: + - type: Transform + pos: 45.5,49.5 + parent: 1 + - uid: 876 + components: + - type: Transform + pos: 44.5,50.5 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: 44.5,51.5 + parent: 1 + - uid: 878 + components: + - type: Transform + pos: 43.5,52.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: 42.5,52.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: 41.5,52.5 + parent: 1 + - uid: 888 + components: + - type: Transform + pos: 34.5,57.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: 33.5,57.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 31.5,57.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: 30.5,57.5 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 29.5,58.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 28.5,59.5 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 27.5,59.5 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 26.5,59.5 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: 23.5,59.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: 22.5,59.5 + parent: 1 + - uid: 898 + components: + - type: Transform + pos: 21.5,59.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: 19.5,61.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 19.5,62.5 + parent: 1 + - uid: 901 + components: + - type: Transform + pos: 19.5,63.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: 19.5,64.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: 18.5,65.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 17.5,65.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: 16.5,65.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: 15.5,65.5 + parent: 1 + - uid: 909 + components: + - type: Transform + pos: 13.5,69.5 + parent: 1 + - uid: 910 + components: + - type: Transform + pos: 13.5,70.5 + parent: 1 + - uid: 911 + components: + - type: Transform + pos: 12.5,71.5 + parent: 1 + - uid: 912 + components: + - type: Transform + pos: 11.5,71.5 + parent: 1 + - uid: 913 + components: + - type: Transform + pos: 10.5,71.5 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: 9.5,71.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + pos: -7.5,31.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: -5.5,31.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: -7.5,35.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + pos: -6.5,35.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + pos: -5.5,35.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: -4.5,30.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + pos: -4.5,28.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + pos: -7.5,27.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: -5.5,27.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + pos: -8.5,28.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + pos: -8.5,29.5 + parent: 1 + - uid: 1052 + components: + - type: Transform + pos: -8.5,30.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: -19.5,35.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: -22.5,22.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: -13.5,26.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: -12.5,30.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: -4.5,29.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + pos: -12.5,28.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: -12.5,27.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: -15.5,26.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + pos: -7.5,25.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + pos: -6.5,25.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + pos: -5.5,25.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: -15.5,16.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: -16.5,16.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: -17.5,16.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: -13.5,18.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: -13.5,19.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: -11.5,16.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: -2.5,22.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: -2.5,23.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + pos: -2.5,24.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + pos: 1.5,22.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + pos: 1.5,23.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: -8.5,21.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: -22.5,19.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: -47.5,17.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + pos: -46.5,34.5 + parent: 1 + - uid: 1283 + components: + - type: Transform + pos: -49.5,34.5 + parent: 1 + - uid: 1301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 1 + - uid: 1311 + components: + - type: Transform + pos: -15.5,23.5 + parent: 1 + - uid: 1312 + components: + - type: Transform + pos: -16.5,23.5 + parent: 1 + - uid: 1313 + components: + - type: Transform + pos: -17.5,23.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + pos: -45.5,0.5 + parent: 1 + - uid: 1346 + components: + - type: Transform + pos: -4.5,57.5 + parent: 1 + - uid: 1347 + components: + - type: Transform + pos: -4.5,56.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: -7.5,53.5 + parent: 1 + - uid: 1361 + components: + - type: Transform + pos: -7.5,52.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: -3.5,47.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: -4.5,47.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: -4.5,43.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: -7.5,43.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: -10.5,43.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: -13.5,43.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: -13.5,39.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: -12.5,39.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: -10.5,39.5 + parent: 1 + - uid: 1382 + components: + - type: Transform + pos: -9.5,39.5 + parent: 1 + - uid: 1383 + components: + - type: Transform + pos: -7.5,39.5 + parent: 1 + - uid: 1384 + components: + - type: Transform + pos: -6.5,39.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: -4.5,39.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + pos: -3.5,39.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + pos: -15.5,43.5 + parent: 1 + - uid: 1388 + components: + - type: Transform + pos: -16.5,43.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: -19.5,43.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: -18.5,43.5 + parent: 1 + - uid: 1407 + components: + - type: Transform + pos: -10.5,50.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: -14.5,51.5 + parent: 1 + - uid: 1409 + components: + - type: Transform + pos: -13.5,51.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + pos: -11.5,51.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + pos: -15.5,50.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + pos: -14.5,47.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + pos: -11.5,47.5 + parent: 1 + - uid: 1416 + components: + - type: Transform + pos: -15.5,48.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + pos: -15.5,49.5 + parent: 1 + - uid: 1427 + components: + - type: Transform + pos: -15.5,57.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: -24.5,43.5 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: -24.5,44.5 + parent: 1 + - uid: 1450 + components: + - type: Transform + pos: -24.5,42.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: -26.5,44.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: -26.5,43.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: -26.5,42.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + pos: -35.5,41.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: -34.5,39.5 + parent: 1 + - uid: 1473 + components: + - type: Transform + pos: -34.5,41.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: -39.5,46.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + pos: -39.5,45.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + pos: -41.5,46.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: -41.5,43.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: -41.5,42.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: -35.5,39.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: -32.5,39.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: -31.5,39.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: -30.5,39.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: -32.5,41.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: -31.5,41.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: -30.5,41.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + pos: -36.5,42.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + pos: -36.5,46.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + pos: -39.5,42.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: -27.5,46.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: -28.5,46.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + pos: -39.5,43.5 + parent: 1 + - uid: 1602 + components: + - type: Transform + pos: -24.5,59.5 + parent: 1 + - uid: 1603 + components: + - type: Transform + pos: -23.5,59.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + pos: -22.5,59.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + pos: -29.5,59.5 + parent: 1 + - uid: 1606 + components: + - type: Transform + pos: -28.5,59.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + pos: -27.5,59.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + pos: -20.5,61.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + pos: -20.5,62.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + pos: -20.5,63.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + pos: -20.5,64.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + pos: -30.5,58.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + pos: -32.5,57.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + pos: -35.5,57.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + pos: -34.5,57.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: -44.5,52.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: -43.5,52.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: -42.5,52.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: -45.5,51.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + pos: -45.5,50.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: -47.5,49.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: -46.5,49.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: -48.5,48.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: -48.5,47.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + pos: -48.5,46.5 + parent: 1 + - uid: 1634 + components: + - type: Transform + pos: -49.5,45.5 + parent: 1 + - uid: 1635 + components: + - type: Transform + pos: -50.5,44.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: -50.5,43.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + pos: -50.5,42.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: -50.5,41.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: -52.5,39.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: -52.5,35.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: -50.5,34.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + pos: -31.5,57.5 + parent: 1 + - uid: 1696 + components: + - type: Transform + pos: -12.5,71.5 + parent: 1 + - uid: 1697 + components: + - type: Transform + pos: -13.5,71.5 + parent: 1 + - uid: 1698 + components: + - type: Transform + pos: -14.5,70.5 + parent: 1 + - uid: 1699 + components: + - type: Transform + pos: -14.5,69.5 + parent: 1 + - uid: 1700 + components: + - type: Transform + pos: -14.5,68.5 + parent: 1 + - uid: 1701 + components: + - type: Transform + pos: -14.5,67.5 + parent: 1 + - uid: 1702 + components: + - type: Transform + pos: -16.5,65.5 + parent: 1 + - uid: 1703 + components: + - type: Transform + pos: -17.5,65.5 + parent: 1 + - uid: 1704 + components: + - type: Transform + pos: -18.5,65.5 + parent: 1 + - uid: 1705 + components: + - type: Transform + pos: -19.5,65.5 + parent: 1 + - uid: 1715 + components: + - type: Transform + pos: -45.5,39.5 + parent: 1 + - uid: 1718 + components: + - type: Transform + pos: -40.5,34.5 + parent: 1 + - uid: 1719 + components: + - type: Transform + pos: -40.5,33.5 + parent: 1 + - uid: 1720 + components: + - type: Transform + pos: -40.5,32.5 + parent: 1 + - uid: 1724 + components: + - type: Transform + pos: -43.5,35.5 + parent: 1 + - uid: 1725 + components: + - type: Transform + pos: -42.5,35.5 + parent: 1 + - uid: 1726 + components: + - type: Transform + pos: -41.5,35.5 + parent: 1 + - uid: 1760 + components: + - type: Transform + pos: -40.5,17.5 + parent: 1 + - uid: 1761 + components: + - type: Transform + pos: -40.5,18.5 + parent: 1 + - uid: 1762 + components: + - type: Transform + pos: -40.5,19.5 + parent: 1 + - uid: 1768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,29.5 + parent: 1 + - uid: 1769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,29.5 + parent: 1 + - uid: 1770 + components: + - type: Transform + pos: -43.5,31.5 + parent: 1 + - uid: 1775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,29.5 + parent: 1 + - uid: 1776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,29.5 + parent: 1 + - uid: 1780 + components: + - type: Transform + pos: -43.5,33.5 + parent: 1 + - uid: 1795 + components: + - type: Transform + pos: -14.5,57.5 + parent: 1 + - uid: 1863 + components: + - type: Transform + pos: 3.5,54.5 + parent: 1 + - uid: 1864 + components: + - type: Transform + pos: 3.5,55.5 + parent: 1 + - uid: 1865 + components: + - type: Transform + pos: 3.5,57.5 + parent: 1 + - uid: 1866 + components: + - type: Transform + pos: 3.5,52.5 + parent: 1 + - uid: 1871 + components: + - type: Transform + pos: 1.5,59.5 + parent: 1 + - uid: 1872 + components: + - type: Transform + pos: 1.5,60.5 + parent: 1 + - uid: 1873 + components: + - type: Transform + pos: 1.5,61.5 + parent: 1 + - uid: 1917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,51.5 + parent: 1 + - uid: 1918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,51.5 + parent: 1 + - uid: 1959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-6.5 + parent: 1 + - uid: 1960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-10.5 + parent: 1 + - uid: 1961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-12.5 + parent: 1 + - uid: 1962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-12.5 + parent: 1 + - uid: 1963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-10.5 + parent: 1 + - uid: 1964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-10.5 + parent: 1 + - uid: 1965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-11.5 + parent: 1 + - uid: 1966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-11.5 + parent: 1 + - uid: 1995 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 1 + - uid: 1997 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 1 + - uid: 2006 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 1 + - uid: 2012 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 1 + - uid: 2013 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 1 + - uid: 2014 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 1 + - uid: 2015 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 1 + - uid: 2016 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 1 + - uid: 2017 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 1 + - uid: 2018 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1 + - uid: 2019 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 1 + - uid: 2029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 1 + - uid: 2032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 1 + - uid: 2034 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 1 + - uid: 2035 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 1 + - uid: 2040 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 1 + - uid: 2046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 1 + - uid: 2056 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 1 + - uid: 2068 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 1 + - uid: 2071 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 1 + - uid: 2073 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 1 + - uid: 2076 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 1 + - uid: 2077 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 1 + - uid: 2088 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 1 + - uid: 2089 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 1 + - uid: 2090 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 1 + - uid: 2091 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 1 + - uid: 2092 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 1 + - uid: 2093 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 1 + - uid: 2094 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 1 + - uid: 2098 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 1 + - uid: 2099 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 1 + - uid: 2100 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 1 + - uid: 2101 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 1 + - uid: 2102 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 1 + - uid: 2103 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 1 + - uid: 2105 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 1 + - uid: 2106 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 1 + - uid: 2107 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 1 + - uid: 2114 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 1 + - uid: 2115 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 1 + - uid: 2116 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 1 + - uid: 2117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 1 + - uid: 2140 + components: + - type: Transform + pos: -52.5,12.5 + parent: 1 + - uid: 2141 + components: + - type: Transform + pos: -52.5,16.5 + parent: 1 + - uid: 2148 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 1 + - uid: 2149 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 1 + - uid: 2150 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 1 + - uid: 2151 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 1 + - uid: 2152 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 1 + - uid: 2153 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 1 + - uid: 2154 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 1 + - uid: 2155 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 1 + - uid: 2156 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 1 + - uid: 2157 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 1 + - uid: 2158 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 1 + - uid: 2159 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 1 + - uid: 2160 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 1 + - uid: 2161 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 1 + - uid: 2162 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 1 + - uid: 2163 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 1 + - uid: 2164 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 1 + - uid: 2165 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 1 + - uid: 2166 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 1 + - uid: 2167 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 1 + - uid: 2168 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 1 + - uid: 2241 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 2255 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1 + - uid: 2256 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 1 + - uid: 2257 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 1 + - uid: 2258 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 1 + - uid: 2259 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 1 + - uid: 2260 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 1 + - uid: 2261 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 1 + - uid: 2262 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 1 + - uid: 2263 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 1 + - uid: 2264 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 1 + - uid: 2265 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 1 + - uid: 2266 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 1 + - uid: 2267 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 1 + - uid: 2293 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 1 + - uid: 2294 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 1 + - uid: 2295 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 1 + - uid: 2320 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 2335 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - uid: 2380 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 2387 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 2388 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1 + - uid: 2397 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 1 + - uid: 2408 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 2437 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1 + - uid: 2442 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 1 + - uid: 2443 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 1 + - uid: 2514 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 + - uid: 2516 + components: + - type: Transform + pos: 28.5,0.5 + parent: 1 + - uid: 2518 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 1 + - uid: 2520 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 2524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,6.5 + parent: 1 + - uid: 2525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,5.5 + parent: 1 + - uid: 2526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,4.5 + parent: 1 + - uid: 2699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-46.5 + parent: 1 + - uid: 2704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-46.5 + parent: 1 + - uid: 2720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-46.5 + parent: 1 + - uid: 2798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 1 + - uid: 2799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 1 + - uid: 2800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + - uid: 2801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 1 + - uid: 2802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 1 + - uid: 2803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1 + - uid: 2807 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 1 + - uid: 2808 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 1 + - uid: 2815 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 1 + - uid: 2816 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 1 + - uid: 2872 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 1 + - uid: 2884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + - uid: 2885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,4.5 + parent: 1 + - uid: 2903 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 1 + - uid: 2904 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 1 + - uid: 2905 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 1 + - uid: 2906 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 1 + - uid: 2907 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 1 + - uid: 2908 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 1 + - uid: 2909 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 1 + - uid: 2910 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 1 + - uid: 2911 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 1 + - uid: 2912 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 1 + - uid: 2913 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 1 + - uid: 2914 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 1 + - uid: 2925 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 1 + - uid: 2926 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 1 + - uid: 2927 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 1 + - uid: 3046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 1 + - uid: 3062 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 1 + - uid: 3063 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 1 + - uid: 3064 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 1 + - uid: 3065 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 1 + - uid: 3067 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 1 + - uid: 3068 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 1 + - uid: 3069 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 1 + - uid: 3070 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 1 + - uid: 3071 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 1 + - uid: 3072 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 1 + - uid: 3073 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 1 + - uid: 3077 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 1 + - uid: 3079 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 1 + - uid: 3080 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 1 + - uid: 3081 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 1 + - uid: 3082 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 1 + - uid: 3089 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 1 + - uid: 3091 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 1 + - uid: 3093 + components: + - type: Transform + pos: 36.5,77.5 + parent: 1 + - uid: 3095 + components: + - type: Transform + pos: 35.5,76.5 + parent: 1 + - uid: 3096 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 1 + - uid: 3097 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 1 + - uid: 3098 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 1 + - uid: 3099 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 1 + - uid: 3100 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 1 + - uid: 3139 + components: + - type: Transform + pos: 34.5,76.5 + parent: 1 + - uid: 3158 + components: + - type: Transform + pos: 30.5,76.5 + parent: 1 + - uid: 3184 + components: + - type: Transform + pos: 39.5,47.5 + parent: 1 + - uid: 3231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,48.5 + parent: 1 + - uid: 3242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,48.5 + parent: 1 + - uid: 3340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,49.5 + parent: 1 + - uid: 3343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,49.5 + parent: 1 + - uid: 3346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,44.5 + parent: 1 + - uid: 3518 + components: + - type: Transform + pos: -50.5,17.5 + parent: 1 + - uid: 3520 + components: + - type: Transform + pos: -49.5,17.5 + parent: 1 + - uid: 3525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,45.5 + parent: 1 + - uid: 3526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,46.5 + parent: 1 + - uid: 3532 + components: + - type: Transform + pos: 42.5,41.5 + parent: 1 + - uid: 3578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 1 + - uid: 3582 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 1 + - uid: 3586 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1 + - uid: 3609 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1 + - uid: 3622 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1 + - uid: 3638 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 + - uid: 3645 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 3646 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 3692 + components: + - type: Transform + pos: 12.5,35.5 + parent: 1 + - uid: 3693 + components: + - type: Transform + pos: 11.5,35.5 + parent: 1 + - uid: 3694 + components: + - type: Transform + pos: 10.5,35.5 + parent: 1 + - uid: 3731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 1 + - uid: 3732 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 1 + - uid: 3747 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 + - uid: 3751 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 1 + - uid: 3757 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 1 + - uid: 3758 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 1 + - uid: 3763 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 1 + - uid: 3764 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 1 + - uid: 3774 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 3776 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 1 + - uid: 3777 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 1 + - uid: 3778 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1 + - uid: 3779 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1 + - uid: 3780 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 1 + - uid: 3807 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 1 + - uid: 3991 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 1 + - uid: 4008 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 1 + - uid: 4079 + components: + - type: Transform + pos: 13.5,68.5 + parent: 1 + - uid: 4084 + components: + - type: Transform + pos: 15.5,68.5 + parent: 1 + - uid: 4085 + components: + - type: Transform + pos: 15.5,66.5 + parent: 1 + - uid: 4101 + components: + - type: Transform + pos: -53.5,46.5 + parent: 1 + - uid: 4120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,16.5 + parent: 1 + - uid: 4121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,16.5 + parent: 1 + - uid: 4122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,16.5 + parent: 1 + - uid: 4129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 1 + - uid: 4132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 1 + - uid: 4206 + components: + - type: Transform + pos: 14.5,68.5 + parent: 1 + - uid: 4215 + components: + - type: Transform + pos: 29.5,76.5 + parent: 1 + - uid: 4244 + components: + - type: Transform + pos: -35.5,8.5 + parent: 1 + - uid: 4339 + components: + - type: Transform + pos: -7.5,59.5 + parent: 1 + - uid: 4357 + components: + - type: Transform + pos: 27.5,76.5 + parent: 1 + - uid: 4362 + components: + - type: Transform + pos: 38.5,77.5 + parent: 1 + - uid: 4372 + components: + - type: Transform + pos: 39.5,77.5 + parent: 1 + - uid: 4373 + components: + - type: Transform + pos: 32.5,76.5 + parent: 1 + - uid: 4374 + components: + - type: Transform + pos: 40.5,76.5 + parent: 1 + - uid: 4375 + components: + - type: Transform + pos: 41.5,76.5 + parent: 1 + - uid: 4376 + components: + - type: Transform + pos: 43.5,76.5 + parent: 1 + - uid: 4377 + components: + - type: Transform + pos: 44.5,76.5 + parent: 1 + - uid: 4379 + components: + - type: Transform + pos: -47.5,76.5 + parent: 1 + - uid: 4397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - uid: 4406 + components: + - type: Transform + pos: 3.5,65.5 + parent: 1 + - uid: 4409 + components: + - type: Transform + pos: 29.5,42.5 + parent: 1 + - uid: 4410 + components: + - type: Transform + pos: 29.5,39.5 + parent: 1 + - uid: 4411 + components: + - type: Transform + pos: 32.5,42.5 + parent: 1 + - uid: 4412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,39.5 + parent: 1 + - uid: 4428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,34.5 + parent: 1 + - uid: 4429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,29.5 + parent: 1 + - uid: 4430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,35.5 + parent: 1 + - uid: 4431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,35.5 + parent: 1 + - uid: 4464 + components: + - type: Transform + pos: -51.5,49.5 + parent: 1 + - uid: 4465 + components: + - type: Transform + pos: 20.5,39.5 + parent: 1 + - uid: 4466 + components: + - type: Transform + pos: 19.5,39.5 + parent: 1 + - uid: 4467 + components: + - type: Transform + pos: 21.5,39.5 + parent: 1 + - uid: 4471 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 1 + - uid: 4473 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 1 + - uid: 4474 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 1 + - uid: 4475 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 1 + - uid: 4476 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 1 + - uid: 4477 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 1 + - uid: 4478 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 1 + - uid: 4479 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 1 + - uid: 4480 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 1 + - uid: 4481 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 1 + - uid: 4482 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 1 + - uid: 4483 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 1 + - uid: 4484 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 1 + - uid: 4485 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 1 + - uid: 4487 + components: + - type: Transform + pos: 37.5,77.5 + parent: 1 + - uid: 4488 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 1 + - uid: 4490 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 1 + - uid: 4504 + components: + - type: Transform + pos: -48.5,76.5 + parent: 1 + - uid: 4507 + components: + - type: Transform + pos: 45.5,35.5 + parent: 1 + - uid: 4508 + components: + - type: Transform + pos: 49.5,35.5 + parent: 1 + - uid: 5707 + components: + - type: Transform + pos: -46.5,39.5 + parent: 1 + - uid: 5730 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 5731 + components: + - type: Transform + pos: 22.5,16.5 + parent: 1 + - uid: 5732 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 + - uid: 5733 + components: + - type: Transform + pos: 27.5,16.5 + parent: 1 + - uid: 5734 + components: + - type: Transform + pos: 28.5,17.5 + parent: 1 + - uid: 5735 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1 + - uid: 5736 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1 + - uid: 5737 + components: + - type: Transform + pos: 28.5,23.5 + parent: 1 + - uid: 5794 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 1 + - uid: 5827 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 1 + - uid: 6096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 1 + - uid: 6097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 1 + - uid: 6103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 1 + - uid: 6104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,35.5 + parent: 1 + - uid: 6141 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 1 + - uid: 6142 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 1 + - uid: 6143 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 1 + - uid: 6144 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 1 + - uid: 6145 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 1 + - uid: 6146 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 1 + - uid: 6147 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 1 + - uid: 6158 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 1 + - uid: 6159 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 1 + - uid: 6160 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 1 + - uid: 6161 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 1 + - uid: 6163 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 1 + - uid: 6165 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 1 + - uid: 6166 + components: + - type: Transform + pos: 37.5,-24.5 + parent: 1 + - uid: 6168 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 1 + - uid: 6170 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 1 + - uid: 6172 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 1 + - uid: 6173 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 1 + - uid: 6175 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 1 + - uid: 6185 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 1 + - uid: 6187 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 1 + - uid: 6189 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 1 + - uid: 6190 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 1 + - uid: 6191 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 1 + - uid: 6192 + components: + - type: Transform + pos: 16.5,-47.5 + parent: 1 + - uid: 6194 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 1 + - uid: 6195 + components: + - type: Transform + pos: -51.5,47.5 + parent: 1 + - uid: 6197 + components: + - type: Transform + pos: -48.5,53.5 + parent: 1 + - uid: 6200 + components: + - type: Transform + pos: -49.5,51.5 + parent: 1 + - uid: 6201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,87.5 + parent: 1 + - uid: 6202 + components: + - type: Transform + pos: -51.5,50.5 + parent: 1 + - uid: 6203 + components: + - type: Transform + pos: -47.5,53.5 + parent: 1 + - uid: 6204 + components: + - type: Transform + pos: -46.5,54.5 + parent: 1 + - uid: 6205 + components: + - type: Transform + pos: -46.5,55.5 + parent: 1 + - uid: 6206 + components: + - type: Transform + pos: -46.5,56.5 + parent: 1 + - uid: 6207 + components: + - type: Transform + pos: -45.5,56.5 + parent: 1 + - uid: 6209 + components: + - type: Transform + pos: -43.5,56.5 + parent: 1 + - uid: 6210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,87.5 + parent: 1 + - uid: 6212 + components: + - type: Transform + pos: -40.5,54.5 + parent: 1 + - uid: 6213 + components: + - type: Transform + pos: -40.5,55.5 + parent: 1 + - uid: 6214 + components: + - type: Transform + pos: -39.5,53.5 + parent: 1 + - uid: 6215 + components: + - type: Transform + pos: -37.5,53.5 + parent: 1 + - uid: 6218 + components: + - type: Transform + pos: -34.5,60.5 + parent: 1 + - uid: 6219 + components: + - type: Transform + pos: -33.5,60.5 + parent: 1 + - uid: 6220 + components: + - type: Transform + pos: -32.5,60.5 + parent: 1 + - uid: 6223 + components: + - type: Transform + pos: -31.5,62.5 + parent: 1 + - uid: 6224 + components: + - type: Transform + pos: -30.5,62.5 + parent: 1 + - uid: 6226 + components: + - type: Transform + pos: -28.5,62.5 + parent: 1 + - uid: 6228 + components: + - type: Transform + pos: -26.5,62.5 + parent: 1 + - uid: 6229 + components: + - type: Transform + pos: -30.5,76.5 + parent: 1 + - uid: 6230 + components: + - type: Transform + pos: -24.5,62.5 + parent: 1 + - uid: 6231 + components: + - type: Transform + pos: -23.5,62.5 + parent: 1 + - uid: 6232 + components: + - type: Transform + pos: -22.5,62.5 + parent: 1 + - uid: 6233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,87.5 + parent: 1 + - uid: 6234 + components: + - type: Transform + pos: -21.5,68.5 + parent: 1 + - uid: 6235 + components: + - type: Transform + pos: -20.5,68.5 + parent: 1 + - uid: 6238 + components: + - type: Transform + pos: -17.5,68.5 + parent: 1 + - uid: 6239 + components: + - type: Transform + pos: -16.5,68.5 + parent: 1 + - uid: 6240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,87.5 + parent: 1 + - uid: 6241 + components: + - type: Transform + pos: -15.5,74.5 + parent: 1 + - uid: 6243 + components: + - type: Transform + pos: -13.5,74.5 + parent: 1 + - uid: 6244 + components: + - type: Transform + pos: -12.5,74.5 + parent: 1 + - uid: 6245 + components: + - type: Transform + pos: -12.5,75.5 + parent: 1 + - uid: 6246 + components: + - type: Transform + pos: -12.5,76.5 + parent: 1 + - uid: 6247 + components: + - type: Transform + pos: -12.5,77.5 + parent: 1 + - uid: 6248 + components: + - type: Transform + pos: -12.5,78.5 + parent: 1 + - uid: 6249 + components: + - type: Transform + pos: -12.5,79.5 + parent: 1 + - uid: 6250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,87.5 + parent: 1 + - uid: 6251 + components: + - type: Transform + pos: 31.5,60.5 + parent: 1 + - uid: 6252 + components: + - type: Transform + pos: -11.5,79.5 + parent: 1 + - uid: 6254 + components: + - type: Transform + pos: -11.5,81.5 + parent: 1 + - uid: 6255 + components: + - type: Transform + pos: -11.5,82.5 + parent: 1 + - uid: 6256 + components: + - type: Transform + pos: -11.5,83.5 + parent: 1 + - uid: 6258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,86.5 + parent: 1 + - uid: 6259 + components: + - type: Transform + pos: -29.5,76.5 + parent: 1 + - uid: 6260 + components: + - type: Transform + pos: 10.5,83.5 + parent: 1 + - uid: 6261 + components: + - type: Transform + pos: 10.5,81.5 + parent: 1 + - uid: 6262 + components: + - type: Transform + pos: 10.5,80.5 + parent: 1 + - uid: 6263 + components: + - type: Transform + pos: 10.5,79.5 + parent: 1 + - uid: 6264 + components: + - type: Transform + pos: 11.5,79.5 + parent: 1 + - uid: 6265 + components: + - type: Transform + pos: 11.5,78.5 + parent: 1 + - uid: 6266 + components: + - type: Transform + pos: -41.5,76.5 + parent: 1 + - uid: 6268 + components: + - type: Transform + pos: 11.5,75.5 + parent: 1 + - uid: 6269 + components: + - type: Transform + pos: 11.5,74.5 + parent: 1 + - uid: 6270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,86.5 + parent: 1 + - uid: 6271 + components: + - type: Transform + pos: 12.5,74.5 + parent: 1 + - uid: 6272 + components: + - type: Transform + pos: 13.5,74.5 + parent: 1 + - uid: 6273 + components: + - type: Transform + pos: 14.5,74.5 + parent: 1 + - uid: 6274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,86.5 + parent: 1 + - uid: 6281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,86.5 + parent: 1 + - uid: 6282 + components: + - type: Transform + pos: 21.5,62.5 + parent: 1 + - uid: 6284 + components: + - type: Transform + pos: 23.5,62.5 + parent: 1 + - uid: 6285 + components: + - type: Transform + pos: 24.5,62.5 + parent: 1 + - uid: 6286 + components: + - type: Transform + pos: 25.5,62.5 + parent: 1 + - uid: 6289 + components: + - type: Transform + pos: 28.5,62.5 + parent: 1 + - uid: 6290 + components: + - type: Transform + pos: 29.5,62.5 + parent: 1 + - uid: 6291 + components: + - type: Transform + pos: 30.5,62.5 + parent: 1 + - uid: 6294 + components: + - type: Transform + pos: 33.5,60.5 + parent: 1 + - uid: 6295 + components: + - type: Transform + pos: 34.5,60.5 + parent: 1 + - uid: 6296 + components: + - type: Transform + pos: -42.5,76.5 + parent: 1 + - uid: 6297 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 1 + - uid: 6298 + components: + - type: Transform + pos: -44.5,76.5 + parent: 1 + - uid: 6299 + components: + - type: Transform + pos: -45.5,76.5 + parent: 1 + - uid: 6300 + components: + - type: Transform + pos: 41.5,58.5 + parent: 1 + - uid: 6301 + components: + - type: Transform + pos: 42.5,56.5 + parent: 1 + - uid: 6302 + components: + - type: Transform + pos: 42.5,55.5 + parent: 1 + - uid: 6304 + components: + - type: Transform + pos: 44.5,55.5 + parent: 1 + - uid: 6305 + components: + - type: Transform + pos: 46.5,52.5 + parent: 1 + - uid: 6306 + components: + - type: Transform + pos: 47.5,52.5 + parent: 1 + - uid: 6307 + components: + - type: Transform + pos: 49.5,48.5 + parent: 1 + - uid: 6308 + components: + - type: Transform + pos: 50.5,48.5 + parent: 1 + - uid: 6309 + components: + - type: Transform + pos: 51.5,48.5 + parent: 1 + - uid: 6310 + components: + - type: Transform + pos: 52.5,47.5 + parent: 1 + - uid: 6312 + components: + - type: Transform + pos: 52.5,45.5 + parent: 1 + - uid: 6313 + components: + - type: Transform + pos: 52.5,44.5 + parent: 1 + - uid: 6314 + components: + - type: Transform + pos: 52.5,43.5 + parent: 1 + - uid: 6316 + components: + - type: Transform + pos: 52.5,41.5 + parent: 1 + - uid: 6317 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 1 + - uid: 6318 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 1 + - uid: 6319 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 1 + - uid: 6320 + components: + - type: Transform + pos: 17.5,-47.5 + parent: 1 + - uid: 6321 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 1 + - uid: 6322 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 1 + - uid: 6323 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 1 + - uid: 6324 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 1 + - uid: 6325 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 1 + - uid: 6326 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 1 + - uid: 6327 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 1 + - uid: 6328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,87.5 + parent: 1 + - uid: 6329 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 1 + - uid: 6330 + components: + - type: Transform + pos: -39.5,77.5 + parent: 1 + - uid: 6331 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 1 + - uid: 6332 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 1 + - uid: 6341 + components: + - type: Transform + pos: 39.5,54.5 + parent: 1 + - uid: 6342 + components: + - type: Transform + pos: 39.5,55.5 + parent: 1 + - uid: 6385 + components: + - type: Transform + pos: -38.5,77.5 + parent: 1 + - uid: 6462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,87.5 + parent: 1 + - uid: 6463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,87.5 + parent: 1 + - uid: 6464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,87.5 + parent: 1 + - uid: 6465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,87.5 + parent: 1 + - uid: 6466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,86.5 + parent: 1 + - uid: 6467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,86.5 + parent: 1 + - uid: 6469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,86.5 + parent: 1 + - uid: 6470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,86.5 + parent: 1 + - uid: 6478 + components: + - type: Transform + pos: -53.5,45.5 + parent: 1 + - uid: 6483 + components: + - type: Transform + pos: -53.5,42.5 + parent: 1 + - uid: 6492 + components: + - type: Transform + pos: -53.5,43.5 + parent: 1 + - uid: 6493 + components: + - type: Transform + pos: -53.5,41.5 + parent: 1 + - uid: 6497 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 1 + - uid: 6498 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 1 + - uid: 6499 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 1 + - uid: 6510 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 1 + - uid: 6511 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 1 + - uid: 6515 + components: + - type: Transform + pos: 50.5,-12.5 + parent: 1 + - uid: 6530 + components: + - type: Transform + pos: -37.5,77.5 + parent: 1 + - uid: 6531 + components: + - type: Transform + pos: -36.5,77.5 + parent: 1 + - uid: 6532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 1 + - uid: 6533 + components: + - type: Transform + pos: -31.5,76.5 + parent: 1 + - uid: 6534 + components: + - type: Transform + pos: -35.5,76.5 + parent: 1 + - uid: 6535 + components: + - type: Transform + pos: -34.5,76.5 + parent: 1 + - uid: 6536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,7.5 + parent: 1 + - uid: 6537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,7.5 + parent: 1 + - uid: 6538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 1 + - uid: 6542 + components: + - type: Transform + pos: -33.5,76.5 + parent: 1 + - uid: 6562 + components: + - type: Transform + pos: 45.5,76.5 + parent: 1 + - uid: 6567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,11.5 + parent: 1 + - uid: 6568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,11.5 + parent: 1 + - uid: 6570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 1 + - uid: 6571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,5.5 + parent: 1 + - uid: 6581 + components: + - type: Transform + pos: 4.5,65.5 + parent: 1 + - uid: 6826 + components: + - type: Transform + pos: -46.5,0.5 + parent: 1 + - uid: 6852 + components: + - type: Transform + pos: 37.5,49.5 + parent: 1 + - uid: 7178 + components: + - type: Transform + pos: -46.5,17.5 + parent: 1 + - uid: 7179 + components: + - type: Transform + pos: -48.5,17.5 + parent: 1 + - uid: 7248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 1 + - uid: 7399 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 1 + - uid: 7634 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 1 + - uid: 7642 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 1 + - uid: 7647 + components: + - type: Transform + pos: 47.5,76.5 + parent: 1 + - uid: 7653 + components: + - type: Transform + pos: -11.5,58.5 + parent: 1 + - uid: 7656 + components: + - type: Transform + pos: -10.5,58.5 + parent: 1 + - uid: 7657 + components: + - type: Transform + pos: -9.5,61.5 + parent: 1 + - uid: 7673 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 1 + - uid: 7678 + components: + - type: Transform + pos: 26.5,67.5 + parent: 1 + - uid: 7679 + components: + - type: Transform + pos: 26.5,68.5 + parent: 1 + - uid: 7680 + components: + - type: Transform + pos: 26.5,69.5 + parent: 1 + - uid: 7682 + components: + - type: Transform + pos: 26.5,71.5 + parent: 1 + - uid: 7684 + components: + - type: Transform + pos: 26.5,73.5 + parent: 1 + - uid: 7685 + components: + - type: Transform + pos: 26.5,74.5 + parent: 1 + - uid: 7686 + components: + - type: Transform + pos: 26.5,75.5 + parent: 1 + - uid: 7687 + components: + - type: Transform + pos: 26.5,76.5 + parent: 1 + - uid: 7719 + components: + - type: Transform + pos: 48.5,76.5 + parent: 1 + - uid: 7720 + components: + - type: Transform + pos: 48.5,75.5 + parent: 1 + - uid: 7721 + components: + - type: Transform + pos: 48.5,74.5 + parent: 1 + - uid: 7723 + components: + - type: Transform + pos: 48.5,72.5 + parent: 1 + - uid: 7725 + components: + - type: Transform + pos: 48.5,70.5 + parent: 1 + - uid: 7726 + components: + - type: Transform + pos: 48.5,69.5 + parent: 1 + - uid: 7727 + components: + - type: Transform + pos: 48.5,68.5 + parent: 1 + - uid: 7728 + components: + - type: Transform + pos: 48.5,67.5 + parent: 1 + - uid: 7774 + components: + - type: Transform + pos: -46.5,6.5 + parent: 1 + - uid: 7775 + components: + - type: Transform + pos: -45.5,6.5 + parent: 1 + - uid: 7886 + components: + - type: Transform + pos: -47.5,39.5 + parent: 1 + - uid: 7887 + components: + - type: Transform + pos: -41.5,45.5 + parent: 1 + - uid: 7902 + components: + - type: Transform + pos: -44.5,39.5 + parent: 1 + - uid: 7914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,21.5 + parent: 1 + - uid: 7916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,26.5 + parent: 1 + - uid: 7924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,26.5 + parent: 1 + - uid: 7933 + components: + - type: Transform + pos: -43.5,32.5 + parent: 1 + - uid: 8388 + components: + - type: Transform + pos: 13.5,42.5 + parent: 1 + - uid: 8554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 1 + - uid: 8588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,16.5 + parent: 1 + - uid: 8589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,16.5 + parent: 1 + - uid: 8640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,31.5 + parent: 1 + - uid: 8729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 1 + - uid: 8730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 1 + - uid: 8757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 8756 + - uid: 8758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 8756 + - uid: 8759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 8756 + - uid: 8760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 8756 + - uid: 8777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 8756 + - uid: 8778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 8756 + - uid: 8783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 8756 + - uid: 8784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 8756 + - uid: 8785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 8756 + - uid: 8786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 8756 + - uid: 8787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 8756 + - uid: 8793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 8756 + - uid: 8794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 8756 + - uid: 8802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 8756 + - uid: 8809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 8756 + - uid: 8810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 8756 + - uid: 8816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 8756 + - uid: 8817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 8756 + - uid: 8945 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - uid: 8946 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 1 + - uid: 8989 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 1 + - uid: 9242 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 9243 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 1 + - uid: 9580 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1 + - uid: 9582 + components: + - type: Transform + pos: 1.5,30.5 + parent: 1 + - uid: 9583 + components: + - type: Transform + pos: 1.5,33.5 + parent: 1 + - uid: 9604 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 1 + - uid: 10146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,53.5 + parent: 1 + - uid: 10148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,53.5 + parent: 1 + - uid: 10962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-13.5 + parent: 1 + - uid: 10963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-13.5 + parent: 1 + - uid: 11079 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1 + - uid: 11080 + components: + - type: Transform + pos: 21.5,11.5 + parent: 1 + - uid: 14093 + components: + - type: Transform + pos: -48.5,34.5 + parent: 1 + - uid: 14094 + components: + - type: Transform + pos: -47.5,34.5 + parent: 1 + - uid: 18269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,76.5 + parent: 1 + - uid: 18270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,75.5 + parent: 1 + - uid: 18271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,74.5 + parent: 1 + - uid: 18272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,72.5 + parent: 1 + - uid: 18273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,71.5 + parent: 1 + - uid: 18274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,70.5 + parent: 1 + - uid: 18275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,69.5 + parent: 1 + - uid: 18277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,67.5 + parent: 1 + - uid: 18303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,76.5 + parent: 1 + - uid: 18304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,75.5 + parent: 1 + - uid: 18305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,74.5 + parent: 1 + - uid: 18306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,73.5 + parent: 1 + - uid: 18307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,72.5 + parent: 1 + - uid: 18310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,69.5 + parent: 1 + - uid: 18311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,68.5 + parent: 1 + - uid: 18312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,67.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 4358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,76.5 + parent: 1 + - uid: 4359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,76.5 + parent: 1 + - uid: 4380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,76.5 + parent: 1 + - uid: 4381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,76.5 + parent: 1 + - uid: 4486 + components: + - type: Transform + pos: 35.5,77.5 + parent: 1 + - uid: 6151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-25.5 + parent: 1 + - uid: 6155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,52.5 + parent: 1 + - uid: 6156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,76.5 + parent: 1 + - uid: 6157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,76.5 + parent: 1 + - uid: 6162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,40.5 + parent: 1 + - uid: 6164 + components: + - type: Transform + pos: 52.5,46.5 + parent: 1 + - uid: 6169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,62.5 + parent: 1 + - uid: 6171 + components: + - type: Transform + pos: 52.5,48.5 + parent: 1 + - uid: 6174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,62.5 + parent: 1 + - uid: 6176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,76.5 + parent: 1 + - uid: 6177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,76.5 + parent: 1 + - uid: 6179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,87.5 + parent: 1 + - uid: 6180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,62.5 + parent: 1 + - uid: 6181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,60.5 + parent: 1 + - uid: 6182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,42.5 + parent: 1 + - uid: 6183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,58.5 + parent: 1 + - uid: 6186 + components: + - type: Transform + pos: 42.5,57.5 + parent: 1 + - uid: 6188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,55.5 + parent: 1 + - uid: 6196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-26.5 + parent: 1 + - uid: 6199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,76.5 + parent: 1 + - uid: 6216 + components: + - type: Transform + pos: -53.5,44.5 + parent: 1 + - uid: 6217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-28.5 + parent: 1 + - uid: 6221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,76.5 + parent: 1 + - uid: 6227 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 1 + - uid: 6236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-36.5 + parent: 1 + - uid: 6237 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 1 + - uid: 6242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-46.5 + parent: 1 + - uid: 6253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-42.5 + parent: 1 + - uid: 6257 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 1 + - uid: 6267 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 1 + - uid: 6276 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 1 + - uid: 6283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-42.5 + parent: 1 + - uid: 6287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-44.5 + parent: 1 + - uid: 6288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,87.5 + parent: 1 + - uid: 6292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,46.5 + parent: 1 + - uid: 6293 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 1 + - uid: 6303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,86.5 + parent: 1 + - uid: 6311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,77.5 + parent: 1 + - uid: 6315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,82.5 + parent: 1 + - uid: 6355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,56.5 + parent: 1 + - uid: 6468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 1 + - uid: 6851 + components: + - type: Transform + pos: 37.5,50.5 + parent: 1 + - uid: 7625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,76.5 + parent: 1 + - uid: 7626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,76.5 + parent: 1 + - uid: 7627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,76.5 + parent: 1 + - uid: 7628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,77.5 + parent: 1 + - uid: 7629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,76.5 + parent: 1 + - uid: 7677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,73.5 + parent: 1 + - uid: 7698 + components: + - type: Transform + pos: 26.5,70.5 + parent: 1 + - uid: 7701 + components: + - type: Transform + pos: 26.5,72.5 + parent: 1 + - uid: 7706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,72.5 + parent: 1 + - uid: 7709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,70.5 + parent: 1 + - uid: 7713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,66.5 + parent: 1 + - uid: 7717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,66.5 + parent: 1 + - uid: 7718 + components: + - type: Transform + pos: 48.5,71.5 + parent: 1 + - uid: 7724 + components: + - type: Transform + pos: 48.5,73.5 + parent: 1 + - uid: 8115 + components: + - type: Transform + pos: -51.5,48.5 + parent: 1 + - uid: 9222 + components: + - type: Transform + pos: -49.5,52.5 + parent: 1 + - uid: 9224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,60.5 + parent: 1 + - uid: 9585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,73.5 + parent: 1 + - uid: 9586 + components: + - type: Transform + pos: 11.5,76.5 + parent: 1 + - uid: 9707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,61.5 + parent: 1 + - uid: 9708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,62.5 + parent: 1 + - uid: 14034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,58.5 + parent: 1 + - uid: 18180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,62.5 + parent: 1 + - uid: 18181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,62.5 + parent: 1 + - uid: 18182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,62.5 + parent: 1 + - uid: 18183 + components: + - type: Transform + pos: -11.5,80.5 + parent: 1 + - uid: 18184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,68.5 + parent: 1 + - uid: 18185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,68.5 + parent: 1 + - uid: 18186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,73.5 + parent: 1 + - uid: 18187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,74.5 + parent: 1 + - uid: 18188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,86.5 + parent: 1 + - uid: 18189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,87.5 + parent: 1 + - uid: 18266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,66.5 + parent: 1 + - uid: 18276 + components: + - type: Transform + pos: -27.5,68.5 + parent: 1 + - uid: 18278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,73.5 + parent: 1 + - uid: 18315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,71.5 + parent: 1 + - uid: 18316 + components: + - type: Transform + pos: -49.5,70.5 + parent: 1 + - uid: 18317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,66.5 + parent: 1 +- proto: GroundCannabis + entities: + - uid: 18328 + components: + - type: Transform + pos: -4.3371787,11.84107 + parent: 1 +- proto: GunSafeDisabler + entities: + - uid: 3416 + components: + - type: Transform + pos: -6.5,59.5 + parent: 1 + - uid: 7766 + components: + - type: Transform + pos: -17.5,40.5 + parent: 1 +- proto: GunSafePistolMk58 + entities: + - uid: 3417 + components: + - type: Transform + pos: -4.5,59.5 + parent: 1 +- proto: GunSafeRifleLecter + entities: + - uid: 4382 + components: + - type: Transform + pos: -4.5,64.5 + parent: 1 +- proto: GunSafeShotgunEnforcer + entities: + - uid: 3408 + components: + - type: Transform + pos: -5.5,64.5 + parent: 1 +- proto: GunSafeShotgunKammerer + entities: + - uid: 8148 + components: + - type: Transform + pos: -5.5,59.5 + parent: 1 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 7693 + components: + - type: Transform + pos: -6.5,64.5 + parent: 1 +- proto: Handcuffs + entities: + - uid: 8071 + components: + - type: Transform + pos: 3.5258956,80.448524 + parent: 1 + - uid: 9396 + components: + - type: Transform + pos: -34.812588,-5.3036704 + parent: 1 + - uid: 9418 + components: + - type: Transform + pos: 26.351677,-13.233653 + parent: 1 +- proto: HandheldCrewMonitor + entities: + - uid: 8490 + components: + - type: Transform + pos: 16.562784,32.85037 + parent: 1 +- proto: HandheldGPSBasic + entities: + - uid: 4126 + components: + - type: Transform + pos: -42.37712,26.662056 + parent: 1 + - uid: 9388 + components: + - type: Transform + pos: -43.72039,-2.2772734 + parent: 1 +- proto: HandheldHealthAnalyzer + entities: + - uid: 8069 + components: + - type: Transform + pos: 6.4224486,80.533676 + parent: 1 +- proto: HandLabeler + entities: + - uid: 8707 + components: + - type: Transform + pos: -13.497177,-24.441525 + parent: 1 +- proto: Hemostat + entities: + - uid: 2616 + components: + - type: Transform + pos: -21.453913,34.60605 + parent: 1 +- proto: HighSecArmoryLocked + entities: + - uid: 2715 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,60.5 + parent: 1 +- proto: HighSecCaptainLocked + entities: + - uid: 9560 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-12.5 + parent: 1 + - uid: 9561 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-12.5 + parent: 1 +- proto: HighSecCommandLocked + entities: + - uid: 6460 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-10.5 + parent: 1 + - uid: 6475 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,47.5 + parent: 1 + - uid: 6484 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,46.5 + parent: 1 + - uid: 6504 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,47.5 + parent: 1 + - uid: 6505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,46.5 + parent: 1 + - uid: 7262 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-23.5 + parent: 1 + - uid: 9402 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-18.5 + parent: 1 + - uid: 10647 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-10.5 + parent: 1 +- proto: HolofanProjector + entities: + - uid: 8708 + components: + - type: Transform + pos: -13.493561,-19.411528 + parent: 1 + - uid: 9101 + components: + - type: Transform + pos: 6.6579733,-24.865988 + parent: 1 + - uid: 9234 + components: + - type: Transform + pos: -22.761885,-11.553672 + parent: 1 + - uid: 11074 + components: + - type: Transform + pos: 19.405106,4.6722174 + parent: 1 +- proto: Holoprojector + entities: + - uid: 6663 + components: + - type: Transform + pos: 16.524984,-4.1055784 + parent: 1 +- proto: HospitalCurtains + entities: + - uid: 6815 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,69.5 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 2489 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 3228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,49.5 + parent: 1 + - uid: 3240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,52.5 + parent: 1 + - uid: 4315 + components: + - type: Transform + pos: -38.5,49.5 + parent: 1 + - uid: 6689 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 1 + - uid: 6798 + components: + - type: Transform + pos: -5.5,72.5 + parent: 1 + - uid: 6818 + components: + - type: Transform + pos: -13.5,60.5 + parent: 1 + - uid: 7027 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1 + - uid: 8360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,48.5 + parent: 1 + - uid: 8392 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,46.5 + parent: 1 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - uid: 8393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,47.5 + parent: 1 + - uid: 8479 + components: + - type: Transform + pos: 14.5,34.5 + parent: 1 + - uid: 8630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,19.5 + parent: 1 + - uid: 9017 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 9018 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 9019 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 + - uid: 9103 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 1 + - uid: 9325 + components: + - type: Transform + pos: -42.5,11.5 + parent: 1 + - uid: 9584 + components: + - type: Transform + pos: 1.5,33.5 + parent: 1 + - uid: 9587 + components: + - type: Transform + pos: 1.5,30.5 + parent: 1 + - uid: 9588 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1 + - uid: 9872 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 1 + - uid: 10383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 1 + - uid: 13329 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 13406 + components: + - type: Transform + pos: -38.5,42.5 + parent: 1 + - uid: 13407 + components: + - type: Transform + pos: -38.5,46.5 + parent: 1 +- proto: hydroponicsSoil + entities: + - uid: 4320 + components: + - type: Transform + pos: -34.5,45.5 + parent: 1 + - uid: 4321 + components: + - type: Transform + pos: -34.5,44.5 + parent: 1 + - uid: 4322 + components: + - type: Transform + pos: -32.5,45.5 + parent: 1 + - uid: 4323 + components: + - type: Transform + pos: -32.5,44.5 + parent: 1 + - uid: 4332 + components: + - type: Transform + pos: -34.5,46.5 + parent: 1 + - uid: 4333 + components: + - type: Transform + pos: -32.5,46.5 + parent: 1 + - uid: 10956 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 1 + - uid: 10957 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 1 + - uid: 10958 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 1 + - uid: 10959 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 1 +- proto: HydroponicsToolClippers + entities: + - uid: 11041 + components: + - type: Transform + pos: 34.58487,-14.532225 + parent: 1 +- proto: HydroponicsToolHatchet + entities: + - uid: 4239 + components: + - type: Transform + pos: 8.448287,11.575508 + parent: 1 + - uid: 10964 + components: + - type: Transform + pos: 34.467308,-14.410013 + parent: 1 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 8274 + components: + - type: Transform + pos: -33.554195,46.106983 + parent: 1 + - uid: 11039 + components: + - type: Transform + pos: 37.22584,-16.547361 + parent: 1 + - uid: 18329 + components: + - type: Transform + pos: 5.441926,6.893481 + parent: 1 +- proto: HydroponicsToolScythe + entities: + - uid: 9005 + components: + - type: Transform + pos: 5.5596075,7.522549 + parent: 1 + - uid: 11038 + components: + - type: Transform + pos: 34.55647,-14.390314 + parent: 1 +- proto: HydroponicsToolSpade + entities: + - uid: 4234 + components: + - type: Transform + pos: 8.610393,11.560773 + parent: 1 + - uid: 8275 + components: + - type: Transform + pos: -33.497402,45.780586 + parent: 1 + - uid: 11040 + components: + - type: Transform + pos: 37.28264,-16.37707 + parent: 1 +- proto: hydroponicsTray + entities: + - uid: 2929 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 4222 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 4223 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 4224 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 4225 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 4226 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 4227 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 4228 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 4229 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 8594 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 9004 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 10115 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 10116 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 10117 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 +- proto: InflatableDoorStack + entities: + - uid: 8715 + components: + - type: Transform + pos: -11.275075,-15.582806 + parent: 1 +- proto: InflatableWallStack + entities: + - uid: 8755 + components: + - type: Transform + pos: -11.574207,-15.350821 + parent: 1 +- proto: IngotGold1 + entities: + - uid: 9944 + components: + - type: Transform + pos: -39.522156,-11.308753 + parent: 1 + - uid: 9945 + components: + - type: Transform + pos: -38.57084,-11.507429 + parent: 1 + - uid: 9946 + components: + - type: Transform + pos: -38.52824,-13.196171 + parent: 1 + - uid: 13429 + components: + - type: Transform + pos: -23.753557,58.80462 + parent: 1 + - uid: 13430 + components: + - type: Transform + pos: -23.61157,58.520798 + parent: 1 +- proto: IngotSilver + entities: + - uid: 2625 + components: + - type: Transform + pos: 5.5338554,45.698784 + parent: 1 +- proto: IngotSilver1 + entities: + - uid: 9947 + components: + - type: Transform + pos: -38.613434,-12.656909 + parent: 1 +- proto: IntercomAll + entities: + - uid: 18363 + components: + - type: Transform + pos: -7.5,71.5 + parent: 1 +- proto: IntercomCommand + entities: + - uid: 17569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 1 + - uid: 17582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,11.5 + parent: 1 + - uid: 17593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,18.5 + parent: 1 + - uid: 17598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,33.5 + parent: 1 + - uid: 17607 + components: + - type: Transform + pos: -15.5,61.5 + parent: 1 + - uid: 17610 + components: + - type: Transform + pos: 4.5,75.5 + parent: 1 + - uid: 17611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,81.5 + parent: 1 +- proto: IntercomCommon + entities: + - uid: 8893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 8756 + - uid: 17553 + components: + - type: Transform + pos: 47.5,16.5 + parent: 1 + - uid: 17554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,35.5 + parent: 1 + - uid: 17555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,40.5 + parent: 1 + - uid: 17556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 1 + - uid: 17557 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 17558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,11.5 + parent: 1 + - uid: 17559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,14.5 + parent: 1 + - uid: 17560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,31.5 + parent: 1 + - uid: 17561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,37.5 + parent: 1 + - uid: 17562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,69.5 + parent: 1 + - uid: 17563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,54.5 + parent: 1 + - uid: 17564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,2.5 + parent: 1 + - uid: 17565 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1 + - uid: 17603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,43.5 + parent: 1 +- proto: IntercomEngineering + entities: + - uid: 17567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 1 + - uid: 17568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + - uid: 17570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 1 + - uid: 17571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 1 + - uid: 17572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-14.5 + parent: 1 + - uid: 17573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-46.5 + parent: 1 + - uid: 17578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-19.5 + parent: 1 +- proto: IntercomMedical + entities: + - uid: 17594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 1 + - uid: 17596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 1 + - uid: 17597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 1 +- proto: IntercomScience + entities: + - uid: 17588 + components: + - type: Transform + pos: -14.5,21.5 + parent: 1 + - uid: 17589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,35.5 + parent: 1 + - uid: 17591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 1 + - uid: 17592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,33.5 + parent: 1 +- proto: IntercomSecurity + entities: + - uid: 272 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 1 + - uid: 17566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 1 + - uid: 17601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,41.5 + parent: 1 + - uid: 17602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,49.5 + parent: 1 + - uid: 17604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,45.5 + parent: 1 + - uid: 17605 + components: + - type: Transform + pos: -4.5,55.5 + parent: 1 + - uid: 17606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,51.5 + parent: 1 + - uid: 17608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,58.5 + parent: 1 + - uid: 17609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,41.5 + parent: 1 +- proto: IntercomService + entities: + - uid: 17574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + - uid: 17575 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 17576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 1 + - uid: 17577 + components: + - type: Transform + pos: -25.5,4.5 + parent: 1 + - uid: 17600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,46.5 + parent: 1 +- proto: IntercomSupply + entities: + - uid: 17579 + components: + - type: Transform + pos: -36.5,8.5 + parent: 1 + - uid: 17580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,11.5 + parent: 1 + - uid: 17581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-3.5 + parent: 1 + - uid: 17583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,22.5 + parent: 1 +- proto: JanitorialTrolley + entities: + - uid: 4018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 1 +- proto: JetpackMini + entities: + - uid: 4366 + components: + - type: Transform + pos: 25.382265,31.514528 + parent: 1 + - uid: 4368 + components: + - type: Transform + pos: 25.476015,31.717653 + parent: 1 + - uid: 7829 + components: + - type: Transform + pos: -41.32702,21.77888 + parent: 1 + - uid: 7931 + components: + - type: Transform + pos: -41.62712,21.537056 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 4327 + components: + - type: Transform + pos: -34.5,49.5 + parent: 1 + - uid: 4390 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 8091 + components: + - type: Transform + pos: 2.5,73.5 + parent: 1 + - uid: 9051 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 9141 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 1 + - uid: 9629 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 4048 + components: + - type: Transform + pos: 2.5,24.5 + parent: 1 + - uid: 4328 + components: + - type: Transform + pos: -32.5,49.5 + parent: 1 + - uid: 9365 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 18449 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 +- proto: KitchenSpike + entities: + - uid: 6632 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 +- proto: KnifePlastic + entities: + - uid: 555 + components: + - type: Transform + pos: 3.662112,0.58738536 + parent: 1 + - uid: 4077 + components: + - type: Transform + pos: 3.662112,0.58738536 + parent: 1 + - uid: 8272 + components: + - type: Transform + pos: -33.199226,49.54123 + parent: 1 + - uid: 8373 + components: + - type: Transform + pos: 32.924263,49.596226 + parent: 1 + - uid: 8423 + components: + - type: Transform + pos: 3.662112,0.58738536 + parent: 1 + - uid: 9149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5084922,72.475395 + parent: 1 +- proto: Lamp + entities: + - uid: 6849 + components: + - type: Transform + pos: 42.492897,51.04298 + parent: 1 + - uid: 10940 + components: + - type: Transform + pos: 34.508152,-21.140514 + parent: 1 +- proto: LampGold + entities: + - uid: 7034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.522398,7.8231235 + parent: 1 + - uid: 7144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.163023,7.5262485 + parent: 1 + - uid: 7288 + components: + - type: Transform + pos: 2.465765,62.00024 + parent: 1 + - uid: 9262 + components: + - type: Transform + pos: 23.380928,11.849496 + parent: 1 + - uid: 9340 + components: + - type: Transform + pos: -43.595627,7.955193 + parent: 1 +- proto: Lantern + entities: + - uid: 18420 + components: + - type: Transform + pos: -29.358017,56.723278 + parent: 1 +- proto: LauncherCreamPie + entities: + - uid: 6610 + components: + - type: Transform + pos: -15.972822,-0.42690194 + parent: 1 +- proto: LockerAtmosphericsFilled + entities: + - uid: 7094 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7095 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerBoozeFilled + entities: + - uid: 4042 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 18352 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerBotanistFilled + entities: + - uid: 4232 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4233 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 4068 + components: + - type: Transform + pos: -6.5,74.5 + parent: 1 +- proto: LockerChemistryFilled + entities: + - uid: 6927 + components: + - type: Transform + pos: 3.5,25.5 + parent: 1 +- proto: LockerChiefEngineerFilled + entities: + - uid: 9111 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 4424 + components: + - type: Transform + pos: 16.5,34.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerClown + entities: + - uid: 8931 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 +- proto: LockerDetectiveFilled + entities: + - uid: 6846 + components: + - type: Transform + pos: 42.5,46.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerEngineerFilled + entities: + - uid: 4179 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4180 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4181 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerEvidence + entities: + - uid: 3589 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 3590 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4347 + components: + - type: Transform + pos: 41.5,44.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4348 + components: + - type: Transform + pos: 42.5,44.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4351 + components: + - type: Transform + pos: -5.5,44.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4352 + components: + - type: Transform + pos: -8.5,44.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4353 + components: + - type: Transform + pos: -11.5,44.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4354 + components: + - type: Transform + pos: -14.5,44.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8139 + components: + - type: Transform + pos: -5.284855,57.41589 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9391 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9392 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerFreezer + entities: + - uid: 6633 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99968 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9050 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9844 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99968 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9845 + - 9846 + - 9847 + - 9848 + - 9849 + - 9850 + - 9851 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerVaultFilled + entities: + - uid: 6397 + components: + - type: Transform + pos: 4.5,48.5 + parent: 1 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 9286 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 4463 + components: + - type: Transform + pos: -16.5,60.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerMedicalFilled + entities: + - uid: 3964 + components: + - type: Transform + pos: 20.5,29.5 + parent: 1 + - uid: 3965 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1 + - uid: 3966 + components: + - type: Transform + pos: 20.5,28.5 + parent: 1 + - uid: 6275 + components: + - type: Transform + pos: 22.5,29.5 + parent: 1 +- proto: LockerMedicineFilled + entities: + - uid: 5669 + components: + - type: Transform + pos: 3.5,29.5 + parent: 1 + - uid: 8997 + components: + - type: Transform + pos: 3.5,32.5 + parent: 1 +- proto: LockerMime + entities: + - uid: 8940 + components: + - type: Transform + pos: -16.5,3.5 + parent: 1 +- proto: LockerParamedicFilled + entities: + - uid: 3650 + components: + - type: Transform + pos: 14.5,20.5 + parent: 1 +- proto: LockerQuarterMasterFilled + entities: + - uid: 8680 + components: + - type: Transform + pos: -43.5,9.5 + parent: 1 +- proto: LockerResearchDirectorFilled + entities: + - uid: 7810 + components: + - type: Transform + pos: -25.5,20.5 + parent: 1 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 239 + components: + - type: Transform + pos: -37.5,30.5 + parent: 1 + - uid: 1777 + components: + - type: Transform + pos: -39.5,30.5 + parent: 1 + - uid: 7825 + components: + - type: Transform + pos: -38.5,30.5 + parent: 1 +- proto: LockerScienceFilled + entities: + - uid: 1068 + components: + - type: Transform + pos: -13.5,23.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1070 + components: + - type: Transform + pos: -13.5,22.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1071 + components: + - type: Transform + pos: -19.5,23.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerSecurityFilled + entities: + - uid: 1198 + components: + - type: Transform + pos: -19.5,42.5 + parent: 1 + - uid: 8172 + components: + - type: Transform + pos: -18.5,42.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8173 + components: + - type: Transform + pos: -15.5,42.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8174 + components: + - type: Transform + pos: -16.5,42.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerWardenFilled + entities: + - uid: 7394 + components: + - type: Transform + pos: -13.5,50.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 9027 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13184 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13327 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13373 + components: + - type: Transform + pos: -28.5,22.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.0214376 + - 7.6044564 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14008 + components: + - type: Transform + pos: 16.5,60.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: Machete + entities: + - uid: 9863 + components: + - type: Transform + pos: -38.31503,-16.537683 + parent: 1 +- proto: MachineAnomalyGenerator + entities: + - uid: 4578 + components: + - type: Transform + pos: -16.5,21.5 + parent: 1 +- proto: MachineAnomalyVessel + entities: + - uid: 5534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,18.5 + parent: 1 + - uid: 5535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,17.5 + parent: 1 +- proto: MachineAPE + entities: + - uid: 6366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,20.5 + parent: 1 + - uid: 6367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,19.5 + parent: 1 +- proto: MachineArtifactAnalyzer + entities: + - uid: 3537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,29.5 + parent: 1 +- proto: MachineCentrifuge + entities: + - uid: 2873 + components: + - type: Transform + pos: 4.5,25.5 + parent: 1 +- proto: MachineElectrolysisUnit + entities: + - uid: 4045 + components: + - type: Transform + pos: 2.5,23.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 13450 + components: + - type: Transform + pos: -47.5,46.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 13438 + components: + - type: Transform + pos: -25.5,56.5 + parent: 1 + - uid: 13474 + components: + - type: Transform + pos: -16.5,64.5 + parent: 1 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 6824 + components: + - type: Transform + pos: -16.587696,59.206833 + parent: 1 + - uid: 6825 + components: + - type: Transform + pos: -16.388914,59.03654 + parent: 1 +- proto: MaintenanceFluffSpawner + entities: + - uid: 7444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 1 + - uid: 8461 + components: + - type: Transform + pos: 11.5,70.5 + parent: 1 + - uid: 9937 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 1 + - uid: 9942 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 1 + - uid: 9943 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 1 + - uid: 9974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 1 + - uid: 10072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 1 + - uid: 10952 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 1 + - uid: 11058 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 13342 + components: + - type: Transform + pos: -27.5,3.5 + parent: 1 + - uid: 13361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,33.5 + parent: 1 + - uid: 13392 + components: + - type: Transform + pos: -24.5,31.5 + parent: 1 + - uid: 13405 + components: + - type: Transform + pos: -23.5,42.5 + parent: 1 + - uid: 13435 + components: + - type: Transform + pos: -22.5,58.5 + parent: 1 + - uid: 13480 + components: + - type: Transform + pos: -24.5,58.5 + parent: 1 + - uid: 13481 + components: + - type: Transform + pos: -44.5,47.5 + parent: 1 + - uid: 13487 + components: + - type: Transform + pos: -18.5,64.5 + parent: 1 + - uid: 14057 + components: + - type: Transform + pos: 25.5,26.5 + parent: 1 + - uid: 14061 + components: + - type: Transform + pos: 28.5,58.5 + parent: 1 + - uid: 14062 + components: + - type: Transform + pos: 19.5,50.5 + parent: 1 + - uid: 14069 + components: + - type: Transform + pos: 17.5,64.5 + parent: 1 + - uid: 17704 + components: + - type: Transform + pos: -30.5,6.5 + parent: 1 + - uid: 17705 + components: + - type: Transform + pos: -32.5,30.5 + parent: 1 + - uid: 17706 + components: + - type: Transform + pos: -45.5,38.5 + parent: 1 + - uid: 17707 + components: + - type: Transform + pos: -6.5,36.5 + parent: 1 + - uid: 17708 + components: + - type: Transform + pos: 45.5,39.5 + parent: 1 + - uid: 17709 + components: + - type: Transform + pos: -1.5,26.5 + parent: 1 + - uid: 17710 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1 + - uid: 17711 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 17772 + components: + - type: Transform + pos: 32.5,23.5 + parent: 1 +- proto: MaintenancePlantSpawner + entities: + - uid: 8163 + components: + - type: Transform + pos: -27.5,53.5 + parent: 1 + - uid: 8164 + components: + - type: Transform + pos: 31.5,52.5 + parent: 1 + - uid: 8165 + components: + - type: Transform + pos: 18.5,21.5 + parent: 1 + - uid: 8166 + components: + - type: Transform + pos: -15.5,-31.5 + parent: 1 +- proto: MaintenanceToolSpawner + entities: + - uid: 7659 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 1 + - uid: 9887 + components: + - type: Transform + pos: -28.5,32.5 + parent: 1 + - uid: 9940 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 1 + - uid: 9941 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 1 + - uid: 10076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 1 + - uid: 10077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 1 + - uid: 10088 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 1 + - uid: 10108 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 1 + - uid: 10932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-18.5 + parent: 1 + - uid: 10947 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 1 + - uid: 10953 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 1 + - uid: 11061 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 11068 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 + - uid: 13157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1 + - uid: 13201 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1 + - uid: 13341 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1 + - uid: 13343 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1 + - uid: 13345 + components: + - type: Transform + pos: -20.5,11.5 + parent: 1 + - uid: 13346 + components: + - type: Transform + pos: -18.5,10.5 + parent: 1 + - uid: 13362 + components: + - type: Transform + pos: -39.5,32.5 + parent: 1 + - uid: 13436 + components: + - type: Transform + pos: -22.5,55.5 + parent: 1 + - uid: 13482 + components: + - type: Transform + pos: -41.5,50.5 + parent: 1 + - uid: 13483 + components: + - type: Transform + pos: -25.5,51.5 + parent: 1 + - uid: 13484 + components: + - type: Transform + pos: -15.5,64.5 + parent: 1 + - uid: 14059 + components: + - type: Transform + pos: 24.5,56.5 + parent: 1 + - uid: 14063 + components: + - type: Transform + pos: 18.5,50.5 + parent: 1 + - uid: 14065 + components: + - type: Transform + pos: 10.5,48.5 + parent: 1 + - uid: 14066 + components: + - type: Transform + pos: 5.5,40.5 + parent: 1 + - uid: 14067 + components: + - type: Transform + pos: 16.5,59.5 + parent: 1 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 8365 + components: + - type: Transform + pos: 38.5,43.5 + parent: 1 + - uid: 9939 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 1 + - uid: 9975 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 1 + - uid: 10073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 1 + - uid: 10949 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 1 + - uid: 10950 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 1 + - uid: 11062 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1 + - uid: 13200 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 1 + - uid: 13340 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1 + - uid: 13344 + components: + - type: Transform + pos: -18.5,11.5 + parent: 1 + - uid: 13363 + components: + - type: Transform + pos: -37.5,32.5 + parent: 1 + - uid: 13385 + components: + - type: Transform + pos: -17.5,27.5 + parent: 1 + - uid: 13391 + components: + - type: Transform + pos: -28.5,25.5 + parent: 1 + - uid: 13437 + components: + - type: Transform + pos: -22.5,56.5 + parent: 1 + - uid: 13485 + components: + - type: Transform + pos: -14.5,64.5 + parent: 1 + - uid: 13486 + components: + - type: Transform + pos: -12.5,62.5 + parent: 1 + - uid: 13488 + components: + - type: Transform + pos: -13.5,70.5 + parent: 1 + - uid: 14058 + components: + - type: Transform + pos: 39.5,51.5 + parent: 1 + - uid: 14064 + components: + - type: Transform + pos: 12.5,49.5 + parent: 1 + - uid: 14068 + components: + - type: Transform + pos: 16.5,64.5 + parent: 1 +- proto: Matchbox + entities: + - uid: 8280 + components: + - type: Transform + pos: -28.99285,44.33111 + parent: 1 + - uid: 8995 + components: + - type: Transform + pos: -4.367732,11.515931 + parent: 1 + - uid: 13404 + components: + - type: Transform + pos: -23.569286,43.8585 + parent: 1 +- proto: MatchstickSpent + entities: + - uid: 13403 + components: + - type: Transform + pos: -23.342106,43.347622 + parent: 1 +- proto: MaterialCloth + entities: + - uid: 9212 + components: + - type: Transform + pos: 24.961397,4.807591 + parent: 1 +- proto: MaterialDurathread + entities: + - uid: 9211 + components: + - type: Transform + pos: 24.961397,4.401341 + parent: 1 +- proto: MaterialReclaimer + entities: + - uid: 6769 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 1 +- proto: MaterialWoodPlank + entities: + - uid: 18098 + components: + - type: Transform + pos: -32.693626,54.607662 + parent: 1 +- proto: MatterBinStockPart + entities: + - uid: 13454 + components: + - type: Transform + pos: -46.41361,46.78272 + parent: 1 +- proto: MedicalBed + entities: + - uid: 6383 + components: + - type: Transform + pos: 2.5,29.5 + parent: 1 + - uid: 9368 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1 + - uid: 9369 + components: + - type: Transform + pos: 2.5,34.5 + parent: 1 +- proto: MedicalTechFab + entities: + - uid: 6389 + components: + - type: Transform + pos: 8.5,26.5 + parent: 1 +- proto: MedkitAdvancedFilled + entities: + - uid: 8085 + components: + - type: Transform + pos: 6.6862106,79.9808 + parent: 1 + - uid: 16375 + components: + - type: Transform + pos: -10.381355,48.62417 + parent: 1 +- proto: MedkitBruteFilled + entities: + - uid: 6184 + components: + - type: Transform + pos: 22.590075,26.557478 + parent: 1 +- proto: MedkitBurnFilled + entities: + - uid: 6698 + components: + - type: Transform + pos: 22.058825,26.557478 + parent: 1 +- proto: MedkitCombatFilled + entities: + - uid: 7671 + components: + - type: Transform + pos: -24.283842,-32.51983 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 286 + components: + - type: Transform + pos: -42.513187,21.685522 + parent: 1 + - uid: 6706 + components: + - type: Transform + pos: 21.527575,26.541853 + parent: 1 +- proto: MedkitOxygenFilled + entities: + - uid: 6953 + components: + - type: Transform + pos: 21.01195,26.541853 + parent: 1 + - uid: 8086 + components: + - type: Transform + pos: 6.45903,79.668594 + parent: 1 +- proto: MedkitRadiationFilled + entities: + - uid: 4071 + components: + - type: Transform + pos: 20.496325,26.526228 + parent: 1 +- proto: MedkitToxinFilled + entities: + - uid: 8556 + components: + - type: Transform + pos: 19.996325,26.510603 + parent: 1 + - uid: 9664 + components: + - type: Transform + pos: -10.990924,34.60699 + parent: 1 +- proto: MicrophoneInstrument + entities: + - uid: 18256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.4394073,-2.5350158 + parent: 1 +- proto: MinimoogInstrument + entities: + - uid: 9933 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 1 +- proto: Mirror + entities: + - uid: 10098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-39.5 + parent: 1 + - uid: 10105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 1 + - uid: 13489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,70.5 + parent: 1 +- proto: MopBucket + entities: + - uid: 4019 + components: + - type: Transform + pos: 22.417683,-3.5983407 + parent: 1 + - uid: 17276 + components: + - type: Transform + pos: -23.497051,-11.512519 + parent: 1 + - uid: 18195 + components: + - type: Transform + pos: 18.47802,-5.4857326 + parent: 1 +- proto: MopItem + entities: + - uid: 4020 + components: + - type: Transform + pos: 22.389286,-3.6267226 + parent: 1 + - uid: 17270 + components: + - type: Transform + pos: -23.582245,-13.364458 + parent: 1 + - uid: 17271 + components: + - type: Transform + pos: -23.433157,-13.470892 + parent: 1 + - uid: 18196 + components: + - type: Transform + pos: 18.457188,-5.589899 + parent: 1 +- proto: Morgue + entities: + - uid: 6100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,34.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,32.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,34.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: MouseTimedSpawner + entities: + - uid: 18209 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 1 +- proto: Multitool + entities: + - uid: 6595 + components: + - type: Transform + pos: -6.480236,24.566202 + parent: 1 + - uid: 8077 + components: + - type: Transform + pos: -3.4883027,82.77587 + parent: 1 + - uid: 8656 + components: + - type: Transform + pos: -23.455519,20.623178 + parent: 1 + - uid: 13446 + components: + - type: Transform + pos: -37.556957,54.69298 + parent: 1 + - uid: 14047 + components: + - type: Transform + pos: 38.328133,54.646866 + parent: 1 +- proto: NettleSeeds + entities: + - uid: 10967 + components: + - type: Transform + pos: 36.511932,-17.276615 + parent: 1 +- proto: NetworkConfigurator + entities: + - uid: 3022 + components: + - type: Transform + pos: 7.40583,-11.399742 + parent: 1 + - uid: 7432 + components: + - type: Transform + pos: 12.35541,-11.368492 + parent: 1 + - uid: 7433 + components: + - type: Transform + pos: -11.6948395,-19.44185 + parent: 1 + - uid: 7434 + components: + - type: Transform + pos: -13.616468,-33.96476 + parent: 1 + - uid: 7435 + components: + - type: Transform + pos: 8.562072,-32.386993 + parent: 1 + - uid: 7436 + components: + - type: Transform + pos: -9.608111,27.948849 + parent: 1 + - uid: 7437 + components: + - type: Transform + pos: -6.7244835,21.503235 + parent: 1 + - uid: 7438 + components: + - type: Transform + pos: -10.361936,34.69222 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 3027 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3040 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3041 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6914 + components: + - type: Transform + pos: 26.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10064 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10091 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10121 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 11052 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13316 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13354 + components: + - type: Transform + pos: -35.5,32.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13378 + components: + - type: Transform + pos: -26.5,27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13417 + components: + - type: Transform + pos: -18.5,60.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14001 + components: + - type: Transform + pos: 13.5,64.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14014 + components: + - type: Transform + pos: 8.5,40.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14036 + components: + - type: Transform + pos: 26.5,56.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: NitrousOxideCanister + entities: + - uid: 3029 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3043 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6590 + components: + - type: Transform + pos: -11.5,32.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: NoticeBoard + entities: + - uid: 7813 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 +- proto: NuclearBomb + entities: + - uid: 7250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,48.5 + parent: 1 +- proto: OperatingTable + entities: + - uid: 4334 + components: + - type: Transform + pos: -21.5,33.5 + parent: 1 + - uid: 8508 + components: + - type: Transform + pos: 3.5,27.5 + parent: 1 +- proto: OreProcessor + entities: + - uid: 6384 + components: + - type: Transform + pos: -38.5,16.5 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 147 + components: + - type: Transform + pos: -40.5,21.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3026 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3038 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3039 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6912 + components: + - type: Transform + pos: 10.5,34.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6916 + components: + - type: Transform + pos: 27.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10065 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10090 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10120 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 11048 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13315 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13353 + components: + - type: Transform + pos: -35.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13379 + components: + - type: Transform + pos: -25.5,27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 13418 + components: + - type: Transform + pos: -18.5,59.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14002 + components: + - type: Transform + pos: 14.5,64.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14015 + components: + - type: Transform + pos: 9.5,40.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 14035 + components: + - type: Transform + pos: 27.5,56.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 17654 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: PaintingEmpty + entities: + - uid: 18036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,72.5 + parent: 1 +- proto: PaintingSadClown + entities: + - uid: 8185 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 +- proto: PaperBin10 + entities: + - uid: 9223 + components: + - type: Transform + pos: 27.5,2.5 + parent: 1 +- proto: PaperBin5 + entities: + - uid: 7287 + components: + - type: Transform + pos: 3.5,60.5 + parent: 1 + - uid: 8063 + components: + - type: Transform + pos: -0.5,80.5 + parent: 1 + - uid: 18178 + components: + - type: Transform + pos: -35.5,9.5 + parent: 1 +- proto: PaperCaptainsThoughts + entities: + - uid: 6809 + components: + - type: Transform + pos: -6.583637,72.70018 + parent: 1 + - uid: 8075 + components: + - type: Transform + pos: -6.4721937,72.63612 + parent: 1 + - uid: 8076 + components: + - type: Transform + pos: -6.3402495,72.52493 + parent: 1 +- proto: PaperOffice + entities: + - uid: 1932 + components: + - type: Transform + pos: 8.646071,57.523205 + parent: 1 + - uid: 1933 + components: + - type: Transform + pos: 8.354404,57.689873 + parent: 1 + - uid: 3189 + components: + - type: Transform + pos: 42.97566,50.574673 + parent: 1 + - uid: 6848 + components: + - type: Transform + pos: 43.131844,50.759155 + parent: 1 + - uid: 7031 + components: + - type: Transform + pos: -25.565134,3.6301482 + parent: 1 + - uid: 7032 + components: + - type: Transform + pos: -25.309555,3.6869118 + parent: 1 + - uid: 7033 + components: + - type: Transform + pos: -25.36635,3.4598548 + parent: 1 + - uid: 7694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.57362,55.668022 + parent: 1 + - uid: 8109 + components: + - type: Transform + pos: 5.1594477,71.75358 + parent: 1 + - uid: 8110 + components: + - type: Transform + pos: 5.528614,71.32784 + parent: 1 + - uid: 8111 + components: + - type: Transform + pos: 6.4941316,73.59842 + parent: 1 + - uid: 8112 + components: + - type: Transform + pos: 4.4211106,72.406364 + parent: 1 + - uid: 8113 + components: + - type: Transform + pos: 5.6422024,63.981495 + parent: 1 + - uid: 8114 + components: + - type: Transform + pos: 5.30143,63.58415 + parent: 1 + - uid: 8234 + components: + - type: Transform + pos: -19.304815,52.96929 + parent: 1 + - uid: 8235 + components: + - type: Transform + pos: -19.333212,52.51518 + parent: 1 + - uid: 8236 + components: + - type: Transform + pos: -12.844453,56.585327 + parent: 1 + - uid: 8285 + components: + - type: Transform + pos: -28.742027,44.07567 + parent: 1 + - uid: 8286 + components: + - type: Transform + pos: -28.869816,43.97633 + parent: 1 + - uid: 8287 + components: + - type: Transform + pos: -29.0544,44.104053 + parent: 1 + - uid: 8474 + components: + - type: Transform + pos: 20.335289,40.984818 + parent: 1 + - uid: 8475 + components: + - type: Transform + pos: 20.56247,40.857098 + parent: 1 + - uid: 8476 + components: + - type: Transform + pos: 20.732855,40.89967 + parent: 1 + - uid: 8494 + components: + - type: Transform + pos: 15.377507,32.661785 + parent: 1 + - uid: 8495 + components: + - type: Transform + pos: 15.56209,32.61921 + parent: 1 + - uid: 9108 + components: + - type: Transform + pos: 5.647646,-25.362396 + parent: 1 + - uid: 9109 + components: + - type: Transform + pos: 5.376813,-25.591562 + parent: 1 + - uid: 9180 + components: + - type: Transform + pos: 13.647936,-12.608375 + parent: 1 + - uid: 9181 + components: + - type: Transform + pos: 13.41877,-12.212542 + parent: 1 + - uid: 9220 + components: + - type: Transform + pos: 25.298811,4.502818 + parent: 1 + - uid: 9221 + components: + - type: Transform + pos: 25.423811,4.7111516 + parent: 1 + - uid: 9512 + components: + - type: Transform + pos: 13.562738,57.689873 + parent: 1 + - uid: 9705 + components: + - type: Transform + pos: -35.3369,12.601174 + parent: 1 + - uid: 9706 + components: + - type: Transform + pos: -35.4619,12.476174 + parent: 1 + - uid: 9917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.778204,-37.45873 + parent: 1 + - uid: 9918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.735607,-36.394398 + parent: 1 + - uid: 9919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.281246,-36.53631 + parent: 1 + - uid: 9920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.267048,-37.1891 + parent: 1 +- proto: ParchisBoard + entities: + - uid: 14026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.411753,58.600853 + parent: 1 +- proto: PartRodMetal + entities: + - uid: 7823 + components: + - type: Transform + pos: -42.102123,21.612055 + parent: 1 + - uid: 9123 + components: + - type: Transform + pos: 13.554044,-21.633276 + parent: 1 + - uid: 9231 + components: + - type: Transform + pos: -25.391773,-12.691285 + parent: 1 +- proto: Pen + entities: + - uid: 8108 + components: + - type: Transform + pos: 5.926182,71.5549 + parent: 1 + - uid: 8248 + components: + - type: Transform + pos: -13.293542,47.371918 + parent: 1 + - uid: 9225 + components: + - type: Transform + pos: 27.715477,2.7528179 + parent: 1 + - uid: 9927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.749805,-37.45873 + parent: 1 + - uid: 9928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.70721,-36.42278 + parent: 1 + - uid: 9929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.323843,-36.607265 + parent: 1 + - uid: 9930 + components: + - type: Transform + pos: -19.210253,-37.174908 + parent: 1 +- proto: PenCap + entities: + - uid: 6805 + components: + - type: Transform + pos: -6.5470595,72.51975 + parent: 1 +- proto: PenHop + entities: + - uid: 9273 + components: + - type: Transform + pos: 24.527164,11.786996 + parent: 1 +- proto: PersonalAI + entities: + - uid: 13383 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -18.292332,28.360415 + parent: 1 + - uid: 18484 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 12.460675,46.54926 + parent: 1 + - uid: 18485 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 21.527178,41.51094 + parent: 1 + - uid: 18487 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -25.31035,3.6511037 + parent: 1 + - uid: 18488 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -3.5730453,83.05458 + parent: 1 +- proto: PhoneInstrument + entities: + - uid: 8098 + components: + - type: Transform + pos: 5.4434214,72.491516 + parent: 1 +- proto: PineappleSeeds + entities: + - uid: 8278 + components: + - type: Transform + pos: -29.408152,44.30471 + parent: 1 + - uid: 9010 + components: + - type: Transform + pos: 5.4492836,6.4890785 + parent: 1 +- proto: PlantBag + entities: + - uid: 9007 + components: + - type: Transform + pos: 5.4701166,7.468245 + parent: 1 +- proto: PlaqueAtmos + entities: + - uid: 17897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-10.5 + parent: 1 +- proto: PlasmaCanister + entities: + - uid: 3025 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3042 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6591 + components: + - type: Transform + pos: -11.5,31.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,61.5 + parent: 1 + - uid: 1832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,64.5 + parent: 1 + - uid: 5773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,61.5 + parent: 1 + - uid: 5774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,62.5 + parent: 1 +- proto: PlasmaTankFilled + entities: + - uid: 8745 + components: + - type: Transform + pos: -12.675064,-41.406155 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 112 + components: + - type: Transform + pos: -44.5,1.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -44.5,5.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -36.5,5.5 + parent: 1 + - uid: 2724 + components: + - type: Transform + pos: -47.5,5.5 + parent: 1 + - uid: 3113 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 1 + - uid: 4114 + components: + - type: Transform + pos: -43.5,22.5 + parent: 1 + - uid: 4157 + components: + - type: Transform + pos: -47.5,1.5 + parent: 1 + - uid: 7819 + components: + - type: Transform + pos: -43.5,24.5 + parent: 1 +- proto: PlushieAtmosian + entities: + - uid: 8478 + components: + - type: Transform + pos: -13.428453,-23.76954 + parent: 1 +- proto: PlushieBee + entities: + - uid: 17722 + components: + - type: Transform + pos: 9.581463,59.56483 + parent: 1 +- proto: PlushieLamp + entities: + - uid: 17725 + components: + - type: Transform + pos: -51.39804,40.513123 + parent: 1 +- proto: PlushieLizard + entities: + - uid: 13425 + components: + - type: Transform + pos: -23.497978,60.479168 + parent: 1 + - uid: 17726 + components: + - type: Transform + pos: -18.010359,27.487123 + parent: 1 +- proto: PlushieNar + entities: + - uid: 17727 + components: + - type: Transform + pos: 26.419394,52.54221 + parent: 1 +- proto: PlushieNuke + entities: + - uid: 17728 + components: + - type: Transform + pos: 5.0785303,45.68808 + parent: 1 +- proto: PlushieRatvar + entities: + - uid: 17730 + components: + - type: Transform + pos: -16.502522,-42.49368 + parent: 1 +- proto: PlushieRGBee + entities: + - uid: 11077 + components: + - type: Transform + pos: 20.39902,10.361386 + parent: 1 +- proto: PlushieSharkBlue + entities: + - uid: 17723 + components: + - type: Transform + pos: 21.557299,40.40908 + parent: 1 +- proto: PlushieSharkGrey + entities: + - uid: 17724 + components: + - type: Transform + pos: 24.59281,-5.6428246 + parent: 1 +- proto: PlushieSharkPink + entities: + - uid: 8398 + components: + - type: Transform + pos: 18.47223,47.259647 + parent: 1 + - uid: 17729 + components: + - type: Transform + pos: 24.515884,22.427027 + parent: 1 +- proto: PlushieSlime + entities: + - uid: 17731 + components: + - type: Transform + pos: -30.556288,7.2912984 + parent: 1 +- proto: PlushieSpaceLizard + entities: + - uid: 17732 + components: + - type: Transform + pos: -0.54218626,85.39831 + parent: 1 +- proto: PlushieVox + entities: + - uid: 14042 + components: + - type: Transform + pos: 39.577625,52.527256 + parent: 1 + - uid: 17733 + components: + - type: Transform + pos: -44.60638,-11.570459 + parent: 1 +- proto: PortableGeneratorJrPacman + entities: + - uid: 1091 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: -23.5,44.5 + parent: 1 + - uid: 2658 + components: + - type: Transform + pos: 18.5,17.5 + parent: 1 + - uid: 2659 + components: + - type: Transform + pos: -28.5,19.5 + parent: 1 + - uid: 2660 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 1 + - uid: 2685 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1 + - uid: 2690 + components: + - type: Transform + pos: 17.5,50.5 + parent: 1 + - uid: 2691 + components: + - type: Transform + pos: -18.5,58.5 + parent: 1 + - uid: 2692 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 1 + - uid: 2693 + components: + - type: Transform + pos: -38.5,32.5 + parent: 1 + - uid: 2694 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 1 + - uid: 8564 + components: + - type: Transform + pos: 16.5,24.5 + parent: 1 + - uid: 8565 + components: + - type: Transform + pos: -20.5,30.5 + parent: 1 + - uid: 8566 + components: + - type: Transform + pos: 19.5,54.5 + parent: 1 + - uid: 8571 + components: + - type: Transform + pos: 17.5,3.5 + parent: 1 +- proto: PortableGeneratorPacman + entities: + - uid: 4217 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 1 +- proto: PortableScrubber + entities: + - uid: 4393 + components: + - type: Transform + pos: -9.5,25.5 + parent: 1 + - uid: 8731 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 1 + - uid: 8732 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 1 + - uid: 8737 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 1 +- proto: PosterBroken + entities: + - uid: 18000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,5.5 + parent: 1 +- proto: PosterContrabandAmbrosiaVulgaris + entities: + - uid: 17926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,8.5 + parent: 1 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 17898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-40.5 + parent: 1 +- proto: PosterContrabandBountyHunters + entities: + - uid: 17900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,45.5 + parent: 1 +- proto: PosterContrabandClown + entities: + - uid: 17920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 1 +- proto: PosterContrabandDonutCorp + entities: + - uid: 17902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 1 +- proto: PosterContrabandEAT + entities: + - uid: 17927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 +- proto: PosterContrabandEnergySwords + entities: + - uid: 17921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 1 +- proto: PosterContrabandFreeDrone + entities: + - uid: 9563 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 1 +- proto: PosterContrabandFunPolice + entities: + - uid: 17990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,39.5 + parent: 1 +- proto: PosterContrabandGreyTide + entities: + - uid: 17904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,33.5 + parent: 1 + - uid: 18005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-24.5 + parent: 1 +- proto: PosterContrabandHackingGuide + entities: + - uid: 17903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,30.5 + parent: 1 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 18115 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1 +- proto: PosterContrabandMissingGloves + entities: + - uid: 17906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 1 + - uid: 18006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-24.5 + parent: 1 +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 17917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,47.5 + parent: 1 +- proto: PosterContrabandVoteWeh + entities: + - uid: 17915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,24.5 + parent: 1 +- proto: PosterContrabandWehWatches + entities: + - uid: 17916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,20.5 + parent: 1 +- proto: PosterLegit12Gauge + entities: + - uid: 17924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,65.5 + parent: 1 +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 18089 + components: + - type: Transform + pos: -4.5,33.5 + parent: 1 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 9619 + components: + - type: Transform + pos: 1.5,34.5 + parent: 1 +- proto: PosterLegitBuild + entities: + - uid: 17899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 1 +- proto: PosterLegitCleanliness + entities: + - uid: 17923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 1 +- proto: PosterLegitDickGumshue + entities: + - uid: 17901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,50.5 + parent: 1 +- proto: PosterLegitEnlist + entities: + - uid: 17925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,63.5 + parent: 1 +- proto: PosterLegitFoamForceAd + entities: + - uid: 17922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 1 +- proto: PosterLegitHighClassMartini + entities: + - uid: 17919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 1 +- proto: PosterLegitIonRifle + entities: + - uid: 9677 + components: + - type: Transform + pos: -3.5,60.5 + parent: 1 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 17905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1 +- proto: PosterLegitLoveIan + entities: + - uid: 17918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,8.5 + parent: 1 +- proto: PosterLegitMime + entities: + - uid: 8169 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 17907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,62.5 + parent: 1 + - uid: 17908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,62.5 + parent: 1 + - uid: 17909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,78.5 + parent: 1 + - uid: 17910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,78.5 + parent: 1 +- proto: PosterLegitPDAAd + entities: + - uid: 17911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 1 +- proto: PosterLegitPeriodicTable + entities: + - uid: 9616 + components: + - type: Transform + pos: 4.5,26.5 + parent: 1 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 17912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 1 +- proto: PosterLegitSafetyInternals + entities: + - uid: 17913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 1 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 9618 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 9617 + components: + - type: Transform + pos: 8.5,25.5 + parent: 1 +- proto: PosterLegitStateLaws + entities: + - uid: 18004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-13.5 + parent: 1 +- proto: PosterLegitUeNo + entities: + - uid: 17914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,29.5 + parent: 1 +- proto: PottedPlant12 + entities: + - uid: 9667 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 1 +- proto: PottedPlant22 + entities: + - uid: 6373 + components: + - type: Transform + pos: 10.33418,19.257486 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 466 + components: + - type: Transform + pos: -49.5,35.5 + parent: 1 + - uid: 1284 + components: + - type: Transform + pos: -47.5,16.5 + parent: 1 + - uid: 4250 + components: + - type: Transform + pos: -30.5,8.5 + parent: 1 + - uid: 6950 + components: + - type: Transform + pos: 21.5,17.5 + parent: 1 + - uid: 9474 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 1 + - uid: 9475 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 1 + - uid: 9476 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 1 + - uid: 9477 + components: + - type: Transform + pos: 46.5,12.5 + parent: 1 + - uid: 9478 + components: + - type: Transform + pos: 48.5,41.5 + parent: 1 + - uid: 9479 + components: + - type: Transform + pos: 45.5,40.5 + parent: 1 + - uid: 9480 + components: + - type: Transform + pos: -42.5,43.5 + parent: 1 + - uid: 9481 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 9482 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 1 + - uid: 9483 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 9485 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 9495 + components: + - type: Transform + pos: -3.5,46.5 + parent: 1 + - uid: 9496 + components: + - type: Transform + pos: -10.5,52.5 + parent: 1 + - uid: 9497 + components: + - type: Transform + pos: -16.5,47.5 + parent: 1 + - uid: 9498 + components: + - type: Transform + pos: -16.5,51.5 + parent: 1 + - uid: 9499 + components: + - type: Transform + pos: -16.5,56.5 + parent: 1 + - uid: 9502 + components: + - type: Transform + pos: 7.5,70.5 + parent: 1 + - uid: 9503 + components: + - type: Transform + pos: 10.5,66.5 + parent: 1 + - uid: 9535 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1 + - uid: 9543 + components: + - type: Transform + pos: -47.5,38.5 + parent: 1 + - uid: 9711 + components: + - type: Transform + pos: 7.5,38.5 + parent: 1 + - uid: 9713 + components: + - type: Transform + pos: 39.5,36.5 + parent: 1 + - uid: 9714 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1 + - uid: 9715 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - uid: 9716 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 1 + - uid: 9879 + components: + - type: Transform + pos: 32.5,30.5 + parent: 1 + - uid: 9880 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1 + - uid: 9881 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 9882 + components: + - type: Transform + pos: -40.5,15.5 + parent: 1 + - uid: 9883 + components: + - type: Transform + pos: -38.5,9.5 + parent: 1 + - uid: 9889 + components: + - type: Transform + pos: -19.5,15.5 + parent: 1 + - uid: 9890 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 16406 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 16408 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - uid: 16653 + components: + - type: Transform + pos: -32.5,27.5 + parent: 1 + - uid: 17301 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1 +- proto: PottedPlantRandomPlastic + entities: + - uid: 4249 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 1 + - uid: 6943 + components: + - type: Transform + pos: 30.5,56.5 + parent: 1 + - uid: 6944 + components: + - type: Transform + pos: 34.5,56.5 + parent: 1 + - uid: 8452 + components: + - type: Transform + pos: -2.5,57.5 + parent: 1 + - uid: 8464 + components: + - type: Transform + pos: 2.5,55.5 + parent: 1 + - uid: 8465 + components: + - type: Transform + pos: 2.5,54.5 + parent: 1 + - uid: 9489 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 9504 + components: + - type: Transform + pos: 5.5,62.5 + parent: 1 + - uid: 9505 + components: + - type: Transform + pos: 8.5,61.5 + parent: 1 + - uid: 9709 + components: + - type: Transform + pos: -28.5,38.5 + parent: 1 + - uid: 9710 + components: + - type: Transform + pos: -4.5,36.5 + parent: 1 + - uid: 9712 + components: + - type: Transform + pos: 22.5,36.5 + parent: 1 + - uid: 9717 + components: + - type: Transform + pos: 39.5,13.5 + parent: 1 + - uid: 9720 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 1 + - uid: 16536 + components: + - type: Transform + pos: 5.5,52.5 + parent: 1 +- proto: PowerCellHigh + entities: + - uid: 8726 + components: + - type: Transform + pos: -13.77224,-19.431416 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 6651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + - uid: 7463 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 1 + - uid: 8062 + components: + - type: Transform + pos: -7.5,80.5 + parent: 1 + - uid: 8182 + components: + - type: Transform + pos: -18.5,53.5 + parent: 1 + - uid: 8346 + components: + - type: Transform + pos: -26.5,29.5 + parent: 1 + - uid: 8419 + components: + - type: Transform + pos: -49.5,44.5 + parent: 1 + - uid: 8709 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 1 + - uid: 8892 + components: + - type: Transform + pos: -1.5,3.5 + parent: 8756 + - uid: 9020 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 9022 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 9023 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 9083 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1 + - uid: 9084 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1 + - uid: 9232 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 1 + - uid: 9307 + components: + - type: Transform + pos: -38.5,8.5 + parent: 1 + - uid: 9372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,19.5 + parent: 1 + - uid: 10642 + components: + - type: Transform + pos: 20.5,41.5 + parent: 1 + - uid: 17417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,6.5 + parent: 1 + - uid: 18497 + components: + - type: Transform + pos: 6.5,52.5 + parent: 1 + - uid: 18498 + components: + - type: Transform + pos: 43.5,41.5 + parent: 1 + - uid: 18499 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 1272 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,37.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1293 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,41.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2001 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,-7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2705 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-44.5 + parent: 1 + - uid: 2719 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 1 + - uid: 2725 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,5.5 + parent: 1 + - uid: 2728 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,0.5 + parent: 1 + - uid: 3630 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 1 + - uid: 3733 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4031 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 4032 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,34.5 + parent: 1 + - uid: 4063 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 4148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,32.5 + parent: 1 + - uid: 4211 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,33.5 + parent: 1 + - uid: 4360 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 1 + - uid: 4361 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 1 + - uid: 6085 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + - uid: 6382 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,23.5 + parent: 1 + - uid: 6387 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 1 + - uid: 6517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-10.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6693 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1 + - uid: 7809 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 1 + - uid: 7811 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,30.5 + parent: 1 + - uid: 7935 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,25.5 + parent: 1 + - uid: 8161 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,28.5 + parent: 1 + - uid: 8549 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,19.5 + parent: 1 + - uid: 8641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,32.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8643 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,24.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8644 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,24.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8645 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,20.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8646 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,19.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8647 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,18.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8648 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,28.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8673 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,15.5 + parent: 1 + - uid: 8876 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 8756 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8877 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 8756 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8878 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 8756 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8879 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 8756 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8880 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 8756 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9615 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,28.5 + parent: 1 + - uid: 9634 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-5.5 + parent: 1 + - uid: 9635 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 1 + - uid: 14073 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14074 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-18.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14075 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-11.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14076 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-9.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14077 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14078 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-0.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14079 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14080 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,10.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14081 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14083 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,8.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14088 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,25.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14089 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,26.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14090 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,15.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14095 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,36.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14097 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,38.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14098 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14099 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14100 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,29.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14101 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,27.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,13.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14105 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14106 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14107 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,13.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14109 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14110 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,20.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14111 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14112 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14113 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,15.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14118 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,8.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14119 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14120 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14122 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14123 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-9.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14124 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14125 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14126 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14127 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14128 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14129 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14130 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14131 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14132 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14133 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14134 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14135 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14136 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-39.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14137 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-29.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14138 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-34.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14139 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14140 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-40.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14143 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-28.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14144 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14145 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14146 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-38.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14147 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14149 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-24.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14150 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-31.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14161 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-38.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14163 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14166 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14167 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14173 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,9.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14176 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,31.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14177 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,43.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14178 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,43.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14179 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 42.5,44.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14180 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,39.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14185 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,61.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14186 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,52.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14187 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,57.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14188 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,52.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14190 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,40.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14191 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,49.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,47.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,51.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14194 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,46.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14195 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,52.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14200 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,40.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,60.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14203 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,64.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14204 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,69.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14205 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,62.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14206 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,62.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14207 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,55.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14209 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,49.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,42.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14211 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,49.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14212 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,49.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14216 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,19.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14217 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,38.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14218 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,32.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 15385 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,11.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 15400 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,13.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 15401 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,36.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 15402 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,31.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17250 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17251 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,38.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17252 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,36.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17255 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,38.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17256 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17257 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,66.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17258 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17259 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17268 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,14.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17304 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,57.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17305 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,57.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17306 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,58.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17307 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,60.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17308 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,66.5 + parent: 1 + - uid: 17309 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,72.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17310 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,81.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17311 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,85.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17314 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,81.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17318 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,72.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17319 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,75.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17320 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,75.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17321 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,66.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17322 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,60.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17323 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,58.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17324 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,52.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17325 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,45.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17326 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,45.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17327 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,52.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17650 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-43.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17860 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-32.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18062 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18063 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18065 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-19.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18067 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-26.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18068 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-41.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18070 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-29.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18071 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-23.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18076 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,-11.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18191 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,46.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,47.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18257 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,8.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18258 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-0.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18424 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,1.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18425 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-9.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18426 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18429 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,31.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18440 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredlightLED + entities: + - uid: 8577 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8638 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,20.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,23.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8649 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,32.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9592 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,32.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11365 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,76.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13493 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,72.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13494 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,81.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13495 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,81.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13496 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,70.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLight + entities: + - uid: 610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 1 + - uid: 616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,5.5 + parent: 1 + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1 + - uid: 1837 + components: + - type: Transform + pos: -10.5,60.5 + parent: 1 + - uid: 2074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,1.5 + parent: 1 + - uid: 2608 + components: + - type: Transform + pos: -45.5,5.5 + parent: 1 + - uid: 4066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + - uid: 4337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,63.5 + parent: 1 + - uid: 4371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,48.5 + parent: 1 + - uid: 6198 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-14.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,49.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,44.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7670 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 1 + - uid: 7707 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 7802 + components: + - type: Transform + pos: -6.5,74.5 + parent: 1 + - uid: 8342 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1 + - uid: 8364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,44.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8366 + components: + - type: Transform + pos: 25.5,58.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,47.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,49.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8383 + components: + - type: Transform + pos: 25.5,54.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,48.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,43.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,48.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,43.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,45.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,41.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,46.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,33.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,29.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,21.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9250 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9251 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9252 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,60.5 + parent: 1 + - uid: 9841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9842 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-35.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-12.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-25.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-23.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11046 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 12821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,63.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 12822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,51.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 12823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,42.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 12824 + components: + - type: Transform + pos: 32.5,56.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 12825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,55.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,23.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13302 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,4.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,27.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13460 + components: + - type: Transform + pos: -41.5,51.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13461 + components: + - type: Transform + pos: -20.5,57.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,62.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 13490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,69.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-15.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,14.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,37.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,17.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,17.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,15.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14117 + components: + - type: Transform + pos: 51.5,13.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14151 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14152 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14153 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-27.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-40.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-46.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14175 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,34.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,34.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14183 + components: + - type: Transform + pos: 51.5,36.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,38.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14189 + components: + - type: Transform + pos: -38.5,46.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,41.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,41.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,41.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,41.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,42.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,52.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 14214 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 15383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17237 + components: + - type: Transform + pos: 36.5,3.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17242 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-0.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17245 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17246 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17247 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-40.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,40.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,40.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,48.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,47.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,51.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,26.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,20.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 18139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,43.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLightEmpty + entities: + - uid: 12021 + components: + - type: Transform + pos: -33.5,56.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 12022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,52.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Protolathe + entities: + - uid: 3553 + components: + - type: Transform + pos: -3.5,24.5 + parent: 1 +- proto: Rack + entities: + - uid: 1176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,11.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,11.5 + parent: 1 + - uid: 2392 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 + - uid: 4184 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 1 + - uid: 4442 + components: + - type: Transform + pos: -28.5,32.5 + parent: 1 + - uid: 4443 + components: + - type: Transform + pos: -28.5,31.5 + parent: 1 + - uid: 6277 + components: + - type: Transform + pos: -36.5,23.5 + parent: 1 + - uid: 6552 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 1 + - uid: 6913 + components: + - type: Transform + pos: 25.5,31.5 + parent: 1 + - uid: 7098 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 1 + - uid: 7099 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 1 + - uid: 7154 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 1 + - uid: 7292 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1 + - uid: 7689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,61.5 + parent: 1 + - uid: 7767 + components: + - type: Transform + pos: -19.5,40.5 + parent: 1 + - uid: 7888 + components: + - type: Transform + pos: 41.5,42.5 + parent: 1 + - uid: 8088 + components: + - type: Transform + pos: -11.5,60.5 + parent: 1 + - uid: 8739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-41.5 + parent: 1 + - uid: 9303 + components: + - type: Transform + pos: -34.5,2.5 + parent: 1 + - uid: 9450 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 1 + - uid: 9451 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 1 + - uid: 9897 + components: + - type: Transform + pos: 10.5,48.5 + parent: 1 + - uid: 9965 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 1 + - uid: 9966 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 1 + - uid: 10074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 1 + - uid: 10075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 1 + - uid: 10087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-33.5 + parent: 1 + - uid: 10094 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 1 + - uid: 10107 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 1 + - uid: 10125 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 1 + - uid: 10133 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 1 + - uid: 10875 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 1 + - uid: 11059 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 11066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 1 + - uid: 11070 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1 + - uid: 11081 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1 + - uid: 13156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1 + - uid: 13182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-3.5 + parent: 1 + - uid: 13199 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 1 + - uid: 13318 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1 + - uid: 13321 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1 + - uid: 13328 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 13360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,32.5 + parent: 1 + - uid: 13411 + components: + - type: Transform + pos: -25.5,51.5 + parent: 1 + - uid: 13412 + components: + - type: Transform + pos: -22.5,55.5 + parent: 1 + - uid: 13414 + components: + - type: Transform + pos: -14.5,64.5 + parent: 1 + - uid: 13443 + components: + - type: Transform + pos: 38.5,54.5 + parent: 1 + - uid: 13444 + components: + - type: Transform + pos: -37.5,54.5 + parent: 1 + - uid: 13458 + components: + - type: Transform + pos: -41.5,50.5 + parent: 1 + - uid: 13473 + components: + - type: Transform + pos: -15.5,64.5 + parent: 1 + - uid: 13854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,52.5 + parent: 1 + - uid: 14007 + components: + - type: Transform + pos: 16.5,59.5 + parent: 1 + - uid: 14017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,40.5 + parent: 1 + - uid: 14020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,50.5 + parent: 1 + - uid: 14031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,58.5 + parent: 1 + - uid: 14040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,56.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 2144 + components: + - type: Transform + pos: -42.652122,26.537056 + parent: 1 + - uid: 7397 + components: + - type: Transform + pos: -14.804126,50.394012 + parent: 1 + - uid: 9085 + components: + - type: Transform + pos: 6.5608225,-21.29419 + parent: 1 + - uid: 13400 + components: + - type: Transform + pos: -23.682875,43.57468 + parent: 1 + - uid: 18489 + components: + - type: Transform + pos: 18.316277,50.63189 + parent: 1 + - uid: 18490 + components: + - type: Transform + pos: 12.759903,-11.244627 + parent: 1 + - uid: 18491 + components: + - type: Transform + pos: 12.944487,-11.471684 + parent: 1 + - uid: 18492 + components: + - type: Transform + pos: -6.2471366,24.59688 + parent: 1 + - uid: 18494 + components: + - type: Transform + pos: -16.067932,58.611973 + parent: 1 + - uid: 18495 + components: + - type: Transform + pos: -16.426508,49.945545 + parent: 1 +- proto: Railing + entities: + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,76.5 + parent: 1 + - uid: 3798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 1 + - uid: 4118 + components: + - type: Transform + pos: -44.5,25.5 + parent: 1 + - uid: 4267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,76.5 + parent: 1 + - uid: 6892 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1 + - uid: 6893 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1 + - uid: 6894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,21.5 + parent: 1 + - uid: 6895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,22.5 + parent: 1 + - uid: 6896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 1 + - uid: 6897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,17.5 + parent: 1 + - uid: 8292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,44.5 + parent: 1 + - uid: 8293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,45.5 + parent: 1 + - uid: 8294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,46.5 + parent: 1 + - uid: 8296 + components: + - type: Transform + pos: -32.5,47.5 + parent: 1 + - uid: 8297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,43.5 + parent: 1 + - uid: 8298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,43.5 + parent: 1 + - uid: 8299 + components: + - type: Transform + pos: -34.5,47.5 + parent: 1 + - uid: 8300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,46.5 + parent: 1 + - uid: 8302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,45.5 + parent: 1 + - uid: 8303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,44.5 + parent: 1 + - uid: 8735 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 1 + - uid: 8736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-13.5 + parent: 1 + - uid: 9041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,40.5 + parent: 1 + - uid: 9042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,40.5 + parent: 1 + - uid: 9043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,41.5 + parent: 1 + - uid: 9044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,41.5 + parent: 1 + - uid: 9721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,40.5 + parent: 1 + - uid: 9722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,41.5 + parent: 1 + - uid: 9723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,40.5 + parent: 1 + - uid: 9724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,41.5 + parent: 1 + - uid: 17765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 1 + - uid: 17766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-5.5 + parent: 1 + - uid: 17767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-3.5 + parent: 1 + - uid: 17769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 1 + - uid: 17770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,10.5 + parent: 1 + - uid: 17773 + components: + - type: Transform + pos: 35.5,9.5 + parent: 1 + - uid: 18239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + - uid: 18243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + - uid: 18244 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 18245 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 18246 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 18247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 18248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 18249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 18437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 4003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-33.5 + parent: 1 + - uid: 4004 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 1 + - uid: 4117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,25.5 + parent: 1 + - uid: 6891 + components: + - type: Transform + pos: 23.5,20.5 + parent: 1 + - uid: 6898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,18.5 + parent: 1 + - uid: 8575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,41.5 + parent: 1 + - uid: 9040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,41.5 + parent: 1 + - uid: 17764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 1 + - uid: 17771 + components: + - type: Transform + pos: 36.5,9.5 + parent: 1 + - uid: 18240 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 18242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 3782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 1 + - uid: 3828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-37.5 + parent: 1 + - uid: 3829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-33.5 + parent: 1 + - uid: 4005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-36.5 + parent: 1 + - uid: 4006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-34.5 + parent: 1 + - uid: 4274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,77.5 + parent: 1 + - uid: 4275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,77.5 + parent: 1 + - uid: 8295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,47.5 + parent: 1 + - uid: 8301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,47.5 + parent: 1 + - uid: 8304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,43.5 + parent: 1 + - uid: 8305 + components: + - type: Transform + pos: -31.5,43.5 + parent: 1 + - uid: 17756 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 1 + - uid: 17768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 1 + - uid: 17774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,9.5 + parent: 1 + - uid: 18241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 1 + - uid: 18250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 1 + - uid: 18251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + - uid: 18252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 +- proto: RandomArcade + entities: + - uid: 3405 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 1 + - uid: 3407 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 1 + - uid: 3409 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 1 + - uid: 3677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,69.5 + parent: 1 + - uid: 4356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 1 + - uid: 4363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 1 + - uid: 6279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,68.5 + parent: 1 + - uid: 7688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 1 + - uid: 11072 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1 + - uid: 13413 + components: + - type: Transform + pos: -12.5,69.5 + parent: 1 + - uid: 13415 + components: + - type: Transform + pos: -12.5,70.5 + parent: 1 +- proto: RandomArtifactSpawner + entities: + - uid: 17658 + components: + - type: Transform + pos: -6.5,29.5 + parent: 1 + - uid: 17659 + components: + - type: Transform + pos: -5.5,34.5 + parent: 1 +- proto: RandomBoard + entities: + - uid: 953 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1 + - uid: 3685 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 1 + - uid: 4213 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1 + - uid: 4417 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 1 + - uid: 4419 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 1 + - uid: 4420 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 1 + - uid: 6280 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 7648 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 1 +- proto: RandomDrinkBottle + entities: + - uid: 13313 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - uid: 18096 + components: + - type: Transform + pos: -34.5,54.5 + parent: 1 +- proto: RandomDrinkGlass + entities: + - uid: 9143 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 1 + - uid: 9956 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 1 + - uid: 14070 + components: + - type: Transform + pos: 18.5,64.5 + parent: 1 + - uid: 17278 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 17279 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 17280 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 17281 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 17689 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 1 +- proto: RandomFoodBakedSingle + entities: + - uid: 17664 + components: + - type: Transform + pos: 44.5,41.5 + parent: 1 +- proto: RandomFoodBakedWhole + entities: + - uid: 10951 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 4025 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 13364 + components: + - type: Transform + pos: -39.5,34.5 + parent: 1 + - uid: 17662 + components: + - type: Transform + pos: -32.5,31.5 + parent: 1 +- proto: RandomFoodSingle + entities: + - uid: 13393 + components: + - type: Transform + pos: -24.5,30.5 + parent: 1 + - uid: 17284 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 17661 + components: + - type: Transform + pos: -8.5,36.5 + parent: 1 +- proto: RandomInstruments + entities: + - uid: 6622 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 1 + - uid: 8064 + components: + - type: Transform + pos: -8.5,76.5 + parent: 1 + - uid: 8257 + components: + - type: Transform + pos: -29.5,43.5 + parent: 1 + - uid: 8412 + components: + - type: Transform + pos: 12.5,46.5 + parent: 1 + - uid: 8471 + components: + - type: Transform + pos: 19.5,40.5 + parent: 1 +- proto: RandomPainting + entities: + - uid: 786 + components: + - type: Transform + pos: -25.5,9.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: -24.5,9.5 + parent: 1 + - uid: 8250 + components: + - type: Transform + pos: -26.5,9.5 + parent: 1 + - uid: 8413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 1 + - uid: 8414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,47.5 + parent: 1 + - uid: 17987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-21.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 17954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,53.5 + parent: 1 + - uid: 17955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,55.5 + parent: 1 + - uid: 17956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,57.5 + parent: 1 + - uid: 17957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,49.5 + parent: 1 + - uid: 17961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,23.5 + parent: 1 + - uid: 17962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 1 + - uid: 17963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,25.5 + parent: 1 + - uid: 17967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,59.5 + parent: 1 + - uid: 17968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,57.5 + parent: 1 + - uid: 17970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,47.5 + parent: 1 + - uid: 17974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 1 + - uid: 17975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,6.5 + parent: 1 + - uid: 17976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 1 + - uid: 17979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-17.5 + parent: 1 + - uid: 17981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-20.5 + parent: 1 + - uid: 17983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-25.5 + parent: 1 + - uid: 17984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-30.5 + parent: 1 + - uid: 17985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-16.5 + parent: 1 + - uid: 17994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,28.5 + parent: 1 + - uid: 17995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,20.5 + parent: 1 + - uid: 17996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,24.5 + parent: 1 + - uid: 17997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 1 + - uid: 17998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,8.5 + parent: 1 + - uid: 18008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-36.5 + parent: 1 + - uid: 18009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-32.5 + parent: 1 + - uid: 18010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-28.5 + parent: 1 + - uid: 18011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-21.5 + parent: 1 + - uid: 18012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-18.5 + parent: 1 + - uid: 18015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-8.5 + parent: 1 + - uid: 18016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-8.5 + parent: 1 + - uid: 18018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,8.5 + parent: 1 + - uid: 18019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,19.5 + parent: 1 + - uid: 18022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,44.5 + parent: 1 + - uid: 18023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,47.5 + parent: 1 + - uid: 18024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,50.5 + parent: 1 + - uid: 18029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,56.5 + parent: 1 + - uid: 18030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,53.5 + parent: 1 + - uid: 18032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,65.5 + parent: 1 + - uid: 18039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,48.5 + parent: 1 + - uid: 18040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,51.5 + parent: 1 + - uid: 18041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,42.5 + parent: 1 + - uid: 18087 + components: + - type: Transform + pos: 26.5,28.5 + parent: 1 + - uid: 18088 + components: + - type: Transform + pos: -2.5,33.5 + parent: 1 + - uid: 18092 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 1 + - uid: 18330 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 17958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,44.5 + parent: 1 + - uid: 17959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,48.5 + parent: 1 + - uid: 17960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,42.5 + parent: 1 + - uid: 17973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,25.5 + parent: 1 + - uid: 17977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 1 + - uid: 17980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 1 + - uid: 17982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-27.5 + parent: 1 + - uid: 17986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-16.5 + parent: 1 + - uid: 17993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,28.5 + parent: 1 + - uid: 17999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,7.5 + parent: 1 + - uid: 18001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 1 + - uid: 18002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 1 + - uid: 18003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 1 + - uid: 18013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-15.5 + parent: 1 + - uid: 18014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-10.5 + parent: 1 + - uid: 18020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,27.5 + parent: 1 + - uid: 18021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,32.5 + parent: 1 + - uid: 18026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,54.5 + parent: 1 + - uid: 18027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,51.5 + parent: 1 + - uid: 18028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,55.5 + parent: 1 + - uid: 18033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,64.5 + parent: 1 + - uid: 18034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,68.5 + parent: 1 + - uid: 18037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,53.5 + parent: 1 + - uid: 18038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,54.5 + parent: 1 + - uid: 18042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,45.5 + parent: 1 + - uid: 18079 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 1 + - uid: 18080 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1 + - uid: 18081 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 18085 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 1 + - uid: 18090 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 1 + - uid: 18091 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 1 + - uid: 18110 + components: + - type: Transform + pos: -41.5,49.5 + parent: 1 + - uid: 18111 + components: + - type: Transform + pos: -45.5,46.5 + parent: 1 +- proto: RandomPosterLegit + entities: + - uid: 4138 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 1 + - uid: 8252 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 9310 + components: + - type: Transform + pos: -44.5,0.5 + parent: 1 + - uid: 9630 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 1 + - uid: 9659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 1 + - uid: 17938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-6.5 + parent: 1 + - uid: 17939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-10.5 + parent: 1 + - uid: 17940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,12.5 + parent: 1 + - uid: 17941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,26.5 + parent: 1 + - uid: 17942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,30.5 + parent: 1 + - uid: 17943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,35.5 + parent: 1 + - uid: 17944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,40.5 + parent: 1 + - uid: 17945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,40.5 + parent: 1 + - uid: 17946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,35.5 + parent: 1 + - uid: 17947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,60.5 + parent: 1 + - uid: 17948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,64.5 + parent: 1 + - uid: 17949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,65.5 + parent: 1 + - uid: 17950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,39.5 + parent: 1 + - uid: 17951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,44.5 + parent: 1 + - uid: 17952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,42.5 + parent: 1 + - uid: 17953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,45.5 + parent: 1 + - uid: 17964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 1 + - uid: 17965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,8.5 + parent: 1 + - uid: 17969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,51.5 + parent: 1 + - uid: 17971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,32.5 + parent: 1 + - uid: 17972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,32.5 + parent: 1 + - uid: 17978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-14.5 + parent: 1 + - uid: 17991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,52.5 + parent: 1 + - uid: 17992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,51.5 + parent: 1 + - uid: 18007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-31.5 + parent: 1 + - uid: 18017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,0.5 + parent: 1 + - uid: 18025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,50.5 + parent: 1 + - uid: 18031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,61.5 + parent: 1 + - uid: 18035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,70.5 + parent: 1 + - uid: 18043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,39.5 + parent: 1 + - uid: 18044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 1 + - uid: 18077 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 1 + - uid: 18078 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 1 + - uid: 18082 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 1 + - uid: 18116 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 1 + - uid: 18117 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 1 + - uid: 18125 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 +- proto: RandomSnacks + entities: + - uid: 8721 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1 + - uid: 17660 + components: + - type: Transform + pos: 41.5,36.5 + parent: 1 + - uid: 17663 + components: + - type: Transform + pos: -20.5,15.5 + parent: 1 + - uid: 17667 + components: + - type: Transform + pos: -37.5,7.5 + parent: 1 +- proto: RandomSoap + entities: + - uid: 8132 + components: + - type: Transform + pos: -7.5,70.5 + parent: 1 + - uid: 8265 + components: + - type: Transform + pos: -38.5,49.5 + parent: 1 + - uid: 9379 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 1 + - uid: 9660 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 + - uid: 10100 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 17668 + components: + - type: Transform + pos: -34.5,21.5 + parent: 1 + - uid: 17669 + components: + - type: Transform + pos: -39.5,32.5 + parent: 1 + - uid: 17670 + components: + - type: Transform + pos: -48.5,43.5 + parent: 1 + - uid: 17671 + components: + - type: Transform + pos: -25.5,38.5 + parent: 1 + - uid: 17672 + components: + - type: Transform + pos: -30.5,45.5 + parent: 1 + - uid: 17673 + components: + - type: Transform + pos: -35.5,53.5 + parent: 1 + - uid: 17674 + components: + - type: Transform + pos: -38.5,45.5 + parent: 1 + - uid: 17676 + components: + - type: Transform + pos: -24.5,54.5 + parent: 1 + - uid: 17677 + components: + - type: Transform + pos: -17.5,63.5 + parent: 1 + - uid: 17678 + components: + - type: Transform + pos: -4.5,67.5 + parent: 1 + - uid: 17679 + components: + - type: Transform + pos: 11.5,69.5 + parent: 1 + - uid: 17680 + components: + - type: Transform + pos: 17.5,59.5 + parent: 1 + - uid: 17681 + components: + - type: Transform + pos: 30.5,52.5 + parent: 1 + - uid: 17682 + components: + - type: Transform + pos: 20.5,36.5 + parent: 1 + - uid: 17683 + components: + - type: Transform + pos: 44.5,38.5 + parent: 1 + - uid: 17684 + components: + - type: Transform + pos: 32.5,28.5 + parent: 1 + - uid: 17685 + components: + - type: Transform + pos: 22.5,18.5 + parent: 1 + - uid: 17687 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 1 + - uid: 17688 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 1 + - uid: 17690 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 1 + - uid: 17691 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 1 + - uid: 17692 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 1 + - uid: 17693 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 1 + - uid: 17694 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 1 + - uid: 17695 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 1 + - uid: 17696 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 1 + - uid: 17697 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 1 + - uid: 17698 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 1 + - uid: 17699 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 1 + - uid: 17700 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 1 + - uid: 17701 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 1 + - uid: 17702 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 1 + - uid: 17703 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 1 +- proto: RandomVending + entities: + - uid: 6553 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 1 + - uid: 6690 + components: + - type: Transform + pos: -40.5,11.5 + parent: 1 + - uid: 8418 + components: + - type: Transform + pos: -48.5,44.5 + parent: 1 + - uid: 8457 + components: + - type: Transform + pos: 9.5,70.5 + parent: 1 + - uid: 9052 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 10137 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 1 + - uid: 11060 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1 + - uid: 13394 + components: + - type: Transform + pos: -24.5,29.5 + parent: 1 + - uid: 14006 + components: + - type: Transform + pos: 15.5,64.5 + parent: 1 +- proto: RandomVendingDrinks + entities: + - uid: 3725 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 1 + - uid: 8591 + components: + - type: Transform + pos: -27.5,11.5 + parent: 1 +- proto: RandomVendingSnacks + entities: + - uid: 3726 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 1 +- proto: RCD + entities: + - uid: 8704 + components: + - type: Transform + pos: -13.511377,-23.363 + parent: 1 + - uid: 9098 + components: + - type: Transform + pos: 6.6163073,-24.303488 + parent: 1 +- proto: RCDAmmo + entities: + - uid: 8705 + components: + - type: Transform + pos: -13.667563,-23.646822 + parent: 1 + - uid: 9099 + components: + - type: Transform + pos: 6.6163073,-24.511822 + parent: 1 + - uid: 9100 + components: + - type: Transform + pos: 6.4288073,-24.595156 + parent: 1 +- proto: ReagentContainerFlour + entities: + - uid: 4572 + components: + - type: Transform + pos: 7.857181,-3.1736069 + parent: 1 +- proto: ReagentContainerRice + entities: + - uid: 608 + components: + - type: Transform + pos: 7.5164104,-3.0316958 + parent: 1 +- proto: Recycler + entities: + - uid: 3989 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 1 + - type: DeviceLinkSink + links: + - 4007 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 2498 + components: + - type: Transform + pos: -7.5,59.5 + parent: 1 + - uid: 2686 + components: + - type: Transform + pos: -2.5,28.5 + parent: 1 + - uid: 2687 + components: + - type: Transform + pos: -2.5,29.5 + parent: 1 + - uid: 2688 + components: + - type: Transform + pos: -2.5,30.5 + parent: 1 + - uid: 2962 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 1 + - uid: 2963 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 1 + - uid: 2964 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 1 + - uid: 2965 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 1 + - uid: 2966 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 1 + - uid: 2967 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 1 + - uid: 2968 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 1 + - uid: 2969 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 1 + - uid: 2970 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 1 + - uid: 2974 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 1 + - uid: 2975 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 1 + - uid: 2976 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 1 + - uid: 2977 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 1 + - uid: 2978 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 1 + - uid: 2979 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 1 + - uid: 2980 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 1 + - uid: 2981 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 1 + - uid: 2982 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 1 + - uid: 2983 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 1 + - uid: 2984 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 1 + - uid: 2985 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 1 + - uid: 2986 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 1 + - uid: 2987 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 1 + - uid: 2988 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 1 + - uid: 2989 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 1 + - uid: 2990 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 1 + - uid: 2991 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 1 + - uid: 2992 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 1 + - uid: 2993 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 1 + - uid: 2994 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,33.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,23.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,24.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,22.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,18.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,17.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,16.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,18.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,17.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,11.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,11.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,11.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,11.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,16.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,16.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,16.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,16.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,12.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,12.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,12.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,12.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,12.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,12.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,12.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,16.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,16.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,16.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,17.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,18.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,19.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,27.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,28.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,29.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,32.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,34.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,12.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,16.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -44.5,7.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -44.5,8.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -44.5,9.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,6.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,6.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -45.5,3.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -46.5,3.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 5.5,69.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 6.5,69.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 8.5,72.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 8.5,73.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 8.5,74.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 2.5,75.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 3.5,75.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 2.5,69.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 3.5,69.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 8.5,76.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 8.5,77.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 7.5,79.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 7.5,80.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 6.5,82.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 4.5,83.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 2.5,84.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 1.5,84.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 0.5,84.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: -1.5,84.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: -2.5,84.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: -3.5,84.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: -5.5,83.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: -6.5,83.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 5.5,83.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: 42.5,41.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: 49.5,44.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: 49.5,43.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: 49.5,42.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: 49.5,41.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 51.5,39.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: 51.5,35.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 50.5,34.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 49.5,33.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 45.5,33.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 44.5,34.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 42.5,35.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 41.5,35.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 40.5,35.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 39.5,35.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 37.5,35.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 36.5,35.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: 35.5,35.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 34.5,35.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: 39.5,55.5 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: 39.5,54.5 + parent: 1 + - uid: 915 + components: + - type: Transform + pos: 47.5,46.5 + parent: 1 + - uid: 916 + components: + - type: Transform + pos: 47.5,47.5 + parent: 1 + - uid: 917 + components: + - type: Transform + pos: 47.5,48.5 + parent: 1 + - uid: 918 + components: + - type: Transform + pos: 46.5,49.5 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: 45.5,49.5 + parent: 1 + - uid: 920 + components: + - type: Transform + pos: 48.5,45.5 + parent: 1 + - uid: 921 + components: + - type: Transform + pos: 44.5,50.5 + parent: 1 + - uid: 922 + components: + - type: Transform + pos: 44.5,51.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: 43.5,52.5 + parent: 1 + - uid: 924 + components: + - type: Transform + pos: 42.5,52.5 + parent: 1 + - uid: 925 + components: + - type: Transform + pos: 41.5,52.5 + parent: 1 + - uid: 926 + components: + - type: Transform + pos: -39.5,53.5 + parent: 1 + - uid: 930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,53.5 + parent: 1 + - uid: 933 + components: + - type: Transform + pos: 34.5,57.5 + parent: 1 + - uid: 934 + components: + - type: Transform + pos: 33.5,57.5 + parent: 1 + - uid: 935 + components: + - type: Transform + pos: 31.5,57.5 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: 30.5,57.5 + parent: 1 + - uid: 937 + components: + - type: Transform + pos: 29.5,58.5 + parent: 1 + - uid: 938 + components: + - type: Transform + pos: 28.5,59.5 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 27.5,59.5 + parent: 1 + - uid: 940 + components: + - type: Transform + pos: 26.5,59.5 + parent: 1 + - uid: 941 + components: + - type: Transform + pos: 23.5,59.5 + parent: 1 + - uid: 942 + components: + - type: Transform + pos: 22.5,59.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: 21.5,59.5 + parent: 1 + - uid: 944 + components: + - type: Transform + pos: 19.5,61.5 + parent: 1 + - uid: 945 + components: + - type: Transform + pos: 19.5,62.5 + parent: 1 + - uid: 946 + components: + - type: Transform + pos: 19.5,63.5 + parent: 1 + - uid: 947 + components: + - type: Transform + pos: 19.5,64.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: 18.5,65.5 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: 17.5,65.5 + parent: 1 + - uid: 950 + components: + - type: Transform + pos: 16.5,65.5 + parent: 1 + - uid: 951 + components: + - type: Transform + pos: 15.5,65.5 + parent: 1 + - uid: 954 + components: + - type: Transform + pos: 13.5,69.5 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: 13.5,70.5 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: 12.5,71.5 + parent: 1 + - uid: 957 + components: + - type: Transform + pos: 11.5,71.5 + parent: 1 + - uid: 958 + components: + - type: Transform + pos: 10.5,71.5 + parent: 1 + - uid: 959 + components: + - type: Transform + pos: 9.5,71.5 + parent: 1 + - uid: 960 + components: + - type: Transform + pos: 1.5,70.5 + parent: 1 + - uid: 961 + components: + - type: Transform + pos: 1.5,71.5 + parent: 1 + - uid: 962 + components: + - type: Transform + pos: 1.5,73.5 + parent: 1 + - uid: 963 + components: + - type: Transform + pos: 1.5,74.5 + parent: 1 + - uid: 964 + components: + - type: Transform + pos: -9.5,72.5 + parent: 1 + - uid: 965 + components: + - type: Transform + pos: -9.5,73.5 + parent: 1 + - uid: 966 + components: + - type: Transform + pos: -9.5,74.5 + parent: 1 + - uid: 967 + components: + - type: Transform + pos: -9.5,76.5 + parent: 1 + - uid: 968 + components: + - type: Transform + pos: -9.5,77.5 + parent: 1 + - uid: 969 + components: + - type: Transform + pos: -8.5,79.5 + parent: 1 + - uid: 970 + components: + - type: Transform + pos: -8.5,80.5 + parent: 1 + - uid: 971 + components: + - type: Transform + pos: -7.5,82.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + pos: -4.5,29.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,31.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: -7.5,35.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: -6.5,35.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: -5.5,35.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: -4.5,30.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: -4.5,28.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: -7.5,27.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: -5.5,27.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: -8.5,28.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: -8.5,29.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: -8.5,30.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: -7.5,31.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: -5.5,31.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + pos: -12.5,30.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: -12.5,28.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + pos: -12.5,27.5 + parent: 1 + - uid: 1104 + components: + - type: Transform + pos: -15.5,26.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + pos: -13.5,26.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: -22.5,19.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: -7.5,25.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: -6.5,25.5 + parent: 1 + - uid: 1117 + components: + - type: Transform + pos: -5.5,25.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: -15.5,16.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: -16.5,16.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: -17.5,16.5 + parent: 1 + - uid: 1140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,16.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: -11.5,16.5 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: -2.5,24.5 + parent: 1 + - uid: 1159 + components: + - type: Transform + pos: -2.5,23.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + pos: -2.5,22.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + pos: 1.5,23.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: 1.5,22.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + pos: -8.5,21.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,16.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: -19.5,35.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: -22.5,22.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: -49.5,17.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,26.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: -46.5,34.5 + parent: 1 + - uid: 1291 + components: + - type: Transform + pos: -50.5,34.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: -46.5,17.5 + parent: 1 + - uid: 1296 + components: + - type: Transform + pos: -49.5,34.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + pos: -22.5,20.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + pos: -46.5,6.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + pos: -13.5,39.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + pos: -12.5,39.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + pos: -10.5,39.5 + parent: 1 + - uid: 1330 + components: + - type: Transform + pos: -9.5,39.5 + parent: 1 + - uid: 1331 + components: + - type: Transform + pos: -7.5,39.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: -6.5,39.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: -4.5,39.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: -3.5,39.5 + parent: 1 + - uid: 1351 + components: + - type: Transform + pos: -4.5,56.5 + parent: 1 + - uid: 1352 + components: + - type: Transform + pos: -4.5,57.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: -7.5,53.5 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: -7.5,52.5 + parent: 1 + - uid: 1367 + components: + - type: Transform + pos: -13.5,43.5 + parent: 1 + - uid: 1368 + components: + - type: Transform + pos: -10.5,43.5 + parent: 1 + - uid: 1369 + components: + - type: Transform + pos: -7.5,43.5 + parent: 1 + - uid: 1370 + components: + - type: Transform + pos: -4.5,43.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: -3.5,47.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: -4.5,47.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: -19.5,43.5 + parent: 1 + - uid: 1392 + components: + - type: Transform + pos: -18.5,43.5 + parent: 1 + - uid: 1393 + components: + - type: Transform + pos: -16.5,43.5 + parent: 1 + - uid: 1394 + components: + - type: Transform + pos: -15.5,43.5 + parent: 1 + - uid: 1442 + components: + - type: Transform + pos: -24.5,44.5 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: -24.5,43.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + pos: -24.5,42.5 + parent: 1 + - uid: 1448 + components: + - type: Transform + pos: -15.5,49.5 + parent: 1 + - uid: 1449 + components: + - type: Transform + pos: -15.5,48.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: -39.5,46.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: -39.5,45.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: -26.5,44.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: -26.5,43.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: -26.5,42.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: -32.5,41.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: -31.5,41.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: -30.5,41.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + pos: -35.5,41.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + pos: -34.5,41.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + pos: -34.5,39.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + pos: -35.5,39.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + pos: -32.5,39.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + pos: -31.5,39.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + pos: -30.5,39.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + pos: -39.5,43.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + pos: -39.5,42.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + pos: -27.5,46.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: -41.5,46.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + pos: -41.5,43.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + pos: -41.5,42.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + pos: -28.5,46.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + pos: -32.5,57.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: -40.5,55.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: -52.5,35.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: -52.5,39.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: -50.5,41.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: -50.5,42.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: -50.5,43.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: -50.5,44.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: -49.5,45.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: -48.5,46.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + pos: -48.5,47.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + pos: -48.5,48.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + pos: -47.5,49.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + pos: -46.5,49.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + pos: -45.5,50.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + pos: -45.5,51.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + pos: -44.5,52.5 + parent: 1 + - uid: 1658 + components: + - type: Transform + pos: -43.5,52.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + pos: -42.5,52.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + pos: -40.5,54.5 + parent: 1 + - uid: 1667 + components: + - type: Transform + pos: -35.5,57.5 + parent: 1 + - uid: 1668 + components: + - type: Transform + pos: -34.5,57.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + pos: -30.5,58.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + pos: -29.5,59.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + pos: -28.5,59.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + pos: -27.5,59.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + pos: -24.5,59.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + pos: -23.5,59.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + pos: -22.5,59.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + pos: -20.5,61.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + pos: -20.5,62.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + pos: -20.5,63.5 + parent: 1 + - uid: 1681 + components: + - type: Transform + pos: -20.5,64.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + pos: -19.5,65.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + pos: -18.5,65.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + pos: -17.5,65.5 + parent: 1 + - uid: 1685 + components: + - type: Transform + pos: -16.5,65.5 + parent: 1 + - uid: 1686 + components: + - type: Transform + pos: -14.5,67.5 + parent: 1 + - uid: 1687 + components: + - type: Transform + pos: -14.5,68.5 + parent: 1 + - uid: 1688 + components: + - type: Transform + pos: -14.5,69.5 + parent: 1 + - uid: 1689 + components: + - type: Transform + pos: -14.5,70.5 + parent: 1 + - uid: 1690 + components: + - type: Transform + pos: -13.5,71.5 + parent: 1 + - uid: 1691 + components: + - type: Transform + pos: -12.5,71.5 + parent: 1 + - uid: 1717 + components: + - type: Transform + pos: -41.5,45.5 + parent: 1 + - uid: 1721 + components: + - type: Transform + pos: -40.5,34.5 + parent: 1 + - uid: 1722 + components: + - type: Transform + pos: -40.5,33.5 + parent: 1 + - uid: 1723 + components: + - type: Transform + pos: -40.5,32.5 + parent: 1 + - uid: 1727 + components: + - type: Transform + pos: -43.5,35.5 + parent: 1 + - uid: 1728 + components: + - type: Transform + pos: -42.5,35.5 + parent: 1 + - uid: 1729 + components: + - type: Transform + pos: -41.5,35.5 + parent: 1 + - uid: 1763 + components: + - type: Transform + pos: -40.5,17.5 + parent: 1 + - uid: 1764 + components: + - type: Transform + pos: -40.5,18.5 + parent: 1 + - uid: 1765 + components: + - type: Transform + pos: -40.5,19.5 + parent: 1 + - uid: 1796 + components: + - type: Transform + pos: -15.5,57.5 + parent: 1 + - uid: 1797 + components: + - type: Transform + pos: -14.5,57.5 + parent: 1 + - uid: 1801 + components: + - type: Transform + pos: -15.5,50.5 + parent: 1 + - uid: 1805 + components: + - type: Transform + pos: -14.5,47.5 + parent: 1 + - uid: 1833 + components: + - type: Transform + pos: -14.5,51.5 + parent: 1 + - uid: 1835 + components: + - type: Transform + pos: -11.5,51.5 + parent: 1 + - uid: 1838 + components: + - type: Transform + pos: -13.5,51.5 + parent: 1 + - uid: 1839 + components: + - type: Transform + pos: -10.5,50.5 + parent: 1 + - uid: 1840 + components: + - type: Transform + pos: -11.5,47.5 + parent: 1 + - uid: 1967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-10.5 + parent: 1 + - uid: 1968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-10.5 + parent: 1 + - uid: 1969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-11.5 + parent: 1 + - uid: 1970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-12.5 + parent: 1 + - uid: 1971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-12.5 + parent: 1 + - uid: 1972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-11.5 + parent: 1 + - uid: 1973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-10.5 + parent: 1 + - uid: 1974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-6.5 + parent: 1 + - uid: 1975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-5.5 + parent: 1 + - uid: 1976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-5.5 + parent: 1 + - uid: 1977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-5.5 + parent: 1 + - uid: 1978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-5.5 + parent: 1 + - uid: 1979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-5.5 + parent: 1 + - uid: 1980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,11.5 + parent: 1 + - uid: 1981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,11.5 + parent: 1 + - uid: 1982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,11.5 + parent: 1 + - uid: 1983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,11.5 + parent: 1 + - uid: 1984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,11.5 + parent: 1 + - uid: 1985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,12.5 + parent: 1 + - uid: 1986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,16.5 + parent: 1 + - uid: 1989 + components: + - type: Transform + pos: -41.5,29.5 + parent: 1 + - uid: 1993 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 1 + - uid: 1999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 1 + - uid: 2000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 1 + - uid: 2004 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 1 + - uid: 2007 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 1 + - uid: 2020 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 1 + - uid: 2021 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1 + - uid: 2022 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 1 + - uid: 2023 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 1 + - uid: 2024 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 1 + - uid: 2025 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 1 + - uid: 2026 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 1 + - uid: 2027 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 1 + - uid: 2049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 1 + - uid: 2053 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 1 + - uid: 2054 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 1 + - uid: 2058 + components: + - type: Transform + pos: 50.5,-12.5 + parent: 1 + - uid: 2110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,7.5 + parent: 1 + - uid: 2111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 1 + - uid: 2112 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 1 + - uid: 2113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,5.5 + parent: 1 + - uid: 2120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 1 + - uid: 2121 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 1 + - uid: 2122 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 1 + - uid: 2268 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1 + - uid: 2269 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 1 + - uid: 2270 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 1 + - uid: 2271 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 1 + - uid: 2272 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 1 + - uid: 2273 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 1 + - uid: 2274 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 1 + - uid: 2275 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 1 + - uid: 2276 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 1 + - uid: 2277 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 1 + - uid: 2278 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 1 + - uid: 2279 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 1 + - uid: 2280 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 1 + - uid: 2282 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 1 + - uid: 2283 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 1 + - uid: 2284 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 1 + - uid: 2285 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 1 + - uid: 2286 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 1 + - uid: 2287 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 1 + - uid: 2288 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 1 + - uid: 2289 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 1 + - uid: 2290 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 1 + - uid: 2334 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 2347 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 1 + - uid: 2348 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 1 + - uid: 2349 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 1 + - uid: 2350 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 1 + - uid: 2351 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 1 + - uid: 2352 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 1 + - uid: 2353 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 1 + - uid: 2354 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 1 + - uid: 2355 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 1 + - uid: 2356 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 1 + - uid: 2357 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 1 + - uid: 2358 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 1 + - uid: 2369 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 1 + - uid: 2370 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 1 + - uid: 2371 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 1 + - uid: 2374 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 1 + - uid: 2390 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 2446 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 1 + - uid: 2447 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 1 + - uid: 2448 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1 + - uid: 2460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 1 + - uid: 2473 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 2474 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 2538 + components: + - type: Transform + pos: 33.5,11.5 + parent: 1 + - uid: 2539 + components: + - type: Transform + pos: 33.5,10.5 + parent: 1 + - uid: 2540 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1 + - uid: 2698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-46.5 + parent: 1 + - uid: 2701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 1 + - uid: 2708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-46.5 + parent: 1 + - uid: 2711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-46.5 + parent: 1 + - uid: 2888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,4.5 + parent: 1 + - uid: 2889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,5.5 + parent: 1 + - uid: 2890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,6.5 + parent: 1 + - uid: 2919 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 1 + - uid: 2920 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 1 + - uid: 2921 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 1 + - uid: 2922 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 1 + - uid: 2923 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 1 + - uid: 2947 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 1 + - uid: 2972 + components: + - type: Transform + pos: -9.5,61.5 + parent: 1 + - uid: 3090 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 1 + - uid: 3101 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 1 + - uid: 3106 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 1 + - uid: 3107 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 1 + - uid: 3108 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 1 + - uid: 3109 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 1 + - uid: 3110 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 1 + - uid: 3111 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 1 + - uid: 3112 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 1 + - uid: 3114 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 1 + - uid: 3115 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 1 + - uid: 3116 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 1 + - uid: 3117 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 1 + - uid: 3118 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 1 + - uid: 3119 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 1 + - uid: 3120 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 1 + - uid: 3121 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 1 + - uid: 3122 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 1 + - uid: 3123 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 1 + - uid: 3124 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 1 + - uid: 3125 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 1 + - uid: 3126 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 1 + - uid: 3127 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 1 + - uid: 3128 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 1 + - uid: 3129 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 1 + - uid: 3130 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 1 + - uid: 3131 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 1 + - uid: 3132 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 1 + - uid: 3136 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 1 + - uid: 3137 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 1 + - uid: 3138 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 1 + - uid: 3140 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 1 + - uid: 3143 + components: + - type: Transform + pos: -16.5,23.5 + parent: 1 + - uid: 3154 + components: + - type: Transform + pos: -17.5,23.5 + parent: 1 + - uid: 3157 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 1 + - uid: 3159 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 1 + - uid: 3194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,53.5 + parent: 1 + - uid: 3325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,51.5 + parent: 1 + - uid: 3338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,51.5 + parent: 1 + - uid: 3339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,49.5 + parent: 1 + - uid: 3347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,44.5 + parent: 1 + - uid: 3367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,49.5 + parent: 1 + - uid: 3406 + components: + - type: Transform + pos: -11.5,58.5 + parent: 1 + - uid: 3516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-41.5 + parent: 1 + - uid: 3519 + components: + - type: Transform + pos: -47.5,17.5 + parent: 1 + - uid: 3575 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 1 + - uid: 3610 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1 + - uid: 3690 + components: + - type: Transform + pos: 15.5,68.5 + parent: 1 + - uid: 3695 + components: + - type: Transform + pos: 12.5,35.5 + parent: 1 + - uid: 3696 + components: + - type: Transform + pos: 11.5,35.5 + parent: 1 + - uid: 3697 + components: + - type: Transform + pos: 10.5,35.5 + parent: 1 + - uid: 3703 + components: + - type: Transform + pos: 13.5,68.5 + parent: 1 + - uid: 3734 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 1 + - uid: 3785 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 + - uid: 3786 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 3787 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 1 + - uid: 3788 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 1 + - uid: 3789 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 1 + - uid: 3790 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 1 + - uid: 3791 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 1 + - uid: 3792 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 1 + - uid: 3793 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1 + - uid: 3794 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1 + - uid: 3795 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 1 + - uid: 3796 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 1 + - uid: 3809 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1 + - uid: 3810 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 1 + - uid: 3811 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 1 + - uid: 4086 + components: + - type: Transform + pos: 15.5,66.5 + parent: 1 + - uid: 4106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 1 + - uid: 4107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,35.5 + parent: 1 + - uid: 4112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 1 + - uid: 4113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 1 + - uid: 4123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,16.5 + parent: 1 + - uid: 4124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,16.5 + parent: 1 + - uid: 4125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,16.5 + parent: 1 + - uid: 4137 + components: + - type: Transform + pos: -10.5,58.5 + parent: 1 + - uid: 4216 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1 + - uid: 4386 + components: + - type: Transform + pos: -45.5,6.5 + parent: 1 + - uid: 4489 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 1 + - uid: 4491 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 1 + - uid: 4492 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 1 + - uid: 4493 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 1 + - uid: 4494 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 1 + - uid: 4495 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 1 + - uid: 4496 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 1 + - uid: 4497 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 1 + - uid: 4498 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 1 + - uid: 4499 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 1 + - uid: 4500 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 1 + - uid: 4501 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 1 + - uid: 4502 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 1 + - uid: 4503 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 1 + - uid: 4506 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 1 + - uid: 4509 + components: + - type: Transform + pos: 45.5,35.5 + parent: 1 + - uid: 4510 + components: + - type: Transform + pos: 49.5,35.5 + parent: 1 + - uid: 4570 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 4577 + components: + - type: Transform + pos: -15.5,23.5 + parent: 1 + - uid: 4580 + components: + - type: Transform + pos: -13.5,18.5 + parent: 1 + - uid: 4581 + components: + - type: Transform + pos: -13.5,19.5 + parent: 1 + - uid: 5751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 1 + - uid: 5752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 1 + - uid: 5829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-3.5 + parent: 1 + - uid: 6211 + components: + - type: Transform + pos: -37.5,53.5 + parent: 1 + - uid: 6401 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1 + - uid: 6481 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 1 + - uid: 6495 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 1 + - uid: 6518 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 1 + - uid: 6523 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 1 + - uid: 6524 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 1 + - uid: 6556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,7.5 + parent: 1 + - uid: 6569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 1 + - uid: 6696 + components: + - type: Transform + pos: 1.5,33.5 + parent: 1 + - uid: 6697 + components: + - type: Transform + pos: 14.5,68.5 + parent: 1 + - uid: 7102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 1 + - uid: 7180 + components: + - type: Transform + pos: -48.5,34.5 + parent: 1 + - uid: 7181 + components: + - type: Transform + pos: -47.5,34.5 + parent: 1 + - uid: 7246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 1 + - uid: 7247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 1 + - uid: 7249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 1 + - uid: 7265 + components: + - type: Transform + pos: -31.5,57.5 + parent: 1 + - uid: 7425 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 1 + - uid: 7426 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 1 + - uid: 7429 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 1 + - uid: 7632 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 1 + - uid: 7773 + components: + - type: Transform + pos: -46.5,0.5 + parent: 1 + - uid: 7824 + components: + - type: Transform + pos: -42.5,29.5 + parent: 1 + - uid: 7870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 1 + - uid: 7926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,21.5 + parent: 1 + - uid: 7927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,29.5 + parent: 1 + - uid: 7928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,29.5 + parent: 1 + - uid: 7929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,26.5 + parent: 1 + - uid: 7930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,25.5 + parent: 1 + - uid: 8145 + components: + - type: Transform + pos: -45.5,0.5 + parent: 1 + - uid: 8519 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1 + - uid: 8533 + components: + - type: Transform + pos: 1.5,30.5 + parent: 1 + - uid: 8626 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 8913 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 8914 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 8921 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 8922 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 14086 + components: + - type: Transform + pos: -48.5,17.5 + parent: 1 + - uid: 14087 + components: + - type: Transform + pos: -50.5,17.5 + parent: 1 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 3557 + components: + - type: Transform + pos: -25.5,23.5 + parent: 1 +- proto: RevolverCapGun + entities: + - uid: 3188 + components: + - type: Transform + pos: 46.541428,46.92756 + parent: 1 + - uid: 4365 + components: + - type: Transform + pos: -16.450819,5.681794 + parent: 1 +- proto: RiotShield + entities: + - uid: 7800 + components: + - type: Transform + pos: -18.644022,40.739033 + parent: 1 + - uid: 7801 + components: + - type: Transform + pos: -18.456522,40.489033 + parent: 1 +- proto: RitualDagger + entities: + - uid: 13305 + components: + - type: Transform + pos: -13.567444,6.478457 + parent: 1 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 9008 + components: + - type: Transform + pos: 5.4284496,7.030745 + parent: 1 + - uid: 9009 + components: + - type: Transform + pos: 5.5534496,7.0515785 + parent: 1 +- proto: RollerBed + entities: + - uid: 16376 + components: + - type: Transform + pos: -15.5,56.5 + parent: 1 +- proto: RubberStampApproved + entities: + - uid: 8083 + components: + - type: Transform + pos: 2.6653385,83.53684 + parent: 1 + - uid: 9214 + components: + - type: Transform + pos: 25.569645,4.690318 + parent: 1 + - uid: 9338 + components: + - type: Transform + pos: -43.345627,8.726026 + parent: 1 +- proto: RubberStampDenied + entities: + - uid: 8084 + components: + - type: Transform + pos: 2.4097614,83.2814 + parent: 1 + - uid: 9209 + components: + - type: Transform + pos: 5.143981,72.62612 + parent: 1 + - uid: 9215 + components: + - type: Transform + pos: 25.298811,4.5236516 + parent: 1 + - uid: 9339 + components: + - type: Transform + pos: -43.470627,8.455193 + parent: 1 +- proto: SalvageMagnet + entities: + - uid: 1782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,20.5 + parent: 1 +- proto: Saw + entities: + - uid: 1306 + components: + - type: Transform + pos: -21.578913,34.777924 + parent: 1 +- proto: Scalpel + entities: + - uid: 2617 + components: + - type: Transform + pos: -21.516413,34.371674 + parent: 1 +- proto: ScalpelShiv + entities: + - uid: 8264 + components: + - type: Transform + pos: -37.431377,49.512848 + parent: 1 +- proto: Screwdriver + entities: + - uid: 7461 + components: + - type: Transform + pos: 22.634111,-23.425726 + parent: 1 + - uid: 8669 + components: + - type: Transform + pos: -6.6287556,21.412113 + parent: 1 + - uid: 14048 + components: + - type: Transform + pos: 38.58371,54.56172 + parent: 1 +- proto: SecurityTechFab + entities: + - uid: 6704 + components: + - type: Transform + pos: -10.5,60.5 + parent: 1 +- proto: SeedExtractor + entities: + - uid: 4330 + components: + - type: Transform + pos: -31.5,49.5 + parent: 1 + - uid: 9045 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 10955 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 1 +- proto: SheetGlass + entities: + - uid: 6594 + components: + - type: Transform + pos: -6.753741,24.452673 + parent: 1 + - uid: 8724 + components: + - type: Transform + pos: -13.523513,-34.354816 + parent: 1 + - uid: 9121 + components: + - type: Transform + pos: 13.53321,-20.862442 + parent: 1 + - uid: 9230 + components: + - type: Transform + pos: -25.433441,-12.420451 + parent: 1 +- proto: SheetPGlass + entities: + - uid: 9122 + components: + - type: Transform + pos: 13.554044,-21.237442 + parent: 1 +- proto: SheetPlasma + entities: + - uid: 2631 + components: + - type: Transform + pos: -18.53241,20.599617 + parent: 1 +- proto: SheetPlasma1 + entities: + - uid: 10941 + components: + - type: Transform + pos: 35.01931,-21.424337 + parent: 1 +- proto: SheetPlasteel + entities: + - uid: 9227 + components: + - type: Transform + pos: 13.566712,-21.504738 + parent: 1 + - uid: 9228 + components: + - type: Transform + pos: -25.454273,-11.628785 + parent: 1 +- proto: SheetPlastic + entities: + - uid: 4076 + components: + - type: Transform + pos: 9.361496,26.53074 + parent: 1 + - uid: 6593 + components: + - type: Transform + pos: -7.1513085,24.509438 + parent: 1 + - uid: 8237 + components: + - type: Transform + pos: -11.436809,60.818928 + parent: 1 + - uid: 9305 + components: + - type: Transform + pos: -34.293766,2.546868 + parent: 1 +- proto: SheetSteel + entities: + - uid: 1314 + components: + - type: Transform + pos: -11.620411,60.766808 + parent: 1 + - uid: 2655 + components: + - type: Transform + pos: -13.476898,-33.87969 + parent: 1 + - uid: 2656 + components: + - type: Transform + pos: -13.476898,-33.87969 + parent: 1 + - uid: 6592 + components: + - type: Transform + pos: -7.463681,24.509438 + parent: 1 + - uid: 8520 + components: + - type: Transform + pos: 9.602876,26.559124 + parent: 1 + - uid: 9120 + components: + - type: Transform + pos: 13.53321,-20.508276 + parent: 1 + - uid: 9188 + components: + - type: Transform + pos: 8.490331,-11.469109 + parent: 1 + - uid: 9229 + components: + - type: Transform + pos: -25.454273,-12.045451 + parent: 1 + - uid: 9304 + components: + - type: Transform + pos: -34.606266,2.567701 + parent: 1 +- proto: Shovel + entities: + - uid: 11082 + components: + - type: Transform + pos: 13.542923,5.535556 + parent: 1 +- proto: ShuttersNormal + entities: + - uid: 1065 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,35.5 + parent: 1 + - type: DeviceLinkSink + links: + - 6627 + - uid: 1066 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,35.5 + parent: 1 + - type: DeviceLinkSink + links: + - 6627 + - uid: 1106 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,35.5 + parent: 1 + - type: DeviceLinkSink + links: + - 6627 +- proto: ShuttersNormalOpen + entities: + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,24.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8530 + - uid: 4061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,22.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8530 + - uid: 4078 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8530 + - uid: 6685 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2812 + - uid: 6686 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2812 + - uid: 6703 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2812 + - uid: 6808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8530 + - uid: 7138 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9001 + - uid: 7139 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9001 + - uid: 7140 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9001 + - uid: 7141 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9001 + - uid: 7142 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9001 + - uid: 7143 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9001 + - uid: 8167 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 622 + - uid: 8340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,23.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8530 + - uid: 8622 + components: + - type: Transform + pos: -22.5,22.5 + parent: 1 + - uid: 8623 + components: + - type: Transform + pos: -22.5,20.5 + parent: 1 + - uid: 8624 + components: + - type: Transform + pos: -22.5,19.5 + parent: 1 + - uid: 9278 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 17647 + - uid: 9279 + components: + - type: Transform + pos: 26.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 17647 + - uid: 9280 + components: + - type: Transform + pos: 26.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 17647 + - uid: 9281 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 17647 + - uid: 9343 + components: + - type: Transform + pos: -44.5,9.5 + parent: 1 + - uid: 9344 + components: + - type: Transform + pos: -44.5,8.5 + parent: 1 + - uid: 9345 + components: + - type: Transform + pos: -44.5,7.5 + parent: 1 + - uid: 9346 + components: + - type: Transform + pos: -43.5,6.5 + parent: 1 + - uid: 9347 + components: + - type: Transform + pos: -42.5,6.5 + parent: 1 + - uid: 17631 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9170 + - uid: 17632 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9170 + - uid: 17633 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 1 + - type: DeviceLinkSink + links: + - 9170 +- proto: ShuttersWindowOpen + entities: + - uid: 8253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,20.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8532 + - 8530 + - uid: 8477 + components: + - type: Transform + pos: 9.5,23.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8530 + - uid: 8531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,22.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8530 + - uid: 8532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1 + - type: DeviceLinkSink + links: + - 8530 +- proto: ShuttleWindow + entities: + - uid: 8761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 8756 + - uid: 8762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 8756 + - uid: 8763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 8756 + - uid: 8764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 8756 + - uid: 8775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 8756 + - uid: 8776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 8756 + - uid: 8788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 8756 + - uid: 8789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 8756 + - uid: 8790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 8756 + - uid: 8791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 8756 + - uid: 8792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 8756 + - uid: 8795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 8756 + - uid: 8796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 8756 + - uid: 8801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 8756 + - uid: 8805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 8756 + - uid: 8807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 8756 + - uid: 8812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 8756 + - uid: 8814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 8756 +- proto: SignalButton + entities: + - uid: 2128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2130: + - Pressed: Toggle + - uid: 2291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2129: + - Pressed: Toggle + 2607: + - Pressed: Toggle + - uid: 2612 + components: + - type: Transform + pos: -46.5,6.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2610: + - Pressed: Toggle + - uid: 6627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,31.5 + parent: 1 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 1066: + - Pressed: Toggle + 1106: + - Pressed: Toggle + 1065: + - Pressed: Toggle + - uid: 7826 + components: + - type: Transform + pos: -43.5,23.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 4135: + - Pressed: Toggle + 7923: + - Pressed: Toggle + - uid: 8572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,31.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1048: + - Pressed: Toggle + - uid: 8625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,21.5 + parent: 1 + - uid: 8738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 1 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 2813: + - Pressed: Toggle + 2814: + - Pressed: Toggle + 2821: + - Pressed: Toggle + 2822: + - Pressed: Toggle + - uid: 8749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-37.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 3050: + - Pressed: Toggle + - uid: 8750 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 3052: + - Pressed: Toggle + 3051: + - Pressed: Toggle + 3053: + - Pressed: Toggle + - uid: 9001 + components: + - type: Transform + pos: -9.5,9.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 7143: + - Pressed: Toggle + 7142: + - Pressed: Toggle + 7141: + - Pressed: Toggle + 7140: + - Pressed: Toggle + 7139: + - Pressed: Toggle + 7138: + - Pressed: Toggle + - uid: 9170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 17632: + - Pressed: Toggle + 17633: + - Pressed: Toggle + 17631: + - Pressed: Toggle + - uid: 9348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,10.5 + parent: 1 + - uid: 9404 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 9406: + - Pressed: Toggle + - uid: 17647 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 9281: + - Pressed: Toggle + 9280: + - Pressed: Toggle + 9279: + - Pressed: Toggle + 9278: + - Pressed: Toggle + - uid: 17648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 1 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 4205: + - Pressed: Toggle + - uid: 17649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-38.5 + parent: 1 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 3066: + - Pressed: Toggle +- proto: SignalButtonBridge + entities: + - uid: 4305 + components: + - type: Transform + pos: -0.5,79.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 4302: + - Pressed: Toggle + 4303: + - Pressed: Toggle + 4304: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 622 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 8167: + - Pressed: Toggle + - uid: 2812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 6686: + - Pressed: Toggle + 6685: + - Pressed: Toggle + 6703: + - Pressed: Toggle + - uid: 8530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,21.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 4061: + - Pressed: Toggle + 8340: + - Pressed: Toggle + 6808: + - Pressed: Toggle + 4078: + - Pressed: Toggle + 550: + - Pressed: Toggle + 8532: + - Pressed: Toggle + 8253: + - Pressed: Toggle + 8531: + - Pressed: Toggle + 8477: + - Pressed: Toggle +- proto: SignalButtonExt3 + entities: + - uid: 9658 + components: + - type: MetaData + desc: Press in case of grey tide. + name: emergency security lockdown + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,47.5 + parent: 1 +- proto: SignalButtonWindows + entities: + - uid: 17612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,73.5 + parent: 1 +- proto: SignAnomaly + entities: + - uid: 17888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,26.5 + parent: 1 +- proto: SignAnomaly2 + entities: + - uid: 4579 + components: + - type: Transform + pos: -19.5,20.5 + parent: 1 +- proto: SignArmory + entities: + - uid: 17849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,58.5 + parent: 1 +- proto: SignAtmos + entities: + - uid: 17850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 1 +- proto: SignAtmosMinsky + entities: + - uid: 17851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 1 +- proto: SignBar + entities: + - uid: 17852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,12.5 + parent: 1 + - uid: 17853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 17895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,69.5 + parent: 1 + - uid: 17896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,75.5 + parent: 1 +- proto: SignCargo + entities: + - uid: 4156 + components: + - type: Transform + pos: -33.5,3.5 + parent: 1 + - uid: 17805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,8.5 + parent: 1 +- proto: SignCargoDock + entities: + - uid: 9309 + components: + - type: Transform + pos: -47.5,3.5 + parent: 1 + - uid: 18055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-6.5 + parent: 1 + - uid: 18056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-12.5 + parent: 1 +- proto: SignChapel + entities: + - uid: 14050 + components: + - type: Transform + pos: 32.5,50.5 + parent: 1 + - uid: 14051 + components: + - type: Transform + pos: 31.5,53.5 + parent: 1 + - uid: 14053 + components: + - type: Transform + pos: 28.5,39.5 + parent: 1 +- proto: SignChem + entities: + - uid: 17854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,26.5 + parent: 1 +- proto: SignCloning + entities: + - uid: 17855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,29.5 + parent: 1 +- proto: SignConference + entities: + - uid: 17894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,69.5 + parent: 1 +- proto: SignDirectionalBridge + entities: + - uid: 17785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,40 + parent: 1 + - uid: 17791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 1 + - uid: 17804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.499792,17.748297 + parent: 1 + - uid: 17818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.4996006,-10.254558 + parent: 1 + - uid: 17826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.501215,-6.252189 + parent: 1 + - uid: 17836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.510975,16.766766 + parent: 1 +- proto: SignDirectionalBrig + entities: + - uid: 8228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,46.5 + parent: 1 + - uid: 8229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,46.5 + parent: 1 +- proto: SignDirectionalChapel + entities: + - uid: 14052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,39.5 + parent: 1 +- proto: SignDirectionalCryo + entities: + - uid: 8391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.499591,39.71743 + parent: 1 +- proto: SignDirectionalDorms + entities: + - uid: 17843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,39.5 + parent: 1 +- proto: SignDirectionalEng + entities: + - uid: 17779 + components: + - type: Transform + pos: 1.5,64.5 + parent: 1 + - uid: 17793 + components: + - type: Transform + pos: 1.5032121,16.251781 + parent: 1 + - uid: 17796 + components: + - type: Transform + pos: 1.5012997,40.742867 + parent: 1 + - uid: 17797 + components: + - type: Transform + pos: -29.5,17.5 + parent: 1 + - uid: 17812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.496174,-6.737631 + parent: 1 + - uid: 17819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 1 + - uid: 17832 + components: + - type: Transform + pos: 33.501507,12.256447 + parent: 1 + - uid: 17841 + components: + - type: Transform + pos: 33.496597,35.248928 + parent: 1 +- proto: SignDirectionalEvac + entities: + - uid: 17777 + components: + - type: Transform + pos: 1.5,65.5 + parent: 1 + - uid: 17784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,39.5 + parent: 1 + - uid: 17792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.4961122,16.741375 + parent: 1 + - uid: 17798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,17 + parent: 1 + - uid: 17808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 1 + - uid: 17809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 1 + - uid: 17817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.4996006,-10.751246 + parent: 1 + - uid: 17823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.50534,-6.2478724 + parent: 1 + - uid: 17834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 1 + - uid: 17835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.510975,16.238834 + parent: 1 + - uid: 17838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.50556,35.762794 + parent: 1 +- proto: SignDirectionalFood + entities: + - uid: 17783 + components: + - type: Transform + pos: 1.5024469,64.25979 + parent: 1 + - uid: 17827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.499456,-6.7559733 + parent: 1 + - uid: 17833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.501507,12.767326 + parent: 1 +- proto: SignDirectionalGravity + entities: + - uid: 17806 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 1 +- proto: SignDirectionalHop + entities: + - uid: 17789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.4986358,39.25191 + parent: 1 + - uid: 17795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5008452,16.251781 + parent: 1 + - uid: 17813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + - uid: 17821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.501915,-6.2549677 + parent: 1 + - uid: 17837 + components: + - type: Transform + pos: 33.5,35.5 + parent: 1 +- proto: SignDirectionalJanitor + entities: + - uid: 17807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 1 +- proto: SignDirectionalMed + entities: + - uid: 17781 + components: + - type: Transform + pos: 1.5024469,64.74938 + parent: 1 + - uid: 17787 + components: + - type: Transform + pos: 1.4998497,40.250824 + parent: 1 + - uid: 17799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,16.5 + parent: 1 + - uid: 17815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5044566,-10.254558 + parent: 1 + - uid: 17824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.50534,-6.7516565 + parent: 1 + - uid: 17828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 1 + - uid: 17842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.502005,35.256023 + parent: 1 +- proto: SignDirectionalSalvage + entities: + - uid: 17802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,16.5 + parent: 1 +- proto: SignDirectionalSci + entities: + - uid: 17782 + components: + - type: Transform + pos: 1.5024469,65.749855 + parent: 1 + - uid: 17786 + components: + - type: Transform + pos: 1.5,40.5 + parent: 1 + - uid: 17801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.49926,16.75212 + parent: 1 + - uid: 17816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5044566,-10.751246 + parent: 1 + - uid: 17825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-6.5 + parent: 1 + - uid: 17830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.504549,12.249351 + parent: 1 +- proto: SignDirectionalSec + entities: + - uid: 17780 + components: + - type: Transform + pos: 1.5024469,65.24607 + parent: 1 + - uid: 17790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,16.5 + parent: 1 + - uid: 17800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.49926,17.251825 + parent: 1 + - uid: 17811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.496174,-6.248038 + parent: 1 + - uid: 17814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 + - uid: 17822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1 + - uid: 17829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.504549,12.753135 + parent: 1 + - uid: 17839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 1 +- proto: SignDirectionalSolar + entities: + - uid: 17845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,41.5 + parent: 1 + - uid: 17846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,51.5 + parent: 1 + - uid: 17847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,51.5 + parent: 1 + - uid: 17848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,44.5 + parent: 1 +- proto: SignDirectionalSupply + entities: + - uid: 17778 + components: + - type: Transform + pos: 1.5,65 + parent: 1 + - uid: 17788 + components: + - type: Transform + pos: 1.4998497,39.754135 + parent: 1 + - uid: 17794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5079443,16.755566 + parent: 1 + - uid: 17803 + components: + - type: Transform + pos: -29.492693,16.258232 + parent: 1 + - uid: 17810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-6 + parent: 1 + - uid: 17820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.501915,-6.7516565 + parent: 1 + - uid: 17831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,12.5 + parent: 1 + - uid: 17840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.50573,35.759808 + parent: 1 +- proto: SignDirectionalWash + entities: + - uid: 17844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,39.5 + parent: 1 +- proto: SignDisposalSpace + entities: + - uid: 3993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 1 + - uid: 9605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-38.5 + parent: 1 +- proto: SignDrones + entities: + - uid: 9562 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 1 +- proto: SignEngine + entities: + - uid: 17864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-35.5 + parent: 1 +- proto: SignEngineering + entities: + - uid: 17863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 +- proto: SignEscapePods + entities: + - uid: 6545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-27.5 + parent: 1 + - uid: 7428 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 1 +- proto: SignEVA + entities: + - uid: 6935 + components: + - type: Transform + pos: 23.5,35.5 + parent: 1 + - uid: 6936 + components: + - type: Transform + pos: 28.5,30.5 + parent: 1 +- proto: SignExamroom + entities: + - uid: 8426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,29.5 + parent: 1 +- proto: SignFire + entities: + - uid: 17865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-48.5 + parent: 1 + - uid: 17869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-38.5 + parent: 1 + - uid: 17870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-36.5 + parent: 1 +- proto: SignFlammableMed + entities: + - uid: 17866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-46.5 + parent: 1 + - uid: 17867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-46.5 + parent: 1 + - uid: 17868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-38.5 + parent: 1 + - uid: 17871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-36.5 + parent: 1 +- proto: SignGravity + entities: + - uid: 9564 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 1 +- proto: SignHead + entities: + - uid: 17357 + components: + - type: Transform + pos: -12.5,58.5 + parent: 1 + - uid: 17893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,75.5 + parent: 1 + - uid: 17966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,9.5 + parent: 1 + - uid: 18112 + components: + - type: Transform + pos: 13.5,33.5 + parent: 1 + - uid: 18113 + components: + - type: Transform + pos: -22.5,24.5 + parent: 1 + - uid: 18114 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 1 +- proto: SignHydro1 + entities: + - uid: 17872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 +- proto: SignKiddiePlaque + entities: + - uid: 17892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,44.5 + parent: 1 +- proto: SignLibrary + entities: + - uid: 17873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,9.5 + parent: 1 + - uid: 17874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 1 +- proto: SignMail + entities: + - uid: 17875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,12.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 6928 + components: + - type: Transform + pos: 13.5,20.5 + parent: 1 +- proto: SignMinerDock + entities: + - uid: 7925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,29.5 + parent: 1 +- proto: SignMorgue + entities: + - uid: 17877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,30.5 + parent: 1 +- proto: SignPrison + entities: + - uid: 8225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,49.5 + parent: 1 + - uid: 8226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,49.5 + parent: 1 + - uid: 8227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,41.5 + parent: 1 +- proto: SignRedFour + entities: + - uid: 7703 + components: + - type: Transform + pos: -5.5,42.5 + parent: 1 +- proto: SignRedOne + entities: + - uid: 7699 + components: + - type: Transform + pos: -14.5,42.5 + parent: 1 +- proto: SignRedThree + entities: + - uid: 7702 + components: + - type: Transform + pos: -8.5,42.5 + parent: 1 +- proto: SignRedTwo + entities: + - uid: 7700 + components: + - type: Transform + pos: -11.5,42.5 + parent: 1 +- proto: SignRND + entities: + - uid: 17878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,20.5 + parent: 1 +- proto: SignRobo + entities: + - uid: 17880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,35.5 + parent: 1 + - uid: 17881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,29.5 + parent: 1 +- proto: SignScience + entities: + - uid: 17879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,19.5 + parent: 1 +- proto: SignScience1 + entities: + - uid: 17882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,25.5 + parent: 1 +- proto: SignScience2 + entities: + - uid: 17883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,21.5 + parent: 1 +- proto: SignSecureSmall + entities: + - uid: 17890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-10.5 + parent: 1 +- proto: SignSecureSmallRed + entities: + - uid: 17884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,48.5 + parent: 1 + - uid: 17885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,45.5 + parent: 1 + - uid: 18118 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 1 +- proto: SignShield + entities: + - uid: 17886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,49.5 + parent: 1 + - uid: 18123 + components: + - type: Transform + pos: -15.5,51.5 + parent: 1 +- proto: SignShipDock + entities: + - uid: 17745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,2.5 + parent: 1 + - uid: 17856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,33.5 + parent: 1 + - uid: 17857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,37.5 + parent: 1 + - uid: 17858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,18.5 + parent: 1 + - uid: 17859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,14.5 + parent: 1 + - uid: 18052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,37.5 + parent: 1 + - uid: 18054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,14.5 + parent: 1 +- proto: SignSmoking + entities: + - uid: 17757 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 1 + - uid: 17758 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 1 +- proto: SignSpace + entities: + - uid: 2062 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 1 + - uid: 3700 + components: + - type: Transform + pos: 13.5,66.5 + parent: 1 + - uid: 6479 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 1 + - uid: 18045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,0.5 + parent: 1 + - uid: 18046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,14.5 + parent: 1 + - uid: 18047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,16.5 + parent: 1 + - uid: 18048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,37.5 + parent: 1 + - uid: 18049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,56.5 + parent: 1 + - uid: 18050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,56.5 + parent: 1 + - uid: 18051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,39.5 + parent: 1 + - uid: 18053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,16.5 + parent: 1 + - uid: 18057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-10.5 + parent: 1 + - uid: 18058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-42.5 + parent: 1 + - uid: 18059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-38.5 + parent: 1 + - uid: 18060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-42.5 + parent: 1 + - uid: 18061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-38.5 + parent: 1 +- proto: SignSurgery + entities: + - uid: 8678 + components: + - type: Transform + pos: 13.5,26.5 + parent: 1 +- proto: SignTelecomms + entities: + - uid: 17889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 1 +- proto: SignToolStorage + entities: + - uid: 17887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,32.5 + parent: 1 +- proto: Sink + entities: + - uid: 907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 1 + - uid: 4212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 1 +- proto: SinkStemlessWater + entities: + - uid: 8602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,31.5 + parent: 1 + - uid: 8933 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 8999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + - uid: 10099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-39.5 + parent: 1 + - uid: 10104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-39.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 6684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 1 +- proto: SmartFridge + entities: + - uid: 9047 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 6.5,3.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 3459 + components: + - type: MetaData + name: Comms SMES + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 3831 + components: + - type: MetaData + name: Engi SMES 4 + - type: Transform + pos: 8.5,-29.5 + parent: 1 + - uid: 3832 + components: + - type: MetaData + name: Engi SMES 2 + - type: Transform + pos: 6.5,-29.5 + parent: 1 + - uid: 6507 + components: + - type: MetaData + name: Engi SMES 1 + - type: Transform + pos: 5.5,-29.5 + parent: 1 + - uid: 6575 + components: + - type: MetaData + name: Engi SMES 3 + - type: Transform + pos: 7.5,-29.5 + parent: 1 + - uid: 8011 + components: + - type: MetaData + name: North West Solars SMES + - type: Transform + pos: -39.5,55.5 + parent: 1 + - uid: 14044 + components: + - type: MetaData + name: North East Solars SMES + - type: Transform + pos: 36.5,55.5 + parent: 1 +- proto: SmokingPipe + entities: + - uid: 6850 + components: + - type: Transform + pos: 43.573822,50.730164 + parent: 1 + - uid: 8107 + components: + - type: Transform + pos: 6.465735,72.71857 + parent: 1 + - uid: 8279 + components: + - type: Transform + pos: -29.362019,44.061478 + parent: 1 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 8994 + components: + - type: Transform + pos: -4.659399,11.620097 + parent: 1 +- proto: Soap + entities: + - uid: 9254 + components: + - type: Transform + pos: 16.665726,-4.834745 + parent: 1 +- proto: SoapOmega + entities: + - uid: 17614 + components: + - type: Transform + pos: 7.506346,46.726536 + parent: 1 +- proto: soda_dispenser + entities: + - uid: 4044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,6.5 + parent: 1 +- proto: SolarPanel + entities: + - uid: 3515 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 1 + - uid: 3835 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 1 + - uid: 3836 + components: + - type: Transform + pos: -6.5,-69.5 + parent: 1 + - uid: 3837 + components: + - type: Transform + pos: -6.5,-68.5 + parent: 1 + - uid: 3838 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 1 + - uid: 3839 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 1 + - uid: 3840 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 1 + - uid: 3841 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 1 + - uid: 3842 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 1 + - uid: 3843 + components: + - type: Transform + pos: -8.5,-69.5 + parent: 1 + - uid: 3844 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 1 + - uid: 3845 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 1 + - uid: 3846 + components: + - type: Transform + pos: -8.5,-66.5 + parent: 1 + - uid: 3847 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 1 + - uid: 3848 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 1 + - uid: 3849 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 1 + - uid: 3850 + components: + - type: Transform + pos: -8.5,-61.5 + parent: 1 + - uid: 3851 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 1 + - uid: 3852 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 1 + - uid: 3853 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 1 + - uid: 3854 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 1 + - uid: 3855 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 1 + - uid: 3856 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 1 + - uid: 3857 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 1 + - uid: 3858 + components: + - type: Transform + pos: -10.5,-53.5 + parent: 1 + - uid: 3859 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 1 + - uid: 3860 + components: + - type: Transform + pos: -5.5,-61.5 + parent: 1 + - uid: 3861 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 1 + - uid: 3862 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 1 + - uid: 3863 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 1 + - uid: 3864 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 1 + - uid: 3865 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 1 + - uid: 3866 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 1 + - uid: 3867 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 1 + - uid: 3868 + components: + - type: Transform + pos: -4.5,-53.5 + parent: 1 + - uid: 3869 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 1 + - uid: 3870 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 1 + - uid: 3871 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 1 + - uid: 3872 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 1 + - uid: 3873 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 1 + - uid: 3874 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 1 + - uid: 3875 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 1 + - uid: 3876 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 1 + - uid: 3877 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 1 + - uid: 3878 + components: + - type: Transform + pos: 5.5,-64.5 + parent: 1 + - uid: 3879 + components: + - type: Transform + pos: 5.5,-65.5 + parent: 1 + - uid: 3880 + components: + - type: Transform + pos: 5.5,-66.5 + parent: 1 + - uid: 3881 + components: + - type: Transform + pos: 5.5,-67.5 + parent: 1 + - uid: 3882 + components: + - type: Transform + pos: 5.5,-68.5 + parent: 1 + - uid: 3883 + components: + - type: Transform + pos: 5.5,-69.5 + parent: 1 + - uid: 3884 + components: + - type: Transform + pos: 5.5,-70.5 + parent: 1 + - uid: 3885 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 1 + - uid: 3886 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 1 + - uid: 3887 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 1 + - uid: 3888 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 1 + - uid: 3889 + components: + - type: Transform + pos: 7.5,-68.5 + parent: 1 + - uid: 3890 + components: + - type: Transform + pos: 7.5,-69.5 + parent: 1 + - uid: 3891 + components: + - type: Transform + pos: 7.5,-70.5 + parent: 1 + - uid: 3892 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 1 + - uid: 3893 + components: + - type: Transform + pos: 7.5,-61.5 + parent: 1 + - uid: 3894 + components: + - type: Transform + pos: 7.5,-60.5 + parent: 1 + - uid: 3895 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 1 + - uid: 3896 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 1 + - uid: 3897 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 1 + - uid: 3898 + components: + - type: Transform + pos: 9.5,-56.5 + parent: 1 + - uid: 3899 + components: + - type: Transform + pos: 9.5,-55.5 + parent: 1 + - uid: 3900 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 1 + - uid: 3901 + components: + - type: Transform + pos: 9.5,-53.5 + parent: 1 + - uid: 3902 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 1 + - uid: 3903 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 1 + - uid: 3904 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 1 + - uid: 3905 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 1 + - uid: 3906 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 1 + - uid: 3907 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 1 + - uid: 3908 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 1 + - uid: 3909 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 1 + - uid: 3910 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 1 + - uid: 3911 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 1 + - uid: 3912 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 1 + - uid: 3913 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 1 + - uid: 3914 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 1 + - uid: 3915 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 1 + - uid: 3916 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 1 + - uid: 3917 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 1 + - uid: 3918 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 1 + - uid: 3919 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 1 + - uid: 7445 + components: + - type: Transform + pos: 40.5,74.5 + parent: 1 + - uid: 7446 + components: + - type: Transform + pos: 41.5,74.5 + parent: 1 + - uid: 7447 + components: + - type: Transform + pos: 42.5,74.5 + parent: 1 + - uid: 7448 + components: + - type: Transform + pos: 43.5,74.5 + parent: 1 + - uid: 7449 + components: + - type: Transform + pos: 44.5,74.5 + parent: 1 + - uid: 7450 + components: + - type: Transform + pos: 45.5,74.5 + parent: 1 + - uid: 7451 + components: + - type: Transform + pos: 46.5,74.5 + parent: 1 + - uid: 7452 + components: + - type: Transform + pos: 40.5,72.5 + parent: 1 + - uid: 7453 + components: + - type: Transform + pos: 41.5,72.5 + parent: 1 + - uid: 7454 + components: + - type: Transform + pos: 42.5,72.5 + parent: 1 + - uid: 7455 + components: + - type: Transform + pos: 43.5,72.5 + parent: 1 + - uid: 7456 + components: + - type: Transform + pos: 44.5,72.5 + parent: 1 + - uid: 7457 + components: + - type: Transform + pos: 45.5,72.5 + parent: 1 + - uid: 7458 + components: + - type: Transform + pos: 46.5,72.5 + parent: 1 + - uid: 7459 + components: + - type: Transform + pos: 39.5,72.5 + parent: 1 + - uid: 7460 + components: + - type: Transform + pos: 39.5,74.5 + parent: 1 + - uid: 7465 + components: + - type: Transform + pos: 35.5,74.5 + parent: 1 + - uid: 7466 + components: + - type: Transform + pos: 34.5,74.5 + parent: 1 + - uid: 7467 + components: + - type: Transform + pos: 33.5,74.5 + parent: 1 + - uid: 7468 + components: + - type: Transform + pos: 32.5,74.5 + parent: 1 + - uid: 7469 + components: + - type: Transform + pos: 31.5,74.5 + parent: 1 + - uid: 7470 + components: + - type: Transform + pos: 30.5,74.5 + parent: 1 + - uid: 7471 + components: + - type: Transform + pos: 29.5,74.5 + parent: 1 + - uid: 7472 + components: + - type: Transform + pos: 28.5,74.5 + parent: 1 + - uid: 7473 + components: + - type: Transform + pos: 28.5,72.5 + parent: 1 + - uid: 7474 + components: + - type: Transform + pos: 29.5,72.5 + parent: 1 + - uid: 7475 + components: + - type: Transform + pos: 30.5,72.5 + parent: 1 + - uid: 7476 + components: + - type: Transform + pos: 31.5,72.5 + parent: 1 + - uid: 7477 + components: + - type: Transform + pos: 32.5,72.5 + parent: 1 + - uid: 7478 + components: + - type: Transform + pos: 33.5,72.5 + parent: 1 + - uid: 7479 + components: + - type: Transform + pos: 34.5,72.5 + parent: 1 + - uid: 7480 + components: + - type: Transform + pos: 35.5,72.5 + parent: 1 + - uid: 7481 + components: + - type: Transform + pos: 35.5,68.5 + parent: 1 + - uid: 7482 + components: + - type: Transform + pos: 39.5,70.5 + parent: 1 + - uid: 7483 + components: + - type: Transform + pos: 40.5,70.5 + parent: 1 + - uid: 7484 + components: + - type: Transform + pos: 41.5,70.5 + parent: 1 + - uid: 7485 + components: + - type: Transform + pos: 42.5,70.5 + parent: 1 + - uid: 7486 + components: + - type: Transform + pos: 43.5,70.5 + parent: 1 + - uid: 7487 + components: + - type: Transform + pos: 44.5,70.5 + parent: 1 + - uid: 7488 + components: + - type: Transform + pos: 45.5,70.5 + parent: 1 + - uid: 7489 + components: + - type: Transform + pos: 46.5,70.5 + parent: 1 + - uid: 7490 + components: + - type: Transform + pos: 46.5,68.5 + parent: 1 + - uid: 7491 + components: + - type: Transform + pos: 45.5,68.5 + parent: 1 + - uid: 7492 + components: + - type: Transform + pos: 44.5,68.5 + parent: 1 + - uid: 7493 + components: + - type: Transform + pos: 43.5,68.5 + parent: 1 + - uid: 7494 + components: + - type: Transform + pos: 42.5,68.5 + parent: 1 + - uid: 7495 + components: + - type: Transform + pos: 41.5,68.5 + parent: 1 + - uid: 7496 + components: + - type: Transform + pos: 40.5,68.5 + parent: 1 + - uid: 7497 + components: + - type: Transform + pos: 39.5,68.5 + parent: 1 + - uid: 7498 + components: + - type: Transform + pos: 34.5,68.5 + parent: 1 + - uid: 7499 + components: + - type: Transform + pos: 33.5,68.5 + parent: 1 + - uid: 7500 + components: + - type: Transform + pos: 32.5,68.5 + parent: 1 + - uid: 7501 + components: + - type: Transform + pos: 31.5,68.5 + parent: 1 + - uid: 7502 + components: + - type: Transform + pos: 30.5,68.5 + parent: 1 + - uid: 7503 + components: + - type: Transform + pos: 29.5,68.5 + parent: 1 + - uid: 7504 + components: + - type: Transform + pos: 28.5,68.5 + parent: 1 + - uid: 7505 + components: + - type: Transform + pos: 28.5,70.5 + parent: 1 + - uid: 7506 + components: + - type: Transform + pos: 29.5,70.5 + parent: 1 + - uid: 7507 + components: + - type: Transform + pos: 30.5,70.5 + parent: 1 + - uid: 7508 + components: + - type: Transform + pos: 31.5,70.5 + parent: 1 + - uid: 7509 + components: + - type: Transform + pos: 32.5,70.5 + parent: 1 + - uid: 7510 + components: + - type: Transform + pos: 33.5,70.5 + parent: 1 + - uid: 7511 + components: + - type: Transform + pos: 34.5,70.5 + parent: 1 + - uid: 7512 + components: + - type: Transform + pos: 35.5,70.5 + parent: 1 + - uid: 7945 + components: + - type: Transform + pos: -36.5,74.5 + parent: 1 + - uid: 7946 + components: + - type: Transform + pos: -35.5,74.5 + parent: 1 + - uid: 7947 + components: + - type: Transform + pos: -34.5,74.5 + parent: 1 + - uid: 7948 + components: + - type: Transform + pos: -33.5,74.5 + parent: 1 + - uid: 7949 + components: + - type: Transform + pos: -32.5,74.5 + parent: 1 + - uid: 7950 + components: + - type: Transform + pos: -31.5,74.5 + parent: 1 + - uid: 7951 + components: + - type: Transform + pos: -30.5,74.5 + parent: 1 + - uid: 7952 + components: + - type: Transform + pos: -29.5,74.5 + parent: 1 + - uid: 7953 + components: + - type: Transform + pos: -36.5,72.5 + parent: 1 + - uid: 7954 + components: + - type: Transform + pos: -35.5,72.5 + parent: 1 + - uid: 7955 + components: + - type: Transform + pos: -34.5,72.5 + parent: 1 + - uid: 7956 + components: + - type: Transform + pos: -33.5,72.5 + parent: 1 + - uid: 7957 + components: + - type: Transform + pos: -32.5,72.5 + parent: 1 + - uid: 7958 + components: + - type: Transform + pos: -31.5,72.5 + parent: 1 + - uid: 7959 + components: + - type: Transform + pos: -30.5,72.5 + parent: 1 + - uid: 7960 + components: + - type: Transform + pos: -29.5,72.5 + parent: 1 + - uid: 7961 + components: + - type: Transform + pos: -36.5,70.5 + parent: 1 + - uid: 7962 + components: + - type: Transform + pos: -35.5,70.5 + parent: 1 + - uid: 7963 + components: + - type: Transform + pos: -34.5,70.5 + parent: 1 + - uid: 7964 + components: + - type: Transform + pos: -33.5,70.5 + parent: 1 + - uid: 7965 + components: + - type: Transform + pos: -32.5,70.5 + parent: 1 + - uid: 7966 + components: + - type: Transform + pos: -31.5,70.5 + parent: 1 + - uid: 7967 + components: + - type: Transform + pos: -30.5,70.5 + parent: 1 + - uid: 7968 + components: + - type: Transform + pos: -29.5,70.5 + parent: 1 + - uid: 7969 + components: + - type: Transform + pos: -36.5,68.5 + parent: 1 + - uid: 7970 + components: + - type: Transform + pos: -35.5,68.5 + parent: 1 + - uid: 7971 + components: + - type: Transform + pos: -34.5,68.5 + parent: 1 + - uid: 7972 + components: + - type: Transform + pos: -33.5,68.5 + parent: 1 + - uid: 7973 + components: + - type: Transform + pos: -32.5,68.5 + parent: 1 + - uid: 7974 + components: + - type: Transform + pos: -31.5,68.5 + parent: 1 + - uid: 7975 + components: + - type: Transform + pos: -30.5,68.5 + parent: 1 + - uid: 7976 + components: + - type: Transform + pos: -29.5,68.5 + parent: 1 + - uid: 7977 + components: + - type: Transform + pos: -41.5,68.5 + parent: 1 + - uid: 7978 + components: + - type: Transform + pos: -40.5,68.5 + parent: 1 + - uid: 7979 + components: + - type: Transform + pos: -42.5,68.5 + parent: 1 + - uid: 7980 + components: + - type: Transform + pos: -43.5,68.5 + parent: 1 + - uid: 7981 + components: + - type: Transform + pos: -44.5,68.5 + parent: 1 + - uid: 7982 + components: + - type: Transform + pos: -45.5,68.5 + parent: 1 + - uid: 7983 + components: + - type: Transform + pos: -46.5,68.5 + parent: 1 + - uid: 7984 + components: + - type: Transform + pos: -47.5,68.5 + parent: 1 + - uid: 7985 + components: + - type: Transform + pos: -47.5,70.5 + parent: 1 + - uid: 7986 + components: + - type: Transform + pos: -46.5,70.5 + parent: 1 + - uid: 7987 + components: + - type: Transform + pos: -45.5,70.5 + parent: 1 + - uid: 7988 + components: + - type: Transform + pos: -44.5,70.5 + parent: 1 + - uid: 7989 + components: + - type: Transform + pos: -43.5,70.5 + parent: 1 + - uid: 7990 + components: + - type: Transform + pos: -42.5,70.5 + parent: 1 + - uid: 7991 + components: + - type: Transform + pos: -41.5,70.5 + parent: 1 + - uid: 7992 + components: + - type: Transform + pos: -40.5,70.5 + parent: 1 + - uid: 7993 + components: + - type: Transform + pos: -47.5,72.5 + parent: 1 + - uid: 7994 + components: + - type: Transform + pos: -46.5,72.5 + parent: 1 + - uid: 7995 + components: + - type: Transform + pos: -45.5,72.5 + parent: 1 + - uid: 7996 + components: + - type: Transform + pos: -44.5,72.5 + parent: 1 + - uid: 7997 + components: + - type: Transform + pos: -43.5,72.5 + parent: 1 + - uid: 7998 + components: + - type: Transform + pos: -42.5,72.5 + parent: 1 + - uid: 7999 + components: + - type: Transform + pos: -41.5,72.5 + parent: 1 + - uid: 8000 + components: + - type: Transform + pos: -40.5,72.5 + parent: 1 + - uid: 8001 + components: + - type: Transform + pos: -47.5,74.5 + parent: 1 + - uid: 8002 + components: + - type: Transform + pos: -46.5,74.5 + parent: 1 + - uid: 8003 + components: + - type: Transform + pos: -45.5,74.5 + parent: 1 + - uid: 8004 + components: + - type: Transform + pos: -44.5,74.5 + parent: 1 + - uid: 8005 + components: + - type: Transform + pos: -43.5,74.5 + parent: 1 + - uid: 8006 + components: + - type: Transform + pos: -42.5,74.5 + parent: 1 + - uid: 8007 + components: + - type: Transform + pos: -41.5,74.5 + parent: 1 + - uid: 8008 + components: + - type: Transform + pos: -40.5,74.5 + parent: 1 +- proto: SolarPanelBroken + entities: + - uid: 10110 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 1 +- proto: SolarTracker + entities: + - uid: 6554 + components: + - type: Transform + pos: 37.5,75.5 + parent: 1 + - uid: 7654 + components: + - type: Transform + pos: -38.5,75.5 + parent: 1 + - uid: 17491 + components: + - type: Transform + pos: 6.5,-71.5 + parent: 1 + - uid: 17652 + components: + - type: Transform + pos: -7.5,-71.5 + parent: 1 +- proto: SpaceCash + entities: + - uid: 9948 + components: + - type: Transform + pos: -38.499844,-13.352273 + parent: 1 + - uid: 9949 + components: + - type: Transform + pos: -38.54244,-12.855584 + parent: 1 + - uid: 9950 + components: + - type: Transform + pos: -39.36597,-11.422282 + parent: 1 + - uid: 9951 + components: + - type: Transform + pos: -38.812218,-11.251988 + parent: 1 + - uid: 9952 + components: + - type: Transform + pos: -38.23007,-11.436473 + parent: 1 + - uid: 9953 + components: + - type: Transform + pos: -38.329456,-12.387278 + parent: 1 + - uid: 13431 + components: + - type: Transform + pos: -23.58317,58.71947 + parent: 1 + - uid: 13432 + components: + - type: Transform + pos: -23.497978,58.520798 + parent: 1 + - uid: 13433 + components: + - type: Transform + pos: -23.412786,58.747852 + parent: 1 + - uid: 13434 + components: + - type: Transform + pos: -23.35599,58.94653 + parent: 1 + - uid: 18103 + components: + - type: Transform + pos: -29.227093,53.8533 + parent: 1 + - uid: 18104 + components: + - type: Transform + pos: -29.25549,53.668816 + parent: 1 + - uid: 18105 + components: + - type: Transform + pos: -29.653055,53.73977 + parent: 1 +- proto: SpawnMobAlexander + entities: + - uid: 10644 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 +- proto: SpawnMobBandito + entities: + - uid: 18206 + components: + - type: Transform + pos: -36.5,2.5 + parent: 1 +- proto: SpawnMobCatException + entities: + - uid: 2613 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 1 +- proto: SpawnMobCatFloppa + entities: + - uid: 18222 + components: + - type: Transform + pos: -23.5,27.5 + parent: 1 +- proto: SpawnMobCatRuntime + entities: + - uid: 18220 + components: + - type: Transform + pos: 15.5,33.5 + parent: 1 +- proto: SpawnMobCorgi + entities: + - uid: 9217 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1 +- proto: SpawnMobDrone + entities: + - uid: 3981 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 1 + - uid: 4537 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 1 + - uid: 4538 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 1 +- proto: SpawnMobFoxRenault + entities: + - uid: 18223 + components: + - type: Transform + pos: -6.5,73.5 + parent: 1 +- proto: SpawnMobGoat + entities: + - uid: 6707 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1 +- proto: SpawnMobHamsterHamlet + entities: + - uid: 8116 + components: + - type: Transform + pos: -3.5,79.5 + parent: 1 +- proto: SpawnMobLizard + entities: + - uid: 6278 + components: + - type: Transform + pos: 22.5,21.5 + parent: 1 +- proto: SpawnMobMcGriff + entities: + - uid: 18221 + components: + - type: Transform + pos: -11.5,49.5 + parent: 1 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 6381 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 +- proto: SpawnMobMouse + entities: + - uid: 18208 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 1 + - uid: 18211 + components: + - type: Transform + pos: 38.5,52.5 + parent: 1 + - uid: 18212 + components: + - type: Transform + pos: 18.5,63.5 + parent: 1 + - uid: 18213 + components: + - type: Transform + pos: -13.5,67.5 + parent: 1 + - uid: 18214 + components: + - type: Transform + pos: -46.5,48.5 + parent: 1 + - uid: 18215 + components: + - type: Transform + pos: -42.5,9.5 + parent: 1 +- proto: SpawnMobPossumMorty + entities: + - uid: 18217 + components: + - type: Transform + pos: 20.5,33.5 + parent: 1 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 18218 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1 +- proto: SpawnMobShiva + entities: + - uid: 7697 + components: + - type: Transform + pos: -15.5,59.5 + parent: 1 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 6681 + components: + - type: Transform + pos: -28.5,6.5 + parent: 1 +- proto: SpawnMobWalter + entities: + - uid: 18219 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 +- proto: SpawnPointAtmos + entities: + - uid: 18171 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 1 + - uid: 18172 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 1 +- proto: SpawnPointBartender + entities: + - uid: 9145 + components: + - type: Transform + pos: -7.5,11.5 + parent: 1 +- proto: SpawnPointBorg + entities: + - uid: 2624 + components: + - type: Transform + pos: -13.5,32.5 + parent: 1 + - uid: 2632 + components: + - type: Transform + pos: -15.5,32.5 + parent: 1 +- proto: SpawnPointBotanist + entities: + - uid: 9146 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 9147 + components: + - type: Transform + pos: 14.5,10.5 + parent: 1 +- proto: SpawnPointCaptain + entities: + - uid: 6799 + components: + - type: Transform + pos: -2.5,79.5 + parent: 1 +- proto: SpawnPointCargoTechnician + entities: + - uid: 9157 + components: + - type: Transform + pos: -36.5,11.5 + parent: 1 + - uid: 9158 + components: + - type: Transform + pos: -35.5,11.5 + parent: 1 +- proto: SpawnPointChaplain + entities: + - uid: 18173 + components: + - type: Transform + pos: 25.5,53.5 + parent: 1 +- proto: SpawnPointChef + entities: + - uid: 4574 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 9148 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 +- proto: SpawnPointChemist + entities: + - uid: 8687 + components: + - type: Transform + pos: 3.5,24.5 + parent: 1 + - uid: 8688 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1 +- proto: SpawnPointChiefEngineer + entities: + - uid: 6831 + components: + - type: Transform + pos: -5.5,81.5 + parent: 1 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 6830 + components: + - type: Transform + pos: 4.5,81.5 + parent: 1 +- proto: SpawnPointClown + entities: + - uid: 8939 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 +- proto: SpawnPointDetective + entities: + - uid: 6841 + components: + - type: Transform + pos: 42.5,48.5 + parent: 1 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 6834 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 6829 + components: + - type: Transform + pos: 1.5,79.5 + parent: 1 +- proto: SpawnPointJanitor + entities: + - uid: 9164 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 1 + - uid: 9165 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 2043 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 1 + - uid: 2044 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 1 + - uid: 6516 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 1 +- proto: SpawnPointLawyer + entities: + - uid: 9153 + components: + - type: Transform + pos: 4.5,63.5 + parent: 1 + - uid: 18190 + components: + - type: Transform + pos: 2.5,60.5 + parent: 1 +- proto: SpawnPointLibrarian + entities: + - uid: 9160 + components: + - type: Transform + pos: -25.5,2.5 + parent: 1 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 8497 + components: + - type: Transform + pos: 21.5,29.5 + parent: 1 + - uid: 8509 + components: + - type: Transform + pos: 21.5,28.5 + parent: 1 +- proto: SpawnPointMedicalIntern + entities: + - uid: 8424 + components: + - type: Transform + pos: 21.5,27.5 + parent: 1 + - uid: 8498 + components: + - type: Transform + pos: 19.5,27.5 + parent: 1 +- proto: SpawnPointMime + entities: + - uid: 9151 + components: + - type: Transform + pos: -16.5,4.5 + parent: 1 +- proto: SpawnPointMusician + entities: + - uid: 9152 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 1 +- proto: SpawnPointObserver + entities: + - uid: 4251 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1 + - uid: 4252 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 +- proto: SpawnPointParamedic + entities: + - uid: 3651 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1 +- proto: SpawnPointPassenger + entities: + - uid: 4254 + components: + - type: Transform + pos: 11.5,45.5 + parent: 1 + - uid: 4255 + components: + - type: Transform + pos: 17.5,47.5 + parent: 1 + - uid: 8397 + components: + - type: Transform + pos: 17.5,46.5 + parent: 1 +- proto: SpawnPointQuartermaster + entities: + - uid: 6833 + components: + - type: Transform + pos: 0.5,82.5 + parent: 1 +- proto: SpawnPointResearchAssistant + entities: + - uid: 18127 + components: + - type: Transform + pos: -12.5,23.5 + parent: 1 + - uid: 18128 + components: + - type: Transform + pos: -20.5,22.5 + parent: 1 +- proto: SpawnPointResearchDirector + entities: + - uid: 6832 + components: + - type: Transform + pos: -1.5,82.5 + parent: 1 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 9154 + components: + - type: Transform + pos: -37.5,27.5 + parent: 1 + - uid: 9155 + components: + - type: Transform + pos: -37.5,26.5 + parent: 1 + - uid: 9156 + components: + - type: Transform + pos: -37.5,25.5 + parent: 1 +- proto: SpawnPointScientist + entities: + - uid: 8695 + components: + - type: Transform + pos: -12.5,22.5 + parent: 1 + - uid: 8696 + components: + - type: Transform + pos: -20.5,23.5 + parent: 1 +- proto: SpawnPointSecurityCadet + entities: + - uid: 6839 + components: + - type: Transform + pos: -5.5,53.5 + parent: 1 + - uid: 6840 + components: + - type: Transform + pos: -5.5,54.5 + parent: 1 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 6836 + components: + - type: Transform + pos: -18.5,41.5 + parent: 1 + - uid: 6837 + components: + - type: Transform + pos: -17.5,41.5 + parent: 1 + - uid: 6838 + components: + - type: Transform + pos: -16.5,41.5 + parent: 1 +- proto: SpawnPointServiceWorker + entities: + - uid: 18174 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 +- proto: SpawnPointStationEngineer + entities: + - uid: 9166 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 + - uid: 9167 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 9168 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - uid: 9169 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 +- proto: SpawnPointWarden + entities: + - uid: 6835 + components: + - type: Transform + pos: -12.5,49.5 + parent: 1 +- proto: SpawnVehicleATV + entities: + - uid: 8560 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 +- proto: SpawnVehicleJanicart + entities: + - uid: 16377 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 1 +- proto: SpawnVehicleSecway + entities: + - uid: 8242 + components: + - type: Transform + pos: -15.5,52.5 + parent: 1 + - uid: 8243 + components: + - type: Transform + pos: -14.5,52.5 + parent: 1 +- proto: SpawnVehicleWheelchair + entities: + - uid: 1002 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1 +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 9322 + components: + - type: Transform + pos: -39.5,2.5 + parent: 1 + - uid: 9323 + components: + - type: Transform + pos: -41.5,3.5 + parent: 1 + - uid: 9362 + components: + - type: Transform + pos: -41.5,4.5 + parent: 1 +- proto: Spear + entities: + - uid: 18106 + components: + - type: Transform + pos: -35.403564,54.591236 + parent: 1 +- proto: SpeedLoaderCap + entities: + - uid: 7763 + components: + - type: Transform + pos: -16.575819,5.572419 + parent: 1 +- proto: Spoon + entities: + - uid: 17288 + components: + - type: Transform + pos: -10.945471,2.5472858 + parent: 1 +- proto: SpoonPlastic + entities: + - uid: 9327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.550159,72.33989 + parent: 1 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 3164 + components: + - type: Transform + pos: 16.269894,-4.730578 + parent: 1 + - uid: 9253 + components: + - type: Transform + pos: 16.478226,-4.855578 + parent: 1 + - uid: 17274 + components: + - type: Transform + pos: -23.710033,-13.449605 + parent: 1 + - uid: 17275 + components: + - type: Transform + pos: -23.539648,-13.279312 + parent: 1 +- proto: SprayPainter + entities: + - uid: 9885 + components: + - type: Transform + pos: -28.646414,31.653807 + parent: 1 +- proto: Stairs + entities: + - uid: 9668 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 9669 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1 + - uid: 9670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,76.5 + parent: 1 + - uid: 9671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,76.5 + parent: 1 + - uid: 9672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,76.5 + parent: 1 +- proto: StairStage + entities: + - uid: 4355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 +- proto: StasisBed + entities: + - uid: 3652 + components: + - type: Transform + pos: 12.5,32.5 + parent: 1 +- proto: StationMap + entities: + - uid: 7440 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 7441 + components: + - type: Transform + pos: 7.5,69.5 + parent: 1 + - uid: 7639 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1 + - uid: 7640 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 1 + - uid: 7645 + components: + - type: Transform + pos: -45.5,35.5 + parent: 1 + - uid: 7646 + components: + - type: Transform + pos: 49.5,40.5 + parent: 1 +- proto: StatueVenusBlue + entities: + - uid: 17763 + components: + - type: Transform + pos: 35.5,10.5 + parent: 1 +- proto: StatueVenusRed + entities: + - uid: 17762 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 1 +- proto: SteelBench + entities: + - uid: 8099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,41.5 + parent: 1 + - uid: 8171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,41.5 + parent: 1 + - uid: 8190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,40.5 + parent: 1 + - uid: 8192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,40.5 + parent: 1 + - uid: 8251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,40.5 + parent: 1 + - uid: 9678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,40.5 + parent: 1 +- proto: Stool + entities: + - uid: 2478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-3.5 + parent: 1 + - uid: 2479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 1 + - uid: 2819 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 3414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-5.5 + parent: 1 + - uid: 4364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 1 + - uid: 7658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,0.5 + parent: 1 + - uid: 7683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 1 + - uid: 8376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,48.5 + parent: 1 + - uid: 18418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,52.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 4034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 1 + - uid: 4035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 1 + - uid: 4036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + - uid: 4037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + - uid: 4038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - uid: 4039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 4425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + - uid: 4426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1 + - uid: 4427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 +- proto: StorageCanister + entities: + - uid: 2712 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 2713 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3024 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3047 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3048 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6587 + components: + - type: Transform + pos: -6.5,34.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6588 + components: + - type: Transform + pos: -7.5,34.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 10089 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: StrangePill + entities: + - uid: 772 + components: + - type: Transform + pos: -38.658638,42.44425 + parent: 1 + - uid: 6551 + components: + - type: Transform + pos: -34.521122,33.610306 + parent: 1 + - uid: 7545 + components: + - type: Transform + pos: 23.385082,56.636555 + parent: 1 + - uid: 7624 + components: + - type: Transform + pos: 17.981688,-36.520332 + parent: 1 + - uid: 7672 + components: + - type: Transform + pos: -17.505447,-39.48328 + parent: 1 +- proto: Stunbaton + entities: + - uid: 8187 + components: + - type: Transform + pos: -18.632307,40.44518 + parent: 1 + - uid: 8188 + components: + - type: Transform + pos: -18.694807,40.653515 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 4186 + components: + - type: MetaData + name: Engineering Substation 1 + - type: Transform + pos: 8.5,-17.5 + parent: 1 + - uid: 4187 + components: + - type: MetaData + name: Engineering Substation 2 + - type: Transform + pos: 8.5,-18.5 + parent: 1 + - uid: 4584 + components: + - type: MetaData + name: Salvage & Science Substation + - type: Transform + pos: -21.5,30.5 + parent: 1 + - uid: 4585 + components: + - type: MetaData + name: Cargo Substation + - type: Transform + pos: -25.5,-15.5 + parent: 1 + - uid: 4587 + components: + - type: MetaData + name: Security Substation + - type: Transform + pos: -24.5,50.5 + parent: 1 + - uid: 4588 + components: + - type: MetaData + name: North East Section Substation + - type: Transform + pos: 20.5,54.5 + parent: 1 + - uid: 4589 + components: + - type: MetaData + name: Medical Substation + - type: Transform + pos: 16.5,25.5 + parent: 1 + - uid: 4590 + components: + - type: MetaData + name: Kitchen & Botany Substation + - type: Transform + pos: 17.5,4.5 + parent: 1 + - uid: 4591 + components: + - type: MetaData + name: Library & Bar Substation + - type: Transform + pos: -25.5,-0.5 + parent: 1 + - uid: 4594 + components: + - type: MetaData + name: South East Section Substation + - type: Transform + pos: 26.5,-18.5 + parent: 1 + - uid: 4931 + components: + - type: MetaData + name: Bridge Substation + - type: Transform + pos: -3.5,74.5 + parent: 1 + - uid: 9403 + components: + - type: MetaData + name: GravGen Substation + - type: Transform + pos: -23.5,-18.5 + parent: 1 + - uid: 18472 + components: + - type: MetaData + name: Comms Substation + - type: Transform + pos: 22.5,-11.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 8818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 8756 +- proto: SuitStorageAtmos + entities: + - uid: 7705 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1 + - uid: 7805 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 1 +- proto: SuitStorageCE + entities: + - uid: 7711 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 1 +- proto: SuitStorageCMO + entities: + - uid: 6917 + components: + - type: Transform + pos: 15.5,34.5 + parent: 1 +- proto: SuitStorageEngi + entities: + - uid: 2620 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7708 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7710 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7804 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageEVA + entities: + - uid: 4109 + components: + - type: Transform + pos: 23.5,33.5 + parent: 1 + - uid: 4369 + components: + - type: Transform + pos: 23.5,32.5 + parent: 1 + - uid: 7762 + components: + - type: Transform + pos: 23.5,34.5 + parent: 1 + - uid: 7764 + components: + - type: Transform + pos: 23.5,31.5 + parent: 1 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 6922 + components: + - type: Transform + pos: -27.5,49.5 + parent: 1 + - uid: 6923 + components: + - type: Transform + pos: -28.5,49.5 + parent: 1 +- proto: SuitStorageHOS + entities: + - uid: 7712 + components: + - type: Transform + pos: -13.5,58.5 + parent: 1 +- proto: SuitStorageRD + entities: + - uid: 8231 + components: + - type: Transform + pos: -25.5,22.5 + parent: 1 +- proto: SuitStorageSalv + entities: + - uid: 6929 + components: + - type: Transform + pos: -36.5,27.5 + parent: 1 + - uid: 7392 + components: + - type: Transform + pos: -36.5,26.5 + parent: 1 + - uid: 7644 + components: + - type: Transform + pos: -36.5,25.5 + parent: 1 +- proto: SuitStorageSec + entities: + - uid: 1831 + components: + - type: Transform + pos: -9.5,62.5 + parent: 1 + - uid: 1834 + components: + - type: Transform + pos: -9.5,64.5 + parent: 1 + - uid: 5811 + components: + - type: Transform + pos: -9.5,63.5 + parent: 1 +- proto: SuitStorageWarden + entities: + - uid: 6911 + components: + - type: Transform + pos: -11.5,50.5 + parent: 1 +- proto: SurveillanceCameraCommand + entities: + - uid: 16381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Tech Storage + - uid: 16395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Chief Engineer's Office + - uid: 16414 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Drone Storage + - uid: 16415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-17.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Gravity + - uid: 16421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Quartermaster's Office + - uid: 16425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP's Office + - uid: 16426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,9.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP's Bedroom + - uid: 16427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,32.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA Storage + - uid: 16454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,60.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoS' Office + - uid: 16458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,46.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + - uid: 16461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,71.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge Hallway + - uid: 16462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,74.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + - uid: 16463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,83.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge + - uid: 16464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,73.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Bedroom + - uid: 16467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,32.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: CMO's Office + - uid: 16482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: RD's Office + - uid: 17236 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 8756 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Private Shuttle + - uid: 18441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Telecomms +- proto: SurveillanceCameraEngineering + entities: + - uid: 16382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-28.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES Room + - uid: 16383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-39.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME Room + - uid: 16391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-43.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Starboard Thruster Exterior + - uid: 16392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-33.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Atrium B + - uid: 16393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + - uid: 16394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + - uid: 16396 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Reception + - uid: 16397 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Reception + - uid: 16398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Locker Room + - uid: 16399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Canister Storage + - uid: 16400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Storage Tanks + - uid: 16401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-39.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Mixing Chambers +- proto: SurveillanceCameraGeneral + entities: + - uid: 16402 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Engineering Lobby + - uid: 16424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,4.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: HoP Line + - uid: 16428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,22.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Public Park + - uid: 16434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,41.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Laundry Room + - uid: 16435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,42.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms + - uid: 16438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arcade + - uid: 16439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,37.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: EVAC A + - uid: 16440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,14.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: EVAV B + - uid: 16443 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Aft Hallway 2 + - uid: 16444 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Aft Hallway 1 + - uid: 16446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,14.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Port Docking Hangar + - uid: 16447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,22.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Port Hallway + - uid: 16448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,31.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tool Room + - uid: 16449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,43.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Port Garden + - uid: 16459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,46.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Fore Hallway + - uid: 16460 + components: + - type: Transform + pos: 9.5,66.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bridge Observatory + - uid: 16475 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Med/Sci Lobby + - uid: 16476 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Aft Port Hallway + - uid: 16477 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Aft Starboard Hallway + - uid: 16484 + components: + - type: Transform + pos: -16.5,36.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Fore Port Hallway + - uid: 16485 + components: + - type: Transform + pos: 17.5,36.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Fore Starboard Hallway + - uid: 16487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,27.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Midships Hallway + - uid: 16489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Aft Port Access +- proto: SurveillanceCameraMedical + entities: + - uid: 3688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,32.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cryo + - uid: 16436 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Reception + - uid: 16437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,26.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Atrium + - uid: 16466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,31.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Ward + - uid: 16468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue + - uid: 16470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,25.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 18194 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 1 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 2943 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 1 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 4573 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 1 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 18084 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 1 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 4575 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 1 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 7035 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 1 +- proto: SurveillanceCameraRouterService + entities: + - uid: 4576 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 1 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 7245 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 1 +- proto: SurveillanceCameraScience + entities: + - uid: 16478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,32.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + - uid: 16479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,29.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: XenoArch + - uid: 16480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,24.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: R&D + - uid: 16481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,25.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Atrium + - uid: 16483 + components: + - type: Transform + pos: -14.5,17.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomalous Materials +- proto: SurveillanceCameraSecurity + entities: + - uid: 16432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,48.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective's Office + - uid: 16433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,44.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: EVAC Checkpoint + - uid: 16442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Arrivals Checkpoint + - uid: 16445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cargo Checkpoint + - uid: 16450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,45.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Brig + - uid: 16451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,46.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Atrium 2 + - uid: 16452 + components: + - type: Transform + pos: -10.5,52.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Atrium 1 + - uid: 16453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,41.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Locker Room + - uid: 16455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,64.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 16456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,61.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court Room + - uid: 16457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,61.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer's Office +- proto: SurveillanceCameraService + entities: + - uid: 16407 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: South Cafeteria + - uid: 16409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: North Cafeteria + - uid: 16410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Middle Cafeteria + - uid: 16411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + - uid: 16412 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 16413 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + - uid: 16423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitor Closet + - uid: 16429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,8.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Library + - uid: 16430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,46.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chapel + - uid: 16431 + components: + - type: Transform + pos: 33.5,54.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Crematorium +- proto: SurveillanceCameraSupply + entities: + - uid: 16416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + - uid: 16417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Loading Dock + - uid: 16418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Loading Bay + - uid: 16419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,7.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Lobby + - uid: 16420 + components: + - type: Transform + pos: -34.5,9.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Mail Room + - uid: 16422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,25.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 7293 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1 +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 4024 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 16486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,54.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Court TV +- proto: SynthesizerInstrument + entities: + - uid: 9376 + components: + - type: Transform + pos: -15.706505,-5.3218913 + parent: 1 +- proto: Syringe + entities: + - uid: 6386 + components: + - type: Transform + pos: 9.549924,34.71867 + parent: 1 + - uid: 7124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.489402,28.012117 + parent: 1 +- proto: SyringeEphedrine + entities: + - uid: 17755 + components: + - type: Transform + pos: -40.359406,48.047718 + parent: 1 +- proto: Table + entities: + - uid: 1586 + components: + - type: Transform + pos: -28.5,43.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + pos: -28.5,44.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + pos: -29.5,44.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + pos: -29.5,43.5 + parent: 1 + - uid: 4324 + components: + - type: Transform + pos: -34.5,49.5 + parent: 1 + - uid: 4325 + components: + - type: Transform + pos: -33.5,49.5 + parent: 1 + - uid: 4326 + components: + - type: Transform + pos: -32.5,49.5 + parent: 1 + - uid: 4395 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 6088 + components: + - type: Transform + pos: 20.5,40.5 + parent: 1 + - uid: 6089 + components: + - type: Transform + pos: 20.5,41.5 + parent: 1 + - uid: 6543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 1 + - uid: 6919 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 7650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 1 + - uid: 7692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 1 + - uid: 8402 + components: + - type: Transform + pos: 12.5,46.5 + parent: 1 + - uid: 8422 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 9088 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 1 + - uid: 9666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 1 + - uid: 9910 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 1 + - uid: 9911 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 1 + - uid: 9932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-29.5 + parent: 1 + - uid: 9973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-24.5 + parent: 1 + - uid: 10136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 1 + - uid: 11055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 1 + - uid: 13312 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - uid: 13333 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1 + - uid: 13358 + components: + - type: Transform + pos: -39.5,34.5 + parent: 1 + - uid: 13390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,30.5 + parent: 1 + - uid: 13397 + components: + - type: Transform + pos: -23.5,43.5 + parent: 1 + - uid: 13451 + components: + - type: Transform + pos: -46.5,46.5 + parent: 1 + - uid: 14005 + components: + - type: Transform + pos: 18.5,64.5 + parent: 1 + - uid: 14025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,58.5 + parent: 1 +- proto: TableCarpet + entities: + - uid: 565 + components: + - type: Transform + pos: -22.5,10.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: -27.5,7.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: -28.5,7.5 + parent: 1 + - uid: 2935 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 1 + - uid: 3951 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 1 + - uid: 5830 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 1 + - uid: 6502 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 1 + - uid: 7145 + components: + - type: Transform + pos: -26.5,7.5 + parent: 1 + - uid: 7146 + components: + - type: Transform + pos: -26.5,6.5 + parent: 1 + - uid: 10069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-17.5 + parent: 1 + - uid: 13428 + components: + - type: Transform + pos: -23.5,58.5 + parent: 1 +- proto: TableGlass + entities: + - uid: 666 + components: + - type: Transform + pos: 3.5,34.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,35.5 + parent: 1 + - uid: 1998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,6.5 + parent: 1 + - uid: 2485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 1 + - uid: 2831 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 1 + - uid: 2832 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 1 + - uid: 2833 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 1 + - uid: 2834 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 1 + - uid: 3699 + components: + - type: Transform + pos: 2.5,23.5 + parent: 1 + - uid: 3735 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 1 + - uid: 3740 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 1 + - uid: 3741 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 3742 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1 + - uid: 3761 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1 + - uid: 3765 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 1 + - uid: 3766 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 1 + - uid: 3767 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 1 + - uid: 4049 + components: + - type: Transform + pos: 2.5,24.5 + parent: 1 + - uid: 4053 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1 + - uid: 4054 + components: + - type: Transform + pos: 5.5,22.5 + parent: 1 + - uid: 4060 + components: + - type: Transform + pos: 4.5,25.5 + parent: 1 + - uid: 4119 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1 + - uid: 4204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 1 + - uid: 4209 + components: + - type: Transform + pos: 9.5,34.5 + parent: 1 + - uid: 4236 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 4238 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 4396 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 4421 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1 + - uid: 6150 + components: + - type: Transform + pos: 21.5,26.5 + parent: 1 + - uid: 6167 + components: + - type: Transform + pos: 20.5,26.5 + parent: 1 + - uid: 6178 + components: + - type: Transform + pos: 19.5,26.5 + parent: 1 + - uid: 6390 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1 + - uid: 6601 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 1 + - uid: 6602 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 1 + - uid: 7100 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 1 + - uid: 7101 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 1 + - uid: 8420 + components: + - type: Transform + pos: -49.5,44.5 + parent: 1 + - uid: 8433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 1 + - uid: 8441 + components: + - type: Transform + pos: 5.5,57.5 + parent: 1 + - uid: 8458 + components: + - type: Transform + pos: 12.5,70.5 + parent: 1 + - uid: 8627 + components: + - type: Transform + pos: -23.5,19.5 + parent: 1 + - uid: 8628 + components: + - type: Transform + pos: -23.5,20.5 + parent: 1 + - uid: 8716 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 1 + - uid: 8717 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1 + - uid: 9105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 1 + - uid: 9559 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 1 + - uid: 9596 + components: + - type: Transform + pos: -8.5,36.5 + parent: 1 + - uid: 9622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-6.5 + parent: 1 + - uid: 9623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-5.5 + parent: 1 + - uid: 9703 + components: + - type: Transform + pos: -35.5,9.5 + parent: 1 + - uid: 9704 + components: + - type: Transform + pos: -34.5,9.5 + parent: 1 + - uid: 10960 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 1 + - uid: 14084 + components: + - type: Transform + pos: -49.5,16.5 + parent: 1 + - uid: 16652 + components: + - type: Transform + pos: -32.5,31.5 + parent: 1 + - uid: 18496 + components: + - type: Transform + pos: 6.5,52.5 + parent: 1 +- proto: TablePlasmaGlass + entities: + - uid: 1109 + components: + - type: Transform + pos: -9.5,27.5 + parent: 1 + - uid: 1309 + components: + - type: Transform + pos: -10.5,34.5 + parent: 1 + - uid: 1310 + components: + - type: Transform + pos: -11.5,34.5 + parent: 1 + - uid: 3554 + components: + - type: Transform + pos: -7.5,24.5 + parent: 1 + - uid: 3555 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1 + - uid: 4582 + components: + - type: Transform + pos: -18.5,17.5 + parent: 1 + - uid: 4583 + components: + - type: Transform + pos: -18.5,20.5 + parent: 1 + - uid: 4586 + components: + - type: Transform + pos: -17.5,17.5 + parent: 1 + - uid: 7119 + components: + - type: Transform + pos: -13.5,28.5 + parent: 1 + - uid: 7120 + components: + - type: Transform + pos: -13.5,27.5 + parent: 1 + - uid: 8667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,21.5 + parent: 1 + - uid: 8698 + components: + - type: Transform + pos: -9.5,28.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 266 + components: + - type: Transform + pos: -36.5,7.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-2.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -0.5,83.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -0.5,82.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: -3.5,83.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -0.5,80.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -4.5,79.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -4.5,80.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: -35.5,12.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: -36.5,6.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: -11.5,6.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: -4.5,20.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + pos: -13.5,47.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + pos: -12.5,47.5 + parent: 1 + - uid: 1418 + components: + - type: Transform + pos: -10.5,49.5 + parent: 1 + - uid: 1419 + components: + - type: Transform + pos: -10.5,48.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + pos: 16.5,19.5 + parent: 1 + - uid: 1842 + components: + - type: Transform + pos: -16.5,50.5 + parent: 1 + - uid: 1843 + components: + - type: Transform + pos: -16.5,49.5 + parent: 1 + - uid: 1844 + components: + - type: Transform + pos: -16.5,48.5 + parent: 1 + - uid: 1845 + components: + - type: Transform + pos: -19.5,53.5 + parent: 1 + - uid: 1846 + components: + - type: Transform + pos: -18.5,53.5 + parent: 1 + - uid: 1847 + components: + - type: Transform + pos: -19.5,52.5 + parent: 1 + - uid: 1848 + components: + - type: Transform + pos: -13.5,56.5 + parent: 1 + - uid: 1849 + components: + - type: Transform + pos: -12.5,56.5 + parent: 1 + - uid: 1850 + components: + - type: Transform + pos: -12.5,55.5 + parent: 1 + - uid: 2142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,21.5 + parent: 1 + - uid: 2143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,21.5 + parent: 1 + - uid: 2396 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 2398 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 1 + - uid: 2407 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 2409 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 1 + - uid: 2472 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1 + - uid: 2891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + - uid: 2892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 1 + - uid: 2898 + components: + - type: Transform + pos: 25.5,4.5 + parent: 1 + - uid: 2899 + components: + - type: Transform + pos: 24.5,4.5 + parent: 1 + - uid: 3529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,53.5 + parent: 1 + - uid: 3570 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 1 + - uid: 3574 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 1 + - uid: 3619 + components: + - type: Transform + pos: 9.5,23.5 + parent: 1 + - uid: 3620 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1 + - uid: 3631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 1 + - uid: 3632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,19.5 + parent: 1 + - uid: 3680 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1 + - uid: 3753 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 3756 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 3983 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 1 + - uid: 3984 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 1 + - uid: 3985 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 1 + - uid: 4014 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1 + - uid: 4015 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 1 + - uid: 4016 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1 + - uid: 4069 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 4133 + components: + - type: Transform + pos: -39.5,19.5 + parent: 1 + - uid: 4136 + components: + - type: Transform + pos: -39.5,16.5 + parent: 1 + - uid: 4149 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 1 + - uid: 4155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-2.5 + parent: 1 + - uid: 4188 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1 + - uid: 4189 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 1 + - uid: 4190 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 1 + - uid: 4193 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 4195 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 4196 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1 + - uid: 4197 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 4198 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1 + - uid: 4200 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - uid: 4203 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1 + - uid: 4218 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 1 + - uid: 4240 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 4241 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 4258 + components: + - type: Transform + pos: -0.5,79.5 + parent: 1 + - uid: 4261 + components: + - type: Transform + pos: -3.5,82.5 + parent: 1 + - uid: 4263 + components: + - type: Transform + pos: 3.5,80.5 + parent: 1 + - uid: 4264 + components: + - type: Transform + pos: 3.5,79.5 + parent: 1 + - uid: 4265 + components: + - type: Transform + pos: 2.5,83.5 + parent: 1 + - uid: 4266 + components: + - type: Transform + pos: 2.5,82.5 + parent: 1 + - uid: 4276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,80.5 + parent: 1 + - uid: 4277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,79.5 + parent: 1 + - uid: 4278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,80.5 + parent: 1 + - uid: 4279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,79.5 + parent: 1 + - uid: 4280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,76.5 + parent: 1 + - uid: 4281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,77.5 + parent: 1 + - uid: 4385 + components: + - type: Transform + pos: -11.5,56.5 + parent: 1 + - uid: 4439 + components: + - type: Transform + pos: -28.5,29.5 + parent: 1 + - uid: 4440 + components: + - type: Transform + pos: -27.5,29.5 + parent: 1 + - uid: 4441 + components: + - type: Transform + pos: -26.5,29.5 + parent: 1 + - uid: 4533 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 1 + - uid: 4535 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 1 + - uid: 4536 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 1 + - uid: 6109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,54.5 + parent: 1 + - uid: 6139 + components: + - type: Transform + pos: -20.5,35.5 + parent: 1 + - uid: 6347 + components: + - type: Transform + pos: 44.5,41.5 + parent: 1 + - uid: 6348 + components: + - type: Transform + pos: 43.5,41.5 + parent: 1 + - uid: 6379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,19.5 + parent: 1 + - uid: 6603 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1 + - uid: 6604 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 6635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,8.5 + parent: 1 + - uid: 7390 + components: + - type: Transform + pos: -14.5,50.5 + parent: 1 + - uid: 7816 + components: + - type: Transform + pos: -42.5,26.5 + parent: 1 + - uid: 7889 + components: + - type: Transform + pos: 44.5,44.5 + parent: 1 + - uid: 8137 + components: + - type: Transform + pos: -6.5,52.5 + parent: 1 + - uid: 8176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,40.5 + parent: 1 + - uid: 8890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 8756 + - uid: 8891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 8756 + - uid: 8910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + - uid: 8944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 9115 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 1 + - uid: 9116 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 1 + - uid: 9117 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 1 + - uid: 9118 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 1 + - uid: 9119 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1 + - uid: 9134 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 1 + - uid: 9135 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 1 + - uid: 9140 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 1 + - uid: 9374 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 9393 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 1 + - uid: 9394 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 1 + - uid: 9412 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 1 + - uid: 9413 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 1 + - uid: 9624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-7.5 + parent: 1 + - uid: 9625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-7.5 + parent: 1 + - uid: 10643 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 10646 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 17269 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 1 + - uid: 18473 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 4335 + components: + - type: Transform + pos: -21.5,34.5 + parent: 1 + - uid: 4404 + components: + - type: Transform + pos: 31.5,56.5 + parent: 1 + - uid: 4405 + components: + - type: Transform + pos: 33.5,56.5 + parent: 1 + - uid: 6789 + components: + - type: Transform + pos: 5.5,72.5 + parent: 1 + - uid: 6819 + components: + - type: Transform + pos: -16.5,59.5 + parent: 1 + - uid: 6820 + components: + - type: Transform + pos: -16.5,58.5 + parent: 1 + - uid: 6821 + components: + - type: Transform + pos: -15.5,58.5 + parent: 1 + - uid: 7252 + components: + - type: Transform + pos: 5.5,45.5 + parent: 1 + - uid: 7253 + components: + - type: Transform + pos: 4.5,45.5 + parent: 1 + - uid: 8092 + components: + - type: Transform + pos: 2.5,71.5 + parent: 1 + - uid: 8480 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1 + - uid: 8481 + components: + - type: Transform + pos: 16.5,33.5 + parent: 1 + - uid: 8482 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1 + - uid: 8551 + components: + - type: Transform + pos: 2.5,73.5 + parent: 1 + - uid: 8804 + components: + - type: Transform + pos: 2.5,72.5 + parent: 1 +- proto: TableStone + entities: + - uid: 6605 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 + - uid: 6606 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 +- proto: TableWood + entities: + - uid: 668 + components: + - type: Transform + pos: -24.5,6.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: -23.5,6.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: 24.5,54.5 + parent: 1 + - uid: 1877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,64.5 + parent: 1 + - uid: 1908 + components: + - type: Transform + pos: 12.5,60.5 + parent: 1 + - uid: 1927 + components: + - type: Transform + pos: 9.5,59.5 + parent: 1 + - uid: 1928 + components: + - type: Transform + pos: 10.5,59.5 + parent: 1 + - uid: 1929 + components: + - type: Transform + pos: 11.5,59.5 + parent: 1 + - uid: 1930 + components: + - type: Transform + pos: 12.5,59.5 + parent: 1 + - uid: 1931 + components: + - type: Transform + pos: 9.5,60.5 + parent: 1 + - uid: 3175 + components: + - type: Transform + pos: 43.5,51.5 + parent: 1 + - uid: 3177 + components: + - type: Transform + pos: 43.5,50.5 + parent: 1 + - uid: 3178 + components: + - type: Transform + pos: 42.5,50.5 + parent: 1 + - uid: 3190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,46.5 + parent: 1 + - uid: 3736 + components: + - type: Transform + pos: 4.5,71.5 + parent: 1 + - uid: 4399 + components: + - type: Transform + pos: 29.5,49.5 + parent: 1 + - uid: 4400 + components: + - type: Transform + pos: 28.5,49.5 + parent: 1 + - uid: 4444 + components: + - type: Transform + pos: -35.5,54.5 + parent: 1 + - uid: 4445 + components: + - type: Transform + pos: -34.5,54.5 + parent: 1 + - uid: 4446 + components: + - type: Transform + pos: -33.5,54.5 + parent: 1 + - uid: 4447 + components: + - type: Transform + pos: -32.5,54.5 + parent: 1 + - uid: 4448 + components: + - type: Transform + pos: -32.5,55.5 + parent: 1 + - uid: 4450 + components: + - type: Transform + pos: -34.5,56.5 + parent: 1 + - uid: 4460 + components: + - type: Transform + pos: -29.5,53.5 + parent: 1 + - uid: 4461 + components: + - type: Transform + pos: -29.5,56.5 + parent: 1 + - uid: 4462 + components: + - type: Transform + pos: -33.5,52.5 + parent: 1 + - uid: 6782 + components: + - type: Transform + pos: 5.5,71.5 + parent: 1 + - uid: 6783 + components: + - type: Transform + pos: 6.5,71.5 + parent: 1 + - uid: 6784 + components: + - type: Transform + pos: 6.5,72.5 + parent: 1 + - uid: 6785 + components: + - type: Transform + pos: 6.5,73.5 + parent: 1 + - uid: 6786 + components: + - type: Transform + pos: 5.5,73.5 + parent: 1 + - uid: 6787 + components: + - type: Transform + pos: 4.5,73.5 + parent: 1 + - uid: 6788 + components: + - type: Transform + pos: 4.5,72.5 + parent: 1 + - uid: 6803 + components: + - type: Transform + pos: -8.5,74.5 + parent: 1 + - uid: 6807 + components: + - type: Transform + pos: -6.5,72.5 + parent: 1 + - uid: 6885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,49.5 + parent: 1 + - uid: 6886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,49.5 + parent: 1 + - uid: 6984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,57.5 + parent: 1 + - uid: 6985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,57.5 + parent: 1 + - uid: 7028 + components: + - type: Transform + pos: -25.5,3.5 + parent: 1 + - uid: 7271 + components: + - type: Transform + pos: 2.5,61.5 + parent: 1 + - uid: 7272 + components: + - type: Transform + pos: 3.5,61.5 + parent: 1 + - uid: 7273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,60.5 + parent: 1 + - uid: 7274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,64.5 + parent: 1 + - uid: 7276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,63.5 + parent: 1 + - uid: 7343 + components: + - type: Transform + pos: 24.5,53.5 + parent: 1 + - uid: 8677 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 8679 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 8682 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 8683 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 8902 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 8903 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 8904 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 8905 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 8908 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 8909 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 8911 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 8912 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 8915 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 8953 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 8954 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 9021 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 9263 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1 + - uid: 9264 + components: + - type: Transform + pos: 24.5,11.5 + parent: 1 + - uid: 9283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 1 + - uid: 9328 + components: + - type: Transform + pos: -42.5,7.5 + parent: 1 + - uid: 9329 + components: + - type: Transform + pos: -43.5,7.5 + parent: 1 + - uid: 9330 + components: + - type: Transform + pos: -43.5,8.5 + parent: 1 + - uid: 9509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,57.5 + parent: 1 + - uid: 9510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,57.5 + parent: 1 + - uid: 9869 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 1 + - uid: 10934 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 1 + - uid: 10935 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 1 + - uid: 13470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,64.5 + parent: 1 + - uid: 13475 + components: + - type: Transform + pos: -12.5,64.5 + parent: 1 +- proto: TaikoInstrument + entities: + - uid: 18323 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1 +- proto: TegCenter + entities: + - uid: 2703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: TegCirculator + entities: + - uid: 2700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-44.5 + parent: 1 + - type: PointLight + color: '#FF3300FF' + - uid: 2702 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 1 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServer + entities: + - uid: 3583 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3587 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 3729 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 1 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3730 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 3982 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 1 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 4349 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 4391 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 1 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 4569 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 4703 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6461 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7316 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 1 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8436 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 18434 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 1 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 18435 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 18446 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 18447 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: TintedWindow + entities: + - uid: 536 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-2.5 + parent: 1 + - uid: 615 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,12.5 + parent: 1 + - uid: 665 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 3169 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,46.5 + parent: 1 + - uid: 3170 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,42.5 + parent: 1 + - uid: 3183 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,47.5 + parent: 1 + - uid: 3230 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,48.5 + parent: 1 + - uid: 3241 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,48.5 + parent: 1 + - uid: 4009 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-6.5 + parent: 1 + - uid: 6938 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,45.5 + parent: 1 + - uid: 6939 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,46.5 + parent: 1 + - uid: 8408 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,42.5 + parent: 1 + - uid: 8923 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,12.5 + parent: 1 + - uid: 8990 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,12.5 + parent: 1 + - uid: 8991 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,11.5 + parent: 1 +- proto: TobaccoSeeds + entities: + - uid: 8629 + components: + - type: Transform + pos: -38.497883,49.42718 + parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 4314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,49.5 + parent: 1 + - uid: 10097 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 1 + - uid: 10103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-39.5 + parent: 1 +- proto: ToiletEmpty + entities: + - uid: 6813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,70.5 + parent: 1 +- proto: TomDrumsInstrument + entities: + - uid: 548 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 +- proto: ToolboxArtistic + entities: + - uid: 8351 + components: + - type: Transform + pos: -27.20099,29.52882 + parent: 1 +- proto: ToolboxElectricalFilled + entities: + - uid: 8066 + components: + - type: Transform + pos: 7.4163632,77.75221 + parent: 1 + - uid: 8348 + components: + - type: Transform + pos: -28.01032,29.77007 + parent: 1 + - uid: 9096 + components: + - type: Transform + pos: 5.5191555,-21.48169 + parent: 1 + - uid: 9237 + components: + - type: Transform + pos: -22.433441,-13.274618 + parent: 1 + - uid: 9967 + components: + - type: Transform + pos: -24.569386,-24.282387 + parent: 1 +- proto: ToolboxEmergencyFilled + entities: + - uid: 7160 + components: + - type: Transform + pos: 13.566679,-41.456856 + parent: 1 + - uid: 8068 + components: + - type: Transform + pos: -3.4883027,83.51381 + parent: 1 + - uid: 8349 + components: + - type: Transform + pos: -27.32878,29.77007 + parent: 1 + - uid: 9968 + components: + - type: Transform + pos: -24.427397,-24.45268 + parent: 1 +- proto: ToolboxGoldFilled + entities: + - uid: 7255 + components: + - type: Transform + pos: 5.426082,45.55318 + parent: 1 + - type: ActiveUserInterface +- proto: ToolboxMechanicalFilled + entities: + - uid: 7159 + components: + - type: Transform + pos: 13.367895,-41.31494 + parent: 1 + - uid: 7828 + components: + - type: Transform + pos: -42.546696,26.738258 + parent: 1 + - uid: 8067 + components: + - type: Transform + pos: 7.70034,77.49678 + parent: 1 + - uid: 8350 + components: + - type: Transform + pos: -27.882532,29.52882 + parent: 1 + - uid: 9095 + components: + - type: Transform + pos: 5.3108225,-21.315023 + parent: 1 + - uid: 9238 + components: + - type: Transform + pos: -22.28761,-13.462118 + parent: 1 +- proto: ToyAi + entities: + - uid: 13382 + components: + - type: Transform + pos: -18.633104,28.672619 + parent: 1 +- proto: ToyAmongPequeno + entities: + - uid: 18428 + components: + - type: Transform + pos: 5.8128443,72.69741 + parent: 1 +- proto: ToyHonk + entities: + - uid: 8131 + components: + - type: Transform + pos: 12.534896,59.680813 + parent: 1 +- proto: ToyNuke + entities: + - uid: 8620 + components: + - type: Transform + pos: -38.454323,46.531727 + parent: 1 +- proto: TrashBag + entities: + - uid: 17272 + components: + - type: Transform + pos: -22.985895,-13.407032 + parent: 1 + - uid: 17273 + components: + - type: Transform + pos: -23.198877,-13.492178 + parent: 1 +- proto: trayScanner + entities: + - uid: 8711 + components: + - type: Transform + pos: -10.544276,-19.241236 + parent: 1 + - uid: 9086 + components: + - type: Transform + pos: 6.7274895,-21.335855 + parent: 1 + - uid: 9182 + components: + - type: Transform + pos: 12.564603,-11.337542 + parent: 1 + - uid: 9235 + components: + - type: Transform + pos: -22.793135,-11.262006 + parent: 1 +- proto: TubaInstrument + entities: + - uid: 6910 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 4007 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 3830: + - Left: Forward + - Right: Reverse + - Middle: Off + 4002: + - Left: Forward + - Right: Reverse + - Middle: Off + 4001: + - Left: Forward + - Right: Reverse + - Middle: Off + 4000: + - Left: Forward + - Right: Reverse + - Middle: Off + 3999: + - Left: Forward + - Right: Reverse + - Middle: Off + 3989: + - Left: Forward + - Right: Reverse + - Middle: Off + 3998: + - Left: Forward + - Right: Reverse + - Middle: Off + 3997: + - Left: Forward + - Right: Reverse + - Middle: Off + 3996: + - Left: Forward + - Right: Reverse + - Middle: Off + 3994: + - Left: Forward + - Right: Reverse + - Middle: Off + 3995: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 7808 + components: + - type: Transform + pos: -42.5,23.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 4134: + - Left: Forward + - Right: Reverse + - Middle: Off + 4130: + - Left: Forward + - Right: Reverse + - Middle: Off + 1767: + - Left: Forward + - Right: Reverse + - Middle: Off + 4110: + - Left: Forward + - Right: Reverse + - Middle: Off + 7820: + - Left: Forward + - Right: Reverse + - Middle: Off + 7818: + - Left: Forward + - Right: Reverse + - Middle: Off + 4115: + - Left: Forward + - Right: Reverse + - Middle: Off + 7821: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 7815 + components: + - type: Transform + pos: -43.5,0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 252: + - Left: Forward + - Right: Reverse + - Middle: Off + 2723: + - Left: Forward + - Right: Reverse + - Middle: Off + 7254: + - Left: Forward + - Right: Reverse + - Middle: Off + 7291: + - Left: Forward + - Right: Reverse + - Middle: Off + 7704: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 7918 + components: + - type: Transform + pos: -44.5,23.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 7821: + - Left: Forward + - Right: Reverse + - Middle: Off + 7820: + - Left: Forward + - Right: Reverse + - Middle: Off + 1767: + - Left: Forward + - Right: Reverse + - Middle: Off + 4134: + - Left: Forward + - Right: Reverse + - Middle: Off + 4115: + - Left: Forward + - Right: Reverse + - Middle: Off + 7818: + - Left: Forward + - Right: Reverse + - Middle: Off + 4110: + - Left: Forward + - Right: Reverse + - Middle: Off + 4130: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 8179 + components: + - type: Transform + pos: -41.5,5.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2127: + - Left: Forward + - Right: Reverse + - Middle: Off + 461: + - Left: Forward + - Right: Reverse + - Middle: Off + 460: + - Left: Forward + - Right: Reverse + - Middle: Off + 459: + - Left: Forward + - Right: Reverse + - Middle: Off + 2722: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 9364 + components: + - type: Transform + pos: -37.5,4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 4147: + - Left: Forward + - Right: Reverse + - Middle: Off + 4146: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UniformPrinter + entities: + - uid: 2901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,6.5 + parent: 1 +- proto: UprightPianoInstrument + entities: + - uid: 4452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,52.5 + parent: 1 +- proto: Vaccinator + entities: + - uid: 4081 + components: + - type: Transform + pos: 5.5,34.5 + parent: 1 +- proto: VariantCubeBox + entities: + - uid: 7121 + components: + - type: Transform + pos: -13.5745945,28.466234 + parent: 1 +- proto: VehicleJanicartDestroyed + entities: + - uid: 16379 + components: + - type: Transform + pos: 24.5,58.5 + parent: 1 +- proto: VehicleKeyATV + entities: + - uid: 3678 + components: + - type: Transform + pos: 16.517023,19.56277 + parent: 1 +- proto: VehicleKeyJanicart + entities: + - uid: 16378 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 1 +- proto: VehicleKeySecway + entities: + - uid: 8244 + components: + - type: Transform + pos: -14.194751,50.769012 + parent: 1 + - uid: 8245 + components: + - type: Transform + pos: -14.257251,50.612762 + parent: 1 +- proto: VendingBarDrobe + entities: + - uid: 4033 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -6.5,11.5 + parent: 1 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 7097 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -10.5,-17.5 + parent: 1 +- proto: VendingMachineBooze + entities: + - uid: 4041 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 4449 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -35.5,56.5 + parent: 1 +- proto: VendingMachineCargoDrobe + entities: + - uid: 9159 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -36.5,9.5 + parent: 1 +- proto: VendingMachineCart + entities: + - uid: 2500 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 24.5,7.5 + parent: 1 +- proto: VendingMachineChang + entities: + - uid: 9438 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 29.5,-5.5 + parent: 1 + - uid: 9447 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -48.5,12.5 + parent: 1 +- proto: VendingMachineChapel + entities: + - uid: 7342 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 26.5,54.5 + parent: 1 +- proto: VendingMachineChefDrobe + entities: + - uid: 4398 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 10.5,-0.5 + parent: 1 +- proto: VendingMachineChefvend + entities: + - uid: 9000 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 9.5,-0.5 + parent: 1 +- proto: VendingMachineChemDrobe + entities: + - uid: 3614 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 2.5,25.5 + parent: 1 +- proto: VendingMachineChemicals + entities: + - uid: 7777 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 7.5,22.5 + parent: 1 +- proto: VendingMachineCigs + entities: + - uid: 1281 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -46.5,16.5 + parent: 1 + - uid: 2010 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 35.5,6.5 + parent: 1 + - uid: 8089 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 6.5,78.5 + parent: 1 + - uid: 8996 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 9401 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -18.5,-19.5 + parent: 1 + - uid: 9436 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 27.5,27.5 + parent: 1 + - uid: 17383 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -50.5,35.5 + parent: 1 +- proto: VendingMachineClothing + entities: + - uid: 6087 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 20.5,43.5 + parent: 1 +- proto: VendingMachineCoffee + entities: + - uid: 8439 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 4.5,57.5 + parent: 1 + - uid: 9440 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 29.5,-3.5 + parent: 1 + - uid: 9554 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -32.5,-9.5 + parent: 1 +- proto: VendingMachineCola + entities: + - uid: 9432 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 48.5,43.5 + parent: 1 + - uid: 9434 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 27.5,29.5 + parent: 1 + - uid: 9446 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -30.5,21.5 + parent: 1 +- proto: VendingMachineCondiments + entities: + - uid: 6699 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: VendingMachineCuraDrobe + entities: + - uid: 8941 + components: + - type: Transform + pos: -28.5,5.5 + parent: 1 +- proto: VendingMachineDetDrobe + entities: + - uid: 6853 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 40.5,49.5 + parent: 1 +- proto: VendingMachineDinnerware + entities: + - uid: 4394 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 12.5,-3.5 + parent: 1 +- proto: VendingMachineDiscount + entities: + - uid: 4345 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -30.5,20.5 + parent: 1 + - uid: 5812 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 48.5,44.5 + parent: 1 + - uid: 9464 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 47.5,12.5 + parent: 1 +- proto: VendingMachineDonut + entities: + - uid: 9439 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 29.5,-4.5 + parent: 1 + - uid: 9557 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -31.5,-9.5 + parent: 1 +- proto: VendingMachineEngiDrobe + entities: + - uid: 18427 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 7.5,-17.5 + parent: 1 +- proto: VendingMachineEngivend + entities: + - uid: 4183 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 13.5,-17.5 + parent: 1 + - uid: 7096 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -11.5,-17.5 + parent: 1 +- proto: VendingMachineGames + entities: + - uid: 8592 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -28.5,11.5 + parent: 1 + - uid: 9909 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -20.5,-33.5 + parent: 1 +- proto: VendingMachineGeneDrobe + entities: + - uid: 8510 + components: + - type: Transform + pos: 18.5,26.5 + parent: 1 +- proto: VendingMachineHappyHonk + entities: + - uid: 9016 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 12.5,-4.5 + parent: 1 +- proto: VendingMachineHydrobe + entities: + - uid: 4220 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 13.5,11.5 + parent: 1 +- proto: VendingMachineJaniDrobe + entities: + - uid: 9259 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 22.5,-2.5 + parent: 1 +- proto: VendingMachineLawDrobe + entities: + - uid: 7277 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 3.5,64.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 8674 + components: + - type: Transform + pos: 12.5,26.5 + parent: 1 +- proto: VendingMachineMediDrobe + entities: + - uid: 8511 + components: + - type: Transform + pos: 14.5,29.5 + parent: 1 +- proto: VendingMachineNutri + entities: + - uid: 7263 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 10961 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 34.5,-15.5 + parent: 1 +- proto: VendingMachineRoboDrobe + entities: + - uid: 2634 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -18.5,30.5 + parent: 1 +- proto: VendingMachineRobotics + entities: + - uid: 2652 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -17.5,30.5 + parent: 1 +- proto: VendingMachineSalvage + entities: + - uid: 4108 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -36.5,28.5 + parent: 1 +- proto: VendingMachineSciDrobe + entities: + - uid: 1069 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -19.5,22.5 + parent: 1 +- proto: VendingMachineSec + entities: + - uid: 3415 + components: + - type: Transform + pos: -11.5,57.5 + parent: 1 +- proto: VendingMachineSecDrobe + entities: + - uid: 2653 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -16.5,40.5 + parent: 1 +- proto: VendingMachineSeeds + entities: + - uid: 9003 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 6.5,11.5 + parent: 1 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 4329 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -35.5,49.5 + parent: 1 +- proto: VendingMachineSnack + entities: + - uid: 9435 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 27.5,28.5 + parent: 1 + - uid: 9463 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 47.5,-6.5 + parent: 1 +- proto: VendingMachineSovietSoda + entities: + - uid: 6662 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -38.5,-14.5 + parent: 1 +- proto: VendingMachineSustenance + entities: + - uid: 653 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -33.5,42.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 4219 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 13.5,-37.5 + parent: 1 + - uid: 6915 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 27.5,34.5 + parent: 1 + - uid: 7116 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -8.5,-11.5 + parent: 1 + - uid: 7806 + components: + - type: Transform + pos: -40.5,28.5 + parent: 1 + - uid: 8740 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -12.5,-39.5 + parent: 1 +- proto: VendingMachineTheater + entities: + - uid: 4437 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -27.5,34.5 + parent: 1 + - uid: 6086 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 19.5,43.5 + parent: 1 +- proto: VendingMachineVendomat + entities: + - uid: 4438 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -28.5,34.5 + parent: 1 + - uid: 18432 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 18.5,-23.5 + parent: 1 +- proto: VendingMachineViroDrobe + entities: + - uid: 4083 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 4.5,34.5 + parent: 1 +- proto: VendingMachineWinter + entities: + - uid: 7769 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 21.5,43.5 + parent: 1 +- proto: VendingMachineYouTool + entities: + - uid: 4182 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 10.5,-17.5 + parent: 1 + - uid: 4436 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -26.5,34.5 + parent: 1 +- proto: VibraphoneInstrument + entities: + - uid: 8177 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 1 + - uid: 14022 + components: + - type: Transform + pos: 20.5,50.5 + parent: 1 +- proto: WallmountTelescreen + entities: + - uid: 8359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,51.5 + parent: 1 +- proto: WallmountTelevision + entities: + - uid: 17928 + components: + - type: Transform + pos: 27.5,24.5 + parent: 1 + - uid: 17929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-10.5 + parent: 1 + - uid: 17931 + components: + - type: Transform + pos: 10.5,39.5 + parent: 1 + - uid: 17932 + components: + - type: Transform + pos: -26.5,39.5 + parent: 1 + - uid: 17933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,45.5 + parent: 1 + - uid: 17934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,65.5 + parent: 1 + - uid: 17935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 1 + - uid: 17936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 1 + - uid: 17937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-10.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 3 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,18.5 + parent: 1 + - uid: 6 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,7.5 + parent: 1 + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,18.5 + parent: 1 + - uid: 10 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,18.5 + parent: 1 + - uid: 12 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,33.5 + parent: 1 + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,16.5 + parent: 1 + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,16.5 + parent: 1 + - uid: 24 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,16.5 + parent: 1 + - uid: 25 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,16.5 + parent: 1 + - uid: 27 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,21.5 + parent: 1 + - uid: 28 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,20.5 + parent: 1 + - uid: 40 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,31.5 + parent: 1 + - uid: 44 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,12.5 + parent: 1 + - uid: 45 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,12.5 + parent: 1 + - uid: 46 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,12.5 + parent: 1 + - uid: 47 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,12.5 + parent: 1 + - uid: 49 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,12.5 + parent: 1 + - uid: 51 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,16.5 + parent: 1 + - uid: 55 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,16.5 + parent: 1 + - uid: 56 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,17.5 + parent: 1 + - uid: 63 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,35.5 + parent: 1 + - uid: 64 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,14.5 + parent: 1 + - uid: 65 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,14.5 + parent: 1 + - uid: 66 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,14.5 + parent: 1 + - uid: 67 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,16.5 + parent: 1 + - uid: 68 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,12.5 + parent: 1 + - uid: 71 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,35.5 + parent: 1 + - uid: 72 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,33.5 + parent: 1 + - uid: 73 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,35.5 + parent: 1 + - uid: 74 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,35.5 + parent: 1 + - uid: 75 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,34.5 + parent: 1 + - uid: 76 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,33.5 + parent: 1 + - uid: 83 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,39.5 + parent: 1 + - uid: 84 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,35.5 + parent: 1 + - uid: 85 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,37.5 + parent: 1 + - uid: 86 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,37.5 + parent: 1 + - uid: 88 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,37.5 + parent: 1 + - uid: 91 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,11.5 + parent: 1 + - uid: 93 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,-15.5 + parent: 1 + - uid: 94 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 52.5,-6.5 + parent: 1 + - uid: 99 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,11.5 + parent: 1 + - uid: 107 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,11.5 + parent: 1 + - uid: 108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-10.5 + parent: 1 + - uid: 110 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,0.5 + parent: 1 + - uid: 114 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,6.5 + parent: 1 + - uid: 115 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,0.5 + parent: 1 + - uid: 119 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,10.5 + parent: 1 + - uid: 120 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,11.5 + parent: 1 + - uid: 121 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,11.5 + parent: 1 + - uid: 122 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,7.5 + parent: 1 + - uid: 123 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,8.5 + parent: 1 + - uid: 124 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,10.5 + parent: 1 + - uid: 125 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,11.5 + parent: 1 + - uid: 132 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 1 + - uid: 133 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-4.5 + parent: 1 + - uid: 134 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-5.5 + parent: 1 + - uid: 135 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-5.5 + parent: 1 + - uid: 139 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-18.5 + parent: 1 + - uid: 140 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-18.5 + parent: 1 + - uid: 141 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-18.5 + parent: 1 + - uid: 144 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,16.5 + parent: 1 + - uid: 145 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,16.5 + parent: 1 + - uid: 146 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,17.5 + parent: 1 + - uid: 148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-10.5 + parent: 1 + - uid: 149 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-6.5 + parent: 1 + - uid: 150 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 1 + - uid: 151 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-5.5 + parent: 1 + - uid: 154 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,6.5 + parent: 1 + - uid: 167 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,11.5 + parent: 1 + - uid: 170 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 1 + - uid: 171 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,0.5 + parent: 1 + - uid: 172 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 1 + - uid: 174 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,4.5 + parent: 1 + - uid: 176 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,8.5 + parent: 1 + - uid: 180 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,8.5 + parent: 1 + - uid: 212 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,25.5 + parent: 1 + - uid: 213 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,26.5 + parent: 1 + - uid: 214 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,30.5 + parent: 1 + - uid: 221 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,35.5 + parent: 1 + - uid: 230 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,12.5 + parent: 1 + - uid: 231 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,12.5 + parent: 1 + - uid: 235 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,-15.5 + parent: 1 + - uid: 237 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,3.5 + parent: 1 + - uid: 238 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,3.5 + parent: 1 + - uid: 246 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,12.5 + parent: 1 + - uid: 247 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-6.5 + parent: 1 + - uid: 260 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 1 + - uid: 270 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,0.5 + parent: 1 + - uid: 278 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-15.5 + parent: 1 + - uid: 280 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 1 + - uid: 281 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 1 + - uid: 282 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,12.5 + parent: 1 + - uid: 283 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,12.5 + parent: 1 + - uid: 284 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,12.5 + parent: 1 + - uid: 285 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,12.5 + parent: 1 + - uid: 289 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,57.5 + parent: 1 + - uid: 290 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,84.5 + parent: 1 + - uid: 291 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,83.5 + parent: 1 + - uid: 292 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,83.5 + parent: 1 + - uid: 293 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,81.5 + parent: 1 + - uid: 294 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,81.5 + parent: 1 + - uid: 295 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,78.5 + parent: 1 + - uid: 296 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,78.5 + parent: 1 + - uid: 298 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,78.5 + parent: 1 + - uid: 300 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,81.5 + parent: 1 + - uid: 302 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,83.5 + parent: 1 + - uid: 303 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,83.5 + parent: 1 + - uid: 304 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,81.5 + parent: 1 + - uid: 305 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,84.5 + parent: 1 + - uid: 315 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,84.5 + parent: 1 + - uid: 328 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,75.5 + parent: 1 + - uid: 329 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,75.5 + parent: 1 + - uid: 330 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,75.5 + parent: 1 + - uid: 331 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,75.5 + parent: 1 + - uid: 340 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,75.5 + parent: 1 + - uid: 341 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,75.5 + parent: 1 + - uid: 342 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,75.5 + parent: 1 + - uid: 343 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,75.5 + parent: 1 + - uid: 344 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,72.5 + parent: 1 + - uid: 345 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,75.5 + parent: 1 + - uid: 349 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,71.5 + parent: 1 + - uid: 350 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,70.5 + parent: 1 + - uid: 351 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,71.5 + parent: 1 + - uid: 352 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,71.5 + parent: 1 + - uid: 353 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,75.5 + parent: 1 + - uid: 354 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,75.5 + parent: 1 + - uid: 355 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,74.5 + parent: 1 + - uid: 356 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,73.5 + parent: 1 + - uid: 357 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,74.5 + parent: 1 + - uid: 358 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,73.5 + parent: 1 + - uid: 359 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,75.5 + parent: 1 + - uid: 360 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,69.5 + parent: 1 + - uid: 361 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,69.5 + parent: 1 + - uid: 368 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,72.5 + parent: 1 + - uid: 369 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,71.5 + parent: 1 + - uid: 370 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,71.5 + parent: 1 + - uid: 371 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,72.5 + parent: 1 + - uid: 372 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,71.5 + parent: 1 + - uid: 373 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,70.5 + parent: 1 + - uid: 377 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,71.5 + parent: 1 + - uid: 378 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,69.5 + parent: 1 + - uid: 379 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,69.5 + parent: 1 + - uid: 380 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,71.5 + parent: 1 + - uid: 381 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,59.5 + parent: 1 + - uid: 382 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,60.5 + parent: 1 + - uid: 383 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,65.5 + parent: 1 + - uid: 384 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,65.5 + parent: 1 + - uid: 385 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,65.5 + parent: 1 + - uid: 386 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,66.5 + parent: 1 + - uid: 387 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,59.5 + parent: 1 + - uid: 388 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,69.5 + parent: 1 + - uid: 389 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,70.5 + parent: 1 + - uid: 396 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,69.5 + parent: 1 + - uid: 398 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,78.5 + parent: 1 + - uid: 399 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,75.5 + parent: 1 + - uid: 422 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,59.5 + parent: 1 + - uid: 423 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,59.5 + parent: 1 + - uid: 424 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,59.5 + parent: 1 + - uid: 425 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,57.5 + parent: 1 + - uid: 426 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,57.5 + parent: 1 + - uid: 428 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,55.5 + parent: 1 + - uid: 429 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,53.5 + parent: 1 + - uid: 430 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,52.5 + parent: 1 + - uid: 431 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,52.5 + parent: 1 + - uid: 432 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,49.5 + parent: 1 + - uid: 433 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,49.5 + parent: 1 + - uid: 434 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,45.5 + parent: 1 + - uid: 435 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 49.5,45.5 + parent: 1 + - uid: 436 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,39.5 + parent: 1 + - uid: 437 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 49.5,39.5 + parent: 1 + - uid: 438 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 49.5,40.5 + parent: 1 + - uid: 443 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 1 + - uid: 451 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 1 + - uid: 452 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,0.5 + parent: 1 + - uid: 453 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 1 + - uid: 454 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 1 + - uid: 455 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-5.5 + parent: 1 + - uid: 457 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 1 + - uid: 458 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 1 + - uid: 553 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,39.5 + parent: 1 + - uid: 554 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,39.5 + parent: 1 + - uid: 620 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,39.5 + parent: 1 + - uid: 621 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,39.5 + parent: 1 + - uid: 766 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,-6.5 + parent: 1 + - uid: 791 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 792 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 793 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,20.5 + parent: 1 + - uid: 794 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,20.5 + parent: 1 + - uid: 795 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,16.5 + parent: 1 + - uid: 803 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,20.5 + parent: 1 + - uid: 804 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,19.5 + parent: 1 + - uid: 805 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,20.5 + parent: 1 + - uid: 806 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,19.5 + parent: 1 + - uid: 811 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,21.5 + parent: 1 + - uid: 812 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,21.5 + parent: 1 + - uid: 813 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,25.5 + parent: 1 + - uid: 814 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,25.5 + parent: 1 + - uid: 815 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,25.5 + parent: 1 + - uid: 816 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,26.5 + parent: 1 + - uid: 817 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,25.5 + parent: 1 + - uid: 818 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,26.5 + parent: 1 + - uid: 819 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,25.5 + parent: 1 + - uid: 820 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,26.5 + parent: 1 + - uid: 821 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,26.5 + parent: 1 + - uid: 823 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,27.5 + parent: 1 + - uid: 828 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,29.5 + parent: 1 + - uid: 830 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,27.5 + parent: 1 + - uid: 831 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,31.5 + parent: 1 + - uid: 832 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,31.5 + parent: 1 + - uid: 833 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,27.5 + parent: 1 + - uid: 834 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,31.5 + parent: 1 + - uid: 835 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,44.5 + parent: 1 + - uid: 836 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,42.5 + parent: 1 + - uid: 837 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,41.5 + parent: 1 + - uid: 838 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,45.5 + parent: 1 + - uid: 839 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 42.5,45.5 + parent: 1 + - uid: 840 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,45.5 + parent: 1 + - uid: 841 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,45.5 + parent: 1 + - uid: 842 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,45.5 + parent: 1 + - uid: 844 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,45.5 + parent: 1 + - uid: 870 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,35.5 + parent: 1 + - uid: 882 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,53.5 + parent: 1 + - uid: 884 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,56.5 + parent: 1 + - uid: 887 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,56.5 + parent: 1 + - uid: 927 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,53.5 + parent: 1 + - uid: 928 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,56.5 + parent: 1 + - uid: 929 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,56.5 + parent: 1 + - uid: 972 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,71.5 + parent: 1 + - uid: 973 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,66.5 + parent: 1 + - uid: 974 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,65.5 + parent: 1 + - uid: 975 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,65.5 + parent: 1 + - uid: 976 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,65.5 + parent: 1 + - uid: 977 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,60.5 + parent: 1 + - uid: 978 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,59.5 + parent: 1 + - uid: 979 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,59.5 + parent: 1 + - uid: 980 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,59.5 + parent: 1 + - uid: 981 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,57.5 + parent: 1 + - uid: 982 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,57.5 + parent: 1 + - uid: 983 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,57.5 + parent: 1 + - uid: 984 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,55.5 + parent: 1 + - uid: 986 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,52.5 + parent: 1 + - uid: 987 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,52.5 + parent: 1 + - uid: 988 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,49.5 + parent: 1 + - uid: 989 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,49.5 + parent: 1 + - uid: 990 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,45.5 + parent: 1 + - uid: 991 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,45.5 + parent: 1 + - uid: 992 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,40.5 + parent: 1 + - uid: 993 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,39.5 + parent: 1 + - uid: 994 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,39.5 + parent: 1 + - uid: 995 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,32.5 + parent: 1 + - uid: 996 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,33.5 + parent: 1 + - uid: 997 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,34.5 + parent: 1 + - uid: 998 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,35.5 + parent: 1 + - uid: 999 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,35.5 + parent: 1 + - uid: 1000 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,35.5 + parent: 1 + - uid: 1001 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,31.5 + parent: 1 + - uid: 1004 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,34.5 + parent: 1 + - uid: 1005 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,35.5 + parent: 1 + - uid: 1006 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,35.5 + parent: 1 + - uid: 1007 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,35.5 + parent: 1 + - uid: 1008 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,39.5 + parent: 1 + - uid: 1009 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,43.5 + parent: 1 + - uid: 1010 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,43.5 + parent: 1 + - uid: 1011 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,39.5 + parent: 1 + - uid: 1012 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,39.5 + parent: 1 + - uid: 1013 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,43.5 + parent: 1 + - uid: 1014 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,39.5 + parent: 1 + - uid: 1015 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,43.5 + parent: 1 + - uid: 1016 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,39.5 + parent: 1 + - uid: 1017 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,43.5 + parent: 1 + - uid: 1018 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,42.5 + parent: 1 + - uid: 1019 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,41.5 + parent: 1 + - uid: 1020 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,40.5 + parent: 1 + - uid: 1021 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,42.5 + parent: 1 + - uid: 1022 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,41.5 + parent: 1 + - uid: 1023 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,40.5 + parent: 1 + - uid: 1024 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,42.5 + parent: 1 + - uid: 1025 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,41.5 + parent: 1 + - uid: 1026 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,40.5 + parent: 1 + - uid: 1027 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,42.5 + parent: 1 + - uid: 1028 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,41.5 + parent: 1 + - uid: 1029 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,40.5 + parent: 1 + - uid: 1030 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,42.5 + parent: 1 + - uid: 1031 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,41.5 + parent: 1 + - uid: 1032 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,40.5 + parent: 1 + - uid: 1033 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,35.5 + parent: 1 + - uid: 1034 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,32.5 + parent: 1 + - uid: 1035 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,34.5 + parent: 1 + - uid: 1036 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,34.5 + parent: 1 + - uid: 1037 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,33.5 + parent: 1 + - uid: 1043 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,32.5 + parent: 1 + - uid: 1053 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,35.5 + parent: 1 + - uid: 1054 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,35.5 + parent: 1 + - uid: 1055 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,35.5 + parent: 1 + - uid: 1056 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,35.5 + parent: 1 + - uid: 1057 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,34.5 + parent: 1 + - uid: 1058 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,32.5 + parent: 1 + - uid: 1060 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,35.5 + parent: 1 + - uid: 1062 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,35.5 + parent: 1 + - uid: 1067 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,29.5 + parent: 1 + - uid: 1072 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,18.5 + parent: 1 + - uid: 1074 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,28.5 + parent: 1 + - uid: 1075 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,27.5 + parent: 1 + - uid: 1076 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,33.5 + parent: 1 + - uid: 1094 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,29.5 + parent: 1 + - uid: 1098 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,29.5 + parent: 1 + - uid: 1101 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,26.5 + parent: 1 + - uid: 1103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,26.5 + parent: 1 + - uid: 1107 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,18.5 + parent: 1 + - uid: 1110 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,26.5 + parent: 1 + - uid: 1111 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,26.5 + parent: 1 + - uid: 1118 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,16.5 + parent: 1 + - uid: 1119 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,16.5 + parent: 1 + - uid: 1120 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,16.5 + parent: 1 + - uid: 1121 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,19.5 + parent: 1 + - uid: 1122 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,20.5 + parent: 1 + - uid: 1123 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,20.5 + parent: 1 + - uid: 1124 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,20.5 + parent: 1 + - uid: 1125 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,20.5 + parent: 1 + - uid: 1126 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,16.5 + parent: 1 + - uid: 1127 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,16.5 + parent: 1 + - uid: 1128 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,17.5 + parent: 1 + - uid: 1129 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,16.5 + parent: 1 + - uid: 1136 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,16.5 + parent: 1 + - uid: 1137 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,16.5 + parent: 1 + - uid: 1138 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,17.5 + parent: 1 + - uid: 1141 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,21.5 + parent: 1 + - uid: 1142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,22.5 + parent: 1 + - uid: 1146 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,20.5 + parent: 1 + - uid: 1147 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,21.5 + parent: 1 + - uid: 1164 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,24.5 + parent: 1 + - uid: 1165 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,23.5 + parent: 1 + - uid: 1168 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,26.5 + parent: 1 + - uid: 1169 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,61.5 + parent: 1 + - uid: 1170 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,21.5 + parent: 1 + - uid: 1171 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,22.5 + parent: 1 + - uid: 1172 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,21.5 + parent: 1 + - uid: 1173 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,20.5 + parent: 1 + - uid: 1175 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,16.5 + parent: 1 + - uid: 1177 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,18.5 + parent: 1 + - uid: 1178 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,24.5 + parent: 1 + - uid: 1179 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,21.5 + parent: 1 + - uid: 1180 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,24.5 + parent: 1 + - uid: 1181 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,24.5 + parent: 1 + - uid: 1182 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,24.5 + parent: 1 + - uid: 1183 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,24.5 + parent: 1 + - uid: 1184 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,25.5 + parent: 1 + - uid: 1185 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,26.5 + parent: 1 + - uid: 1186 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,26.5 + parent: 1 + - uid: 1187 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,26.5 + parent: 1 + - uid: 1188 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,26.5 + parent: 1 + - uid: 1189 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,23.5 + parent: 1 + - uid: 1190 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,22.5 + parent: 1 + - uid: 1191 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,21.5 + parent: 1 + - uid: 1192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,20.5 + parent: 1 + - uid: 1193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,19.5 + parent: 1 + - uid: 1194 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,18.5 + parent: 1 + - uid: 1195 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,18.5 + parent: 1 + - uid: 1196 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,35.5 + parent: 1 + - uid: 1197 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,29.5 + parent: 1 + - uid: 1226 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,30.5 + parent: 1 + - uid: 1227 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,31.5 + parent: 1 + - uid: 1230 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,32.5 + parent: 1 + - uid: 1231 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,33.5 + parent: 1 + - uid: 1232 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,34.5 + parent: 1 + - uid: 1233 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,31.5 + parent: 1 + - uid: 1236 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,31.5 + parent: 1 + - uid: 1237 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,35.5 + parent: 1 + - uid: 1242 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,31.5 + parent: 1 + - uid: 1268 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,35.5 + parent: 1 + - uid: 1269 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,35.5 + parent: 1 + - uid: 1270 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,35.5 + parent: 1 + - uid: 1271 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,34.5 + parent: 1 + - uid: 1274 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,16.5 + parent: 1 + - uid: 1275 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,16.5 + parent: 1 + - uid: 1276 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,14.5 + parent: 1 + - uid: 1277 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,14.5 + parent: 1 + - uid: 1285 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,35.5 + parent: 1 + - uid: 1286 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,35.5 + parent: 1 + - uid: 1287 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,37.5 + parent: 1 + - uid: 1288 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,39.5 + parent: 1 + - uid: 1289 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,37.5 + parent: 1 + - uid: 1307 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,23.5 + parent: 1 + - uid: 1308 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,23.5 + parent: 1 + - uid: 1315 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,39.5 + parent: 1 + - uid: 1318 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,39.5 + parent: 1 + - uid: 1319 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,40.5 + parent: 1 + - uid: 1320 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,41.5 + parent: 1 + - uid: 1321 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,42.5 + parent: 1 + - uid: 1322 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,43.5 + parent: 1 + - uid: 1335 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,44.5 + parent: 1 + - uid: 1336 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,45.5 + parent: 1 + - uid: 1337 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,46.5 + parent: 1 + - uid: 1338 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,47.5 + parent: 1 + - uid: 1339 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,49.5 + parent: 1 + - uid: 1340 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,51.5 + parent: 1 + - uid: 1341 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,51.5 + parent: 1 + - uid: 1342 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,51.5 + parent: 1 + - uid: 1343 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,55.5 + parent: 1 + - uid: 1344 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,51.5 + parent: 1 + - uid: 1345 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,51.5 + parent: 1 + - uid: 1348 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,58.5 + parent: 1 + - uid: 1349 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,58.5 + parent: 1 + - uid: 1350 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,58.5 + parent: 1 + - uid: 1353 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,51.5 + parent: 1 + - uid: 1354 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,54.5 + parent: 1 + - uid: 1355 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,57.5 + parent: 1 + - uid: 1356 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,58.5 + parent: 1 + - uid: 1357 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,58.5 + parent: 1 + - uid: 1358 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,58.5 + parent: 1 + - uid: 1364 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,62.5 + parent: 1 + - uid: 1365 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,49.5 + parent: 1 + - uid: 1366 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,47.5 + parent: 1 + - uid: 1395 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,44.5 + parent: 1 + - uid: 1396 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,45.5 + parent: 1 + - uid: 1397 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,46.5 + parent: 1 + - uid: 1398 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,49.5 + parent: 1 + - uid: 1399 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,50.5 + parent: 1 + - uid: 1400 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,51.5 + parent: 1 + - uid: 1401 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,52.5 + parent: 1 + - uid: 1402 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,53.5 + parent: 1 + - uid: 1403 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,47.5 + parent: 1 + - uid: 1404 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,47.5 + parent: 1 + - uid: 1405 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,51.5 + parent: 1 + - uid: 1406 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,51.5 + parent: 1 + - uid: 1420 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,54.5 + parent: 1 + - uid: 1421 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,54.5 + parent: 1 + - uid: 1422 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,54.5 + parent: 1 + - uid: 1423 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,54.5 + parent: 1 + - uid: 1424 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,57.5 + parent: 1 + - uid: 1425 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,57.5 + parent: 1 + - uid: 1426 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,56.5 + parent: 1 + - uid: 1428 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,61.5 + parent: 1 + - uid: 1429 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,60.5 + parent: 1 + - uid: 1430 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,58.5 + parent: 1 + - uid: 1431 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,61.5 + parent: 1 + - uid: 1432 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,61.5 + parent: 1 + - uid: 1433 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,60.5 + parent: 1 + - uid: 1434 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,61.5 + parent: 1 + - uid: 1435 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,59.5 + parent: 1 + - uid: 1436 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,62.5 + parent: 1 + - uid: 1437 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,57.5 + parent: 1 + - uid: 1439 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,61.5 + parent: 1 + - uid: 1445 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,66.5 + parent: 1 + - uid: 1446 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,65.5 + parent: 1 + - uid: 1447 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,64.5 + parent: 1 + - uid: 1452 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,63.5 + parent: 1 + - uid: 1453 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,49.5 + parent: 1 + - uid: 1454 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,46.5 + parent: 1 + - uid: 1455 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,46.5 + parent: 1 + - uid: 1456 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,46.5 + parent: 1 + - uid: 1457 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,49.5 + parent: 1 + - uid: 1458 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,49.5 + parent: 1 + - uid: 1459 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,46.5 + parent: 1 + - uid: 1460 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,45.5 + parent: 1 + - uid: 1464 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,41.5 + parent: 1 + - uid: 1465 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,41.5 + parent: 1 + - uid: 1466 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,41.5 + parent: 1 + - uid: 1467 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,41.5 + parent: 1 + - uid: 1468 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,40.5 + parent: 1 + - uid: 1470 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,41.5 + parent: 1 + - uid: 1471 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,41.5 + parent: 1 + - uid: 1476 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,44.5 + parent: 1 + - uid: 1477 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,49.5 + parent: 1 + - uid: 1478 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,51.5 + parent: 1 + - uid: 1479 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,50.5 + parent: 1 + - uid: 1480 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,51.5 + parent: 1 + - uid: 1481 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,51.5 + parent: 1 + - uid: 1482 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,51.5 + parent: 1 + - uid: 1483 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,51.5 + parent: 1 + - uid: 1484 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,51.5 + parent: 1 + - uid: 1485 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,51.5 + parent: 1 + - uid: 1486 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,51.5 + parent: 1 + - uid: 1487 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,51.5 + parent: 1 + - uid: 1488 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,51.5 + parent: 1 + - uid: 1489 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,51.5 + parent: 1 + - uid: 1490 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,51.5 + parent: 1 + - uid: 1491 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,51.5 + parent: 1 + - uid: 1492 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,51.5 + parent: 1 + - uid: 1493 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,50.5 + parent: 1 + - uid: 1494 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,49.5 + parent: 1 + - uid: 1495 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,48.5 + parent: 1 + - uid: 1496 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,47.5 + parent: 1 + - uid: 1497 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,49.5 + parent: 1 + - uid: 1498 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,49.5 + parent: 1 + - uid: 1499 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,48.5 + parent: 1 + - uid: 1502 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,47.5 + parent: 1 + - uid: 1505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,41.5 + parent: 1 + - uid: 1506 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,40.5 + parent: 1 + - uid: 1507 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,39.5 + parent: 1 + - uid: 1508 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,39.5 + parent: 1 + - uid: 1509 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,39.5 + parent: 1 + - uid: 1510 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,39.5 + parent: 1 + - uid: 1512 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,45.5 + parent: 1 + - uid: 1513 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,39.5 + parent: 1 + - uid: 1517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,41.5 + parent: 1 + - uid: 1520 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,44.5 + parent: 1 + - uid: 1528 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,39.5 + parent: 1 + - uid: 1529 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,39.5 + parent: 1 + - uid: 1533 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,39.5 + parent: 1 + - uid: 1534 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,41.5 + parent: 1 + - uid: 1536 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,41.5 + parent: 1 + - uid: 1539 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,39.5 + parent: 1 + - uid: 1540 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,39.5 + parent: 1 + - uid: 1541 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,39.5 + parent: 1 + - uid: 1544 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,41.5 + parent: 1 + - uid: 1546 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,39.5 + parent: 1 + - uid: 1550 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,39.5 + parent: 1 + - uid: 1551 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,50.5 + parent: 1 + - uid: 1552 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,50.5 + parent: 1 + - uid: 1553 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,50.5 + parent: 1 + - uid: 1554 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,50.5 + parent: 1 + - uid: 1555 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,50.5 + parent: 1 + - uid: 1556 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,50.5 + parent: 1 + - uid: 1557 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,50.5 + parent: 1 + - uid: 1558 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,50.5 + parent: 1 + - uid: 1559 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,50.5 + parent: 1 + - uid: 1560 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,50.5 + parent: 1 + - uid: 1561 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,50.5 + parent: 1 + - uid: 1562 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,50.5 + parent: 1 + - uid: 1563 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,50.5 + parent: 1 + - uid: 1565 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,50.5 + parent: 1 + - uid: 1570 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-41.5 + parent: 1 + - uid: 1572 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-41.5 + parent: 1 + - uid: 1573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-42.5 + parent: 1 + - uid: 1574 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,49.5 + parent: 1 + - uid: 1591 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,46.5 + parent: 1 + - uid: 1600 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,59.5 + parent: 1 + - uid: 1601 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,59.5 + parent: 1 + - uid: 1617 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,56.5 + parent: 1 + - uid: 1619 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,56.5 + parent: 1 + - uid: 1623 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,53.5 + parent: 1 + - uid: 1641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,34.5 + parent: 1 + - uid: 1660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,53.5 + parent: 1 + - uid: 1666 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,56.5 + parent: 1 + - uid: 1692 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,70.5 + parent: 1 + - uid: 1695 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,71.5 + parent: 1 + - uid: 1711 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,54.5 + parent: 1 + - uid: 1734 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,16.5 + parent: 1 + - uid: 1735 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,20.5 + parent: 1 + - uid: 1736 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,31.5 + parent: 1 + - uid: 1773 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,29.5 + parent: 1 + - uid: 1774 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,26.5 + parent: 1 + - uid: 1786 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,52.5 + parent: 1 + - uid: 1788 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,57.5 + parent: 1 + - uid: 1789 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,58.5 + parent: 1 + - uid: 1790 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,56.5 + parent: 1 + - uid: 1791 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,63.5 + parent: 1 + - uid: 1792 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,61.5 + parent: 1 + - uid: 1793 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,61.5 + parent: 1 + - uid: 1794 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,61.5 + parent: 1 + - uid: 1798 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,64.5 + parent: 1 + - uid: 1799 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,65.5 + parent: 1 + - uid: 1800 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,66.5 + parent: 1 + - uid: 1802 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,66.5 + parent: 1 + - uid: 1803 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,66.5 + parent: 1 + - uid: 1804 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,66.5 + parent: 1 + - uid: 1806 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,65.5 + parent: 1 + - uid: 1807 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,65.5 + parent: 1 + - uid: 1808 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,66.5 + parent: 1 + - uid: 1809 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,65.5 + parent: 1 + - uid: 1810 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,66.5 + parent: 1 + - uid: 1811 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,65.5 + parent: 1 + - uid: 1812 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,66.5 + parent: 1 + - uid: 1813 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,65.5 + parent: 1 + - uid: 1814 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,66.5 + parent: 1 + - uid: 1815 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,65.5 + parent: 1 + - uid: 1816 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,66.5 + parent: 1 + - uid: 1817 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,65.5 + parent: 1 + - uid: 1818 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,64.5 + parent: 1 + - uid: 1819 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,63.5 + parent: 1 + - uid: 1820 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,62.5 + parent: 1 + - uid: 1821 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,61.5 + parent: 1 + - uid: 1822 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,60.5 + parent: 1 + - uid: 1823 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,59.5 + parent: 1 + - uid: 1824 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,65.5 + parent: 1 + - uid: 1825 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,64.5 + parent: 1 + - uid: 1826 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,63.5 + parent: 1 + - uid: 1827 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,62.5 + parent: 1 + - uid: 1828 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,61.5 + parent: 1 + - uid: 1829 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,60.5 + parent: 1 + - uid: 1830 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,59.5 + parent: 1 + - uid: 1857 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,58.5 + parent: 1 + - uid: 1858 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,58.5 + parent: 1 + - uid: 1859 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,58.5 + parent: 1 + - uid: 1860 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,51.5 + parent: 1 + - uid: 1861 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,51.5 + parent: 1 + - uid: 1862 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,51.5 + parent: 1 + - uid: 1916 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,51.5 + parent: 1 + - uid: 1919 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,51.5 + parent: 1 + - uid: 1920 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,51.5 + parent: 1 + - uid: 1994 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,-15.5 + parent: 1 + - uid: 2005 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,-10.5 + parent: 1 + - uid: 2008 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 52.5,-15.5 + parent: 1 + - uid: 2009 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-5.5 + parent: 1 + - uid: 2011 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,-10.5 + parent: 1 + - uid: 2028 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 1 + - uid: 2041 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,-15.5 + parent: 1 + - uid: 2042 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,-8.5 + parent: 1 + - uid: 2045 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 1 + - uid: 2050 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-48.5 + parent: 1 + - uid: 2051 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-5.5 + parent: 1 + - uid: 2055 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,-6.5 + parent: 1 + - uid: 2063 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-47.5 + parent: 1 + - uid: 2064 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-42.5 + parent: 1 + - uid: 2065 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-48.5 + parent: 1 + - uid: 2066 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-47.5 + parent: 1 + - uid: 2067 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-42.5 + parent: 1 + - uid: 2069 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-46.5 + parent: 1 + - uid: 2072 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-46.5 + parent: 1 + - uid: 2075 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,6.5 + parent: 1 + - uid: 2078 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-42.5 + parent: 1 + - uid: 2079 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-42.5 + parent: 1 + - uid: 2080 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-42.5 + parent: 1 + - uid: 2081 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-42.5 + parent: 1 + - uid: 2082 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-42.5 + parent: 1 + - uid: 2083 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-42.5 + parent: 1 + - uid: 2084 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-38.5 + parent: 1 + - uid: 2085 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-38.5 + parent: 1 + - uid: 2086 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-46.5 + parent: 1 + - uid: 2087 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-46.5 + parent: 1 + - uid: 2095 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-37.5 + parent: 1 + - uid: 2096 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-31.5 + parent: 1 + - uid: 2097 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-31.5 + parent: 1 + - uid: 2104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-35.5 + parent: 1 + - uid: 2108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-6.5 + parent: 1 + - uid: 2109 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-6.5 + parent: 1 + - uid: 2118 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 1 + - uid: 2119 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,7.5 + parent: 1 + - uid: 2123 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-42.5 + parent: 1 + - uid: 2124 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-42.5 + parent: 1 + - uid: 2125 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-41.5 + parent: 1 + - uid: 2126 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-42.5 + parent: 1 + - uid: 2131 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-42.5 + parent: 1 + - uid: 2132 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-38.5 + parent: 1 + - uid: 2133 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-38.5 + parent: 1 + - uid: 2134 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-38.5 + parent: 1 + - uid: 2135 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-38.5 + parent: 1 + - uid: 2136 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-40.5 + parent: 1 + - uid: 2137 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-39.5 + parent: 1 + - uid: 2138 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-40.5 + parent: 1 + - uid: 2139 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-39.5 + parent: 1 + - uid: 2169 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-32.5 + parent: 1 + - uid: 2170 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-32.5 + parent: 1 + - uid: 2171 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-36.5 + parent: 1 + - uid: 2172 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-36.5 + parent: 1 + - uid: 2173 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-30.5 + parent: 1 + - uid: 2174 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-30.5 + parent: 1 + - uid: 2175 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-30.5 + parent: 1 + - uid: 2176 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-30.5 + parent: 1 + - uid: 2177 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-30.5 + parent: 1 + - uid: 2178 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-29.5 + parent: 1 + - uid: 2179 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-28.5 + parent: 1 + - uid: 2180 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-28.5 + parent: 1 + - uid: 2181 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-28.5 + parent: 1 + - uid: 2182 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-28.5 + parent: 1 + - uid: 2183 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-28.5 + parent: 1 + - uid: 2184 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-27.5 + parent: 1 + - uid: 2185 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-26.5 + parent: 1 + - uid: 2186 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-26.5 + parent: 1 + - uid: 2187 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-26.5 + parent: 1 + - uid: 2188 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-26.5 + parent: 1 + - uid: 2189 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-26.5 + parent: 1 + - uid: 2190 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-25.5 + parent: 1 + - uid: 2191 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-24.5 + parent: 1 + - uid: 2192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-24.5 + parent: 1 + - uid: 2193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-24.5 + parent: 1 + - uid: 2194 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-24.5 + parent: 1 + - uid: 2195 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-24.5 + parent: 1 + - uid: 2196 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 2197 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 2198 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-22.5 + parent: 1 + - uid: 2199 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-22.5 + parent: 1 + - uid: 2200 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-22.5 + parent: 1 + - uid: 2201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-22.5 + parent: 1 + - uid: 2202 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 2203 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 2204 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 2205 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-20.5 + parent: 1 + - uid: 2206 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 2207 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-20.5 + parent: 1 + - uid: 2208 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 2209 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 2210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 2211 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 2212 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 2213 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 2215 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 1 + - uid: 2216 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-41.5 + parent: 1 + - uid: 2217 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 1 + - uid: 2218 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 1 + - uid: 2219 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 1 + - uid: 2220 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 1 + - uid: 2221 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-28.5 + parent: 1 + - uid: 2222 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-29.5 + parent: 1 + - uid: 2223 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-30.5 + parent: 1 + - uid: 2224 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 1 + - uid: 2225 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 1 + - uid: 2226 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1 + - uid: 2227 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 1 + - uid: 2228 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 1 + - uid: 2229 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1 + - uid: 2230 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-30.5 + parent: 1 + - uid: 2231 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-20.5 + parent: 1 + - uid: 2232 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-19.5 + parent: 1 + - uid: 2233 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-18.5 + parent: 1 + - uid: 2234 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-17.5 + parent: 1 + - uid: 2235 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-16.5 + parent: 1 + - uid: 2236 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-16.5 + parent: 1 + - uid: 2237 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-16.5 + parent: 1 + - uid: 2240 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-16.5 + parent: 1 + - uid: 2242 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-16.5 + parent: 1 + - uid: 2243 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-38.5 + parent: 1 + - uid: 2244 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-38.5 + parent: 1 + - uid: 2245 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-16.5 + parent: 1 + - uid: 2246 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-16.5 + parent: 1 + - uid: 2247 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-16.5 + parent: 1 + - uid: 2248 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 2249 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 2251 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 2252 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 2253 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 2254 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 2281 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - uid: 2292 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-42.5 + parent: 1 + - uid: 2296 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-42.5 + parent: 1 + - uid: 2297 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-42.5 + parent: 1 + - uid: 2298 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-42.5 + parent: 1 + - uid: 2299 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-42.5 + parent: 1 + - uid: 2301 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-42.5 + parent: 1 + - uid: 2302 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-42.5 + parent: 1 + - uid: 2303 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-41.5 + parent: 1 + - uid: 2304 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-40.5 + parent: 1 + - uid: 2305 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-39.5 + parent: 1 + - uid: 2306 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-38.5 + parent: 1 + - uid: 2307 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-37.5 + parent: 1 + - uid: 2308 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-36.5 + parent: 1 + - uid: 2309 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-41.5 + parent: 1 + - uid: 2310 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-34.5 + parent: 1 + - uid: 2311 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-33.5 + parent: 1 + - uid: 2312 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-32.5 + parent: 1 + - uid: 2313 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-31.5 + parent: 1 + - uid: 2314 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-30.5 + parent: 1 + - uid: 2315 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-29.5 + parent: 1 + - uid: 2316 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-28.5 + parent: 1 + - uid: 2317 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-27.5 + parent: 1 + - uid: 2318 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-26.5 + parent: 1 + - uid: 2319 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-25.5 + parent: 1 + - uid: 2321 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-24.5 + parent: 1 + - uid: 2322 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-22.5 + parent: 1 + - uid: 2323 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-21.5 + parent: 1 + - uid: 2324 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-20.5 + parent: 1 + - uid: 2325 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-19.5 + parent: 1 + - uid: 2326 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-18.5 + parent: 1 + - uid: 2327 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-17.5 + parent: 1 + - uid: 2328 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-16.5 + parent: 1 + - uid: 2329 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-16.5 + parent: 1 + - uid: 2330 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-16.5 + parent: 1 + - uid: 2331 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 2332 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-16.5 + parent: 1 + - uid: 2333 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-16.5 + parent: 1 + - uid: 2336 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-21.5 + parent: 1 + - uid: 2337 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 2338 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 2339 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-38.5 + parent: 1 + - uid: 2340 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-38.5 + parent: 1 + - uid: 2341 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-38.5 + parent: 1 + - uid: 2342 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-39.5 + parent: 1 + - uid: 2343 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-40.5 + parent: 1 + - uid: 2344 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-41.5 + parent: 1 + - uid: 2359 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-32.5 + parent: 1 + - uid: 2360 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-31.5 + parent: 1 + - uid: 2361 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-20.5 + parent: 1 + - uid: 2362 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-20.5 + parent: 1 + - uid: 2363 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-17.5 + parent: 1 + - uid: 2364 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-20.5 + parent: 1 + - uid: 2365 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-20.5 + parent: 1 + - uid: 2367 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-10.5 + parent: 1 + - uid: 2368 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-35.5 + parent: 1 + - uid: 2377 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-10.5 + parent: 1 + - uid: 2378 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 2379 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 2382 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-10.5 + parent: 1 + - uid: 2383 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 2384 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-10.5 + parent: 1 + - uid: 2385 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 2386 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 2389 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 2391 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-14.5 + parent: 1 + - uid: 2393 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 2394 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - uid: 2395 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 2399 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-14.5 + parent: 1 + - uid: 2400 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-14.5 + parent: 1 + - uid: 2401 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-14.5 + parent: 1 + - uid: 2402 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-14.5 + parent: 1 + - uid: 2403 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 2404 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 2405 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 2406 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - uid: 2410 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 2411 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - uid: 2412 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 2413 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-20.5 + parent: 1 + - uid: 2414 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-21.5 + parent: 1 + - uid: 2415 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-22.5 + parent: 1 + - uid: 2416 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-23.5 + parent: 1 + - uid: 2417 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-24.5 + parent: 1 + - uid: 2418 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-25.5 + parent: 1 + - uid: 2419 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-26.5 + parent: 1 + - uid: 2420 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-27.5 + parent: 1 + - uid: 2421 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-28.5 + parent: 1 + - uid: 2422 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-29.5 + parent: 1 + - uid: 2423 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-30.5 + parent: 1 + - uid: 2424 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-37.5 + parent: 1 + - uid: 2425 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-36.5 + parent: 1 + - uid: 2426 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-35.5 + parent: 1 + - uid: 2427 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-35.5 + parent: 1 + - uid: 2428 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-35.5 + parent: 1 + - uid: 2429 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-35.5 + parent: 1 + - uid: 2430 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-35.5 + parent: 1 + - uid: 2431 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-31.5 + parent: 1 + - uid: 2432 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-31.5 + parent: 1 + - uid: 2433 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-31.5 + parent: 1 + - uid: 2434 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-31.5 + parent: 1 + - uid: 2435 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-31.5 + parent: 1 + - uid: 2436 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-30.5 + parent: 1 + - uid: 2438 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-28.5 + parent: 1 + - uid: 2439 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-27.5 + parent: 1 + - uid: 2440 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-27.5 + parent: 1 + - uid: 2441 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-27.5 + parent: 1 + - uid: 2444 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-27.5 + parent: 1 + - uid: 2445 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-27.5 + parent: 1 + - uid: 2450 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-10.5 + parent: 1 + - uid: 2451 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-10.5 + parent: 1 + - uid: 2452 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-11.5 + parent: 1 + - uid: 2453 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-12.5 + parent: 1 + - uid: 2454 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-13.5 + parent: 1 + - uid: 2455 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-14.5 + parent: 1 + - uid: 2456 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-15.5 + parent: 1 + - uid: 2457 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-20.5 + parent: 1 + - uid: 2458 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-19.5 + parent: 1 + - uid: 2459 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-16.5 + parent: 1 + - uid: 2499 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,1.5 + parent: 1 + - uid: 2501 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,12.5 + parent: 1 + - uid: 2502 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,11.5 + parent: 1 + - uid: 2503 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 2504 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,9.5 + parent: 1 + - uid: 2505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,6.5 + parent: 1 + - uid: 2506 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,5.5 + parent: 1 + - uid: 2507 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,8.5 + parent: 1 + - uid: 2508 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,7.5 + parent: 1 + - uid: 2509 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,4.5 + parent: 1 + - uid: 2512 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,3.5 + parent: 1 + - uid: 2522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,7.5 + parent: 1 + - uid: 2523 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,7.5 + parent: 1 + - uid: 2527 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,7.5 + parent: 1 + - uid: 2528 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,8.5 + parent: 1 + - uid: 2529 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,12.5 + parent: 1 + - uid: 2530 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,1.5 + parent: 1 + - uid: 2531 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,9.5 + parent: 1 + - uid: 2532 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,12.5 + parent: 1 + - uid: 2533 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,12.5 + parent: 1 + - uid: 2534 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,12.5 + parent: 1 + - uid: 2535 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,11.5 + parent: 1 + - uid: 2536 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,12.5 + parent: 1 + - uid: 2537 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,12.5 + parent: 1 + - uid: 2541 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-2.5 + parent: 1 + - uid: 2696 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-46.5 + parent: 1 + - uid: 2697 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-46.5 + parent: 1 + - uid: 2707 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-46.5 + parent: 1 + - uid: 2721 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-46.5 + parent: 1 + - uid: 2727 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-44.5 + parent: 1 + - uid: 2804 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 1 + - uid: 2805 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-25.5 + parent: 1 + - uid: 2806 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-30.5 + parent: 1 + - uid: 2809 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-25.5 + parent: 1 + - uid: 2810 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-25.5 + parent: 1 + - uid: 2823 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-27.5 + parent: 1 + - uid: 2824 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-26.5 + parent: 1 + - uid: 2837 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-19.5 + parent: 1 + - uid: 2838 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-10.5 + parent: 1 + - uid: 2839 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 2840 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 2841 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-12.5 + parent: 1 + - uid: 2842 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-13.5 + parent: 1 + - uid: 2843 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 2844 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 2845 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-26.5 + parent: 1 + - uid: 2846 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-25.5 + parent: 1 + - uid: 2847 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-23.5 + parent: 1 + - uid: 2848 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-22.5 + parent: 1 + - uid: 2849 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-22.5 + parent: 1 + - uid: 2850 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-22.5 + parent: 1 + - uid: 2851 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-22.5 + parent: 1 + - uid: 2852 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-22.5 + parent: 1 + - uid: 2853 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-19.5 + parent: 1 + - uid: 2854 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-19.5 + parent: 1 + - uid: 2855 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-17.5 + parent: 1 + - uid: 2856 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-18.5 + parent: 1 + - uid: 2857 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-19.5 + parent: 1 + - uid: 2859 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-41.5 + parent: 1 + - uid: 2860 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-38.5 + parent: 1 + - uid: 2861 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-38.5 + parent: 1 + - uid: 2862 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-35.5 + parent: 1 + - uid: 2863 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-32.5 + parent: 1 + - uid: 2864 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-31.5 + parent: 1 + - uid: 2865 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-31.5 + parent: 1 + - uid: 2866 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-28.5 + parent: 1 + - uid: 2867 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-28.5 + parent: 1 + - uid: 2868 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-28.5 + parent: 1 + - uid: 2869 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-28.5 + parent: 1 + - uid: 2870 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-31.5 + parent: 1 + - uid: 2880 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,2.5 + parent: 1 + - uid: 2881 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,1.5 + parent: 1 + - uid: 2882 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,1.5 + parent: 1 + - uid: 2896 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,1.5 + parent: 1 + - uid: 2916 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-27.5 + parent: 1 + - uid: 2918 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-14.5 + parent: 1 + - uid: 2928 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-18.5 + parent: 1 + - uid: 2933 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-14.5 + parent: 1 + - uid: 2934 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-18.5 + parent: 1 + - uid: 2936 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-22.5 + parent: 1 + - uid: 2937 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-27.5 + parent: 1 + - uid: 2938 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-25.5 + parent: 1 + - uid: 2939 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-25.5 + parent: 1 + - uid: 2940 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-22.5 + parent: 1 + - uid: 2941 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-18.5 + parent: 1 + - uid: 2942 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-22.5 + parent: 1 + - uid: 2944 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-19.5 + parent: 1 + - uid: 2945 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-16.5 + parent: 1 + - uid: 2946 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-17.5 + parent: 1 + - uid: 2948 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-12.5 + parent: 1 + - uid: 2949 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-10.5 + parent: 1 + - uid: 2950 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,-12.5 + parent: 1 + - uid: 2973 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-43.5 + parent: 1 + - uid: 3045 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-45.5 + parent: 1 + - uid: 3078 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-12.5 + parent: 1 + - uid: 3083 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-27.5 + parent: 1 + - uid: 3084 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-26.5 + parent: 1 + - uid: 3085 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-25.5 + parent: 1 + - uid: 3086 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-27.5 + parent: 1 + - uid: 3087 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-22.5 + parent: 1 + - uid: 3088 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-14.5 + parent: 1 + - uid: 3092 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-26.5 + parent: 1 + - uid: 3094 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-25.5 + parent: 1 + - uid: 3144 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-17.5 + parent: 1 + - uid: 3145 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-15.5 + parent: 1 + - uid: 3146 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-19.5 + parent: 1 + - uid: 3147 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-18.5 + parent: 1 + - uid: 3148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,-12.5 + parent: 1 + - uid: 3149 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,-14.5 + parent: 1 + - uid: 3150 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-15.5 + parent: 1 + - uid: 3151 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-19.5 + parent: 1 + - uid: 3152 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-19.5 + parent: 1 + - uid: 3153 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-16.5 + parent: 1 + - uid: 3155 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-11.5 + parent: 1 + - uid: 3161 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-12.5 + parent: 1 + - uid: 3162 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,-12.5 + parent: 1 + - uid: 3163 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,-10.5 + parent: 1 + - uid: 3182 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,45.5 + parent: 1 + - uid: 3255 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,54.5 + parent: 1 + - uid: 3319 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,50.5 + parent: 1 + - uid: 3320 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,49.5 + parent: 1 + - uid: 3321 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,49.5 + parent: 1 + - uid: 3322 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,48.5 + parent: 1 + - uid: 3323 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,48.5 + parent: 1 + - uid: 3324 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,49.5 + parent: 1 + - uid: 3326 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,49.5 + parent: 1 + - uid: 3327 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,49.5 + parent: 1 + - uid: 3328 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,48.5 + parent: 1 + - uid: 3329 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,47.5 + parent: 1 + - uid: 3330 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,46.5 + parent: 1 + - uid: 3331 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,45.5 + parent: 1 + - uid: 3332 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,44.5 + parent: 1 + - uid: 3333 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 1 + - uid: 3334 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,44.5 + parent: 1 + - uid: 3335 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,44.5 + parent: 1 + - uid: 3336 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,45.5 + parent: 1 + - uid: 3337 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,45.5 + parent: 1 + - uid: 3341 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,48.5 + parent: 1 + - uid: 3342 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,45.5 + parent: 1 + - uid: 3344 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,50.5 + parent: 1 + - uid: 3345 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,43.5 + parent: 1 + - uid: 3348 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,42.5 + parent: 1 + - uid: 3349 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,42.5 + parent: 1 + - uid: 3350 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,42.5 + parent: 1 + - uid: 3351 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,42.5 + parent: 1 + - uid: 3352 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,42.5 + parent: 1 + - uid: 3353 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,42.5 + parent: 1 + - uid: 3354 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,42.5 + parent: 1 + - uid: 3355 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,42.5 + parent: 1 + - uid: 3356 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,43.5 + parent: 1 + - uid: 3357 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,44.5 + parent: 1 + - uid: 3358 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,45.5 + parent: 1 + - uid: 3359 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,46.5 + parent: 1 + - uid: 3360 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,47.5 + parent: 1 + - uid: 3361 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,48.5 + parent: 1 + - uid: 3424 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-10.5 + parent: 1 + - uid: 3425 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-10.5 + parent: 1 + - uid: 3517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,17.5 + parent: 1 + - uid: 3531 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,41.5 + parent: 1 + - uid: 3533 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,41.5 + parent: 1 + - uid: 3534 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,42.5 + parent: 1 + - uid: 3535 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,44.5 + parent: 1 + - uid: 3561 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,21.5 + parent: 1 + - uid: 3569 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-10.5 + parent: 1 + - uid: 3571 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-14.5 + parent: 1 + - uid: 3572 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-13.5 + parent: 1 + - uid: 3573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-12.5 + parent: 1 + - uid: 3576 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-11.5 + parent: 1 + - uid: 3577 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-14.5 + parent: 1 + - uid: 3579 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-14.5 + parent: 1 + - uid: 3580 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-14.5 + parent: 1 + - uid: 3581 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-14.5 + parent: 1 + - uid: 3585 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-13.5 + parent: 1 + - uid: 3588 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-10.5 + parent: 1 + - uid: 3591 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-10.5 + parent: 1 + - uid: 3592 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-10.5 + parent: 1 + - uid: 3593 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-12.5 + parent: 1 + - uid: 3597 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-14.5 + parent: 1 + - uid: 3604 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,21.5 + parent: 1 + - uid: 3605 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 3606 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,21.5 + parent: 1 + - uid: 3607 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 3608 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,21.5 + parent: 1 + - uid: 3611 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,25.5 + parent: 1 + - uid: 3612 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,25.5 + parent: 1 + - uid: 3613 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,25.5 + parent: 1 + - uid: 3615 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,26.5 + parent: 1 + - uid: 3616 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,26.5 + parent: 1 + - uid: 3617 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,26.5 + parent: 1 + - uid: 3623 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,21.5 + parent: 1 + - uid: 3625 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,23.5 + parent: 1 + - uid: 3626 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,24.5 + parent: 1 + - uid: 3627 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,25.5 + parent: 1 + - uid: 3628 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,26.5 + parent: 1 + - uid: 3656 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,26.5 + parent: 1 + - uid: 3657 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,26.5 + parent: 1 + - uid: 3658 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,26.5 + parent: 1 + - uid: 3659 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,26.5 + parent: 1 + - uid: 3662 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,29.5 + parent: 1 + - uid: 3663 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,30.5 + parent: 1 + - uid: 3664 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,31.5 + parent: 1 + - uid: 3665 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,32.5 + parent: 1 + - uid: 3667 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,30.5 + parent: 1 + - uid: 3668 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,30.5 + parent: 1 + - uid: 3669 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,30.5 + parent: 1 + - uid: 3670 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,33.5 + parent: 1 + - uid: 3671 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,34.5 + parent: 1 + - uid: 3672 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,35.5 + parent: 1 + - uid: 3673 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,35.5 + parent: 1 + - uid: 3674 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,35.5 + parent: 1 + - uid: 3675 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,35.5 + parent: 1 + - uid: 3676 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,35.5 + parent: 1 + - uid: 3682 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,34.5 + parent: 1 + - uid: 3683 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,33.5 + parent: 1 + - uid: 3704 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,30.5 + parent: 1 + - uid: 3706 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,30.5 + parent: 1 + - uid: 3707 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,30.5 + parent: 1 + - uid: 3708 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,30.5 + parent: 1 + - uid: 3709 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,25.5 + parent: 1 + - uid: 3710 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,25.5 + parent: 1 + - uid: 3711 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,25.5 + parent: 1 + - uid: 3712 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,25.5 + parent: 1 + - uid: 3713 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,25.5 + parent: 1 + - uid: 3714 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,25.5 + parent: 1 + - uid: 3715 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,25.5 + parent: 1 + - uid: 3716 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,26.5 + parent: 1 + - uid: 3718 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,28.5 + parent: 1 + - uid: 3719 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,29.5 + parent: 1 + - uid: 3720 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,30.5 + parent: 1 + - uid: 3737 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-26.5 + parent: 1 + - uid: 3738 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-26.5 + parent: 1 + - uid: 3739 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-28.5 + parent: 1 + - uid: 3743 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-25.5 + parent: 1 + - uid: 3744 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-28.5 + parent: 1 + - uid: 3745 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-28.5 + parent: 1 + - uid: 3746 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-20.5 + parent: 1 + - uid: 3748 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-26.5 + parent: 1 + - uid: 3749 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-25.5 + parent: 1 + - uid: 3750 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-26.5 + parent: 1 + - uid: 3752 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-21.5 + parent: 1 + - uid: 3754 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - uid: 3755 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-21.5 + parent: 1 + - uid: 3760 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-25.5 + parent: 1 + - uid: 3762 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-21.5 + parent: 1 + - uid: 3768 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-20.5 + parent: 1 + - uid: 3769 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-21.5 + parent: 1 + - uid: 3770 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-25.5 + parent: 1 + - uid: 3771 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-22.5 + parent: 1 + - uid: 3772 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-24.5 + parent: 1 + - uid: 3773 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 3781 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-10.5 + parent: 1 + - uid: 3783 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-10.5 + parent: 1 + - uid: 3797 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-10.5 + parent: 1 + - uid: 3799 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-18.5 + parent: 1 + - uid: 3800 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-18.5 + parent: 1 + - uid: 3801 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-18.5 + parent: 1 + - uid: 3802 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-18.5 + parent: 1 + - uid: 3806 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-18.5 + parent: 1 + - uid: 3808 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-17.5 + parent: 1 + - uid: 3815 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-20.5 + parent: 1 + - uid: 3816 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-20.5 + parent: 1 + - uid: 3817 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-19.5 + parent: 1 + - uid: 3934 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-14.5 + parent: 1 + - uid: 3935 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-13.5 + parent: 1 + - uid: 3936 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-12.5 + parent: 1 + - uid: 3937 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-11.5 + parent: 1 + - uid: 3938 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-10.5 + parent: 1 + - uid: 3959 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-19.5 + parent: 1 + - uid: 3967 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,35.5 + parent: 1 + - uid: 3968 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-10.5 + parent: 1 + - uid: 3969 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-10.5 + parent: 1 + - uid: 3970 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-10.5 + parent: 1 + - uid: 3971 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-10.5 + parent: 1 + - uid: 3972 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-10.5 + parent: 1 + - uid: 3973 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-13.5 + parent: 1 + - uid: 3974 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-13.5 + parent: 1 + - uid: 3975 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-11.5 + parent: 1 + - uid: 3976 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-14.5 + parent: 1 + - uid: 3977 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-14.5 + parent: 1 + - uid: 3978 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-14.5 + parent: 1 + - uid: 3979 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-14.5 + parent: 1 + - uid: 3980 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-14.5 + parent: 1 + - uid: 3986 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-10.5 + parent: 1 + - uid: 3987 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-14.5 + parent: 1 + - uid: 3988 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-10.5 + parent: 1 + - uid: 4055 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,26.5 + parent: 1 + - uid: 4056 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,32.5 + parent: 1 + - uid: 4058 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,28.5 + parent: 1 + - uid: 4070 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,35.5 + parent: 1 + - uid: 4074 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,32.5 + parent: 1 + - uid: 4116 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,30.5 + parent: 1 + - uid: 4131 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,23.5 + parent: 1 + - uid: 4145 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-43.5 + parent: 1 + - uid: 4151 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-0.5 + parent: 1 + - uid: 4201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - uid: 4202 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-10.5 + parent: 1 + - uid: 4342 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,29.5 + parent: 1 + - uid: 4350 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-12.5 + parent: 1 + - uid: 4407 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-19.5 + parent: 1 + - uid: 4459 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,53.5 + parent: 1 + - uid: 4472 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-14.5 + parent: 1 + - uid: 4534 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-45.5 + parent: 1 + - uid: 5530 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,29.5 + parent: 1 + - uid: 5531 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-44.5 + parent: 1 + - uid: 5695 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,35.5 + parent: 1 + - uid: 5718 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 1 + - uid: 5803 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-11.5 + parent: 1 + - uid: 5956 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,29.5 + parent: 1 + - uid: 6094 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,35.5 + parent: 1 + - uid: 6095 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,30.5 + parent: 1 + - uid: 6098 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 1 + - uid: 6099 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,30.5 + parent: 1 + - uid: 6101 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,35.5 + parent: 1 + - uid: 6106 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,35.5 + parent: 1 + - uid: 6107 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 1 + - uid: 6108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 1 + - uid: 6343 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,56.5 + parent: 1 + - uid: 6350 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,68.5 + parent: 1 + - uid: 6351 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,68.5 + parent: 1 + - uid: 6352 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,70.5 + parent: 1 + - uid: 6353 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,68.5 + parent: 1 + - uid: 6354 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,68.5 + parent: 1 + - uid: 6356 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,68.5 + parent: 1 + - uid: 6357 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,69.5 + parent: 1 + - uid: 6358 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,68.5 + parent: 1 + - uid: 6496 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,-13.5 + parent: 1 + - uid: 6509 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,-6.5 + parent: 1 + - uid: 6512 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 52.5,-8.5 + parent: 1 + - uid: 6513 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 52.5,-13.5 + parent: 1 + - uid: 6528 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,4.5 + parent: 1 + - uid: 6549 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,4.5 + parent: 1 + - uid: 6555 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 1 + - uid: 6557 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 1 + - uid: 6558 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,2.5 + parent: 1 + - uid: 6780 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-28.5 + parent: 1 + - uid: 6781 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-27.5 + parent: 1 + - uid: 6790 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,69.5 + parent: 1 + - uid: 6858 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-27.5 + parent: 1 + - uid: 6859 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-29.5 + parent: 1 + - uid: 6903 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 1 + - uid: 6904 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,34.5 + parent: 1 + - uid: 6905 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,33.5 + parent: 1 + - uid: 6907 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,32.5 + parent: 1 + - uid: 7149 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,31.5 + parent: 1 + - uid: 7243 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,35.5 + parent: 1 + - uid: 7251 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,35.5 + parent: 1 + - uid: 7256 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,35.5 + parent: 1 + - uid: 7257 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,35.5 + parent: 1 + - uid: 7264 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,35.5 + parent: 1 + - uid: 7266 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,35.5 + parent: 1 + - uid: 7290 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-27.5 + parent: 1 + - uid: 7319 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-13.5 + parent: 1 + - uid: 7424 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-29.5 + parent: 1 + - uid: 7630 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-29.5 + parent: 1 + - uid: 7663 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-29.5 + parent: 1 + - uid: 7664 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-27.5 + parent: 1 + - uid: 7674 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-27.5 + parent: 1 + - uid: 7817 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,29.5 + parent: 1 + - uid: 7919 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,26.5 + parent: 1 + - uid: 7920 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,29.5 + parent: 1 + - uid: 7921 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,20.5 + parent: 1 + - uid: 18083 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 1 + - uid: 18439 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-18.5 + parent: 1 + - uid: 18471 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-11.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 8765 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 8756 + - uid: 8766 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 8756 + - uid: 8767 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 8756 + - uid: 8768 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 8756 + - uid: 8771 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 8756 + - uid: 8772 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 8756 + - uid: 8773 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 8756 + - uid: 8774 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 8756 + - uid: 8779 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 8756 + - uid: 8780 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 8756 + - uid: 8781 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 8756 + - uid: 8782 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 8756 + - uid: 8797 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 8756 + - uid: 8798 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 8756 + - uid: 8799 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 8756 + - uid: 8800 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 8756 + - uid: 8806 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 8756 + - uid: 8808 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 8756 + - uid: 8811 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 8756 + - uid: 8813 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 8756 +- proto: WallShuttleDiagonal + entities: + - uid: 8769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 8756 + - uid: 8770 + components: + - type: Transform + pos: -2.5,4.5 + parent: 8756 + - uid: 8803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 8756 + - uid: 8886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 8756 +- proto: WallSolid + entities: + - uid: 126 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,12.5 + parent: 1 + - uid: 128 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,12.5 + parent: 1 + - uid: 136 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 1 + - uid: 137 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 1 + - uid: 138 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-13.5 + parent: 1 + - uid: 142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-7.5 + parent: 1 + - uid: 143 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,16.5 + parent: 1 + - uid: 248 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-15.5 + parent: 1 + - uid: 254 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 261 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,9.5 + parent: 1 + - uid: 262 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,8.5 + parent: 1 + - uid: 263 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,8.5 + parent: 1 + - uid: 264 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,2.5 + parent: 1 + - uid: 265 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,8.5 + parent: 1 + - uid: 267 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,11.5 + parent: 1 + - uid: 268 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,8.5 + parent: 1 + - uid: 269 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,1.5 + parent: 1 + - uid: 273 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,11.5 + parent: 1 + - uid: 275 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-3.5 + parent: 1 + - uid: 277 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-3.5 + parent: 1 + - uid: 279 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-3.5 + parent: 1 + - uid: 397 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,69.5 + parent: 1 + - uid: 439 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,12.5 + parent: 1 + - uid: 440 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,9.5 + parent: 1 + - uid: 441 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,3.5 + parent: 1 + - uid: 442 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,12.5 + parent: 1 + - uid: 445 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,12.5 + parent: 1 + - uid: 446 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,3.5 + parent: 1 + - uid: 447 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,3.5 + parent: 1 + - uid: 449 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-3.5 + parent: 1 + - uid: 494 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 495 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,12.5 + parent: 1 + - uid: 496 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,7.5 + parent: 1 + - uid: 497 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,6.5 + parent: 1 + - uid: 498 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 499 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 500 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,9.5 + parent: 1 + - uid: 501 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 502 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 504 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 506 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 507 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,12.5 + parent: 1 + - uid: 508 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,12.5 + parent: 1 + - uid: 509 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 510 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 515 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 516 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 519 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 520 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,9.5 + parent: 1 + - uid: 523 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 531 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-6.5 + parent: 1 + - uid: 532 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-6.5 + parent: 1 + - uid: 533 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-6.5 + parent: 1 + - uid: 534 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-5.5 + parent: 1 + - uid: 535 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-4.5 + parent: 1 + - uid: 539 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 540 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,5.5 + parent: 1 + - uid: 543 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 544 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 547 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 551 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 552 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 558 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 559 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 560 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 568 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 572 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 574 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 575 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 576 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,4.5 + parent: 1 + - uid: 577 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,4.5 + parent: 1 + - uid: 578 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,3.5 + parent: 1 + - uid: 580 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,1.5 + parent: 1 + - uid: 581 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 582 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 583 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 584 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 585 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 586 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-0.5 + parent: 1 + - uid: 587 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 588 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 589 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 590 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,5.5 + parent: 1 + - uid: 592 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 593 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 594 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-5.5 + parent: 1 + - uid: 595 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 1 + - uid: 596 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-5.5 + parent: 1 + - uid: 597 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 598 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + - uid: 600 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 601 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 623 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,12.5 + parent: 1 + - uid: 624 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,12.5 + parent: 1 + - uid: 625 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 626 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,12.5 + parent: 1 + - uid: 627 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,11.5 + parent: 1 + - uid: 628 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 629 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 630 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,8.5 + parent: 1 + - uid: 631 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,7.5 + parent: 1 + - uid: 632 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 633 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 634 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,12.5 + parent: 1 + - uid: 635 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,12.5 + parent: 1 + - uid: 636 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,11.5 + parent: 1 + - uid: 637 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,10.5 + parent: 1 + - uid: 638 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,9.5 + parent: 1 + - uid: 639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-6.5 + parent: 1 + - uid: 640 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 642 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,5.5 + parent: 1 + - uid: 643 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,5.5 + parent: 1 + - uid: 644 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 645 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,5.5 + parent: 1 + - uid: 646 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,4.5 + parent: 1 + - uid: 647 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,3.5 + parent: 1 + - uid: 648 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,2.5 + parent: 1 + - uid: 649 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,1.5 + parent: 1 + - uid: 650 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,0.5 + parent: 1 + - uid: 651 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-0.5 + parent: 1 + - uid: 654 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - uid: 655 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-2.5 + parent: 1 + - uid: 656 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-3.5 + parent: 1 + - uid: 657 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-4.5 + parent: 1 + - uid: 658 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-6.5 + parent: 1 + - uid: 659 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-6.5 + parent: 1 + - uid: 660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-6.5 + parent: 1 + - uid: 662 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-6.5 + parent: 1 + - uid: 669 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,6.5 + parent: 1 + - uid: 670 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,6.5 + parent: 1 + - uid: 671 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,6.5 + parent: 1 + - uid: 672 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,6.5 + parent: 1 + - uid: 673 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,0.5 + parent: 1 + - uid: 674 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,1.5 + parent: 1 + - uid: 675 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,2.5 + parent: 1 + - uid: 676 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,3.5 + parent: 1 + - uid: 677 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 678 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,6.5 + parent: 1 + - uid: 679 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-6.5 + parent: 1 + - uid: 680 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-6.5 + parent: 1 + - uid: 681 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-6.5 + parent: 1 + - uid: 682 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-6.5 + parent: 1 + - uid: 683 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-6.5 + parent: 1 + - uid: 684 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-6.5 + parent: 1 + - uid: 685 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-6.5 + parent: 1 + - uid: 686 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-6.5 + parent: 1 + - uid: 687 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-6.5 + parent: 1 + - uid: 688 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-6.5 + parent: 1 + - uid: 689 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-5.5 + parent: 1 + - uid: 690 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-4.5 + parent: 1 + - uid: 691 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-3.5 + parent: 1 + - uid: 692 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-4.5 + parent: 1 + - uid: 693 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-4.5 + parent: 1 + - uid: 694 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-4.5 + parent: 1 + - uid: 695 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-4.5 + parent: 1 + - uid: 696 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,12.5 + parent: 1 + - uid: 697 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 698 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,12.5 + parent: 1 + - uid: 699 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,11.5 + parent: 1 + - uid: 700 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,12.5 + parent: 1 + - uid: 701 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,12.5 + parent: 1 + - uid: 702 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,12.5 + parent: 1 + - uid: 703 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,12.5 + parent: 1 + - uid: 704 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,12.5 + parent: 1 + - uid: 705 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,12.5 + parent: 1 + - uid: 706 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,12.5 + parent: 1 + - uid: 707 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,12.5 + parent: 1 + - uid: 708 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,12.5 + parent: 1 + - uid: 709 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,9.5 + parent: 1 + - uid: 710 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,12.5 + parent: 1 + - uid: 711 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,8.5 + parent: 1 + - uid: 712 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,7.5 + parent: 1 + - uid: 713 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,4.5 + parent: 1 + - uid: 714 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,4.5 + parent: 1 + - uid: 715 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,4.5 + parent: 1 + - uid: 716 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,4.5 + parent: 1 + - uid: 717 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-3.5 + parent: 1 + - uid: 718 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-2.5 + parent: 1 + - uid: 719 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-1.5 + parent: 1 + - uid: 720 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-0.5 + parent: 1 + - uid: 721 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,0.5 + parent: 1 + - uid: 722 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,3.5 + parent: 1 + - uid: 723 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,2.5 + parent: 1 + - uid: 724 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-2.5 + parent: 1 + - uid: 725 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-1.5 + parent: 1 + - uid: 726 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-0.5 + parent: 1 + - uid: 727 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,0.5 + parent: 1 + - uid: 728 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,2.5 + parent: 1 + - uid: 729 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,3.5 + parent: 1 + - uid: 730 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,11.5 + parent: 1 + - uid: 731 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,10.5 + parent: 1 + - uid: 732 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,9.5 + parent: 1 + - uid: 733 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,8.5 + parent: 1 + - uid: 734 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,4.5 + parent: 1 + - uid: 735 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,4.5 + parent: 1 + - uid: 736 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,0.5 + parent: 1 + - uid: 737 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,0.5 + parent: 1 + - uid: 738 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,0.5 + parent: 1 + - uid: 739 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,0.5 + parent: 1 + - uid: 740 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,2.5 + parent: 1 + - uid: 741 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,4.5 + parent: 1 + - uid: 742 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 743 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,3.5 + parent: 1 + - uid: 744 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,1.5 + parent: 1 + - uid: 745 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,4.5 + parent: 1 + - uid: 746 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,8.5 + parent: 1 + - uid: 747 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,8.5 + parent: 1 + - uid: 748 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,8.5 + parent: 1 + - uid: 752 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,10.5 + parent: 1 + - uid: 753 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 754 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,7.5 + parent: 1 + - uid: 755 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 756 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,6.5 + parent: 1 + - uid: 757 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-0.5 + parent: 1 + - uid: 758 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-4.5 + parent: 1 + - uid: 759 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-3.5 + parent: 1 + - uid: 760 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-1.5 + parent: 1 + - uid: 761 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-1.5 + parent: 1 + - uid: 762 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-1.5 + parent: 1 + - uid: 769 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-23.5 + parent: 1 + - uid: 782 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,9.5 + parent: 1 + - uid: 783 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,9.5 + parent: 1 + - uid: 796 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,16.5 + parent: 1 + - uid: 822 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,9.5 + parent: 1 + - uid: 846 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,39.5 + parent: 1 + - uid: 886 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,53.5 + parent: 1 + - uid: 1063 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,33.5 + parent: 1 + - uid: 1143 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,35.5 + parent: 1 + - uid: 1144 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,35.5 + parent: 1 + - uid: 1199 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,16.5 + parent: 1 + - uid: 1200 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,16.5 + parent: 1 + - uid: 1201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,16.5 + parent: 1 + - uid: 1202 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,16.5 + parent: 1 + - uid: 1203 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,22.5 + parent: 1 + - uid: 1204 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,22.5 + parent: 1 + - uid: 1205 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,21.5 + parent: 1 + - uid: 1206 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,20.5 + parent: 1 + - uid: 1207 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,19.5 + parent: 1 + - uid: 1208 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,18.5 + parent: 1 + - uid: 1209 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,17.5 + parent: 1 + - uid: 1210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,24.5 + parent: 1 + - uid: 1211 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,25.5 + parent: 1 + - uid: 1212 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,26.5 + parent: 1 + - uid: 1213 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,27.5 + parent: 1 + - uid: 1214 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,28.5 + parent: 1 + - uid: 1215 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,24.5 + parent: 1 + - uid: 1216 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,28.5 + parent: 1 + - uid: 1217 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,28.5 + parent: 1 + - uid: 1218 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,28.5 + parent: 1 + - uid: 1219 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,17.5 + parent: 1 + - uid: 1220 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,28.5 + parent: 1 + - uid: 1221 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,28.5 + parent: 1 + - uid: 1222 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,28.5 + parent: 1 + - uid: 1223 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,28.5 + parent: 1 + - uid: 1225 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,28.5 + parent: 1 + - uid: 1228 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,34.5 + parent: 1 + - uid: 1234 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 1235 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 1243 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,30.5 + parent: 1 + - uid: 1244 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,29.5 + parent: 1 + - uid: 1245 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,35.5 + parent: 1 + - uid: 1246 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,35.5 + parent: 1 + - uid: 1247 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,32.5 + parent: 1 + - uid: 1248 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,31.5 + parent: 1 + - uid: 1249 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,18.5 + parent: 1 + - uid: 1250 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,19.5 + parent: 1 + - uid: 1251 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,20.5 + parent: 1 + - uid: 1252 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,21.5 + parent: 1 + - uid: 1253 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,22.5 + parent: 1 + - uid: 1254 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,24.5 + parent: 1 + - uid: 1255 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,25.5 + parent: 1 + - uid: 1256 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,26.5 + parent: 1 + - uid: 1257 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,27.5 + parent: 1 + - uid: 1258 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,28.5 + parent: 1 + - uid: 1259 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,29.5 + parent: 1 + - uid: 1260 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,30.5 + parent: 1 + - uid: 1261 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,31.5 + parent: 1 + - uid: 1262 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,32.5 + parent: 1 + - uid: 1263 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,33.5 + parent: 1 + - uid: 1264 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,34.5 + parent: 1 + - uid: 1265 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,35.5 + parent: 1 + - uid: 1266 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,35.5 + parent: 1 + - uid: 1267 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,35.5 + parent: 1 + - uid: 1300 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,30.5 + parent: 1 + - uid: 1302 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,29.5 + parent: 1 + - uid: 1304 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,31.5 + parent: 1 + - uid: 1305 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,32.5 + parent: 1 + - uid: 1359 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,39.5 + parent: 1 + - uid: 1451 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,39.5 + parent: 1 + - uid: 1524 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,47.5 + parent: 1 + - uid: 1568 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,47.5 + parent: 1 + - uid: 1569 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,47.5 + parent: 1 + - uid: 1582 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,44.5 + parent: 1 + - uid: 1583 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,44.5 + parent: 1 + - uid: 1584 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,44.5 + parent: 1 + - uid: 1585 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,49.5 + parent: 1 + - uid: 1592 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,50.5 + parent: 1 + - uid: 1593 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,45.5 + parent: 1 + - uid: 1594 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,51.5 + parent: 1 + - uid: 1595 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,52.5 + parent: 1 + - uid: 1596 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,52.5 + parent: 1 + - uid: 1597 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,53.5 + parent: 1 + - uid: 1598 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,53.5 + parent: 1 + - uid: 1599 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,53.5 + parent: 1 + - uid: 1706 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,54.5 + parent: 1 + - uid: 1707 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,55.5 + parent: 1 + - uid: 1708 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,56.5 + parent: 1 + - uid: 1709 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,58.5 + parent: 1 + - uid: 1712 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,45.5 + parent: 1 + - uid: 1713 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,45.5 + parent: 1 + - uid: 1714 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,45.5 + parent: 1 + - uid: 1730 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,46.5 + parent: 1 + - uid: 1731 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,16.5 + parent: 1 + - uid: 1732 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,17.5 + parent: 1 + - uid: 1733 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,18.5 + parent: 1 + - uid: 1737 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,35.5 + parent: 1 + - uid: 1738 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,31.5 + parent: 1 + - uid: 1739 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,31.5 + parent: 1 + - uid: 1740 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,31.5 + parent: 1 + - uid: 1741 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,31.5 + parent: 1 + - uid: 1742 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,32.5 + parent: 1 + - uid: 1743 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,35.5 + parent: 1 + - uid: 1744 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,35.5 + parent: 1 + - uid: 1745 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,34.5 + parent: 1 + - uid: 1746 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,30.5 + parent: 1 + - uid: 1747 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,29.5 + parent: 1 + - uid: 1748 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,29.5 + parent: 1 + - uid: 1749 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,28.5 + parent: 1 + - uid: 1750 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,27.5 + parent: 1 + - uid: 1751 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,26.5 + parent: 1 + - uid: 1752 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,25.5 + parent: 1 + - uid: 1753 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,24.5 + parent: 1 + - uid: 1754 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,23.5 + parent: 1 + - uid: 1755 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,22.5 + parent: 1 + - uid: 1756 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,22.5 + parent: 1 + - uid: 1757 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,19.5 + parent: 1 + - uid: 1758 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,20.5 + parent: 1 + - uid: 1787 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,58.5 + parent: 1 + - uid: 1851 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,53.5 + parent: 1 + - uid: 1852 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,54.5 + parent: 1 + - uid: 1854 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,56.5 + parent: 1 + - uid: 1855 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,55.5 + parent: 1 + - uid: 1856 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,56.5 + parent: 1 + - uid: 1878 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,64.5 + parent: 1 + - uid: 1879 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,65.5 + parent: 1 + - uid: 1880 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,62.5 + parent: 1 + - uid: 1882 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,65.5 + parent: 1 + - uid: 1883 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,65.5 + parent: 1 + - uid: 1884 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,65.5 + parent: 1 + - uid: 1885 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,65.5 + parent: 1 + - uid: 1886 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,65.5 + parent: 1 + - uid: 1887 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,65.5 + parent: 1 + - uid: 1888 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,65.5 + parent: 1 + - uid: 1889 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,65.5 + parent: 1 + - uid: 1890 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,64.5 + parent: 1 + - uid: 1891 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,63.5 + parent: 1 + - uid: 1892 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,62.5 + parent: 1 + - uid: 1893 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,61.5 + parent: 1 + - uid: 1894 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,62.5 + parent: 1 + - uid: 1895 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,59.5 + parent: 1 + - uid: 1896 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,58.5 + parent: 1 + - uid: 1897 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,58.5 + parent: 1 + - uid: 1898 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,58.5 + parent: 1 + - uid: 1899 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,62.5 + parent: 1 + - uid: 1900 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,62.5 + parent: 1 + - uid: 1901 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,62.5 + parent: 1 + - uid: 1902 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,62.5 + parent: 1 + - uid: 1903 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,62.5 + parent: 1 + - uid: 1904 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,62.5 + parent: 1 + - uid: 1905 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,62.5 + parent: 1 + - uid: 1906 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,61.5 + parent: 1 + - uid: 1907 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,60.5 + parent: 1 + - uid: 1910 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,57.5 + parent: 1 + - uid: 1911 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,56.5 + parent: 1 + - uid: 1912 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,55.5 + parent: 1 + - uid: 1913 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,54.5 + parent: 1 + - uid: 1914 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,53.5 + parent: 1 + - uid: 1915 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,52.5 + parent: 1 + - uid: 1921 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,51.5 + parent: 1 + - uid: 1922 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,51.5 + parent: 1 + - uid: 1923 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,51.5 + parent: 1 + - uid: 1924 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,51.5 + parent: 1 + - uid: 1925 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,51.5 + parent: 1 + - uid: 1926 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,51.5 + parent: 1 + - uid: 2214 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-21.5 + parent: 1 + - uid: 2238 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,5.5 + parent: 1 + - uid: 2366 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-12.5 + parent: 1 + - uid: 2381 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-13.5 + parent: 1 + - uid: 2461 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,4.5 + parent: 1 + - uid: 2462 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,3.5 + parent: 1 + - uid: 2463 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 2464 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,1.5 + parent: 1 + - uid: 2465 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,1.5 + parent: 1 + - uid: 2466 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,1.5 + parent: 1 + - uid: 2467 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-5.5 + parent: 1 + - uid: 2468 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-6.5 + parent: 1 + - uid: 2469 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - uid: 2470 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 2471 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-6.5 + parent: 1 + - uid: 2475 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-6.5 + parent: 1 + - uid: 2476 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-6.5 + parent: 1 + - uid: 2477 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-6.5 + parent: 1 + - uid: 2480 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-4.5 + parent: 1 + - uid: 2481 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-3.5 + parent: 1 + - uid: 2482 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-2.5 + parent: 1 + - uid: 2483 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-2.5 + parent: 1 + - uid: 2484 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 2486 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-2.5 + parent: 1 + - uid: 2487 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-1.5 + parent: 1 + - uid: 2492 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-0.5 + parent: 1 + - uid: 2493 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-2.5 + parent: 1 + - uid: 2494 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-1.5 + parent: 1 + - uid: 2495 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-3.5 + parent: 1 + - uid: 2496 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-4.5 + parent: 1 + - uid: 2497 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-5.5 + parent: 1 + - uid: 2510 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,12.5 + parent: 1 + - uid: 2511 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 2513 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-6.5 + parent: 1 + - uid: 2515 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 2517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-2.5 + parent: 1 + - uid: 2519 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-0.5 + parent: 1 + - uid: 2521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,1.5 + parent: 1 + - uid: 2689 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-2.5 + parent: 1 + - uid: 2829 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,57.5 + parent: 1 + - uid: 2830 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,57.5 + parent: 1 + - uid: 2835 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,57.5 + parent: 1 + - uid: 2871 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-16.5 + parent: 1 + - uid: 2874 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,12.5 + parent: 1 + - uid: 2883 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,2.5 + parent: 1 + - uid: 2893 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,7.5 + parent: 1 + - uid: 2894 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,8.5 + parent: 1 + - uid: 2895 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,8.5 + parent: 1 + - uid: 2897 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,1.5 + parent: 1 + - uid: 2915 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-19.5 + parent: 1 + - uid: 2917 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-18.5 + parent: 1 + - uid: 2924 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-23.5 + parent: 1 + - uid: 2931 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-21.5 + parent: 1 + - uid: 2932 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-21.5 + parent: 1 + - uid: 3074 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-17.5 + parent: 1 + - uid: 3075 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-18.5 + parent: 1 + - uid: 3076 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-16.5 + parent: 1 + - uid: 3102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-12.5 + parent: 1 + - uid: 3103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-16.5 + parent: 1 + - uid: 3104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-16.5 + parent: 1 + - uid: 3105 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-17.5 + parent: 1 + - uid: 3133 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-12.5 + parent: 1 + - uid: 3134 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-21.5 + parent: 1 + - uid: 3135 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-21.5 + parent: 1 + - uid: 3141 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-22.5 + parent: 1 + - uid: 3142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-19.5 + parent: 1 + - uid: 3156 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-21.5 + parent: 1 + - uid: 3165 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-12.5 + parent: 1 + - uid: 3193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,51.5 + parent: 1 + - uid: 3195 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,39.5 + parent: 1 + - uid: 3196 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,39.5 + parent: 1 + - uid: 3197 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,40.5 + parent: 1 + - uid: 3198 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,40.5 + parent: 1 + - uid: 3199 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,39.5 + parent: 1 + - uid: 3200 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,39.5 + parent: 1 + - uid: 3201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,39.5 + parent: 1 + - uid: 3202 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,39.5 + parent: 1 + - uid: 3203 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,39.5 + parent: 1 + - uid: 3204 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,41.5 + parent: 1 + - uid: 3205 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,42.5 + parent: 1 + - uid: 3207 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,44.5 + parent: 1 + - uid: 3208 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,45.5 + parent: 1 + - uid: 3209 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,46.5 + parent: 1 + - uid: 3210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,47.5 + parent: 1 + - uid: 3211 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,41.5 + parent: 1 + - uid: 3212 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,42.5 + parent: 1 + - uid: 3213 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,42.5 + parent: 1 + - uid: 3214 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,42.5 + parent: 1 + - uid: 3215 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,43.5 + parent: 1 + - uid: 3216 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,44.5 + parent: 1 + - uid: 3217 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,45.5 + parent: 1 + - uid: 3218 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,46.5 + parent: 1 + - uid: 3219 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,47.5 + parent: 1 + - uid: 3220 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,48.5 + parent: 1 + - uid: 3221 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,49.5 + parent: 1 + - uid: 3222 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,50.5 + parent: 1 + - uid: 3223 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,50.5 + parent: 1 + - uid: 3224 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,50.5 + parent: 1 + - uid: 3225 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,50.5 + parent: 1 + - uid: 3226 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,50.5 + parent: 1 + - uid: 3227 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,50.5 + parent: 1 + - uid: 3229 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,49.5 + parent: 1 + - uid: 3233 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,39.5 + parent: 1 + - uid: 3234 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,46.5 + parent: 1 + - uid: 3235 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,44.5 + parent: 1 + - uid: 3236 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,43.5 + parent: 1 + - uid: 3237 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,42.5 + parent: 1 + - uid: 3238 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,42.5 + parent: 1 + - uid: 3239 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,42.5 + parent: 1 + - uid: 3243 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,46.5 + parent: 1 + - uid: 3244 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,46.5 + parent: 1 + - uid: 3245 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,47.5 + parent: 1 + - uid: 3246 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,48.5 + parent: 1 + - uid: 3247 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,49.5 + parent: 1 + - uid: 3248 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,50.5 + parent: 1 + - uid: 3250 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,53.5 + parent: 1 + - uid: 3251 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,56.5 + parent: 1 + - uid: 3252 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,55.5 + parent: 1 + - uid: 3253 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,54.5 + parent: 1 + - uid: 3257 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,53.5 + parent: 1 + - uid: 3258 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,53.5 + parent: 1 + - uid: 3259 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,53.5 + parent: 1 + - uid: 3260 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,53.5 + parent: 1 + - uid: 3261 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,51.5 + parent: 1 + - uid: 3265 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,54.5 + parent: 1 + - uid: 3266 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,52.5 + parent: 1 + - uid: 3267 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,53.5 + parent: 1 + - uid: 3268 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,54.5 + parent: 1 + - uid: 3269 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,55.5 + parent: 1 + - uid: 3270 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,55.5 + parent: 1 + - uid: 3271 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,55.5 + parent: 1 + - uid: 3272 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,55.5 + parent: 1 + - uid: 3273 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,55.5 + parent: 1 + - uid: 3285 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,52.5 + parent: 1 + - uid: 3286 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,41.5 + parent: 1 + - uid: 3288 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,39.5 + parent: 1 + - uid: 3289 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,39.5 + parent: 1 + - uid: 3290 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,40.5 + parent: 1 + - uid: 3291 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,41.5 + parent: 1 + - uid: 3292 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,42.5 + parent: 1 + - uid: 3293 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,43.5 + parent: 1 + - uid: 3294 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,44.5 + parent: 1 + - uid: 3295 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,44.5 + parent: 1 + - uid: 3296 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,44.5 + parent: 1 + - uid: 3297 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,44.5 + parent: 1 + - uid: 3298 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,44.5 + parent: 1 + - uid: 3299 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,44.5 + parent: 1 + - uid: 3300 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,44.5 + parent: 1 + - uid: 3301 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,44.5 + parent: 1 + - uid: 3302 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,44.5 + parent: 1 + - uid: 3303 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,43.5 + parent: 1 + - uid: 3304 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,42.5 + parent: 1 + - uid: 3305 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,41.5 + parent: 1 + - uid: 3306 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,40.5 + parent: 1 + - uid: 3307 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,39.5 + parent: 1 + - uid: 3308 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,39.5 + parent: 1 + - uid: 3309 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,40.5 + parent: 1 + - uid: 3310 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,39.5 + parent: 1 + - uid: 3311 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,39.5 + parent: 1 + - uid: 3312 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,39.5 + parent: 1 + - uid: 3313 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,39.5 + parent: 1 + - uid: 3314 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,40.5 + parent: 1 + - uid: 3315 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,41.5 + parent: 1 + - uid: 3316 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,39.5 + parent: 1 + - uid: 3317 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,39.5 + parent: 1 + - uid: 3318 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,39.5 + parent: 1 + - uid: 3362 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,39.5 + parent: 1 + - uid: 3363 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,39.5 + parent: 1 + - uid: 3364 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,39.5 + parent: 1 + - uid: 3365 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,39.5 + parent: 1 + - uid: 3366 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,40.5 + parent: 1 + - uid: 3368 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,39.5 + parent: 1 + - uid: 3369 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,42.5 + parent: 1 + - uid: 3370 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,43.5 + parent: 1 + - uid: 3371 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 1 + - uid: 3372 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,43.5 + parent: 1 + - uid: 3373 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 1 + - uid: 3374 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,44.5 + parent: 1 + - uid: 3375 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,45.5 + parent: 1 + - uid: 3376 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,46.5 + parent: 1 + - uid: 3377 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,47.5 + parent: 1 + - uid: 3378 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,47.5 + parent: 1 + - uid: 3379 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,47.5 + parent: 1 + - uid: 3380 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,47.5 + parent: 1 + - uid: 3381 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,46.5 + parent: 1 + - uid: 3382 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,47.5 + parent: 1 + - uid: 3383 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,48.5 + parent: 1 + - uid: 3384 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,48.5 + parent: 1 + - uid: 3385 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,48.5 + parent: 1 + - uid: 3386 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,48.5 + parent: 1 + - uid: 3387 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,49.5 + parent: 1 + - uid: 3388 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,51.5 + parent: 1 + - uid: 3389 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,51.5 + parent: 1 + - uid: 3390 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,51.5 + parent: 1 + - uid: 3391 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,51.5 + parent: 1 + - uid: 3392 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,51.5 + parent: 1 + - uid: 3394 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,51.5 + parent: 1 + - uid: 3395 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,52.5 + parent: 1 + - uid: 3396 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,53.5 + parent: 1 + - uid: 3397 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,54.5 + parent: 1 + - uid: 3398 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,55.5 + parent: 1 + - uid: 3399 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,55.5 + parent: 1 + - uid: 3400 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,55.5 + parent: 1 + - uid: 3401 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,55.5 + parent: 1 + - uid: 3402 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,55.5 + parent: 1 + - uid: 3403 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,54.5 + parent: 1 + - uid: 3404 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,53.5 + parent: 1 + - uid: 3421 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 3422 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 3423 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 3521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,48.5 + parent: 1 + - uid: 3522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,47.5 + parent: 1 + - uid: 3523 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,46.5 + parent: 1 + - uid: 3530 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,48.5 + parent: 1 + - uid: 3562 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-10.5 + parent: 1 + - uid: 3563 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-10.5 + parent: 1 + - uid: 3564 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-10.5 + parent: 1 + - uid: 3565 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-10.5 + parent: 1 + - uid: 3567 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-10.5 + parent: 1 + - uid: 3568 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-10.5 + parent: 1 + - uid: 3594 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-13.5 + parent: 1 + - uid: 3595 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-13.5 + parent: 1 + - uid: 3596 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-13.5 + parent: 1 + - uid: 3599 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-14.5 + parent: 1 + - uid: 3600 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,16.5 + parent: 1 + - uid: 3601 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,16.5 + parent: 1 + - uid: 3602 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,16.5 + parent: 1 + - uid: 3603 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 3629 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 3635 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 3636 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,16.5 + parent: 1 + - uid: 3637 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,17.5 + parent: 1 + - uid: 3639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,18.5 + parent: 1 + - uid: 3640 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,19.5 + parent: 1 + - uid: 3641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,20.5 + parent: 1 + - uid: 3642 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,21.5 + parent: 1 + - uid: 3643 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,21.5 + parent: 1 + - uid: 3644 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,21.5 + parent: 1 + - uid: 3661 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,24.5 + parent: 1 + - uid: 3701 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 3702 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,16.5 + parent: 1 + - uid: 3717 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,23.5 + parent: 1 + - uid: 3724 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,20.5 + parent: 1 + - uid: 3727 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 1 + - uid: 3728 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,23.5 + parent: 1 + - uid: 3812 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-20.5 + parent: 1 + - uid: 3813 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-21.5 + parent: 1 + - uid: 3814 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-21.5 + parent: 1 + - uid: 3818 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-18.5 + parent: 1 + - uid: 3819 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-17.5 + parent: 1 + - uid: 3820 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-17.5 + parent: 1 + - uid: 3821 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-17.5 + parent: 1 + - uid: 3822 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-17.5 + parent: 1 + - uid: 3823 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-17.5 + parent: 1 + - uid: 3824 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-18.5 + parent: 1 + - uid: 3825 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-31.5 + parent: 1 + - uid: 3826 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-31.5 + parent: 1 + - uid: 3827 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-31.5 + parent: 1 + - uid: 3921 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-12.5 + parent: 1 + - uid: 3922 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-11.5 + parent: 1 + - uid: 3923 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-15.5 + parent: 1 + - uid: 3924 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-11.5 + parent: 1 + - uid: 3925 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-10.5 + parent: 1 + - uid: 3926 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-10.5 + parent: 1 + - uid: 3927 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-10.5 + parent: 1 + - uid: 3928 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-10.5 + parent: 1 + - uid: 3929 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-10.5 + parent: 1 + - uid: 3930 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-9.5 + parent: 1 + - uid: 3931 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-10.5 + parent: 1 + - uid: 3932 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-15.5 + parent: 1 + - uid: 3933 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-15.5 + parent: 1 + - uid: 3939 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-13.5 + parent: 1 + - uid: 3940 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-13.5 + parent: 1 + - uid: 3941 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-14.5 + parent: 1 + - uid: 3942 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-13.5 + parent: 1 + - uid: 3943 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-13.5 + parent: 1 + - uid: 3945 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-9.5 + parent: 1 + - uid: 3946 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-8.5 + parent: 1 + - uid: 3952 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-20.5 + parent: 1 + - uid: 3953 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-19.5 + parent: 1 + - uid: 3954 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-19.5 + parent: 1 + - uid: 3955 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-18.5 + parent: 1 + - uid: 3956 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-17.5 + parent: 1 + - uid: 3957 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-19.5 + parent: 1 + - uid: 3958 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-19.5 + parent: 1 + - uid: 3960 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-20.5 + parent: 1 + - uid: 3961 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-22.5 + parent: 1 + - uid: 3962 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,19.5 + parent: 1 + - uid: 3963 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,29.5 + parent: 1 + - uid: 4010 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-1.5 + parent: 1 + - uid: 4011 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-1.5 + parent: 1 + - uid: 4013 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-1.5 + parent: 1 + - uid: 4022 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 4028 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 4029 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,6.5 + parent: 1 + - uid: 4030 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,5.5 + parent: 1 + - uid: 4087 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,17.5 + parent: 1 + - uid: 4088 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,18.5 + parent: 1 + - uid: 4089 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,19.5 + parent: 1 + - uid: 4090 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,20.5 + parent: 1 + - uid: 4091 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,21.5 + parent: 1 + - uid: 4092 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,22.5 + parent: 1 + - uid: 4093 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,23.5 + parent: 1 + - uid: 4094 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,23.5 + parent: 1 + - uid: 4095 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,23.5 + parent: 1 + - uid: 4096 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,23.5 + parent: 1 + - uid: 4097 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,23.5 + parent: 1 + - uid: 4098 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,23.5 + parent: 1 + - uid: 4099 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,24.5 + parent: 1 + - uid: 4100 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,24.5 + parent: 1 + - uid: 4102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,26.5 + parent: 1 + - uid: 4103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,27.5 + parent: 1 + - uid: 4104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,28.5 + parent: 1 + - uid: 4105 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,29.5 + parent: 1 + - uid: 4207 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,16.5 + parent: 1 + - uid: 4511 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-20.5 + parent: 1 + - uid: 4512 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-20.5 + parent: 1 + - uid: 4513 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-20.5 + parent: 1 + - uid: 4515 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-23.5 + parent: 1 + - uid: 4516 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-15.5 + parent: 1 + - uid: 4517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-15.5 + parent: 1 + - uid: 4518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-15.5 + parent: 1 + - uid: 4519 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-16.5 + parent: 1 + - uid: 4520 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-17.5 + parent: 1 + - uid: 4521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-18.5 + parent: 1 + - uid: 4522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-18.5 + parent: 1 + - uid: 4523 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-18.5 + parent: 1 + - uid: 4524 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-18.5 + parent: 1 + - uid: 4525 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-18.5 + parent: 1 + - uid: 4526 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-18.5 + parent: 1 + - uid: 4527 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-18.5 + parent: 1 + - uid: 4528 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-19.5 + parent: 1 + - uid: 4530 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-21.5 + parent: 1 + - uid: 4531 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-22.5 + parent: 1 + - uid: 4532 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-24.5 + parent: 1 + - uid: 4539 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-25.5 + parent: 1 + - uid: 4540 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-38.5 + parent: 1 + - uid: 4541 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-37.5 + parent: 1 + - uid: 4542 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-36.5 + parent: 1 + - uid: 4543 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-35.5 + parent: 1 + - uid: 4544 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-34.5 + parent: 1 + - uid: 4545 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-33.5 + parent: 1 + - uid: 4546 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-32.5 + parent: 1 + - uid: 4547 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-32.5 + parent: 1 + - uid: 4548 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-32.5 + parent: 1 + - uid: 4549 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-24.5 + parent: 1 + - uid: 4550 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-23.5 + parent: 1 + - uid: 4551 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-23.5 + parent: 1 + - uid: 4552 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-25.5 + parent: 1 + - uid: 4553 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-26.5 + parent: 1 + - uid: 4554 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-27.5 + parent: 1 + - uid: 4555 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-28.5 + parent: 1 + - uid: 4557 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-30.5 + parent: 1 + - uid: 4558 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-25.5 + parent: 1 + - uid: 4559 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-25.5 + parent: 1 + - uid: 4560 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-25.5 + parent: 1 + - uid: 4561 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-25.5 + parent: 1 + - uid: 4562 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-25.5 + parent: 1 + - uid: 4563 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-25.5 + parent: 1 + - uid: 4564 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-24.5 + parent: 1 + - uid: 4568 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-23.5 + parent: 1 + - uid: 5696 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,16.5 + parent: 1 + - uid: 5728 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,24.5 + parent: 1 + - uid: 5729 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,24.5 + parent: 1 + - uid: 5775 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 5804 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 1 + - uid: 5935 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,16.5 + parent: 1 + - uid: 5937 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,16.5 + parent: 1 + - uid: 6035 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,17.5 + parent: 1 + - uid: 6049 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-10.5 + parent: 1 + - uid: 6148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,47.5 + parent: 1 + - uid: 6149 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,49.5 + parent: 1 + - uid: 6333 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,45.5 + parent: 1 + - uid: 6349 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,68.5 + parent: 1 + - uid: 6360 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,68.5 + parent: 1 + - uid: 6413 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,11.5 + parent: 1 + - uid: 6414 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,10.5 + parent: 1 + - uid: 6415 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,9.5 + parent: 1 + - uid: 6416 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,8.5 + parent: 1 + - uid: 6471 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-21.5 + parent: 1 + - uid: 6472 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-20.5 + parent: 1 + - uid: 6501 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-22.5 + parent: 1 + - uid: 6508 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-21.5 + parent: 1 + - uid: 6628 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 6644 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 1 + - uid: 6645 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 1 + - uid: 6646 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 1 + - uid: 6647 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 1 + - uid: 6654 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 1 + - uid: 6655 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 1 + - uid: 6657 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 1 + - uid: 6856 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,48.5 + parent: 1 + - uid: 6857 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,51.5 + parent: 1 + - uid: 6860 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,46.5 + parent: 1 + - uid: 6924 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 6954 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,9.5 + parent: 1 + - uid: 6994 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-24.5 + parent: 1 + - uid: 6995 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-24.5 + parent: 1 + - uid: 7126 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - uid: 7275 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,62.5 + parent: 1 + - uid: 7651 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-23.5 + parent: 1 + - uid: 7660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-23.5 + parent: 1 + - uid: 7882 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,44.5 + parent: 1 + - uid: 7885 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,44.5 + parent: 1 + - uid: 8175 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 8341 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-38.5 + parent: 1 + - uid: 8427 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 8428 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-0.5 + parent: 1 + - uid: 8429 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-1.5 + parent: 1 + - uid: 8430 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 8431 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-1.5 + parent: 1 + - uid: 8432 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 8435 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 8468 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,59.5 + parent: 1 + - uid: 8496 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,2.5 + parent: 1 + - uid: 8506 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 8507 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 8513 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,2.5 + parent: 1 + - uid: 8521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,27.5 + parent: 1 + - uid: 8524 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,29.5 + parent: 1 + - uid: 8525 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,34.5 + parent: 1 + - uid: 8526 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,33.5 + parent: 1 + - uid: 8528 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,31.5 + parent: 1 + - uid: 8544 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,29.5 + parent: 1 + - uid: 8545 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,28.5 + parent: 1 + - uid: 8546 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,29.5 + parent: 1 + - uid: 8547 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,29.5 + parent: 1 + - uid: 8548 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,30.5 + parent: 1 + - uid: 8906 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 8907 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 9171 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1 + - uid: 9172 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,0.5 + parent: 1 + - uid: 9173 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 1 + - uid: 9598 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-37.5 + parent: 1 + - uid: 9601 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-31.5 + parent: 1 + - uid: 9602 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-32.5 + parent: 1 + - uid: 9603 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-33.5 + parent: 1 + - uid: 9892 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,64.5 + parent: 1 + - uid: 9989 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-17.5 + parent: 1 + - uid: 10102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-30.5 + parent: 1 + - uid: 10134 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-17.5 + parent: 1 + - uid: 13304 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,7.5 + parent: 1 + - uid: 13368 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,20.5 + parent: 1 + - uid: 13463 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,66.5 + parent: 1 + - uid: 14029 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,58.5 + parent: 1 + - uid: 14030 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,57.5 + parent: 1 +- proto: WallSolidRust + entities: + - uid: 4514 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-22.5 + parent: 1 + - uid: 6996 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-21.5 + parent: 1 + - uid: 6997 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-22.5 + parent: 1 +- proto: WallWood + entities: + - uid: 511 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 3171 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,49.5 + parent: 1 + - uid: 3172 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,50.5 + parent: 1 + - uid: 3173 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,47.5 + parent: 1 + - uid: 3174 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,48.5 + parent: 1 + - uid: 3176 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,50.5 + parent: 1 + - uid: 3179 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,51.5 + parent: 1 + - uid: 3181 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,46.5 + parent: 1 + - uid: 9426 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,45.5 + parent: 1 +- proto: WardrobeBlackFilled + entities: + - uid: 6081 + components: + - type: Transform + pos: 17.5,43.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobeBlueFilled + entities: + - uid: 6082 + components: + - type: Transform + pos: 18.5,43.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobeGreenFilled + entities: + - uid: 6083 + components: + - type: Transform + pos: 23.5,43.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobeMixedFilled + entities: + - uid: 6084 + components: + - type: Transform + pos: 22.5,43.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobePinkFilled + entities: + - uid: 8396 + components: + - type: Transform + pos: 17.5,47.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobePrisonFilled + entities: + - uid: 8221 + components: + - type: Transform + pos: -13.5,42.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8222 + components: + - type: Transform + pos: -10.5,42.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8223 + components: + - type: Transform + pos: -7.5,42.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8224 + components: + - type: Transform + pos: -4.5,42.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8262 + components: + - type: Transform + pos: -37.5,46.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8307 + components: + - type: Transform + pos: -37.5,42.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.4430928 + - 12.952587 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WarpPoint + entities: + - uid: 17618 + components: + - type: Transform + pos: -16.5,25.5 + parent: 1 + - type: WarpPoint + location: Science + - uid: 17624 + components: + - type: Transform + pos: 32.5,25.5 + parent: 1 + - type: WarpPoint + location: Evac + - uid: 17625 + components: + - type: Transform + pos: 31.5,46.5 + parent: 1 + - type: WarpPoint + location: Chapel + - uid: 17627 + components: + - type: Transform + pos: 4.5,46.5 + parent: 1 + - type: WarpPoint + location: Vault + - uid: 17629 + components: + - type: Transform + pos: 10.5,58.5 + parent: 1 + - type: WarpPoint + location: Courtroom + - uid: 18176 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 8756 + - type: WarpPoint + location: Captain's Private Shuttle +- proto: WarpPointBombing + entities: + - uid: 2345 + components: + - type: Transform + pos: 24.5,5.5 + parent: 1 + - type: WarpPoint + location: HoP Office + - uid: 5828 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 1 + - type: WarpPoint + location: Telecomms + - uid: 6362 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1 + - type: WarpPoint + location: Medbay + - uid: 6458 + components: + - type: Transform + pos: -39.5,25.5 + parent: 1 + - type: WarpPoint + location: Salvage + - uid: 6600 + components: + - type: Transform + pos: -38.5,2.5 + parent: 1 + - type: WarpPoint + location: Cargo + - uid: 6629 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: WarpPoint + location: Bar + - uid: 6636 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 1 + - type: WarpPoint + location: Atmospherics + - uid: 6637 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1 + - type: WarpPoint + location: Engineering + - uid: 6653 + components: + - type: Transform + pos: -13.5,49.5 + parent: 1 + - type: WarpPoint + location: Security + - uid: 6670 + components: + - type: Transform + pos: -0.5,79.5 + parent: 1 + - type: WarpPoint + location: Bridge +- proto: WaterCooler + entities: + - uid: 6948 + components: + - type: Transform + pos: 26.5,23.5 + parent: 1 + - uid: 8440 + components: + - type: Transform + pos: 6.5,57.5 + parent: 1 + - uid: 8488 + components: + - type: Transform + pos: 2.5,74.5 + parent: 1 + - uid: 8587 + components: + - type: Transform + pos: -7.5,21.5 + parent: 1 + - uid: 8718 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 1 + - uid: 9090 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 1 + - uid: 9628 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 1 +- proto: WaterTankFull + entities: + - uid: 4331 + components: + - type: Transform + pos: -30.5,49.5 + parent: 1 + - uid: 8703 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 1 + - uid: 9896 + components: + - type: Transform + pos: 38.5,41.5 + parent: 1 + - uid: 9900 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1 + - uid: 9901 + components: + - type: Transform + pos: 18.5,24.5 + parent: 1 + - uid: 9904 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 1 + - uid: 9908 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 1 + - uid: 13326 + components: + - type: Transform + pos: -21.5,2.5 + parent: 1 + - uid: 13375 + components: + - type: Transform + pos: -27.5,27.5 + parent: 1 + - uid: 13422 + components: + - type: Transform + pos: -25.5,55.5 + parent: 1 + - uid: 13457 + components: + - type: Transform + pos: -44.5,51.5 + parent: 1 + - uid: 13998 + components: + - type: Transform + pos: 16.5,61.5 + parent: 1 + - uid: 14010 + components: + - type: Transform + pos: 11.5,48.5 + parent: 1 +- proto: WaterTankHighCapacity + entities: + - uid: 7807 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 10114 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: WaterVaporCanister + entities: + - uid: 3049 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 6589 + components: + - type: Transform + pos: -11.5,33.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 6822 + components: + - type: Transform + pos: -15.5,58.5 + parent: 1 + - uid: 7395 + components: + - type: Transform + pos: -14.5,50.5 + parent: 1 + - uid: 7398 + components: + - type: Transform + pos: -16.5,50.5 + parent: 1 + - uid: 7901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,44.5 + parent: 1 + - uid: 8061 + components: + - type: Transform + pos: 3.5,79.5 + parent: 1 + - uid: 8138 + components: + - type: Transform + pos: -6.5,52.5 + parent: 1 + - uid: 8183 + components: + - type: Transform + pos: -13.5,56.5 + parent: 1 + - uid: 9285 + components: + - type: Transform + pos: 23.5,10.5 + parent: 1 + - uid: 9395 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 1 + - uid: 9420 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 1 +- proto: WeaponDisabler + entities: + - uid: 7396 + components: + - type: Transform + pos: -14.632251,50.815887 + parent: 1 +- proto: WeaponDisablerPractice + entities: + - uid: 8186 + components: + - type: Transform + pos: -10.325895,49.179844 + parent: 1 + - uid: 9284 + components: + - type: Transform + pos: 23.450686,10.918031 + parent: 1 +- proto: WeaponLaserCarbine + entities: + - uid: 1841 + components: + - type: Transform + pos: -4.5602546,61.57037 + parent: 1 + - uid: 7695 + components: + - type: Transform + pos: -4.4977546,61.38287 + parent: 1 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 8147 + components: + - type: Transform + pos: -10.327259,49.585735 + parent: 1 +- proto: WeaponRevolverDeckard + entities: + - uid: 17754 + components: + - type: Transform + pos: 15.523123,-26.506323 + parent: 1 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 6823 + components: + - type: Transform + pos: -16.502504,59.51904 + parent: 1 +- proto: WeaponWaterBlaster + entities: + - uid: 3021 + components: + - type: Transform + pos: -7.5149508,69.42698 + parent: 1 +- proto: WeaponWaterPistol + entities: + - uid: 7649 + components: + - type: Transform + pos: -23.508644,1.4423954 + parent: 1 +- proto: WelderIndustrial + entities: + - uid: 4700 + components: + - type: Transform + pos: -10.518035,34.54518 + parent: 1 +- proto: WelderIndustrialAdvanced + entities: + - uid: 8699 + components: + - type: Transform + pos: -13.470308,-33.594826 + parent: 1 +- proto: WeldingFuelTankFull + entities: + - uid: 8702 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 1 + - uid: 9895 + components: + - type: Transform + pos: 38.5,42.5 + parent: 1 + - uid: 9899 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 1 + - uid: 9902 + components: + - type: Transform + pos: 18.5,23.5 + parent: 1 + - uid: 9903 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 + - uid: 9905 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - uid: 9906 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 1 + - uid: 13325 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 + - uid: 13352 + components: + - type: Transform + pos: -35.5,30.5 + parent: 1 + - uid: 13374 + components: + - type: Transform + pos: -28.5,27.5 + parent: 1 + - uid: 13421 + components: + - type: Transform + pos: -25.5,54.5 + parent: 1 + - uid: 13456 + components: + - type: Transform + pos: -44.5,50.5 + parent: 1 + - uid: 13997 + components: + - type: Transform + pos: 16.5,62.5 + parent: 1 + - uid: 14009 + components: + - type: Transform + pos: 12.5,48.5 + parent: 1 +- proto: WetFloorSign + entities: + - uid: 9256 + components: + - type: Transform + pos: 16.624058,-5.188912 + parent: 1 + - uid: 9257 + components: + - type: Transform + pos: 16.769894,-5.480578 + parent: 1 + - uid: 9258 + components: + - type: Transform + pos: 19.594421,-7.376412 + parent: 1 +- proto: Windoor + entities: + - uid: 9163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,5.5 + parent: 1 +- proto: WindoorHydroponicsLocked + entities: + - uid: 557 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 9011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - uid: 9012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 4075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 6407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 6626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 +- proto: WindoorKitchenLocked + entities: + - uid: 7765 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 7822 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 8096 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 +- proto: WindoorSecure + entities: + - uid: 18336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,61.5 + parent: 1 + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,61.5 + parent: 1 + - uid: 7691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,63.5 + parent: 1 + - uid: 8196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,47.5 + parent: 1 + - uid: 8197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,47.5 + parent: 1 + - uid: 8198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,48.5 + parent: 1 + - uid: 8199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,49.5 + parent: 1 +- proto: WindoorSecureBrigLocked + entities: + - uid: 8127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,55.5 + parent: 1 + - uid: 8128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,55.5 + parent: 1 + - uid: 9508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,60.5 + parent: 1 +- proto: WindoorSecureCargoLocked + entities: + - uid: 9355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,6.5 + parent: 1 + - uid: 9356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,7.5 + parent: 1 + - uid: 9357 + components: + - type: Transform + pos: -35.5,12.5 + parent: 1 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 8537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 1 + - uid: 8538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 1 + - uid: 8539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,22.5 + parent: 1 + - uid: 8540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,23.5 + parent: 1 +- proto: WindoorSecureCommandLocked + entities: + - uid: 3784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 1 + - uid: 3803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-13.5 + parent: 1 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 8727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 1 + - uid: 8728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + - uid: 9193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 1 + - uid: 9194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 9277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 +- proto: WindoorSecureJanitorLocked + entities: + - uid: 4012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-6.5 + parent: 1 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,28.5 + parent: 1 + - uid: 3618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,20.5 + parent: 1 + - uid: 3634 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 3723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 1 + - uid: 9373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 1 + - uid: 9385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,33.5 + parent: 1 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 8500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,16.5 + parent: 1 + - uid: 9370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,16.5 + parent: 1 +- proto: WindoorSecureScienceLocked + entities: + - uid: 8603 + components: + - type: Transform + pos: -20.5,35.5 + parent: 1 + - uid: 8654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 1 + - uid: 8655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 8200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,53.5 + parent: 1 + - uid: 8201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,54.5 + parent: 1 + - uid: 9398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 1 + - uid: 9399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 1 + - uid: 9409 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 1 + - uid: 9410 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 1 + - uid: 9427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,41.5 + parent: 1 + - uid: 9428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,41.5 + parent: 1 +- proto: Window + entities: + - uid: 464 + components: + - type: Transform + pos: -36.5,4.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + pos: -45.5,39.5 + parent: 1 + - uid: 1716 + components: + - type: Transform + pos: -46.5,39.5 + parent: 1 + - uid: 1867 + components: + - type: Transform + pos: 3.5,57.5 + parent: 1 + - uid: 1868 + components: + - type: Transform + pos: 3.5,55.5 + parent: 1 + - uid: 1869 + components: + - type: Transform + pos: 3.5,54.5 + parent: 1 + - uid: 1870 + components: + - type: Transform + pos: 3.5,52.5 + parent: 1 + - uid: 1874 + components: + - type: Transform + pos: 1.5,59.5 + parent: 1 + - uid: 1875 + components: + - type: Transform + pos: 1.5,60.5 + parent: 1 + - uid: 1876 + components: + - type: Transform + pos: 1.5,61.5 + parent: 1 + - uid: 2858 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - uid: 2886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + - uid: 2887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,4.5 + parent: 1 + - uid: 3410 + components: + - type: Transform + pos: 28.5,0.5 + parent: 1 + - uid: 3411 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 1 + - uid: 3412 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 3413 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 + - uid: 3647 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 + - uid: 3648 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 3649 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 3992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-35.5 + parent: 1 + - uid: 4245 + components: + - type: Transform + pos: -35.5,8.5 + parent: 1 + - uid: 4246 + components: + - type: Transform + pos: -33.5,10.5 + parent: 1 + - uid: 4413 + components: + - type: Transform + pos: 29.5,39.5 + parent: 1 + - uid: 4414 + components: + - type: Transform + pos: 29.5,42.5 + parent: 1 + - uid: 4415 + components: + - type: Transform + pos: 32.5,42.5 + parent: 1 + - uid: 4432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,35.5 + parent: 1 + - uid: 4433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,35.5 + parent: 1 + - uid: 4434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,34.5 + parent: 1 + - uid: 4435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,29.5 + parent: 1 + - uid: 4468 + components: + - type: Transform + pos: 19.5,39.5 + parent: 1 + - uid: 4469 + components: + - type: Transform + pos: 20.5,39.5 + parent: 1 + - uid: 4470 + components: + - type: Transform + pos: 21.5,39.5 + parent: 1 + - uid: 5705 + components: + - type: Transform + pos: -47.5,39.5 + parent: 1 + - uid: 5738 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 5739 + components: + - type: Transform + pos: 22.5,16.5 + parent: 1 + - uid: 5740 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 + - uid: 5741 + components: + - type: Transform + pos: 27.5,16.5 + parent: 1 + - uid: 5742 + components: + - type: Transform + pos: 28.5,17.5 + parent: 1 + - uid: 5743 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1 + - uid: 5744 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1 + - uid: 5745 + components: + - type: Transform + pos: 28.5,23.5 + parent: 1 + - uid: 6582 + components: + - type: Transform + pos: 3.5,65.5 + parent: 1 + - uid: 6583 + components: + - type: Transform + pos: 4.5,65.5 + parent: 1 + - uid: 7884 + components: + - type: Transform + pos: -44.5,39.5 + parent: 1 + - uid: 8553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 1 + - uid: 8988 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 1 + - uid: 8992 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - uid: 8993 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 1 + - uid: 9015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - uid: 9599 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 1 + - uid: 14966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,39.5 + parent: 1 +- proto: WindowDirectional + entities: + - uid: 3621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,19.5 + parent: 1 + - uid: 3653 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 3660 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 6378 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 + - uid: 9161 + components: + - type: Transform + pos: -26.5,6.5 + parent: 1 + - uid: 9523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,38.5 + parent: 1 + - uid: 9524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,38.5 + parent: 1 + - uid: 9525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,38.5 + parent: 1 + - uid: 10066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 1 + - uid: 10093 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 1 + - uid: 11053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 1 + - uid: 13376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,27.5 + parent: 1 + - uid: 13377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,27.5 + parent: 1 + - uid: 13419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,61.5 + parent: 1 + - uid: 13420 + components: + - type: Transform + pos: -18.5,59.5 + parent: 1 + - uid: 14003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,64.5 + parent: 1 + - uid: 14016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,40.5 + parent: 1 + - uid: 14038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,56.5 + parent: 1 + - uid: 14039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,56.5 + parent: 1 +- proto: WindowFrostedDirectional + entities: + - uid: 1003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,31.5 + parent: 1 + - uid: 3393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,49.5 + parent: 1 + - uid: 4072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 1 + - uid: 4073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,32.5 + parent: 1 + - uid: 6406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,29.5 + parent: 1 + - uid: 6671 + components: + - type: Transform + pos: 3.5,32.5 + parent: 1 + - uid: 6672 + components: + - type: Transform + pos: 2.5,32.5 + parent: 1 + - uid: 6814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,69.5 + parent: 1 + - uid: 9366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,28.5 + parent: 1 + - uid: 9367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,28.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 1936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,57.5 + parent: 1 + - uid: 1937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,56.5 + parent: 1 + - uid: 8117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,55.5 + parent: 1 + - uid: 8118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,55.5 + parent: 1 + - uid: 8125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,55.5 + parent: 1 + - uid: 8126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,55.5 + parent: 1 + - uid: 8437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,61.5 + parent: 1 + - uid: 8503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,28.5 + parent: 1 + - uid: 8512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,29.5 + parent: 1 + - uid: 8642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,79.5 + parent: 1 + - uid: 9053 + components: + - type: Transform + pos: -3.5,85.5 + parent: 1 + - uid: 9054 + components: + - type: Transform + pos: -2.5,85.5 + parent: 1 + - uid: 9055 + components: + - type: Transform + pos: -1.5,85.5 + parent: 1 + - uid: 9056 + components: + - type: Transform + pos: 0.5,85.5 + parent: 1 + - uid: 9057 + components: + - type: Transform + pos: 1.5,85.5 + parent: 1 + - uid: 9058 + components: + - type: Transform + pos: 2.5,85.5 + parent: 1 + - uid: 9059 + components: + - type: Transform + pos: 4.5,84.5 + parent: 1 + - uid: 9060 + components: + - type: Transform + pos: 5.5,84.5 + parent: 1 + - uid: 9061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,82.5 + parent: 1 + - uid: 9062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,80.5 + parent: 1 + - uid: 9063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,79.5 + parent: 1 + - uid: 9064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,77.5 + parent: 1 + - uid: 9065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,76.5 + parent: 1 + - uid: 9066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,76.5 + parent: 1 + - uid: 9067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,77.5 + parent: 1 + - uid: 9068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,79.5 + parent: 1 + - uid: 9069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,80.5 + parent: 1 + - uid: 9070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,82.5 + parent: 1 + - uid: 9071 + components: + - type: Transform + pos: -6.5,84.5 + parent: 1 + - uid: 9072 + components: + - type: Transform + pos: -5.5,84.5 + parent: 1 + - uid: 9500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,80.5 + parent: 1 + - uid: 9506 + components: + - type: Transform + pos: 14.5,60.5 + parent: 1 + - uid: 9513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,55.5 + parent: 1 + - uid: 9514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,55.5 + parent: 1 + - uid: 9638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,80.5 + parent: 1 + - uid: 9639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,80.5 + parent: 1 + - uid: 9640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,79.5 + parent: 1 + - uid: 9641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,80.5 + parent: 1 + - uid: 9665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,80.5 + parent: 1 + - uid: 17891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-13.5 + parent: 1 + - uid: 18442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 1 + - uid: 18443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-13.5 + parent: 1 + - uid: 18444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-13.5 + parent: 1 + - uid: 18445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-13.5 + parent: 1 + - uid: 18448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-13.5 + parent: 1 +- proto: Wirecutter + entities: + - uid: 13445 + components: + - type: Transform + pos: -37.329777,54.494305 + parent: 1 +- proto: WoodDoor + entities: + - uid: 253 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,10.5 + parent: 1 + - uid: 2875 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,12.5 + parent: 1 + - uid: 3180 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,46.5 + parent: 1 + - uid: 3232 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,47.5 + parent: 1 +- proto: Wrench + entities: + - uid: 3444 + components: + - type: Transform + pos: -10.675615,34.54656 + parent: 1 + - uid: 7716 + components: + - type: Transform + pos: 12.513342,30.534658 + parent: 1 + - uid: 13886 + components: + - type: Transform + pos: 20.623508,52.47136 + parent: 1 +- proto: Zipties + entities: + - uid: 9422 + components: + - type: Transform + pos: 41.421097,42.74209 + parent: 1 + - uid: 9423 + components: + - type: Transform + pos: 41.671097,42.596256 + parent: 1 +- proto: ZiptiesBroken + entities: + - uid: 10113 + components: + - type: Transform + pos: 17.425484,-37.18814 + parent: 1 +... diff --git a/Resources/Maps/atlas.yml b/Resources/Maps/atlas.yml index bd7c1346ec4..d73c5c63bd3 100644 --- a/Resources/Maps/atlas.yml +++ b/Resources/Maps/atlas.yml @@ -121,11 +121,11 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAagAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAA + tiles: AAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAagAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAagAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAagAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,1: ind: -2,1 @@ -1698,6 +1698,31 @@ entities: id: WarnCornerGreyscaleSW decals: 806: 2,-13 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 900: -42,-16 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 901: -40,-16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 902: -42,-18 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 903: -40,-18 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 904: -42,-17 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -1752,6 +1777,7 @@ entities: decals: 819: -25,-22 820: -25,-21 + 905: -40,-17 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3113,13 +3139,6 @@ entities: joinedGrid: 30 - proto: Airlock entities: - - uid: 5547 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-14.5 - parent: 30 - uid: 5821 components: - type: MetaData @@ -3820,6 +3839,11 @@ entities: - type: Transform pos: -33.5,-10.5 parent: 30 + - uid: 7405 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 30 - proto: AirlockHeadOfPersonnelGlassLocked entities: - uid: 225 @@ -4782,11 +4806,6 @@ entities: - type: Transform pos: -8.5,-14.5 parent: 30 - - uid: 6052 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 30 - uid: 6070 components: - type: Transform @@ -4958,11 +4977,6 @@ entities: - type: Transform pos: -38.5,-10.5 parent: 30 - - uid: 7475 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 30 - proto: BikeHorn entities: - uid: 1602 @@ -5013,7 +5027,6 @@ entities: - type: DeviceLinkSink links: - 7519 - - 5803 - uid: 4651 components: - type: MetaData @@ -16425,11 +16438,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,12.5 parent: 30 - - uid: 1206 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 30 - uid: 1233 components: - type: Transform @@ -16448,11 +16456,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,12.5 parent: 30 - - uid: 1482 - components: - - type: Transform - pos: -41.5,-16.5 - parent: 30 - uid: 2218 components: - type: Transform @@ -16471,11 +16474,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-9.5 parent: 30 - - uid: 7607 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 30 - proto: CarpetOrange entities: - uid: 4076 @@ -18383,11 +18381,6 @@ entities: parent: 30 - proto: ClosetWallBlack entities: - - uid: 7476 - components: - - type: Transform - pos: -39.5,-14.5 - parent: 30 - uid: 7477 components: - type: Transform @@ -18966,11 +18959,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,15.5 parent: 30 - - uid: 7416 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 30 - uid: 7417 components: - type: Transform @@ -19624,6 +19612,36 @@ entities: parent: 30 - type: Physics canCollide: False +- proto: CryogenicSleepUnit + entities: + - uid: 5579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-15.5 + parent: 30 + - uid: 6395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-17.5 + parent: 30 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 1482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 30 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 5547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-17.5 + parent: 30 - proto: CryoPod entities: - uid: 2611 @@ -19681,6 +19699,13 @@ entities: canCollide: False - proto: DefaultStationBeacon entities: + - uid: 5552 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 30 + - type: NavMapBeacon + text: cryogenics - uid: 6039 components: - type: Transform @@ -22293,11 +22318,6 @@ entities: parent: 30 - proto: DresserFilled entities: - - uid: 5640 - components: - - type: Transform - pos: -41.5,-16.5 - parent: 30 - uid: 5642 components: - type: Transform @@ -35382,6 +35402,11 @@ entities: - type: Transform pos: -28.5,17.5 parent: 30 + - uid: 5640 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 30 - uid: 5720 components: - type: Transform @@ -35479,6 +35504,11 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,27.5 parent: 30 + - uid: 6008 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 30 - uid: 6023 components: - type: Transform @@ -35496,15 +35526,10 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,29.5 parent: 30 - - uid: 6124 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 30 - - uid: 6134 + - uid: 6142 components: - type: Transform - pos: -39.5,-17.5 + pos: -40.5,-18.5 parent: 30 - uid: 6167 components: @@ -35534,11 +35559,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-6.5 parent: 30 - - uid: 6190 - components: - - type: Transform - pos: -41.5,-17.5 - parent: 30 - uid: 6193 components: - type: Transform @@ -36775,11 +36795,6 @@ entities: - type: Transform pos: -25.709179,-1.1156881 parent: 30 - - uid: 7405 - components: - - type: Transform - pos: -40.6243,-16.405901 - parent: 30 - proto: LightReplacer entities: - uid: 3303 @@ -38144,6 +38159,13 @@ entities: - type: Transform pos: -0.5,27.5 parent: 30 +- proto: PosterLegitHelpOthers + entities: + - uid: 5638 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 30 - proto: PosterLegitHighClassMartini entities: - uid: 495 @@ -39433,17 +39455,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5552 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-16.5 - parent: 30 - - type: DeviceLinkSink - links: - - 5803 - uid: 5582 components: - type: MetaData @@ -40584,11 +40595,6 @@ entities: - type: Transform pos: -39.5,-9.5 parent: 30 - - uid: 7610 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 30 - uid: 7611 components: - type: Transform @@ -41946,11 +41952,6 @@ entities: - type: Transform pos: -37.5,10.5 parent: 30 - - uid: 6008 - components: - - type: Transform - pos: -41.5,-17.5 - parent: 30 - uid: 6010 components: - type: Transform @@ -41979,18 +41980,23 @@ entities: - uid: 6123 components: - type: Transform - pos: -39.5,-17.5 + pos: -39.5,-18.5 parent: 30 - - uid: 6142 + - uid: 6134 components: - type: Transform - pos: -40.5,-17.5 + pos: -41.5,-18.5 parent: 30 - uid: 6160 components: - type: Transform pos: -34.5,15.5 parent: 30 + - uid: 6190 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 30 - uid: 6218 components: - type: Transform @@ -42751,9 +42757,6 @@ entities: linkedPorts: 6283: - Pressed: Toggle - 5552: - - Pressed: Toggle - 4291: [] - uid: 6389 components: - type: Transform @@ -42768,12 +42771,6 @@ entities: - Pressed: Toggle 3931: - Pressed: Toggle - - uid: 6395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-16.5 - parent: 30 - uid: 6399 components: - type: Transform @@ -43045,6 +43042,14 @@ entities: rot: 3.141592653589793 rad pos: 20.501799,-13.273079 parent: 30 +- proto: SignDirectionalCryo + entities: + - uid: 6124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 30 - proto: SignDirectionalDorms entities: - uid: 4131 @@ -45998,11 +46003,6 @@ entities: - type: Transform pos: 23.5,-12.5 parent: 30 - - uid: 5638 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 30 - uid: 6444 components: - type: Transform @@ -50032,6 +50032,13 @@ entities: - type: Transform pos: -36.5,-6.5 parent: 30 + - uid: 6052 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-18.5 + parent: 30 - uid: 6057 components: - type: MetaData @@ -51170,6 +51177,13 @@ entities: - type: Transform pos: -4.5,13.5 parent: 30 + - uid: 1206 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-14.5 + parent: 30 - uid: 1252 components: - type: MetaData @@ -52753,13 +52767,6 @@ entities: - type: Transform pos: -21.5,8.5 parent: 30 - - uid: 5579 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,-14.5 - parent: 30 - uid: 5618 components: - type: MetaData diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index c6b2a5b1bea..284edeef17c 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -118,7 +118,7 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: eQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACbAAAAAADbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADJgAAAAAAWQAAAAACHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABHQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAASwAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABSwAAAAADSwAAAAAAWQAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAABWQAAAAAD + tiles: eQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACbAAAAAADbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABHQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAASwAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABSwAAAAADSwAAAAAAWQAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAABWQAAAAAD version: 6 -2,0: ind: -2,0 @@ -286,7 +286,7 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: ZAAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAZAAAAAADZAAAAAADZAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABdgAAAAADdgAAAAACdgAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAATAAAAAACWQAAAAACTAAAAAACWQAAAAABTAAAAAADWQAAAAAATAAAAAADWQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: ZAAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAZAAAAAADZAAAAAADZAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAALAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAALAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABdgAAAAADdgAAAAACdgAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAATAAAAAACWQAAAAACTAAAAAACWQAAAAABTAAAAAADWQAAAAAATAAAAAADWQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -4,1: ind: -4,1 @@ -294,7 +294,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAHgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAAAHgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAHgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAAAHgAAAAACHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAACHgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABdgAAAAACdgAAAAADeQAAAAAAHgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAACdgAAAAAAHgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADdgAAAAAAdgAAAAABeQAAAAAAHgAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAADHgAAAAAAHQAAAAADIQAAAAAAHQAAAAAAIQAAAAACeQAAAAAAWQAAAAABdgAAAAACdgAAAAADeQAAAAAAHgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABHgAAAAABeQAAAAAAIQAAAAADHQAAAAAAIQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADTAAAAAADWQAAAAAATAAAAAADWQAAAAAATAAAAAACWQAAAAADTAAAAAACWQAAAAABTAAAAAABWQAAAAADTAAAAAACWQAAAAAATAAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADeQAAAAAASwAAAAADSwAAAAAASwAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAHgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAAAHgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAHgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAAAHgAAAAACHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAACHgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAWQAAAAABLAAAAAAALAAAAAAAeQAAAAAAHgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAACdgAAAAAAHgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADLAAAAAAALAAAAAAAeQAAAAAAHgAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAADHgAAAAAAHQAAAAADIQAAAAAAHQAAAAAAIQAAAAACeQAAAAAAWQAAAAABLAAAAAAALAAAAAAAeQAAAAAAHgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABHgAAAAABeQAAAAAAIQAAAAADHQAAAAAAIQAAAAACeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADTAAAAAADWQAAAAAATAAAAAADWQAAAAAATAAAAAACWQAAAAADTAAAAAACWQAAAAABTAAAAAABWQAAAAADTAAAAAACWQAAAAAATAAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADeQAAAAAASwAAAAADSwAAAAAASwAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,2: ind: -2,2 @@ -603,7 +603,6 @@ entities: 807: 46,26 916: 44,26 1046: -4,-69 - 1071: -28,2 1072: -26,2 1227: -52,13 1228: -50,13 @@ -683,6 +682,7 @@ entities: 3496: 39,-13 3542: 45,-9 3675: -17,-54 + 3845: 2,27 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -721,6 +721,8 @@ entities: 3257: 6,-36 3352: -19,46 3748: 50,-11 + 3837: -25,-1 + 3838: -25,0 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -754,6 +756,13 @@ entities: id: BotRightGreyscale decals: 2077: -45,7 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 3840: -29,-1 + 3841: -29,0 + 3842: -29,1 - node: color: '#79150096' id: Box @@ -5508,6 +5517,26 @@ entities: id: WarnCornerGreyscaleNW decals: 1705: -31,-3 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 3835: -33,21 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 3832: -31,21 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 3836: -33,19 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 3831: -31,19 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -5535,6 +5564,7 @@ entities: 1055: -2,-78 1367: -2,36 3393: -19,42 + 3843: -29,-1 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5545,6 +5575,7 @@ entities: 2571: 40,-35 3382: -27,40 3392: -15,42 + 3839: -25,-1 - node: color: '#52B4E996' id: WarnFullGreyscale @@ -5619,6 +5650,7 @@ entities: 3204: 56,11 3391: -19,41 3443: 1,-13 + 3834: -33,20 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -5874,11 +5906,9 @@ entities: color: '#FFFFFFFF' id: WarnLineN decals: - 709: -25,-1 710: -26,-1 711: -27,-1 712: -28,-1 - 713: -29,-1 731: -31,36 743: -117,18 744: -118,18 @@ -5968,6 +5998,7 @@ entities: 3381: -27,39 3387: -15,41 3444: -1,-13 + 3833: -31,20 - node: color: '#DE3A3A96' id: WarnLineW @@ -10964,6 +10995,17 @@ entities: - type: Transform pos: 18.5,12.5 parent: 60 + - uid: 14444 + components: + - type: MetaData + flags: PvsPriority + name: Dorm Room 4 + - type: Transform + pos: -44.5,20.5 + parent: 60 + - type: DeviceLinkSink + links: + - 13899 - uid: 14521 components: - type: MetaData @@ -11008,28 +11050,6 @@ entities: - type: DeviceLinkSink links: - 20979 - - uid: 17461 - components: - - type: MetaData - flags: PvsPriority - name: Dorm Room 1 - - type: Transform - pos: -31.5,22.5 - parent: 60 - - type: DeviceLinkSink - links: - - 21026 - - uid: 17600 - components: - - type: MetaData - flags: PvsPriority - name: Dorm Room 4 - - type: Transform - pos: -44.5,20.5 - parent: 60 - - type: DeviceLinkSink - links: - - 8396 - uid: 19905 components: - type: MetaData @@ -11310,6 +11330,13 @@ entities: - type: Transform pos: -21.5,17.5 parent: 60 + - uid: 17650 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,18.5 + parent: 60 - proto: AirlockChemistryLocked entities: - uid: 8256 @@ -11449,34 +11476,6 @@ entities: - type: Transform pos: -60.5,17.5 parent: 60 - - uid: 21950 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -111.5,6.5 - parent: 60 - - uid: 22452 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -111.5,14.5 - parent: 60 - - uid: 22453 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -101.5,17.5 - parent: 60 - - uid: 22454 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -107.5,17.5 - parent: 60 - proto: AirlockDetectiveGlassLocked entities: - uid: 1593 @@ -12819,6 +12818,11 @@ entities: - type: Transform pos: 18.5,-18.5 parent: 60 + - uid: 13869 + components: + - type: Transform + pos: -31.5,22.5 + parent: 60 - uid: 14053 components: - type: MetaData @@ -12937,6 +12941,52 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-70.5 parent: 60 +- proto: AirlockHatch + entities: + - uid: 3341 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -111.5,6.5 + parent: 60 + - uid: 5803 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -111.5,14.5 + parent: 60 + - uid: 7645 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -101.5,17.5 + parent: 60 + - uid: 7705 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -107.5,17.5 + parent: 60 +- proto: AirlockHatchMaintenance + entities: + - uid: 9621 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -121.5,17.5 + parent: 60 + - uid: 11343 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -115.5,17.5 + parent: 60 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 36 @@ -13085,22 +13135,6 @@ entities: - type: Transform pos: 40.5,-33.5 parent: 60 -- proto: AirlockMaintCommandLocked - entities: - - uid: 22449 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -121.5,17.5 - parent: 60 - - uid: 22450 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -115.5,17.5 - parent: 60 - proto: AirlockMaintDetectiveLocked entities: - uid: 9989 @@ -13392,6 +13426,14 @@ entities: - type: Transform pos: -29.5,17.5 parent: 60 + - uid: 16534 + components: + - type: MetaData + flags: PvsPriority + name: Cryo + - type: Transform + pos: -31.5,18.5 + parent: 60 - uid: 17328 components: - type: MetaData @@ -13563,14 +13605,6 @@ entities: parent: 60 - proto: AirlockMedicalLocked entities: - - uid: 54 - components: - - type: MetaData - flags: PvsPriority - name: Brig Medical - - type: Transform - pos: -17.5,-4.5 - parent: 60 - uid: 103 components: - type: MetaData @@ -16014,6 +16048,16 @@ entities: - type: Transform pos: -19.5,18.5 parent: 60 + - uid: 16430 + components: + - type: Transform + pos: -45.5,19.5 + parent: 60 + - uid: 16550 + components: + - type: Transform + pos: -45.5,21.5 + parent: 60 - uid: 17450 components: - type: Transform @@ -16039,26 +16083,11 @@ entities: - type: Transform pos: -45.5,23.5 parent: 60 - - uid: 17456 - components: - - type: Transform - pos: -45.5,21.5 - parent: 60 - - uid: 17457 - components: - - type: Transform - pos: -45.5,19.5 - parent: 60 - uid: 17800 components: - type: Transform pos: -34.5,20.5 parent: 60 - - uid: 17807 - components: - - type: Transform - pos: -31.5,19.5 - parent: 60 - uid: 18505 components: - type: Transform @@ -16263,30 +16292,30 @@ entities: - type: Transform pos: 56.5,-45.5 parent: 60 - - uid: 17657 + - uid: 16428 components: - type: Transform - pos: -55.5,25.5 + pos: -45.5,19.5 parent: 60 - - uid: 17658 + - uid: 16531 components: - type: Transform - pos: -55.5,23.5 + pos: -45.5,21.5 parent: 60 - - uid: 17659 + - uid: 17657 components: - type: Transform - pos: -55.5,21.5 + pos: -55.5,25.5 parent: 60 - - uid: 17661 + - uid: 17658 components: - type: Transform - pos: -45.5,19.5 + pos: -55.5,23.5 parent: 60 - - uid: 17662 + - uid: 17659 components: - type: Transform - pos: -45.5,21.5 + pos: -55.5,21.5 parent: 60 - uid: 17663 components: @@ -16298,11 +16327,6 @@ entities: - type: Transform pos: -45.5,25.5 parent: 60 - - uid: 17809 - components: - - type: Transform - pos: -31.5,19.5 - parent: 60 - uid: 17810 components: - type: Transform @@ -16818,13 +16842,6 @@ entities: - type: Transform pos: -6.434569,15.495664 parent: 60 -- proto: BookBase - entities: - - uid: 17839 - components: - - type: Transform - pos: -30.487093,19.620901 - parent: 60 - proto: BookEscalation entities: - uid: 23696 @@ -16862,13 +16879,6 @@ entities: - type: Transform pos: -7.5,-14.5 parent: 60 - - uid: 17801 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,21.5 - parent: 60 - proto: BookshelfFilled entities: - uid: 653 @@ -16990,6 +17000,13 @@ entities: - type: Transform pos: -12.5,22.5 parent: 60 + - uid: 17652 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,19.5 + parent: 60 - proto: BoozeDispenser entities: - uid: 2253 @@ -17078,6 +17095,11 @@ entities: unspawnedCount: 12 - proto: BoxBodyBag entities: + - uid: 54 + components: + - type: Transform + pos: -19.561207,-5.30166 + parent: 60 - uid: 172 components: - type: Transform @@ -48483,26 +48505,6 @@ entities: - type: Transform pos: -23.5,16.5 parent: 60 - - uid: 17817 - components: - - type: Transform - pos: -32.5,19.5 - parent: 60 - - uid: 17818 - components: - - type: Transform - pos: -32.5,20.5 - parent: 60 - - uid: 17819 - components: - - type: Transform - pos: -31.5,20.5 - parent: 60 - - uid: 17820 - components: - - type: Transform - pos: -31.5,19.5 - parent: 60 - uid: 24171 components: - type: Transform @@ -49281,35 +49283,35 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-16.5 parent: 60 - - uid: 17649 + - uid: 14445 components: - type: Transform pos: -47.5,21.5 parent: 60 - - uid: 17650 + - uid: 14446 components: - type: Transform - pos: -47.5,20.5 + pos: -46.5,19.5 parent: 60 - - uid: 17651 + - uid: 14447 components: - type: Transform - pos: -47.5,19.5 + pos: -47.5,20.5 parent: 60 - - uid: 17652 + - uid: 16429 components: - type: Transform - pos: -46.5,21.5 + pos: -46.5,20.5 parent: 60 - - uid: 17653 + - uid: 16532 components: - type: Transform - pos: -46.5,20.5 + pos: -47.5,19.5 parent: 60 - - uid: 17654 + - uid: 17817 components: - type: Transform - pos: -46.5,19.5 + pos: -46.5,21.5 parent: 60 - uid: 21097 components: @@ -56185,11 +56187,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,-34.5 parent: 60 - - uid: 7622 - components: - - type: Transform - pos: -18.5,-2.5 - parent: 60 - uid: 7635 components: - type: Transform @@ -56332,6 +56329,11 @@ entities: - type: Transform pos: -35.5,20.5 parent: 60 + - uid: 17838 + components: + - type: Transform + pos: -46.5,20.5 + parent: 60 - uid: 18568 components: - type: Transform @@ -56503,6 +56505,12 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,3.5 parent: 60 + - uid: 11558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 60 - uid: 21697 components: - type: Transform @@ -57036,157 +57044,6 @@ entities: - type: Transform pos: -5.5,-25.5 parent: 60 -- proto: ClosetBase - entities: - - uid: 3502 - components: - - type: Transform - pos: 57.5,-32.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4007 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6448 - components: - - type: Transform - pos: 16.5,-48.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4711 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11484 - components: - - type: Transform - pos: -2.5,-31.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11485 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 17902 - components: - - type: Transform - pos: 4.5,-48.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetBombFilled entities: - uid: 5662 @@ -57249,6 +57106,11 @@ entities: parent: 60 - proto: ClosetEmergencyFilledRandom entities: + - uid: 2682 + components: + - type: Transform + pos: -29.5,26.5 + parent: 60 - uid: 3235 components: - type: Transform @@ -58161,6 +58023,11 @@ entities: - 0 - 0 - 0 + - uid: 2758 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 60 - proto: ClosetL3VirologyFilled entities: - uid: 2962 @@ -58687,6 +58554,157 @@ entities: - 0 - 0 - 0 +- proto: ClosetSteelBase + entities: + - uid: 3502 + components: + - type: Transform + pos: 57.5,-32.5 + parent: 60 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6495836 + - 6.2055764 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4007 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 60 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6495836 + - 6.2055764 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6448 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 60 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6495836 + - 6.2055764 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4711 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11484 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 60 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6495836 + - 6.2055764 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11485 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 60 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6495836 + - 6.2055764 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17902 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 60 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6495836 + - 6.2055764 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: ClosetTool entities: - uid: 4103 @@ -60029,10 +60047,10 @@ entities: parent: 60 - proto: ClothingOuterGhostSheet entities: - - uid: 2682 + - uid: 17270 components: - type: Transform - pos: -32.485622,21.433376 + pos: -47.44876,21.462833 parent: 60 - proto: ClothingOuterHoodieBlack entities: @@ -60422,11 +60440,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-40.5 parent: 60 - - uid: 3341 - components: - - type: Transform - pos: -32.5,21.5 - parent: 60 - uid: 4114 components: - type: Transform @@ -60561,12 +60574,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,19.5 parent: 60 - - uid: 17682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,20.5 - parent: 60 - uid: 18477 components: - type: Transform @@ -60771,6 +60778,12 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,1.5 parent: 60 + - uid: 1988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 60 - uid: 2024 components: - type: Transform @@ -61070,11 +61083,6 @@ entities: - type: Transform pos: -55.5,14.5 parent: 60 - - uid: 9621 - components: - - type: Transform - pos: -46.5,21.5 - parent: 60 - uid: 19120 components: - type: Transform @@ -61532,10 +61540,6 @@ entities: - type: Transform pos: -65.5,-19.5 parent: 60 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -61554,15 +61558,15 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - uid: 3600 components: - type: Transform pos: 15.5,-43.5 parent: 60 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -61581,15 +61585,15 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - uid: 6582 components: - type: Transform pos: 5.5,13.5 parent: 60 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -61608,15 +61612,15 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - uid: 17023 components: - type: Transform pos: -4.5,29.5 parent: 60 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -61635,6 +61639,10 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - proto: CrateEngineeringCableHV entities: - uid: 3440 @@ -61642,10 +61650,6 @@ entities: - type: Transform pos: 32.5,-52.5 parent: 60 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -61664,15 +61668,15 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - uid: 11479 components: - type: Transform pos: -11.5,-31.5 parent: 60 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -61691,15 +61695,15 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - uid: 20420 components: - type: Transform pos: 63.5,-39.5 parent: 60 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -61718,6 +61722,10 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - proto: CrateEngineeringCableLV entities: - uid: 2034 @@ -61725,10 +61733,6 @@ entities: - type: Transform pos: -32.5,-30.5 parent: 60 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -61747,6 +61751,10 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - proto: CrateEngineeringCableMV entities: - uid: 3756 @@ -61754,10 +61762,6 @@ entities: - type: Transform pos: 60.5,-30.5 parent: 60 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -61776,15 +61780,15 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - uid: 11680 components: - type: Transform pos: -4.5,-48.5 parent: 60 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -61803,15 +61807,15 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - uid: 19314 components: - type: Transform pos: 27.5,16.5 parent: 60 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -61830,6 +61834,10 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - proto: CrateEngineeringSecure entities: - uid: 3669 @@ -62240,6 +62248,34 @@ entities: - type: Transform pos: 12.4967985,-62.46449 parent: 60 +- proto: CryogenicSleepUnit + entities: + - uid: 13885 + components: + - type: Transform + pos: -30.5,19.5 + parent: 60 + - uid: 13893 + components: + - type: Transform + pos: -30.5,21.5 + parent: 60 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 11344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,19.5 + parent: 60 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 13857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,21.5 + parent: 60 - proto: CryoPod entities: - uid: 3031 @@ -62329,6 +62365,13 @@ entities: - type: Transform pos: -16.5,-29.5 parent: 60 +- proto: DefaultStationBeacon + entities: + - uid: 20983 + components: + - type: Transform + pos: 35.5,16.5 + parent: 60 - proto: DefaultStationBeaconAICore entities: - uid: 18703 @@ -62736,11 +62779,6 @@ entities: - type: Transform pos: 30.5,-18.5 parent: 60 - - uid: 4709 - components: - - type: Transform - pos: -18.5,-1.5 - parent: 60 - uid: 7666 components: - type: Transform @@ -62757,6 +62795,12 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-14.5 parent: 60 + - uid: 19450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 60 - uid: 21264 components: - type: Transform @@ -62828,11 +62872,6 @@ entities: - type: Transform pos: 33.5,-20.5 parent: 60 - - uid: 315 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 60 - uid: 430 components: - type: Transform @@ -63252,6 +63291,11 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,5.5 parent: 60 + - uid: 19449 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 60 - uid: 21354 components: - type: Transform @@ -63306,6 +63350,11 @@ entities: - type: Transform pos: 16.5,5.5 parent: 60 + - uid: 1182 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 60 - uid: 1277 components: - type: Transform @@ -66452,6 +66501,26 @@ entities: - type: Transform pos: -31.5,25.5 parent: 60 + - uid: 18697 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 60 + - uid: 18698 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 60 + - uid: 18785 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 60 + - uid: 18800 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 60 - uid: 18943 components: - type: Transform @@ -66733,6 +66802,16 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,24.5 parent: 60 + - uid: 19162 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 60 + - uid: 19446 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 60 - uid: 21355 components: - type: Transform @@ -67166,6 +67245,12 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,14.5 parent: 60 + - uid: 19447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-13.5 + parent: 60 - uid: 21353 components: - type: Transform @@ -68795,13 +68880,6 @@ entities: - type: Transform pos: -8.5,16.5 parent: 60 -- proto: filingCabinet - entities: - - uid: 5568 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 60 - proto: filingCabinetDrawerRandom entities: - uid: 4172 @@ -104393,6 +104471,16 @@ entities: - type: Transform pos: -48.5,25.5 parent: 60 + - uid: 17600 + components: + - type: Transform + pos: -30.5,22.5 + parent: 60 + - uid: 17649 + components: + - type: Transform + pos: -32.5,22.5 + parent: 60 - uid: 17930 components: - type: Transform @@ -107494,10 +107582,10 @@ entities: parent: 60 - proto: GunSafeRifleLecter entities: - - uid: 4109 + - uid: 2183 components: - type: Transform - pos: -27.5,2.5 + pos: -28.5,1.5 parent: 60 - proto: GunSafeShotgunKammerer entities: @@ -108557,6 +108645,11 @@ entities: - type: Transform pos: -36.53212,19.792776 parent: 60 + - uid: 18006 + components: + - type: Transform + pos: -47.508713,19.978458 + parent: 60 - uid: 18475 components: - type: Transform @@ -109640,6 +109733,11 @@ entities: - 0 - 0 - 0 + - uid: 10368 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 60 - proto: LockerSyndicatePersonal entities: - uid: 9113 @@ -109682,11 +109780,6 @@ entities: ent: null - proto: LockerWallMedicalFilled entities: - - uid: 2183 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 60 - uid: 4137 components: - type: Transform @@ -110255,6 +110348,11 @@ entities: parent: 60 - proto: MedkitFilled entities: + - uid: 5568 + components: + - type: Transform + pos: -19.576832,-4.61416 + parent: 60 - uid: 5914 components: - type: Transform @@ -110468,6 +110566,11 @@ entities: - 0 - 0 - 0 + - uid: 315 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 60 - uid: 319 components: - type: Transform @@ -110660,12 +110763,6 @@ entities: - 0 - 0 - 0 - - uid: 10368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-5.5 - parent: 60 - uid: 11882 components: - type: Transform @@ -111708,6 +111805,13 @@ entities: - type: Transform pos: 68.478806,-13.493814 parent: 60 +- proto: PartRodMetal10 + entities: + - uid: 19451 + components: + - type: Transform + pos: -59.47583,24.547897 + parent: 60 - proto: Pen entities: - uid: 935 @@ -112682,6 +112786,11 @@ entities: - type: Transform pos: 3.5,22.5 parent: 60 + - uid: 16535 + components: + - type: Transform + pos: -33.5,20.5 + parent: 60 - proto: PosterLegitHighClassMartini entities: - uid: 7794 @@ -115267,6 +115376,14 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,20.5 parent: 60 + - uid: 13847 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,20.5 + parent: 60 - uid: 13904 components: - type: MetaData @@ -115709,6 +115826,13 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 17651 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -111.5,26.5 + parent: 60 - uid: 17786 components: - type: MetaData @@ -116994,12 +117118,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,19.5 - parent: 60 - uid: 5863 components: - type: Transform @@ -117080,6 +117198,11 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8396 + components: + - type: Transform + pos: -46.5,21.5 + parent: 60 - uid: 8403 components: - type: Transform @@ -117384,13 +117507,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 17468 - components: - - type: Transform - pos: -46.5,21.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 17469 components: - type: Transform @@ -118971,6 +119087,11 @@ entities: - type: Transform pos: 18.5,-12.5 parent: 60 + - uid: 16551 + components: + - type: Transform + pos: -46.5,26.5 + parent: 60 - uid: 18003 components: - type: Transform @@ -118981,16 +119102,6 @@ entities: - type: Transform pos: -33.5,22.5 parent: 60 - - uid: 18006 - components: - - type: Transform - pos: -33.5,19.5 - parent: 60 - - uid: 18008 - components: - - type: Transform - pos: -45.5,22.5 - parent: 60 - uid: 18009 components: - type: Transform @@ -123277,11 +123388,21 @@ entities: - type: Transform pos: -52.5,25.5 parent: 60 + - uid: 17681 + components: + - type: Transform + pos: -32.5,22.5 + parent: 60 - uid: 17787 components: - type: Transform pos: -46.5,-4.5 parent: 60 + - uid: 17801 + components: + - type: Transform + pos: -30.5,22.5 + parent: 60 - uid: 17939 components: - type: Transform @@ -125833,18 +125954,6 @@ entities: - Pressed: Toggle 1022: - Pressed: Toggle - - uid: 8396 - components: - - type: MetaData - name: Door Lock - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,19.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 17600: - - Pressed: DoorBolt - uid: 11477 components: - type: Transform @@ -125932,6 +126041,18 @@ entities: - Pressed: Toggle 17379: - Pressed: Toggle + - uid: 13899 + components: + - type: MetaData + name: Door Lock + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,19.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 14444: + - Pressed: Toggle - uid: 14549 components: - type: Transform @@ -126122,17 +126243,6 @@ entities: linkedPorts: 17460: - Pressed: DoorBolt - - uid: 21026 - components: - - type: MetaData - name: Door Lock - - type: Transform - pos: -32.5,22.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 17461: - - Pressed: DoorBolt - uid: 21611 components: - type: MetaData @@ -126363,6 +126473,11 @@ entities: - type: Transform pos: -23.5,10.5 parent: 60 + - uid: 17271 + components: + - type: Transform + pos: -17.5,17.5 + parent: 60 - proto: SignChem entities: - uid: 2809 @@ -126521,6 +126636,12 @@ entities: rot: 1.5707963267948966 rad pos: 42.49971,-21.305145 parent: 60 + - uid: 16533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,22.5 + parent: 60 - proto: SignDirectionalDorms entities: - uid: 13771 @@ -127303,11 +127424,6 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 60 - - uid: 7918 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 60 - proto: SignMinerDock entities: - uid: 13251 @@ -127440,9 +127556,10 @@ entities: parent: 60 - proto: SignRedFour entities: - - uid: 7645 + - uid: 13856 components: - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,21.5 parent: 60 - uid: 24155 @@ -127452,11 +127569,6 @@ entities: parent: 60 - proto: SignRedOne entities: - - uid: 7705 - components: - - type: Transform - pos: -30.5,22.5 - parent: 60 - uid: 24152 components: - type: Transform @@ -130720,25 +130832,25 @@ entities: parent: 60 - proto: SpawnPointResearchAssistant entities: - - uid: 16428 + - uid: 17272 components: - type: Transform - pos: -44.5,-6.5 + pos: -45.5,-8.5 parent: 60 - - uid: 16429 + - uid: 17275 components: - type: Transform - pos: -44.5,-8.5 + pos: -45.5,-6.5 parent: 60 - - uid: 16430 + - uid: 17456 components: - type: Transform - pos: -45.5,-8.5 + pos: -55.5,10.5 parent: 60 - - uid: 16448 + - uid: 17457 components: - type: Transform - pos: -45.5,-6.5 + pos: -55.5,9.5 parent: 60 - proto: SpawnPointResearchDirector entities: @@ -130766,25 +130878,25 @@ entities: parent: 60 - proto: SpawnPointScientist entities: - - uid: 11343 + - uid: 11345 components: - type: Transform - pos: -55.5,9.5 + pos: -55.5,11.5 parent: 60 - - uid: 11344 + - uid: 11346 components: - type: Transform - pos: -55.5,10.5 + pos: -55.5,12.5 parent: 60 - - uid: 11345 + - uid: 17273 components: - type: Transform - pos: -55.5,11.5 + pos: -44.5,-6.5 parent: 60 - - uid: 11346 + - uid: 17274 components: - type: Transform - pos: -55.5,12.5 + pos: -44.5,-8.5 parent: 60 - proto: SpawnPointSecurityCadet entities: @@ -131652,6 +131764,11 @@ entities: - type: Transform pos: -8.5,36.5 parent: 60 + - uid: 19452 + components: + - type: Transform + pos: 2.5,27.5 + parent: 60 - proto: SuitStorageEVA entities: - uid: 1885 @@ -132264,6 +132381,28 @@ entities: - SurveillanceCameraGeneral nameSet: True id: North Evac Hall + - uid: 17461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,19.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cryosleep + - uid: 17468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,21.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm Room 4 - uid: 21086 components: - type: Transform @@ -132351,17 +132490,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Bagel Space - - uid: 24268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,19.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Room 1 - uid: 24269 components: - type: Transform @@ -132384,17 +132512,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Dorm Room 3 - - uid: 24271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,21.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Room 4 - uid: 24272 components: - type: Transform @@ -134519,6 +134636,21 @@ entities: - type: Transform pos: 16.5,-38.5 parent: 60 + - uid: 17818 + components: + - type: Transform + pos: -47.5,19.5 + parent: 60 + - uid: 17819 + components: + - type: Transform + pos: -46.5,19.5 + parent: 60 + - uid: 17820 + components: + - type: Transform + pos: -47.5,20.5 + parent: 60 - uid: 24415 components: - type: Transform @@ -134591,11 +134723,6 @@ entities: - type: Transform pos: 34.5,-9.5 parent: 60 - - uid: 11567 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 60 - uid: 12355 components: - type: Transform @@ -134722,11 +134849,6 @@ entities: - type: Transform pos: -24.5,2.5 parent: 60 - - uid: 1988 - components: - - type: Transform - pos: -28.5,2.5 - parent: 60 - uid: 2212 components: - type: Transform @@ -134932,6 +135054,11 @@ entities: - type: Transform pos: -112.5,13.5 parent: 60 + - uid: 7622 + components: + - type: Transform + pos: -27.5,2.5 + parent: 60 - uid: 8139 components: - type: Transform @@ -135110,6 +135237,11 @@ entities: - type: Transform pos: -18.5,32.5 parent: 60 + - uid: 18008 + components: + - type: Transform + pos: -28.5,2.5 + parent: 60 - uid: 18491 components: - type: Transform @@ -135156,11 +135288,6 @@ entities: - type: Transform pos: 37.5,17.5 parent: 60 - - uid: 21013 - components: - - type: Transform - pos: -28.5,1.5 - parent: 60 - uid: 23055 components: - type: Transform @@ -135293,6 +135420,11 @@ entities: parent: 60 - proto: TableReinforcedGlass entities: + - uid: 308 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 60 - uid: 2151 components: - type: Transform @@ -135323,6 +135455,11 @@ entities: - type: Transform pos: 37.5,-28.5 parent: 60 + - uid: 4109 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 60 - uid: 4128 components: - type: Transform @@ -135714,11 +135851,6 @@ entities: - type: Transform pos: -47.5,25.5 parent: 60 - - uid: 17680 - components: - - type: Transform - pos: -47.5,21.5 - parent: 60 - uid: 17802 components: - type: Transform @@ -135734,16 +135866,6 @@ entities: - type: Transform pos: -36.5,20.5 parent: 60 - - uid: 17805 - components: - - type: Transform - pos: -30.5,20.5 - parent: 60 - - uid: 17806 - components: - - type: Transform - pos: -30.5,19.5 - parent: 60 - uid: 17997 components: - type: Transform @@ -136480,15 +136602,10 @@ entities: - type: Transform pos: -63.5,2.5 parent: 60 - - uid: 17681 - components: - - type: Transform - pos: -47.5,21.5 - parent: 60 - - uid: 17838 + - uid: 17839 components: - type: Transform - pos: -30.5,20.5 + pos: -47.5,20.5 parent: 60 - uid: 24067 components: @@ -142164,6 +142281,13 @@ entities: - type: Transform pos: -6.5,-44.5 parent: 60 + - uid: 4709 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-4.5 + parent: 60 - uid: 4712 components: - type: MetaData @@ -148983,6 +149107,83 @@ entities: - type: Transform pos: -62.5,18.5 parent: 60 + - uid: 17653 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,22.5 + parent: 60 + - uid: 17654 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,18.5 + parent: 60 + - uid: 17661 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,18.5 + parent: 60 + - uid: 17662 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,19.5 + parent: 60 + - uid: 17676 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,20.5 + parent: 60 + - uid: 17680 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,21.5 + parent: 60 + - uid: 17682 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,18.5 + parent: 60 + - uid: 17805 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,18.5 + parent: 60 + - uid: 17806 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,19.5 + parent: 60 + - uid: 17807 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,20.5 + parent: 60 + - uid: 17809 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,21.5 + parent: 60 - uid: 17906 components: - type: MetaData @@ -156280,13 +156481,6 @@ entities: - type: Transform pos: -20.5,22.5 parent: 60 - - uid: 13847 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,18.5 - parent: 60 - uid: 13848 components: - type: MetaData @@ -156315,20 +156509,6 @@ entities: - type: Transform pos: -17.5,17.5 parent: 60 - - uid: 13856 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,22.5 - parent: 60 - - uid: 13857 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,22.5 - parent: 60 - uid: 13860 components: - type: MetaData @@ -156357,13 +156537,6 @@ entities: - type: Transform pos: -7.5,10.5 parent: 60 - - uid: 13869 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,22.5 - parent: 60 - uid: 13870 components: - type: MetaData @@ -156406,13 +156579,6 @@ entities: - type: Transform pos: -28.5,22.5 parent: 60 - - uid: 13885 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,18.5 - parent: 60 - uid: 13888 components: - type: MetaData @@ -156427,13 +156593,6 @@ entities: - type: Transform pos: -44.5,22.5 parent: 60 - - uid: 13893 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,19.5 - parent: 60 - uid: 13898 components: - type: MetaData @@ -156441,13 +156600,6 @@ entities: - type: Transform pos: -47.5,22.5 parent: 60 - - uid: 13899 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,21.5 - parent: 60 - uid: 13903 components: - type: MetaData @@ -156525,34 +156677,6 @@ entities: - type: Transform pos: 39.5,1.5 parent: 60 - - uid: 14444 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,18.5 - parent: 60 - - uid: 14445 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,19.5 - parent: 60 - - uid: 14446 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,20.5 - parent: 60 - - uid: 14447 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,21.5 - parent: 60 - uid: 14451 components: - type: MetaData @@ -156623,54 +156747,19 @@ entities: - type: Transform pos: 19.5,-39.5 parent: 60 - - uid: 17269 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,18.5 - parent: 60 - - uid: 17270 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,18.5 - parent: 60 - - uid: 17271 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,18.5 - parent: 60 - - uid: 17272 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,18.5 - parent: 60 - - uid: 17273 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,19.5 - parent: 60 - - uid: 17274 + - uid: 16448 components: - type: MetaData flags: PvsPriority - type: Transform - pos: -33.5,20.5 + pos: -44.5,19.5 parent: 60 - - uid: 17275 + - uid: 17269 components: - type: MetaData flags: PvsPriority - type: Transform - pos: -33.5,21.5 + pos: -44.5,21.5 parent: 60 - uid: 17276 components: @@ -158253,31 +158342,6 @@ entities: - 0 - 0 - 0 -- proto: WardrobeSecurityFilled - entities: - - uid: 308 - components: - - type: Transform - pos: -34.5,-19.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeVirology entities: - uid: 3073 @@ -158369,15 +158433,6 @@ entities: - type: Transform pos: -55.5,39.5 parent: 60 -- proto: WarpPoint - entities: - - uid: 2758 - components: - - type: Transform - pos: 37.5,14.5 - parent: 60 - - type: WarpPoint - location: newsroom - proto: WaterCooler entities: - uid: 592 @@ -158570,35 +158625,35 @@ entities: canCollide: False - proto: WeaponLaserCarbine entities: - - uid: 1182 - components: - - type: Transform - pos: -28.497345,1.4258263 - parent: 60 - - uid: 11558 + - uid: 7918 components: - type: Transform - pos: -28.497345,1.8789513 + pos: -27.662745,2.675323 parent: 60 - uid: 14627 components: - type: Transform - pos: -28.49841,2.1372187 + pos: -27.58462,2.597198 parent: 60 - uid: 14629 components: - type: Transform - pos: -28.49841,2.6528437 + pos: -28.318995,2.425323 parent: 60 - uid: 14630 components: - type: Transform - pos: -28.49841,2.4028437 + pos: -28.49087,2.690948 + parent: 60 + - uid: 16444 + components: + - type: Transform + pos: -28.39712,2.565948 parent: 60 - - uid: 21021 + - uid: 16445 components: - type: Transform - pos: -28.497345,1.6445763 + pos: -27.49087,2.440948 parent: 60 - proto: WeaponRifleAk entities: @@ -159051,22 +159106,20 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-9.5 parent: 60 - - uid: 12188 + - uid: 11567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 + pos: -27.5,2.5 parent: 60 - - uid: 20984 + - uid: 12188 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,1.5 + pos: -29.5,-9.5 parent: 60 - - uid: 20989 + - uid: 18693 components: - type: Transform - rot: 1.5707963267948966 rad pos: -28.5,2.5 parent: 60 - uid: 24115 @@ -159649,24 +159702,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-32.5 parent: 60 - - uid: 16444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,15.5 - parent: 60 - - uid: 16445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,15.5 - parent: 60 - - uid: 16447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,15.5 - parent: 60 - uid: 21347 components: - type: Transform @@ -159810,6 +159845,24 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,23.5 parent: 60 + - uid: 18544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,15.5 + parent: 60 + - uid: 18546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,15.5 + parent: 60 + - uid: 18683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,15.5 + parent: 60 - uid: 21618 components: - type: Transform @@ -160636,6 +160689,12 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,26.5 parent: 60 + - uid: 16447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,2.5 + parent: 60 - uid: 16996 components: - type: Transform @@ -160730,11 +160789,6 @@ entities: - type: Transform pos: -47.5,5.5 parent: 60 - - uid: 20983 - components: - - type: Transform - pos: -28.5,1.5 - parent: 60 - uid: 21144 components: - type: Transform diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 5c0654f7d74..8f6c52d329e 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -143,7 +143,7 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: eQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA + tiles: eQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA version: 6 1,1: ind: 1,1 @@ -151,7 +151,7 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: HQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABWQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACdgAAAAABdgAAAAABdgAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAALwAAAAAAHQAAAAAALwAAAAAA + tiles: HQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAALAAAAAAALAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABWQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACdgAAAAABdgAAAAABdgAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAALwAAAAAAHQAAAAAALwAAAAAA version: 6 0,2: ind: 0,2 @@ -509,17 +509,17 @@ entities: decals: 1162: -24,-18 1163: -24,-16 - 3039: 2,-67 - 3040: 2,-66 - 3116: 66,-52 - 3117: 66,-51 - 3348: -23,-25 - 3349: -25,-25 - 3553: 2,-64 - 3554: 2,-63 - 3555: 2,-62 - 3556: 2,-61 - 3557: 2,-60 + 3024: 2,-67 + 3025: 2,-66 + 3101: 66,-52 + 3102: 66,-51 + 3333: -23,-25 + 3334: -25,-25 + 3538: 2,-64 + 3539: 2,-63 + 3540: 2,-62 + 3541: 2,-61 + 3542: 2,-60 - node: color: '#FFFFFFFF' id: Arrows @@ -529,22 +529,22 @@ entities: 2626: 6,-49 2627: 7,-49 2665: 3,-45 - 2706: -6,-76 - 2771: 4,-76 - 3112: 80,-54 - 3113: 79,-54 - 3114: 74,-54 - 3115: 72,-54 + 2701: -6,-76 + 2766: 4,-76 + 3097: 80,-54 + 3098: 79,-54 + 3099: 74,-54 + 3100: 72,-54 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2695: 9,-75 - 3350: -25,-27 - 3351: -23,-27 - 3558: 8,-64 - 3559: 8,-63 + 2690: 9,-75 + 3335: -25,-27 + 3336: -23,-27 + 3543: 8,-64 + 3544: 8,-63 - node: color: '#FFFFFFFF' id: ArrowsGreyscale @@ -567,10 +567,10 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 3041: 1,-72 - 3042: 9,-68 - 3043: 9,-67 - 3044: 5,-66 + 3026: 1,-72 + 3027: 9,-68 + 3028: 9,-67 + 3029: 5,-66 - node: color: '#FFFFFFFF' id: Bot @@ -651,63 +651,66 @@ entities: 2529: 14,-43 2663: 6,-41 2664: 7,-41 - 2692: 5,-73 - 2693: 6,-73 - 2694: 7,-73 - 2939: -1,-63 - 2940: -1,-64 - 3037: 1,-67 - 3038: 1,-66 - 3106: 65,-52 - 3107: 65,-51 - 3108: 72,-55 - 3109: 74,-55 - 3110: 79,-55 - 3111: 80,-55 - 3119: 74,-44 - 3120: 73,-44 - 3174: 34,-47 - 3175: 34,-46 - 3176: 34,-50 - 3177: 34,-49 - 3178: 37,-50 - 3179: 37,-49 - 3180: 18,-84 - 3181: 14,-85 - 3182: 14,-86 - 3183: 14,-87 - 3231: 34,-44 - 3232: 35,-44 - 3233: 34,-39 - 3315: -35,-19 - 3316: -36,-19 - 3317: -37,-19 - 3318: -38,-19 - 3319: -37,-27 - 3320: -38,-27 - 3321: -39,-27 - 3322: -37,-25 - 3323: -38,-25 - 3324: -39,-25 - 3325: -37,-23 - 3326: -38,-23 - 3327: -39,-23 - 3337: -26,-32 - 3338: -27,-32 - 3339: -27,-34 - 3340: -27,-33 - 3341: -26,-33 - 3342: -26,-34 - 3343: -26,-35 - 3344: -27,-35 - 3545: 3,-55 - 3546: 1,-64 - 3547: 1,-63 - 3548: 1,-62 - 3549: 1,-61 - 3550: 1,-60 - 3551: 9,-64 - 3552: 9,-63 + 2687: 5,-73 + 2688: 6,-73 + 2689: 7,-73 + 2934: -1,-63 + 2935: -1,-64 + 3022: 1,-67 + 3023: 1,-66 + 3091: 65,-52 + 3092: 65,-51 + 3093: 72,-55 + 3094: 74,-55 + 3095: 79,-55 + 3096: 80,-55 + 3104: 74,-44 + 3105: 73,-44 + 3159: 34,-47 + 3160: 34,-46 + 3161: 34,-50 + 3162: 34,-49 + 3163: 37,-50 + 3164: 37,-49 + 3165: 18,-84 + 3166: 14,-85 + 3167: 14,-86 + 3168: 14,-87 + 3216: 34,-44 + 3217: 35,-44 + 3218: 34,-39 + 3300: -35,-19 + 3301: -36,-19 + 3302: -37,-19 + 3303: -38,-19 + 3304: -37,-27 + 3305: -38,-27 + 3306: -39,-27 + 3307: -37,-25 + 3308: -38,-25 + 3309: -39,-25 + 3310: -37,-23 + 3311: -38,-23 + 3312: -39,-23 + 3322: -26,-32 + 3323: -27,-32 + 3324: -27,-34 + 3325: -27,-33 + 3326: -26,-33 + 3327: -26,-34 + 3328: -26,-35 + 3329: -27,-35 + 3530: 3,-55 + 3531: 1,-64 + 3532: 1,-63 + 3533: 1,-62 + 3534: 1,-61 + 3535: 1,-60 + 3536: 9,-64 + 3537: 9,-63 + 3607: -10,31 + 3608: -7,31 + 3644: -10,29 - node: color: '#529CFF93' id: BotGreyscale @@ -727,18 +730,27 @@ entities: 1087: 0,-21 1103: -2,-14 1104: 0,-14 + 3674: -16,36 + 3675: -15,36 + 3676: -14,36 + 3677: -13,36 + 3678: -12,36 - node: color: '#FFFFFFFF' id: BotLeft decals: 1756: 55,-32 - 3196: 18,-71 - 3197: 17,-71 - 3198: 16,-71 - 3199: 15,-71 - 3334: -40,-28 - 3335: -39,-28 - 3336: -38,-28 + 3181: 18,-71 + 3182: 17,-71 + 3183: 16,-71 + 3184: 15,-71 + 3319: -40,-28 + 3320: -39,-28 + 3321: -38,-28 + 3699: -1,37 + 3700: 0,37 + 3701: 1,37 + 3702: 2,37 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -766,13 +778,18 @@ entities: 406: -24,-69 1080: 0,-22 1081: -2,-20 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 3643: -7,32 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: 2530: 14,-42 2531: 14,-41 - 3200: 15,-81 + 3185: 15,-81 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -784,42 +801,80 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 3061: 11,-35 + 3046: 11,-35 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 3697: -2,36 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 3698: 3,36 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 3696: -2,38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 3695: 3,38 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 3062: 11,-34 + 3047: 11,-34 + 3686: -2,37 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 3026: -6,-66 - 3027: -7,-66 - 3028: -8,-66 - 3054: 13,-36 - 3055: 11,-36 - 3058: 12,-36 - 3059: 10,-36 - 3060: 9,-36 + 3011: -6,-66 + 3012: -7,-66 + 3013: -8,-66 + 3039: 13,-36 + 3040: 11,-36 + 3043: 12,-36 + 3044: 10,-36 + 3045: 9,-36 + 3691: -1,36 + 3692: 0,36 + 3693: 1,36 + 3694: 2,36 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 3029: -8,-62 - 3030: -7,-62 - 3031: -6,-62 - 3032: -4,-62 - 3033: -3,-62 - 3034: -2,-62 - 3035: -1,-62 - 3052: 10,-35 - 3053: 9,-35 + 3014: -8,-62 + 3015: -7,-62 + 3016: -6,-62 + 3017: -4,-62 + 3018: -3,-62 + 3019: -2,-62 + 3020: -1,-62 + 3037: 10,-35 + 3038: 9,-35 + 3687: -1,38 + 3688: 0,38 + 3689: 1,38 + 3690: 2,38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 3635: -6,29 + 3636: -6,30 + 3637: -6,31 + 3638: -6,32 + 3685: 3,37 - node: color: '#9FED584D' id: BrickTileSteelCornerNe decals: - 3148: 35,-46 + 3133: 35,-46 - node: color: '#D381C996' id: BrickTileSteelCornerNe @@ -829,12 +884,12 @@ entities: color: '#EFB34196' id: BrickTileSteelCornerNe decals: - 3154: 35,-49 + 3139: 35,-49 - node: color: '#9FED584D' id: BrickTileSteelCornerNw decals: - 3149: 34,-46 + 3134: 34,-46 - node: color: '#D381C996' id: BrickTileSteelCornerNw @@ -845,37 +900,37 @@ entities: color: '#EFB34196' id: BrickTileSteelCornerNw decals: - 3155: 34,-49 + 3140: 34,-49 - node: color: '#52B4E996' id: BrickTileSteelCornerSe decals: - 3066: 19,-34 + 3051: 19,-34 - node: color: '#9FED584D' id: BrickTileSteelCornerSe decals: - 3150: 35,-47 + 3135: 35,-47 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: - 3153: 35,-50 + 3138: 35,-50 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 3065: 21,-34 + 3050: 21,-34 - node: color: '#9FED584D' id: BrickTileSteelCornerSw decals: - 3151: 34,-47 + 3136: 34,-47 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 3152: 34,-50 + 3137: 34,-50 - node: color: '#D381C996' id: BrickTileSteelInnerNe @@ -905,11 +960,11 @@ entities: color: '#52B4E996' id: BrickTileSteelLineE decals: - 3068: 19,-33 - 3156: 37,-50 - 3157: 37,-49 - 3158: 37,-47 - 3159: 37,-46 + 3053: 19,-33 + 3141: 37,-50 + 3142: 37,-49 + 3143: 37,-47 + 3144: 37,-46 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -966,8 +1021,8 @@ entities: color: '#52B4E996' id: BrickTileSteelLineS decals: - 3063: 22,-34 - 3064: 18,-34 + 3048: 22,-34 + 3049: 18,-34 - node: color: '#D381C996' id: BrickTileSteelLineS @@ -1011,7 +1066,7 @@ entities: color: '#52B4E996' id: BrickTileSteelLineW decals: - 3067: 21,-33 + 3052: 21,-33 - node: color: '#D381C996' id: BrickTileSteelLineW @@ -1025,8 +1080,8 @@ entities: decals: 2500: 34,-35 2508: 46,-54 - 3478: 45,-1 - 3479: 45,0 + 3463: 45,-1 + 3464: 45,0 - node: color: '#D4D4D428' id: BrickTileWhiteBox @@ -1044,7 +1099,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerNe decals: - 3138: 37,-40 + 3123: 37,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe @@ -1078,8 +1133,8 @@ entities: 1566: -4,9 2322: -12,-50 2643: 7,-41 - 2716: -10,-73 - 2941: 9,-66 + 2711: -10,-73 + 2936: 9,-66 - node: color: '#FFEBAE96' id: BrickTileWhiteCornerNe @@ -1096,7 +1151,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerNw decals: - 3139: 34,-40 + 3124: 34,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -1118,6 +1173,7 @@ entities: id: BrickTileWhiteCornerNw decals: 2325: -16,-57 + 3616: -15,27 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw @@ -1125,10 +1181,10 @@ entities: 1565: -7,9 2321: -13,-50 2642: 3,-41 - 2717: -18,-73 - 2947: 1,-66 - 2952: -4,-67 - 2953: -8,-68 + 2712: -18,-73 + 2942: 1,-66 + 2947: -4,-67 + 2948: -8,-68 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe @@ -1140,7 +1196,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerSe decals: - 3141: 37,-43 + 3126: 37,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe @@ -1162,8 +1218,8 @@ entities: decals: 2337: -6,-58 2650: 7,-45 - 2698: -5,-76 - 2731: -10,-77 + 2693: -5,-76 + 2726: -10,-77 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw @@ -1175,7 +1231,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerSw decals: - 3140: 34,-43 + 3125: 34,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw @@ -1191,6 +1247,11 @@ entities: id: BrickTileWhiteCornerSw decals: 2318: -16,-51 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 3617: -15,26 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw @@ -1198,8 +1259,8 @@ entities: 1568: -7,6 2335: -8,-58 2639: 3,-45 - 2697: -8,-76 - 2730: -18,-77 + 2692: -8,-76 + 2725: -18,-77 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe @@ -1210,11 +1271,16 @@ entities: id: BrickTileWhiteInnerNe decals: 1687: 19,-22 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 3629: -6,27 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 2976: -4,-68 + 2971: -4,-68 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe @@ -1246,8 +1312,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineE decals: - 3144: 37,-42 - 3145: 37,-41 + 3129: 37,-42 + 3130: 37,-41 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -1282,6 +1348,10 @@ entities: id: BrickTileWhiteLineE decals: 1601: -11,4 + 3621: -5,30 + 3622: -5,31 + 3623: -5,32 + 3628: -5,29 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1294,14 +1364,14 @@ entities: 2647: 7,-42 2648: 7,-43 2649: 7,-44 - 2699: -5,-73 - 2703: -5,-72 - 2725: -10,-74 - 2726: -10,-76 - 2964: 9,-70 - 2965: 9,-69 - 2966: 9,-68 - 2967: 9,-67 + 2694: -5,-73 + 2698: -5,-72 + 2720: -10,-74 + 2721: -10,-76 + 2959: 9,-70 + 2960: 9,-69 + 2961: 9,-68 + 2962: 9,-67 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -1323,8 +1393,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineN decals: - 3136: 36,-40 - 3137: 35,-40 + 3121: 36,-40 + 3122: 35,-40 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -1373,16 +1443,16 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1401: -10,36 - 1402: -9,36 - 1403: -12,36 - 1404: -13,36 - 1405: -14,36 - 1406: -15,36 - 1407: -16,36 - 1408: -8,36 - 1409: -7,36 - 1410: -5,36 + 3611: -7,27 + 3612: -10,27 + 3613: -11,27 + 3614: -13,27 + 3615: -14,27 + 3660: -12,36 + 3661: -13,36 + 3662: -14,36 + 3663: -15,36 + 3664: -16,36 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -1392,29 +1462,29 @@ entities: 2644: 6,-41 2645: 5,-41 2646: 4,-41 - 2686: 7,-73 - 2687: 6,-73 - 2688: 5,-73 - 2712: -20,-69 - 2713: -21,-69 - 2718: -17,-73 - 2719: -16,-73 - 2720: -15,-73 - 2721: -14,-73 - 2722: -13,-73 - 2723: -12,-73 - 2724: -11,-73 - 2942: 7,-66 - 2943: 6,-66 - 2944: 5,-66 - 2945: 4,-66 - 2946: 2,-66 - 2948: 0,-67 - 2949: -1,-67 - 2950: -2,-67 - 2951: -3,-67 - 2974: -6,-68 - 2975: -5,-68 + 2681: 7,-73 + 2682: 6,-73 + 2683: 5,-73 + 2707: -20,-69 + 2708: -21,-69 + 2713: -17,-73 + 2714: -16,-73 + 2715: -15,-73 + 2716: -14,-73 + 2717: -13,-73 + 2718: -12,-73 + 2719: -11,-73 + 2937: 7,-66 + 2938: 6,-66 + 2939: 5,-66 + 2940: 4,-66 + 2941: 2,-66 + 2943: 0,-67 + 2944: -1,-67 + 2945: -2,-67 + 2946: -3,-67 + 2969: -6,-68 + 2970: -5,-68 - node: color: '#FFEBAE96' id: BrickTileWhiteLineN @@ -1437,8 +1507,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineS decals: - 3142: 36,-43 - 3143: 35,-43 + 3127: 36,-43 + 3128: 35,-43 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -1476,14 +1546,6 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1415: -8,34 - 1416: -9,34 - 1417: -10,34 - 1418: -11,34 - 1419: -12,34 - 1420: -13,34 - 1421: -14,34 - 1422: -16,34 2150: -4,26 2151: 0,26 2152: -8,26 @@ -1496,6 +1558,10 @@ entities: 2159: 10,26 2160: 8,26 2161: 7,26 + 3665: -12,34 + 3666: -13,34 + 3667: -14,34 + 3669: -16,34 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -1508,30 +1574,30 @@ entities: 2651: 6,-45 2652: 5,-45 2653: 4,-45 - 2689: 8,-76 - 2690: 6,-76 - 2691: 7,-76 - 2704: -6,-76 - 2705: -7,-76 - 2714: -20,-71 - 2715: -21,-71 - 2732: -11,-77 - 2733: -12,-77 - 2734: -13,-77 - 2735: -14,-77 - 2736: -15,-77 - 2737: -16,-77 - 2738: -17,-77 - 2954: -4,-71 - 2955: -3,-71 - 2956: -2,-71 - 2957: -1,-71 - 2958: 0,-71 - 2959: 1,-71 - 2960: 2,-71 - 2961: 5,-71 - 2962: 6,-71 - 2963: 7,-71 + 2684: 8,-76 + 2685: 6,-76 + 2686: 7,-76 + 2699: -6,-76 + 2700: -7,-76 + 2709: -20,-71 + 2710: -21,-71 + 2727: -11,-77 + 2728: -12,-77 + 2729: -13,-77 + 2730: -14,-77 + 2731: -15,-77 + 2732: -16,-77 + 2733: -17,-77 + 2949: -4,-71 + 2950: -3,-71 + 2951: -2,-71 + 2952: -1,-71 + 2953: 0,-71 + 2954: 1,-71 + 2955: 2,-71 + 2956: 5,-71 + 2957: 6,-71 + 2958: 7,-71 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -1557,8 +1623,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineW decals: - 3146: 34,-42 - 3147: 34,-41 + 3131: 34,-42 + 3132: 34,-41 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -1579,6 +1645,15 @@ entities: id: BrickTileWhiteLineW decals: 1599: -13,1 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 3630: -6,28 + 3639: -6,29 + 3640: -6,30 + 3641: -6,31 + 3642: -6,32 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -1589,12 +1664,12 @@ entities: 2334: -8,-57 2640: 3,-44 2641: 3,-42 - 2700: -8,-74 - 2701: -8,-73 - 2702: -8,-72 - 2727: -18,-74 - 2728: -18,-75 - 2729: -18,-76 + 2695: -8,-74 + 2696: -8,-73 + 2697: -8,-72 + 2722: -18,-74 + 2723: -18,-75 + 2724: -18,-76 - node: color: '#FFFFFFFF' id: Bushb1 @@ -1658,7 +1733,7 @@ entities: decals: 1748: 66,-22 2506: 31,-34 - 2696: 9,-74 + 2691: 9,-74 - node: color: '#3B393B85' id: CheckerNESW @@ -1693,14 +1768,14 @@ entities: 1652: 44,-45 1653: 43,-45 1654: 42,-46 - 3223: 34,-44 - 3224: 35,-44 - 3225: 36,-44 - 3226: 37,-44 - 3227: 37,-39 - 3228: 36,-39 - 3229: 35,-39 - 3230: 34,-39 + 3208: 34,-44 + 3209: 35,-44 + 3210: 36,-44 + 3211: 37,-44 + 3212: 37,-39 + 3213: 36,-39 + 3214: 35,-39 + 3215: 34,-39 - node: color: '#92929B96' id: CheckerNESW @@ -1735,18 +1810,18 @@ entities: color: '#9FED5896' id: CheckerNESW decals: - 3466: 45,-1 - 3467: 45,0 - 3468: 46,-1 - 3469: 46,0 - 3470: 47,-1 - 3471: 47,0 - 3472: 48,-1 - 3473: 48,0 - 3474: 48,1 - 3475: 49,1 - 3476: 49,0 - 3477: 49,-1 + 3451: 45,-1 + 3452: 45,0 + 3453: 46,-1 + 3454: 46,0 + 3455: 47,-1 + 3456: 47,0 + 3457: 48,-1 + 3458: 48,0 + 3459: 48,1 + 3460: 49,1 + 3461: 49,0 + 3462: 49,-1 - node: color: '#D381C996' id: CheckerNESW @@ -1786,30 +1861,30 @@ entities: color: '#EFCC4163' id: CheckerNESW decals: - 2915: -1,-65 - 2916: -2,-65 - 2917: -2,-64 - 2918: -1,-64 - 2919: -1,-63 - 2920: -2,-63 - 2921: -4,-63 - 2922: -3,-63 - 2923: -3,-64 - 2924: -4,-64 - 2925: -5,-64 - 2926: -5,-63 - 2927: -3,-65 - 2928: -4,-65 - 2929: -5,-65 - 2930: -6,-65 - 2931: -8,-65 - 2932: -7,-65 - 2933: -6,-64 - 2934: -7,-64 - 2935: -8,-64 - 2936: -8,-63 - 2937: -7,-63 - 2938: -6,-63 + 2910: -1,-65 + 2911: -2,-65 + 2912: -2,-64 + 2913: -1,-64 + 2914: -1,-63 + 2915: -2,-63 + 2916: -4,-63 + 2917: -3,-63 + 2918: -3,-64 + 2919: -4,-64 + 2920: -5,-64 + 2921: -5,-63 + 2922: -3,-65 + 2923: -4,-65 + 2924: -5,-65 + 2925: -6,-65 + 2926: -8,-65 + 2927: -7,-65 + 2928: -6,-64 + 2929: -7,-64 + 2930: -8,-64 + 2931: -8,-63 + 2932: -7,-63 + 2933: -6,-63 - node: color: '#FFEBAE96' id: CheckerNESW @@ -1834,18 +1909,18 @@ entities: color: '#FFFFFFFF' id: CheckerNESW decals: - 3454: 45,-1 - 3455: 45,0 - 3456: 46,0 - 3457: 46,-1 - 3458: 47,-1 - 3459: 47,0 - 3460: 48,-1 - 3461: 48,0 - 3462: 49,-1 - 3463: 49,0 - 3464: 49,1 - 3465: 48,1 + 3439: 45,-1 + 3440: 45,0 + 3441: 46,0 + 3442: 46,-1 + 3443: 47,-1 + 3444: 47,0 + 3445: 48,-1 + 3446: 48,0 + 3447: 49,-1 + 3448: 49,0 + 3449: 49,1 + 3450: 48,1 - node: color: '#334E6DC8' id: CheckerNWSE @@ -1908,32 +1983,32 @@ entities: 1715: 49,-36 1716: 49,-35 1717: 49,-34 - 3073: 38,-30 - 3074: 38,-29 - 3075: 38,-28 - 3076: 38,-27 - 3077: 39,-27 - 3078: 40,-27 - 3079: 41,-27 - 3080: 41,-28 - 3081: 40,-28 - 3082: 39,-28 - 3083: 39,-29 - 3084: 39,-30 - 3085: 40,-30 - 3086: 40,-29 - 3087: 41,-29 - 3088: 41,-30 - 3164: 40,-49 - 3165: 40,-48 - 3166: 40,-47 - 3167: 40,-46 - 3168: 40,-45 - 3169: 40,-44 - 3170: 40,-43 - 3171: 40,-42 - 3172: 40,-41 - 3173: 40,-40 + 3058: 38,-30 + 3059: 38,-29 + 3060: 38,-28 + 3061: 38,-27 + 3062: 39,-27 + 3063: 40,-27 + 3064: 41,-27 + 3065: 41,-28 + 3066: 40,-28 + 3067: 39,-28 + 3068: 39,-29 + 3069: 39,-30 + 3070: 40,-30 + 3071: 40,-29 + 3072: 41,-29 + 3073: 41,-30 + 3149: 40,-49 + 3150: 40,-48 + 3151: 40,-47 + 3152: 40,-46 + 3153: 40,-45 + 3154: 40,-44 + 3155: 40,-43 + 3156: 40,-42 + 3157: 40,-41 + 3158: 40,-40 - node: color: '#9FED5896' id: CheckerNWSE @@ -1950,22 +2025,22 @@ entities: 768: 47,-59 769: 47,-60 770: 47,-61 - 3257: 3,-36 - 3258: 3,-35 - 3259: 4,-35 - 3260: 4,-36 - 3261: 5,-36 - 3262: 5,-35 - 3263: 6,-35 - 3264: 6,-36 + 3242: 3,-36 + 3243: 3,-35 + 3244: 4,-35 + 3245: 4,-36 + 3246: 5,-36 + 3247: 5,-35 + 3248: 6,-35 + 3249: 6,-36 - node: color: '#A4610696' id: CheckerNWSE decals: - 3275: -33,-31 - 3276: -33,-30 - 3277: -32,-30 - 3278: -32,-31 + 3260: -33,-31 + 3261: -33,-30 + 3262: -32,-30 + 3263: -32,-31 - node: color: '#D381C996' id: CheckerNWSE @@ -2091,48 +2166,48 @@ entities: 2673: -9,-70 2674: -9,-69 2675: -19,-70 - 2707: -9,-75 - 2708: -8,-72 - 2709: -7,-72 - 2710: -6,-72 - 2711: -5,-72 - 2759: 8,-72 - 2760: 9,-72 - 2761: 4,-72 - 2762: 3,-72 - 3036: -1,-62 - 3118: 67,-54 - 3121: 70,-44 - 3122: 78,-42 - 3123: 78,-40 - 3311: -38,-20 - 3312: -37,-20 - 3313: -36,-20 - 3314: -35,-20 - 3328: -40,-27 - 3329: -40,-25 - 3330: -40,-23 - 3331: -38,-31 - 3332: -39,-31 - 3333: -40,-31 - 3345: -26,-39 - 3346: -27,-39 - 3347: -28,-39 - 3480: 87,-6 - 3481: 87,-4 - 3482: 87,-12 - 3483: 87,-14 - 3484: 83,-14 - 3485: 83,-12 - 3486: 83,-6 - 3487: 83,-4 - 3491: 9,-32 - 3492: 9,-31 - 3493: 9,-30 - 3560: 3,-65 - 3561: 8,-65 - 3562: 8,-59 - 3563: 4,-59 + 2702: -9,-75 + 2703: -8,-72 + 2704: -7,-72 + 2705: -6,-72 + 2706: -5,-72 + 2754: 8,-72 + 2755: 9,-72 + 2756: 4,-72 + 2757: 3,-72 + 3021: -1,-62 + 3103: 67,-54 + 3106: 70,-44 + 3107: 78,-42 + 3108: 78,-40 + 3296: -38,-20 + 3297: -37,-20 + 3298: -36,-20 + 3299: -35,-20 + 3313: -40,-27 + 3314: -40,-25 + 3315: -40,-23 + 3316: -38,-31 + 3317: -39,-31 + 3318: -40,-31 + 3330: -26,-39 + 3331: -27,-39 + 3332: -28,-39 + 3465: 87,-6 + 3466: 87,-4 + 3467: 87,-12 + 3468: 87,-14 + 3469: 83,-14 + 3470: 83,-12 + 3471: 83,-6 + 3472: 83,-4 + 3476: 9,-32 + 3477: 9,-31 + 3478: 9,-30 + 3545: 3,-65 + 3546: 8,-65 + 3547: 8,-59 + 3548: 4,-59 - node: cleanable: True color: '#474F52FF' @@ -2204,16 +2279,16 @@ entities: color: '#FFFFFFFF' id: Dirt decals: - 3564: 3,-63 - 3565: 3,-62 - 3566: 4,-61 - 3567: 7,-61 - 3568: 8,-61 - 3569: 8,-60 - 3570: 8,-56 - 3571: 8,-55 - 3572: 6,-54 - 3573: 4,-53 + 3549: 3,-63 + 3550: 3,-62 + 3551: 4,-61 + 3552: 7,-61 + 3553: 8,-61 + 3554: 8,-60 + 3555: 8,-56 + 3556: 8,-55 + 3557: 6,-54 + 3558: 4,-53 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2225,38 +2300,38 @@ entities: id: DirtHeavy decals: 2599: -1,-55 - 2830: 5,-69 - 2831: 6,-69 - 2832: 0,-70 - 2989: -7,-71 - 2990: -8,-71 - 2991: -7,-72 - 2992: -7,-73 - 2993: -6,-73 - 2994: -1,-72 - 2995: 0,-72 - 3368: -32,-22 - 3369: -36,-22 - 3370: -38,-24 - 3371: -36,-26 - 3372: -36,-29 - 3403: -27,-38 - 3404: -28,-36 - 3405: -28,-35 - 3406: -28,-34 - 3407: -25,-33 - 3574: 3,-61 - 3575: 8,-62 - 3576: 8,-57 + 2825: 5,-69 + 2826: 6,-69 + 2827: 0,-70 + 2984: -7,-71 + 2985: -8,-71 + 2986: -7,-72 + 2987: -7,-73 + 2988: -6,-73 + 2989: -1,-72 + 2990: 0,-72 + 3353: -32,-22 + 3354: -36,-22 + 3355: -38,-24 + 3356: -36,-26 + 3357: -36,-29 + 3388: -27,-38 + 3389: -28,-36 + 3390: -28,-35 + 3391: -28,-34 + 3392: -25,-33 + 3559: 3,-61 + 3560: 8,-62 + 3561: 8,-57 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2996: 1,-72 - 2997: 1,-71 - 2998: 4,-71 - 2999: 3,-66 + 2991: 1,-72 + 2992: 1,-71 + 2993: 4,-71 + 2994: 3,-66 - node: cleanable: True color: '#474F52FF' @@ -2387,10 +2462,8 @@ entities: 1488: -16,43 1489: -14,43 1490: -11,41 - 1491: -11,36 1492: -6,35 1493: -8,35 - 1494: -9,36 1495: -6,39 1497: -10,49 1498: -7,51 @@ -2405,122 +2478,122 @@ entities: 2593: 0,-56 2594: 1,-57 2595: 2,-57 - 2800: 4,-68 - 2801: 8,-68 - 2802: 8,-73 - 2803: 8,-75 - 2804: 9,-73 - 2805: 11,-74 - 2806: 11,-73 - 2807: 4,-74 - 2808: 3,-73 - 2809: 1,-74 - 2810: 0,-74 - 2811: -1,-73 - 2812: -3,-75 - 2813: -4,-74 - 2814: -4,-75 - 2815: -5,-74 - 2816: -6,-73 - 2817: -5,-69 - 2818: -4,-68 - 2819: -10,-70 - 2820: -11,-69 - 2821: -13,-70 - 2822: -15,-70 - 2823: -17,-69 - 2824: -10,-75 - 2825: -11,-76 - 2826: -13,-77 - 2827: 0,-70 - 2828: 1,-69 - 2829: 7,-68 - 2840: 7,-70 - 2841: 0,-69 - 2842: -1,-69 - 2843: -2,-70 - 2844: -7,-69 - 2845: -6,-68 - 2846: -5,-68 - 2847: -4,-69 - 2848: -4,-70 - 3000: 2,-67 - 3001: 3,-67 - 3002: 2,-66 - 3003: 5,-67 - 3004: 5,-67 - 3005: 4,-67 - 3006: 9,-70 - 3007: 9,-71 - 3008: 8,-71 - 3009: -4,-71 - 3010: -6,-71 - 3011: -8,-70 - 3012: -8,-69 - 3013: -7,-70 - 3014: -10,-71 - 3015: -12,-71 - 3352: -40,-30 - 3353: -41,-31 - 3354: -38,-30 - 3355: -38,-31 - 3356: -36,-31 - 3357: -38,-28 - 3358: -41,-27 - 3359: -38,-25 - 3360: -36,-26 - 3361: -39,-24 - 3362: -37,-22 - 3363: -35,-21 - 3364: -33,-21 - 3365: -33,-21 - 3366: -31,-22 - 3367: -29,-23 - 3413: -26,-35 - 3414: -26,-35 - 3415: -25,-35 - 3416: -27,-35 - 3417: -26,-33 - 3418: -27,-33 - 3419: -27,-31 - 3420: -28,-31 - 3421: -28,-32 - 3422: -29,-32 - 3423: -31,-31 - 3424: -30,-31 - 3425: -35,-31 - 3426: -26,-29 - 3427: -25,-30 - 3428: -25,-28 - 3429: -26,-28 - 3430: -28,-28 - 3431: -28,-27 - 3432: -28,-26 - 3433: -26,-25 - 3434: -25,-27 - 3435: -25,-27 - 3436: -23,-27 - 3437: -22,-27 - 3438: -21,-25 - 3577: 8,-58 - 3578: 7,-57 - 3579: 8,-54 - 3580: 7,-54 - 3581: 4,-54 - 3582: 5,-53 - 3583: 3,-53 - 3584: 3,-64 - 3585: 2,-63 - 3586: 5,-61 - 3587: 6,-61 - 3588: 4,-60 - 3589: 8,-64 - 3590: 6,-57 - 3591: 5,-57 - 3592: 5,-57 - 3593: 3,-57 - 3594: 4,-58 - 3595: 4,-56 + 2795: 4,-68 + 2796: 8,-68 + 2797: 8,-73 + 2798: 8,-75 + 2799: 9,-73 + 2800: 11,-74 + 2801: 11,-73 + 2802: 4,-74 + 2803: 3,-73 + 2804: 1,-74 + 2805: 0,-74 + 2806: -1,-73 + 2807: -3,-75 + 2808: -4,-74 + 2809: -4,-75 + 2810: -5,-74 + 2811: -6,-73 + 2812: -5,-69 + 2813: -4,-68 + 2814: -10,-70 + 2815: -11,-69 + 2816: -13,-70 + 2817: -15,-70 + 2818: -17,-69 + 2819: -10,-75 + 2820: -11,-76 + 2821: -13,-77 + 2822: 0,-70 + 2823: 1,-69 + 2824: 7,-68 + 2835: 7,-70 + 2836: 0,-69 + 2837: -1,-69 + 2838: -2,-70 + 2839: -7,-69 + 2840: -6,-68 + 2841: -5,-68 + 2842: -4,-69 + 2843: -4,-70 + 2995: 2,-67 + 2996: 3,-67 + 2997: 2,-66 + 2998: 5,-67 + 2999: 5,-67 + 3000: 4,-67 + 3001: 9,-70 + 3002: 9,-71 + 3003: 8,-71 + 3004: -4,-71 + 3005: -6,-71 + 3006: -8,-70 + 3007: -8,-69 + 3008: -7,-70 + 3009: -10,-71 + 3010: -12,-71 + 3337: -40,-30 + 3338: -41,-31 + 3339: -38,-30 + 3340: -38,-31 + 3341: -36,-31 + 3342: -38,-28 + 3343: -41,-27 + 3344: -38,-25 + 3345: -36,-26 + 3346: -39,-24 + 3347: -37,-22 + 3348: -35,-21 + 3349: -33,-21 + 3350: -33,-21 + 3351: -31,-22 + 3352: -29,-23 + 3398: -26,-35 + 3399: -26,-35 + 3400: -25,-35 + 3401: -27,-35 + 3402: -26,-33 + 3403: -27,-33 + 3404: -27,-31 + 3405: -28,-31 + 3406: -28,-32 + 3407: -29,-32 + 3408: -31,-31 + 3409: -30,-31 + 3410: -35,-31 + 3411: -26,-29 + 3412: -25,-30 + 3413: -25,-28 + 3414: -26,-28 + 3415: -28,-28 + 3416: -28,-27 + 3417: -28,-26 + 3418: -26,-25 + 3419: -25,-27 + 3420: -25,-27 + 3421: -23,-27 + 3422: -22,-27 + 3423: -21,-25 + 3562: 8,-58 + 3563: 7,-57 + 3564: 8,-54 + 3565: 7,-54 + 3566: 4,-54 + 3567: 5,-53 + 3568: 3,-53 + 3569: 3,-64 + 3570: 2,-63 + 3571: 5,-61 + 3572: 6,-61 + 3573: 4,-60 + 3574: 8,-64 + 3575: 6,-57 + 3576: 5,-57 + 3577: 5,-57 + 3578: 3,-57 + 3579: 4,-58 + 3580: 4,-56 - node: cleanable: True zIndex: 1 @@ -2552,48 +2625,48 @@ entities: 2596: 0,-58 2597: -1,-58 2598: -1,-56 - 2833: -5,-70 - 2834: -6,-69 - 2835: -7,-68 - 2836: -1,-70 - 2837: 6,-70 - 2838: 6,-68 - 2839: 7,-69 - 3373: -37,-29 - 3374: -36,-28 - 3375: -36,-30 - 3376: -36,-27 - 3377: -37,-26 - 3378: -36,-25 - 3379: -36,-24 - 3380: -37,-24 - 3381: -36,-23 - 3382: -39,-22 - 3383: -41,-24 - 3384: -40,-24 - 3385: -41,-25 - 3386: -41,-26 - 3387: -32,-20 - 3388: -32,-19 - 3389: -34,-20 - 3390: -33,-20 - 3391: -28,-21 - 3392: -27,-23 - 3393: -26,-24 - 3394: -26,-26 - 3395: -27,-26 - 3396: -27,-27 - 3397: -27,-28 - 3398: -29,-37 - 3399: -29,-38 - 3400: -28,-38 - 3401: -26,-38 - 3402: -25,-36 - 3408: -28,-33 - 3409: -26,-36 - 3410: -27,-36 - 3411: -27,-33 - 3412: -28,-32 + 2828: -5,-70 + 2829: -6,-69 + 2830: -7,-68 + 2831: -1,-70 + 2832: 6,-70 + 2833: 6,-68 + 2834: 7,-69 + 3358: -37,-29 + 3359: -36,-28 + 3360: -36,-30 + 3361: -36,-27 + 3362: -37,-26 + 3363: -36,-25 + 3364: -36,-24 + 3365: -37,-24 + 3366: -36,-23 + 3367: -39,-22 + 3368: -41,-24 + 3369: -40,-24 + 3370: -41,-25 + 3371: -41,-26 + 3372: -32,-20 + 3373: -32,-19 + 3374: -34,-20 + 3375: -33,-20 + 3376: -28,-21 + 3377: -27,-23 + 3378: -26,-24 + 3379: -26,-26 + 3380: -27,-26 + 3381: -27,-27 + 3382: -27,-28 + 3383: -29,-37 + 3384: -29,-38 + 3385: -28,-38 + 3386: -26,-38 + 3387: -25,-36 + 3393: -28,-33 + 3394: -26,-36 + 3395: -27,-36 + 3396: -27,-33 + 3397: -28,-32 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -2635,22 +2708,22 @@ entities: color: '#52B4E937' id: FullTileOverlayGreyscale decals: - 3089: 42,-29 - 3090: 42,-28 - 3091: 43,-29 - 3092: 43,-28 - 3093: 44,-29 - 3094: 44,-28 - 3095: 45,-29 - 3096: 45,-28 - 3097: 46,-29 - 3098: 46,-28 - 3099: 45,-27 - 3100: 45,-26 - 3101: 45,-25 - 3102: 45,-24 - 3103: 44,-24 - 3104: 46,-24 + 3074: 42,-29 + 3075: 42,-28 + 3076: 43,-29 + 3077: 43,-28 + 3078: 44,-29 + 3079: 44,-28 + 3080: 45,-29 + 3081: 45,-28 + 3082: 46,-29 + 3083: 46,-28 + 3084: 45,-27 + 3085: 45,-26 + 3086: 45,-25 + 3087: 45,-24 + 3088: 44,-24 + 3089: 46,-24 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -2700,7 +2773,7 @@ entities: 1797: 57,-41 1798: 55,-41 1799: 53,-41 - 3256: 5,-33 + 3241: 5,-33 - node: color: '#DE3A3A2B' id: FullTileOverlayGreyscale @@ -2725,11 +2798,11 @@ entities: id: FullTileOverlayGreyscale decals: 2138: -2,25 - 2968: 1,-72 - 2969: 0,-72 - 2970: -1,-72 - 2971: -2,-72 - 2972: -3,-72 + 2963: 1,-72 + 2964: 0,-72 + 2965: -1,-72 + 2966: -2,-72 + 2967: -3,-72 - node: color: '#EFCF412B' id: FullTileOverlayGreyscale @@ -2782,20 +2855,20 @@ entities: id: Grassd1 decals: 1184: 46.57632,-52.483627 - 3446: 42,0 + 3431: 42,0 - node: color: '#FFFFFFFF' id: Grassd2 decals: 1183: 44.04507,-52.733627 - 3445: 44,0 + 3430: 44,0 - node: color: '#FFFFFFFF' id: Grassd3 decals: 515: -14.979541,-25.083757 1506: 2,48 - 3447: 43,0 + 3432: 43,0 - node: color: '#FFFFFFFF' id: Grasse1 @@ -2805,7 +2878,7 @@ entities: 1182: 43.29507,-52.358627 1505: 2,47 1507: -3,48 - 3443: 43,-1 + 3428: 43,-1 - node: color: '#FFFFFFFF' id: Grasse2 @@ -2817,7 +2890,7 @@ entities: 1502: 4,47 1503: -1,48 1519: -1,47 - 3444: 42,-1 + 3429: 42,-1 - node: color: '#FFFFFFFF' id: Grasse3 @@ -2827,7 +2900,7 @@ entities: 1384: 6.3967857,-23.96697 1501: 4,48 1504: -3,47 - 3442: 44,-1 + 3427: 44,-1 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -2856,10 +2929,10 @@ entities: 1632: 40,-23 2135: -4,28 2498: 34,-35 - 3069: 22,-35 - 3070: 21,-35 - 3071: 18,-35 - 3072: 19,-35 + 3054: 22,-35 + 3055: 21,-35 + 3056: 18,-35 + 3057: 19,-35 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale @@ -2890,8 +2963,8 @@ entities: 2388: 5,28 2389: 28,-24 2390: 69,-18 - 3271: -32,-29 - 3272: -33,-29 + 3256: -32,-29 + 3257: -33,-29 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -2910,10 +2983,10 @@ entities: 1778: 53,-40 1779: 52,-40 1780: 51,-40 - 3242: 6,-34 - 3243: 5,-34 - 3244: 4,-34 - 3245: 3,-34 + 3227: 6,-34 + 3228: 5,-34 + 3229: 4,-34 + 3230: 3,-34 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -2926,10 +2999,6 @@ entities: 16: 9,24 17: 8,24 18: 10,24 - 27: -15,27 - 29: -14,27 - 32: -10,27 - 33: -7,27 59: 17,35 60: 16,35 61: 12,35 @@ -2940,9 +3009,6 @@ entities: 195: -22,-30 196: -21,-30 197: -20,-30 - 337: -7,31 - 338: -8,31 - 339: -9,31 421: -61,5 422: -60,5 423: -59,5 @@ -2957,6 +3023,11 @@ entities: 1149: 61,-18 1150: 62,-18 2166: 14,32 + 3649: -5,36 + 3650: -7,36 + 3651: -8,36 + 3652: -9,36 + 3653: -10,36 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -3038,8 +3109,8 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 3273: -33,-32 - 3274: -32,-32 + 3258: -33,-32 + 3259: -32,-32 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -3065,11 +3136,11 @@ entities: 1789: 62,-42 1790: 63,-42 1791: 61,-42 - 3234: 5,-32 - 3248: 3,-37 - 3249: 4,-37 - 3250: 6,-37 - 3251: 5,-37 + 3219: 5,-32 + 3233: 3,-37 + 3234: 4,-37 + 3235: 6,-37 + 3236: 5,-37 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3099,15 +3170,16 @@ entities: 1024: 81,-4 2164: 14,34 2169: 14,31 + 3656: -10,34 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: 371: -2,23 - 2775: -2,-68 - 2776: -2,-69 - 2787: 2,-68 - 2788: 2,-70 + 2770: -2,-68 + 2771: -2,-69 + 2782: 2,-68 + 2783: 2,-70 - node: color: '#334E6D5A' id: HalfTileOverlayGreyscale270 @@ -3152,9 +3224,9 @@ entities: 2495: 35,-32 2496: 35,-33 2497: 35,-34 - 3161: 39,-49 - 3162: 39,-47 - 3163: 39,-46 + 3146: 39,-49 + 3147: 39,-47 + 3148: 39,-46 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -3184,7 +3256,7 @@ entities: 467: -42,-25 468: -42,-26 469: -42,-27 - 3265: -34,-30 + 3250: -34,-30 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -3193,21 +3265,15 @@ entities: 282: 65,-19 283: 65,-20 1801: 63,-41 - 3246: 2,-35 - 3247: 2,-36 + 3231: 2,-35 + 3232: 2,-36 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: 21: 8,23 - 26: -15,26 - 34: -6,28 - 35: -6,29 - 36: -6,32 56: 18,36 64: 11,34 - 341: -9,29 - 342: -9,30 426: -62,4 1019: 76,-3 1137: 57,-20 @@ -3217,6 +3283,7 @@ entities: 1466: -12,39 1467: -12,40 1468: -12,41 + 3657: -11,35 - node: color: '#EFB34131' id: HalfTileOverlayGreyscale270 @@ -3293,15 +3360,15 @@ entities: 1158: -20,-18 1159: -20,-19 1160: -20,-20 - 3266: -31,-30 - 3293: -36,-32 - 3294: -36,-30 - 3295: -36,-29 - 3296: -36,-28 - 3297: -36,-27 - 3298: -36,-26 - 3299: -36,-25 - 3300: -36,-24 + 3251: -31,-30 + 3278: -36,-32 + 3279: -36,-30 + 3280: -36,-29 + 3281: -36,-28 + 3282: -36,-27 + 3283: -36,-26 + 3284: -36,-25 + 3285: -36,-24 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -3313,16 +3380,12 @@ entities: 286: 63,-21 287: 63,-22 1800: 51,-41 - 3240: 7,-36 - 3241: 7,-35 + 3225: 7,-36 + 3226: 7,-35 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 0: -5,32 - 1: -5,31 - 2: -5,30 - 3: -5,29 22: 10,23 37: -13,24 38: -13,23 @@ -3350,17 +3413,17 @@ entities: 1092: 0,-27 2654: 4,-43 2655: 4,-42 - 2772: -3,-70 - 2773: -3,-69 - 2777: -1,-69 - 2778: -1,-70 - 2779: 0,-70 - 2780: 0,-69 - 2784: 1,-70 - 2785: 1,-69 - 2789: 3,-70 - 2790: 3,-69 - 2799: 5,-69 + 2767: -3,-70 + 2768: -3,-69 + 2772: -1,-69 + 2773: -1,-70 + 2774: 0,-70 + 2775: 0,-69 + 2779: 1,-70 + 2780: 1,-69 + 2784: 3,-70 + 2785: 3,-69 + 2794: 5,-69 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -3401,8 +3464,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale decals: - 3128: 36,-43 - 3129: 37,-42 + 3113: 36,-43 + 3114: 37,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -3571,37 +3634,37 @@ entities: 2253: -18,-6 2254: -18,-5 2255: -18,-4 - 2849: 19,12 - 2850: 19,13 - 2851: 19,14 - 2852: 19,15 - 2853: 20,15 - 2854: 21,15 - 2855: 22,15 - 2856: 23,15 - 2883: 8,17 - 2884: 8,16 - 2885: 8,15 - 2886: 8,14 - 2887: 8,13 - 2888: 8,12 - 2889: 8,10 - 2890: 8,11 - 2891: 8,9 - 2892: 8,8 - 2893: 8,7 - 2894: 8,6 - 2895: 8,5 - 2896: 8,4 - 2897: 8,3 - 3201: -47,-9 - 3202: -47,-8 - 3203: -47,-7 - 3204: -47,-6 - 3205: -46,-6 - 3206: -45,-6 - 3207: -44,-6 - 3208: -43,-6 + 2844: 19,12 + 2845: 19,13 + 2846: 19,14 + 2847: 19,15 + 2848: 20,15 + 2849: 21,15 + 2850: 22,15 + 2851: 23,15 + 2878: 8,17 + 2879: 8,16 + 2880: 8,15 + 2881: 8,14 + 2882: 8,13 + 2883: 8,12 + 2884: 8,10 + 2885: 8,11 + 2886: 8,9 + 2887: 8,8 + 2888: 8,7 + 2889: 8,6 + 2890: 8,5 + 2891: 8,4 + 2892: 8,3 + 3186: -47,-9 + 3187: -47,-8 + 3188: -47,-7 + 3189: -47,-6 + 3190: -46,-6 + 3191: -45,-6 + 3192: -44,-6 + 3193: -43,-6 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale @@ -3620,7 +3683,6 @@ entities: decals: 12: 1,28 13: 6,28 - 30: -13,27 40: -15,24 46: 4,23 57: 19,36 @@ -3690,27 +3752,27 @@ entities: 2660: 6,-44 2661: 6,-42 2662: 6,-43 - 2741: -18,-69 - 2742: -17,-69 - 2743: -16,-69 - 2744: -15,-69 - 2745: -14,-69 - 2746: -13,-69 - 2747: -12,-69 - 2748: -11,-69 - 2749: -10,-69 - 3516: 1,-64 - 3517: 1,-63 - 3518: 1,-62 - 3519: 1,-61 - 3520: 1,-60 - 3521: 2,-60 - 3522: 3,-60 - 3540: 2,-52 - 3541: 2,-53 - 3542: 2,-54 - 3543: 3,-56 - 3544: 3,-55 + 2736: -18,-69 + 2737: -17,-69 + 2738: -16,-69 + 2739: -15,-69 + 2740: -14,-69 + 2741: -13,-69 + 2742: -12,-69 + 2743: -11,-69 + 2744: -10,-69 + 3501: 1,-64 + 3502: 1,-63 + 3503: 1,-62 + 3504: 1,-61 + 3505: 1,-60 + 3506: 2,-60 + 3507: 3,-60 + 3525: 2,-52 + 3526: 2,-53 + 3527: 2,-54 + 3528: 3,-56 + 3529: 3,-55 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale @@ -3767,8 +3829,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale180 decals: - 3130: 34,-41 - 3131: 35,-40 + 3115: 34,-41 + 3116: 35,-40 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3792,7 +3854,7 @@ entities: 943: 41,-15 1623: 36,-25 1705: 39,-15 - 3045: 38,-15 + 3030: 38,-15 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale180 @@ -3832,20 +3894,20 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 3238: 3,-32 - 3239: 2,-32 + 3223: 3,-32 + 3224: 2,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: 206: -31,-17 452: -27,-28 - 3301: -36,-23 - 3302: -35,-23 - 3303: -34,-23 - 3304: -32,-23 - 3305: -31,-23 - 3306: -33,-23 + 3286: -36,-23 + 3287: -35,-23 + 3288: -34,-23 + 3289: -32,-23 + 3290: -31,-23 + 3291: -33,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 @@ -3863,7 +3925,7 @@ entities: 2451: -27,-39 2452: -28,-39 2453: -29,-39 - 3235: 4,-32 + 3220: 4,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 @@ -3896,8 +3958,8 @@ entities: 2246: 0,-32 2247: 1,-32 2249: 7,-32 - 2861: 27,8 - 2862: 27,9 + 2856: 27,8 + 2857: 27,9 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -3924,7 +3986,6 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 10: -5,33 20: 10,24 23: 8,23 42: -15,22 @@ -3963,29 +4024,29 @@ entities: 1124: 55,-58 2574: 0,-58 2575: 1,-58 - 2750: -10,-71 - 2751: -11,-71 - 2752: -12,-71 - 2753: -13,-71 - 2754: -14,-71 - 2755: -15,-71 - 2756: -16,-71 - 2757: -17,-71 - 2758: -18,-71 - 2774: -3,-68 - 2781: -1,-68 - 2782: 0,-68 - 2786: 1,-68 - 2791: 3,-68 - 2795: 4,-70 - 2796: 4,-68 - 2797: 5,-70 - 2798: 5,-68 - 3523: 9,-64 - 3524: 9,-63 - 3525: 9,-62 - 3526: 9,-61 - 3527: 9,-60 + 2745: -10,-71 + 2746: -11,-71 + 2747: -12,-71 + 2748: -13,-71 + 2749: -14,-71 + 2750: -15,-71 + 2751: -16,-71 + 2752: -17,-71 + 2753: -18,-71 + 2769: -3,-68 + 2776: -1,-68 + 2777: 0,-68 + 2781: 1,-68 + 2786: 3,-68 + 2790: 4,-70 + 2791: 4,-68 + 2792: 5,-70 + 2793: 5,-68 + 3508: 9,-64 + 3509: 9,-63 + 3510: 9,-62 + 3511: 9,-61 + 3512: 9,-60 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -4018,8 +4079,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale270 decals: - 3132: 36,-40 - 3133: 37,-41 + 3117: 36,-40 + 3118: 37,-41 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -4064,9 +4125,9 @@ entities: 1923: -66,-6 2348: -78,-6 2349: -79,-6 - 3439: 12,-32 - 3440: 11,-32 - 3441: 10,-32 + 3424: 12,-32 + 3425: 11,-32 + 3426: 10,-32 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 @@ -4115,8 +4176,8 @@ entities: 756: 38,-59 757: 38,-58 758: 38,-57 - 3237: 7,-32 - 3495: 8,-32 + 3222: 7,-32 + 3480: 8,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -4158,7 +4219,7 @@ entities: 1618: 50,-27 1739: 56,-15 1742: 59,-15 - 3236: 6,-32 + 3221: 6,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -4216,15 +4277,15 @@ entities: 2409: 51,-10 2410: 51,-9 2414: 46,-12 - 2863: 23,8 - 2864: 22,8 - 2865: 21,8 - 2866: 20,8 - 2867: 20,9 - 2868: 19,9 - 3488: 14,-27 - 3489: 14,-26 - 3490: 14,-25 + 2858: 23,8 + 2859: 22,8 + 2860: 21,8 + 2861: 20,8 + 2862: 20,9 + 2863: 19,9 + 3473: 14,-27 + 3474: 14,-26 + 3475: 14,-25 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 @@ -4240,17 +4301,14 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 11: -6,33 19: 8,24 24: 10,23 - 28: -15,27 41: -15,22 44: -13,22 45: 4,24 65: 11,35 69: 6,33 72: 6,30 - 340: -9,31 609: -20,19 610: -18,19 611: -19,19 @@ -4300,8 +4358,8 @@ entities: 2571: -4,-58 2572: -3,-58 2573: -2,-58 - 2783: 0,-70 - 2792: 4,-69 + 2778: 0,-70 + 2787: 4,-69 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale270 @@ -4329,8 +4387,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale90 decals: - 3134: 35,-43 - 3135: 34,-42 + 3119: 35,-43 + 3120: 34,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4367,10 +4425,10 @@ entities: 2439: -24,-37 2440: -24,-38 2441: -24,-39 - 3307: -31,-19 - 3308: -32,-19 - 3309: -33,-19 - 3310: -34,-19 + 3292: -31,-19 + 3293: -32,-19 + 3294: -33,-19 + 3295: -34,-19 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 @@ -4481,39 +4539,39 @@ entities: 2416: 44,-13 2417: 43,-13 2418: 42,-13 - 2857: 25,15 - 2858: 26,15 - 2859: 27,15 - 2860: 27,14 - 2869: 17,12 - 2870: 16,12 - 2871: 15,12 - 2872: 14,12 - 2873: 13,12 - 2874: 12,12 - 2875: 11,12 - 2876: 10,12 - 2877: 9,12 - 2878: 9,13 - 2879: 9,14 - 2880: 9,15 - 2881: 9,16 - 2882: 9,17 - 3209: -42,-6 - 3210: -41,-6 - 3211: -40,-6 - 3212: -40,-6 - 3213: -39,-6 - 3214: -38,-6 - 3215: -38,-7 - 3216: -38,-8 - 3217: -38,-9 - 3218: -38,-10 - 3219: -38,-11 - 3220: -38,-12 - 3221: -38,-13 - 3222: -38,-14 - 3494: 8,-30 + 2852: 25,15 + 2853: 26,15 + 2854: 27,15 + 2855: 27,14 + 2864: 17,12 + 2865: 16,12 + 2866: 15,12 + 2867: 14,12 + 2868: 13,12 + 2869: 12,12 + 2870: 11,12 + 2871: 10,12 + 2872: 9,12 + 2873: 9,13 + 2874: 9,14 + 2875: 9,15 + 2876: 9,16 + 2877: 9,17 + 3194: -42,-6 + 3195: -41,-6 + 3196: -40,-6 + 3197: -40,-6 + 3198: -39,-6 + 3199: -38,-6 + 3200: -38,-7 + 3201: -38,-8 + 3202: -38,-9 + 3203: -38,-10 + 3204: -38,-11 + 3205: -38,-12 + 3206: -38,-13 + 3207: -38,-14 + 3479: 8,-30 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 @@ -4548,10 +4606,8 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 4: -5,28 14: 3,28 15: 8,28 - 31: -11,27 48: 6,23 49: 9,33 50: 15,35 @@ -4607,20 +4663,20 @@ entities: 2580: 0,-53 2581: 0,-52 2659: 4,-44 - 2793: 4,-69 - 2794: 4,-70 - 3528: 9,-58 - 3529: 9,-57 - 3530: 9,-56 - 3531: 9,-55 - 3532: 9,-54 - 3533: 9,-53 - 3534: 9,-52 - 3535: 8,-52 - 3536: 7,-52 - 3537: 6,-52 - 3538: 5,-52 - 3539: 4,-52 + 2788: 4,-69 + 2789: 4,-70 + 3513: 9,-58 + 3514: 9,-57 + 3515: 9,-56 + 3516: 9,-55 + 3517: 9,-54 + 3518: 9,-53 + 3519: 9,-52 + 3520: 8,-52 + 3521: 7,-52 + 3522: 6,-52 + 3523: 5,-52 + 3524: 4,-52 - node: color: '#F9FFFEFF' id: Remains @@ -4676,7 +4732,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale decals: - 3127: 36,-42 + 3112: 36,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale @@ -4702,7 +4758,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 454: -30,-36 - 3268: -34,-29 + 3253: -34,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale @@ -4712,7 +4768,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 3255: 2,-34 + 3240: 2,-34 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale @@ -4725,6 +4781,7 @@ entities: 420: -62,5 1009: 76,-2 1142: 57,-17 + 3654: -11,36 - node: color: '#EFB34131' id: ThreeQuarterTileOverlayGreyscale @@ -4740,7 +4797,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3126: 35,-41 + 3111: 35,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -4763,7 +4820,7 @@ entities: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3270: -31,-32 + 3255: -31,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale180 @@ -4774,7 +4831,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 907: 71,-16 - 3254: 7,-37 + 3239: 7,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale180 @@ -4792,12 +4849,12 @@ entities: decals: 367: -1,23 1089: 0,-28 - 3514: 1,-26 + 3499: 1,-26 - node: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3124: 36,-41 + 3109: 36,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -4805,7 +4862,7 @@ entities: 359: -11,23 1611: 48,-29 2481: 28,-37 - 3160: 39,-50 + 3145: 39,-50 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 @@ -4817,7 +4874,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 453: -30,-39 - 3269: -34,-32 + 3254: -34,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale270 @@ -4828,7 +4885,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 906: 61,-16 - 3253: 2,-37 + 3238: 2,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale270 @@ -4840,13 +4897,14 @@ entities: decals: 417: -62,3 1012: 76,-4 + 3655: -11,34 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: 368: -3,23 1090: -2,-28 - 3515: -3,-26 + 3500: -3,-26 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale90 @@ -4857,7 +4915,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3125: 35,-42 + 3110: 35,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale90 @@ -4885,7 +4943,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 1156: -20,-16 - 3267: -31,-29 + 3252: -31,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale90 @@ -4895,7 +4953,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3252: 7,-34 + 3237: 7,-34 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale90 @@ -4961,34 +5019,46 @@ entities: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 3049: 42,-18 + 3034: 42,-18 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 2982: 9,-71 + 2977: 9,-71 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 2983: -8,-71 + 2978: -8,-71 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 3602: 23,19 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 3603: 25,19 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 1676: 19,-19 + 3600: 23,17 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 1683: 21,-21 + 3604: 25,17 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: 1328: 44,-21 1329: 46,-21 - 3051: 42,-21 + 3036: 42,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW @@ -5002,8 +5072,8 @@ entities: 1097: -3,-30 1733: 51,-21 2384: -73,-4 - 3194: 13,-77 - 3614: -13,-63 + 3179: 13,-77 + 3599: -13,-63 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -5016,8 +5086,8 @@ entities: 2361: -79,-6 2382: -69,-4 2383: -76,-4 - 3193: 17,-77 - 3613: -11,-63 + 3178: 17,-77 + 3598: -11,-63 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -5027,7 +5097,7 @@ entities: 1731: 51,-17 2111: 22,-90 2387: -73,8 - 3192: 13,-75 + 3177: 13,-75 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5043,12 +5113,12 @@ entities: 2360: -79,-4 2385: -69,8 2386: -76,8 - 3195: 17,-75 + 3180: 17,-75 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN decals: - 3448: 46,-17 + 3433: 46,-17 - node: color: '#DE3A3A96' id: WarnFullGreyscale @@ -5093,8 +5163,9 @@ entities: 2110: 22,-91 2546: 8,-49 2547: 8,-48 - 3190: 13,-76 - 3612: -13,-62 + 3175: 13,-76 + 3597: -13,-62 + 3601: 23,18 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5105,7 +5176,7 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 3105: 42,-24 + 3090: 42,-24 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -5117,9 +5188,9 @@ entities: 1321: 44,-19 1322: 44,-18 1323: 44,-17 - 2740: -10,-75 - 3047: 42,-20 - 3048: 42,-19 + 2735: -10,-75 + 3032: 42,-20 + 3033: 42,-19 - node: color: '#334E6DC8' id: WarnLineGreyscaleN @@ -5130,7 +5201,7 @@ entities: id: WarnLineGreyscaleN decals: 1631: 41,-23 - 3046: 38,-22 + 3031: 38,-22 - node: color: '#A4610696' id: WarnLineGreyscaleN @@ -5146,7 +5217,6 @@ entities: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 1400: -11,36 1411: -6,36 1460: -8,45 1461: -14,45 @@ -5155,11 +5225,12 @@ entities: 1464: -24,45 2313: -8,27 2314: -9,27 + 3619: -12,27 - node: color: '#EFB34196' id: WarnLineGreyscaleN decals: - 2973: -7,-68 + 2968: -7,-68 - node: color: '#F5DB9E96' id: WarnLineGreyscaleN @@ -5178,15 +5249,15 @@ entities: 2557: -2,-35 2582: 0,-52 2583: -2,-52 - 2767: 9,-73 - 2768: 8,-73 - 2769: 3,-73 - 2770: 4,-73 - 2898: 8,16 - 2899: 9,16 - 2977: 3,-66 - 2978: 8,-66 - 3050: 41,-18 + 2762: 9,-73 + 2763: 8,-73 + 2764: 3,-73 + 2765: 4,-73 + 2893: 8,16 + 2894: 9,16 + 2972: 3,-66 + 2973: 8,-66 + 3035: 41,-18 - node: color: '#334E6DC8' id: WarnLineGreyscaleS @@ -5221,7 +5292,6 @@ entities: id: WarnLineGreyscaleS decals: 1399: -11,43 - 1423: -15,34 1455: -19,43 1456: -22,43 1457: -24,43 @@ -5229,6 +5299,10 @@ entities: 1459: -6,43 2162: 6,26 2163: 4,26 + 3609: -9,34 + 3610: -8,34 + 3618: -14,26 + 3670: -15,34 - node: color: '#EFB34196' id: WarnLineGreyscaleS @@ -5245,21 +5319,21 @@ entities: 2558: 0,-33 2559: -1,-33 2560: -2,-33 - 2763: 9,-76 - 2764: 5,-76 - 2765: 4,-76 - 2766: 3,-76 - 2979: 3,-71 - 2980: 4,-71 - 2981: 8,-71 - 2986: -7,-71 - 2987: -6,-71 - 2988: -5,-71 - 3449: 46,-21 - 3450: 45,-21 - 3451: 44,-21 - 3452: 43,-21 - 3453: 42,-21 + 2758: 9,-76 + 2759: 5,-76 + 2760: 4,-76 + 2761: 3,-76 + 2974: 3,-71 + 2975: 4,-71 + 2976: 8,-71 + 2981: -7,-71 + 2982: -6,-71 + 2983: -5,-71 + 3434: 46,-21 + 3435: 45,-21 + 3436: 44,-21 + 3437: 43,-21 + 3438: 42,-21 - node: color: '#EFB34196' id: WarnLineGreyscaleW @@ -5279,9 +5353,9 @@ entities: 2465: 75,-15 2466: 75,-14 2467: 75,-13 - 2739: -8,-75 - 2984: -8,-69 - 2985: -8,-70 + 2734: -8,-75 + 2979: -8,-69 + 2980: -8,-70 - node: color: '#FFFFFFFF' id: WarnLineN @@ -5349,21 +5423,21 @@ entities: 2535: 11,-46 2536: 10,-46 2537: 9,-46 - 2681: 1,-79 - 2682: 0,-79 - 2683: -1,-79 - 2684: -2,-79 - 2685: -3,-79 - 2900: 18,-87 - 2901: 17,-87 - 2902: 16,-87 - 2903: 15,-87 - 2904: 14,-87 - 2905: 13,-87 - 2906: 12,-87 - 3187: 14,-75 - 3188: 15,-75 - 3189: 16,-75 + 2676: 1,-79 + 2677: 0,-79 + 2678: -1,-79 + 2679: -2,-79 + 2680: -3,-79 + 2895: 18,-87 + 2896: 17,-87 + 2897: 16,-87 + 2898: 15,-87 + 2899: 14,-87 + 2900: 13,-87 + 2901: 12,-87 + 3172: 14,-75 + 3173: 15,-75 + 3174: 16,-75 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5424,8 +5498,12 @@ entities: 2463: -30,-39 2544: 8,-49 2545: 8,-48 - 3191: 17,-76 - 3611: -11,-62 + 3176: 17,-76 + 3596: -11,-62 + 3605: 25,18 + 3671: -11,34 + 3672: -11,35 + 3673: -11,36 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5501,70 +5579,70 @@ entities: 2541: 11,-46 2542: 10,-46 2543: 9,-46 - 2907: 13,-84 - 2908: 14,-84 - 2909: 15,-84 - 2910: 16,-84 - 2911: 17,-84 - 2912: 18,-84 - 3184: 14,-77 - 3185: 15,-77 - 3186: 16,-77 - 3610: -12,-63 + 2902: 13,-84 + 2903: 14,-84 + 2904: 15,-84 + 2905: 16,-84 + 2906: 17,-84 + 2907: 18,-84 + 3169: 14,-77 + 3170: 15,-77 + 3171: 16,-77 + 3595: -12,-63 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 3286: -31,-25 - 3500: 12,-26 + 3271: -31,-25 + 3485: 12,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 3289: -34,-25 - 3507: 6,-26 + 3274: -34,-25 + 3492: 6,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 2513: 12,-37 - 3501: 12,-27 + 3486: 12,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 2514: 10,-37 - 3506: 6,-27 + 3491: 6,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 3497: 9,-25 + 3482: 9,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 3496: 9,-28 + 3481: 9,-28 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 3513: 9,-26 + 3498: 9,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 3512: 9,-26 + 3497: 9,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 3511: 9,-27 + 3496: 9,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 3510: 9,-27 + 3495: 9,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5577,17 +5655,17 @@ entities: 1279: 11,-15 1280: 11,-14 1281: 11,-13 - 3056: 12,-36 - 3283: -31,-28 - 3284: -31,-27 - 3285: -31,-26 - 3603: -12,-28 - 3604: -12,-27 - 3605: -12,-26 - 3606: -12,-25 - 3607: -12,-24 - 3608: -12,-23 - 3609: -12,-22 + 3041: 12,-36 + 3268: -31,-28 + 3269: -31,-27 + 3270: -31,-26 + 3588: -12,-28 + 3589: -12,-27 + 3590: -12,-26 + 3591: -12,-25 + 3592: -12,-24 + 3593: -12,-23 + 3594: -12,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -5611,16 +5689,16 @@ entities: 1710: 55,-38 1711: 56,-38 1712: 57,-38 - 3279: -34,-29 - 3280: -33,-29 - 3281: -32,-29 - 3282: -31,-29 - 3287: -32,-25 - 3288: -33,-25 - 3498: 10,-26 - 3499: 11,-26 - 3508: 7,-26 - 3509: 8,-26 + 3264: -34,-29 + 3265: -33,-29 + 3266: -32,-29 + 3267: -31,-29 + 3272: -32,-25 + 3273: -33,-25 + 3483: 10,-26 + 3484: 11,-26 + 3493: 7,-26 + 3494: 8,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -5635,27 +5713,27 @@ entities: 1397: -15,53 1398: -16,53 2515: 11,-37 - 3502: 11,-27 - 3503: 10,-27 - 3504: 8,-27 - 3505: 7,-27 + 3487: 11,-27 + 3488: 10,-27 + 3489: 8,-27 + 3490: 7,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 2913: 32,-1 - 2914: 32,0 - 3057: 10,-36 - 3290: -34,-28 - 3291: -34,-27 - 3292: -34,-26 - 3596: -8,-28 - 3597: -8,-27 - 3598: -8,-26 - 3599: -8,-25 - 3600: -8,-24 - 3601: -8,-23 - 3602: -8,-22 + 2908: 32,-1 + 2909: 32,0 + 3042: 10,-36 + 3275: -34,-28 + 3276: -34,-27 + 3277: -34,-26 + 3581: -8,-28 + 3582: -8,-27 + 3583: -8,-26 + 3584: -8,-25 + 3585: -8,-24 + 3586: -8,-23 + 3587: -8,-22 - node: color: '#FFFFFFFF' id: bushsnowa2 @@ -9755,7 +9833,6 @@ entities: - 25801 - 25805 - 25237 - - 10603 - type: AtmosDevice joinedGrid: 8364 - uid: 25239 @@ -11116,11 +11193,6 @@ entities: - type: Transform pos: 91.5,-29.5 parent: 8364 - - uid: 8759 - components: - - type: Transform - pos: -20.5,20.5 - parent: 8364 - uid: 8807 components: - type: Transform @@ -11253,6 +11325,30 @@ entities: parent: 8364 - proto: AirlockExternalGlassLocked entities: + - uid: 508 + components: + - type: Transform + pos: -20.5,20.5 + parent: 8364 + - type: DeviceLinkSink + links: + - 509 + - type: DeviceLinkSource + linkedPorts: + 509: + - DoorStatus: DoorBolt + - uid: 509 + components: + - type: Transform + pos: -22.5,20.5 + parent: 8364 + - type: DeviceLinkSink + links: + - 508 + - type: DeviceLinkSource + linkedPorts: + 508: + - DoorStatus: DoorBolt - uid: 1495 components: - type: Transform @@ -11447,11 +11543,11 @@ entities: parent: 8364 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 8791 + - uid: 524 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,20.5 + pos: -22.5,24.5 parent: 8364 - uid: 12471 components: @@ -12148,12 +12244,6 @@ entities: rot: 1.5707963267948966 rad pos: 93.5,-29.5 parent: 8364 - - uid: 10005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,24.5 - parent: 8364 - uid: 12644 components: - type: Transform @@ -13458,13 +13548,6 @@ entities: - type: Transform pos: 1.5,25.5 parent: 8364 - - uid: 8811 - components: - - type: MetaData - name: Interrogation - - type: Transform - pos: -14.5,33.5 - parent: 8364 - uid: 8906 components: - type: MetaData @@ -13486,11 +13569,21 @@ entities: - type: Transform pos: -4.5,34.5 parent: 8364 - - uid: 9255 + - uid: 9380 components: - type: Transform pos: -7.5,28.5 parent: 8364 + - uid: 9382 + components: + - type: Transform + pos: -8.5,33.5 + parent: 8364 + - uid: 9498 + components: + - type: Transform + pos: -7.5,33.5 + parent: 8364 - uid: 9590 components: - type: MetaData @@ -13536,6 +13629,16 @@ entities: - type: Transform pos: -23.5,-30.5 parent: 8364 +- proto: AirlockSecurityLocked + entities: + - uid: 971 + components: + - type: MetaData + flags: PvsPriority + name: Interrogation + - type: Transform + pos: -14.5,33.5 + parent: 8364 - proto: AirlockServiceGlassLocked entities: - uid: 9841 @@ -15261,6 +15364,11 @@ entities: - type: Transform pos: -70.5,7.5 parent: 8364 + - uid: 5094 + components: + - type: Transform + pos: -21.5,24.5 + parent: 8364 - uid: 7209 components: - type: Transform @@ -15286,16 +15394,6 @@ entities: - type: Transform pos: -66.5,-9.5 parent: 8364 - - uid: 12680 - components: - - type: Transform - pos: -21.5,20.5 - parent: 8364 - - uid: 12681 - components: - - type: Transform - pos: -21.5,24.5 - parent: 8364 - uid: 13399 components: - type: Transform @@ -16106,16 +16204,6 @@ entities: parent: 8364 - proto: Bed entities: - - uid: 484 - components: - - type: Transform - pos: 25.5,19.5 - parent: 8364 - - uid: 489 - components: - - type: Transform - pos: 25.5,18.5 - parent: 8364 - uid: 777 components: - type: Transform @@ -16181,11 +16269,6 @@ entities: - type: Transform pos: 37.5,-51.5 parent: 8364 - - uid: 7789 - components: - - type: Transform - pos: -6.5,30.5 - parent: 8364 - uid: 8422 components: - type: Transform @@ -16206,7 +16289,7 @@ entities: - type: Transform pos: -2.5,23.5 parent: 8364 - - uid: 8717 + - uid: 9361 components: - type: Transform pos: -6.5,31.5 @@ -16341,6 +16424,11 @@ entities: - type: Transform pos: 30.5,-27.5 parent: 8364 + - uid: 9485 + components: + - type: Transform + pos: -6.5,31.5 + parent: 8364 - uid: 18601 components: - type: Transform @@ -16369,16 +16457,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-27.5 parent: 8364 - - uid: 27308 - components: - - type: Transform - pos: -6.5,31.5 - parent: 8364 - - uid: 27311 - components: - - type: Transform - pos: -6.5,30.5 - parent: 8364 - proto: BedsheetOrange entities: - uid: 26353 @@ -16412,16 +16490,6 @@ entities: parent: 8364 - proto: BedsheetSpawner entities: - - uid: 478 - components: - - type: Transform - pos: 25.5,19.5 - parent: 8364 - - uid: 482 - components: - - type: Transform - pos: 25.5,18.5 - parent: 8364 - uid: 5583 components: - type: Transform @@ -17277,11 +17345,6 @@ entities: unspawnedCount: 12 - proto: BoxBodyBag entities: - - uid: 8761 - components: - - type: Transform - pos: -9.5,31.499998 - parent: 8364 - uid: 19315 components: - type: Transform @@ -17668,6 +17731,11 @@ entities: parent: 8364 - proto: BoxSyringe entities: + - uid: 7928 + components: + - type: Transform + pos: -6.5023327,30.526033 + parent: 8364 - uid: 19263 components: - type: Transform @@ -48618,11 +48686,6 @@ entities: - type: Transform pos: 15.5,8.5 parent: 8364 - - uid: 6674 - components: - - type: Transform - pos: 19.5,32.5 - parent: 8364 - uid: 6773 components: - type: Transform @@ -55498,11 +55561,6 @@ entities: - type: Transform pos: 60.5,-42.5 parent: 8364 - - uid: 21579 - components: - - type: Transform - pos: 19.5,31.5 - parent: 8364 - uid: 21580 components: - type: Transform @@ -64100,16 +64158,6 @@ entities: - type: Transform pos: 1.5,50.5 parent: 8364 - - uid: 26567 - components: - - type: Transform - pos: -14.5,36.5 - parent: 8364 - - uid: 26568 - components: - - type: Transform - pos: -15.5,36.5 - parent: 8364 - uid: 26577 components: - type: Transform @@ -65203,12 +65251,12 @@ entities: - type: Transform pos: 7.5,-32.5 parent: 8364 -- proto: ClosetBase +- proto: ClosetBombFilled entities: - - uid: 6614 + - uid: 2611 components: - type: Transform - pos: 20.5,22.5 + pos: 74.5,-43.5 parent: 8364 - type: EntityStorage air: @@ -65228,627 +65276,116 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9362 + - uid: 25912 components: - - type: MetaData - name: contraband closet - type: Transform - pos: -2.5,37.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13256 - components: - - type: Transform - pos: -43.5,22.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13777 - components: - - type: Transform - pos: -52.5,3.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 14211 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 14212 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 14213 - components: - - type: Transform - pos: -36.5,-6.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 14214 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 14215 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 14216 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 14223 - components: - - type: Transform - anchored: True - pos: -41.5,-10.5 - parent: 8364 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 15952 - components: - - type: Transform - pos: -20.5,-49.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 20017 - components: - - type: Transform - pos: 88.5,-31.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21341 - components: - - type: Transform - pos: 55.5,-24.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetBombFilled - entities: - - uid: 2611 - components: - - type: Transform - pos: 74.5,-43.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 25912 - components: - - type: Transform - pos: 74.5,-54.5 - parent: 8364 - - uid: 27286 - components: - - type: Transform - pos: 10.5,40.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetChefFilled - entities: - - uid: 10660 - components: - - type: Transform - pos: 35.5,-1.5 - parent: 8364 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 607 - components: - - type: Transform - pos: -72.5,8.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 618 - components: - - type: Transform - pos: -80.5,10.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 619 - components: - - type: Transform - pos: -80.5,-5.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 1181 - components: - - type: Transform - pos: -78.5,-15.5 + pos: 74.5,-54.5 + parent: 8364 + - uid: 27286 + components: + - type: Transform + pos: 10.5,40.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.9556966 + - 18.642859 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetChefFilled + entities: + - uid: 10660 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 8364 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 607 + components: + - type: Transform + pos: -72.5,8.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 5.0982914 + - 19.179287 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 618 + components: + - type: Transform + pos: -80.5,10.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 5.0982914 + - 19.179287 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 619 + components: + - type: Transform + pos: -80.5,-5.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 5.0982914 + - 19.179287 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1181 + components: + - type: Transform + pos: -78.5,-15.5 parent: 8364 - type: EntityStorage air: @@ -66076,6 +65613,16 @@ entities: showEnts: False occludes: True ent: null + - uid: 9197 + components: + - type: Transform + pos: -17.5,24.5 + parent: 8364 + - uid: 9255 + components: + - type: Transform + pos: -16.5,24.5 + parent: 8364 - uid: 9808 components: - type: Transform @@ -67826,10 +67373,292 @@ entities: showEnts: False occludes: True ent: null - - uid: 13835 + - uid: 13835 + components: + - type: Transform + pos: -33.5,11.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13836 + components: + - type: Transform + pos: -48.5,2.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13837 + components: + - type: Transform + pos: -46.5,15.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13894 + components: + - type: Transform + pos: -56.5,-20.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 14181 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15587 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15603 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15813 components: - type: Transform - pos: -33.5,11.5 + pos: -18.5,-66.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 15935 + components: + - type: Transform + pos: -29.5,-43.5 parent: 8364 - type: EntityStorage air: @@ -67863,10 +67692,15 @@ entities: showEnts: False occludes: True ent: null - - uid: 13836 + - uid: 18761 components: - type: Transform - pos: -48.5,2.5 + pos: -3.5,-49.5 + parent: 8364 + - uid: 20018 + components: + - type: Transform + pos: 48.5,-21.5 parent: 8364 - type: EntityStorage air: @@ -67900,10 +67734,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 13837 + - uid: 20020 components: - type: Transform - pos: -46.5,15.5 + pos: 41.5,-62.5 parent: 8364 - type: EntityStorage air: @@ -67937,10 +67771,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 13894 + - uid: 20021 components: - type: Transform - pos: -56.5,-20.5 + pos: 32.5,-60.5 parent: 8364 - type: EntityStorage air: @@ -67974,10 +67808,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 14181 + - uid: 20034 components: - type: Transform - pos: -43.5,-15.5 + pos: 82.5,-61.5 parent: 8364 - type: EntityStorage air: @@ -68011,10 +67845,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 15587 + - uid: 20035 components: - type: Transform - pos: -36.5,-46.5 + pos: 84.5,-59.5 parent: 8364 - type: EntityStorage air: @@ -68048,10 +67882,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 15603 + - uid: 20036 components: - type: Transform - pos: -32.5,-47.5 + pos: 68.5,-57.5 parent: 8364 - type: EntityStorage air: @@ -68085,10 +67919,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 15813 + - uid: 20037 components: - type: Transform - pos: -18.5,-66.5 + pos: 84.5,-22.5 parent: 8364 - type: EntityStorage air: @@ -68108,10 +67942,178 @@ entities: - 0 - 0 - 0 - - uid: 15935 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26619 components: - type: Transform - pos: -29.5,-43.5 + pos: 15.5,-36.5 + parent: 8364 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 14550 + components: + - type: Transform + pos: 34.5,-46.5 + parent: 8364 + - uid: 21159 + components: + - type: Transform + pos: 79.5,-54.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 21290 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 21762 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 21769 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 25992 + components: + - type: Transform + pos: 78.5,-23.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 27373 + components: + - type: Transform + pos: 7.5,-72.5 + parent: 8364 + - uid: 27374 + components: + - type: Transform + pos: 6.5,-72.5 + parent: 8364 + - uid: 27375 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 8364 + - uid: 27417 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 8364 + - uid: 27447 + components: + - type: Transform + pos: 9.5,-66.5 + parent: 8364 +- proto: ClosetSteelBase + entities: + - uid: 6614 + components: + - type: Transform + pos: 20.5,22.5 parent: 8364 - type: EntityStorage air: @@ -68145,15 +68147,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 18761 - components: - - type: Transform - pos: -3.5,-49.5 - parent: 8364 - - uid: 20018 + - uid: 13256 components: - type: Transform - pos: 48.5,-21.5 + pos: -43.5,22.5 parent: 8364 - type: EntityStorage air: @@ -68187,10 +68184,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20020 + - uid: 13777 components: - type: Transform - pos: 41.5,-62.5 + pos: -52.5,3.5 parent: 8364 - type: EntityStorage air: @@ -68224,10 +68221,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20021 + - uid: 14211 components: - type: Transform - pos: 32.5,-60.5 + pos: -36.5,-4.5 parent: 8364 - type: EntityStorage air: @@ -68261,10 +68258,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20034 + - uid: 14212 components: - type: Transform - pos: 82.5,-61.5 + pos: -36.5,-5.5 parent: 8364 - type: EntityStorage air: @@ -68298,10 +68295,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20035 + - uid: 14213 components: - type: Transform - pos: 84.5,-59.5 + pos: -36.5,-6.5 parent: 8364 - type: EntityStorage air: @@ -68335,10 +68332,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20036 + - uid: 14214 components: - type: Transform - pos: 68.5,-57.5 + pos: -36.5,-7.5 parent: 8364 - type: EntityStorage air: @@ -68372,10 +68369,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20037 + - uid: 14215 components: - type: Transform - pos: 84.5,-22.5 + pos: -36.5,-8.5 parent: 8364 - type: EntityStorage air: @@ -68409,22 +68406,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 26619 - components: - - type: Transform - pos: 15.5,-36.5 - parent: 8364 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 14550 - components: - - type: Transform - pos: 34.5,-46.5 - parent: 8364 - - uid: 21159 + - uid: 14216 components: - type: Transform - pos: 79.5,-54.5 + pos: -36.5,-9.5 parent: 8364 - type: EntityStorage air: @@ -68444,11 +68429,28 @@ entities: - 0 - 0 - 0 - - uid: 21290 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 14223 components: - type: Transform - pos: -1.5,-27.5 + anchored: True + pos: -41.5,-10.5 parent: 8364 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -68467,10 +68469,24 @@ entities: - 0 - 0 - 0 - - uid: 21762 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15952 components: - type: Transform - pos: 0.5,-27.5 + pos: -20.5,-49.5 parent: 8364 - type: EntityStorage air: @@ -68490,10 +68506,24 @@ entities: - 0 - 0 - 0 - - uid: 21769 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 20017 components: - type: Transform - pos: -21.5,-49.5 + pos: 88.5,-31.5 parent: 8364 - type: EntityStorage air: @@ -68513,10 +68543,24 @@ entities: - 0 - 0 - 0 - - uid: 25992 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 21341 components: - type: Transform - pos: 78.5,-23.5 + pos: 55.5,-24.5 parent: 8364 - type: EntityStorage air: @@ -68536,31 +68580,6 @@ entities: - 0 - 0 - 0 - - uid: 27373 - components: - - type: Transform - pos: 7.5,-72.5 - parent: 8364 - - uid: 27374 - components: - - type: Transform - pos: 6.5,-72.5 - parent: 8364 - - uid: 27375 - components: - - type: Transform - pos: 5.5,-72.5 - parent: 8364 - - uid: 27417 - components: - - type: Transform - pos: 34.5,-45.5 - parent: 8364 - - uid: 27447 - components: - - type: Transform - pos: 9.5,-66.5 - parent: 8364 - proto: ClosetToolFilled entities: - uid: 12434 @@ -68894,6 +68913,13 @@ entities: - type: Transform pos: -3.3809297,-63.418907 parent: 8364 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 9536 + components: + - type: Transform + pos: 25.557201,35.620697 + parent: 8364 - proto: ClothingEyesGlassesSunglasses entities: - uid: 8478 @@ -69016,11 +69042,6 @@ entities: parent: 8364 - proto: ClothingHandsGlovesLatex entities: - - uid: 8757 - components: - - type: Transform - pos: -9.5,32.5 - parent: 8364 - uid: 21264 components: - type: Transform @@ -69487,11 +69508,6 @@ entities: parent: 8364 - proto: ClothingMaskSterile entities: - - uid: 8758 - components: - - type: Transform - pos: -9.5,32.5 - parent: 8364 - uid: 17899 components: - type: Transform @@ -70519,6 +70535,11 @@ entities: - type: Transform pos: 39.5,-16.5 parent: 8364 + - uid: 8751 + components: + - type: Transform + pos: -9.5,32.5 + parent: 8364 - uid: 20882 components: - type: Transform @@ -70633,6 +70654,12 @@ entities: - type: Transform pos: 13.5,41.5 parent: 8364 + - uid: 9362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,33.5 + parent: 8364 - uid: 14307 components: - type: Transform @@ -72061,6 +72088,11 @@ entities: parent: 8364 - proto: CrateMedicalSurgery entities: + - uid: 9539 + components: + - type: Transform + pos: -9.5,30.5 + parent: 8364 - uid: 19237 components: - type: Transform @@ -72119,6 +72151,13 @@ entities: - type: Transform pos: 78.5,-49.5 parent: 8364 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 7339 + components: + - type: Transform + pos: -2.5,37.5 + parent: 8364 - proto: CrateServiceJanitorialSupplies entities: - uid: 27563 @@ -72337,6 +72376,38 @@ entities: - type: Transform pos: 22.39215,-26.988102 parent: 8364 +- proto: CryogenicSleepUnit + entities: + - uid: 478 + components: + - type: Transform + pos: 25.5,17.5 + parent: 8364 + - uid: 482 + components: + - type: Transform + pos: 25.5,19.5 + parent: 8364 + - uid: 8756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,43.5 + parent: 8364 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 15509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 8364 + - uid: 15755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,19.5 + parent: 8364 - proto: CryoPod entities: - uid: 5224 @@ -73122,17 +73193,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,26.5 parent: 8364 - - uid: 9536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,31.5 - parent: 8364 - - uid: 9537 - components: - - type: Transform - pos: -5.5,31.5 - parent: 8364 - uid: 9554 components: - type: Transform @@ -74080,12 +74140,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,30.5 parent: 8364 - - uid: 9535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,26.5 - parent: 8364 - uid: 10461 components: - type: Transform @@ -75265,6 +75319,12 @@ entities: - type: Transform pos: 21.5,19.5 parent: 8364 + - uid: 8748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,26.5 + parent: 8364 - uid: 9105 components: - type: Transform @@ -75514,26 +75574,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,26.5 parent: 8364 - - uid: 9538 - components: - - type: Transform - pos: -5.5,30.5 - parent: 8364 - - uid: 9539 - components: - - type: Transform - pos: -5.5,29.5 - parent: 8364 - - uid: 9540 - components: - - type: Transform - pos: -5.5,28.5 - parent: 8364 - - uid: 9541 - components: - - type: Transform - pos: -5.5,27.5 - parent: 8364 - uid: 9542 components: - type: Transform @@ -81094,11 +81134,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,30.5 parent: 8364 - - uid: 9485 - components: - - type: Transform - pos: -6.5,32.5 - parent: 8364 - uid: 9559 components: - type: Transform @@ -81431,11 +81466,6 @@ entities: - type: Transform pos: 19.5,36.5 parent: 8364 - - uid: 9402 - components: - - type: Transform - pos: -6.5,32.5 - parent: 8364 - uid: 9560 components: - type: Transform @@ -82245,18 +82275,6 @@ entities: parent: 27350 - type: Physics canCollide: False -- proto: EpinephrineChemistryBottle - entities: - - uid: 9380 - components: - - type: Transform - pos: -9.402022,31.98179 - parent: 8364 - - uid: 9382 - components: - - type: Transform - pos: -9.573897,32.028664 - parent: 8364 - proto: ExosuitFabricator entities: - uid: 6944 @@ -83714,7 +83732,6 @@ entities: - 8934 - 25236 - 19934 - - 10603 - type: AtmosDevice joinedGrid: 8364 - uid: 25807 @@ -83812,8 +83829,6 @@ entities: - 9185 - 26398 - 7282 - - 25677 - - 25678 - type: AtmosDevice joinedGrid: 8364 - uid: 26400 @@ -83826,8 +83841,6 @@ entities: - 7301 - 8910 - 26397 - - 25677 - - 25678 - type: AtmosDevice joinedGrid: 8364 - uid: 27312 @@ -83921,11 +83934,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,6.5 parent: 8364 - - uid: 10603 - components: - - type: Transform - pos: 8.5,35.5 - parent: 8364 - uid: 10604 components: - type: Transform @@ -84120,12 +84128,6 @@ entities: - type: Transform pos: -1.5,-49.5 parent: 8364 - - uid: 25677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,50.5 - parent: 8364 - uid: 25964 components: - type: Transform @@ -85174,11 +85176,6 @@ entities: - type: Transform pos: 3.5,-64.5 parent: 8364 - - uid: 25678 - components: - - type: Transform - pos: -3.5,51.5 - parent: 8364 - uid: 25951 components: - type: Transform @@ -119157,6 +119154,11 @@ entities: - type: Transform pos: -5.5,40.5 parent: 8364 + - uid: 5088 + components: + - type: Transform + pos: -9.5,33.5 + parent: 8364 - uid: 5124 components: - type: Transform @@ -119788,6 +119790,16 @@ entities: - type: Transform pos: 28.5,8.5 parent: 8364 + - uid: 7483 + components: + - type: Transform + pos: 25.5,16.5 + parent: 8364 + - uid: 7484 + components: + - type: Transform + pos: 23.5,16.5 + parent: 8364 - uid: 7559 components: - type: Transform @@ -120108,11 +120120,6 @@ entities: - type: Transform pos: -2.5,22.5 parent: 8364 - - uid: 7928 - components: - - type: Transform - pos: -4.5,38.5 - parent: 8364 - uid: 7950 components: - type: Transform @@ -120453,6 +120460,11 @@ entities: - type: Transform pos: 25.5,46.5 parent: 8364 + - uid: 8758 + components: + - type: Transform + pos: -6.5,38.5 + parent: 8364 - uid: 8786 components: - type: Transform @@ -120540,6 +120552,11 @@ entities: - type: Transform pos: 21.5,40.5 parent: 8364 + - uid: 9357 + components: + - type: Transform + pos: -4.5,38.5 + parent: 8364 - uid: 9396 components: - type: Transform @@ -120722,11 +120739,6 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,7.5 parent: 8364 - - uid: 13431 - components: - - type: Transform - pos: -6.5,38.5 - parent: 8364 - uid: 13491 components: - type: Transform @@ -122834,20 +122846,20 @@ entities: - type: Transform pos: 10.5,24.5 parent: 8364 - - uid: 8612 + - uid: 8591 components: - type: Transform - pos: 3.5,23.5 + pos: -15.501181,34.511185 parent: 8364 - - uid: 8613 + - uid: 8612 components: - type: Transform pos: 3.5,23.5 parent: 8364 - - uid: 26388 + - uid: 8613 components: - type: Transform - pos: -15.384127,34.584564 + pos: 3.5,23.5 parent: 8364 - proto: HandheldHealthAnalyzer entities: @@ -124390,6 +124402,16 @@ entities: parent: 8364 - proto: LockerEvidence entities: + - uid: 6674 + components: + - type: Transform + pos: -15.5,36.5 + parent: 8364 + - uid: 7338 + components: + - type: Transform + pos: -14.5,36.5 + parent: 8364 - uid: 8553 components: - type: Transform @@ -124528,6 +124550,11 @@ entities: - 0 - 0 - 0 + - uid: 9356 + components: + - type: Transform + pos: -13.5,36.5 + parent: 8364 - uid: 9937 components: - type: Transform @@ -124643,52 +124670,6 @@ entities: - 0 - 0 - 0 - - uid: 26384 - components: - - type: Transform - pos: -7.5,34.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 26385 - components: - - type: Transform - pos: -8.5,34.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerFreezer entities: - uid: 8156 @@ -125171,6 +125152,16 @@ entities: ent: null - proto: LockerSecurityFilled entities: + - uid: 8791 + components: + - type: Transform + pos: 8.5,37.5 + parent: 8364 + - uid: 8811 + components: + - type: Transform + pos: 8.5,38.5 + parent: 8364 - uid: 9256 components: - type: Transform @@ -125566,40 +125557,6 @@ entities: parent: 8364 - type: BallisticAmmoProvider unspawnedCount: 30 -- proto: MagazineRifle - entities: - - uid: 971 - components: - - type: Transform - pos: -1.5611359,39.648827 - parent: 8364 - - uid: 5088 - components: - - type: Transform - pos: -1.5298859,39.4457 - parent: 8364 - - uid: 5110 - components: - - type: Transform - pos: -1.7173859,39.4457 - parent: 8364 - - uid: 14696 - components: - - type: Transform - pos: -1.7173859,39.648827 - parent: 8364 -- proto: MagazineRifleRubber - entities: - - uid: 5094 - components: - - type: Transform - pos: -1.2955109,39.648827 - parent: 8364 - - uid: 5095 - components: - - type: Transform - pos: -1.2955109,39.41445 - parent: 8364 - proto: MailingUnit entities: - uid: 8179 @@ -125903,10 +125860,10 @@ entities: - type: Transform pos: 22.595015,9.598176 parent: 8364 - - uid: 8760 + - uid: 8749 components: - type: Transform - pos: -8.310503,32.565964 + pos: -6.5648327,29.651033 parent: 8364 - uid: 9086 components: @@ -125935,6 +125892,11 @@ entities: - type: Transform pos: 38.68753,-29.353252 parent: 8364 + - uid: 7927 + components: + - type: Transform + pos: -6.3929577,29.432283 + parent: 8364 - proto: MedkitRadiationFilled entities: - uid: 1767 @@ -126729,6 +126691,11 @@ entities: - type: Transform pos: 19.5,-32.5 parent: 8364 + - uid: 8750 + components: + - type: Transform + pos: -9.5,31.5 + parent: 8364 - uid: 19015 components: - type: Transform @@ -128086,13 +128053,6 @@ entities: - type: Transform pos: 76.5,-21.5 parent: 8364 -- proto: PlasticFlapsClear - entities: - - uid: 9316 - components: - - type: Transform - pos: 19.5,31.5 - parent: 8364 - proto: PlushieBee entities: - uid: 6609 @@ -128528,6 +128488,11 @@ entities: parent: 8364 - proto: PosterLegitHelpOthers entities: + - uid: 484 + components: + - type: Transform + pos: 26.5,18.5 + parent: 8364 - uid: 27412 components: - type: Transform @@ -128631,6 +128596,11 @@ entities: parent: 8364 - proto: PosterLegitSafetyInternals entities: + - uid: 489 + components: + - type: Transform + pos: 22.5,18.5 + parent: 8364 - uid: 26739 components: - type: Transform @@ -128685,6 +128655,11 @@ entities: parent: 8364 - proto: PosterLegitSecWatch entities: + - uid: 9402 + components: + - type: Transform + pos: 10.5,35.5 + parent: 8364 - uid: 26561 components: - type: Transform @@ -128800,11 +128775,6 @@ entities: - type: Transform pos: -14.5,26.5 parent: 8364 - - uid: 26386 - components: - - type: Transform - pos: -12.5,34.5 - parent: 8364 - proto: PottedPlant19 entities: - uid: 12476 @@ -129578,15 +129548,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6533 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,15.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6693 components: - type: MetaData @@ -129705,16 +129666,14 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8770 + - uid: 8717 components: - type: MetaData flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,31.5 + rot: -1.5707963267948966 rad + pos: -4.5,31.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8771 components: - type: MetaData @@ -129751,6 +129710,22 @@ entities: - type: Transform pos: -26.5,-29.5 parent: 8364 + - uid: 9176 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,30.5 + parent: 8364 + - uid: 9180 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,34.5 + parent: 8364 - uid: 9183 components: - type: MetaData @@ -132459,15 +132434,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26389 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,36.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 26390 components: - type: MetaData @@ -133016,11 +132982,8 @@ entities: - uid: 6664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,18.5 + pos: 24.5,19.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7137 components: - type: Transform @@ -134494,6 +134457,11 @@ entities: - type: Transform pos: 3.5,-59.5 parent: 8364 + - uid: 5095 + components: + - type: Transform + pos: -15.5,34.5 + parent: 8364 - uid: 5250 components: - type: Transform @@ -134529,21 +134497,6 @@ entities: - type: Transform pos: -8.5,53.5 parent: 8364 - - uid: 9168 - components: - - type: Transform - pos: -16.5,24.5 - parent: 8364 - - uid: 9176 - components: - - type: Transform - pos: -17.5,24.5 - parent: 8364 - - uid: 9180 - components: - - type: Transform - pos: -18.5,24.5 - parent: 8364 - uid: 9190 components: - type: Transform @@ -134569,11 +134522,6 @@ entities: - type: Transform pos: -0.5,35.5 parent: 8364 - - uid: 9197 - components: - - type: Transform - pos: -1.5,39.5 - parent: 8364 - uid: 9364 components: - type: Transform @@ -134989,11 +134937,6 @@ entities: - type: Transform pos: 81.5,-23.5 parent: 8364 - - uid: 26387 - components: - - type: Transform - pos: -15.5,34.5 - parent: 8364 - uid: 26453 components: - type: Transform @@ -139448,6 +139391,11 @@ entities: - type: Transform pos: 26.5,-80.5 parent: 8364 + - uid: 6533 + components: + - type: Transform + pos: 25.5,16.5 + parent: 8364 - uid: 6908 components: - type: Transform @@ -140023,11 +139971,6 @@ entities: - type: Transform pos: -2.5,16.5 parent: 8364 - - uid: 7927 - components: - - type: Transform - pos: -4.5,38.5 - parent: 8364 - uid: 8005 components: - type: Transform @@ -140468,6 +140411,11 @@ entities: - type: Transform pos: -9.5,37.5 parent: 8364 + - uid: 9513 + components: + - type: Transform + pos: -9.5,33.5 + parent: 8364 - uid: 9553 components: - type: Transform @@ -140508,11 +140456,6 @@ entities: - type: Transform pos: -42.5,-26.5 parent: 8364 - - uid: 9926 - components: - - type: Transform - pos: -6.5,38.5 - parent: 8364 - uid: 10001 components: - type: Transform @@ -140795,6 +140738,11 @@ entities: - type: Transform pos: 6.5,-28.5 parent: 8364 + - uid: 16354 + components: + - type: Transform + pos: 23.5,16.5 + parent: 8364 - uid: 16400 components: - type: Transform @@ -141432,11 +141380,6 @@ entities: parent: 8364 - proto: RollerBed entities: - - uid: 8751 - components: - - type: Transform - pos: -7.5,32.5 - parent: 8364 - uid: 21713 components: - type: Transform @@ -141622,16 +141565,11 @@ entities: parent: 8364 - proto: SecurityTechFab entities: - - uid: 524 + - uid: 9359 components: - type: Transform - pos: 8.5,41.5 + pos: -1.5,39.5 parent: 8364 - - type: MaterialStorage - materialWhiteList: - - Glass - - Plastic - - Steel - proto: SeedExtractor entities: - uid: 16317 @@ -141828,6 +141766,11 @@ entities: - type: Transform pos: 69.50902,-26.620325 parent: 8364 + - uid: 8761 + components: + - type: Transform + pos: -2.4544196,39.606735 + parent: 8364 - proto: SheetRGlass entities: - uid: 12441 @@ -141872,6 +141815,11 @@ entities: - type: Transform pos: 9.423824,-59.471497 parent: 8364 + - uid: 9316 + components: + - type: Transform + pos: -2.4700446,39.637985 + parent: 8364 - uid: 11752 components: - type: Transform @@ -141990,6 +141938,28 @@ entities: - type: Transform pos: -23.566956,-71.37924 parent: 8364 +- proto: ShellShotgunPractice + entities: + - uid: 8770 + components: + - type: Transform + pos: 25.354076,35.417572 + parent: 8364 + - uid: 9164 + components: + - type: Transform + pos: 25.463451,35.401947 + parent: 8364 + - uid: 9537 + components: + - type: Transform + pos: 25.713451,35.401947 + parent: 8364 + - uid: 9538 + components: + - type: Transform + pos: 25.572826,35.401947 + parent: 8364 - proto: Shovel entities: - uid: 15416 @@ -144627,6 +144597,11 @@ entities: - type: Transform pos: 31.5,1.5 parent: 8364 + - uid: 7340 + components: + - type: Transform + pos: -6.5,32.5 + parent: 8364 - uid: 13245 components: - type: Transform @@ -147076,11 +147051,6 @@ entities: parent: 8364 - proto: SpawnVehicleSecway entities: - - uid: 509 - components: - - type: Transform - pos: 10.5,33.5 - parent: 8364 - uid: 27289 components: - type: Transform @@ -147105,11 +147075,6 @@ entities: - type: Transform pos: -49.700584,-7.3589315 parent: 8364 - - uid: 8756 - components: - - type: Transform - pos: -9.5,32.5 - parent: 8364 - uid: 14102 components: - type: Transform @@ -149012,11 +148977,6 @@ entities: - type: Transform pos: 29.437502,-32.468803 parent: 8364 - - uid: 8591 - components: - - type: Transform - pos: -8.886397,32.559914 - parent: 8364 - proto: SyringeEphedrine entities: - uid: 39 @@ -149479,11 +149439,6 @@ entities: - type: Transform pos: 15.5,30.5 parent: 8364 - - uid: 11610 - components: - - type: Transform - pos: 12.5,33.5 - parent: 8364 - uid: 11611 components: - type: Transform @@ -150565,21 +150520,6 @@ entities: - type: Transform pos: -21.5,-15.5 parent: 8364 - - uid: 26381 - components: - - type: Transform - pos: -9.5,34.5 - parent: 8364 - - uid: 26382 - components: - - type: Transform - pos: -10.5,34.5 - parent: 8364 - - uid: 26383 - components: - - type: Transform - pos: -11.5,34.5 - parent: 8364 - uid: 26405 components: - type: Transform @@ -150797,20 +150737,15 @@ entities: - type: Transform pos: 21.5,10.5 parent: 8364 - - uid: 8748 - components: - - type: Transform - pos: -9.5,32.5 - parent: 8364 - - uid: 8749 + - uid: 7789 components: - type: Transform - pos: -9.5,31.5 + pos: -6.5,29.5 parent: 8364 - - uid: 8750 + - uid: 9360 components: - type: Transform - pos: -8.5,32.5 + pos: -6.5,30.5 parent: 8364 - uid: 10706 components: @@ -150987,11 +150922,6 @@ entities: - type: Transform pos: 33.5,-30.5 parent: 8364 - - uid: 27307 - components: - - type: Transform - pos: -6.5,29.5 - parent: 8364 - proto: TablePlasmaGlass entities: - uid: 18644 @@ -152536,6 +152466,13 @@ entities: - type: Transform pos: 31.5,-26.5 parent: 8364 + - uid: 8759 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,38.5 + parent: 8364 - uid: 9179 components: - type: MetaData @@ -152543,6 +152480,13 @@ entities: - type: Transform pos: 43.5,-32.5 parent: 8364 + - uid: 9358 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,38.5 + parent: 8364 - uid: 10766 components: - type: MetaData @@ -153215,16 +153159,6 @@ entities: parent: 8364 - proto: VehicleKeySecway entities: - - uid: 508 - components: - - type: Transform - pos: 12.474529,33.69146 - parent: 8364 - - uid: 9164 - components: - - type: Transform - pos: -2.5474367,39.4795 - parent: 8364 - uid: 27290 components: - type: Transform @@ -153800,6 +153734,13 @@ entities: - type: Transform pos: -24.5,45.5 parent: 8364 +- proto: VendingMachineSustenance + entities: + - uid: 8757 + components: + - type: Transform + pos: 3.5,51.5 + parent: 8364 - proto: VendingMachineTankDispenserEngineering entities: - uid: 22806 @@ -163928,6 +163869,13 @@ entities: - type: Transform pos: 36.5,-70.5 parent: 8364 + - uid: 5110 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,31.5 + parent: 8364 - uid: 5197 components: - type: MetaData @@ -166816,6 +166764,13 @@ entities: - type: Transform pos: 61.5,-70.5 parent: 8364 + - uid: 9535 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,31.5 + parent: 8364 - uid: 9570 components: - type: MetaData @@ -176159,27 +176114,6 @@ entities: - type: Transform pos: 31.5,-8.5 parent: 8364 - - uid: 7338 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,33.5 - parent: 8364 - - uid: 7339 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,33.5 - parent: 8364 - - uid: 7340 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,33.5 - parent: 8364 - uid: 7341 components: - type: MetaData @@ -176313,20 +176247,6 @@ entities: - type: Transform pos: 41.5,10.5 parent: 8364 - - uid: 7483 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,16.5 - parent: 8364 - - uid: 7484 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,16.5 - parent: 8364 - uid: 7488 components: - type: MetaData @@ -178343,13 +178263,6 @@ entities: - type: Transform pos: 38.5,1.5 parent: 8364 - - uid: 9843 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,31.5 - parent: 8364 - uid: 9867 components: - type: MetaData @@ -180321,6 +180234,16 @@ entities: - 0 - 0 - 0 + - uid: 8760 + components: + - type: Transform + pos: -12.5,36.5 + parent: 8364 + - uid: 9168 + components: + - type: Transform + pos: -11.5,36.5 + parent: 8364 - uid: 9257 components: - type: Transform @@ -180687,15 +180610,6 @@ entities: parent: 8364 - type: WarpPoint location: starboard quarter -- proto: WarpPointBombing - entities: - - uid: 27703 - components: - - type: Transform - pos: 1.5,32.5 - parent: 8364 - - type: WarpPoint - location: Warden's Office - proto: WaterCooler entities: - uid: 5522 @@ -181029,6 +180943,13 @@ entities: - type: Transform pos: 25.540077,32.58242 parent: 8364 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 8772 + components: + - type: Transform + pos: 21.462696,34.988297 + parent: 8364 - proto: WeaponSubMachineGunWt550 entities: - uid: 536 @@ -181597,26 +181518,6 @@ entities: - type: Transform pos: 1.5,34.5 parent: 8364 - - uid: 26800 - components: - - type: Transform - pos: -0.5,37.5 - parent: 8364 - - uid: 26801 - components: - - type: Transform - pos: 0.5,37.5 - parent: 8364 - - uid: 26802 - components: - - type: Transform - pos: 1.5,37.5 - parent: 8364 - - uid: 26803 - components: - - type: Transform - pos: 2.5,37.5 - parent: 8364 - proto: WindoorSecureBrigLocked entities: - uid: 8619 @@ -181909,11 +181810,6 @@ entities: - type: Transform pos: 23.5,37.5 parent: 8364 - - uid: 9513 - components: - - type: Transform - pos: 19.5,32.5 - parent: 8364 - uid: 12330 components: - type: MetaData @@ -182920,48 +182816,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,32.5 parent: 8364 - - uid: 8772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,28.5 - parent: 8364 - - uid: 9356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,37.5 - parent: 8364 - - uid: 9357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,37.5 - parent: 8364 - - uid: 9358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,37.5 - parent: 8364 - - uid: 9359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,37.5 - parent: 8364 - - uid: 9360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,37.5 - parent: 8364 - - uid: 9361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,37.5 - parent: 8364 - uid: 9383 components: - type: Transform @@ -182972,12 +182826,6 @@ entities: - type: Transform pos: 24.5,37.5 parent: 8364 - - uid: 9498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,32.5 - parent: 8364 - uid: 9824 components: - type: Transform diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index 455c75b443c..e3b4c2183e9 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -108,7 +108,7 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABYAAAAAAAWQAAAAABWQAAAAADUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAABXgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + tiles: AAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABYAAAAAAAWQAAAAABWQAAAAADUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAABXgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA version: 6 -2,-2: ind: -2,-2 @@ -3013,6 +3013,8 @@ entities: 1228: -40,22 1229: -40,23 1266: -6,52 + 1480: -4,-30 + 1481: -4,-29 - node: color: '#FFFFFFFF' id: WarnLineN @@ -3069,6 +3071,8 @@ entities: 1264: -8,52 1404: -12,-53 1405: -12,-54 + 1478: -2,-30 + 1479: -2,-29 - node: color: '#FFFFFFFF' id: WarnLineW @@ -3131,7 +3135,6 @@ entities: 252: -4,8 253: 3,12 1239: -8,-27 - 1240: -4,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw @@ -3140,7 +3143,6 @@ entities: 249: -1,12 250: 3,12 1237: -6,-27 - 1238: -2,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -3187,7 +3189,6 @@ entities: 228: 1,12 229: 2,12 1235: -7,-27 - 1236: -3,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -5524,14 +5525,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-27.5 parent: 1 - - uid: 3577 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-27.5 - parent: 1 - uid: 3600 components: - type: MetaData @@ -6436,6 +6429,11 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,9.5 parent: 1 + - uid: 7713 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 1 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 3287 @@ -8036,11 +8034,6 @@ entities: - type: Transform pos: -5.5,-29.5 parent: 1 - - uid: 7715 - components: - - type: Transform - pos: -1.5,-29.5 - parent: 1 - uid: 8261 components: - type: Transform @@ -8223,11 +8216,6 @@ entities: - type: Transform pos: -5.5,-29.5 parent: 1 - - uid: 7717 - components: - - type: Transform - pos: -1.5,-29.5 - parent: 1 - uid: 9018 components: - type: Transform @@ -8566,6 +8554,11 @@ entities: - type: Transform pos: -4.5,-11.5 parent: 1 + - uid: 7717 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 1 - proto: BoxBeaker entities: - uid: 6050 @@ -26522,6 +26515,13 @@ entities: - type: Transform pos: -40.481712,-24.251455 parent: 1 +- proto: ChairGreyscale + entities: + - uid: 8007 + components: + - type: Transform + pos: -25.5,7.5 + parent: 1 - proto: ChairOfficeDark entities: - uid: 778 @@ -28044,7 +28044,7 @@ entities: - uid: 7807 components: - type: Transform - pos: -3.4980807,-28.439547 + pos: -7.419932,-28.49488 parent: 1 - proto: ClothingOuterCoatInspector entities: @@ -28362,12 +28362,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-29.5 parent: 1 - - uid: 8232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-29.5 - parent: 1 - proto: ComputerAnalysisConsole entities: - uid: 6123 @@ -29138,6 +29132,34 @@ entities: - type: Transform pos: -21.430874,-29.30484 parent: 1 +- proto: CryogenicSleepUnit + entities: + - uid: 4134 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 1 + - uid: 6403 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 1 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 1646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-28.5 + parent: 1 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 3577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 1 - proto: CryoPodMachineCircuitboard entities: - uid: 12611 @@ -53094,6 +53116,11 @@ entities: - type: Transform pos: -5.5,-23.5 parent: 1 + - uid: 1645 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 1 - uid: 1686 components: - type: Transform @@ -54358,6 +54385,11 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-1.5 parent: 1 + - uid: 7719 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 1 - uid: 8258 components: - type: Transform @@ -56261,11 +56293,6 @@ entities: - type: Transform pos: -5.5,-29.5 parent: 1 - - uid: 7719 - components: - - type: Transform - pos: -1.5,-29.5 - parent: 1 - uid: 9638 components: - type: Transform @@ -59585,13 +59612,6 @@ entities: - type: Transform pos: 20.648407,-20.490913 parent: 1 -- proto: PinpointerNuclear - entities: - - uid: 4134 - components: - - type: Transform - pos: -2.6820543,23.560793 - parent: 1 - proto: PlasmaCanister entities: - uid: 6320 @@ -59841,6 +59861,13 @@ entities: - type: Transform pos: -19.5,12.5 parent: 1 +- proto: PosterLegitHelpOthers + entities: + - uid: 7715 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 1 - proto: PosterLegitIan entities: - uid: 11961 @@ -61653,16 +61680,6 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8007 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-26.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8008 components: - type: MetaData @@ -62231,15 +62248,15 @@ entities: - type: Transform pos: 20.5,-20.5 parent: 1 - - uid: 7713 + - uid: 7806 components: - type: Transform - pos: -1.5,-28.5 + pos: -5.5,-28.5 parent: 1 - - uid: 7806 + - uid: 8232 components: - type: Transform - pos: -5.5,-28.5 + pos: -26.5,7.5 parent: 1 - uid: 8240 components: @@ -63043,11 +63060,6 @@ entities: parent: 1 - proto: RandomSoap entities: - - uid: 12498 - components: - - type: Transform - pos: -19.5,-27.5 - parent: 1 - uid: 12499 components: - type: Transform @@ -66127,6 +66139,16 @@ entities: - type: Transform pos: 22.5,-24.5 parent: 1 + - uid: 7711 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 1 + - uid: 7809 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 1 - uid: 8319 components: - type: Transform @@ -71631,12 +71653,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-28.5 parent: 1 - - uid: 7711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-28.5 - parent: 1 - uid: 8288 components: - type: Transform @@ -71979,12 +71995,6 @@ entities: parent: 1 - proto: ToiletEmpty entities: - - uid: 6403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-27.5 - parent: 1 - uid: 6404 components: - type: Transform @@ -72136,13 +72146,6 @@ entities: - type: Transform pos: -1.0943661,19.21257 parent: 1 -- proto: ToySpawner - entities: - - uid: 7809 - components: - - type: Transform - pos: -1.5,-28.5 - parent: 1 - proto: TrashBananaPeel entities: - uid: 7799 @@ -82565,20 +82568,6 @@ entities: - type: Transform pos: -4.5,-29.5 parent: 1 - - uid: 1645 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,-27.5 - parent: 1 - - uid: 1646 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-27.5 - parent: 1 - uid: 1647 components: - type: MetaData @@ -84778,25 +84767,6 @@ entities: parent: 1 - type: WarpPoint location: arrivals - - uid: 12056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 1 - - type: WarpPoint - location: cargo - - type: NavMapBeacon - color: '#A46106FF' - text: Cargo - - uid: 12057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 1 - - type: WarpPoint - location: dorms - uid: 12058 components: - type: Transform diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 42b99f6b1ed..9c4c459898e 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -73,207 +73,207 @@ entities: chunks: 0,0: ind: 0,0 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADaQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADaQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAewAAAAAAagAAAAAAagAAAAADagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADaQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAaQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAewAAAAAAagAAAAABagAAAAADagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: DgAAAAADDgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAADDgAAAAADIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABHQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAHQAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAaQAAAAAAagAAAAADagAAAAAAaQAAAAAAeQAAAAAAewAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAA + tiles: DgAAAAADDgAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAACDgAAAAACIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADHQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAaQAAAAAAagAAAAABagAAAAADaQAAAAAAeQAAAAAAewAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: aAAAAAAAaAAAAAAAWQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAADIgAAAAADWQAAAAAAWQAAAAAAZAAAAAACaAAAAAAAaAAAAAAAWQAAAAABZAAAAAACIgAAAAAAIgAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAADZAAAAAAAIgAAAAAAIgAAAAACIgAAAAACeQAAAAAAaAAAAAAAagAAAAADagAAAAADagAAAAAAaQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAOQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: aAAAAAAAaAAAAAAAWQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAACIgAAAAACWQAAAAADWQAAAAADZAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADZAAAAAABIgAAAAACIgAAAAABIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABZAAAAAACIgAAAAABIgAAAAADIgAAAAACeQAAAAAAaAAAAAAAagAAAAABagAAAAABagAAAAAAaQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAOQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: aAAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAZAAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAZAAAAAACWQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAIgAAAAADIgAAAAABIgAAAAADWQAAAAABIgAAAAACWQAAAAABWQAAAAAAZAAAAAADWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABHQAAAAACeQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: aAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAWQAAAAACZAAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACZAAAAAADWQAAAAADaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAIgAAAAACIgAAAAACIgAAAAACWQAAAAACIgAAAAABWQAAAAABWQAAAAACZAAAAAACWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABHQAAAAADeQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: WQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACZAAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABZAAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAADZAAAAAAAZAAAAAADZAAAAAAAZAAAAAABZAAAAAABTAAAAAADTAAAAAABZAAAAAADTAAAAAACTAAAAAABZAAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAZAAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAZAAAAAAAZAAAAAACWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADZAAAAAADZAAAAAADZAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAagAAAAADeQAAAAAAIgAAAAADeQAAAAAAZAAAAAACZAAAAAADWQAAAAACIgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAeQAAAAAAagAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADZQAAAAAAZQAAAAAAZQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABWQAAAAAATAAAAAAATAAAAAABTAAAAAABWQAAAAABWQAAAAABTAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAAAIgAAAAACIgAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAABagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAACIgAAAAAAWQAAAAAAIgAAAAAAIgAAAAADIgAAAAABeQAAAAAAIgAAAAABIgAAAAAAagAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAABHQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAaQAAAAAAeQAAAAAAHQAAAAACHQAAAAADWQAAAAADZAAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAD + tiles: WQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABZAAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACZAAAAAAAZAAAAAABZAAAAAAAZAAAAAACZAAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAADZAAAAAAATAAAAAABTAAAAAACZAAAAAADTAAAAAAATAAAAAABZAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAZAAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAABeQAAAAAAHQAAAAABeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAZAAAAAADZAAAAAACWQAAAAACWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABZAAAAAABZAAAAAACZAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAagAAAAADeQAAAAAAIgAAAAABeQAAAAAAZAAAAAAAZAAAAAADWQAAAAACIgAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAADZQAAAAAAZQAAAAAAZQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAeQAAAAAAagAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAWQAAAAABTAAAAAADTAAAAAAATAAAAAABWQAAAAAAWQAAAAAATAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIgAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAABagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAACIgAAAAAAWQAAAAAAIgAAAAADIgAAAAAAIgAAAAADeQAAAAAAIgAAAAAAIgAAAAAAagAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAWQAAAAADZAAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: ZAAAAAADZAAAAAAAWQAAAAACWQAAAAACZAAAAAACWQAAAAACWQAAAAACWQAAAAACZAAAAAADWQAAAAACZAAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAATAAAAAACTAAAAAAAZAAAAAABZAAAAAABZAAAAAADZAAAAAACZAAAAAABZAAAAAADZAAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAZAAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACIgAAAAABIgAAAAADIgAAAAACIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAIgAAAAAAdgAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAABIgAAAAACeQAAAAAAHQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACdgAAAAABdgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACIgAAAAACIgAAAAAAIgAAAAACIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACZAAAAAADWQAAAAABHQAAAAAAeQAAAAAAHQAAAAACIgAAAAACIgAAAAACIgAAAAAAIgAAAAACWQAAAAAAWQAAAAACIgAAAAAAeQAAAAAAIgAAAAADZAAAAAAAZAAAAAACZAAAAAADWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAATAAAAAABTAAAAAAAIgAAAAADeQAAAAAAZAAAAAACZAAAAAAAZAAAAAACZAAAAAADWQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADWQAAAAACWQAAAAADWQAAAAACZAAAAAACZAAAAAABZAAAAAADZAAAAAADZAAAAAACWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAWQAAAAABZAAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAAAWQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAADZAAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAZAAAAAABZAAAAAACZAAAAAADZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAACZAAAAAABZAAAAAAAWQAAAAAAeQAAAAAAIgAAAAAAIgAAAAACIgAAAAABWQAAAAAAWQAAAAADZAAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAIgAAAAAAHQAAAAADHQAAAAACWQAAAAADWQAAAAAAZAAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAHQAAAAACHQAAAAADWQAAAAADWQAAAAAAZAAAAAAA + tiles: ZAAAAAACZAAAAAAAWQAAAAADWQAAAAABZAAAAAABWQAAAAADWQAAAAACWQAAAAACZAAAAAADWQAAAAABZAAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAATAAAAAAATAAAAAAAZAAAAAADZAAAAAADZAAAAAABZAAAAAAAZAAAAAABZAAAAAABZAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADZAAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAIgAAAAAAIgAAAAACIgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAADIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAIgAAAAABdgAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADIgAAAAAAeQAAAAAAHQAAAAADIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABdgAAAAABdgAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAADIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABIgAAAAABIgAAAAACIgAAAAACIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACZAAAAAADWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADIgAAAAABIgAAAAADIgAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAIgAAAAACeQAAAAAAIgAAAAAAZAAAAAADZAAAAAACZAAAAAAAWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATAAAAAADTAAAAAAAIgAAAAACeQAAAAAAZAAAAAADZAAAAAACZAAAAAADZAAAAAABWQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABWQAAAAABWQAAAAAAWQAAAAAAZAAAAAABZAAAAAABZAAAAAABZAAAAAACZAAAAAAAWQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAADWQAAAAABZAAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAZAAAAAADZAAAAAACZAAAAAACZAAAAAADWQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAWQAAAAABWQAAAAACZAAAAAABHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAZAAAAAACZAAAAAAAZAAAAAACZAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAACZAAAAAADZAAAAAABWQAAAAADeQAAAAAAIgAAAAADIgAAAAACIgAAAAACWQAAAAADWQAAAAACZAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAIgAAAAADHQAAAAAAHQAAAAACWQAAAAADWQAAAAAAZAAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABHQAAAAAAHQAAAAABWQAAAAACWQAAAAAAZAAAAAAD version: 6 1,-2: ind: 1,-2 - tiles: WQAAAAABWQAAAAADZAAAAAABWQAAAAAAZAAAAAADWQAAAAADeQAAAAAAHQAAAAADZAAAAAABZAAAAAABZAAAAAACZAAAAAABZAAAAAAAHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAABWQAAAAADeQAAAAAAHQAAAAACZAAAAAAAZAAAAAABZAAAAAABZAAAAAABZAAAAAABHQAAAAABeQAAAAAAHQAAAAADIgAAAAABHQAAAAABeQAAAAAAWQAAAAABZAAAAAACWQAAAAABeQAAAAAAHQAAAAADZAAAAAACZAAAAAABZAAAAAACWQAAAAADZAAAAAAAHQAAAAABHQAAAAABHQAAAAABIgAAAAAAHQAAAAACeQAAAAAAWQAAAAACZAAAAAACWQAAAAABeQAAAAAAHQAAAAACZAAAAAABZAAAAAABZAAAAAABZAAAAAADZAAAAAADHQAAAAADeQAAAAAAHQAAAAACIgAAAAAAHQAAAAAAeQAAAAAAZAAAAAACZAAAAAABZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABIgAAAAACHQAAAAABeQAAAAAAWQAAAAADZAAAAAADWQAAAAABIgAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAZAAAAAADZAAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAABZAAAAAADZAAAAAACWQAAAAABeQAAAAAAHQAAAAAAIgAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAZAAAAAABWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAMQAAAAAAMQAAAAAAWQAAAAABZAAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAMQAAAAAAMQAAAAAAWQAAAAAAZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAMQAAAAAAMQAAAAAAWQAAAAADZAAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAIgAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAWQAAAAAAZAAAAAABWQAAAAABZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADZAAAAAACZAAAAAABZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAA + tiles: WQAAAAAAWQAAAAACZAAAAAACWQAAAAAAZAAAAAADWQAAAAADeQAAAAAAHQAAAAABZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAABHQAAAAABeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAACWQAAAAAAeQAAAAAAHQAAAAADZAAAAAADZAAAAAADZAAAAAAAZAAAAAACZAAAAAAAHQAAAAABeQAAAAAAHQAAAAACIgAAAAAAHQAAAAAAeQAAAAAAWQAAAAACZAAAAAADWQAAAAABeQAAAAAAHQAAAAADZAAAAAADZAAAAAAAZAAAAAABWQAAAAABZAAAAAADHQAAAAACHQAAAAADHQAAAAABIgAAAAABHQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAABeQAAAAAAHQAAAAADZAAAAAAAZAAAAAADZAAAAAACZAAAAAACZAAAAAACHQAAAAADeQAAAAAAHQAAAAAAIgAAAAABHQAAAAACeQAAAAAAZAAAAAADZAAAAAADZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADIgAAAAADHQAAAAACeQAAAAAAWQAAAAADZAAAAAAAWQAAAAAAIgAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAIgAAAAABHQAAAAADeQAAAAAAWQAAAAACZAAAAAAAZAAAAAAAZAAAAAACZAAAAAACZAAAAAABZAAAAAAAZAAAAAACZAAAAAACZAAAAAAAWQAAAAACeQAAAAAAHQAAAAAAIgAAAAADHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABZAAAAAAAWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAMQAAAAAAMQAAAAAAWQAAAAADZAAAAAADWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAWQAAAAABZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAMQAAAAAAMQAAAAAAWQAAAAAAZAAAAAACWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAHQAAAAACIgAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAMQAAAAAAMQAAAAAAWQAAAAADZAAAAAABWQAAAAAAZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADZAAAAAADZAAAAAABZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAaQAAAAAAewAAAAAAewAAAAAAaQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAagAAAAABeQAAAAAAIgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAIgAAAAABIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAHQAAAAACHQAAAAAC + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAaQAAAAAAewAAAAAAewAAAAAAaQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAagAAAAACeQAAAAAAIgAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAIgAAAAACIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAHQAAAAACHQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: EgAAAAACWQAAAAADdgAAAAACdgAAAAABWQAAAAABeQAAAAAAIgAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACZAAAAAABWQAAAAAAWQAAAAAAWQAAAAACEgAAAAADWQAAAAAAdgAAAAACdgAAAAAAWQAAAAABeQAAAAAAWQAAAAACTAAAAAABTAAAAAADZAAAAAABTAAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAEgAAAAADWQAAAAABdgAAAAACdgAAAAABWQAAAAAAeQAAAAAAWQAAAAADTAAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABZAAAAAACWQAAAAAAWQAAAAADWQAAAAAAEgAAAAACWQAAAAABdgAAAAABdgAAAAACWQAAAAACZAAAAAACWQAAAAACZAAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACEgAAAAABWQAAAAADdgAAAAABdgAAAAAAWQAAAAACZAAAAAAAWQAAAAACTAAAAAAAWQAAAAAAWQAAAAAAZAAAAAADHQAAAAAAHQAAAAABJAAAAAAAJAAAAAABJAAAAAAAEgAAAAADWQAAAAABdgAAAAAAdgAAAAAAWQAAAAABeQAAAAAAWQAAAAACTAAAAAAAWQAAAAABWQAAAAAAZAAAAAADHQAAAAAAHQAAAAADTAAAAAADTAAAAAADTAAAAAACWQAAAAABWQAAAAABJgAAAAAAJgAAAAACWQAAAAABeQAAAAAAWQAAAAACZAAAAAABWQAAAAAAWQAAAAACZAAAAAADHQAAAAABHQAAAAABJAAAAAABJAAAAAACJAAAAAABJgAAAAAAJgAAAAAAJgAAAAACJgAAAAAAWQAAAAACeQAAAAAAWQAAAAADZAAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAagAAAAAAewAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAACZAAAAAADWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAQQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAACeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADeQAAAAAAQQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAQQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAWQAAAAAAZAAAAAABWQAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAeQAAAAAAQQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAABZAAAAAACWQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAA + tiles: EgAAAAAAWQAAAAAAdgAAAAACdgAAAAABWQAAAAACeQAAAAAAIgAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACZAAAAAADWQAAAAADWQAAAAABWQAAAAACEgAAAAACWQAAAAADdgAAAAABdgAAAAADWQAAAAACeQAAAAAAWQAAAAAATAAAAAACTAAAAAABZAAAAAADTAAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAADEgAAAAABWQAAAAADdgAAAAACdgAAAAADWQAAAAABeQAAAAAAWQAAAAACTAAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABZAAAAAAAWQAAAAACWQAAAAAAWQAAAAABEgAAAAACWQAAAAADdgAAAAABdgAAAAACWQAAAAADZAAAAAACWQAAAAADZAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABEgAAAAADWQAAAAADdgAAAAABdgAAAAABWQAAAAADZAAAAAABWQAAAAACTAAAAAADWQAAAAABWQAAAAACZAAAAAACHQAAAAACHQAAAAAAJAAAAAABJAAAAAABJAAAAAAAEgAAAAACWQAAAAADdgAAAAADdgAAAAAAWQAAAAAAeQAAAAAAWQAAAAACTAAAAAADWQAAAAADWQAAAAABZAAAAAACHQAAAAABHQAAAAABTAAAAAACTAAAAAACTAAAAAAAWQAAAAABWQAAAAAAJgAAAAAAJgAAAAABWQAAAAABeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAWQAAAAAAZAAAAAACHQAAAAABHQAAAAACJAAAAAACJAAAAAADJAAAAAADJgAAAAACJgAAAAADJgAAAAACJgAAAAABWQAAAAACeQAAAAAAWQAAAAAAZAAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAagAAAAABewAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAACZAAAAAADWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAACZAAAAAACeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAQQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAQQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAQQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAABdgAAAAADdgAAAAADdgAAAAACdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAQQAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACZAAAAAABWQAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: dgAAAAADdgAAAAAAdgAAAAACdgAAAAADdgAAAAABZAAAAAABWQAAAAACZAAAAAACWQAAAAABeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAATAAAAAABTAAAAAABJgAAAAACTAAAAAABTAAAAAADZAAAAAACWQAAAAACZAAAAAADWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeQAAAAAATAAAAAAATAAAAAABJgAAAAACTAAAAAADTAAAAAABZAAAAAABWQAAAAADZAAAAAADWQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAABZAAAAAACWQAAAAACZAAAAAAAWQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAZAAAAAACZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAWQAAAAACZAAAAAABWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAPgAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAJgAAAAACJgAAAAADJgAAAAAAeQAAAAAAWQAAAAACZAAAAAAAZAAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAJgAAAAABeQAAAAAAJgAAAAACJgAAAAABJgAAAAADeQAAAAAAWQAAAAACWQAAAAADZAAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAagAAAAAAagAAAAABeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADZAAAAAABZAAAAAADZAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAAAZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWwAAAAABWwAAAAACIgAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAADWQAAAAABWQAAAAAAWQAAAAADZAAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAADHQAAAAAAHQAAAAADWwAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAAAHQAAAAADHQAAAAADWwAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABWQAAAAABWQAAAAACWQAAAAACZAAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAACHQAAAAAAHQAAAAAAWwAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAACZAAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACZAAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADdgAAAAAC + tiles: dgAAAAADdgAAAAADdgAAAAADdgAAAAAAdgAAAAACZAAAAAACWQAAAAABZAAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAAAeQAAAAAATAAAAAACTAAAAAADJgAAAAAATAAAAAACTAAAAAAAZAAAAAAAWQAAAAACZAAAAAAAWQAAAAADeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAADeQAAAAAATAAAAAAATAAAAAADJgAAAAACTAAAAAAATAAAAAACZAAAAAACWQAAAAAAZAAAAAAAWQAAAAACeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAZAAAAAADWQAAAAABZAAAAAADWQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAJgAAAAACeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAZAAAAAABZAAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAZAAAAAABeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAZAAAAAADWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAABPgAAAAAAeQAAAAAAZAAAAAABeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAACeQAAAAAAWQAAAAAAZAAAAAADZAAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABPgAAAAAAPgAAAAAAWQAAAAAAeQAAAAAAJgAAAAACJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAABZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAagAAAAAAagAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAAAZAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAABZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWwAAAAADWwAAAAAAIgAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAACWQAAAAACWQAAAAAAWQAAAAAAZAAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAADHQAAAAADHQAAAAABWwAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAACWQAAAAABWQAAAAACWQAAAAADZAAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAADHQAAAAAAHQAAAAAAWwAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAADWQAAAAADWQAAAAACWQAAAAAAZAAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAACHQAAAAABHQAAAAAAWwAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAABWQAAAAADWQAAAAADWQAAAAADZAAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABZAAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAAB version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAADMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAZAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAATAAAAAAATAAAAAADZAAAAAACZAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAZAAAAAADZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABTAAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABZAAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAACeQAAAAAAIgAAAAADIgAAAAACIgAAAAACWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAABeQAAAAAAIgAAAAACIgAAAAABIgAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACZAAAAAADWQAAAAACeQAAAAAAIgAAAAADIgAAAAABIgAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAACZAAAAAAAZAAAAAAAeQAAAAAAZAAAAAACZAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAADZAAAAAABZAAAAAABGwAAAAACZAAAAAACZAAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAewAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAABZAAAAAACZAAAAAADWQAAAAABZAAAAAADZAAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADaAAAAAAAaQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAAAZAAAAAACZAAAAAACWQAAAAABZAAAAAABZAAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAAAZAAAAAADZAAAAAADeQAAAAAAZAAAAAACZAAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAD + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAABZAAAAAADMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABZAAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABTAAAAAADTAAAAAAAZAAAAAAAZAAAAAABaQAAAAAAaQAAAAAAaQAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAABZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAATAAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADZAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAZAAAAAACZAAAAAACZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAACeQAAAAAAIgAAAAABIgAAAAACIgAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAAAeQAAAAAAIgAAAAADIgAAAAAAIgAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAADeQAAAAAAIgAAAAACIgAAAAACIgAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAewAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAACZAAAAAADZAAAAAADeQAAAAAAZAAAAAADZAAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAWQAAAAADZAAAAAABZAAAAAADGwAAAAADZAAAAAADZAAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAABZAAAAAABZAAAAAADWQAAAAADZAAAAAACZAAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACaAAAAAAAaQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAAAZAAAAAAAZAAAAAAAWQAAAAABZAAAAAAAZAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAZAAAAAADZAAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: HQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAADdgAAAAADeQAAAAAAdgAAAAABHQAAAAAAHQAAAAABMQAAAAAAHQAAAAADHQAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABdgAAAAACdgAAAAADdgAAAAADHQAAAAACHQAAAAABMQAAAAAAHQAAAAABHQAAAAADdgAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAdgAAAAAAeQAAAAAAdgAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAABdgAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAACdgAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACWQAAAAABdgAAAAACdgAAAAABdgAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABWQAAAAABWQAAAAACdgAAAAADIgAAAAABeQAAAAAAHQAAAAACWQAAAAAAWQAAAAACWQAAAAADdgAAAAABdgAAAAACdgAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADZAAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACZAAAAAABWQAAAAADTAAAAAABTAAAAAABZAAAAAADTAAAAAADTAAAAAABZAAAAAABZAAAAAABTAAAAAACZAAAAAADTAAAAAADTAAAAAACTAAAAAABZAAAAAADTAAAAAAAZAAAAAACZAAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADZAAAAAAAWQAAAAAAWQAAAAABWQAAAAACZAAAAAABWQAAAAAAWQAAAAACWQAAAAABZAAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAA + tiles: HQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAABHQAAAAADdgAAAAAAeQAAAAAAdgAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAACHQAAAAAAdgAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAAAdgAAAAADdgAAAAADdgAAAAADHQAAAAABHQAAAAABMQAAAAAAHQAAAAACHQAAAAADdgAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAADdgAAAAACeQAAAAAAdgAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADdgAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAADdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAWQAAAAACWQAAAAABdgAAAAACIgAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAADdgAAAAAAdgAAAAACdgAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABZAAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABZAAAAAACWQAAAAABTAAAAAAATAAAAAAAZAAAAAABTAAAAAACTAAAAAAAZAAAAAACZAAAAAADTAAAAAABZAAAAAACTAAAAAADTAAAAAADTAAAAAADZAAAAAABTAAAAAAAZAAAAAACZAAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAZAAAAAACWQAAAAACWQAAAAADWQAAAAADZAAAAAACWQAAAAADWQAAAAAAWQAAAAAAZAAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAZAAAAAACWQAAAAABeQAAAAAAewAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAACeQAAAAAAewAAAAAAagAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAAAZAAAAAABeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAZAAAAAADZAAAAAADZAAAAAADZAAAAAACZAAAAAABeQAAAAAAagAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAADeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABZAAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAagAAAAACewAAAAAAeQAAAAAAWQAAAAACZAAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAagAAAAACewAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAAAeQAAAAAAcQAAAAABcQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAagAAAAABeQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAABeQAAAAAAcQAAAAAAcQAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADagAAAAABagAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAACZAAAAAABWQAAAAABeQAAAAAAcQAAAAACcQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAZAAAAAACWQAAAAACeQAAAAAAcQAAAAABcQAAAAABbAAAAAACIgAAAAABIgAAAAADIgAAAAADeQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeQAAAAAAWQAAAAADTAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIgAAAAAAeQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeQAAAAAAWQAAAAAATAAAAAADWQAAAAAAeQAAAAAAcQAAAAADcQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAZAAAAAAAZAAAAAACZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAAAeQAAAAAAcQAAAAABcQAAAAACbAAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAACWQAAAAABeQAAAAAAewAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAADeQAAAAAAewAAAAAAagAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAABZAAAAAADeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAZAAAAAACZAAAAAAAZAAAAAAAZAAAAAACZAAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAagAAAAADewAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAagAAAAACewAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAADeQAAAAAAcQAAAAACcQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAagAAAAABeQAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAADeQAAAAAAcQAAAAABcQAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADagAAAAAAagAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAACZAAAAAADWQAAAAABeQAAAAAAcQAAAAACcQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADZAAAAAADWQAAAAACeQAAAAAAcQAAAAABcQAAAAADbAAAAAACIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeQAAAAAAWQAAAAADTAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIgAAAAAAeQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeQAAAAAAWQAAAAAATAAAAAACWQAAAAABeQAAAAAAcQAAAAACcQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAACeQAAAAAAWQAAAAACZAAAAAABWQAAAAAAeQAAAAAAcQAAAAADcQAAAAAAbAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: ZAAAAAADZAAAAAACZAAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAZAAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAAAZAAAAAACZAAAAAAAWwAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAZAAAAAACdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADZAAAAAADZAAAAAADWwAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAZAAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAADZAAAAAAAZAAAAAACZAAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADZAAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAMQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAACWQAAAAABWQAAAAABWQAAAAAAHQAAAAABdgAAAAABMQAAAAAAMQAAAAAAMQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAMQAAAAAAdgAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAIgAAAAADHQAAAAADHQAAAAACdgAAAAABMQAAAAAAMQAAAAAAMQAAAAAAWQAAAAACWQAAAAADWQAAAAADMQAAAAAAdgAAAAAAIgAAAAACIgAAAAADIgAAAAAAeQAAAAAAIgAAAAACHQAAAAACHQAAAAADdgAAAAADMQAAAAAAMQAAAAAAMQAAAAAAWQAAAAADWQAAAAADWQAAAAABMQAAAAAAdgAAAAADIgAAAAACIgAAAAACIgAAAAACeQAAAAAAIgAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAADZAAAAAABZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAACeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAAAZAAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABcQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAACWQAAAAABWQAAAAADZAAAAAAAWQAAAAABdQAAAAADdQAAAAACdQAAAAACdQAAAAADdQAAAAAAdQAAAAAALAAAAAAALAAAAAAAdgAAAAACdgAAAAADdgAAAAABIgAAAAACeQAAAAAAWQAAAAABZAAAAAAAWQAAAAABeQAAAAAAIgAAAAACdQAAAAABdQAAAAAAdQAAAAABdQAAAAABeQAAAAAALAAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACWQAAAAACWQAAAAADZAAAAAABWQAAAAABWQAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAACeQAAAAAALAAAAAAAZAAAAAADZAAAAAADZAAAAAABZAAAAAABWQAAAAAAWQAAAAABZAAAAAACWQAAAAADWQAAAAADXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAADeQAAAAAALAAAAAAAOgAAAAAAOgAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAZAAAAAADWQAAAAABeQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAAAeQAAAAAAeQAAAAAA + tiles: ZAAAAAADZAAAAAABZAAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABZAAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAZAAAAAAAZAAAAAAAWwAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABZAAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAADZAAAAAAAZAAAAAAAWwAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACZAAAAAACdgAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAABZAAAAAACZAAAAAADZAAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAZAAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACMQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAACWQAAAAADWQAAAAAAWQAAAAABHQAAAAABdgAAAAACMQAAAAAAMQAAAAAAMQAAAAAAWQAAAAABWQAAAAADWQAAAAAAMQAAAAAAdgAAAAABHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAIgAAAAAAHQAAAAACHQAAAAABdgAAAAABMQAAAAAAMQAAAAAAMQAAAAAAWQAAAAACWQAAAAABWQAAAAABMQAAAAAAdgAAAAABIgAAAAADIgAAAAABIgAAAAABeQAAAAAAIgAAAAACHQAAAAADHQAAAAAAdgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAWQAAAAABWQAAAAABWQAAAAADMQAAAAAAdgAAAAABIgAAAAABIgAAAAABIgAAAAACeQAAAAAAIgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAAAZAAAAAADZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABZAAAAAABZAAAAAACZAAAAAADZAAAAAAAZAAAAAAAZAAAAAACZAAAAAADZAAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAABZAAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABcQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAWQAAAAADWQAAAAAAZAAAAAAAWQAAAAAAdQAAAAABdQAAAAADdQAAAAACdQAAAAABdQAAAAADdQAAAAACLAAAAAAALAAAAAAAdgAAAAABdgAAAAACdgAAAAABIgAAAAABeQAAAAAAWQAAAAAAZAAAAAABWQAAAAADeQAAAAAAIgAAAAACdQAAAAABdQAAAAACdQAAAAADdQAAAAACeQAAAAAALAAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAACWQAAAAACWQAAAAACZAAAAAACWQAAAAACWQAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAADeQAAAAAALAAAAAAAZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAWQAAAAAAWQAAAAADZAAAAAAAWQAAAAAAWQAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAADeQAAAAAALAAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABZAAAAAABWQAAAAABeQAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAADeQAAAAAAeQAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: aQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAIgAAAAADIgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAACaQAAAAAAaQAAAAAAIgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAIgAAAAACIgAAAAADeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAIgAAAAAAIgAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAIgAAAAADIgAAAAADaQAAAAAAaQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABIgAAAAAAIgAAAAABIgAAAAACIgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAIgAAAAAAeQAAAAAAewAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAACIgAAAAADIgAAAAAAIgAAAAACIgAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADIgAAAAACIgAAAAADIgAAAAADIgAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAIgAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABWQAAAAADWQAAAAABZAAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAHQAAAAACZAAAAAACZAAAAAABZAAAAAAAZAAAAAACZAAAAAADHQAAAAADeQAAAAAAHQAAAAABTAAAAAADZAAAAAAAZAAAAAABZAAAAAAAZAAAAAACWQAAAAADeQAAAAAAHQAAAAAAZAAAAAADZAAAAAACZAAAAAAAZAAAAAADZAAAAAABHQAAAAACeQAAAAAAHQAAAAAC + tiles: aQAAAAAAeQAAAAAAIgAAAAAAIgAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAIgAAAAABIgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAAAaQAAAAAAaQAAAAAAIgAAAAACIgAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAIgAAAAACIgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAABaQAAAAAAaQAAAAAAIgAAAAADIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAIgAAAAADIgAAAAAAIgAAAAABIgAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAIgAAAAADeQAAAAAAewAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADIgAAAAACIgAAAAABIgAAAAABIgAAAAACIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADIgAAAAAAIgAAAAADIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAIgAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAWQAAAAAAWQAAAAACZAAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABZAAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAADHQAAAAABeQAAAAAAHQAAAAACTAAAAAABZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABWQAAAAABeQAAAAAAHQAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAABZAAAAAABHQAAAAAAeQAAAAAAHQAAAAAB version: 6 0,-3: ind: 0,-3 - tiles: eAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAagAAAAADagAAAAACeQAAAAAAaAAAAAAAaAAAAAAAewAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABIgAAAAACIgAAAAADIgAAAAADeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABZAAAAAACZAAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAADZAAAAAABIgAAAAACeQAAAAAAWQAAAAAAWQAAAAADHQAAAAAAHQAAAAACHQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIgAAAAABIgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACIgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAagAAAAACagAAAAAAagAAAAAAeQAAAAAAeQAAAAAAewAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABZAAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABZAAAAAABZAAAAAABZAAAAAAAZAAAAAABTAAAAAABZAAAAAADTAAAAAAAZAAAAAAB + tiles: eAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAIgAAAAADIgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAagAAAAACagAAAAACeQAAAAAAaAAAAAAAaAAAAAAAewAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABIgAAAAAAIgAAAAADIgAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABZAAAAAACZAAAAAACIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABZAAAAAABZAAAAAABIgAAAAADeQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAADHQAAAAABIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAABIgAAAAACIgAAAAADIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACIgAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAagAAAAABagAAAAADagAAAAAAeQAAAAAAeQAAAAAAewAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACZAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAZAAAAAABZAAAAAABZAAAAAAAZAAAAAADTAAAAAACZAAAAAADTAAAAAADZAAAAAAC version: 6 1,1: ind: 1,1 - tiles: aAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAACZAAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABIgAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACZAAAAAAAWQAAAAACWQAAAAABZAAAAAABWQAAAAAAeQAAAAAAWQAAAAACZAAAAAABZAAAAAABZAAAAAADWQAAAAADZAAAAAABZAAAAAABZAAAAAABWQAAAAADZAAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAACWQAAAAADeQAAAAAAWQAAAAACZAAAAAABZAAAAAADZAAAAAACWQAAAAAAZAAAAAADZAAAAAABZAAAAAADWQAAAAABWQAAAAADZAAAAAADWQAAAAABWQAAAAACWQAAAAADIgAAAAADeQAAAAAAWQAAAAAAZAAAAAABZAAAAAAAZAAAAAADWQAAAAADZAAAAAABZAAAAAAAZAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACcQAAAAAAcAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADcAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: aAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAADZAAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAIgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAZAAAAAAAWQAAAAACWQAAAAACZAAAAAAAWQAAAAADeQAAAAAAWQAAAAACZAAAAAADZAAAAAACZAAAAAAAWQAAAAADZAAAAAAAZAAAAAACZAAAAAABWQAAAAAAZAAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAADWQAAAAADeQAAAAAAWQAAAAACZAAAAAACZAAAAAABZAAAAAACWQAAAAAAZAAAAAABZAAAAAAAZAAAAAACWQAAAAABWQAAAAACZAAAAAAAWQAAAAADWQAAAAADWQAAAAACIgAAAAAAeQAAAAAAWQAAAAABZAAAAAABZAAAAAADZAAAAAACWQAAAAABZAAAAAABZAAAAAAAZAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABcQAAAAADcAAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAACcAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: eQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAagAAAAABagAAAAACaAAAAAAAaAAAAAAAagAAAAAAagAAAAABeQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACZAAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABZAAAAAABZAAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAAAZAAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAADZAAAAAAAZAAAAAAAZAAAAAACZAAAAAADZAAAAAABWQAAAAABWQAAAAACWQAAAAABZAAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADbAAAAAABbAAAAAACcQAAAAADcAAAAAADcAAAAAADcAAAAAACWQAAAAADWQAAAAACWQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADbAAAAAACbAAAAAAAcQAAAAACcAAAAAACcAAAAAACcAAAAAADeQAAAAAAWQAAAAADWQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAADcAAAAAAAcAAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAagAAAAABagAAAAADeQAAAAAAcQAAAAABcQAAAAAAcQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAZAAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAbAAAAAACbAAAAAABZAAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAALAAAAAAAeQAAAAAALAAAAAAA + tiles: eQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAagAAAAADagAAAAACaAAAAAAAaAAAAAAAagAAAAAAagAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABZAAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACZAAAAAADZAAAAAACZAAAAAADZAAAAAABZAAAAAADZAAAAAADZAAAAAABZAAAAAAAZAAAAAADZAAAAAADZAAAAAADZAAAAAACZAAAAAACZAAAAAABZAAAAAAAZAAAAAAAWQAAAAABWQAAAAAAWQAAAAABZAAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAACbAAAAAACbAAAAAADcQAAAAABcAAAAAAAcAAAAAABcAAAAAADWQAAAAACWQAAAAABWQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAABbAAAAAACbAAAAAADcQAAAAABcAAAAAACcAAAAAACcAAAAAACeQAAAAAAWQAAAAABWQAAAAACHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAADcAAAAAADcAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAagAAAAAAagAAAAADeQAAAAAAcQAAAAACcQAAAAADcQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAZAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAbAAAAAABbAAAAAABZAAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAALAAAAAAAeQAAAAAALAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: aAAAAAAAeQAAAAAAewAAAAAAaQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAagAAAAACaAAAAAAAaAAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAZAAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAZAAAAAAAZAAAAAABZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAABZAAAAAADZAAAAAABZAAAAAABTAAAAAACTAAAAAADZAAAAAACTAAAAAADTAAAAAABZAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAZAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAADHQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADHQAAAAAAHQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAIgAAAAAAIgAAAAACWQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAATAAAAAABTAAAAAAAHQAAAAACTAAAAAAATAAAAAAATAAAAAADHQAAAAABTAAAAAACTAAAAAACHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABIgAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAIgAAAAAAIgAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAB + tiles: aAAAAAAAeQAAAAAAewAAAAAAaQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAagAAAAADaAAAAAAAaAAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABZAAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADZAAAAAADZAAAAAACZAAAAAABZAAAAAABZAAAAAADZAAAAAACZAAAAAABZAAAAAACZAAAAAACZAAAAAAATAAAAAAATAAAAAABZAAAAAAATAAAAAAATAAAAAAAZAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADZAAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACHQAAAAABHQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAADHQAAAAACHQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAIgAAAAAAIgAAAAAAWQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAADTAAAAAACTAAAAAACHQAAAAACTAAAAAADTAAAAAACTAAAAAACHQAAAAAATAAAAAACTAAAAAADHQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACIgAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAIgAAAAADIgAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAC version: 6 -2,1: ind: -2,1 - tiles: OgAAAAAAOgAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAZAAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABOgAAAAAAOgAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADZAAAAAACWQAAAAABJgAAAAAAJgAAAAACJgAAAAADJgAAAAACJgAAAAACJgAAAAABeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZAAAAAABZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAACZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAABZAAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACZAAAAAABZAAAAAACeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACIgAAAAAAJgAAAAADJgAAAAADJgAAAAABJgAAAAACJgAAAAACJgAAAAADWQAAAAACZAAAAAADewAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAABaAAAAAAAaAAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACagAAAAADagAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAewAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAagAAAAADeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAeQAAAAAAagAAAAACeQAAAAAAIgAAAAACIgAAAAAAIgAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAIgAAAAACIgAAAAACIgAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAagAAAAAAagAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAIgAAAAABWQAAAAAAWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAC + tiles: OgAAAAAAOgAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABZAAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAAAJgAAAAADJgAAAAADJgAAAAACJgAAAAADJgAAAAAAJgAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAACWwAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAWQAAAAACWQAAAAADZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAADZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADZAAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADZAAAAAAAZAAAAAACeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACIgAAAAACJgAAAAACJgAAAAABJgAAAAAAJgAAAAABJgAAAAABJgAAAAAAWQAAAAAAZAAAAAADewAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABagAAAAAAagAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAewAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAABdgAAAAADdgAAAAADdgAAAAAAagAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIgAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAagAAAAADeQAAAAAAIgAAAAAAIgAAAAACIgAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAewAAAAAAeQAAAAAAIgAAAAABIgAAAAABIgAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAagAAAAACagAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAIgAAAAABWQAAAAACWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAB version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWgAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWgAAAAAAXQAAAAABWgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAWgAAAAABXQAAAAAAWQAAAAAAWgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWgAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAZAAAAAACZAAAAAACZAAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACewAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAagAAAAAAagAAAAAAewAAAAAAeQAAAAAAeQAAAAAAagAAAAABagAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAZAAAAAABZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAACZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWgAAAAAAXQAAAAABWgAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAWgAAAAAAXQAAAAAAWQAAAAADWgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWgAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAZAAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABewAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACaQAAAAAAaQAAAAAAagAAAAAAagAAAAABewAAAAAAeQAAAAAAeQAAAAAAagAAAAACagAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAZAAAAAACZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAACZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAD version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACIgAAAAADIgAAAAAAIgAAAAABIgAAAAABIgAAAAADIgAAAAACIgAAAAADIgAAAAABIgAAAAAAIgAAAAADIgAAAAACIgAAAAADIgAAAAAAIgAAAAACIgAAAAADIgAAAAACIgAAAAADIgAAAAACIgAAAAABIgAAAAACIgAAAAACIgAAAAABIgAAAAADIgAAAAAAIgAAAAABIgAAAAABIgAAAAAAIgAAAAADIgAAAAABIgAAAAADIgAAAAACIgAAAAAAIgAAAAAAJAAAAAABJAAAAAAAJAAAAAADJAAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACJAAAAAACJAAAAAADJAAAAAADJAAAAAADIgAAAAACIgAAAAACIgAAAAAAJAAAAAAAJAAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAJAAAAAABJAAAAAAAIgAAAAACIgAAAAACIgAAAAAAJAAAAAADJAAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACJAAAAAABJAAAAAACIgAAAAACHQAAAAACHQAAAAABIgAAAAABIgAAAAADHQAAAAABHQAAAAACIgAAAAAAIgAAAAABIgAAAAADIgAAAAACIgAAAAABHQAAAAABHQAAAAABIgAAAAAAIgAAAAABHQAAAAACHQAAAAABHQAAAAABJAAAAAACIgAAAAAAIgAAAAADIgAAAAABIgAAAAADIgAAAAABIgAAAAAAIgAAAAACIgAAAAAAIgAAAAADIgAAAAAAIgAAAAACJAAAAAAAHQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACIgAAAAABIgAAAAABIgAAAAAAIgAAAAADIgAAAAABIgAAAAADIgAAAAAAIgAAAAABIgAAAAADIgAAAAACIgAAAAABIgAAAAABIgAAAAACIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAADIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAABIgAAAAACIgAAAAACIgAAAAACIgAAAAABIgAAAAADIgAAAAACIgAAAAADIgAAAAADIgAAAAABIgAAAAABIgAAAAACIgAAAAADJAAAAAADJAAAAAACJAAAAAACJAAAAAABJAAAAAABJAAAAAAAJAAAAAAAJAAAAAABJAAAAAAAJAAAAAACJAAAAAACJAAAAAADIgAAAAAAIgAAAAABIgAAAAAAJAAAAAAAJAAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAJAAAAAAAJAAAAAAAIgAAAAABIgAAAAABIgAAAAAAJAAAAAAAJAAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACJAAAAAACJAAAAAACIgAAAAADHQAAAAADHQAAAAACIgAAAAABIgAAAAADHQAAAAACHQAAAAADIgAAAAABIgAAAAADIgAAAAACIgAAAAACIgAAAAAAHQAAAAACHQAAAAAAIgAAAAADIgAAAAACHQAAAAABHQAAAAADHQAAAAACJAAAAAACIgAAAAABIgAAAAACIgAAAAADIgAAAAADIgAAAAABIgAAAAADIgAAAAABIgAAAAABIgAAAAAAIgAAAAAAIgAAAAACJAAAAAABHQAAAAAC version: 6 3,-2: ind: 3,-2 - tiles: HQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAewAAAAAAaQAAAAAAaQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAABwAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACWQAAAAABHQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABZAAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAACMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAZAAAAAADWQAAAAADZAAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAACZAAAAAACMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAZAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACZAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAZAAAAAABWQAAAAACWQAAAAACIgAAAAAAeQAAAAAAWQAAAAADTAAAAAABTAAAAAABZAAAAAABTAAAAAACTAAAAAADZAAAAAACZAAAAAABZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAewAAAAAAagAAAAABagAAAAABagAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAB + tiles: HQAAAAAAHQAAAAABeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABHQAAAAACHQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAABwAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAewAAAAAAaQAAAAAAaQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAABwAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABWQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACZAAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAZAAAAAADWQAAAAADZAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAZAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACZAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAZAAAAAACWQAAAAACWQAAAAAAIgAAAAAAeQAAAAAAWQAAAAADTAAAAAAATAAAAAABZAAAAAADTAAAAAABTAAAAAADZAAAAAACZAAAAAACZAAAAAABZAAAAAABZAAAAAACZAAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAD version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIgAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABIgAAAAABIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAFIgAAAAABIgAAAAABeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAIgAAAAADIgAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAADHQAAAAADNgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAegAAAAAAIgAAAAADIgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADNgAAAAAAHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIgAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAIgAAAAACIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAACIgAAAAAAIgAAAAABeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAJIgAAAAABIgAAAAABHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAHQAAAAABHQAAAAADNgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAABwAAAAAGBwAAAAAAegAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAANgAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdwAAAAABeQAAAAAAdwAAAAABewAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAEwAAAAAAdwAAAAAAdwAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAEwAAAAAAewAAAAAAdwAAAAABdwAAAAADdwAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADWQAAAAADJgAAAAACJgAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAagAAAAAAWQAAAAACJgAAAAACeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAagAAAAABdgAAAAADdgAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAJgAAAAADJgAAAAACJgAAAAABJgAAAAAAJgAAAAADJgAAAAABJgAAAAAAJgAAAAACeQAAAAAAaQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAACJgAAAAADJgAAAAADJgAAAAABJgAAAAABJgAAAAACJgAAAAACJgAAAAABJgAAAAABeQAAAAAAaQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACJgAAAAABJgAAAAABJgAAAAABJgAAAAAAJgAAAAADJgAAAAADJgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAIgAAAAACeQAAAAAAaQAAAAAAJgAAAAADJgAAAAADJgAAAAABJgAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABJgAAAAADJgAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAABdwAAAAACeQAAAAAAdwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAewAAAAAAeQAAAAAAEwAAAAABdwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAEwAAAAACewAAAAAAdwAAAAACdwAAAAADeQAAAAAAagAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAdgAAAAADIgAAAAACeQAAAAAAdgAAAAABeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACWQAAAAACJgAAAAADJgAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAagAAAAADWQAAAAACJgAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAagAAAAABdgAAAAADdgAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAJgAAAAACJgAAAAABJgAAAAACJgAAAAACJgAAAAABJgAAAAACJgAAAAAAJgAAAAADeQAAAAAAaQAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACJgAAAAAAJgAAAAAAJgAAAAACJgAAAAACJgAAAAABJgAAAAADJgAAAAACJgAAAAACeQAAAAAAaQAAAAAAdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADJgAAAAABJgAAAAADJgAAAAABJgAAAAAAJgAAAAADJgAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAACdgAAAAADIgAAAAADeQAAAAAAaQAAAAAAJgAAAAAAJgAAAAADJgAAAAABJgAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADJgAAAAACJgAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC version: 6 -3,-1: ind: -3,-1 - tiles: HQAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAaAAAAAAAagAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAaAAAAAAAagAAAAACeQAAAAAAdgAAAAADTAAAAAAATAAAAAAAJgAAAAABTAAAAAADTAAAAAAAJgAAAAABHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAdgAAAAAATAAAAAADTAAAAAACJgAAAAABTAAAAAACTAAAAAACJgAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYQAAAAABYQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYQAAAAADYQAAAAADeQAAAAAAJgAAAAADJgAAAAABJgAAAAACeQAAAAAAJgAAAAAAJgAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYQAAAAAAYQAAAAABeQAAAAAAJgAAAAACJgAAAAACJgAAAAACeQAAAAAAJgAAAAADJgAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADagAAAAADagAAAAADaAAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADIgAAAAACWwAAAAABWwAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWwAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAWwAAAAADHQAAAAAAHQAAAAACIgAAAAABIgAAAAAAIgAAAAABIgAAAAADIgAAAAAAWQAAAAACWQAAAAABeQAAAAAAWwAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAAAWwAAAAAAHQAAAAACHQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWwAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAADWwAAAAACHQAAAAACHQAAAAACIgAAAAAAIgAAAAACIgAAAAAAIgAAAAABIgAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAC + tiles: HQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAaAAAAAAAagAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAaAAAAAAAagAAAAADeQAAAAAAdgAAAAACTAAAAAAATAAAAAABJgAAAAAATAAAAAABTAAAAAADJgAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAdgAAAAABTAAAAAACTAAAAAABJgAAAAACTAAAAAACTAAAAAACJgAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAJgAAAAADJgAAAAADaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYQAAAAADYQAAAAACeQAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAZAAAAAADJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYQAAAAABYQAAAAADeQAAAAAAJgAAAAABJgAAAAAAJgAAAAABeQAAAAAAZAAAAAABJgAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAYQAAAAACYQAAAAACeQAAAAAAJgAAAAABJgAAAAAAJgAAAAACeQAAAAAAWQAAAAADWQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACagAAAAAAagAAAAABaAAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABIgAAAAABWwAAAAACWwAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWwAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADWwAAAAACHQAAAAADHQAAAAACIgAAAAADIgAAAAADIgAAAAABIgAAAAADIgAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWwAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAADWwAAAAACHQAAAAADHQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWwAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAHQAAAAACHQAAAAADIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAACIgAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAD version: 6 -3,0: ind: -3,0 - tiles: YQAAAAADYQAAAAACYQAAAAAAYQAAAAADYQAAAAAAWQAAAAACZAAAAAADZAAAAAADWQAAAAADWQAAAAACZAAAAAADZAAAAAADZAAAAAAAZAAAAAACZAAAAAACWQAAAAACTAAAAAADTAAAAAABZAAAAAAATAAAAAADTAAAAAADZAAAAAAAZAAAAAABZAAAAAAAWQAAAAADWQAAAAACWwAAAAADZAAAAAABZAAAAAADZAAAAAACWwAAAAABZAAAAAACYQAAAAAAYQAAAAADYQAAAAADYQAAAAACYQAAAAABWQAAAAAAZAAAAAACZAAAAAAAWQAAAAADWQAAAAADWwAAAAACZAAAAAAAZAAAAAACZAAAAAAAWwAAAAACZAAAAAADIgAAAAABIgAAAAAAIgAAAAAAIgAAAAABIgAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAACZAAAAAABZAAAAAADMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAIgAAAAABIgAAAAAAIgAAAAABIgAAAAADIgAAAAADWQAAAAABWQAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAdgAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAdgAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAdgAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADewAAAAAAagAAAAABaAAAAAAAaQAAAAAAeQAAAAAAAgAAAAAAIgAAAAACIgAAAAACIgAAAAADIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAaQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAZAAAAAACAgAAAAAAIgAAAAACIgAAAAADHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAZAAAAAADAgAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAZAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADfAAAAAACeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAWQAAAAAB + tiles: YQAAAAABYQAAAAADYQAAAAACYQAAAAAAYQAAAAAAWQAAAAADZAAAAAACZAAAAAADWQAAAAABWQAAAAADZAAAAAAAZAAAAAABZAAAAAAAZAAAAAACZAAAAAACWQAAAAACTAAAAAADTAAAAAADZAAAAAAATAAAAAACTAAAAAAAZAAAAAACZAAAAAACZAAAAAABWQAAAAABWQAAAAACWwAAAAACZAAAAAACZAAAAAABZAAAAAABWwAAAAAAZAAAAAACYQAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAAAWQAAAAADZAAAAAADZAAAAAACWQAAAAADWQAAAAADWwAAAAADZAAAAAADZAAAAAADZAAAAAAAWwAAAAACZAAAAAACIgAAAAADIgAAAAADIgAAAAACIgAAAAAAIgAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAADMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADdgAAAAABdgAAAAABdgAAAAACdgAAAAABdgAAAAACIgAAAAAAIgAAAAACIgAAAAAAIgAAAAAAIgAAAAABWQAAAAAAWQAAAAABeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAdgAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAdgAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAdgAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACewAAAAAAagAAAAADaAAAAAAAaQAAAAAAeQAAAAAAAgAAAAAAIgAAAAACIgAAAAABIgAAAAABIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADaQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAZAAAAAAAAgAAAAAAIgAAAAAAIgAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAZAAAAAADAgAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAAewAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADZAAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADfAAAAAACeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAWQAAAAAD version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABewAAAAAAeQAAAAAAagAAAAADewAAAAAAewAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAagAAAAABagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAADQwAAAAAAIQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAewAAAAAAEwAAAAAAewAAAAAAdgAAAAABdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAewAAAAAAfAAAAAACEwAAAAAEdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAfAAAAAACewAAAAAAewAAAAAAewAAAAAAfAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAewAAAAAAewAAAAAAfAAAAAACewAAAAAAEwAAAAAGeQAAAAAAdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEwAAAAAAeQAAAAAAewAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfAAAAAACEwAAAAAAdgAAAAABdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABewAAAAAAeQAAAAAAagAAAAAAewAAAAAAewAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAagAAAAADagAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAABQwAAAAAAIQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAewAAAAAAEwAAAAAEewAAAAAAdgAAAAABdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAewAAAAAAfAAAAAAAEwAAAAAGdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAACdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAewAAAAAAewAAAAAAfAAAAAACewAAAAAAEwAAAAADeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEwAAAAACeQAAAAAAewAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfAAAAAABEwAAAAAGdgAAAAACdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: ZAAAAAACZAAAAAACZAAAAAABZAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAdgAAAAACdgAAAAADWQAAAAABEgAAAAABEgAAAAAAEgAAAAAAEgAAAAABEgAAAAAAeQAAAAAAeQAAAAAAIgAAAAACZAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACdgAAAAACdgAAAAAAWQAAAAAAEgAAAAABEgAAAAABEgAAAAABEgAAAAADEgAAAAAAMQAAAAAAMQAAAAAAIgAAAAAAZAAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAADdgAAAAACdgAAAAABWQAAAAABEgAAAAACEgAAAAAAEgAAAAADEgAAAAACEgAAAAABMQAAAAAAMQAAAAAAIgAAAAADZAAAAAADZAAAAAABWQAAAAADZAAAAAABWQAAAAACdgAAAAAAdgAAAAAAWQAAAAACEgAAAAADEgAAAAAAEgAAAAACEgAAAAACEgAAAAABMQAAAAAAMQAAAAAAIgAAAAAAZAAAAAADZAAAAAABWQAAAAABZAAAAAACWQAAAAAAdgAAAAABdgAAAAACWQAAAAAAEgAAAAABEgAAAAABEgAAAAADEgAAAAADEgAAAAADMQAAAAAAMQAAAAAAIgAAAAABZAAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADdgAAAAACdgAAAAABWQAAAAADEgAAAAADEgAAAAABEgAAAAACEgAAAAABEgAAAAAAeQAAAAAAeQAAAAAAIgAAAAABZAAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABJgAAAAABJgAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAJgAAAAACJgAAAAADJgAAAAAAJgAAAAACJgAAAAAAJgAAAAADJgAAAAACJgAAAAACZAAAAAACZAAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAagAAAAABagAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAaQAAAAAAagAAAAAAZAAAAAACZAAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACKQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAAQQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAADKQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAADKQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAAQQAAAAAAWQAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAACeQAAAAAAewAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAAQQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAC + tiles: ZAAAAAABZAAAAAADZAAAAAACZAAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAdgAAAAADdgAAAAABWQAAAAADEgAAAAAAEgAAAAACEgAAAAADEgAAAAACEgAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAZAAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAdgAAAAAAdgAAAAAAWQAAAAABEgAAAAACEgAAAAACEgAAAAACEgAAAAACEgAAAAAAMQAAAAAAMQAAAAAAIgAAAAADZAAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADdgAAAAADdgAAAAAAWQAAAAADEgAAAAABEgAAAAAAEgAAAAACEgAAAAABEgAAAAABMQAAAAAAMQAAAAAAIgAAAAACZAAAAAADZAAAAAABWQAAAAADZAAAAAAAWQAAAAABdgAAAAADdgAAAAABWQAAAAABEgAAAAABEgAAAAACEgAAAAABEgAAAAAAEgAAAAABMQAAAAAAMQAAAAAAIgAAAAADZAAAAAABZAAAAAAAWQAAAAACZAAAAAACWQAAAAADdgAAAAAAdgAAAAADWQAAAAACEgAAAAADEgAAAAAAEgAAAAADEgAAAAAAEgAAAAAAMQAAAAAAMQAAAAAAIgAAAAACZAAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABdgAAAAABdgAAAAABWQAAAAADEgAAAAAAEgAAAAACEgAAAAABEgAAAAAAEgAAAAACeQAAAAAAeQAAAAAAIgAAAAACZAAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAABJgAAAAAAJgAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADZAAAAAABZAAAAAABZAAAAAABZAAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAJgAAAAACJgAAAAAAJgAAAAACJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAACZAAAAAADZAAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAagAAAAADagAAAAACagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAaQAAAAAAagAAAAAAZAAAAAADZAAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACKQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAAQQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAADKQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADKQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAAQQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAewAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAAQQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAC version: 6 -3,-3: ind: -3,-3 - tiles: WQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABZAAAAAADWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAATAAAAAADTAAAAAABZAAAAAADTAAAAAADTAAAAAADZAAAAAAAZAAAAAABZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAIgAAAAADIgAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAZAAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAATAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAADWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAZAAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAMeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAACWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaQAAAAAAagAAAAACeQAAAAAAJgAAAAACWQAAAAABTAAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAJgAAAAABWQAAAAAAZAAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAdgAAAAACTAAAAAACWQAAAAACWQAAAAADeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABTAAAAAABWQAAAAAAeQAAAAAAeQAAAAAAagAAAAADaQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADZAAAAAADWQAAAAACeQAAAAAAeQAAAAAAagAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACJgAAAAACJgAAAAACJgAAAAAAJgAAAAABJgAAAAABJgAAAAAAJgAAAAABJgAAAAACZAAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAJgAAAAABJgAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAD + tiles: WQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAZAAAAAAAWQAAAAABeQAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAATAAAAAADTAAAAAAAZAAAAAADTAAAAAABTAAAAAAAZAAAAAABZAAAAAAAZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAIgAAAAACIgAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAZAAAAAACZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAZAAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAATAAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAADWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAZAAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaQAAAAAAagAAAAACeQAAAAAAJgAAAAABWQAAAAACTAAAAAACWQAAAAABeQAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAJgAAAAACWQAAAAAAZAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAdgAAAAAATAAAAAACWQAAAAADWQAAAAACeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADTAAAAAABWQAAAAADeQAAAAAAeQAAAAAAagAAAAAAaQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAZAAAAAACWQAAAAABeQAAAAAAeQAAAAAAagAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADJgAAAAACJgAAAAACJgAAAAACJgAAAAABJgAAAAACJgAAAAACJgAAAAABJgAAAAACZAAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACJgAAAAADJgAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAAAZAAAAAABWQAAAAABWQAAAAACYQAAAAACYQAAAAAAYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAAATAAAAAADTAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAACZAAAAAADWQAAAAABWQAAAAABYQAAAAACYQAAAAADYQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAABIgAAAAABIgAAAAADIgAAAAAAIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAAAWQAAAAABWQAAAAADMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAABWQAAAAACWQAAAAACIgAAAAAAIgAAAAACIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAIgAAAAACIgAAAAACIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACIgAAAAACIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAABZAAAAAADWQAAAAAAWQAAAAABYQAAAAADYQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAACTAAAAAAATAAAAAADZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAADZAAAAAAAWQAAAAABWQAAAAAAYQAAAAACYQAAAAADYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAADIgAAAAABIgAAAAAAIgAAAAAAIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADWQAAAAADWQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAABWQAAAAAAIgAAAAABIgAAAAADIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAIgAAAAAAIgAAAAABIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADIgAAAAADIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABTAAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABTAAAAAACWQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZAAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABTAAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADTAAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABTAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAATAAAAAAAWQAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACTAAAAAADWQAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADZAAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAADWQAAAAABWQAAAAAAIgAAAAADIgAAAAABIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAADWQAAAAACWQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAAAIgAAAAABIgAAAAACIgAAAAAAIgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABTAAAAAADWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADTAAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADTAAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACTAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAATAAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABZAAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADTAAAAAADWQAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABTAAAAAAAWQAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAABeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABZAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAACZAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAABWQAAAAAAIgAAAAABIgAAAAACIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADWQAAAAABWQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAABIgAAAAABIgAAAAACIgAAAAACIgAAAAAD version: 6 -4,-2: ind: -4,-2 - tiles: eQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAABagAAAAABeQAAAAAAeQAAAAAAWQAAAAADZAAAAAACZAAAAAADZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAADIgAAAAABeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACZAAAAAABIgAAAAACMQAAAAAAewAAAAAAeQAAAAAAIgAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAZAAAAAABIgAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAZAAAAAABIgAAAAADMQAAAAAAewAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACZAAAAAACIgAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABHQAAAAADeQAAAAAAZAAAAAABZAAAAAABZAAAAAAAZAAAAAACZAAAAAADWQAAAAAAZAAAAAABIgAAAAACeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAADZAAAAAACWQAAAAABZAAAAAAAZAAAAAAAZAAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAZAAAAAADagAAAAAAagAAAAAAagAAAAABeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACZAAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAACZAAAAAABZAAAAAADZAAAAAACZAAAAAADZAAAAAACeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAZAAAAAAAZAAAAAABZAAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAA + tiles: eQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABagAAAAADagAAAAACeQAAAAAAeQAAAAAAWQAAAAAAZAAAAAABZAAAAAAAZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAIgAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAABZAAAAAADIgAAAAAAMQAAAAAAewAAAAAAeQAAAAAAIgAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAZAAAAAABIgAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAADZAAAAAADIgAAAAADMQAAAAAAewAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAZAAAAAADIgAAAAACMQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAADWQAAAAABZAAAAAAAIgAAAAABeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAACZAAAAAAAWQAAAAACZAAAAAACZAAAAAACZAAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAABZAAAAAACagAAAAAAagAAAAABagAAAAABeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADZAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABZAAAAAAAZAAAAAACZAAAAAABZAAAAAAAZAAAAAADZAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAZAAAAAACZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADZAAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAAD version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAZAAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADZAAAAAACZAAAAAAAZAAAAAACTAAAAAADTAAAAAACZAAAAAADTAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWgAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWgAAAAAAWQAAAAAAeQAAAAAAewAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWgAAAAAAWgAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACXQAAAAADXQAAAAAAWgAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAZAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACZAAAAAADZAAAAAAAZAAAAAAATAAAAAADTAAAAAAAZAAAAAACTAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWgAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWgAAAAAAWQAAAAADeQAAAAAAewAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWgAAAAAAWgAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACXQAAAAABXQAAAAACWgAAAAABWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAA version: 6 2,0: ind: 2,0 - tiles: HQAAAAAAHQAAAAABHQAAAAACeQAAAAAAZAAAAAADZAAAAAABZAAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAABZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADWQAAAAACZAAAAAADWQAAAAAAcQAAAAABcQAAAAABcQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAADIgAAAAACWQAAAAABWQAAAAADWQAAAAACZAAAAAACWQAAAAAAWQAAAAAATAAAAAACWQAAAAAAcQAAAAAAcQAAAAADcQAAAAACeQAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAAATAAAAAAATAAAAAADZAAAAAACZAAAAAADZAAAAAABTAAAAAACTAAAAAADWQAAAAABcQAAAAACcQAAAAABZAAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACZAAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACcQAAAAACcQAAAAAAcQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAagAAAAABeQAAAAAAWQAAAAADeQAAAAAAcQAAAAAAcQAAAAADbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAABcQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAagAAAAACeQAAAAAAWQAAAAACeQAAAAAAcQAAAAABcQAAAAADTAAAAAAAbAAAAAADcQAAAAADbAAAAAADTAAAAAABcQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAACcQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAewAAAAAAewAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABIgAAAAACbAAAAAADbAAAAAADbAAAAAABeQAAAAAAWQAAAAABdgAAAAACdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIgAAAAACWQAAAAACWQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAWQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAABeQAAAAAAWQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAADeQAAAAAAagAAAAADewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAA + tiles: HQAAAAADHQAAAAABHQAAAAACeQAAAAAAZAAAAAACZAAAAAACZAAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAACZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADWQAAAAAAZAAAAAACWQAAAAABcQAAAAACcQAAAAACcQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADIgAAAAABWQAAAAADWQAAAAADWQAAAAADZAAAAAADWQAAAAAAWQAAAAADTAAAAAADWQAAAAACcQAAAAACcQAAAAABcQAAAAAAeQAAAAAAZAAAAAACZAAAAAACZAAAAAACZAAAAAABTAAAAAACTAAAAAACZAAAAAADZAAAAAACZAAAAAAATAAAAAAATAAAAAADWQAAAAABcQAAAAABcQAAAAABZAAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADZAAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAcQAAAAADcQAAAAABcQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAagAAAAACeQAAAAAAWQAAAAACeQAAAAAAcQAAAAABcQAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAABcQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAagAAAAAAeQAAAAAAWQAAAAACeQAAAAAAcQAAAAADcQAAAAADTAAAAAADbAAAAAACcQAAAAABbAAAAAADTAAAAAAAcQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAcQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAewAAAAAAewAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACIgAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAABIgAAAAACWQAAAAAAWQAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABdgAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABeQAAAAAAWQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAADeQAAAAAAagAAAAABewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAABDgAAAAABewAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAACDgAAAAACDgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAAADgAAAAADewAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: eQAAAAAAeQAAAAAATQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADWQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAcAAAAAAAcAAAAAABcQAAAAADeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADWQAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAcAAAAAABcAAAAAAAcQAAAAABeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: HQAAAAADHQAAAAABdgAAAAAAdgAAAAADdgAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAIgAAAAADIgAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAdgAAAAACdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAABdgAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACHQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAagAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAAAWQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAACcAAAAAADcAAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAIgAAAAAAIgAAAAABIgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAB + tiles: HQAAAAABHQAAAAADdgAAAAADdgAAAAADdgAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAIgAAAAAAIgAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAABdgAAAAAAdgAAAAACdgAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABdgAAAAAAdgAAAAACdgAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABHQAAAAACHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAagAAAAACeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAACWQAAAAABewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACHQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAACcAAAAAAAcAAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAIgAAAAABIgAAAAAAIgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAD version: 6 -2,2: ind: -2,2 - tiles: eAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAewAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: eAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAagAAAAABewAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADIgAAAAAAWQAAAAACWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADIgAAAAABWQAAAAACWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 - tiles: WQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABHQAAAAACHQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABHQAAAAAAHQAAAAACWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAIgAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAagAAAAABeQAAAAAAHQAAAAADTAAAAAACTAAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAADTAAAAAADTAAAAAACHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADZAAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAALgAAAAAALgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAIgAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAagAAAAADeQAAAAAAHQAAAAABTAAAAAADTAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAAATAAAAAAATAAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACZAAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAALgAAAAAALgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 - tiles: eQAAAAAAcQAAAAABcQAAAAACcQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAcQAAAAACcQAAAAADcQAAAAADbAAAAAACcQAAAAABbAAAAAABeQAAAAAAbAAAAAADbAAAAAAAcQAAAAABcQAAAAAAcQAAAAACeQAAAAAAbAAAAAABcQAAAAAAcQAAAAABcQAAAAADcQAAAAACcQAAAAADbAAAAAACcQAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAACcQAAAAADcQAAAAADcQAAAAACcQAAAAABcQAAAAABcQAAAAAAbAAAAAADbAAAAAADbAAAAAAAcQAAAAAAbAAAAAABcQAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAcQAAAAADcQAAAAABcQAAAAAAeQAAAAAAbAAAAAADcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAAAbAAAAAACcQAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAADcQAAAAABcQAAAAAAcQAAAAACeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAcQAAAAABcQAAAAACcQAAAAAAbAAAAAADcQAAAAACIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACcQAAAAADbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAABbAAAAAAAcQAAAAAAbAAAAAAAbAAAAAACbAAAAAACcQAAAAACcQAAAAABcQAAAAABeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADcQAAAAABcQAAAAADbAAAAAADeQAAAAAAbAAAAAACcQAAAAABcQAAAAAAcQAAAAAAeQAAAAAAagAAAAAAagAAAAACaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABcQAAAAAAbAAAAAACcQAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAABeQAAAAAAbAAAAAAAcQAAAAADbAAAAAADeQAAAAAAIgAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAADdgAAAAABdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAbAAAAAACcQAAAAABbAAAAAABbAAAAAABbAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACcQAAAAAAbAAAAAABeQAAAAAAbAAAAAADHQAAAAABHQAAAAADHQAAAAADeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAbAAAAAABbAAAAAAAcQAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAcQAAAAAAcQAAAAAAcQAAAAADcQAAAAAAbAAAAAAAbAAAAAADbAAAAAABcQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAcQAAAAADcQAAAAADcQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADcQAAAAADcQAAAAAAcQAAAAACbAAAAAAAeQAAAAAAaQAAAAAA + tiles: eQAAAAAAcQAAAAABcQAAAAADcQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAcQAAAAACcQAAAAACcQAAAAADbAAAAAACcQAAAAACbAAAAAACeQAAAAAAbAAAAAABbAAAAAACcQAAAAADcQAAAAADcQAAAAABeQAAAAAAbAAAAAABcQAAAAAAcQAAAAADcQAAAAACcQAAAAACcQAAAAABbAAAAAAAcQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAADcQAAAAACcQAAAAABcQAAAAACcQAAAAAAcQAAAAABcQAAAAACbAAAAAABbAAAAAABbAAAAAAAcQAAAAADbAAAAAACcQAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAABcQAAAAACcQAAAAABcQAAAAACeQAAAAAAbAAAAAAAcQAAAAABcQAAAAADcQAAAAACcQAAAAADcQAAAAADbAAAAAAAcQAAAAADbAAAAAADeQAAAAAAbAAAAAAAbAAAAAADcQAAAAABcQAAAAABcQAAAAAAeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAcQAAAAACcQAAAAABcQAAAAACbAAAAAACcQAAAAABIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAcQAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABeQAAAAAAaQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAACbAAAAAABcQAAAAADbAAAAAABbAAAAAAAbAAAAAAAcQAAAAABcQAAAAABcQAAAAADeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADcQAAAAACcQAAAAACbAAAAAABeQAAAAAAbAAAAAADcQAAAAABcQAAAAACcQAAAAADeQAAAAAAagAAAAAAagAAAAABaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACcQAAAAABbAAAAAACcQAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAABeQAAAAAAbAAAAAAAcQAAAAADbAAAAAAAeQAAAAAAIgAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADdgAAAAADdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAbAAAAAADcQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABcQAAAAABbAAAAAACeQAAAAAAbAAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAbAAAAAACbAAAAAACcQAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAcQAAAAABcQAAAAACcQAAAAACcQAAAAACbAAAAAADbAAAAAAAbAAAAAAAcQAAAAADbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADeQAAAAAAaQAAAAAAeQAAAAAAcQAAAAAAcQAAAAABcQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAcQAAAAACcQAAAAABcQAAAAADbAAAAAADeQAAAAAAaQAAAAAA version: 6 3,1: ind: 3,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABcQAAAAACcQAAAAAAcQAAAAACbAAAAAABeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAewAAAAAAagAAAAAAagAAAAABewAAAAAAeQAAAAAAewAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAMQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAABeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAACgAAAAAAeQAAAAAAagAAAAABHQAAAAABeQAAAAAAWgAAAAAAYAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABLgAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWgAAAAABYAAAAAAAeQAAAAAAagAAAAADagAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACcQAAAAACcQAAAAADcQAAAAABbAAAAAABeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAABeQAAAAAAewAAAAAAagAAAAABagAAAAADewAAAAAAeQAAAAAAewAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAMQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAACgAAAAAAeQAAAAAAagAAAAACHQAAAAACeQAAAAAAWgAAAAAAYAAAAAAAWQAAAAABWQAAAAADeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABLgAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWgAAAAABYAAAAAAAeQAAAAAAagAAAAAAagAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAIgAAAAACIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABIgAAAAAAIgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABIgAAAAADIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAIgAAAAADIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAIgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAADIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAATAAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACTAAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADTAAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADZAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAADZAAAAAABZAAAAAABeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAA + tiles: AAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADIgAAAAABIgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADIgAAAAABIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABIgAAAAABIgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADIgAAAAACIgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACIgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAADIgAAAAAAIgAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAABIgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADTAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADTAAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADTAAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABZAAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAZAAAAAACZAAAAAABZAAAAAABeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAABIgAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACIgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAABIgAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABIgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAABIgAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAIgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADIgAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAIgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADIgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADIgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADIgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACIgAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAIgAAAAADIgAAAAADIgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAABIgAAAAABIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAZAAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABTAAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABTAAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAATAAAAAAAWQAAAAACeQAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAWQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAZAAAAAABZAAAAAACZAAAAAACeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACIgAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAADIgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADIgAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACIgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAABIgAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADIgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAAAIgAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAIgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABIgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACIgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABIgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAADIgAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAIgAAAAACIgAAAAACIgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACZAAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAATAAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABTAAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAATAAAAAABWQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAZAAAAAABZAAAAAABZAAAAAACeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAIgAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADIgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACIgAAAAACeQAAAAAAAAAAAAAAeAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADeQAAAAAAagAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAADeQAAAAAAagAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAagAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAACIgAAAAAAIgAAAAADIgAAAAABIgAAAAACIgAAAAAAIgAAAAABeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAADIgAAAAACIgAAAAABIgAAAAABeQAAAAAAewAAAAAAagAAAAADagAAAAABagAAAAACaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAcQAAAAADcQAAAAADcQAAAAACbAAAAAAAeQAAAAAAcQAAAAABcQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAbAAAAAADbAAAAAADcQAAAAAAbAAAAAABbAAAAAAAbAAAAAADcQAAAAAAcQAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAABeQAAAAAAbAAAAAADbAAAAAACcQAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACcQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAABeQAAAAAAbAAAAAAAcQAAAAACcQAAAAAAcQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAACcQAAAAABcQAAAAACcQAAAAADcQAAAAADcQAAAAABeQAAAAAAbAAAAAADbAAAAAABcQAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADcQAAAAADcQAAAAACcQAAAAABcQAAAAACcQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACcQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABcQAAAAADcQAAAAADcQAAAAADbAAAAAADeQAAAAAAcQAAAAABcQAAAAACeQAAAAAAfAAAAAAAewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAaAAAAAAAaAAAAAAAbAAAAAABcQAAAAADcQAAAAADcQAAAAADbAAAAAACbAAAAAAAcQAAAAACcQAAAAABeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAagAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABeQAAAAAAagAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAagAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACIgAAAAADIgAAAAAAIgAAAAAAIgAAAAADIgAAAAAAIgAAAAACeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAACIgAAAAADIgAAAAAAIgAAAAADIgAAAAABeQAAAAAAewAAAAAAagAAAAAAagAAAAACagAAAAACaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAcQAAAAACcQAAAAAAcQAAAAAAbAAAAAABeQAAAAAAcQAAAAACcQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAACeQAAAAAAbAAAAAACbAAAAAADcQAAAAABbAAAAAADbAAAAAAAbAAAAAABcQAAAAAAcQAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABcQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABcQAAAAAAcQAAAAACcQAAAAABcQAAAAABcQAAAAAAeQAAAAAAbAAAAAABcQAAAAABcQAAAAACcQAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAADcQAAAAAAcQAAAAABcQAAAAABcQAAAAADcQAAAAABeQAAAAAAbAAAAAAAbAAAAAABcQAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAADcQAAAAACcQAAAAACcQAAAAABcQAAAAAAcQAAAAABeQAAAAAAbAAAAAADbAAAAAADcQAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADcQAAAAAAcQAAAAABcQAAAAADbAAAAAADeQAAAAAAcQAAAAADcQAAAAACeQAAAAAAfAAAAAABewAAAAAAeQAAAAAAeQAAAAAAewAAAAAAaAAAAAAAaAAAAAAAbAAAAAABcQAAAAAAcQAAAAAAcQAAAAACbAAAAAACbAAAAAAAcQAAAAABcQAAAAADeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 4,0: ind: 4,0 - tiles: eQAAAAAAagAAAAADeQAAAAAAaAAAAAAAaAAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAABeQAAAAAAaAAAAAAAaQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAACeQAAAAAAewAAAAAAaQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAADeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAagAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAABeQAAAAAAewAAAAAAaQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAagAAAAADeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: WQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAATAAAAAABWQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAABZAAAAAADeQAAAAAAWQAAAAADaQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAATAAAAAACWQAAAAAAeQAAAAAAZAAAAAACZAAAAAABZAAAAAADZAAAAAACZAAAAAACeQAAAAAAWQAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADZAAAAAACZAAAAAAAZAAAAAACZAAAAAACZAAAAAABeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAZAAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABWQAAAAADWQAAAAAAWQAAAAACZAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAewAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAagAAAAADewAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAADeQAAAAAAaAAAAAAAaAAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAewAAAAAAeQAAAAAAaAAAAAAAagAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAABewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAATAAAAAACWQAAAAADeQAAAAAAZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACZAAAAAACeQAAAAAAWQAAAAAAaQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAATAAAAAACWQAAAAACeQAAAAAAZAAAAAABZAAAAAACZAAAAAADZAAAAAADZAAAAAACeQAAAAAAWQAAAAACaQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAADZAAAAAADeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAZAAAAAABZAAAAAAAZAAAAAADZAAAAAAAZAAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADWQAAAAACWQAAAAADWQAAAAACZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAewAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACaQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAewAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAaAAAAAAAewAAAAAAewAAAAAAagAAAAABagAAAAADeQAAAAAAaAAAAAAAaAAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAewAAAAAAeQAAAAAAaAAAAAAAagAAAAADeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAagAAAAABewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,1: ind: 4,1 @@ -281,27 +281,27 @@ entities: version: 6 4,-2: ind: 4,-2 - tiles: eQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACIgAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACIgAAAAAAIgAAAAACIgAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAHQAAAAACHQAAAAAAIgAAAAACHQAAAAABWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAZAAAAAAAWQAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAAAWQAAAAAAWQAAAAAAIgAAAAABeQAAAAAAZAAAAAACWQAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAZAAAAAACWQAAAAACIgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAagAAAAADagAAAAABagAAAAABaAAAAAAATAAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABaQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAaQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAATAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACaQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAA + tiles: eQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABIgAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACIgAAAAABIgAAAAACIgAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAHQAAAAAAHQAAAAADIgAAAAACHQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAZAAAAAADWQAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAABWQAAAAABWQAAAAABIgAAAAACeQAAAAAAZAAAAAAAWQAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAZAAAAAAAWQAAAAADIgAAAAABdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAagAAAAABagAAAAACagAAAAAAaAAAAAAATAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADaQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACaQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAATAAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAaQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAADagAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAABagAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: aQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAALgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAewAAAAAAewAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAWQAAAAAAWQAAAAADZAAAAAABZAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAagAAAAADeQAAAAAAIgAAAAACIgAAAAACWQAAAAAAWQAAAAACIgAAAAACIgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAagAAAAAAeQAAAAAAIgAAAAACIgAAAAADWQAAAAAAWQAAAAABIgAAAAAAIgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAA + tiles: aQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAACeQAAAAAAaQAAAAAAeQAAAAAALgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAewAAAAAAewAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAACWQAAAAABWQAAAAACZAAAAAAAZAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAagAAAAACeQAAAAAAIgAAAAACIgAAAAADWQAAAAADWQAAAAACIgAAAAAAIgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAagAAAAACeQAAAAAAIgAAAAABIgAAAAABWQAAAAAAWQAAAAAAIgAAAAAAIgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeAAAAAAAeQAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: CwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAagAAAAACagAAAAADagAAAAABaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: CwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAABwAAAAAKAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAewAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAagAAAAAAagAAAAABagAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAFBwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAACwAAAAAAeAAAAAAAeAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAAegAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAeQAAAAAAIgAAAAAAIgAAAAACeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAADegAAAAAAeQAAAAAACwAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAJAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAegAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAADHQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADegAAAAAAeQAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAALBwAAAAACeQAAAAAAeQAAAAAAIgAAAAACIgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAIgAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAIgAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAIgAAAAAA version: 6 -5,-3: ind: -5,-3 @@ -309,7 +309,7 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -321,27 +321,27 @@ entities: version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAEfQAAAAAAfQAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAfQAAAAAAfQAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAACwAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAGBwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAACwAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAGBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAACwAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHegAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAACwAAAAAAeQAAAAAAegAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAALBwAAAAABBwAAAAAABwAAAAAAegAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACegAAAAAABwAAAAAABwAAAAAHegAAAAAABwAAAAAACwAAAAAACwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAACwAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAAegAAAAAAeQAAAAAACwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAACwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAegAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAegAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAACwAAAAAACwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAACwAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAMegAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAACwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAACwAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -368,20 +368,20 @@ entities: color: '#32CD32FF' id: Arrows decals: - 1739: 53,14 + 1736: 53,14 - node: angle: 1.5707963267948966 rad color: '#32CD32FF' id: Arrows decals: - 1740: 55,14 + 1737: 55,14 - node: angle: 4.71238898038469 rad color: '#DE3A3A96' id: Arrows decals: - 1200: 3,31 - 1201: 3,30 + 1197: 3,31 + 1198: 3,30 - node: angle: 1.5707963267948966 rad color: '#EFB34196' @@ -393,67 +393,68 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 1896: 69,-28 - 1897: 70,-28 - 2147: 7.759592,-44.793304 - 2148: 8.236585,-44.781075 - 6242: -44.266167,24.17379 - 6243: -43.71579,24.16156 + 1893: 69,-28 + 1894: 70,-28 + 2144: 7.759592,-44.793304 + 2145: 8.236585,-44.781075 + 6231: -44.266167,24.17379 + 6232: -43.71579,24.16156 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: 350: 44,-22 - 1274: 22,15 - 1332: -18,28 - 1790: 62,-25 - 1791: 62,-24 - 1963: 61,-18 - 1964: 61,-20 - 1988: 22,-38 - 1989: 22,-37 - 6240: -45.159,22.681658 - 6241: -45.17123,23.256496 + 1271: 22,15 + 1329: -18,28 + 1787: 62,-25 + 1788: 62,-24 + 1960: 61,-18 + 1961: 61,-20 + 1985: 22,-38 + 1986: 22,-37 + 6229: -45.159,22.681658 + 6230: -45.17123,23.256496 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 3015: -25,37 + 3012: -25,37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 1278: 25,23 - 1279: 29,23 - 1817: 68.96644,-11.160069 - 1818: 69.96644,-11.15081 - 1819: 67.97107,-11.15544 - 6238: -43.71579,21.837746 - 6239: -44.32732,21.837746 + 1275: 25,23 + 1276: 29,23 + 1814: 68.96644,-11.160069 + 1815: 69.96644,-11.15081 + 1816: 67.97107,-11.15544 + 6227: -43.71579,21.837746 + 6228: -44.32732,21.837746 + 6755: -33,-12 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 1277: 25,12 - 6236: -42.87188,22.669428 - 6237: -42.85965,23.219805 + 1274: 25,12 + 6225: -42.87188,22.669428 + 6226: -42.85965,23.219805 - node: color: '#FFFFFFFF' id: Basalt1 decals: 309: 26,-21 - 2265: 26,1 + 2262: 26,1 - node: cleanable: True color: '#FFFFFFFF' id: Basalt1 decals: - 3061: 80.98914,-5.89228 + 3058: 80.98914,-5.89228 - node: color: '#FFFFFFFF' id: Basalt2 @@ -464,60 +465,60 @@ entities: color: '#FFFFFFFF' id: Basalt2 decals: - 3063: 79.36655,-6.805498 + 3060: 79.36655,-6.805498 - node: color: '#FFFFFFFF' id: Basalt3 decals: 312: 26,-24 - 1753: 57,19 + 1750: 57,19 - node: cleanable: True color: '#FFFFFFFF' id: Basalt3 decals: - 3060: 80.410225,-6.9767265 + 3057: 80.410225,-6.9767265 - node: color: '#FFFFFFFF' id: Basalt4 decals: 315: 26,-24 - 944: -48,-27 - 1948: 56,-23 + 941: -48,-27 + 1945: 56,-23 - node: color: '#FFFFFFFF' id: Basalt5 decals: 311: 26,-22 314: 25,-23 - 943: -48,-28 - 1946: 54,-21 - 2266: 25,1 + 940: -48,-28 + 1943: 54,-21 + 2263: 25,1 - node: color: '#FFFFFFFF' id: Basalt6 decals: - 942: -48,-29 + 939: -48,-29 - node: color: '#FFFFFFFF' id: Basalt7 decals: 310: 25,-22 - 941: -49,-29 - 1754: 57,18 - 1947: 57,-23 + 938: -49,-29 + 1751: 57,18 + 1944: 57,-23 - node: cleanable: True color: '#FFFFFFFF' id: Basalt7 decals: - 3062: 80.88314,-7.8817906 + 3059: 80.88314,-7.8817906 - node: color: '#FFFFFFFF' id: Basalt8 decals: 34: -4,-12 - 945: -47,-30 + 942: -47,-30 - node: color: '#FFFFFFFF' id: Basalt9 @@ -529,31 +530,31 @@ entities: color: '#FFFFFFFF' id: Basalt9 decals: - 3064: 79.17086,-7.824714 + 3061: 79.17086,-7.824714 - node: color: '#D4D4D428' id: Bot decals: - 2220: -36,-58 - 2221: -36,-59 - 2222: -36,-60 - 2223: -36,-61 - 2224: -36,-62 - 2225: -36,-63 - 2226: -36,-64 - 2227: -60,-58 - 2228: -60,-59 - 2229: -60,-60 - 2230: -60,-61 - 2231: -60,-62 - 2232: -60,-63 - 2233: -60,-64 + 2217: -36,-58 + 2218: -36,-59 + 2219: -36,-60 + 2220: -36,-61 + 2221: -36,-62 + 2222: -36,-63 + 2223: -36,-64 + 2224: -60,-58 + 2225: -60,-59 + 2226: -60,-60 + 2227: -60,-61 + 2228: -60,-62 + 2229: -60,-63 + 2230: -60,-64 - node: color: '#DE3A3A41' id: Bot decals: - 6691: -38,-45 - 6692: -38,-45 + 6680: -38,-45 + 6681: -38,-45 - node: color: '#EFB34196' id: Bot @@ -627,18 +628,18 @@ entities: color: '#EFB341FF' id: Bot decals: - 6160: 15,41 + 6149: 15,41 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 1792: 63,-25 - 1793: 63,-24 - 1794: 65,-25 - 1795: 65,-24 - 2188: -10,-41 - 2189: -10,-40 + 1789: 63,-25 + 1790: 63,-24 + 1791: 65,-25 + 1792: 65,-24 + 2185: -10,-41 + 2186: -10,-40 - node: color: '#FFFFFFFF' id: Bot @@ -658,321 +659,326 @@ entities: 479: -35,-5 480: -30,-5 584: -29,12 - 745: -38,-34 - 746: -37,-34 - 747: -36,-34 - 790: -19,-35 - 888: -52,3 - 889: -52,-1 - 1087: 33,-3 - 1088: 34,-3 - 1089: 33,-2 - 1090: 34,-2 - 1114: 39,-28 - 1115: -26,-32 - 1116: 49,-22 - 1117: 35,2 - 1118: 21,21 - 1119: 34,-37 - 1120: -62,-29 - 1130: -5,31 - 1131: -6,31 - 1132: -6,32 - 1133: -5,32 - 1136: 2,26 - 1237: -1,27 - 1238: 7,30 - 1239: 7,31 - 1240: 7,32 - 1241: 7,33 - 1242: 6,33 - 1243: 2,32 - 1254: -4,48 - 1271: 23,15 - 1272: 23,13 - 1280: 23,8 - 1281: 23,7 - 1282: 23,6 - 1283: 24,6 - 1284: 24,7 - 1285: 24,8 - 1286: 25,6 - 1293: 25,7 - 1294: 25,8 - 1295: 26,20 - 1296: 25,20 - 1297: 24,20 - 1298: 24,19 - 1299: 25,19 - 1300: 26,19 - 1301: 28,20 - 1302: 29,20 - 1303: 30,20 - 1304: 28,19 - 1305: 29,19 - 1306: 30,19 - 1313: 29,17 - 1324: -10,34 - 1325: -9,34 - 1326: -8,34 - 1327: -7,34 - 1331: -18,25 - 1334: 33,17 - 1436: 58,-33 - 1443: 57,-35 - 1454: 47,12 - 1486: 44,11 - 1772: 61,-12 - 1773: 57,-15 - 1774: 57,-14 - 1778: 64,-24 - 1779: 64,-25 - 1814: 71,-11 - 1815: 71,-12 - 1816: 71,-13 - 1876: 63,-19 - 1881: 70,-22 - 1910: 69,-13 - 1962: 61,-21 - 1968: 22,-39 - 1987: 22,-36 - 2028: 28,-36 - 2029: 29,-36 - 2030: 28,-47 - 2085: 12,-46 - 2086: 13,-46 - 2133: -2,-35 - 2134: -1,-35 - 2135: 3,-38 - 2136: 3,-37 - 2156: 9,-46 - 2157: 9,-47 - 2158: 7,-47 - 2159: 7,-46 - 2160: 10,-41 - 2166: 12,-38 - 2185: -6,-34 - 2186: -5,-34 - 2187: -4,-34 - 2237: 41,-10 - 2238: -23,12 - 2854: 66,-23 - 2886: -27,30 - 2899: 57,15 - 3188: 75,-13 - 3189: 75,-15 - 3194: 75,-19 - 3195: 75,-17 - 6474: 48,-10 - 6475: 51,5 - 6476: 53,10 - 6619: -36,-65 - 6620: -60,-65 + 742: -38,-34 + 743: -37,-34 + 744: -36,-34 + 787: -19,-35 + 885: -52,3 + 886: -52,-1 + 1084: 33,-3 + 1085: 34,-3 + 1086: 33,-2 + 1087: 34,-2 + 1111: 39,-28 + 1112: -26,-32 + 1113: 49,-22 + 1114: 35,2 + 1115: 21,21 + 1116: 34,-37 + 1117: -62,-29 + 1127: -5,31 + 1128: -6,31 + 1129: -6,32 + 1130: -5,32 + 1133: 2,26 + 1234: -1,27 + 1235: 7,30 + 1236: 7,31 + 1237: 7,32 + 1238: 7,33 + 1239: 6,33 + 1240: 2,32 + 1251: -4,48 + 1268: 23,15 + 1269: 23,13 + 1277: 23,8 + 1278: 23,7 + 1279: 23,6 + 1280: 24,6 + 1281: 24,7 + 1282: 24,8 + 1283: 25,6 + 1290: 25,7 + 1291: 25,8 + 1292: 26,20 + 1293: 25,20 + 1294: 24,20 + 1295: 24,19 + 1296: 25,19 + 1297: 26,19 + 1298: 28,20 + 1299: 29,20 + 1300: 30,20 + 1301: 28,19 + 1302: 29,19 + 1303: 30,19 + 1310: 29,17 + 1321: -10,34 + 1322: -9,34 + 1323: -8,34 + 1324: -7,34 + 1328: -18,25 + 1331: 33,17 + 1433: 58,-33 + 1440: 57,-35 + 1451: 47,12 + 1483: 44,11 + 1769: 61,-12 + 1770: 57,-15 + 1771: 57,-14 + 1775: 64,-24 + 1776: 64,-25 + 1811: 71,-11 + 1812: 71,-12 + 1813: 71,-13 + 1873: 63,-19 + 1878: 70,-22 + 1907: 69,-13 + 1965: 22,-39 + 1984: 22,-36 + 2025: 28,-36 + 2026: 29,-36 + 2027: 28,-47 + 2082: 12,-46 + 2083: 13,-46 + 2130: -2,-35 + 2131: -1,-35 + 2132: 3,-38 + 2133: 3,-37 + 2153: 9,-46 + 2154: 9,-47 + 2155: 7,-47 + 2156: 7,-46 + 2157: 10,-41 + 2163: 12,-38 + 2182: -6,-34 + 2183: -5,-34 + 2184: -4,-34 + 2234: 41,-10 + 2235: -23,12 + 2851: 66,-23 + 2883: -27,30 + 2896: 57,15 + 3185: 75,-13 + 3186: 75,-15 + 3191: 75,-19 + 3192: 75,-17 + 6463: 48,-10 + 6464: 51,5 + 6465: 53,10 + 6608: -36,-65 + 6609: -60,-65 + 6743: -34,-11 + 6744: -34,-10 + 6745: -32,-11 + 6746: -32,-10 + 6765: 61,-21 + 6773: -24,-42 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 2983: -25,34 - 2984: -25,35 - 2985: -30,35 - 2986: -30,34 - 3012: -23,38 - 3013: -10,38 - 3014: -9,38 - 3065: 78,-8 - 3066: 79,-8 + 2980: -25,34 + 2981: -25,35 + 2982: -30,35 + 2983: -30,34 + 3009: -23,38 + 3010: -10,38 + 3011: -9,38 + 3062: 78,-8 + 3063: 79,-8 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Bot decals: - 6637: 91,-19 - 6638: 91,-18 - 6639: 92,-18 - 6640: 92,-19 - 6641: 87,-19 - 6642: 88,-19 - 6643: 88,-18 - 6644: 87,-18 + 6626: 91,-19 + 6627: 91,-18 + 6628: 92,-18 + 6629: 92,-19 + 6630: 87,-19 + 6631: 88,-19 + 6632: 88,-18 + 6633: 87,-18 - node: color: '#32CD32FF' id: BotGreyscale decals: - 1747: 59,17 + 1744: 59,17 - node: color: '#52B4E996' id: BotGreyscale decals: - 6379: 55,8 - 6380: 55,8 - 6381: 56,8 - 6382: 56,8 - 6396: 57,1 - 6397: 57,1 - 6398: 56,1 - 6399: 56,1 - 6400: 55,4 - 6401: 55,4 - 6402: 56,4 - 6403: 56,4 - 6404: 57,4 - 6405: 57,4 + 6368: 55,8 + 6369: 55,8 + 6370: 56,8 + 6371: 56,8 + 6385: 57,1 + 6386: 57,1 + 6387: 56,1 + 6388: 56,1 + 6389: 55,4 + 6390: 55,4 + 6391: 56,4 + 6392: 56,4 + 6393: 57,4 + 6394: 57,4 - node: cleanable: True color: '#D4D4D428' id: BotGreyscale decals: - 3035: 76,-28 - 3036: 80,-28 - 3037: 78,-30 - 3038: 78,-26 + 3032: 76,-28 + 3033: 80,-28 + 3034: 78,-30 + 3035: 78,-26 - node: cleanable: True color: '#EFB341FF' id: BotLeft decals: - 6156: 6,-14 - 6158: 6,-14 + 6145: 6,-14 + 6147: 6,-14 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1874: 74,-13 - 1875: 74,-12 - 1969: 23,-39 - 1970: 24,-39 - 1971: 25,-39 - 2164: 12,-39 - 6599: -3,33 + 1871: 74,-13 + 1872: 74,-12 + 1966: 23,-39 + 1967: 24,-39 + 1968: 25,-39 + 2161: 12,-39 + 6588: -3,33 - node: cleanable: True color: '#FFFFFFFF' id: BotLeft decals: - 6153: 6,-14 + 6142: 6,-14 - node: angle: -6.283185307179586 rad color: '#EFB34196' id: BotLeftGreyscale decals: - 6679: -1,-20 - 6680: -1,-21 + 6668: -1,-20 + 6669: -1,-21 - node: cleanable: True color: '#EFB341FF' id: BotLeftGreyscale decals: - 6157: 6,-14 + 6146: 6,-14 - node: angle: -6.283185307179586 rad color: '#EFB34196' id: BotRight decals: - 6681: -2,-21 - 6682: -2,-20 + 6670: -2,-21 + 6671: -2,-20 - node: cleanable: True color: '#EFB341FF' id: BotRight decals: - 6159: 6,-15 + 6148: 6,-15 - node: color: '#FFFFFFFF' id: BotRight decals: - 1872: 73,-12 - 1873: 73,-13 - 1972: 23,-36 - 1973: 24,-36 - 1974: 25,-36 - 2165: 12,-40 - 6600: -3,34 + 1869: 73,-12 + 1870: 73,-13 + 1969: 23,-36 + 1970: 24,-36 + 1971: 25,-36 + 2162: 12,-40 + 6589: -3,34 - node: cleanable: True color: '#FFFFFFFF' id: BotRight decals: - 6154: 6,-15 + 6143: 6,-15 - node: cleanable: True color: '#EFB341FF' id: BotRightGreyscale decals: - 6155: 6,-15 + 6144: 6,-15 - node: color: '#FFFFFFFF' id: Box decals: - 1091: 33,0 - 1092: 34,0 - 1121: -57,-24 - 1122: -56,-24 - 2002: 19,-37 - 2003: 19,-36 - 6664: 92,-20 + 1088: 33,0 + 1089: 34,0 + 1118: -57,-24 + 1119: -56,-24 + 1999: 19,-37 + 2000: 19,-36 + 6653: 92,-20 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 2129: 18,-56 - 2130: 19,-56 + 2126: 18,-56 + 2127: 19,-56 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 798: -31,-36 - 1070: 28,-29 - 1435: 58,-34 - 1889: 69,-29 - 2111: 22,-53 + 795: -31,-36 + 1067: 28,-29 + 1432: 58,-34 + 1886: 69,-29 + 2108: 22,-53 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 128: 0,-21 - 797: -33,-36 - 1068: 24,-29 - 1432: 56,-34 - 1888: 70,-29 - 2114: 15,-53 + 794: -33,-36 + 1065: 24,-29 + 1429: 56,-34 + 1885: 70,-29 + 2111: 15,-53 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 796: -31,-38 - 997: 46,-34 - 1069: 28,-34 - 1433: 58,-36 - 1891: 69,-30 - 2087: 17,-53 - 2113: 22,-60 + 793: -31,-38 + 994: 46,-34 + 1066: 28,-34 + 1430: 58,-36 + 1888: 69,-30 + 2084: 17,-53 + 2110: 22,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 795: -33,-38 - 996: 34,-34 - 1071: 24,-34 - 1434: 56,-36 - 1890: 70,-30 - 2088: 20,-53 - 2112: 15,-60 + 792: -33,-38 + 993: 34,-34 + 1068: 24,-34 + 1431: 56,-36 + 1887: 70,-30 + 2085: 20,-53 + 2109: 15,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: 119: -4,-16 629: -39,-16 - 1157: -4,21 - 1427: 56,-36 - 1813: 70,-11 - 1868: 74,-17 - 1871: 74,-14 - 2105: 15,-60 - 2110: 22,-53 - 2117: 21,-53 - 2118: 22,-54 + 1154: -4,21 + 1424: 56,-36 + 1810: 70,-11 + 1865: 74,-17 + 1868: 74,-14 + 2102: 15,-60 + 2107: 22,-53 + 2114: 21,-53 + 2115: 22,-54 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw @@ -980,37 +986,37 @@ entities: 46: -12,-19 81: -5,-15 231: 0,-22 - 1156: -1,21 - 1426: 58,-36 - 1812: 68,-11 - 2106: 22,-60 - 2109: 15,-53 - 2115: 16,-53 - 2116: 15,-54 + 1153: -1,21 + 1423: 58,-36 + 1809: 68,-11 + 2103: 22,-60 + 2106: 15,-53 + 2112: 16,-53 + 2113: 15,-54 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: 628: -39,-13 - 1162: -4,27 - 1425: 56,-34 - 1869: 74,-15 - 1870: 74,-19 - 2104: 15,-53 - 2107: 22,-60 - 2119: 22,-59 - 2120: 21,-60 + 1159: -4,27 + 1422: 56,-34 + 1866: 74,-15 + 1867: 74,-19 + 2101: 15,-53 + 2104: 22,-60 + 2116: 22,-59 + 2117: 21,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: 45: -12,-14 478: -25,-1 - 1424: 58,-34 - 2103: 22,-53 - 2108: 15,-60 - 2121: 15,-59 - 2122: 16,-60 + 1421: 58,-34 + 2100: 22,-53 + 2105: 15,-60 + 2118: 15,-59 + 2119: 16,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -1046,77 +1052,77 @@ entities: 500: -30,2 612: -39,-15 613: -39,-14 - 707: -41,-34 - 708: -41,-33 - 709: -41,-32 - 710: -41,-31 - 711: -41,-30 - 712: -41,-29 - 713: -41,-28 - 714: -41,-27 - 715: -41,-26 - 716: -41,-25 - 735: -37,-15 - 736: -37,-14 - 737: -34,-15 - 738: -34,-14 - 739: -31,-15 - 740: -31,-14 - 741: -28,-15 - 742: -28,-14 - 785: -27,-38 - 786: -27,-37 - 793: -32,-40 - 794: -32,-39 - 802: -31,-37 - 803: -52,-2 - 804: -52,-3 - 805: -52,4 - 806: -52,5 - 923: -48,12 - 924: -48,13 - 971: -48,9 - 972: -48,10 - 973: -46,11 - 1050: 42,-34 - 1054: 28,-33 - 1055: 28,-32 - 1056: 28,-31 - 1061: 28,-30 - 1152: -4,23 - 1153: -4,24 - 1154: -4,24 - 1155: -4,25 - 1174: -3,36 - 1175: -3,37 - 1176: -3,38 - 1247: 0,45 - 1248: 0,46 - 1249: 0,47 - 1260: 0,48 - 1421: 56,-35 - 1428: 58,-35 - 1884: 69,-30 - 1885: 69,-29 - 1965: 22,-39 - 1966: 22,-38 - 1967: 22,-37 - 2008: 27,-47 - 2009: 27,-46 - 2010: 27,-45 - 2011: 27,-44 - 2012: 27,-43 - 2013: 27,-42 - 2098: 15,-59 - 2099: 15,-58 - 2100: 15,-57 - 2101: 15,-55 - 2102: 15,-54 - 2127: 16,-60 - 2149: 9,-47 - 2150: 9,-46 - 6477: 53,12 - 6478: 53,11 + 704: -41,-34 + 705: -41,-33 + 706: -41,-32 + 707: -41,-31 + 708: -41,-30 + 709: -41,-29 + 710: -41,-28 + 711: -41,-27 + 712: -41,-26 + 713: -41,-25 + 732: -37,-15 + 733: -37,-14 + 734: -34,-15 + 735: -34,-14 + 736: -31,-15 + 737: -31,-14 + 738: -28,-15 + 739: -28,-14 + 782: -27,-38 + 783: -27,-37 + 790: -32,-40 + 791: -32,-39 + 799: -31,-37 + 800: -52,-2 + 801: -52,-3 + 802: -52,4 + 803: -52,5 + 920: -48,12 + 921: -48,13 + 968: -48,9 + 969: -48,10 + 970: -46,11 + 1047: 42,-34 + 1051: 28,-33 + 1052: 28,-32 + 1053: 28,-31 + 1058: 28,-30 + 1149: -4,23 + 1150: -4,24 + 1151: -4,24 + 1152: -4,25 + 1171: -3,36 + 1172: -3,37 + 1173: -3,38 + 1244: 0,45 + 1245: 0,46 + 1246: 0,47 + 1257: 0,48 + 1418: 56,-35 + 1425: 58,-35 + 1881: 69,-30 + 1882: 69,-29 + 1962: 22,-39 + 1963: 22,-38 + 1964: 22,-37 + 2005: 27,-47 + 2006: 27,-46 + 2007: 27,-45 + 2008: 27,-44 + 2009: 27,-43 + 2010: 27,-42 + 2095: 15,-59 + 2096: 15,-58 + 2097: 15,-57 + 2098: 15,-55 + 2099: 15,-54 + 2124: 16,-60 + 2146: 9,-47 + 2147: 9,-46 + 6466: 53,12 + 6467: 53,11 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -1151,74 +1157,74 @@ entities: 609: -29,-16 610: -30,-16 611: -28,-16 - 799: -32,-36 - 984: 35,-38 - 985: 36,-38 - 986: 37,-38 - 987: 38,-38 - 988: 39,-38 - 989: 40,-38 - 990: 41,-38 - 991: 42,-38 - 992: 43,-38 - 993: 44,-38 - 1017: 46,-38 - 1022: 31,-35 - 1023: 32,-35 - 1024: 33,-35 - 1025: 47,-35 - 1026: 48,-35 - 1027: 49,-35 - 1065: 25,-29 - 1066: 26,-29 - 1067: 27,-29 - 1084: 30,-2 - 1085: 31,-2 - 1086: 32,-2 - 1103: -46,-16 - 1104: -45,-16 - 1105: -44,-16 - 1158: -2,21 - 1159: -3,21 - 1250: -3,51 - 1251: -2,51 - 1252: 1,51 - 1253: 2,51 - 1423: 57,-36 - 1430: 57,-34 - 1506: -52,-49 - 1507: -51,-49 - 1508: -50,-49 + 796: -32,-36 + 981: 35,-38 + 982: 36,-38 + 983: 37,-38 + 984: 38,-38 + 985: 39,-38 + 986: 40,-38 + 987: 41,-38 + 988: 42,-38 + 989: 43,-38 + 990: 44,-38 + 1014: 46,-38 + 1019: 31,-35 + 1020: 32,-35 + 1021: 33,-35 + 1022: 47,-35 + 1023: 48,-35 + 1024: 49,-35 + 1062: 25,-29 + 1063: 26,-29 + 1064: 27,-29 + 1081: 30,-2 + 1082: 31,-2 + 1083: 32,-2 + 1100: -46,-16 + 1101: -45,-16 + 1102: -44,-16 + 1155: -2,21 + 1156: -3,21 + 1247: -3,51 + 1248: -2,51 + 1249: 1,51 + 1250: 2,51 + 1420: 57,-36 + 1427: 57,-34 + 1503: -52,-49 + 1504: -51,-49 + 1505: -50,-49 + 1506: -48,-49 + 1507: -49,-49 + 1508: -48,-49 1509: -48,-49 - 1510: -49,-49 - 1511: -48,-49 - 1512: -48,-49 - 1513: -47,-49 - 1514: -46,-49 - 1515: -45,-49 - 1516: -44,-49 - 1810: 67,-11 - 1811: 71,-11 - 1894: 71,-29 - 1895: 68,-29 - 2022: 28,-43 - 2023: 29,-43 - 2091: 16,-60 - 2092: 21,-60 - 2123: 15,-57 - 2124: 22,-57 - 2141: 7,-46 - 2142: 9,-46 - 2143: 8,-46 - 6143: -14,-23 - 6144: -15,-23 - 6145: -16,-23 - 6652: 87,-20 - 6653: 88,-20 - 6654: 89,-20 - 6655: 90,-20 - 6656: 91,-20 - 6657: 92,-20 + 1510: -47,-49 + 1511: -46,-49 + 1512: -45,-49 + 1513: -44,-49 + 1807: 67,-11 + 1808: 71,-11 + 1891: 71,-29 + 1892: 68,-29 + 2019: 28,-43 + 2020: 29,-43 + 2088: 16,-60 + 2089: 21,-60 + 2120: 15,-57 + 2121: 22,-57 + 2138: 7,-46 + 2139: 9,-46 + 2140: 8,-46 + 6132: -14,-23 + 6133: -15,-23 + 6134: -16,-23 + 6641: 87,-20 + 6642: 88,-20 + 6643: 89,-20 + 6644: 90,-20 + 6645: 91,-20 + 6646: 92,-20 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1265,79 +1271,79 @@ entities: 625: -28,-13 626: -28,-13 627: -29,-13 - 800: -32,-38 - 975: 31,-25 - 976: 32,-25 - 977: 33,-25 - 978: 47,-25 - 979: 49,-25 - 980: 48,-25 - 994: 35,-34 - 995: 45,-34 - 1007: 39,-35 - 1062: 25,-34 - 1063: 26,-34 - 1064: 27,-34 - 1123: -57,-27 - 1124: -56,-27 - 1125: -55,-27 - 1126: -54,-27 - 1160: -3,27 - 1161: -2,27 - 1422: 57,-34 - 1431: 57,-36 - 1517: -56,-54 - 1518: -55,-54 - 1519: -54,-54 - 1520: -41,-54 - 1521: -40,-54 - 1892: 68,-30 - 1893: 71,-30 - 2024: 28,-46 - 2025: 29,-46 - 2089: 16,-53 - 2090: 21,-53 - 2125: 22,-55 - 2126: 15,-55 - 2153: 8,-47 - 2154: 7,-47 - 2155: 9,-47 - 2171: 10,-40 - 2172: 11,-40 - 2236: -42,-54 - 6140: -14,-25 - 6141: -15,-25 - 6142: -16,-25 - 6245: -3,43 - 6246: -2,43 - 6247: -1,43 - 6278: 45,14 - 6279: 47,14 - 6280: 46,14 - 6451: 49,-11 - 6452: 52,-11 - 6616: -29,-17 - 6658: 87,-21 - 6659: 89,-21 - 6660: 88,-21 - 6661: 90,-21 - 6662: 91,-21 - 6663: 92,-21 + 797: -32,-38 + 972: 31,-25 + 973: 32,-25 + 974: 33,-25 + 975: 47,-25 + 976: 49,-25 + 977: 48,-25 + 991: 35,-34 + 992: 45,-34 + 1004: 39,-35 + 1059: 25,-34 + 1060: 26,-34 + 1061: 27,-34 + 1120: -57,-27 + 1121: -56,-27 + 1122: -55,-27 + 1123: -54,-27 + 1157: -3,27 + 1158: -2,27 + 1419: 57,-34 + 1428: 57,-36 + 1514: -56,-54 + 1515: -55,-54 + 1516: -54,-54 + 1517: -41,-54 + 1518: -40,-54 + 1889: 68,-30 + 1890: 71,-30 + 2021: 28,-46 + 2022: 29,-46 + 2086: 16,-53 + 2087: 21,-53 + 2122: 22,-55 + 2123: 15,-55 + 2150: 8,-47 + 2151: 7,-47 + 2152: 9,-47 + 2168: 10,-40 + 2169: 11,-40 + 2233: -42,-54 + 6129: -14,-25 + 6130: -15,-25 + 6131: -16,-25 + 6234: -3,43 + 6235: -2,43 + 6236: -1,43 + 6267: 45,14 + 6268: 47,14 + 6269: 46,14 + 6440: 49,-11 + 6441: 52,-11 + 6605: -29,-17 + 6647: 87,-21 + 6648: 89,-21 + 6649: 88,-21 + 6650: 90,-21 + 6651: 91,-21 + 6652: 92,-21 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2987: -30,36 - 2988: -29,36 - 2989: -28,36 - 2990: -27,36 - 2991: -26,36 - 3011: -30,36 - 3031: 76,-25 - 3032: 77,-25 - 3033: 78,-25 - 3034: 79,-25 + 2984: -30,36 + 2985: -29,36 + 2986: -28,36 + 2987: -27,36 + 2988: -26,36 + 3008: -30,36 + 3028: 76,-25 + 3029: 77,-25 + 3030: 78,-25 + 3031: 79,-25 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -1370,100 +1376,102 @@ entities: 497: -34,2 498: -30,1 499: -30,2 - 717: -28,-34 - 718: -28,-33 - 719: -28,-32 - 720: -28,-31 - 721: -28,-30 - 722: -28,-29 - 723: -28,-28 - 724: -28,-28 - 725: -28,-28 - 726: -28,-27 - 727: -28,-26 - 728: -28,-25 - 729: -35,-15 - 730: -35,-14 - 731: -32,-15 - 732: -32,-14 - 733: -29,-15 - 734: -29,-14 - 743: -38,-15 - 744: -38,-14 - 791: -33,-40 - 792: -33,-39 - 801: -33,-37 - 811: -43,3 - 812: -43,4 - 813: -43,5 - 814: -43,-1 - 815: -43,-2 - 816: -43,-3 - 920: -48,10 - 921: -48,12 - 922: -48,13 - 970: -48,9 - 974: -50,11 - 1049: 38,-34 - 1057: 24,-33 - 1058: 24,-32 - 1059: 24,-31 - 1060: 24,-30 - 1149: -1,23 - 1150: -1,24 - 1151: -1,25 - 1171: -1,36 - 1172: -1,37 - 1173: -1,38 - 1244: -4,45 - 1245: -4,46 - 1246: -4,47 - 1290: 26,6 - 1291: 26,7 - 1292: 26,8 - 1420: 58,-35 - 1429: 56,-35 - 1886: 70,-30 - 1887: 70,-29 - 2093: 22,-59 - 2094: 22,-58 - 2095: 22,-57 - 2096: 22,-55 - 2097: 22,-54 - 2128: 21,-60 - 2151: 7,-47 - 2152: 7,-46 + 714: -28,-34 + 715: -28,-33 + 716: -28,-32 + 717: -28,-31 + 718: -28,-30 + 719: -28,-29 + 720: -28,-28 + 721: -28,-28 + 722: -28,-28 + 723: -28,-27 + 724: -28,-26 + 725: -28,-25 + 726: -35,-15 + 727: -35,-14 + 728: -32,-15 + 729: -32,-14 + 730: -29,-15 + 731: -29,-14 + 740: -38,-15 + 741: -38,-14 + 788: -33,-40 + 789: -33,-39 + 798: -33,-37 + 808: -43,3 + 809: -43,4 + 810: -43,5 + 811: -43,-1 + 812: -43,-2 + 813: -43,-3 + 917: -48,10 + 918: -48,12 + 919: -48,13 + 967: -48,9 + 971: -50,11 + 1046: 38,-34 + 1054: 24,-33 + 1055: 24,-32 + 1056: 24,-31 + 1057: 24,-30 + 1146: -1,23 + 1147: -1,24 + 1148: -1,25 + 1168: -1,36 + 1169: -1,37 + 1170: -1,38 + 1241: -4,45 + 1242: -4,46 + 1243: -4,47 + 1287: 26,6 + 1288: 26,7 + 1289: 26,8 + 1417: 58,-35 + 1426: 56,-35 + 1883: 70,-30 + 1884: 70,-29 + 2090: 22,-59 + 2091: 22,-58 + 2092: 22,-57 + 2093: 22,-55 + 2094: 22,-54 + 2125: 21,-60 + 2148: 7,-47 + 2149: 7,-46 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: 213: 7,-19 - 1163: -6,28 + 1160: -6,28 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 706: -39,-34 - 1957: 57,-21 + 703: -39,-34 + 1954: 57,-21 + 6750: -33,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 705: -30,-34 - 1956: 54,-21 + 702: -30,-34 + 1953: 54,-21 + 6749: -33,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 704: -39,-25 - 1958: 57,-23 + 701: -39,-25 + 1955: 57,-23 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 703: -30,-25 - 1419: 44,5 - 1959: 54,-23 + 700: -30,-25 + 1416: 44,5 + 1956: 54,-23 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -1478,26 +1486,26 @@ entities: 588: -34,-20 589: -34,-19 590: -34,-18 - 665: -39,-33 - 666: -39,-32 - 667: -39,-31 - 668: -39,-30 - 669: -39,-29 - 670: -39,-29 - 671: -39,-28 - 672: -39,-27 - 673: -39,-26 - 756: -39,-33 - 757: -39,-26 - 807: -52,0 - 808: -52,2 - 1169: -6,27 - 1170: -6,26 - 1863: 74,-15 - 1864: 74,-14 - 1865: 74,-17 - 1866: 74,-18 - 1867: 74,-19 + 662: -39,-33 + 663: -39,-32 + 664: -39,-31 + 665: -39,-30 + 666: -39,-29 + 667: -39,-29 + 668: -39,-28 + 669: -39,-27 + 670: -39,-26 + 753: -39,-33 + 754: -39,-26 + 804: -52,0 + 805: -52,2 + 1166: -6,27 + 1167: -6,26 + 1860: 74,-15 + 1861: 74,-14 + 1862: 74,-17 + 1863: 74,-18 + 1864: 74,-19 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1508,428 +1516,430 @@ entities: 386: -21,12 387: -20,12 388: -19,12 - 696: -35,-34 - 697: -35,-34 - 698: -34,-34 - 699: -33,-34 - 700: -32,-34 - 701: -31,-34 - 702: -31,-34 - 946: -50,-26 - 947: -46,-26 - 964: -50,-26 - 965: -46,-26 - 1077: 37,-4 - 1078: 38,-4 - 1079: 39,-4 - 1080: 36,-4 - 1164: -7,28 - 1165: -8,28 - 1166: -9,28 - 1167: -10,28 - 1168: -11,28 - 1882: 69,-28 - 1883: 70,-28 - 2131: 0,-37 - 2132: 1,-37 - 2137: 2,-37 - 2883: -27,27 - 2884: -26,27 - 2885: -25,27 + 693: -35,-34 + 694: -35,-34 + 695: -34,-34 + 696: -33,-34 + 697: -32,-34 + 698: -31,-34 + 699: -31,-34 + 943: -50,-26 + 944: -46,-26 + 961: -50,-26 + 962: -46,-26 + 1074: 37,-4 + 1075: 38,-4 + 1076: 39,-4 + 1077: 36,-4 + 1161: -7,28 + 1162: -8,28 + 1163: -9,28 + 1164: -10,28 + 1165: -11,28 + 1879: 69,-28 + 1880: 70,-28 + 2128: 0,-37 + 2129: 1,-37 + 2134: 2,-37 + 2880: -27,27 + 2881: -26,27 + 2882: -25,27 + 6747: -34,-12 + 6748: -32,-12 - node: cleanable: True color: '#FFFFFF35' id: BrickTileSteelLineS decals: - 6181: 83,-35 + 6170: 83,-35 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 686: -38,-25 + 683: -38,-25 + 684: -36,-25 + 685: -36,-25 + 686: -37,-25 687: -36,-25 - 688: -36,-25 - 689: -37,-25 - 690: -36,-25 - 691: -35,-25 - 692: -34,-25 - 693: -33,-25 - 694: -31,-25 - 695: -32,-25 - 948: -50,-31 - 949: -46,-31 - 962: -50,-31 - 963: -46,-31 - 1074: 36,-1 - 1075: 37,-1 - 1076: 39,-1 - 1081: 38,-1 - 1106: -48,-16 - 1107: -49,-16 - 1108: -50,-16 - 1109: -51,-16 - 1416: 40,5 - 1417: 42,5 - 1418: 43,5 - 1481: 41,5 - 3070: 51,22 - 3071: 50,22 - 3072: 52,22 - 6614: -34,-17 - 6615: -33,-17 + 688: -35,-25 + 689: -34,-25 + 690: -33,-25 + 691: -31,-25 + 692: -32,-25 + 945: -50,-31 + 946: -46,-31 + 959: -50,-31 + 960: -46,-31 + 1071: 36,-1 + 1072: 37,-1 + 1073: 39,-1 + 1078: 38,-1 + 1103: -48,-16 + 1104: -49,-16 + 1105: -50,-16 + 1106: -51,-16 + 1413: 40,5 + 1414: 42,5 + 1415: 43,5 + 1478: 41,5 + 3067: 51,22 + 3068: 50,22 + 3069: 52,22 + 6603: -34,-17 + 6604: -33,-17 - node: cleanable: True color: '#FFFFFF35' id: BrickTileSteelLineW decals: - 6180: 81,-34 + 6169: 81,-34 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 674: -30,-33 - 675: -30,-32 - 676: -30,-31 - 677: -30,-31 - 678: -30,-30 - 679: -30,-30 - 680: -30,-29 - 681: -30,-29 - 682: -30,-28 - 683: -30,-27 - 684: -30,-27 - 685: -30,-26 - 758: -30,-26 - 759: -30,-33 - 809: -43,0 - 810: -43,2 - 1127: 3,23 - 1128: 3,24 - 1129: 3,25 - 1134: -6,33 - 1135: -6,34 - 1413: 44,1 - 1414: 44,2 - 1415: 44,3 - 1451: 44,4 + 671: -30,-33 + 672: -30,-32 + 673: -30,-31 + 674: -30,-31 + 675: -30,-30 + 676: -30,-30 + 677: -30,-29 + 678: -30,-29 + 679: -30,-28 + 680: -30,-27 + 681: -30,-27 + 682: -30,-26 + 755: -30,-26 + 756: -30,-33 + 806: -43,0 + 807: -43,2 + 1124: 3,23 + 1125: 3,24 + 1126: 3,25 + 1131: -6,33 + 1132: -6,34 + 1410: 44,1 + 1411: 44,2 + 1412: 44,3 + 1448: 44,4 - node: color: '#A4610696' id: BrickTileWhiteCornerNe decals: - 1354: 28,15 - 1387: 28,8 - 1404: 36,22 - 1405: 27,14 + 1351: 28,15 + 1384: 28,8 + 1401: 36,22 + 1402: 27,14 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 1798: 60,-13 - 1820: 70,-12 + 1795: 60,-13 + 1817: 70,-12 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 6748: 52,-26 + 6737: 52,-26 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2860: -4,14 + 2857: -4,14 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2996: -25,38 + 2993: -25,38 - node: color: '#A4610696' id: BrickTileWhiteCornerNw decals: - 1403: 33,22 - 1408: 26,14 + 1400: 33,22 + 1405: 26,14 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 1799: 58,-13 - 1823: 68,-12 + 1796: 58,-13 + 1820: 68,-12 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 6747: 51,-26 + 6736: 51,-26 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2216: -54,9 - 2859: -2,14 + 2213: -54,9 + 2856: -2,14 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2995: -30,38 + 2992: -30,38 - node: color: '#A4610696' id: BrickTileWhiteCornerSe decals: - 1353: 28,10 - 1386: 28,6 - 1402: 36,17 - 1406: 27,11 + 1350: 28,10 + 1383: 28,6 + 1399: 36,17 + 1403: 27,11 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 1800: 60,-14 - 1821: 70,-14 + 1797: 60,-14 + 1818: 70,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 6746: 52,-27 + 6735: 52,-27 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 1407: 26,11 + 1404: 26,11 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 1801: 58,-14 - 1822: 68,-14 + 1798: 58,-14 + 1819: 68,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 6749: 51,-27 + 6738: 51,-27 - node: color: '#EFB34196' id: BrickTileWhiteEndE decals: - 2882: 63,9 + 2879: 63,9 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1016: 46,-38 - 1018: 46,-38 - 1053: 37,-34 + 1013: 46,-38 + 1015: 46,-38 + 1050: 37,-34 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 1483: 41,5 - 1763: 57,-7 - 6425: 48,-1 - 6442: 49,-7 + 1480: 41,5 + 1760: 57,-7 + 6414: 48,-1 + 6431: 49,-7 - node: color: '#A4610696' id: BrickTileWhiteInnerNe decals: - 1389: 26,8 + 1386: 26,8 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1330: -18,27 + 1327: -18,27 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 1466: 41,11 + 1463: 41,11 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1048: 43,-34 + 1045: 43,-34 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 1482: 45,5 - 6424: 52,-1 - 6441: 51,-7 + 1479: 45,5 + 6413: 52,-1 + 6430: 51,-7 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 1465: 47,11 + 1462: 47,11 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1011: 46,-37 + 1008: 46,-37 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 1485: 45,4 - 6423: 48,-8 - 6440: 49,-2 - 6444: 50,-8 + 1482: 45,4 + 6412: 48,-8 + 6429: 49,-2 + 6433: 50,-8 - node: color: '#A4610696' id: BrickTileWhiteInnerSe decals: - 1384: 31,23 - 1388: 26,6 + 1381: 31,23 + 1385: 26,6 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1216: -15,26 - 1217: -11,26 - 1218: -7,26 - 1259: -4,45 - 1329: -18,29 + 1213: -15,26 + 1214: -11,26 + 1215: -7,26 + 1256: -4,45 + 1326: -18,29 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1464: 41,13 + 1461: 41,13 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 6422: 52,-8 - 6439: 51,-2 - 6443: 50,-8 + 6411: 52,-8 + 6428: 51,-2 + 6432: 50,-8 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 1385: 30,17 + 1382: 30,17 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1214: -13,26 - 1215: -9,26 - 1258: 0,45 + 1211: -13,26 + 1212: -9,26 + 1255: 0,45 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: 183: 5,-24 - 1463: 47,13 + 1460: 47,13 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 1012: 46,-37 - 1013: 46,-36 - 1014: 46,-35 - 1015: 46,-34 + 1009: 46,-37 + 1010: 46,-36 + 1011: 46,-35 + 1012: 46,-34 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 1760: 57,-6 - 1761: 57,-5 - 1762: 57,-4 - 6327: 42,9 - 6328: 42,7 - 6334: 47,9 - 6335: 47,8 - 6336: 47,7 - 6352: 51,1 - 6353: 51,2 - 6354: 51,3 - 6355: 51,4 - 6356: 51,6 - 6357: 51,7 - 6358: 51,8 - 6359: 51,9 - 6360: 51,10 - 6361: 51,11 - 6362: 51,12 - 6363: 51,13 - 6364: 51,14 - 6365: 51,15 - 6370: 56,10 - 6371: 56,11 - 6372: 56,12 - 6376: 56,6 - 6377: 56,7 - 6378: 56,8 - 6414: 52,-1 - 6415: 52,-2 - 6416: 52,-3 - 6417: 52,-4 - 6418: 52,-5 - 6419: 52,-6 - 6420: 52,-7 - 6421: 52,-8 - 6435: 49,-6 - 6436: 49,-5 - 6437: 49,-4 - 6438: 49,-3 + 1757: 57,-6 + 1758: 57,-5 + 1759: 57,-4 + 6316: 42,9 + 6317: 42,7 + 6323: 47,9 + 6324: 47,8 + 6325: 47,7 + 6341: 51,1 + 6342: 51,2 + 6343: 51,3 + 6344: 51,4 + 6345: 51,6 + 6346: 51,7 + 6347: 51,8 + 6348: 51,9 + 6349: 51,10 + 6350: 51,11 + 6351: 51,12 + 6352: 51,13 + 6353: 51,14 + 6354: 51,15 + 6359: 56,10 + 6360: 56,11 + 6361: 56,12 + 6365: 56,6 + 6366: 56,7 + 6367: 56,8 + 6403: 52,-1 + 6404: 52,-2 + 6405: 52,-3 + 6406: 52,-4 + 6407: 52,-5 + 6408: 52,-6 + 6409: 52,-7 + 6410: 52,-8 + 6424: 49,-6 + 6425: 49,-5 + 6426: 49,-4 + 6427: 49,-3 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1741: 61,17 - 1742: 61,16 - 1743: 61,15 - 1744: 61,14 + 1738: 61,17 + 1739: 61,16 + 1740: 61,15 + 1741: 61,14 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 1337: 28,7 - 1346: 28,14 - 1347: 28,13 - 1348: 28,12 - 1349: 28,11 - 1366: 31,22 - 1367: 31,21 - 1368: 31,20 - 1369: 31,19 - 1370: 31,18 - 1371: 31,17 - 1372: 31,16 - 1373: 31,15 - 1374: 31,14 - 1375: 31,13 - 1376: 31,12 - 1392: 36,19 - 1393: 36,20 - 1394: 36,21 - 1399: 36,18 - 1409: 27,13 - 1410: 27,12 + 1334: 28,7 + 1343: 28,14 + 1344: 28,13 + 1345: 28,12 + 1346: 28,11 + 1363: 31,22 + 1364: 31,21 + 1365: 31,20 + 1366: 31,19 + 1367: 31,18 + 1368: 31,17 + 1369: 31,16 + 1370: 31,15 + 1371: 31,14 + 1372: 31,13 + 1373: 31,12 + 1389: 36,19 + 1390: 36,20 + 1391: 36,21 + 1396: 36,18 + 1406: 27,13 + 1407: 27,12 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 1824: 70,-13 - 1828: 65,-21 - 1829: 65,-20 - 1830: 65,-19 - 1831: 65,-18 - 1832: 65,-17 - 1833: 65,-16 - 1834: 65,-15 - 1835: 65,-14 - 1836: 65,-13 - 1837: 65,-12 - 1911: 71,-27 - 1912: 71,-26 + 1821: 70,-13 + 1825: 65,-21 + 1826: 65,-20 + 1827: 65,-19 + 1828: 65,-18 + 1829: 65,-17 + 1830: 65,-16 + 1831: 65,-15 + 1832: 65,-14 + 1833: 65,-13 + 1834: 65,-12 + 1908: 71,-27 + 1909: 71,-26 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 1139: -1,23 - 1140: -1,24 - 1147: -1,25 - 1328: -18,28 - 6683: -37,-44 - 6684: -37,-45 - 6697: -37,-46 + 1136: -1,23 + 1137: -1,24 + 1144: -1,25 + 1325: -18,28 + 6672: -37,-44 + 6673: -37,-45 + 6686: -37,-46 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1937,78 +1947,78 @@ entities: 177: 2,-22 235: 10,-23 236: 10,-22 - 1462: 41,12 - 1472: 47,13 - 1473: 47,11 - 2193: -4,-37 - 2194: -4,-35 - 2897: -39,-38 + 1459: 41,12 + 1469: 47,13 + 1470: 47,11 + 2190: -4,-37 + 2191: -4,-35 + 2894: -39,-38 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineE decals: - 2994: -25,37 - 3001: -32,38 - 3002: -32,37 - 3003: -32,36 - 3004: -32,35 - 3005: -32,34 + 2991: -25,37 + 2998: -32,38 + 2999: -32,37 + 3000: -32,36 + 3001: -32,35 + 3002: -32,34 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 1269: 2,40 + 1266: 2,40 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1019: 39,-34 - 1020: 40,-34 - 1021: 41,-34 - 1051: 38,-34 - 1052: 42,-34 - 1981: 19,-36 - 1982: 20,-36 - 1986: 21,-36 - 2016: 24,-46 + 1016: 39,-34 + 1017: 40,-34 + 1018: 41,-34 + 1048: 38,-34 + 1049: 42,-34 + 1978: 19,-36 + 1979: 20,-36 + 1983: 21,-36 + 2013: 24,-46 - node: color: '#474F52A7' id: BrickTileWhiteLineN decals: - 1219: -16,24 - 1220: -15,24 - 1221: -14,24 - 1222: -12,24 - 1223: -11,24 - 1224: -10,24 - 1225: -8,24 - 1226: -7,24 - 1227: -6,24 + 1216: -16,24 + 1217: -15,24 + 1218: -14,24 + 1219: -12,24 + 1220: -11,24 + 1221: -10,24 + 1222: -8,24 + 1223: -7,24 + 1224: -6,24 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 1478: 43,5 - 1479: 42,5 - 1480: 44,5 - 1725: 59,4 - 1726: 60,4 - 1755: 58,-7 - 1756: 59,-7 - 1757: 60,-7 - 1758: 61,-7 - 1759: 62,-7 - 6387: 53,3 - 6388: 54,3 - 6389: 55,3 - 6390: 57,3 - 6426: 51,-1 - 6427: 50,-1 - 6428: 49,-1 - 6448: 49,-10 - 6449: 50,-10 - 6450: 51,-10 + 1475: 43,5 + 1476: 42,5 + 1477: 44,5 + 1722: 59,4 + 1723: 60,4 + 1752: 58,-7 + 1753: 59,-7 + 1754: 60,-7 + 1755: 61,-7 + 1756: 62,-7 + 6376: 53,3 + 6377: 54,3 + 6378: 55,3 + 6379: 57,3 + 6415: 51,-1 + 6416: 50,-1 + 6417: 49,-1 + 6437: 49,-10 + 6438: 50,-10 + 6439: 51,-10 - node: color: '#79150096' id: BrickTileWhiteLineN @@ -2018,49 +2028,49 @@ entities: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1267: -1,53 - 1268: 0,53 - 2014: 24,-43 + 1264: -1,53 + 1265: 0,53 + 2011: 24,-43 - node: color: '#A4610696' id: BrickTileWhiteLineN decals: - 1335: 27,8 - 1343: 25,15 - 1344: 26,15 - 1345: 27,15 - 1400: 34,22 - 1401: 35,22 + 1332: 27,8 + 1340: 25,15 + 1341: 26,15 + 1342: 27,15 + 1397: 34,22 + 1398: 35,22 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1780: 63,-23 - 1781: 64,-23 - 1782: 65,-23 - 1787: 61,-23 - 1788: 62,-23 - 1802: 59,-13 - 1826: 69,-12 - 1849: 77,-13 - 1850: 75,-13 - 1851: 77,-17 - 1852: 75,-17 - 3190: 76,-13 - 3193: 76,-17 + 1777: 63,-23 + 1778: 64,-23 + 1779: 65,-23 + 1784: 61,-23 + 1785: 62,-23 + 1799: 59,-13 + 1823: 69,-12 + 1846: 77,-13 + 1847: 75,-13 + 1848: 77,-17 + 1849: 75,-17 + 3187: 76,-13 + 3190: 76,-17 - node: color: '#D4D4D496' id: BrickTileWhiteLineN decals: - 2015: 25,-43 + 2012: 25,-43 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1208: -3,32 - 1209: -2,32 - 1210: -1,32 - 2017: 25,-46 + 1205: -3,32 + 1206: -2,32 + 1207: -1,32 + 2014: 25,-46 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -2077,32 +2087,32 @@ entities: 284: 19,-21 285: 20,-21 286: 21,-21 - 1455: 42,11 - 1456: 43,11 - 1457: 46,11 - 1458: 45,11 - 2190: 0,-35 - 2191: 1,-35 - 2217: -53,9 - 2895: -62,-21 - 2896: -61,-21 + 1452: 42,11 + 1453: 43,11 + 1454: 46,11 + 1455: 45,11 + 2187: 0,-35 + 2188: 1,-35 + 2214: -53,9 + 2892: -62,-21 + 2893: -61,-21 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineN decals: - 2997: -29,38 - 2998: -28,38 - 2999: -27,38 - 3000: -26,38 + 2994: -29,38 + 2995: -28,38 + 2996: -27,38 + 2997: -26,38 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 2247: 13,25 - 2248: 14,25 - 2249: 15,25 - 6226: 14,22 + 2244: 13,25 + 2245: 14,25 + 2246: 15,25 + 6215: 14,22 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -2113,43 +2123,43 @@ entities: 356: 47,-22 357: 48,-22 358: 49,-22 - 1983: 19,-39 - 1984: 20,-39 - 1985: 21,-39 - 6727: 52,-37 - 6728: 51,-37 + 1980: 19,-39 + 1981: 20,-39 + 1982: 21,-39 + 6716: 52,-37 + 6717: 51,-37 - node: color: '#474F52A7' id: BrickTileWhiteLineS decals: - 1228: -12,23 - 1229: -11,23 - 1230: -10,23 - 1231: -14,23 - 1232: -15,23 - 1233: -16,23 - 1234: -8,23 - 1235: -6,23 - 1236: -7,23 + 1225: -12,23 + 1226: -11,23 + 1227: -10,23 + 1228: -14,23 + 1229: -15,23 + 1230: -16,23 + 1231: -8,23 + 1232: -6,23 + 1233: -7,23 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 1484: 46,4 - 1723: 60,0 - 1724: 59,0 - 2020: 24,-46 - 6391: 57,2 - 6392: 56,2 - 6393: 55,2 - 6394: 54,2 - 6395: 53,2 - 6429: 49,-8 - 6430: 51,-8 - 6445: 48,-11 - 6446: 51,-11 - 6447: 53,-11 - 6453: 50,-11 + 1481: 46,4 + 1720: 60,0 + 1721: 59,0 + 2017: 24,-46 + 6380: 57,2 + 6381: 56,2 + 6382: 55,2 + 6383: 54,2 + 6384: 53,2 + 6418: 49,-8 + 6419: 51,-8 + 6434: 48,-11 + 6435: 51,-11 + 6436: 53,-11 + 6442: 50,-11 - node: color: '#79150096' id: BrickTileWhiteLineS @@ -2159,59 +2169,59 @@ entities: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 1261: -3,50 - 1262: -1,50 - 1263: -2,50 - 1264: 0,50 - 1265: 1,50 - 1266: 2,50 + 1258: -3,50 + 1259: -1,50 + 1260: -2,50 + 1261: 0,50 + 1262: 1,50 + 1263: 2,50 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 1336: 27,6 - 1350: 25,10 - 1351: 26,10 - 1352: 27,10 - 1355: 23,17 - 1356: 24,17 - 1357: 25,17 - 1358: 26,17 - 1359: 27,17 - 1360: 28,17 - 1390: 34,17 - 1391: 35,17 - 2018: 24,-43 + 1333: 27,6 + 1347: 25,10 + 1348: 26,10 + 1349: 27,10 + 1352: 23,17 + 1353: 24,17 + 1354: 25,17 + 1355: 26,17 + 1356: 27,17 + 1357: 28,17 + 1387: 34,17 + 1388: 35,17 + 2015: 24,-43 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 1783: 63,-27 - 1784: 64,-27 - 1785: 65,-27 - 1786: 66,-27 - 1803: 59,-14 - 1804: 58,-15 - 1805: 59,-15 - 1806: 60,-15 - 1825: 69,-14 - 1853: 75,-19 - 1854: 77,-19 - 1855: 75,-15 - 1856: 77,-15 - 2021: 25,-43 - 3191: 76,-15 - 3192: 76,-19 + 1780: 63,-27 + 1781: 64,-27 + 1782: 65,-27 + 1783: 66,-27 + 1800: 59,-14 + 1801: 58,-15 + 1802: 59,-15 + 1803: 60,-15 + 1822: 69,-14 + 1850: 75,-19 + 1851: 77,-19 + 1852: 75,-15 + 1853: 77,-15 + 2018: 25,-43 + 3188: 76,-15 + 3189: 76,-19 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1211: -10,26 - 1212: -14,26 - 1213: -6,26 - 1255: -3,45 - 1256: -2,45 - 1257: -1,45 + 1208: -10,26 + 1209: -14,26 + 1210: -6,26 + 1252: -3,45 + 1253: -2,45 + 1254: -1,45 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -2231,139 +2241,139 @@ entities: 237: 7,-25 282: 21,-23 283: 20,-23 - 1459: 44,13 - 1460: 45,13 - 1461: 46,13 - 2019: 25,-46 - 2163: 9,-41 - 2871: 61,-31 - 2872: 62,-31 - 2873: 63,-31 - 6254: 42,13 + 1456: 44,13 + 1457: 45,13 + 1458: 46,13 + 2016: 25,-46 + 2160: 9,-41 + 2868: 61,-31 + 2869: 62,-31 + 2870: 63,-31 + 6243: 42,13 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1448: 45,4 - 1449: 46,4 - 1450: 44,4 + 1445: 45,4 + 1446: 46,4 + 1447: 44,4 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 1008: 34,-34 - 1009: 34,-35 - 1010: 34,-36 - 1444: 54,-36 - 1445: 54,-35 - 1446: 54,-34 - 1447: 54,-33 + 1005: 34,-34 + 1006: 34,-35 + 1007: 34,-36 + 1441: 54,-36 + 1442: 54,-35 + 1443: 54,-34 + 1444: 54,-33 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 6329: 46,7 - 6330: 46,9 - 6331: 41,9 - 6332: 41,8 - 6333: 41,7 - 6337: 49,1 - 6338: 49,2 - 6339: 49,3 - 6340: 49,4 - 6341: 49,5 - 6342: 49,6 - 6343: 49,7 - 6344: 49,8 - 6345: 49,9 - 6346: 49,10 - 6347: 49,11 - 6348: 49,12 - 6349: 49,13 - 6350: 49,14 - 6351: 49,15 - 6373: 53,6 - 6374: 53,7 - 6375: 53,8 - 6406: 48,-8 - 6407: 48,-7 - 6408: 48,-6 - 6409: 48,-5 - 6410: 48,-4 - 6411: 48,-3 - 6412: 48,-2 - 6413: 48,-1 - 6431: 51,-6 - 6432: 51,-5 - 6433: 51,-4 - 6434: 51,-3 + 6318: 46,7 + 6319: 46,9 + 6320: 41,9 + 6321: 41,8 + 6322: 41,7 + 6326: 49,1 + 6327: 49,2 + 6328: 49,3 + 6329: 49,4 + 6330: 49,5 + 6331: 49,6 + 6332: 49,7 + 6333: 49,8 + 6334: 49,9 + 6335: 49,10 + 6336: 49,11 + 6337: 49,12 + 6338: 49,13 + 6339: 49,14 + 6340: 49,15 + 6362: 53,6 + 6363: 53,7 + 6364: 53,8 + 6395: 48,-8 + 6396: 48,-7 + 6397: 48,-6 + 6398: 48,-5 + 6399: 48,-4 + 6400: 48,-3 + 6401: 48,-2 + 6402: 48,-1 + 6420: 51,-6 + 6421: 51,-5 + 6422: 51,-4 + 6423: 51,-3 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1745: 57,16 - 1746: 57,17 + 1742: 57,16 + 1743: 57,17 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: - 1338: 30,7 - 1339: 30,8 - 1340: 30,9 - 1341: 30,10 - 1342: 30,6 - 1361: 30,16 - 1362: 30,15 - 1363: 30,14 - 1364: 30,13 - 1365: 30,12 - 1377: 33,15 - 1378: 33,14 - 1379: 33,13 - 1380: 33,12 - 1395: 33,18 - 1396: 33,19 - 1397: 33,20 - 1398: 33,21 - 1411: 26,12 - 1412: 26,13 + 1335: 30,7 + 1336: 30,8 + 1337: 30,9 + 1338: 30,10 + 1339: 30,6 + 1358: 30,16 + 1359: 30,15 + 1360: 30,14 + 1361: 30,13 + 1362: 30,12 + 1374: 33,15 + 1375: 33,14 + 1376: 33,13 + 1377: 33,12 + 1392: 33,18 + 1393: 33,19 + 1394: 33,20 + 1395: 33,21 + 1408: 26,12 + 1409: 26,13 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 1827: 68,-13 - 1838: 63,-21 - 1839: 63,-20 - 1840: 63,-19 - 1841: 63,-17 - 1842: 63,-18 - 1843: 63,-16 - 1844: 63,-15 - 1845: 63,-14 - 1846: 63,-13 - 1847: 63,-12 - 1906: 68,-23 - 1907: 68,-22 - 1908: 68,-21 - 1909: 68,-24 - 1913: 68,-27 - 1914: 68,-26 + 1824: 68,-13 + 1835: 63,-21 + 1836: 63,-20 + 1837: 63,-19 + 1838: 63,-17 + 1839: 63,-18 + 1840: 63,-16 + 1841: 63,-15 + 1842: 63,-14 + 1843: 63,-13 + 1844: 63,-12 + 1903: 68,-23 + 1904: 68,-22 + 1905: 68,-21 + 1906: 68,-24 + 1910: 68,-27 + 1911: 68,-26 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 1137: -4,23 - 1138: -4,24 - 1148: -4,25 + 1134: -4,23 + 1135: -4,24 + 1145: -4,25 - node: cleanable: True color: '#EFB3413B' id: BrickTileWhiteLineW decals: - 6176: 14,39 - 6177: 14,40 - 6178: 14,41 - 6179: 14,42 + 6165: 14,39 + 6166: 14,40 + 6167: 14,41 + 6168: 14,42 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -2377,70 +2387,70 @@ entities: 182: 5,-25 216: 4,-19 220: 4,-22 - 1474: 41,11 - 1475: 41,12 - 1476: 41,13 - 2161: 8,-40 - 2162: 8,-39 - 2192: -2,-36 - 2195: -6,-37 - 2196: -6,-36 - 2197: -6,-35 - 2206: 39,-15 - 2207: 39,-17 - 2208: 39,-16 - 2889: -22,34 - 2890: -22,35 + 1471: 41,11 + 1472: 41,12 + 1473: 41,13 + 2158: 8,-40 + 2159: 8,-39 + 2189: -2,-36 + 2192: -6,-37 + 2193: -6,-36 + 2194: -6,-35 + 2203: 39,-15 + 2204: 39,-17 + 2205: 39,-16 + 2886: -22,34 + 2887: -22,35 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineW decals: - 2992: -30,36 - 2993: -30,37 - 3006: -34,34 - 3007: -34,35 - 3008: -34,36 - 3009: -34,37 - 3010: -34,38 + 2989: -30,36 + 2990: -30,37 + 3003: -34,34 + 3004: -34,35 + 3005: -34,36 + 3006: -34,37 + 3007: -34,38 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 1270: -6,40 + 1267: -6,40 - node: color: '#FFFFFFFF' id: BushAOne decals: 559: -24,5 - 867: -48,4 - 873: -51,-2 - 1492: -52,-49 - 1731: 59,19 - 1750: 57,18 + 864: -48,4 + 870: -51,-2 + 1489: -52,-49 + 1728: 59,19 + 1747: 57,18 - node: color: '#FFFFFFFF' id: BushAThree decals: 526: -39,7 - 868: -50,-2 - 931: -49,-30 + 865: -50,-2 + 928: -49,-30 - node: color: '#FFFFFFFF' id: BushCOne decals: - 865: -45,4 - 1938: 56,-21 + 862: -45,4 + 1935: 56,-21 - node: color: '#FFFFFFFF' id: BushCThree decals: 320: 26,-24 527: -40,6 - 869: -48,-2 - 1110: 42,-30 - 1488: -49,-49 - 2261: 24,1 + 866: -48,-2 + 1107: 42,-30 + 1485: -49,-49 + 2258: 24,1 - node: color: '#FFFFFFFF' id: BushCTwo @@ -2448,77 +2458,77 @@ entities: 36: -4,-12 321: 26,-23 525: -38,6 - 1489: -46,-49 - 1939: 56,-22 + 1486: -46,-49 + 1936: 56,-22 - node: cleanable: True color: '#FFFFFFFF' id: BushCTwo decals: - 3041: 81,-8 + 3038: 81,-8 - node: color: '#FFFFFFFF' id: BushDTwo decals: - 874: -49,4 + 871: -49,4 - node: color: '#FFFFFFFF' id: Busha1 decals: 523: -39,5 - 928: -48,-28 - 1941: 57,-23 - 1960: 54,-23 + 925: -48,-28 + 1938: 57,-23 + 1957: 54,-23 - node: cleanable: True color: '#FFFFFFFF' id: Busha1 decals: - 3042: 82,-6 + 3039: 82,-6 - node: color: '#FFFFFFFF' id: Busha2 decals: 531: -30,7 - 929: -47,-29 - 1730: 58,19 - 1940: 55,-23 + 926: -47,-29 + 1727: 58,19 + 1937: 55,-23 - node: color: '#FFFFFFFF' id: Busha3 decals: 319: 25,-24 529: -30,5 - 866: -47,4 - 1491: -44,-49 + 863: -47,4 + 1488: -44,-49 - node: color: '#FFFFFFFF' id: Bushb1 decals: 316: 25,-21 - 871: -46,-2 - 872: -44,-2 + 868: -46,-2 + 869: -44,-2 - node: cleanable: True color: '#FFFFFFFF' id: Bushb1 decals: - 3039: 81,-7 + 3036: 81,-7 - node: color: '#FFFFFFFF' id: Bushb2 decals: 558: -24,7 - 919: -47,-8 - 1749: 57,19 - 1936: 54,-21 + 916: -47,-8 + 1746: 57,19 + 1933: 54,-21 - node: color: '#FFFFFFFF' id: Bushb3 decals: 317: 26,-22 - 864: -50,4 - 930: -48,-30 + 861: -50,4 + 927: -48,-30 - node: color: '#FFFFFFFF' id: Bushc1 @@ -2526,39 +2536,39 @@ entities: 318: 25,-23 524: -39,6 530: -29,6 - 870: -45,-2 - 932: -49,-27 - 1937: 55,-22 + 867: -45,-2 + 929: -49,-27 + 1934: 55,-22 - node: cleanable: True color: '#FFFFFFFF' id: Bushc1 decals: - 3040: 82,-7 + 3037: 82,-7 - node: color: '#FFFFFFFF' id: Bushc2 decals: 528: -28,6 - 1490: -47,-49 - 2263: 25,1 + 1487: -47,-49 + 2260: 25,1 - node: color: '#FFFFFFFF' id: Bushc3 decals: 35: -5,-12 - 1487: -51,-49 - 2262: 26,1 + 1484: -51,-49 + 2259: 26,1 - node: color: '#FFFFFFFF' id: Bushd2 decals: - 876: -49,-2 + 873: -49,-2 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 875: -44,4 + 872: -44,4 - node: color: '#FFFFFFFF' id: Bushh1 @@ -2576,57 +2586,57 @@ entities: decals: 534: -29,5 560: -24,4 - 878: -47,-2 - 933: -48,-29 - 1494: -48,-49 - 1732: 60,19 + 875: -47,-2 + 930: -48,-29 + 1491: -48,-49 + 1729: 60,19 - node: cleanable: True color: '#FFFFFFFF' id: Bushi1 decals: - 3045: 80,-7 + 3042: 80,-7 - node: color: '#FFFFFFFF' id: Bushi2 decals: 322: 25,-22 - 879: -51,4 - 916: -48,-8 - 917: -51,-9 - 1942: 54,-22 - 1961: 53.45864,-23.10261 - 2264: 24,1 + 876: -51,4 + 913: -48,-8 + 914: -51,-9 + 1939: 54,-22 + 1958: 53.45864,-23.10261 + 2261: 24,1 - node: color: '#FFFFFFFF' id: Bushi3 decals: 532: -38,5 - 934: -47,-27 - 1493: -50,-49 + 931: -47,-27 + 1490: -50,-49 - node: cleanable: True color: '#FFFFFFFF' id: Bushi3 decals: - 3043: 82,-8 + 3040: 82,-8 - node: color: '#FFFFFFFF' id: Bushi4 decals: 533: -40,7 - 877: -46,4 - 918: -46,-7 - 1111: 42,-31 - 1495: -45,-49 - 1943: 56,-23 - 1949: 57.568016,-22.290323 + 874: -46,4 + 915: -46,-7 + 1108: 42,-31 + 1492: -45,-49 + 1940: 56,-23 + 1946: 57.568016,-22.290323 - node: cleanable: True color: '#FFFFFFFF' id: Bushi4 decals: - 3044: 81,-6 + 3041: 81,-6 - node: color: '#FFFFFFFF' id: Bushj3 @@ -2646,83 +2656,83 @@ entities: color: '#FFFFFFFF' id: Caution decals: - 1994: 24,-37 - 1998: 23,-37 - 1999: 25,-37 + 1991: 24,-37 + 1995: 23,-37 + 1996: 25,-37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Caution decals: - 1995: 24,-38 - 1996: 23,-38 - 1997: 25,-38 + 1992: 24,-38 + 1993: 23,-38 + 1994: 25,-38 - node: color: '#EFB34196' id: CheckerNESW decals: - 1467: 42,12 - 1468: 43,12 - 1469: 44,12 - 1470: 45,12 - 1471: 46,12 - 6257: 46,15 - 6258: 46,14 + 1464: 42,12 + 1465: 43,12 + 1466: 44,12 + 1467: 45,12 + 1468: 46,12 + 6246: 46,15 + 6247: 46,14 - node: color: '#334E6DC8' id: CheckerNWSE decals: - 1990: 20,-37 - 1991: 21,-37 - 1992: 21,-38 - 1993: 20,-38 + 1987: 20,-37 + 1988: 21,-37 + 1989: 21,-38 + 1990: 20,-38 - node: color: '#474F528F' id: CheckerNWSE decals: - 2239: -17,11 - 2240: -16,11 - 2241: -16,12 - 2242: -17,12 - 2243: -17,13 - 2244: -16,13 - 2245: -16,14 - 2246: -17,14 + 2236: -17,11 + 2237: -16,11 + 2238: -16,12 + 2239: -17,12 + 2240: -17,13 + 2241: -16,13 + 2242: -16,14 + 2243: -17,14 - node: color: '#52B4E996' id: CheckerNWSE decals: - 1766: 55,-5 - 1767: 55,-4 - 1768: 56,-4 - 1769: 56,-5 - 1770: 53,-5 - 1771: 53,-4 + 1763: 55,-5 + 1764: 55,-4 + 1765: 56,-4 + 1766: 56,-5 + 1767: 53,-5 + 1768: 53,-4 - node: color: '#D381C996' id: CheckerNWSE decals: - 1848: 66,-21 + 1845: 66,-21 - node: color: '#DE3A3A41' id: CheckerNWSE decals: - 6685: -36,-46 - 6686: -36,-45 - 6687: -36,-44 - 6688: -35,-44 - 6689: -35,-45 - 6690: -35,-46 + 6674: -36,-46 + 6675: -36,-45 + 6676: -36,-44 + 6677: -35,-44 + 6678: -35,-45 + 6679: -35,-46 - node: cleanable: True color: '#EFB34125' id: CheckerNWSE decals: - 6171: 15,40 - 6172: 13,42 - 6173: 13,41 - 6174: 13,40 - 6175: 13,39 + 6160: 15,40 + 6161: 13,42 + 6162: 13,41 + 6163: 13,40 + 6164: 13,39 - node: color: '#EFB34196' id: CheckerNWSE @@ -2733,82 +2743,82 @@ entities: 149: -2,-27 150: -3,-27 151: -3,-28 - 2201: 37,-15 - 2202: 37,-16 - 2203: 37,-17 - 2204: 38,-16 - 2205: 38,-15 - 2209: 38,-17 - 2210: 38,6 - 2211: 38,7 - 2212: -54,10 - 2213: -53,10 - 2214: -55,10 - 2215: -55,9 - 2855: -4,15 - 2856: -3,15 - 2857: -2,15 - 2858: -3,14 - 2861: -38,-54 - 2862: -38,-53 - 2863: -37,-53 - 2864: -37,-54 - 2865: 61,-32 - 2866: 62,-32 - 2867: 63,-32 - 2868: 63,-33 - 2869: 62,-33 - 2870: 61,-33 - 2874: 63,10 - 2875: 64,10 - 2876: 65,10 - 2877: 65,9 - 2878: 65,8 - 2879: 64,8 - 2880: 63,8 - 2881: 64,9 - 2887: -23,34 - 2888: -23,35 - 2891: 14,-39 - 2892: 15,-39 - 2893: -61,-20 - 2894: -62,-20 - 2898: -38,-38 - 6738: 51,-30 - 6739: 51,-29 - 6740: 52,-29 - 6741: 52,-30 + 2198: 37,-15 + 2199: 37,-16 + 2200: 37,-17 + 2201: 38,-16 + 2202: 38,-15 + 2206: 38,-17 + 2207: 38,6 + 2208: 38,7 + 2209: -54,10 + 2210: -53,10 + 2211: -55,10 + 2212: -55,9 + 2852: -4,15 + 2853: -3,15 + 2854: -2,15 + 2855: -3,14 + 2858: -38,-54 + 2859: -38,-53 + 2860: -37,-53 + 2861: -37,-54 + 2862: 61,-32 + 2863: 62,-32 + 2864: 63,-32 + 2865: 63,-33 + 2866: 62,-33 + 2867: 61,-33 + 2871: 63,10 + 2872: 64,10 + 2873: 65,10 + 2874: 65,9 + 2875: 65,8 + 2876: 64,8 + 2877: 63,8 + 2878: 64,9 + 2884: -23,34 + 2885: -23,35 + 2888: 14,-39 + 2889: 15,-39 + 2890: -61,-20 + 2891: -62,-20 + 2895: -38,-38 + 6727: 51,-30 + 6728: 51,-29 + 6729: 52,-29 + 6730: 52,-30 - node: color: '#D4D4D496' id: Delivery decals: - 6621: 0,30 - 6622: 0,31 + 6610: 0,30 + 6611: 0,31 - node: color: '#DE3A3A41' id: Delivery decals: - 6693: -38,-46 - 6694: -38,-46 - 6695: -38,-44 - 6696: -38,-44 + 6682: -38,-46 + 6683: -38,-46 + 6684: -38,-44 + 6685: -38,-44 - node: color: '#DE3A3A96' id: Delivery decals: - 1141: -3,25 - 1142: -2,25 - 1204: 4,31 - 1205: 5,31 - 1206: 2,31 - 1207: 2,30 + 1138: -3,25 + 1139: -2,25 + 1201: 4,31 + 1202: 5,31 + 1203: 2,31 + 1204: 2,30 - node: color: '#EFB34196' id: Delivery decals: 60: -7,-20 - 6269: 47,16 - 6270: 47,16 + 6258: 47,16 + 6259: 47,16 - node: color: '#EFB341FF' id: Delivery @@ -2847,3525 +2857,3538 @@ entities: 409: -23,-28 410: -23,-27 411: -23,-26 - 1273: 23,14 - 1275: 24,12 - 1287: 25,6 - 1288: 24,6 - 1289: 23,6 - 1307: 24,21 - 1308: 25,21 - 1309: 26,21 - 1310: 28,21 - 1311: 29,21 - 1312: 30,21 - 1452: 46,3 - 1453: 46,3 - 1775: 60,-12 - 2000: 26,-37 - 2001: 26,-38 - 2004: 31,-37 - 2005: 31,-38 - 2173: 8,-41 - 3084: 3,20 - 3085: -9,19 - 3086: -9,20 - 3087: -9,21 - 3088: -17,21 - 3089: -17,20 - 3090: -17,19 - 3091: 3,21 - 3092: 3,19 - 3093: 17,19 - 3094: 17,20 - 3095: 17,21 - 3096: 19,17 - 3097: 21,17 - 3098: 20,17 - 3099: 21,6 - 3100: 20,6 - 3101: 19,6 - 3102: 29,2 - 3103: 29,4 - 3104: 29,3 - 3105: 39,2 - 3106: 39,3 - 3107: 39,4 - 3108: 43,0 - 3109: 42,0 - 3110: 41,0 - 3111: 43,-14 - 3112: 42,-14 - 3113: 41,-14 - 3114: 46,-21 - 3115: 46,-19 - 3116: 46,-20 - 3117: 38,-19 - 3118: 38,-21 - 3119: 38,-20 - 3120: 30,-21 - 3121: 30,-20 - 3122: 30,-19 - 3123: 30,-20 - 3124: 21,-28 - 3125: 20,-28 - 3126: 19,-28 - 3127: 18,-32 - 3128: 18,-33 - 3129: 18,-34 - 3130: 10,-34 - 3131: 10,-33 - 3132: 10,-32 - 3133: 4,-32 - 3134: 4,-31 - 3135: 4,-30 - 3136: -9,-32 - 3137: -9,-31 - 3138: -9,-30 - 3139: -20,-32 - 3140: -20,-30 - 3141: -20,-31 - 3142: -24,-22 - 3143: -25,-22 - 3144: -26,-22 - 3145: -42,-29 - 3146: -42,-28 - 3147: -27,-29 - 3148: -27,-28 - 3149: -26,-12 - 3150: -25,-12 - 3151: -24,-12 - 3152: -23,-6 - 3153: -24,-6 - 3154: -25,-6 - 3155: -25,10 - 3156: -26,10 - 3157: -27,10 - 3158: -42,0 - 3159: -42,1 - 3160: -42,2 - 3161: -53,-5 - 3162: -54,-5 - 3163: -55,-5 - 3164: -55,-19 - 3165: -54,-19 - 3166: -53,-19 - 3167: -49,-34 - 3168: -47,-34 - 3169: -48,-34 - 3170: -47,-45 - 3171: -48,-45 - 3172: -49,-45 - 3173: -41,-49 - 3174: -42,-49 - 3175: -40,-49 - 3176: -54,-49 - 3177: -55,-49 - 3178: -56,-49 - 3179: -56,-55 - 3180: -55,-55 - 3181: -54,-55 - 3182: -42,-55 - 3183: -41,-55 - 3184: -40,-55 - 6623: 60,-24 - 6624: 60,-23 - 6723: 32,21 + 1270: 23,14 + 1272: 24,12 + 1284: 25,6 + 1285: 24,6 + 1286: 23,6 + 1304: 24,21 + 1305: 25,21 + 1306: 26,21 + 1307: 28,21 + 1308: 29,21 + 1309: 30,21 + 1449: 46,3 + 1450: 46,3 + 1772: 60,-12 + 1997: 26,-37 + 1998: 26,-38 + 2001: 31,-37 + 2002: 31,-38 + 2170: 8,-41 + 3081: 3,20 + 3082: -9,19 + 3083: -9,20 + 3084: -9,21 + 3085: -17,21 + 3086: -17,20 + 3087: -17,19 + 3088: 3,21 + 3089: 3,19 + 3090: 17,19 + 3091: 17,20 + 3092: 17,21 + 3093: 19,17 + 3094: 21,17 + 3095: 20,17 + 3096: 21,6 + 3097: 20,6 + 3098: 19,6 + 3099: 29,2 + 3100: 29,4 + 3101: 29,3 + 3102: 39,2 + 3103: 39,3 + 3104: 39,4 + 3105: 43,0 + 3106: 42,0 + 3107: 41,0 + 3108: 43,-14 + 3109: 42,-14 + 3110: 41,-14 + 3111: 46,-21 + 3112: 46,-19 + 3113: 46,-20 + 3114: 38,-19 + 3115: 38,-21 + 3116: 38,-20 + 3117: 30,-21 + 3118: 30,-20 + 3119: 30,-19 + 3120: 30,-20 + 3121: 21,-28 + 3122: 20,-28 + 3123: 19,-28 + 3124: 18,-32 + 3125: 18,-33 + 3126: 18,-34 + 3127: 10,-34 + 3128: 10,-33 + 3129: 10,-32 + 3130: 4,-32 + 3131: 4,-31 + 3132: 4,-30 + 3133: -9,-32 + 3134: -9,-31 + 3135: -9,-30 + 3136: -20,-32 + 3137: -20,-30 + 3138: -20,-31 + 3139: -24,-22 + 3140: -25,-22 + 3141: -26,-22 + 3142: -42,-29 + 3143: -42,-28 + 3144: -27,-29 + 3145: -27,-28 + 3146: -26,-12 + 3147: -25,-12 + 3148: -24,-12 + 3149: -23,-6 + 3150: -24,-6 + 3151: -25,-6 + 3152: -25,10 + 3153: -26,10 + 3154: -27,10 + 3155: -42,0 + 3156: -42,1 + 3157: -42,2 + 3158: -53,-5 + 3159: -54,-5 + 3160: -55,-5 + 3161: -55,-19 + 3162: -54,-19 + 3163: -53,-19 + 3164: -49,-34 + 3165: -47,-34 + 3166: -48,-34 + 3167: -47,-45 + 3168: -48,-45 + 3169: -49,-45 + 3170: -41,-49 + 3171: -42,-49 + 3172: -40,-49 + 3173: -54,-49 + 3174: -55,-49 + 3175: -56,-49 + 3176: -56,-55 + 3177: -55,-55 + 3178: -54,-55 + 3179: -42,-55 + 3180: -41,-55 + 3181: -40,-55 + 6612: 60,-24 + 6613: 60,-23 + 6712: 32,21 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: - 3016: 24,5 - 3017: 25,5 - 3018: 26,5 - 3019: 14,1 - 3020: 14,-12 - 3021: 0,14 - 3022: -6,14 + 3013: 24,5 + 3014: 25,5 + 3015: 26,5 + 3016: 14,1 + 3017: 14,-12 + 3018: 0,14 + 3019: -6,14 - node: color: '#52B4E996' id: DeliveryGreyscale decals: - 1764: 59,-5 - 1765: 61,-5 - 6383: 48,2 - 6384: 48,2 - 6385: 48,1 - 6386: 48,1 - 6617: 50,-5 - 6618: 50,-5 + 1761: 59,-5 + 1762: 61,-5 + 6372: 48,2 + 6373: 48,2 + 6374: 48,1 + 6375: 48,1 + 6606: 50,-5 + 6607: 50,-5 - node: color: '#DE3A3A96' id: DeliveryGreyscale decals: - 1202: 4,31 - 1203: 5,31 + 1199: 4,31 + 1200: 5,31 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 2250: 9,23 - 2251: 9,24 + 2247: 9,23 + 2248: 9,24 - node: cleanable: True color: '#835432FF' id: Dirt decals: - 2901: -37,28 - 2902: -36,27 - 2903: -37,27 - 2904: -37,25 - 2905: -37,24 - 2906: -36,25 - 2907: -36,24 - 2908: -36,25 + 2898: -37,28 + 2899: -36,27 + 2900: -37,27 + 2901: -37,25 + 2902: -37,24 + 2903: -36,25 + 2904: -36,24 + 2905: -36,25 + 2906: -38,28 + 2907: -39,29 + 2908: -40,28 2909: -38,28 - 2910: -39,29 - 2911: -40,28 - 2912: -38,28 - 2913: -37,27 - 2914: -37,28 - 2915: -37,27 - 2916: -36,25 - 2917: -36,24 - 2918: -34,24 - 2919: -34,23 - 2920: -34,22 - 2921: -36,22 - 2922: -37,22 - 2923: -36,24 - 2924: -37,24 - 2925: -36,23 - 2926: -37,25 - 2927: -36,25 - 2928: -37,26 - 2929: -38,27 - 2930: -38,28 - 2931: -39,27 - 2932: -39,26 - 2933: -39,26 + 2910: -37,27 + 2911: -37,28 + 2912: -37,27 + 2913: -36,25 + 2914: -36,24 + 2915: -34,24 + 2916: -34,23 + 2917: -34,22 + 2918: -36,22 + 2919: -37,22 + 2920: -36,24 + 2921: -37,24 + 2922: -36,23 + 2923: -37,25 + 2924: -36,25 + 2925: -37,26 + 2926: -38,27 + 2927: -38,28 + 2928: -39,27 + 2929: -39,26 + 2930: -39,26 - node: cleanable: True color: '#A4610696' id: Dirt decals: - 5485: -34,-26 - 5486: -37,-25 - 5487: -39,-28 - 5488: -40,-28 - 5489: -40,-31 - 5490: -39,-33 - 5491: -37,-33 - 5492: -32,-33 - 5493: -29,-33 - 5494: -29,-31 - 5495: -30,-28 - 5496: -29,-27 - 5497: -25,-30 - 5498: -25,-27 - 5499: -25,-26 - 5500: -25,-23 - 5501: -24,-21 - 5502: -25,-18 - 5503: -29,-20 - 5504: -29,-19 - 5505: -33,-19 - 5506: -33,-20 - 5507: -31,-14 - 5508: -29,-15 - 5509: -33,-16 - 5510: -29,-13 - 5511: -29,-11 - 5512: -34,-10 - 5513: -38,-11 - 5514: -37,-15 - 5515: -36,-16 - 5516: -40,-10 - 5517: -38,-17 - 5518: -47,-8 - 5519: -45,0 - 5520: -47,0 - 5521: -44,2 - 5522: -48,-2 - 5523: -47,-1 - 5524: -49,3 - 5525: -50,-1 - 5526: -45,1 - 5527: -53,4 - 5528: -48,5 - 5529: -50,6 - 5530: -47,1 - 5531: -38,-1 - 5532: -36,1 - 5533: -35,-1 - 5534: -32,-1 - 5535: -33,0 - 5536: -33,-3 - 5537: -24,-2 - 5538: -28,3 - 5539: -26,3 - 5540: -26,8 - 5541: -27,13 - 5542: -26,14 - 5543: -26,18 - 5544: -33,13 - 5545: -32,15 - 5546: -32,14 - 5547: -22,13 - 5548: -20,12 - 5549: -22,13 - 5550: -24,19 - 5551: -20,20 - 5552: -18,19 - 5553: -16,20 - 5554: -13,19 - 5555: -15,24 - 5556: -14,24 - 5557: -13,27 - 5558: -14,28 - 5559: -13,27 - 5560: -5,28 - 5561: -20,28 - 5562: -18,25 - 5563: -13,31 - 5564: -15,32 - 5565: -14,34 - 5566: -17,32 - 5567: -8,32 - 5568: -8,32 - 5569: -6,33 - 5570: -6,27 - 5571: -3,28 - 5572: -1,30 - 5573: -2,33 - 5574: -2,33 - 5575: -2,36 - 5576: -2,43 - 5577: -7,42 - 5578: -5,45 - 5579: -3,47 - 5580: 0,45 - 5581: -2,47 - 5582: -1,47 - 5583: -2,51 - 5584: 1,51 - 5585: -1,52 - 5586: 1,52 - 5587: 2,45 - 5588: 2,47 - 5589: 2,42 - 5590: 1,40 - 5591: 6,41 - 5592: 8,39 - 5593: 6,41 - 5594: 5,31 - 5595: 3,31 - 5596: 5,30 - 5597: 4,30 - 5598: 3,26 - 5599: 2,27 - 5600: 4,25 - 5601: 3,23 - 5602: 2,24 - 5603: 1,23 - 5604: -2,24 - 5605: 1,21 - 5606: -1,19 - 5607: 4,20 - 5608: 9,20 - 5609: 9,20 - 5610: 15,19 - 5611: 11,24 - 5612: 14,23 - 5613: 14,25 - 5614: 15,24 - 5615: 14,29 - 5616: 14,31 - 5617: 17,25 - 5618: 17,23 - 5619: 16,20 - 5620: 20,20 - 5621: 20,18 - 5622: 20,15 - 5623: 21,15 - 5624: 20,12 - 5625: 22,12 - 5626: 20,11 - 5627: 27,12 - 5628: 27,11 - 5629: 26,14 - 5630: 25,19 - 5631: 30,19 - 5632: 31,16 - 5633: 31,12 - 5634: 35,14 - 5635: 35,14 - 5636: 35,14 - 5637: 32,8 - 5638: 34,9 - 5639: 32,7 - 5640: 26,7 - 5641: 24,7 - 5642: 24,3 - 5643: 24,2 - 5644: 23,2 - 5645: 20,6 - 5646: 20,9 - 5647: 23,3 - 5648: 32,3 - 5649: 34,2 - 5650: 32,-2 - 5651: 32,-2 - 5652: 32,-4 - 5653: 38,-3 - 5654: 37,-4 - 5655: 37,-2 - 5656: 36,3 - 5657: 42,2 - 5658: 37,-3 - 5659: 38,-2 - 5660: 37,-2 - 5661: 42,-5 - 5662: 42,-2 - 5663: 42,-4 - 5664: 43,6 - 5665: 44,12 - 5666: 43,11 - 5667: 46,12 - 5668: 44,12 - 5669: 52,12 - 5670: 50,14 - 5671: 50,7 - 5672: 53,14 - 5673: 59,15 - 5674: 60,17 - 5675: 55,7 - 5676: 54,7 - 5677: 50,7 - 5678: 49,0 - 5679: 45,-1 - 5680: 46,-5 - 5681: 46,-8 - 5682: 50,-4 - 5683: 50,-7 - 5684: 55,-5 - 5685: 53,-5 - 5686: 58,-6 - 5687: 61,-5 - 5688: 59,-7 - 5689: 59,-7 - 5690: 60,-6 - 5691: 59,-14 - 5692: 60,-14 - 5693: 59,-14 - 5694: 59,-18 - 5695: 59,-20 - 5696: 60,-18 - 5697: 60,-17 - 5698: 64,-13 - 5699: 64,-17 - 5700: 65,-19 - 5701: 64,-19 - 5702: 64,-25 - 5703: 65,-24 - 5704: 63,-26 - 5705: 63,-24 - 5706: 62,-26 - 5707: 64,-26 - 5708: 70,-28 - 5709: 71,-26 - 5710: 69,-27 - 5711: 69,-23 - 5712: 70,-24 - 5713: 69,-22 - 5714: 66,-18 - 5715: 70,-18 - 5716: 71,-17 - 5717: 69,-13 - 5718: 71,-14 - 5719: 69,-12 - 5720: 70,-14 - 5721: 76,-17 - 5722: 77,-18 - 5723: 74,-15 - 5724: 76,-14 - 5725: 74,-14 - 5726: 68,-8 - 5727: 70,-10 - 5728: 76,-6 - 5729: 48,-25 - 5730: 48,-26 - 5731: 48,-27 - 5732: 48,-30 - 5733: 48,-31 - 5734: 47,-31 - 5735: 49,-34 - 5736: 47,-36 - 5737: 46,-36 - 5738: 44,-37 - 5739: 42,-35 - 5740: 42,-36 - 5741: 38,-36 - 5742: 38,-35 - 5743: 37,-37 - 5744: 32,-35 - 5745: 32,-36 - 5746: 32,-33 - 5747: 33,-31 - 5748: 32,-31 - 5749: 33,-27 - 5750: 32,-25 - 5751: 33,-24 - 5752: 35,-26 - 5753: 37,-26 - 5754: 41,-25 - 5755: 40,-26 - 5756: 41,-29 - 5757: 40,-29 - 5758: 40,-31 - 5759: 43,-29 - 5760: 44,-31 - 5761: 45,-30 - 5762: 27,-34 - 5763: 25,-34 - 5764: 24,-32 - 5765: 26,-29 - 5766: 23,-29 - 5767: 23,-31 - 5768: 25,-38 - 5769: 24,-37 - 5770: 22,-38 - 5771: 21,-37 - 5772: 21,-38 - 5773: 29,-39 - 5774: 28,-41 - 5775: 29,-44 - 5776: 28,-42 - 5777: 28,-45 - 5778: 26,-45 - 5779: 27,-44 - 5780: 24,-43 - 5781: 25,-46 - 5782: 27,-45 - 5783: 25,-46 - 5784: 32,-30 - 5785: 33,-28 - 5786: 36,-26 - 5787: 35,-26 - 5788: 36,-23 - 5789: 36,-30 - 5790: 42,-28 - 5791: 43,-29 - 5792: 52,-31 - 5793: 52,-35 - 5794: 55,-29 - 5795: 55,-30 - 5796: 57,-30 - 5797: 55,-34 - 5798: 55,-34 - 5799: 55,-36 - 5800: 57,-34 - 5801: 20,-45 - 5802: 17,-44 - 5803: 18,-45 - 5804: 19,-46 - 5805: 18,-48 - 5806: 19,-49 - 5807: 18,-50 - 5808: 20,-53 - 5809: 18,-54 - 5810: 17,-54 - 5811: 16,-54 - 5812: 16,-58 - 5813: 16,-59 - 5814: 19,-58 - 5815: 21,-58 - 5816: 21,-59 - 5817: 13,-47 - 5818: 14,-47 - 5819: 13,-48 - 5820: 13,-45 - 5821: 12,-45 - 5822: 9,-45 - 5823: 8,-45 - 5824: 10,-39 - 5825: 11,-39 - 5826: 0,-37 - 5827: 0,-36 - 5828: 1,-36 - 5829: 2,-38 - 5830: 0,-36 - 5831: -1,-37 - 5832: -2,-36 - 5833: -5,-36 - 5834: -4,-36 - 5835: -6,-36 - 5836: -7,-32 - 5837: -8,-32 - 5838: -7,-30 - 5839: -11,-31 - 5840: -12,-32 - 5841: -15,-32 - 5842: -16,-32 - 5843: -13,-30 - 5844: -16,-30 - 5845: -17,-30 - 5846: -22,-30 - 5847: -23,-30 - 5848: -24,-30 - 5849: -24,-29 - 5850: -24,-28 - 5851: -22,-32 - 5852: -24,-32 - 5853: -25,-32 - 5854: -26,-30 - 5855: -26,-28 - 5856: -26,-26 - 5857: -26,-24 - 5858: -24,-24 - 5859: -24,-22 - 5860: -24,-19 - 5861: -26,-21 - 5862: -26,-18 - 5863: -26,-17 - 5864: -24,-14 - 5865: -25,-15 - 5866: -27,-15 - 5867: -30,-15 - 5868: -30,-15 - 5869: -34,-15 - 5870: -35,-14 - 5871: -37,-15 - 5872: -38,-14 - 5873: -35,-15 - 5874: -34,-14 - 5875: -37,-10 - 5876: -38,-10 - 5877: -36,-9 - 5878: -33,-10 - 5879: -34,-11 - 5880: -32,-10 - 5881: -29,-10 - 5882: -29,-11 - 5883: -33,-20 - 5884: -34,-20 - 5885: -33,-18 - 5886: -32,-20 - 5887: -34,-19 - 5888: -33,-18 - 5889: -29,-19 - 5890: -30,-21 - 5891: -29,-19 - 5892: -30,-20 - 5893: -37,-18 - 5894: -40,-18 - 5895: -39,-20 - 5896: -37,-19 - 5897: -39,-19 - 5898: -32,-26 - 5899: -35,-25 - 5900: -39,-26 - 5901: -39,-26 - 5902: -39,-27 - 5903: -40,-28 - 5904: -38,-30 - 5905: -39,-32 - 5906: -39,-33 - 5907: -37,-33 - 5908: -34,-33 - 5909: -31,-33 - 5910: -34,-34 - 5911: -30,-33 - 5912: -30,-31 - 5913: -31,-28 - 5914: -29,-27 - 5915: -29,-30 - 5916: -43,-30 - 5917: -44,-28 - 5918: -45,-31 - 5919: -46,-27 - 5920: -45,-25 - 5921: -45,-25 - 5922: -47,-25 - 5923: -49,-25 - 5924: -51,-26 - 5925: -50,-29 - 5926: -51,-30 - 5927: -51,-30 - 5928: -50,-32 - 5929: -47,-32 - 5930: -48,-33 - 5931: -44,-31 - 5932: -44,-29 - 5933: -55,-25 - 5934: -56,-25 - 5935: -55,-29 - 5936: -56,-29 - 5937: -55,-29 - 5938: -60,-27 - 5939: -60,-29 - 5940: -62,-27 - 5941: -61,-21 - 5942: -61,-21 - 5943: -54,-21 - 5944: -54,-21 - 5945: -55,-16 - 5946: -53,-14 - 5947: -54,-13 - 5948: -53,-10 - 5949: -54,-7 - 5950: -53,-5 - 5951: -55,-2 - 5952: -54,0 - 5953: -53,1 - 5954: -53,-4 - 5955: -54,-3 - 5956: -54,-4 - 5957: -54,-9 - 5958: -46,-4 - 5959: -47,-4 - 5960: -48,-3 - 5961: -50,0 - 5962: -45,1 - 5963: -47,1 - 5964: -44,1 - 5965: -47,1 - 5966: -46,7 - 5967: -49,7 - 5968: -49,11 - 5969: -46,11 - 5970: -49,10 - 5971: -48,13 - 5972: -45,11 - 5973: -54,10 - 5974: -54,9 - 5975: -53,10 - 5976: -39,1 - 5977: -37,0 - 5978: -39,-1 - 5979: -34,-1 - 5980: -37,-1 - 5981: -36,0 - 5982: -35,2 - 5983: -31,2 - 5984: -31,2 - 5985: -33,1 - 5986: -28,0 - 5987: -30,-1 - 5988: -27,-1 - 5989: -33,-4 - 5990: -27,-5 - 5991: -24,-3 - 5992: -24,1 - 5993: -22,3 - 5994: -23,-2 - 5995: -22,-3 - 5996: -17,-3 - 5997: -19,-3 - 5998: -17,-3 - 5999: -18,-4 - 6000: -14,-4 - 6001: -18,-4 - 6002: -17,-4 - 6003: -17,-4 - 6004: -19,-4 - 6005: -19,-2 - 6006: -19,-2 - 6007: -20,-3 - 6008: -20,-5 - 6009: -16,0 - 6010: -16,1 - 6011: -16,3 - 6012: -15,0 - 6013: -15,6 - 6014: -17,5 - 6015: -15,7 - 6016: -21,5 - 6017: -21,6 - 6018: -20,7 - 6019: -22,8 - 6020: -24,9 - 6021: -21,9 - 6022: -23,8 - 6023: -22,8 - 6024: -23,8 - 6025: -21,13 - 6026: -22,11 - 6027: -20,13 - 6028: -22,14 - 6029: -26,12 - 6030: -26,16 - 6031: -26,17 - 6032: -26,20 - 6033: -19,20 - 6034: -25,20 - 6035: -22,19 - 6036: -24,26 - 6037: -25,26 - 6038: -26,26 - 6039: -25,29 - 6040: -26,29 - 6041: -26,26 - 6042: -26,27 - 6043: -25,29 - 6044: -29,26 - 6045: -29,26 - 6046: -19,26 - 6047: -21,26 - 6048: -19,28 - 6049: -18,26 - 6050: -14,28 - 6051: -14,26 - 6052: -13,28 - 6053: -11,23 - 6054: -7,32 - 6055: -9,32 - 6056: -14,32 - 6057: -15,33 - 6058: -18,32 - 6059: -3,28 - 6060: -4,27 - 6061: -1,29 - 6062: -2,23 - 6063: -1,19 - 6064: -3,14 - 6065: -3,14 - 6066: -2,15 - 6067: -4,15 - 6068: -3,15 - 6069: 2,-14 - 6070: 2,-16 - 6071: -1,-17 - 6072: -2,-14 - 6073: -7,-17 - 6074: -6,-16 - 6075: -7,-19 - 6076: -7,-19 - 6077: -7,-23 - 6078: -1,-24 - 6079: 4,-20 - 6080: 6,-23 - 6081: 6,-20 - 6082: 7,-22 - 6083: 7,-20 - 6084: 11,-18 - 6085: 13,-18 - 6086: 13,-22 - 6087: 13,-22 - 6088: 12,-22 - 6089: 15,-26 - 6090: 12,-26 - 6091: 12,-29 - 6092: 7,-30 - 6093: 8,-32 - 6094: 7,-32 - 6095: 10,-34 - 6096: 13,-33 - 6097: 16,-32 - 6098: 21,-37 - 6099: 20,-38 - 6100: 24,-38 - 6101: 25,-37 - 6102: 28,-34 - 6103: 25,-34 - 6104: 27,-29 - 6105: 24,-29 - 6106: 33,-34 - 6107: 32,-37 - 6108: 35,-37 - 6109: 38,-36 - 6110: 40,-36 - 6111: 39,-30 - 6112: 44,-25 - 6113: 43,-25 - 6114: 42,-20 - 6115: 42,-18 - 6116: 41,-16 - 6117: 38,-16 - 6118: 37,-17 - 6119: 37,-15 - 6120: 37,-17 - 6121: 37,-16 - 6122: 37,-16 - 6123: 37,-16 - 6124: 38,-3 - 6125: 38,-4 - 6126: 33,-3 - 6127: 33,-3 - 6128: 33,-2 - 6129: 38,7 - 6130: 36,13 - 6131: 37,13 - 6132: 35,13 - 6133: 34,13 - 6134: 34,14 - 6135: 36,13 - 6136: 36,13 - 6137: 34,14 - 6138: 35,18 - 6139: 36,18 + 5478: -34,-26 + 5479: -37,-25 + 5480: -39,-28 + 5481: -40,-28 + 5482: -40,-31 + 5483: -39,-33 + 5484: -37,-33 + 5485: -32,-33 + 5486: -29,-33 + 5487: -29,-31 + 5488: -30,-28 + 5489: -29,-27 + 5490: -25,-30 + 5491: -25,-27 + 5492: -25,-26 + 5493: -25,-23 + 5494: -24,-21 + 5495: -25,-18 + 5496: -29,-20 + 5497: -29,-19 + 5498: -33,-19 + 5499: -33,-20 + 5500: -31,-14 + 5501: -29,-15 + 5502: -33,-16 + 5503: -29,-13 + 5504: -29,-11 + 5505: -38,-11 + 5506: -37,-15 + 5507: -36,-16 + 5508: -40,-10 + 5509: -38,-17 + 5510: -47,-8 + 5511: -45,0 + 5512: -47,0 + 5513: -44,2 + 5514: -48,-2 + 5515: -47,-1 + 5516: -49,3 + 5517: -50,-1 + 5518: -45,1 + 5519: -53,4 + 5520: -48,5 + 5521: -50,6 + 5522: -47,1 + 5523: -38,-1 + 5524: -36,1 + 5525: -35,-1 + 5526: -32,-1 + 5527: -33,0 + 5528: -33,-3 + 5529: -24,-2 + 5530: -28,3 + 5531: -26,3 + 5532: -26,8 + 5533: -27,13 + 5534: -26,14 + 5535: -26,18 + 5536: -33,13 + 5537: -32,15 + 5538: -32,14 + 5539: -22,13 + 5540: -20,12 + 5541: -22,13 + 5542: -24,19 + 5543: -20,20 + 5544: -18,19 + 5545: -16,20 + 5546: -13,19 + 5547: -15,24 + 5548: -14,24 + 5549: -13,27 + 5550: -14,28 + 5551: -13,27 + 5552: -5,28 + 5553: -20,28 + 5554: -18,25 + 5555: -13,31 + 5556: -15,32 + 5557: -14,34 + 5558: -17,32 + 5559: -8,32 + 5560: -8,32 + 5561: -6,33 + 5562: -6,27 + 5563: -3,28 + 5564: -1,30 + 5565: -2,33 + 5566: -2,33 + 5567: -2,36 + 5568: -2,43 + 5569: -7,42 + 5570: -5,45 + 5571: -3,47 + 5572: 0,45 + 5573: -2,47 + 5574: -1,47 + 5575: -2,51 + 5576: 1,51 + 5577: -1,52 + 5578: 1,52 + 5579: 2,45 + 5580: 2,47 + 5581: 2,42 + 5582: 1,40 + 5583: 6,41 + 5584: 8,39 + 5585: 6,41 + 5586: 5,31 + 5587: 3,31 + 5588: 5,30 + 5589: 4,30 + 5590: 3,26 + 5591: 2,27 + 5592: 4,25 + 5593: 3,23 + 5594: 2,24 + 5595: 1,23 + 5596: -2,24 + 5597: 1,21 + 5598: -1,19 + 5599: 4,20 + 5600: 9,20 + 5601: 9,20 + 5602: 15,19 + 5603: 11,24 + 5604: 14,23 + 5605: 14,25 + 5606: 15,24 + 5607: 14,29 + 5608: 14,31 + 5609: 17,25 + 5610: 17,23 + 5611: 16,20 + 5612: 20,20 + 5613: 20,18 + 5614: 20,15 + 5615: 21,15 + 5616: 20,12 + 5617: 22,12 + 5618: 20,11 + 5619: 27,12 + 5620: 27,11 + 5621: 26,14 + 5622: 25,19 + 5623: 30,19 + 5624: 31,16 + 5625: 31,12 + 5626: 35,14 + 5627: 35,14 + 5628: 35,14 + 5629: 32,8 + 5630: 34,9 + 5631: 32,7 + 5632: 26,7 + 5633: 24,7 + 5634: 24,3 + 5635: 24,2 + 5636: 23,2 + 5637: 20,6 + 5638: 20,9 + 5639: 23,3 + 5640: 32,3 + 5641: 34,2 + 5642: 32,-2 + 5643: 32,-2 + 5644: 32,-4 + 5645: 38,-3 + 5646: 37,-4 + 5647: 37,-2 + 5648: 36,3 + 5649: 42,2 + 5650: 37,-3 + 5651: 38,-2 + 5652: 37,-2 + 5653: 42,-5 + 5654: 42,-2 + 5655: 42,-4 + 5656: 43,6 + 5657: 44,12 + 5658: 43,11 + 5659: 46,12 + 5660: 44,12 + 5661: 52,12 + 5662: 50,14 + 5663: 50,7 + 5664: 53,14 + 5665: 59,15 + 5666: 60,17 + 5667: 55,7 + 5668: 54,7 + 5669: 50,7 + 5670: 49,0 + 5671: 45,-1 + 5672: 46,-5 + 5673: 46,-8 + 5674: 50,-4 + 5675: 50,-7 + 5676: 55,-5 + 5677: 53,-5 + 5678: 58,-6 + 5679: 61,-5 + 5680: 59,-7 + 5681: 59,-7 + 5682: 60,-6 + 5683: 59,-14 + 5684: 60,-14 + 5685: 59,-14 + 5686: 59,-18 + 5687: 59,-20 + 5688: 60,-18 + 5689: 60,-17 + 5690: 64,-13 + 5691: 64,-17 + 5692: 65,-19 + 5693: 64,-19 + 5694: 64,-25 + 5695: 65,-24 + 5696: 63,-26 + 5697: 63,-24 + 5698: 62,-26 + 5699: 64,-26 + 5700: 70,-28 + 5701: 71,-26 + 5702: 69,-27 + 5703: 69,-23 + 5704: 70,-24 + 5705: 69,-22 + 5706: 66,-18 + 5707: 70,-18 + 5708: 71,-17 + 5709: 69,-13 + 5710: 71,-14 + 5711: 69,-12 + 5712: 70,-14 + 5713: 76,-17 + 5714: 77,-18 + 5715: 74,-15 + 5716: 76,-14 + 5717: 74,-14 + 5718: 68,-8 + 5719: 70,-10 + 5720: 76,-6 + 5721: 48,-25 + 5722: 48,-26 + 5723: 48,-27 + 5724: 48,-30 + 5725: 48,-31 + 5726: 47,-31 + 5727: 49,-34 + 5728: 47,-36 + 5729: 46,-36 + 5730: 44,-37 + 5731: 42,-35 + 5732: 42,-36 + 5733: 38,-36 + 5734: 38,-35 + 5735: 37,-37 + 5736: 32,-35 + 5737: 32,-36 + 5738: 32,-33 + 5739: 33,-31 + 5740: 32,-31 + 5741: 33,-27 + 5742: 32,-25 + 5743: 33,-24 + 5744: 35,-26 + 5745: 37,-26 + 5746: 41,-25 + 5747: 40,-26 + 5748: 41,-29 + 5749: 40,-29 + 5750: 40,-31 + 5751: 43,-29 + 5752: 44,-31 + 5753: 45,-30 + 5754: 27,-34 + 5755: 25,-34 + 5756: 24,-32 + 5757: 26,-29 + 5758: 23,-29 + 5759: 23,-31 + 5760: 25,-38 + 5761: 24,-37 + 5762: 22,-38 + 5763: 21,-37 + 5764: 21,-38 + 5765: 29,-39 + 5766: 28,-41 + 5767: 29,-44 + 5768: 28,-42 + 5769: 28,-45 + 5770: 26,-45 + 5771: 27,-44 + 5772: 24,-43 + 5773: 25,-46 + 5774: 27,-45 + 5775: 25,-46 + 5776: 32,-30 + 5777: 33,-28 + 5778: 36,-26 + 5779: 35,-26 + 5780: 36,-23 + 5781: 36,-30 + 5782: 42,-28 + 5783: 43,-29 + 5784: 52,-31 + 5785: 52,-35 + 5786: 55,-29 + 5787: 55,-30 + 5788: 57,-30 + 5789: 55,-34 + 5790: 55,-34 + 5791: 55,-36 + 5792: 57,-34 + 5793: 20,-45 + 5794: 17,-44 + 5795: 18,-45 + 5796: 19,-46 + 5797: 18,-48 + 5798: 19,-49 + 5799: 18,-50 + 5800: 20,-53 + 5801: 18,-54 + 5802: 17,-54 + 5803: 16,-54 + 5804: 16,-58 + 5805: 16,-59 + 5806: 19,-58 + 5807: 21,-58 + 5808: 21,-59 + 5809: 13,-47 + 5810: 14,-47 + 5811: 13,-48 + 5812: 13,-45 + 5813: 12,-45 + 5814: 9,-45 + 5815: 8,-45 + 5816: 10,-39 + 5817: 11,-39 + 5818: 0,-37 + 5819: 0,-36 + 5820: 1,-36 + 5821: 2,-38 + 5822: 0,-36 + 5823: -1,-37 + 5824: -2,-36 + 5825: -5,-36 + 5826: -4,-36 + 5827: -6,-36 + 5828: -7,-32 + 5829: -8,-32 + 5830: -7,-30 + 5831: -11,-31 + 5832: -12,-32 + 5833: -15,-32 + 5834: -16,-32 + 5835: -13,-30 + 5836: -16,-30 + 5837: -17,-30 + 5838: -22,-30 + 5839: -23,-30 + 5840: -24,-30 + 5841: -24,-29 + 5842: -24,-28 + 5843: -22,-32 + 5844: -24,-32 + 5845: -25,-32 + 5846: -26,-30 + 5847: -26,-28 + 5848: -26,-26 + 5849: -26,-24 + 5850: -24,-24 + 5851: -24,-22 + 5852: -24,-19 + 5853: -26,-21 + 5854: -26,-18 + 5855: -26,-17 + 5856: -24,-14 + 5857: -25,-15 + 5858: -27,-15 + 5859: -30,-15 + 5860: -30,-15 + 5861: -34,-15 + 5862: -35,-14 + 5863: -37,-15 + 5864: -38,-14 + 5865: -35,-15 + 5866: -34,-14 + 5867: -37,-10 + 5868: -38,-10 + 5869: -36,-9 + 5870: -29,-10 + 5871: -29,-11 + 5872: -33,-20 + 5873: -34,-20 + 5874: -33,-18 + 5875: -32,-20 + 5876: -34,-19 + 5877: -33,-18 + 5878: -29,-19 + 5879: -30,-21 + 5880: -29,-19 + 5881: -30,-20 + 5882: -37,-18 + 5883: -40,-18 + 5884: -39,-20 + 5885: -37,-19 + 5886: -39,-19 + 5887: -32,-26 + 5888: -35,-25 + 5889: -39,-26 + 5890: -39,-26 + 5891: -39,-27 + 5892: -40,-28 + 5893: -38,-30 + 5894: -39,-32 + 5895: -39,-33 + 5896: -37,-33 + 5897: -34,-33 + 5898: -31,-33 + 5899: -34,-34 + 5900: -30,-33 + 5901: -30,-31 + 5902: -31,-28 + 5903: -29,-27 + 5904: -29,-30 + 5905: -43,-30 + 5906: -44,-28 + 5907: -45,-31 + 5908: -46,-27 + 5909: -45,-25 + 5910: -45,-25 + 5911: -47,-25 + 5912: -49,-25 + 5913: -51,-26 + 5914: -50,-29 + 5915: -51,-30 + 5916: -51,-30 + 5917: -50,-32 + 5918: -47,-32 + 5919: -48,-33 + 5920: -44,-31 + 5921: -44,-29 + 5922: -55,-25 + 5923: -56,-25 + 5924: -55,-29 + 5925: -56,-29 + 5926: -55,-29 + 5927: -60,-27 + 5928: -60,-29 + 5929: -62,-27 + 5930: -61,-21 + 5931: -61,-21 + 5932: -54,-21 + 5933: -54,-21 + 5934: -55,-16 + 5935: -53,-14 + 5936: -54,-13 + 5937: -53,-10 + 5938: -54,-7 + 5939: -53,-5 + 5940: -55,-2 + 5941: -54,0 + 5942: -53,1 + 5943: -53,-4 + 5944: -54,-3 + 5945: -54,-4 + 5946: -54,-9 + 5947: -46,-4 + 5948: -47,-4 + 5949: -48,-3 + 5950: -50,0 + 5951: -45,1 + 5952: -47,1 + 5953: -44,1 + 5954: -47,1 + 5955: -46,7 + 5956: -49,7 + 5957: -49,11 + 5958: -46,11 + 5959: -49,10 + 5960: -48,13 + 5961: -45,11 + 5962: -54,10 + 5963: -54,9 + 5964: -53,10 + 5965: -39,1 + 5966: -37,0 + 5967: -39,-1 + 5968: -34,-1 + 5969: -37,-1 + 5970: -36,0 + 5971: -35,2 + 5972: -31,2 + 5973: -31,2 + 5974: -33,1 + 5975: -28,0 + 5976: -30,-1 + 5977: -27,-1 + 5978: -33,-4 + 5979: -27,-5 + 5980: -24,-3 + 5981: -24,1 + 5982: -22,3 + 5983: -23,-2 + 5984: -22,-3 + 5985: -17,-3 + 5986: -19,-3 + 5987: -17,-3 + 5988: -18,-4 + 5989: -14,-4 + 5990: -18,-4 + 5991: -17,-4 + 5992: -17,-4 + 5993: -19,-4 + 5994: -19,-2 + 5995: -19,-2 + 5996: -20,-3 + 5997: -20,-5 + 5998: -16,0 + 5999: -16,1 + 6000: -16,3 + 6001: -15,0 + 6002: -15,6 + 6003: -17,5 + 6004: -15,7 + 6005: -21,5 + 6006: -21,6 + 6007: -20,7 + 6008: -22,8 + 6009: -24,9 + 6010: -21,9 + 6011: -23,8 + 6012: -22,8 + 6013: -23,8 + 6014: -21,13 + 6015: -22,11 + 6016: -20,13 + 6017: -22,14 + 6018: -26,12 + 6019: -26,16 + 6020: -26,17 + 6021: -26,20 + 6022: -19,20 + 6023: -25,20 + 6024: -22,19 + 6025: -24,26 + 6026: -25,26 + 6027: -26,26 + 6028: -25,29 + 6029: -26,29 + 6030: -26,26 + 6031: -26,27 + 6032: -25,29 + 6033: -29,26 + 6034: -29,26 + 6035: -19,26 + 6036: -21,26 + 6037: -19,28 + 6038: -18,26 + 6039: -14,28 + 6040: -14,26 + 6041: -13,28 + 6042: -11,23 + 6043: -7,32 + 6044: -9,32 + 6045: -14,32 + 6046: -15,33 + 6047: -18,32 + 6048: -3,28 + 6049: -4,27 + 6050: -1,29 + 6051: -2,23 + 6052: -1,19 + 6053: -3,14 + 6054: -3,14 + 6055: -2,15 + 6056: -4,15 + 6057: -3,15 + 6058: 2,-14 + 6059: 2,-16 + 6060: -1,-17 + 6061: -2,-14 + 6062: -7,-17 + 6063: -6,-16 + 6064: -7,-19 + 6065: -7,-19 + 6066: -7,-23 + 6067: -1,-24 + 6068: 4,-20 + 6069: 6,-23 + 6070: 6,-20 + 6071: 7,-22 + 6072: 7,-20 + 6073: 11,-18 + 6074: 13,-18 + 6075: 13,-22 + 6076: 13,-22 + 6077: 12,-22 + 6078: 15,-26 + 6079: 12,-26 + 6080: 12,-29 + 6081: 7,-30 + 6082: 8,-32 + 6083: 7,-32 + 6084: 10,-34 + 6085: 13,-33 + 6086: 16,-32 + 6087: 21,-37 + 6088: 20,-38 + 6089: 24,-38 + 6090: 25,-37 + 6091: 28,-34 + 6092: 25,-34 + 6093: 27,-29 + 6094: 24,-29 + 6095: 33,-34 + 6096: 32,-37 + 6097: 35,-37 + 6098: 38,-36 + 6099: 40,-36 + 6100: 39,-30 + 6101: 44,-25 + 6102: 43,-25 + 6103: 42,-20 + 6104: 42,-18 + 6105: 41,-16 + 6106: 38,-16 + 6107: 37,-17 + 6108: 37,-15 + 6109: 37,-17 + 6110: 37,-16 + 6111: 37,-16 + 6112: 37,-16 + 6113: 38,-3 + 6114: 38,-4 + 6115: 33,-3 + 6116: 33,-3 + 6117: 33,-2 + 6118: 38,7 + 6119: 36,13 + 6120: 37,13 + 6121: 35,13 + 6122: 34,13 + 6123: 34,14 + 6124: 36,13 + 6125: 36,13 + 6126: 34,14 + 6127: 35,18 + 6128: 36,18 - node: cleanable: True color: '#FFFFFF47' id: Dirt decals: - 6702: 15,-30 - 6703: 15,-30 - 6704: 16,-27 - 6705: 16,-27 + 6691: 15,-30 + 6692: 15,-30 + 6693: 16,-27 + 6694: 16,-27 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 6151: 51,20 - 6152: 50,21 - 6209: 81,-34 - 6210: 83,-35 - 6211: 81,-34 - 6212: 81,-34 - 6213: 83,-35 - 6214: 81,-35 - 6215: 82,-35 - 6216: 82,-35 - 6217: 80,-35 - 6218: 83,-36 - 6223: 82,-34 + 6140: 51,20 + 6141: 50,21 + 6198: 81,-34 + 6199: 83,-35 + 6200: 81,-34 + 6201: 81,-34 + 6202: 83,-35 + 6203: 81,-35 + 6204: 82,-35 + 6205: 82,-35 + 6206: 80,-35 + 6207: 83,-36 + 6212: 82,-34 + 6769: -25,-42 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Dirt decals: - 3027: -44,16 - 3028: -43,17 - 3029: -41,14 + 3024: -44,16 + 3025: -43,17 + 3026: -41,14 - node: cleanable: True color: '#1D1D21FF' id: DirtHeavy decals: - 2952: -39,26 - 2953: -40,29 - 2954: -38,28 - 2955: -36,29 - 2956: -35,27 - 2957: -35,26 - 2958: -35,26 - 2959: -37,26 - 2960: -37,26 - 2961: -37,25 - 2962: -39,26 - 2963: -34,25 - 2964: -34,25 - 2965: -36,24 + 2949: -39,26 + 2950: -40,29 + 2951: -38,28 + 2952: -36,29 + 2953: -35,27 + 2954: -35,26 + 2955: -35,26 + 2956: -37,26 + 2957: -37,26 + 2958: -37,25 + 2959: -39,26 + 2960: -34,25 + 2961: -34,25 + 2962: -36,24 - node: cleanable: True color: '#835432FF' id: DirtHeavy decals: - 2944: -36,26 - 2945: -35,27 - 2946: -37,26 - 2947: -37,27 - 2948: -37,25 - 2949: -39,26 - 2950: -38,27 - 2951: -38,28 + 2941: -36,26 + 2942: -35,27 + 2943: -37,26 + 2944: -37,27 + 2945: -37,25 + 2946: -39,26 + 2947: -38,27 + 2948: -38,28 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 6667: 89,-20 - 6668: 87,-21 - 6669: 92,-21 + 6656: 89,-20 + 6657: 87,-21 + 6658: 92,-21 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 2972: -8,-40 - 2973: -7,-39 - 2974: -5,-40 - 2975: -6,-42 - 2976: -4,-39 - 2977: -6,-40 - 2978: -6,-40 - 2979: -7,-40 - 2980: -7,-39 - 2981: -7,-39 - 2982: -8,-39 - 3665: -60,-66 - 3666: -59,-65 - 3667: -59,-63 - 3668: -59,-61 - 3669: -59,-59 - 3670: -59,-57 - 3671: -60,-57 - 3672: -57,-57 - 3673: -58,-58 - 3674: -56,-57 - 3675: -56,-58 - 3676: -56,-60 - 3677: -56,-62 - 3678: -56,-64 - 3679: -56,-66 - 3680: -58,-66 - 3681: -55,-56 - 3682: -54,-54 - 3683: -54,-52 - 3684: -54,-50 - 3685: -56,-53 - 3686: -56,-52 - 3687: -56,-47 - 3688: -53,-48 - 3689: -52,-46 - 3690: -54,-46 - 3691: -51,-46 - 3692: -50,-48 - 3693: -47,-48 - 3694: -45,-48 - 3695: -43,-46 - 3696: -45,-46 - 3697: -43,-48 - 3698: -42,-48 - 3699: -40,-48 - 3700: -40,-50 - 3701: -40,-52 - 3702: -40,-54 - 3703: -42,-51 - 3704: -42,-53 - 3705: -42,-54 - 3706: -41,-56 - 3707: -39,-57 - 3708: -40,-58 - 3709: -37,-57 - 3710: -37,-58 - 3711: -37,-61 - 3712: -37,-64 - 3713: -37,-65 - 3714: -36,-65 - 3715: -36,-66 - 3716: -39,-66 - 3717: -40,-65 - 3718: -40,-63 - 3719: -40,-60 - 3720: -47,-44 - 3721: -47,-42 - 3722: -47,-39 - 3723: -47,-35 - 3724: -47,-33 - 3725: -49,-33 - 3726: -49,-37 - 3727: -49,-39 - 3728: -49,-41 - 3729: -49,-44 - 3730: -49,-44 - 3731: -49,-43 - 3732: -44,-32 - 3733: -44,-30 - 3734: -43,-31 - 3735: -43,-27 - 3736: -44,-26 - 3737: -43,-26 - 3738: -44,-25 - 3739: -52,-32 - 3740: -52,-30 - 3741: -52,-29 - 3742: -52,-25 - 3743: -52,-22 - 3744: -54,-22 - 3745: -55,-22 - 3746: -52,-20 - 3747: -50,-20 - 3748: -47,-20 - 3749: -46,-20 - 3750: -45,-20 - 3751: -44,-20 - 3752: -44,-22 - 3753: -51,-18 - 3754: -51,-17 - 3755: -49,-17 - 3756: -48,-15 - 3757: -48,-13 - 3758: -50,-13 - 3759: -51,-14 - 3760: -51,-15 - 3761: -44,-15 - 3762: -46,-15 - 3763: -46,-14 - 3764: -54,-24 - 3765: -56,-24 - 3766: -54,-30 - 3767: -56,-29 - 3768: -57,-28 - 3769: -54,-28 - 3770: -61,-29 - 3771: -59,-29 - 3772: -59,-27 - 3773: -59,-25 - 3774: -61,-25 - 3775: -55,-17 - 3776: -55,-15 - 3777: -55,-13 - 3778: -55,-10 - 3779: -53,-17 - 3780: -53,-14 - 3781: -53,-12 - 3782: -53,-11 - 3783: -53,-9 - 3784: -53,-7 - 3785: -53,-6 - 3786: -53,-4 - 3787: -55,-3 - 3788: -55,-7 - 3789: -55,-8 - 3790: -53,0 - 3791: -53,-2 - 3792: -51,-4 - 3793: -49,-4 - 3794: -50,-5 - 3795: -48,-5 - 3804: -53,2 - 3805: -53,4 - 3806: -53,6 - 3807: -53,7 - 3808: -55,7 - 3809: -55,5 - 3810: -55,-1 - 3811: -51,6 - 3812: -50,7 - 3813: -47,7 - 3814: -48,6 - 3815: -46,6 - 3816: -45,7 - 3817: -47,9 - 3818: -45,9 - 3819: -44,9 - 3820: -50,9 - 3821: -50,9 - 3822: -51,11 - 3823: -51,13 - 3824: -50,13 - 3825: -48,13 - 3826: -46,13 - 3827: -48,12 - 3828: -43,11 - 3829: -44,12 - 3830: -43,13 - 3831: -43,12 - 3832: -54,10 - 3833: -53,9 - 3834: -54,9 - 3857: -43,1 - 3858: -40,2 - 3859: -39,1 - 3860: -39,1 - 3861: -40,-1 - 3862: -38,-1 - 3863: -40,-2 - 3864: -39,-2 - 3865: -40,-4 - 3866: -39,-5 - 3867: -38,-5 - 3868: -37,-5 - 3869: -36,-5 - 3870: -38,-4 - 3871: -36,-3 - 3872: -36,-2 - 3873: -36,-4 - 3874: -34,-3 - 3875: -32,-4 - 3876: -34,-1 - 3877: -32,0 - 3878: -35,0 - 3879: -39,3 - 3880: -40,4 - 3881: -38,4 - 3882: -33,1 - 3883: -31,2 - 3884: -31,-1 - 3885: -29,0 - 3886: -32,-2 - 3887: -31,-3 - 3888: -33,-4 - 3889: -32,-5 - 3890: -31,-4 - 3891: -30,-3 - 3892: -28,-3 - 3893: -28,-4 - 3894: -26,-5 - 3895: -27,-2 - 3896: -27,-3 - 3897: -29,0 - 3898: -27,0 - 3899: -27,2 - 3900: -28,3 - 3901: -27,3 - 3902: -27,1 - 3903: -26,-1 - 3904: -32,-1 - 3905: -28,4 - 3906: -26,5 - 3907: -26,6 - 3908: -26,3 - 3909: -26,3 - 3910: -24,2 - 3911: -23,1 - 3912: -25,0 - 3913: -23,-2 - 3914: -25,-3 - 3915: -23,-3 - 3916: -25,-4 - 3917: -23,-5 - 3918: -25,-5 - 3919: -24,-1 - 3920: -25,-1 - 3921: -23,3 - 3922: -15,-1 - 3923: -16,-1 - 3924: -15,0 - 3925: -16,1 - 3926: -16,3 - 3927: -15,3 - 3928: -15,2 - 3929: -15,1 - 3930: -15,1 - 3931: -27,6 - 3932: -27,7 - 3933: -27,9 - 3934: -20,5 - 3935: -21,5 - 3940: -17,5 - 3941: -16,5 - 3942: -16,5 - 3943: -22,11 - 3944: -21,11 - 3945: -22,13 + 2969: -8,-40 + 2970: -7,-39 + 2971: -5,-40 + 2972: -6,-42 + 2973: -4,-39 + 2974: -6,-40 + 2975: -6,-40 + 2976: -7,-40 + 2977: -7,-39 + 2978: -7,-39 + 2979: -8,-39 + 3662: -60,-66 + 3663: -59,-65 + 3664: -59,-63 + 3665: -59,-61 + 3666: -59,-59 + 3667: -59,-57 + 3668: -60,-57 + 3669: -57,-57 + 3670: -58,-58 + 3671: -56,-57 + 3672: -56,-58 + 3673: -56,-60 + 3674: -56,-62 + 3675: -56,-64 + 3676: -56,-66 + 3677: -58,-66 + 3678: -55,-56 + 3679: -54,-54 + 3680: -54,-52 + 3681: -54,-50 + 3682: -56,-53 + 3683: -56,-52 + 3684: -56,-47 + 3685: -53,-48 + 3686: -52,-46 + 3687: -54,-46 + 3688: -51,-46 + 3689: -50,-48 + 3690: -47,-48 + 3691: -45,-48 + 3692: -43,-46 + 3693: -45,-46 + 3694: -43,-48 + 3695: -42,-48 + 3696: -40,-48 + 3697: -40,-50 + 3698: -40,-52 + 3699: -40,-54 + 3700: -42,-51 + 3701: -42,-53 + 3702: -42,-54 + 3703: -41,-56 + 3704: -39,-57 + 3705: -40,-58 + 3706: -37,-57 + 3707: -37,-58 + 3708: -37,-61 + 3709: -37,-64 + 3710: -37,-65 + 3711: -36,-65 + 3712: -36,-66 + 3713: -39,-66 + 3714: -40,-65 + 3715: -40,-63 + 3716: -40,-60 + 3717: -47,-44 + 3718: -47,-42 + 3719: -47,-39 + 3720: -47,-35 + 3721: -47,-33 + 3722: -49,-33 + 3723: -49,-37 + 3724: -49,-39 + 3725: -49,-41 + 3726: -49,-44 + 3727: -49,-44 + 3728: -49,-43 + 3729: -44,-32 + 3730: -44,-30 + 3731: -43,-31 + 3732: -43,-27 + 3733: -44,-26 + 3734: -43,-26 + 3735: -44,-25 + 3736: -52,-32 + 3737: -52,-30 + 3738: -52,-29 + 3739: -52,-25 + 3740: -52,-22 + 3741: -54,-22 + 3742: -55,-22 + 3743: -52,-20 + 3744: -50,-20 + 3745: -47,-20 + 3746: -46,-20 + 3747: -45,-20 + 3748: -44,-20 + 3749: -44,-22 + 3750: -51,-18 + 3751: -51,-17 + 3752: -49,-17 + 3753: -48,-15 + 3754: -48,-13 + 3755: -50,-13 + 3756: -51,-14 + 3757: -51,-15 + 3758: -44,-15 + 3759: -46,-15 + 3760: -46,-14 + 3761: -54,-24 + 3762: -56,-24 + 3763: -54,-30 + 3764: -56,-29 + 3765: -57,-28 + 3766: -54,-28 + 3767: -61,-29 + 3768: -59,-29 + 3769: -59,-27 + 3770: -59,-25 + 3771: -61,-25 + 3772: -55,-17 + 3773: -55,-15 + 3774: -55,-13 + 3775: -55,-10 + 3776: -53,-17 + 3777: -53,-14 + 3778: -53,-12 + 3779: -53,-11 + 3780: -53,-9 + 3781: -53,-7 + 3782: -53,-6 + 3783: -53,-4 + 3784: -55,-3 + 3785: -55,-7 + 3786: -55,-8 + 3787: -53,0 + 3788: -53,-2 + 3789: -51,-4 + 3790: -49,-4 + 3791: -50,-5 + 3792: -48,-5 + 3801: -53,2 + 3802: -53,4 + 3803: -53,6 + 3804: -53,7 + 3805: -55,7 + 3806: -55,5 + 3807: -55,-1 + 3808: -51,6 + 3809: -50,7 + 3810: -47,7 + 3811: -48,6 + 3812: -46,6 + 3813: -45,7 + 3814: -47,9 + 3815: -45,9 + 3816: -44,9 + 3817: -50,9 + 3818: -50,9 + 3819: -51,11 + 3820: -51,13 + 3821: -50,13 + 3822: -48,13 + 3823: -46,13 + 3824: -48,12 + 3825: -43,11 + 3826: -44,12 + 3827: -43,13 + 3828: -43,12 + 3829: -54,10 + 3830: -53,9 + 3831: -54,9 + 3854: -43,1 + 3855: -40,2 + 3856: -39,1 + 3857: -39,1 + 3858: -40,-1 + 3859: -38,-1 + 3860: -40,-2 + 3861: -39,-2 + 3862: -40,-4 + 3863: -39,-5 + 3864: -38,-5 + 3865: -37,-5 + 3866: -36,-5 + 3867: -38,-4 + 3868: -36,-3 + 3869: -36,-2 + 3870: -36,-4 + 3871: -34,-3 + 3872: -32,-4 + 3873: -34,-1 + 3874: -32,0 + 3875: -35,0 + 3876: -39,3 + 3877: -40,4 + 3878: -38,4 + 3879: -33,1 + 3880: -31,2 + 3881: -31,-1 + 3882: -29,0 + 3883: -32,-2 + 3884: -31,-3 + 3885: -33,-4 + 3886: -32,-5 + 3887: -31,-4 + 3888: -30,-3 + 3889: -28,-3 + 3890: -28,-4 + 3891: -26,-5 + 3892: -27,-2 + 3893: -27,-3 + 3894: -29,0 + 3895: -27,0 + 3896: -27,2 + 3897: -28,3 + 3898: -27,3 + 3899: -27,1 + 3900: -26,-1 + 3901: -32,-1 + 3902: -28,4 + 3903: -26,5 + 3904: -26,6 + 3905: -26,3 + 3906: -26,3 + 3907: -24,2 + 3908: -23,1 + 3909: -25,0 + 3910: -23,-2 + 3911: -25,-3 + 3912: -23,-3 + 3913: -25,-4 + 3914: -23,-5 + 3915: -25,-5 + 3916: -24,-1 + 3917: -25,-1 + 3918: -23,3 + 3919: -15,-1 + 3920: -16,-1 + 3921: -15,0 + 3922: -16,1 + 3923: -16,3 + 3924: -15,3 + 3925: -15,2 + 3926: -15,1 + 3927: -15,1 + 3928: -27,6 + 3929: -27,7 + 3930: -27,9 + 3931: -20,5 + 3932: -21,5 + 3937: -17,5 + 3938: -16,5 + 3939: -16,5 + 3940: -22,11 + 3941: -21,11 + 3942: -22,13 + 3943: -20,14 + 3944: -22,13 + 3945: -22,15 3946: -20,14 - 3947: -22,13 - 3948: -22,15 - 3949: -20,14 - 3950: -20,13 - 3951: -20,12 - 3952: -19,11 - 3953: -22,14 - 3954: -23,14 - 3955: -17,11 - 3956: -17,11 - 3957: -17,12 - 3958: -16,11 - 3959: -16,12 - 3960: -17,13 - 3961: -16,14 - 3962: -17,14 - 3963: -16,12 - 3964: -17,12 - 3965: -17,11 - 3968: -34,12 - 3969: -35,12 - 3970: -34,14 - 3971: -35,15 - 3972: -34,16 - 3973: -34,17 - 3974: -33,16 - 3975: -32,15 - 3976: -31,17 - 3977: -32,17 - 3978: -33,16 - 3979: -34,15 - 3980: -34,15 - 3981: -37,14 - 3982: -38,14 - 3983: -39,14 - 3984: -39,12 - 3985: -39,11 - 3986: -38,11 - 3987: -38,11 - 3988: -27,11 - 3989: -27,13 - 3990: -27,16 - 3991: -27,17 - 3992: -27,19 - 3993: -27,20 - 3994: -27,21 - 3995: -25,18 - 3996: -25,16 - 3997: -25,14 - 3998: -25,12 - 3999: -25,11 - 4000: -24,18 - 4001: -22,18 - 4002: -23,17 - 4003: -21,17 - 4004: -20,18 - 4005: -19,17 - 4006: -20,20 - 4007: -22,20 - 4008: -24,20 - 4009: -20,21 - 4010: -17,19 - 4011: -16,19 - 4012: -14,19 - 4013: -17,21 - 4014: -15,21 - 4015: -13,21 - 4016: -11,21 - 4017: -13,19 - 4018: -10,19 - 4019: -8,19 - 4020: -6,19 - 4021: -9,21 - 4022: -7,21 - 4023: -5,21 - 4024: -3,21 - 4025: 0,21 - 4026: -5,19 - 4027: -2,19 - 4028: 0,19 - 4029: 0,21 - 4030: 2,21 - 4031: 5,21 - 4032: 6,21 - 4033: 2,19 - 4034: 4,19 - 4035: 7,19 - 4036: 10,19 - 4037: 8,21 - 4038: 10,21 - 4039: 11,21 - 4040: 13,21 - 4041: 12,19 - 4042: 14,19 - 4043: 15,19 - 4044: 17,19 - 4045: 15,23 - 4046: 14,23 - 4047: 13,24 - 4048: 15,25 - 4049: 15,24 - 4050: 11,23 - 4051: 10,23 - 4052: 11,24 - 4053: 17,23 - 4054: 17,25 - 4055: 17,25 - 4056: 16,23 - 4057: 18,19 - 4058: 19,19 - 4059: 19,21 - 4060: 17,21 - 4061: 16,21 - 4062: 21,20 - 4063: 21,18 - 4064: 21,17 - 4065: 19,18 - 4066: 19,15 - 4067: 19,12 - 4068: 19,11 - 4069: 21,16 - 4070: 21,13 - 4071: 21,12 - 4072: 21,10 - 4073: 21,8 - 4074: 21,7 - 4075: 19,9 - 4076: 19,7 - 4077: 19,6 - 4078: 23,10 - 4079: 24,10 - 4080: 26,10 - 4081: 27,10 - 4082: 28,7 - 4083: 27,8 - 4084: 27,6 - 4085: 28,6 - 4086: 30,6 - 4087: 30,8 - 4088: 30,9 - 4089: 30,10 - 4090: 33,10 - 4091: 34,10 - 4092: 31,12 - 4093: 31,13 - 4094: 30,14 - 4095: 31,17 - 4096: 30,17 - 4097: 31,19 - 4098: 31,20 - 4099: 31,22 - 4100: 30,22 - 4101: 28,22 - 4102: 29,23 - 4103: 26,22 - 4104: 24,22 - 4105: 23,22 - 4106: 23,23 - 4107: 23,20 - 4108: 23,18 - 4109: 25,18 - 4110: 25,17 - 4111: 26,18 - 4112: 27,17 - 4113: 26,19 - 4114: 27,20 - 4115: 29,18 - 4116: 27,18 - 4117: 30,17 - 4118: 33,22 - 4119: 35,22 - 4120: 33,19 - 4121: 33,18 - 4122: 35,18 - 4123: 36,17 - 4124: 34,17 - 4125: 35,17 - 4126: 33,13 - 4127: 33,15 - 4128: 33,15 - 4129: 32,13 - 4130: 26,7 - 4131: 23,2 - 4132: 26,2 - 4133: 20,2 - 4134: 21,2 - 4135: 19,4 - 4141: 31,2 - 4142: 33,2 - 4143: 33,4 - 4144: 32,4 - 4145: 35,4 - 4146: 37,4 - 4147: 37,2 - 4148: 40,2 - 4149: 41,2 - 4150: 41,1 - 4151: 38,2 - 4152: 37,-2 - 4153: 38,-3 - 4154: 39,-2 - 4155: 39,-4 - 4156: 37,-4 - 4157: 39,-5 - 4158: 33,-1 - 4159: 31,-1 - 4160: 31,0 - 4161: 33,0 - 4162: 32,1 - 4163: 38,7 - 4164: 46,11 - 4165: 47,13 - 4166: 44,11 - 4167: 44,13 - 4168: 42,12 - 4169: 42,11 - 4170: 44,12 - 4171: 54,14 - 4172: 58,14 - 4173: 59,14 - 4174: 60,14 - 4175: 58,16 - 4176: 55,10 - 4177: 55,12 - 4178: 54,12 - 4179: 54,6 - 4180: 59,3 - 4181: 60,4 - 4182: 59,0 - 4183: 55,-5 - 4184: 56,-4 - 4185: 57,-5 - 4186: 58,-7 - 4187: 59,-8 - 4188: 60,-7 - 4189: 62,-8 - 4190: 62,-7 - 4191: 41,-1 - 4192: 41,-3 - 4193: 41,-5 - 4194: 41,-7 - 4195: 41,-10 - 4196: 41,-11 - 4197: 43,-12 - 4198: 43,-14 - 4199: 43,-16 - 4200: 43,-17 - 4201: 41,-15 - 4202: 41,-16 - 4203: 41,-17 - 4204: 41,-19 - 4205: 40,-19 - 4206: 40,-21 - 4207: 42,-21 - 4208: 43,-21 - 4209: 45,-21 - 4214: 45,-19 - 4215: 47,-19 - 4216: 48,-19 - 4217: 51,-19 - 4218: 47,-21 - 4219: 49,-21 - 4220: 47,-22 - 4221: 51,-21 - 4222: 52,-21 - 4223: 52,-23 - 4224: 53,-24 - 4225: 56,-24 - 4226: 57,-24 - 4227: 58,-24 - 4228: 58,-23 - 4229: 59,-21 - 4230: 60,-21 - 4231: 61,-20 - 4232: 59,-19 - 4233: 61,-19 - 4234: 60,-17 - 4235: 60,-17 - 4236: 58,-18 - 4237: 58,-19 - 4238: 56,-19 - 4239: 55,-19 - 4240: 53,-19 - 4241: 60,-15 - 4242: 58,-15 - 4243: 59,-14 - 4244: 57,-13 - 4245: 57,-12 - 4246: 60,-13 - 4247: 60,-12 - 4248: 60,-14 - 4249: 61,-13 - 4250: 63,-13 - 4251: 64,-12 - 4252: 65,-14 - 4253: 63,-14 - 4254: 63,-16 - 4255: 65,-16 - 4256: 65,-18 - 4257: 65,-20 - 4258: 63,-18 - 4259: 63,-20 - 4260: 63,-21 - 4261: 65,-21 - 4262: 62,-23 - 4263: 61,-24 - 4264: 64,-24 - 4265: 63,-25 - 4266: 64,-26 - 4267: 65,-27 - 4268: 66,-26 - 4269: 65,-24 - 4270: 65,-23 - 4271: 65,-23 - 4275: 68,-21 - 4276: 69,-21 - 4277: 69,-23 - 4278: 69,-24 - 4280: 69,-27 - 4281: 70,-26 - 4282: 70,-26 - 4283: 71,-27 - 4284: 71,-28 - 4285: 70,-28 - 4286: 68,-28 - 4287: 69,-29 - 4288: 70,-30 - 4289: 69,-30 - 4290: 70,-29 - 4291: 70,-29 - 4292: 70,-29 - 4293: 71,-30 - 4294: 71,-17 - 4295: 68,-17 - 4296: 67,-19 - 4297: 70,-17 - 4298: 70,-19 - 4299: 71,-18 - 4300: 68,-18 - 4301: 69,-19 - 4321: 69,-9 - 4322: 68,-9 - 4323: 67,-9 - 4324: 70,-10 + 3947: -20,13 + 3948: -20,12 + 3949: -19,11 + 3950: -22,14 + 3951: -23,14 + 3952: -17,11 + 3953: -17,11 + 3954: -17,12 + 3955: -16,11 + 3956: -16,12 + 3957: -17,13 + 3958: -16,14 + 3959: -17,14 + 3960: -16,12 + 3961: -17,12 + 3962: -17,11 + 3965: -34,12 + 3966: -35,12 + 3967: -34,14 + 3968: -35,15 + 3969: -34,16 + 3970: -34,17 + 3971: -33,16 + 3972: -32,15 + 3973: -31,17 + 3974: -32,17 + 3975: -33,16 + 3976: -34,15 + 3977: -34,15 + 3978: -37,14 + 3979: -38,14 + 3980: -39,14 + 3981: -39,12 + 3982: -39,11 + 3983: -38,11 + 3984: -38,11 + 3985: -27,11 + 3986: -27,13 + 3987: -27,16 + 3988: -27,17 + 3989: -27,19 + 3990: -27,20 + 3991: -27,21 + 3992: -25,18 + 3993: -25,16 + 3994: -25,14 + 3995: -25,12 + 3996: -25,11 + 3997: -24,18 + 3998: -22,18 + 3999: -23,17 + 4000: -21,17 + 4001: -20,18 + 4002: -19,17 + 4003: -20,20 + 4004: -22,20 + 4005: -24,20 + 4006: -20,21 + 4007: -17,19 + 4008: -16,19 + 4009: -14,19 + 4010: -17,21 + 4011: -15,21 + 4012: -13,21 + 4013: -11,21 + 4014: -13,19 + 4015: -10,19 + 4016: -8,19 + 4017: -6,19 + 4018: -9,21 + 4019: -7,21 + 4020: -5,21 + 4021: -3,21 + 4022: 0,21 + 4023: -5,19 + 4024: -2,19 + 4025: 0,19 + 4026: 0,21 + 4027: 2,21 + 4028: 5,21 + 4029: 6,21 + 4030: 2,19 + 4031: 4,19 + 4032: 7,19 + 4033: 10,19 + 4034: 8,21 + 4035: 10,21 + 4036: 11,21 + 4037: 13,21 + 4038: 12,19 + 4039: 14,19 + 4040: 15,19 + 4041: 17,19 + 4042: 15,23 + 4043: 14,23 + 4044: 13,24 + 4045: 15,25 + 4046: 15,24 + 4047: 11,23 + 4048: 10,23 + 4049: 11,24 + 4050: 17,23 + 4051: 17,25 + 4052: 17,25 + 4053: 16,23 + 4054: 18,19 + 4055: 19,19 + 4056: 19,21 + 4057: 17,21 + 4058: 16,21 + 4059: 21,20 + 4060: 21,18 + 4061: 21,17 + 4062: 19,18 + 4063: 19,15 + 4064: 19,12 + 4065: 19,11 + 4066: 21,16 + 4067: 21,13 + 4068: 21,12 + 4069: 21,10 + 4070: 21,8 + 4071: 21,7 + 4072: 19,9 + 4073: 19,7 + 4074: 19,6 + 4075: 23,10 + 4076: 24,10 + 4077: 26,10 + 4078: 27,10 + 4079: 28,7 + 4080: 27,8 + 4081: 27,6 + 4082: 28,6 + 4083: 30,6 + 4084: 30,8 + 4085: 30,9 + 4086: 30,10 + 4087: 33,10 + 4088: 34,10 + 4089: 31,12 + 4090: 31,13 + 4091: 30,14 + 4092: 31,17 + 4093: 30,17 + 4094: 31,19 + 4095: 31,20 + 4096: 31,22 + 4097: 30,22 + 4098: 28,22 + 4099: 29,23 + 4100: 26,22 + 4101: 24,22 + 4102: 23,22 + 4103: 23,23 + 4104: 23,20 + 4105: 23,18 + 4106: 25,18 + 4107: 25,17 + 4108: 26,18 + 4109: 27,17 + 4110: 26,19 + 4111: 27,20 + 4112: 29,18 + 4113: 27,18 + 4114: 30,17 + 4115: 33,22 + 4116: 35,22 + 4117: 33,19 + 4118: 33,18 + 4119: 35,18 + 4120: 36,17 + 4121: 34,17 + 4122: 35,17 + 4123: 33,13 + 4124: 33,15 + 4125: 33,15 + 4126: 32,13 + 4127: 26,7 + 4128: 23,2 + 4129: 26,2 + 4130: 20,2 + 4131: 21,2 + 4132: 19,4 + 4138: 31,2 + 4139: 33,2 + 4140: 33,4 + 4141: 32,4 + 4142: 35,4 + 4143: 37,4 + 4144: 37,2 + 4145: 40,2 + 4146: 41,2 + 4147: 41,1 + 4148: 38,2 + 4149: 37,-2 + 4150: 38,-3 + 4151: 39,-2 + 4152: 39,-4 + 4153: 37,-4 + 4154: 39,-5 + 4155: 33,-1 + 4156: 31,-1 + 4157: 31,0 + 4158: 33,0 + 4159: 32,1 + 4160: 38,7 + 4161: 46,11 + 4162: 47,13 + 4163: 44,11 + 4164: 44,13 + 4165: 42,12 + 4166: 42,11 + 4167: 44,12 + 4168: 54,14 + 4169: 58,14 + 4170: 59,14 + 4171: 60,14 + 4172: 58,16 + 4173: 55,10 + 4174: 55,12 + 4175: 54,12 + 4176: 54,6 + 4177: 59,3 + 4178: 60,4 + 4179: 59,0 + 4180: 55,-5 + 4181: 56,-4 + 4182: 57,-5 + 4183: 58,-7 + 4184: 59,-8 + 4185: 60,-7 + 4186: 62,-8 + 4187: 62,-7 + 4188: 41,-1 + 4189: 41,-3 + 4190: 41,-5 + 4191: 41,-7 + 4192: 41,-10 + 4193: 41,-11 + 4194: 43,-12 + 4195: 43,-14 + 4196: 43,-16 + 4197: 43,-17 + 4198: 41,-15 + 4199: 41,-16 + 4200: 41,-17 + 4201: 41,-19 + 4202: 40,-19 + 4203: 40,-21 + 4204: 42,-21 + 4205: 43,-21 + 4206: 45,-21 + 4211: 45,-19 + 4212: 47,-19 + 4213: 48,-19 + 4214: 51,-19 + 4215: 47,-21 + 4216: 49,-21 + 4217: 47,-22 + 4218: 51,-21 + 4219: 52,-21 + 4220: 52,-23 + 4221: 53,-24 + 4222: 56,-24 + 4223: 57,-24 + 4224: 58,-24 + 4225: 58,-23 + 4226: 59,-21 + 4227: 60,-21 + 4228: 61,-20 + 4229: 59,-19 + 4230: 61,-19 + 4231: 60,-17 + 4232: 60,-17 + 4233: 58,-18 + 4234: 58,-19 + 4235: 56,-19 + 4236: 55,-19 + 4237: 53,-19 + 4238: 60,-15 + 4239: 58,-15 + 4240: 59,-14 + 4241: 57,-13 + 4242: 57,-12 + 4243: 60,-13 + 4244: 60,-12 + 4245: 60,-14 + 4246: 61,-13 + 4247: 63,-13 + 4248: 64,-12 + 4249: 65,-14 + 4250: 63,-14 + 4251: 63,-16 + 4252: 65,-16 + 4253: 65,-18 + 4254: 65,-20 + 4255: 63,-18 + 4256: 63,-20 + 4257: 63,-21 + 4258: 65,-21 + 4259: 62,-23 + 4260: 61,-24 + 4261: 64,-24 + 4262: 63,-25 + 4263: 64,-26 + 4264: 65,-27 + 4265: 66,-26 + 4266: 65,-24 + 4267: 65,-23 + 4268: 65,-23 + 4272: 68,-21 + 4273: 69,-21 + 4274: 69,-23 + 4275: 69,-24 + 4277: 69,-27 + 4278: 70,-26 + 4279: 70,-26 + 4280: 71,-27 + 4281: 71,-28 + 4282: 70,-28 + 4283: 68,-28 + 4284: 69,-29 + 4285: 70,-30 + 4286: 69,-30 + 4287: 70,-29 + 4288: 70,-29 + 4289: 70,-29 + 4290: 71,-30 + 4291: 71,-17 + 4292: 68,-17 + 4293: 67,-19 + 4294: 70,-17 + 4295: 70,-19 + 4296: 71,-18 + 4297: 68,-18 + 4298: 69,-19 + 4318: 69,-9 + 4319: 68,-9 + 4320: 67,-9 + 4321: 70,-10 + 4322: 77,-18 + 4323: 75,-18 + 4324: 76,-19 4325: 77,-18 - 4326: 75,-18 - 4327: 76,-19 - 4328: 77,-18 - 4329: 76,-17 - 4330: 76,-15 - 4331: 75,-15 - 4332: 76,-13 - 4333: 77,-14 - 4334: 74,-14 - 4335: 74,-16 - 4336: 73,-14 - 4337: 74,-17 - 4338: 74,-18 - 4339: 72,-17 - 4340: 73,-19 - 4341: 73,-17 - 4342: 74,-16 - 4343: 73,-15 - 4344: 74,-16 - 4345: 74,-15 - 4346: 76,-18 + 4326: 76,-17 + 4327: 76,-15 + 4328: 75,-15 + 4329: 76,-13 + 4330: 77,-14 + 4331: 74,-14 + 4332: 74,-16 + 4333: 73,-14 + 4334: 74,-17 + 4335: 74,-18 + 4336: 72,-17 + 4337: 73,-19 + 4338: 73,-17 + 4339: 74,-16 + 4340: 73,-15 + 4341: 74,-16 + 4342: 74,-15 + 4343: 76,-18 + 4344: 79,-14 + 4345: 80,-13 + 4346: 81,-14 4347: 79,-14 - 4348: 80,-13 - 4349: 81,-14 - 4350: 79,-14 - 4351: 80,-15 - 4352: 81,-13 + 4348: 80,-15 + 4349: 81,-13 + 4350: 80,-19 + 4351: 79,-18 + 4352: 80,-18 4353: 80,-19 - 4354: 79,-18 - 4355: 80,-18 - 4356: 80,-19 - 4357: 79,-19 - 4358: 80,-19 - 4359: 81,-19 - 4360: 80,-17 - 4361: 80,-18 - 4362: 79,-19 - 4363: 50,-13 - 4364: 51,-14 - 4365: 50,-13 - 4366: 51,-13 - 4367: 50,-14 - 4368: 50,-14 - 4369: 48,-13 - 4370: 48,-14 - 4371: 48,-13 - 4372: 53,-13 - 4373: 53,-14 - 4374: 53,-12 - 4375: 53,-14 - 4376: 53,-13 - 4377: 53,-14 - 4378: 50,-15 - 4379: 51,-15 - 4380: 50,-14 - 4381: 51,-13 + 4354: 79,-19 + 4355: 80,-19 + 4356: 81,-19 + 4357: 80,-17 + 4358: 80,-18 + 4359: 79,-19 + 4360: 50,-13 + 4361: 51,-14 + 4362: 50,-13 + 4363: 51,-13 + 4364: 50,-14 + 4365: 50,-14 + 4366: 48,-13 + 4367: 48,-14 + 4368: 48,-13 + 4369: 53,-13 + 4370: 53,-14 + 4371: 53,-12 + 4372: 53,-14 + 4373: 53,-13 + 4374: 53,-14 + 4375: 50,-15 + 4376: 51,-15 + 4377: 50,-14 + 4378: 51,-13 + 4379: 50,-12 + 4380: 50,-12 + 4381: 48,-12 4382: 50,-12 - 4383: 50,-12 - 4384: 48,-12 - 4385: 50,-12 - 4386: 51,-13 - 4387: 47,-24 + 4383: 51,-13 + 4384: 47,-24 + 4385: 49,-25 + 4386: 48,-26 + 4387: 47,-25 4388: 49,-25 - 4389: 48,-26 - 4390: 47,-25 - 4391: 49,-25 - 4392: 48,-23 - 4393: 47,-28 - 4394: 49,-29 - 4395: 47,-30 - 4396: 48,-32 - 4397: 49,-31 - 4398: 48,-33 - 4399: 47,-33 - 4400: 49,-33 - 4401: 48,-34 - 4402: 47,-34 - 4403: 43,-36 - 4404: 40,-36 - 4405: 37,-35 - 4406: 36,-35 - 4407: 37,-36 - 4408: 40,-36 + 4389: 48,-23 + 4390: 47,-28 + 4391: 49,-29 + 4392: 47,-30 + 4393: 48,-32 + 4394: 49,-31 + 4395: 48,-33 + 4396: 47,-33 + 4397: 49,-33 + 4398: 48,-34 + 4399: 47,-34 + 4400: 43,-36 + 4401: 40,-36 + 4402: 37,-35 + 4403: 36,-35 + 4404: 37,-36 + 4405: 40,-36 + 4406: 43,-35 + 4407: 43,-35 + 4408: 41,-35 4409: 43,-35 - 4410: 43,-35 - 4411: 41,-35 - 4412: 43,-35 - 4413: 43,-34 - 4439: 33,-34 - 4440: 31,-34 - 4441: 33,-32 - 4442: 32,-32 - 4443: 32,-31 - 4444: 32,-30 - 4445: 33,-28 - 4446: 31,-29 - 4447: 33,-31 - 4448: 33,-31 - 4449: 35,-30 - 4450: 36,-30 - 4451: 36,-29 - 4452: 33,-25 - 4453: 31,-25 - 4454: 33,-25 + 4410: 43,-34 + 4436: 33,-34 + 4437: 31,-34 + 4438: 33,-32 + 4439: 32,-32 + 4440: 32,-31 + 4441: 32,-30 + 4442: 33,-28 + 4443: 31,-29 + 4444: 33,-31 + 4445: 33,-31 + 4446: 35,-30 + 4447: 36,-30 + 4448: 36,-29 + 4449: 33,-25 + 4450: 31,-25 + 4451: 33,-25 + 4452: 31,-25 + 4453: 33,-25 + 4454: 32,-26 4455: 31,-25 - 4456: 33,-25 - 4457: 32,-26 - 4458: 31,-25 - 4459: 32,-24 - 4460: 32,-25 - 4461: 31,-24 - 4462: 40,-25 - 4463: 39,-24 - 4464: 40,-26 + 4456: 32,-24 + 4457: 32,-25 + 4458: 31,-24 + 4459: 40,-25 + 4460: 39,-24 + 4461: 40,-26 + 4462: 42,-25 + 4463: 42,-25 + 4464: 44,-24 4465: 42,-25 - 4466: 42,-25 - 4467: 44,-24 - 4468: 42,-25 - 4469: 44,-25 - 4470: 45,-25 - 4471: 42,-26 - 4472: 43,-25 - 4473: 43,-25 - 4474: 41,-25 - 4475: 40,-25 - 4476: 40,-25 - 4477: 40,-24 + 4466: 44,-25 + 4467: 45,-25 + 4468: 42,-26 + 4469: 43,-25 + 4470: 43,-25 + 4471: 41,-25 + 4472: 40,-25 + 4473: 40,-25 + 4474: 40,-24 + 4475: 35,-23 + 4476: 37,-23 + 4477: 36,-23 4478: 35,-23 - 4479: 37,-23 - 4480: 36,-23 - 4481: 35,-23 - 4482: 38,-21 - 4483: 35,-21 - 4484: 33,-21 - 4485: 33,-22 - 4486: 32,-22 - 4487: 32,-21 - 4488: 37,-19 - 4489: 34,-19 - 4490: 32,-19 - 4491: 31,-19 - 4492: 28,-19 - 4493: 27,-19 - 4494: 27,-20 - 4495: 27,-21 - 4496: 30,-21 - 4497: 29,-21 - 4498: 29,-23 - 4499: 29,-24 - 4500: 29,-25 - 4501: 29,-26 - 4502: 27,-22 - 4503: 27,-24 - 4504: 27,-25 - 4505: 26,-25 - 4506: 25,-25 - 4507: 29,-27 - 4508: 27,-27 - 4509: 25,-27 - 4510: 24,-27 - 4511: 21,-27 - 4512: 21,-25 - 4513: 20,-25 - 4514: 19,-25 - 4515: 19,-26 - 4516: 19,-28 - 4517: 19,-28 - 4518: 19,-30 - 4519: 19,-31 - 4520: 19,-32 - 4521: 21,-30 - 4522: 21,-33 - 4523: 21,-34 - 4524: 21,-34 - 4525: 19,-34 - 4526: 20,-36 - 4527: 20,-37 - 4528: 19,-37 - 4529: 20,-39 - 4530: 21,-38 - 4531: 22,-39 - 4532: 21,-37 - 4533: 24,-37 - 4534: 23,-38 - 4535: 25,-37 - 4536: 25,-38 - 4537: 24,-38 - 4538: 25,-38 - 4539: 17,-34 - 4540: 17,-35 - 4541: 16,-34 - 4542: 14,-34 - 4543: 17,-32 - 4544: 15,-32 - 4545: 13,-32 - 4546: 11,-32 - 4547: 10,-32 - 4548: 12,-34 - 4549: 9,-34 - 4550: 8,-34 - 4551: 7,-34 - 4552: 7,-32 - 4553: 7,-32 - 4554: 6,-32 - 4555: 9,-30 - 4556: 8,-29 - 4557: 7,-29 - 4558: 7,-29 - 4559: 6,-28 - 4560: 8,-27 - 4561: 9,-27 - 4562: 7,-28 - 4563: 6,-27 - 4564: 5,-29 - 4565: 7,-30 - 4566: 9,-30 - 4567: 3,-30 - 4568: 1,-30 - 4569: 3,-32 - 4570: 2,-32 - 4571: 2,-33 - 4572: 0,-33 - 4573: -1,-33 - 4574: -1,-32 - 4575: 0,-30 - 4576: -3,-30 - 4577: -4,-30 - 4578: -6,-30 - 4579: -7,-30 - 4580: -9,-30 - 4581: -6,-32 - 4582: -5,-32 - 4583: -3,-32 - 4584: -8,-32 - 4585: -8,-33 - 4586: -9,-32 - 4587: -10,-32 - 4588: -11,-32 - 4589: -13,-32 - 4590: -10,-30 - 4591: -11,-30 - 4592: -13,-30 - 4593: -15,-30 - 4594: -16,-30 - 4595: -12,-29 - 4596: -12,-30 - 4597: -16,-32 - 4598: -17,-33 - 4599: -17,-32 - 4600: -19,-32 - 4601: -18,-30 - 4602: -20,-30 - 4603: -22,-30 - 4604: -23,-30 - 4605: -23,-29 - 4606: -22,-32 - 4607: -24,-32 - 4608: -24,-32 - 4609: -26,-30 - 4610: -26,-29 - 4611: -26,-27 - 4612: -26,-25 - 4613: -24,-27 - 4614: -24,-26 - 4615: -24,-25 - 4616: -24,-24 - 4617: -26,-23 - 4618: -26,-22 - 4619: -26,-20 - 4620: -24,-21 - 4621: -24,-19 - 4622: -24,-18 - 4623: -24,-16 - 4624: -26,-17 - 4625: -26,-16 - 4626: -26,-14 - 4627: -26,-13 - 4628: -26,-12 - 4629: -26,-10 - 4630: -26,-9 - 4631: -25,-9 - 4632: -24,-11 - 4633: -23,-11 - 4634: -23,-10 - 4635: -23,-9 - 4636: -24,-5 - 4637: -24,-4 - 4638: -24,-2 - 4639: -19,-11 - 4640: -19,-10 - 4641: -20,-10 - 4642: -20,-9 - 4643: -19,-9 - 4644: -30,-21 - 4645: -30,-19 - 4646: -29,-19 - 4647: -30,-18 - 4648: -32,-21 - 4649: -32,-19 - 4650: -33,-18 - 4651: -34,-18 - 4652: -36,-15 - 4653: -36,-14 - 4654: -33,-14 - 4655: -33,-14 - 4656: -33,-15 - 4657: -30,-14 - 4658: -33,-10 - 4659: -34,-10 - 4660: -36,-10 - 4661: -37,-9 - 4662: -37,-10 - 4663: -32,-9 - 4664: -34,-9 - 4665: -29,-10 - 4666: -30,-11 - 4667: -30,-9 - 4668: -28,-10 - 4669: -40,-11 - 4670: -41,-10 - 4671: -41,-9 - 4672: -40,-9 - 4673: -41,-10 - 4674: -41,-10 - 4675: -49,-18 - 4676: -38,-33 - 4677: -36,-33 - 4678: -33,-33 - 4679: -32,-33 - 4680: -31,-33 - 4681: -31,-31 - 4682: -31,-29 - 4683: -31,-28 - 4684: -31,-26 - 4685: -33,-26 - 4686: -35,-26 - 4687: -36,-26 - 4688: -37,-26 - 4689: -38,-26 - 4690: -38,-27 - 4691: -38,-29 - 4692: -38,-30 - 4693: -38,-31 - 4694: -38,-29 - 4695: -38,-26 - 4696: -40,-26 - 4697: -40,-25 - 4698: -41,-25 - 4699: -41,-26 - 4700: -41,-28 - 4701: -41,-29 - 4702: -41,-30 - 4703: -41,-32 - 4704: -41,-33 - 4705: -41,-34 - 4706: -39,-33 - 4707: -40,-34 - 4708: -35,-34 - 4709: -34,-34 - 4710: -32,-34 - 4711: -31,-34 - 4712: -30,-34 - 4713: -30,-33 - 4714: -28,-34 - 4715: -28,-32 - 4716: -28,-31 - 4717: -28,-29 - 4718: -28,-27 - 4719: -28,-26 - 4720: -29,-25 - 4721: -30,-25 - 4722: -30,-26 - 4723: -32,-25 - 4724: -33,-26 - 4725: -35,-25 - 4726: -32,6 - 4727: -32,7 - 4728: -32,6 - 4729: -36,6 - 4730: -36,5 - 4731: -36,7 - 4732: -34,6 - 4733: -34,5 - 4734: -35,6 - 4735: -33,6 - 4736: -35,-4 - 4737: -35,-2 - 4738: -36,-5 - 4739: -35,-2 - 4740: -34,-2 - 4741: -35,-1 - 4753: -25,28 - 4754: -26,28 - 4755: -18,32 - 4756: -17,31 - 4757: -17,33 - 4758: -18,32 - 4759: -15,34 - 4760: -15,32 - 4761: -15,31 - 4762: -13,31 - 4763: -12,31 - 4764: -15,34 - 4765: -15,34 - 4766: -12,39 - 4767: -13,40 - 4768: -14,40 - 4769: -15,40 - 4770: -16,40 - 4771: -16,40 - 4772: -13,40 - 4773: -12,40 - 4774: -12,38 - 4775: -12,40 - 4781: -5,40 - 4782: -6,40 - 4783: -6,42 - 4784: -6,43 - 4785: -5,42 - 4786: -6,43 - 4787: -6,45 - 4788: -6,46 - 4789: -6,47 - 4790: -5,46 - 4791: -4,48 - 4792: -5,46 - 4793: -2,48 - 4794: -4,46 - 4795: -1,47 - 4796: -3,45 - 4797: 0,46 - 4798: -3,47 - 4799: -1,45 - 4800: -3,46 - 4801: 1,45 - 4802: 1,47 - 4803: 0,46 - 4804: 1,48 - 4805: 2,48 - 4806: 3,47 - 4807: 2,45 - 4808: 2,44 - 4809: 2,43 - 4810: 2,42 - 4811: 1,42 - 4812: 3,42 - 4813: -2,43 - 4814: -1,41 - 4815: -3,40 - 4816: -3,40 - 4817: 1,51 - 4818: -2,50 - 4819: -3,50 - 4820: -2,51 - 4821: 0,51 - 4822: -1,52 - 4823: -2,51 - 4824: -2,53 - 4825: 1,53 - 4826: 2,51 - 4827: 2,50 - 4828: 0,50 - 4829: -4,45 - 4830: -4,47 - 4857: 6,42 - 4858: 5,41 - 4859: 5,39 - 4860: 7,39 - 4861: 8,39 - 4862: 9,41 - 4863: 9,40 - 4864: 8,42 - 4865: 8,41 - 4866: 15,37 - 4867: 14,37 - 4868: 14,35 - 4869: 14,34 - 4870: 13,35 - 4871: 13,36 - 4872: 15,34 - 4873: 16,35 - 4874: 15,36 - 4875: 15,34 - 4876: 15,35 - 4877: 15,37 - 4878: 14,37 - 4879: 15,30 - 4880: 14,29 - 4881: 14,29 - 4882: 15,28 - 4883: 14,29 - 4884: 14,32 - 4885: 13,32 - 4886: 15,24 - 4910: 2,24 - 4911: 1,24 - 4912: 1,24 - 4913: 2,23 - 4914: 4,23 - 4915: 4,24 - 4916: 3,26 - 4917: 4,28 - 4918: 2,27 - 4919: 2,27 - 4920: 3,27 - 4921: -2,25 - 4922: -3,25 - 4923: -3,23 - 4924: -2,24 - 4925: -4,23 - 4926: -4,25 - 4962: -14,28 - 4963: -15,28 - 4964: -14,29 - 4965: -13,26 - 4966: -10,26 - 4967: -9,27 - 4968: -10,28 - 4969: -7,28 - 4970: -8,26 - 4971: -5,28 - 4972: -7,24 - 4973: -8,24 - 4974: -7,23 - 4975: -6,24 - 4976: -6,23 - 4977: -7,23 - 4978: -8,23 - 4979: -8,23 - 4980: -12,23 - 4981: -11,24 - 4982: -10,23 - 4983: -10,24 - 4984: -10,24 - 4985: -12,24 - 4986: -12,24 - 4987: -14,24 - 4988: -14,23 - 4989: -16,24 - 4990: -14,24 - 4991: -15,23 - 4992: -16,24 - 4993: -14,25 - 4994: -10,25 - 4995: -7,25 - 4996: -1,28 - 4997: -3,27 - 4998: -1,30 - 4999: -1,33 - 5000: -1,34 - 5001: -1,37 - 5002: -3,37 - 5003: -3,38 - 5004: -1,37 - 5005: -2,37 - 5006: -1,40 - 5007: -3,41 - 5008: -3,43 - 5009: -2,43 - 5010: -20,25 - 5011: -21,25 - 5012: -19,25 - 5013: -21,25 - 5014: -22,17 - 5015: -23,17 - 5016: -22,5 - 5017: -22,5 - 5018: -22,5 - 5019: -19,-28 - 5020: -16,-28 - 5021: -16,-27 - 5022: -15,-28 - 5023: -16,-26 - 5024: -15,-27 - 5025: -15,-28 - 5026: -15,-26 - 5027: -15,-26 - 5028: -14,-26 - 5039: -25,-34 - 5040: -23,-34 - 5041: -22,-34 - 5042: -21,-34 - 5043: -20,-34 - 5044: -20,-37 - 5045: -20,-36 - 5046: -19,-38 - 5047: -19,-36 - 5048: -22,-37 - 5049: -23,-37 - 5050: -23,-38 - 5051: -23,-36 - 5052: -24,-37 - 5053: -26,-37 - 5054: -26,-36 - 5055: -26,-37 - 5056: -28,-40 - 5057: -27,-40 - 5058: -25,-40 - 5059: -24,-40 - 5060: -23,-40 - 5061: -21,-40 - 5062: -19,-40 - 5063: -21,-40 - 5064: -24,-40 - 5065: -26,-40 - 5066: -32,-40 - 5067: -31,-40 - 5068: -33,-39 - 5069: -33,-40 - 5070: -32,-39 - 5071: -31,-39 - 5072: -34,-39 - 5073: -33,-40 - 5074: -39,-38 - 5075: -38,-38 - 5076: -29,-46 - 5077: -30,-45 - 5078: -30,-45 - 5079: -30,-44 - 5080: -28,-45 - 5081: -28,-44 - 5082: -29,-45 - 5083: -30,-45 - 5084: -28,-45 - 5085: -30,-44 - 5086: -29,-45 - 5087: -38,-53 - 5088: -38,-54 - 5089: -37,-53 - 5090: -37,-54 - 5091: -14,-39 - 5092: -13,-38 - 5093: -13,-39 - 5094: -13,-40 - 5095: -13,-41 - 5096: -13,-39 - 5097: -13,-40 - 5098: -13,-41 - 5099: -13,-39 - 5100: -13,-40 - 5101: -13,-39 - 5102: -13,-40 - 5105: -5,-41 - 5106: -5,-40 - 5107: -6,-42 - 5108: -5,-36 - 5109: -6,-36 - 5110: -4,-35 - 5111: -4,-36 - 5112: 0,-36 - 5113: -2,-36 - 5114: 1,-35 - 5115: 1,-37 - 5116: 1,-38 - 5117: 2,-37 - 5118: 2,-38 - 5119: 0,-37 - 5120: 3,-37 - 5121: -1,-36 - 5125: -6,-28 - 5126: -6,-27 - 5127: -5,-27 - 5128: -6,-26 + 4479: 38,-21 + 4480: 35,-21 + 4481: 33,-21 + 4482: 33,-22 + 4483: 32,-22 + 4484: 32,-21 + 4485: 37,-19 + 4486: 34,-19 + 4487: 32,-19 + 4488: 31,-19 + 4489: 28,-19 + 4490: 27,-19 + 4491: 27,-20 + 4492: 27,-21 + 4493: 30,-21 + 4494: 29,-21 + 4495: 29,-23 + 4496: 29,-24 + 4497: 29,-25 + 4498: 29,-26 + 4499: 27,-22 + 4500: 27,-24 + 4501: 27,-25 + 4502: 26,-25 + 4503: 25,-25 + 4504: 29,-27 + 4505: 27,-27 + 4506: 25,-27 + 4507: 24,-27 + 4508: 21,-27 + 4509: 21,-25 + 4510: 20,-25 + 4511: 19,-25 + 4512: 19,-26 + 4513: 19,-28 + 4514: 19,-28 + 4515: 19,-30 + 4516: 19,-31 + 4517: 19,-32 + 4518: 21,-30 + 4519: 21,-33 + 4520: 21,-34 + 4521: 21,-34 + 4522: 19,-34 + 4523: 20,-36 + 4524: 20,-37 + 4525: 19,-37 + 4526: 20,-39 + 4527: 21,-38 + 4528: 22,-39 + 4529: 21,-37 + 4530: 24,-37 + 4531: 23,-38 + 4532: 25,-37 + 4533: 25,-38 + 4534: 24,-38 + 4535: 25,-38 + 4536: 17,-34 + 4537: 17,-35 + 4538: 16,-34 + 4539: 14,-34 + 4540: 17,-32 + 4541: 15,-32 + 4542: 13,-32 + 4543: 11,-32 + 4544: 10,-32 + 4545: 12,-34 + 4546: 9,-34 + 4547: 8,-34 + 4548: 7,-34 + 4549: 7,-32 + 4550: 7,-32 + 4551: 6,-32 + 4552: 9,-30 + 4553: 8,-29 + 4554: 7,-29 + 4555: 7,-29 + 4556: 6,-28 + 4557: 8,-27 + 4558: 9,-27 + 4559: 7,-28 + 4560: 6,-27 + 4561: 5,-29 + 4562: 7,-30 + 4563: 9,-30 + 4564: 3,-30 + 4565: 1,-30 + 4566: 3,-32 + 4567: 2,-32 + 4568: 2,-33 + 4569: 0,-33 + 4570: -1,-33 + 4571: -1,-32 + 4572: 0,-30 + 4573: -3,-30 + 4574: -4,-30 + 4575: -6,-30 + 4576: -7,-30 + 4577: -9,-30 + 4578: -6,-32 + 4579: -5,-32 + 4580: -3,-32 + 4581: -8,-32 + 4582: -8,-33 + 4583: -9,-32 + 4584: -10,-32 + 4585: -11,-32 + 4586: -13,-32 + 4587: -10,-30 + 4588: -11,-30 + 4589: -13,-30 + 4590: -15,-30 + 4591: -16,-30 + 4592: -12,-29 + 4593: -12,-30 + 4594: -16,-32 + 4595: -17,-33 + 4596: -17,-32 + 4597: -19,-32 + 4598: -18,-30 + 4599: -20,-30 + 4600: -22,-30 + 4601: -23,-30 + 4602: -23,-29 + 4603: -22,-32 + 4604: -24,-32 + 4605: -24,-32 + 4606: -26,-30 + 4607: -26,-29 + 4608: -26,-27 + 4609: -26,-25 + 4610: -24,-27 + 4611: -24,-26 + 4612: -24,-25 + 4613: -24,-24 + 4614: -26,-23 + 4615: -26,-22 + 4616: -26,-20 + 4617: -24,-21 + 4618: -24,-19 + 4619: -24,-18 + 4620: -24,-16 + 4621: -26,-17 + 4622: -26,-16 + 4623: -26,-14 + 4624: -26,-13 + 4625: -26,-12 + 4626: -26,-10 + 4627: -26,-9 + 4628: -25,-9 + 4629: -24,-11 + 4630: -23,-11 + 4631: -23,-10 + 4632: -23,-9 + 4633: -24,-5 + 4634: -24,-4 + 4635: -24,-2 + 4636: -19,-11 + 4637: -19,-10 + 4638: -20,-10 + 4639: -20,-9 + 4640: -19,-9 + 4641: -30,-21 + 4642: -30,-19 + 4643: -29,-19 + 4644: -30,-18 + 4645: -32,-21 + 4646: -32,-19 + 4647: -33,-18 + 4648: -34,-18 + 4649: -36,-15 + 4650: -36,-14 + 4651: -33,-14 + 4652: -33,-14 + 4653: -33,-15 + 4654: -30,-14 + 4655: -36,-10 + 4656: -37,-9 + 4657: -37,-10 + 4658: -29,-10 + 4659: -30,-11 + 4660: -30,-9 + 4661: -28,-10 + 4662: -40,-11 + 4663: -41,-10 + 4664: -41,-9 + 4665: -40,-9 + 4666: -41,-10 + 4667: -41,-10 + 4668: -49,-18 + 4669: -38,-33 + 4670: -36,-33 + 4671: -33,-33 + 4672: -32,-33 + 4673: -31,-33 + 4674: -31,-31 + 4675: -31,-29 + 4676: -31,-28 + 4677: -31,-26 + 4678: -33,-26 + 4679: -35,-26 + 4680: -36,-26 + 4681: -37,-26 + 4682: -38,-26 + 4683: -38,-27 + 4684: -38,-29 + 4685: -38,-30 + 4686: -38,-31 + 4687: -38,-29 + 4688: -38,-26 + 4689: -40,-26 + 4690: -40,-25 + 4691: -41,-25 + 4692: -41,-26 + 4693: -41,-28 + 4694: -41,-29 + 4695: -41,-30 + 4696: -41,-32 + 4697: -41,-33 + 4698: -41,-34 + 4699: -39,-33 + 4700: -40,-34 + 4701: -35,-34 + 4702: -34,-34 + 4703: -32,-34 + 4704: -31,-34 + 4705: -30,-34 + 4706: -30,-33 + 4707: -28,-34 + 4708: -28,-32 + 4709: -28,-31 + 4710: -28,-29 + 4711: -28,-27 + 4712: -28,-26 + 4713: -29,-25 + 4714: -30,-25 + 4715: -30,-26 + 4716: -32,-25 + 4717: -33,-26 + 4718: -35,-25 + 4719: -32,6 + 4720: -32,7 + 4721: -32,6 + 4722: -36,6 + 4723: -36,5 + 4724: -36,7 + 4725: -34,6 + 4726: -34,5 + 4727: -35,6 + 4728: -33,6 + 4729: -35,-4 + 4730: -35,-2 + 4731: -36,-5 + 4732: -35,-2 + 4733: -34,-2 + 4734: -35,-1 + 4746: -25,28 + 4747: -26,28 + 4748: -18,32 + 4749: -17,31 + 4750: -17,33 + 4751: -18,32 + 4752: -15,34 + 4753: -15,32 + 4754: -15,31 + 4755: -13,31 + 4756: -12,31 + 4757: -15,34 + 4758: -15,34 + 4759: -12,39 + 4760: -13,40 + 4761: -14,40 + 4762: -15,40 + 4763: -16,40 + 4764: -16,40 + 4765: -13,40 + 4766: -12,40 + 4767: -12,38 + 4768: -12,40 + 4774: -5,40 + 4775: -6,40 + 4776: -6,42 + 4777: -6,43 + 4778: -5,42 + 4779: -6,43 + 4780: -6,45 + 4781: -6,46 + 4782: -6,47 + 4783: -5,46 + 4784: -4,48 + 4785: -5,46 + 4786: -2,48 + 4787: -4,46 + 4788: -1,47 + 4789: -3,45 + 4790: 0,46 + 4791: -3,47 + 4792: -1,45 + 4793: -3,46 + 4794: 1,45 + 4795: 1,47 + 4796: 0,46 + 4797: 1,48 + 4798: 2,48 + 4799: 3,47 + 4800: 2,45 + 4801: 2,44 + 4802: 2,43 + 4803: 2,42 + 4804: 1,42 + 4805: 3,42 + 4806: -2,43 + 4807: -1,41 + 4808: -3,40 + 4809: -3,40 + 4810: 1,51 + 4811: -2,50 + 4812: -3,50 + 4813: -2,51 + 4814: 0,51 + 4815: -1,52 + 4816: -2,51 + 4817: -2,53 + 4818: 1,53 + 4819: 2,51 + 4820: 2,50 + 4821: 0,50 + 4822: -4,45 + 4823: -4,47 + 4850: 6,42 + 4851: 5,41 + 4852: 5,39 + 4853: 7,39 + 4854: 8,39 + 4855: 9,41 + 4856: 9,40 + 4857: 8,42 + 4858: 8,41 + 4859: 15,37 + 4860: 14,37 + 4861: 14,35 + 4862: 14,34 + 4863: 13,35 + 4864: 13,36 + 4865: 15,34 + 4866: 16,35 + 4867: 15,36 + 4868: 15,34 + 4869: 15,35 + 4870: 15,37 + 4871: 14,37 + 4872: 15,30 + 4873: 14,29 + 4874: 14,29 + 4875: 15,28 + 4876: 14,29 + 4877: 14,32 + 4878: 13,32 + 4879: 15,24 + 4903: 2,24 + 4904: 1,24 + 4905: 1,24 + 4906: 2,23 + 4907: 4,23 + 4908: 4,24 + 4909: 3,26 + 4910: 4,28 + 4911: 2,27 + 4912: 2,27 + 4913: 3,27 + 4914: -2,25 + 4915: -3,25 + 4916: -3,23 + 4917: -2,24 + 4918: -4,23 + 4919: -4,25 + 4955: -14,28 + 4956: -15,28 + 4957: -14,29 + 4958: -13,26 + 4959: -10,26 + 4960: -9,27 + 4961: -10,28 + 4962: -7,28 + 4963: -8,26 + 4964: -5,28 + 4965: -7,24 + 4966: -8,24 + 4967: -7,23 + 4968: -6,24 + 4969: -6,23 + 4970: -7,23 + 4971: -8,23 + 4972: -8,23 + 4973: -12,23 + 4974: -11,24 + 4975: -10,23 + 4976: -10,24 + 4977: -10,24 + 4978: -12,24 + 4979: -12,24 + 4980: -14,24 + 4981: -14,23 + 4982: -16,24 + 4983: -14,24 + 4984: -15,23 + 4985: -16,24 + 4986: -14,25 + 4987: -10,25 + 4988: -7,25 + 4989: -1,28 + 4990: -3,27 + 4991: -1,30 + 4992: -1,33 + 4993: -1,34 + 4994: -1,37 + 4995: -3,37 + 4996: -3,38 + 4997: -1,37 + 4998: -2,37 + 4999: -1,40 + 5000: -3,41 + 5001: -3,43 + 5002: -2,43 + 5003: -20,25 + 5004: -21,25 + 5005: -19,25 + 5006: -21,25 + 5007: -22,17 + 5008: -23,17 + 5009: -22,5 + 5010: -22,5 + 5011: -22,5 + 5012: -19,-28 + 5013: -16,-28 + 5014: -16,-27 + 5015: -15,-28 + 5016: -16,-26 + 5017: -15,-27 + 5018: -15,-28 + 5019: -15,-26 + 5020: -15,-26 + 5021: -14,-26 + 5032: -25,-34 + 5033: -23,-34 + 5034: -22,-34 + 5035: -21,-34 + 5036: -20,-34 + 5037: -20,-37 + 5038: -20,-36 + 5039: -19,-38 + 5040: -19,-36 + 5041: -22,-37 + 5042: -23,-37 + 5043: -23,-38 + 5044: -23,-36 + 5045: -24,-37 + 5046: -26,-37 + 5047: -26,-36 + 5048: -26,-37 + 5049: -28,-40 + 5050: -27,-40 + 5051: -25,-40 + 5052: -24,-40 + 5053: -23,-40 + 5054: -21,-40 + 5055: -19,-40 + 5056: -21,-40 + 5057: -24,-40 + 5058: -26,-40 + 5059: -32,-40 + 5060: -31,-40 + 5061: -33,-39 + 5062: -33,-40 + 5063: -32,-39 + 5064: -31,-39 + 5065: -34,-39 + 5066: -33,-40 + 5067: -39,-38 + 5068: -38,-38 + 5069: -29,-46 + 5070: -30,-45 + 5071: -30,-45 + 5072: -30,-44 + 5075: -29,-45 + 5076: -30,-45 + 5078: -30,-44 + 5079: -29,-45 + 5080: -38,-53 + 5081: -38,-54 + 5082: -37,-53 + 5083: -37,-54 + 5084: -14,-39 + 5085: -13,-38 + 5086: -13,-39 + 5087: -13,-40 + 5088: -13,-41 + 5089: -13,-39 + 5090: -13,-40 + 5091: -13,-41 + 5092: -13,-39 + 5093: -13,-40 + 5094: -13,-39 + 5095: -13,-40 + 5098: -5,-41 + 5099: -5,-40 + 5100: -6,-42 + 5101: -5,-36 + 5102: -6,-36 + 5103: -4,-35 + 5104: -4,-36 + 5105: 0,-36 + 5106: -2,-36 + 5107: 1,-35 + 5108: 1,-37 + 5109: 1,-38 + 5110: 2,-37 + 5111: 2,-38 + 5112: 0,-37 + 5113: 3,-37 + 5114: -1,-36 + 5118: -6,-28 + 5119: -6,-27 + 5120: -5,-27 + 5121: -6,-26 + 5122: -2,-27 + 5123: -3,-26 + 5124: -2,-28 + 5125: -1,-27 + 5126: 0,-27 + 5127: 0,-27 + 5128: -2,-27 5129: -2,-27 - 5130: -3,-26 - 5131: -2,-28 - 5132: -1,-27 - 5133: 0,-27 - 5134: 0,-27 - 5135: -2,-27 - 5136: -2,-27 - 5137: 0,-24 - 5138: -2,-24 - 5139: -2,-23 - 5140: 0,-22 - 5141: 1,-22 - 5142: 1,-21 - 5143: -4,-19 - 5144: -5,-19 - 5145: -7,-19 - 5146: -9,-19 - 5147: -6,-19 - 5148: -7,-17 - 5149: -8,-17 - 5150: -9,-16 - 5151: -9,-16 - 5152: -5,-16 - 5153: -4,-14 - 5154: -5,-15 - 5155: -8,-16 - 5156: -8,-15 - 5157: -14,-14 - 5158: -12,-14 - 5159: -12,-16 - 5160: -13,-18 - 5161: -14,-16 - 5162: -13,-16 - 5163: -13,-19 - 5164: -14,-19 - 5165: -2,-17 - 5166: -2,-15 - 5167: -2,-13 - 5168: -2,-12 - 5169: -1,-15 - 5170: -1,-16 - 5171: -1,-17 - 5172: 1,-17 - 5173: -1,-18 - 5174: 2,-18 + 5130: 0,-24 + 5131: -2,-24 + 5132: -2,-23 + 5133: 0,-22 + 5134: 1,-22 + 5135: 1,-21 + 5136: -4,-19 + 5137: -5,-19 + 5138: -7,-19 + 5139: -9,-19 + 5140: -6,-19 + 5141: -7,-17 + 5142: -8,-17 + 5143: -9,-16 + 5144: -9,-16 + 5145: -5,-16 + 5146: -4,-14 + 5147: -5,-15 + 5148: -8,-16 + 5149: -8,-15 + 5150: -14,-14 + 5151: -12,-14 + 5152: -12,-16 + 5153: -13,-18 + 5154: -14,-16 + 5155: -13,-16 + 5156: -13,-19 + 5157: -14,-19 + 5158: -2,-17 + 5159: -2,-15 + 5160: -2,-13 + 5161: -2,-12 + 5162: -1,-15 + 5163: -1,-16 + 5164: -1,-17 + 5165: 1,-17 + 5166: -1,-18 + 5167: 2,-18 + 5168: 2,-16 + 5169: 2,-15 + 5170: 2,-13 + 5171: 1,-12 + 5172: 1,-14 + 5173: -1,-13 + 5174: 0,-14 5175: 2,-16 - 5176: 2,-15 - 5177: 2,-13 - 5178: 1,-12 - 5179: 1,-14 - 5180: -1,-13 - 5181: 0,-14 - 5182: 2,-16 - 5183: -4,-14 - 5184: -7,-24 - 5185: -7,-22 - 5186: -8,-23 - 5187: -10,-23 - 5188: -9,-23 - 5189: -1,-24 - 5190: 8,-23 - 5191: 8,-22 - 5192: 10,-22 - 5193: 9,-23 - 5194: 8,-25 - 5195: 8,-21 - 5196: 8,-19 - 5197: 8,-18 - 5198: 6,-18 - 5199: 5,-18 - 5200: 0,-27 - 5201: 2,-27 - 5202: 10,-23 - 5203: 13,-23 - 5204: 12,-23 - 5205: 13,-21 - 5206: 14,-22 - 5207: 13,-18 - 5208: 14,-18 - 5209: 14,-17 - 5210: 12,-18 - 5211: 11,-18 - 5212: 11,-16 - 5213: 13,-17 - 5214: 11,-30 - 5215: 11,-28 - 5216: 11,-27 - 5217: 11,-26 - 5218: 17,-26 - 5219: 17,-28 - 5220: 17,-28 - 5221: 17,-30 - 5222: 17,-30 - 5223: 18,-23 - 5224: 20,-22 - 5225: 21,-23 - 5226: 19,-22 - 5227: 21,-22 - 5228: 20,-21 - 5229: 24,-22 - 5230: 23,-23 - 5231: 23,-21 - 5232: 23,-23 - 5233: 17,-16 - 5234: 19,-14 - 5235: 18,-13 - 5236: 20,-13 - 5237: 19,-12 - 5238: 22,-11 + 5176: -4,-14 + 5177: -7,-24 + 5178: -7,-22 + 5179: -8,-23 + 5180: -10,-23 + 5181: -9,-23 + 5182: -1,-24 + 5183: 8,-23 + 5184: 8,-22 + 5185: 10,-22 + 5186: 9,-23 + 5187: 8,-25 + 5188: 8,-21 + 5189: 8,-19 + 5190: 8,-18 + 5191: 6,-18 + 5192: 5,-18 + 5193: 0,-27 + 5194: 2,-27 + 5195: 10,-23 + 5196: 13,-23 + 5197: 12,-23 + 5198: 13,-21 + 5199: 14,-22 + 5200: 13,-18 + 5201: 14,-18 + 5202: 14,-17 + 5203: 12,-18 + 5204: 11,-18 + 5205: 11,-16 + 5206: 13,-17 + 5207: 11,-30 + 5208: 11,-28 + 5209: 11,-27 + 5210: 11,-26 + 5211: 17,-26 + 5212: 17,-28 + 5213: 17,-28 + 5214: 17,-30 + 5215: 17,-30 + 5216: 18,-23 + 5217: 20,-22 + 5218: 21,-23 + 5219: 19,-22 + 5220: 21,-22 + 5221: 20,-21 + 5222: 24,-22 + 5223: 23,-23 + 5224: 23,-21 + 5225: 23,-23 + 5226: 17,-16 + 5227: 19,-14 + 5228: 18,-13 + 5229: 20,-13 + 5230: 19,-12 + 5231: 22,-11 + 5232: 22,-13 + 5233: 20,-11 + 5234: 24,-13 + 5235: 26,-11 + 5236: 21,-11 + 5237: 20,-11 + 5238: 25,-13 5239: 22,-13 - 5240: 20,-11 - 5241: 24,-13 - 5242: 26,-11 - 5243: 21,-11 - 5244: 20,-11 - 5245: 25,-13 - 5246: 22,-13 - 5247: 23,-12 - 5248: 26,-12 - 5249: 19,-12 - 5250: 23,-13 - 5251: 23,-11 - 5252: 19,-10 - 5253: 26,-11 - 5254: 28,-12 - 5255: 25,-12 - 5256: 23,-16 - 5257: 23,-16 - 5258: 13,-19 - 5259: 23,-34 - 5260: 23,-31 - 5261: 23,-30 - 5262: 23,-29 - 5263: 23,-32 - 5264: 29,-34 - 5265: 29,-33 - 5266: 29,-32 - 5267: 29,-30 - 5268: 29,-29 - 5269: 32,-34 - 5270: 32,-31 - 5271: 32,-30 - 5272: 36,-30 - 5273: 35,-29 - 5274: 33,-26 - 5275: 36,-21 - 5276: 38,-16 - 5277: 37,-15 - 5278: 39,-16 - 5279: 38,-17 - 5280: 38,-15 - 5281: 37,-15 - 5282: 62,-31 - 5283: 62,-33 - 5284: 61,-31 - 5285: 63,-33 - 5286: 63,-33 - 5287: 63,-32 - 5288: 62,-32 - 5289: 62,-32 - 5290: 64,8 - 5291: 63,9 - 5292: 65,9 - 5293: 64,8 - 5294: 64,9 - 5295: 64,10 - 5296: 67,6 - 5297: 68,4 - 5298: 68,6 - 5299: 67,5 - 5300: 68,0 - 5301: 68,1 - 5302: 68,2 - 5303: 67,0 - 5304: 68,-2 - 5305: 67,-3 - 5306: 68,-4 - 5307: 68,-3 - 5308: 68,-3 - 5309: 76,-6 - 5315: 54,-30 - 5316: 52,-31 + 5240: 23,-12 + 5241: 26,-12 + 5242: 19,-12 + 5243: 23,-13 + 5244: 23,-11 + 5245: 19,-10 + 5246: 26,-11 + 5247: 28,-12 + 5248: 25,-12 + 5249: 23,-16 + 5250: 23,-16 + 5251: 13,-19 + 5252: 23,-34 + 5253: 23,-31 + 5254: 23,-30 + 5255: 23,-29 + 5256: 23,-32 + 5257: 29,-34 + 5258: 29,-33 + 5259: 29,-32 + 5260: 29,-30 + 5261: 29,-29 + 5262: 32,-34 + 5263: 32,-31 + 5264: 32,-30 + 5265: 36,-30 + 5266: 35,-29 + 5267: 33,-26 + 5268: 36,-21 + 5269: 38,-16 + 5270: 37,-15 + 5271: 39,-16 + 5272: 38,-17 + 5273: 38,-15 + 5274: 37,-15 + 5275: 62,-31 + 5276: 62,-33 + 5277: 61,-31 + 5278: 63,-33 + 5279: 63,-33 + 5280: 63,-32 + 5281: 62,-32 + 5282: 62,-32 + 5283: 64,8 + 5284: 63,9 + 5285: 65,9 + 5286: 64,8 + 5287: 64,9 + 5288: 64,10 + 5289: 67,6 + 5290: 68,4 + 5291: 68,6 + 5292: 67,5 + 5293: 68,0 + 5294: 68,1 + 5295: 68,2 + 5296: 67,0 + 5297: 68,-2 + 5298: 67,-3 + 5299: 68,-4 + 5300: 68,-3 + 5301: 68,-3 + 5302: 76,-6 + 5308: 54,-30 + 5309: 52,-31 + 5310: 51,-31 + 5311: 52,-33 + 5312: 52,-34 + 5313: 51,-33 + 5314: 51,-32 + 5315: 52,-35 + 5316: 51,-33 5317: 51,-31 - 5318: 52,-33 - 5319: 52,-34 - 5320: 51,-33 - 5321: 51,-32 - 5322: 52,-35 - 5323: 51,-33 - 5324: 51,-31 - 5325: 52,-35 - 5326: 52,-35 - 5327: 55,-35 - 5328: 54,-34 - 5329: 56,-33 - 5330: 57,-33 - 5331: 55,-34 - 5332: 55,-36 - 5333: 54,-35 - 5334: 55,-34 - 5335: 54,-35 - 5336: 55,-35 - 5337: 55,-34 - 5338: 40,-31 - 5339: 40,-30 - 5340: 40,-30 - 5341: 41,-31 - 5342: 41,-29 - 5343: 42,-29 - 5344: 43,-29 - 5345: 44,-29 - 5346: 44,-31 - 5347: 43,-30 - 5348: 33,-29 - 5349: 15,-39 - 5350: 14,-39 - 5351: 14,-39 - 5352: 9,-40 - 5353: 9,-39 - 5354: 9,-41 - 5355: 8,-40 - 5356: 9,-45 - 5357: 8,-45 - 5358: 8,-45 - 5359: 19,-45 - 5360: 17,-45 - 5361: 16,-44 - 5362: 16,-45 - 5363: 16,-43 - 5364: 19,-45 - 5365: 20,-44 - 5366: 20,-45 - 5367: 18,-44 - 5368: 21,-45 - 5369: 21,-43 - 5370: 15,-48 - 5371: 14,-48 - 5372: 12,-47 - 5373: 12,-48 - 5374: 14,-48 - 5375: 16,-47 - 5376: 14,-48 - 5377: 13,-48 - 5378: 15,-47 - 5385: 21,-54 - 5386: 20,-54 - 5387: 18,-54 - 5388: 16,-54 - 5389: 16,-55 - 5390: 18,-53 - 5391: 19,-53 - 5392: 21,-55 - 5393: 21,-58 - 5394: 21,-59 - 5395: 20,-58 - 5396: 18,-58 - 5397: 17,-58 - 5398: 16,-58 - 5399: 16,-59 - 5400: 19,-59 - 5401: 19,-59 - 5402: 18,-59 - 5403: 27,-46 - 5404: 26,-45 - 5405: 26,-44 - 5406: 27,-45 - 5407: 27,-45 - 5408: 28,-42 - 5409: 29,-42 - 5410: 29,-40 - 5411: 28,-39 - 5412: 28,-39 - 5413: 28,-40 - 5414: 29,-47 - 5415: 28,-47 - 5416: 66,-52 - 5417: 65,-51 - 5418: 66,-52 - 5419: 66,-51 - 5420: 65,-52 - 5421: 66,-51 - 5422: 27,15 - 5423: 28,15 - 5424: 27,14 - 5425: 27,12 - 5426: -23,34 - 5427: -23,35 - 5428: -22,34 - 5429: -27,36 - 5430: -27,34 - 5431: -28,35 - 5432: -27,35 - 5433: -29,36 - 5434: -30,37 - 5435: -30,38 - 5436: -28,35 - 5437: -28,34 - 5438: -29,35 - 5439: -26,36 - 5440: -25,38 - 5441: -26,37 - 5442: -32,36 - 5443: -33,35 - 5444: -33,37 - 5445: -33,35 - 5446: -34,36 - 5447: -33,38 - 5448: -33,35 - 5449: -36,5 - 5450: -42,6 - 5451: -43,4 - 5452: -43,6 - 5453: -42,7 - 5454: -51,9 - 5455: -49,13 - 5456: -42,-5 - 5457: -43,-5 - 5458: -42,-3 - 5459: -45,-4 - 5460: -45,-5 - 5461: -46,-4 - 5462: -43,-3 - 5463: -43,-2 - 5464: -42,-2 - 5465: -60,-29 - 5466: -60,-29 - 5467: -57,-36 - 5468: -58,-36 - 5469: -59,-36 - 5470: -57,-37 - 5471: -58,-35 - 5472: -58,-34 - 5473: -57,-35 - 5474: -59,-34 - 5475: -58,-34 - 5476: -59,-34 - 5477: -60,-34 - 5478: -60,-35 - 5479: -61,-21 - 5480: -62,-21 - 5481: -62,-20 - 5482: -61,-20 - 5483: -61,-20 - 5484: 13,35 - 6147: 52,20 - 6148: 51,21 - 6149: 53,20 - 6150: 53,21 - 6271: 46,14 - 6272: 45,15 - 6273: 46,16 - 6479: 49,-7 - 6480: 48,-6 - 6481: 48,-4 - 6482: 49,-4 - 6483: 52,-7 - 6484: 52,-5 - 6485: 51,-6 - 6486: 52,-2 - 6487: 52,-3 - 6488: 48,-1 - 6489: 48,-2 - 6509: 49,-12 - 6510: 49,-14 - 6511: 49,-15 - 6512: 49,-13 - 6513: 52,-14 - 6514: 52,-13 - 6515: 52,-12 - 6516: 52,-15 - 6517: 52,-15 - 6518: 52,-10 - 6519: 51,1 - 6520: 51,3 - 6521: 51,4 - 6522: 51,6 - 6523: 51,8 - 6524: 51,9 - 6525: 51,11 - 6526: 51,13 - 6527: 49,13 - 6528: 49,11 - 6529: 49,9 - 6530: 49,7 - 6531: 49,5 - 6532: 49,3 - 6533: 49,1 - 6546: 42,9 - 6547: 43,9 - 6548: 42,7 - 6549: 43,7 - 6550: 45,7 - 6551: 45,9 - 6552: 46,7 - 6553: 40,4 - 6554: 42,4 - 6555: 43,4 - 6556: 43,2 - 6557: 43,1 - 6558: 43,-2 - 6559: 43,-4 - 6560: 43,-7 - 6561: 43,-6 - 6562: 43,-10 - 6563: 43,-11 - 6564: 45,5 - 6565: 42,5 - 6566: 41,5 - 6645: 90,-18 - 6646: 89,-18 - 6729: 51,-39 - 6730: 52,-39 - 6731: 54,-39 - 6732: 52,-37 - 6742: 51,-30 - 6743: 52,-29 + 5318: 52,-35 + 5319: 52,-35 + 5320: 55,-35 + 5321: 54,-34 + 5322: 56,-33 + 5323: 57,-33 + 5324: 55,-34 + 5325: 55,-36 + 5326: 54,-35 + 5327: 55,-34 + 5328: 54,-35 + 5329: 55,-35 + 5330: 55,-34 + 5331: 40,-31 + 5332: 40,-30 + 5333: 40,-30 + 5334: 41,-31 + 5335: 41,-29 + 5336: 42,-29 + 5337: 43,-29 + 5338: 44,-29 + 5339: 44,-31 + 5340: 43,-30 + 5341: 33,-29 + 5342: 15,-39 + 5343: 14,-39 + 5344: 14,-39 + 5345: 9,-40 + 5346: 9,-39 + 5347: 9,-41 + 5348: 8,-40 + 5349: 9,-45 + 5350: 8,-45 + 5351: 8,-45 + 5352: 19,-45 + 5353: 17,-45 + 5354: 16,-44 + 5355: 16,-45 + 5356: 16,-43 + 5357: 19,-45 + 5358: 20,-44 + 5359: 20,-45 + 5360: 18,-44 + 5361: 21,-45 + 5362: 21,-43 + 5363: 15,-48 + 5364: 14,-48 + 5365: 12,-47 + 5366: 12,-48 + 5367: 14,-48 + 5368: 16,-47 + 5369: 14,-48 + 5370: 13,-48 + 5371: 15,-47 + 5378: 21,-54 + 5379: 20,-54 + 5380: 18,-54 + 5381: 16,-54 + 5382: 16,-55 + 5383: 18,-53 + 5384: 19,-53 + 5385: 21,-55 + 5386: 21,-58 + 5387: 21,-59 + 5388: 20,-58 + 5389: 18,-58 + 5390: 17,-58 + 5391: 16,-58 + 5392: 16,-59 + 5393: 19,-59 + 5394: 19,-59 + 5395: 18,-59 + 5396: 27,-46 + 5397: 26,-45 + 5398: 26,-44 + 5399: 27,-45 + 5400: 27,-45 + 5401: 28,-42 + 5402: 29,-42 + 5403: 29,-40 + 5404: 28,-39 + 5405: 28,-39 + 5406: 28,-40 + 5407: 29,-47 + 5408: 28,-47 + 5409: 66,-52 + 5410: 65,-51 + 5411: 66,-52 + 5412: 66,-51 + 5413: 65,-52 + 5414: 66,-51 + 5415: 27,15 + 5416: 28,15 + 5417: 27,14 + 5418: 27,12 + 5419: -23,34 + 5420: -23,35 + 5421: -22,34 + 5422: -27,36 + 5423: -27,34 + 5424: -28,35 + 5425: -27,35 + 5426: -29,36 + 5427: -30,37 + 5428: -30,38 + 5429: -28,35 + 5430: -28,34 + 5431: -29,35 + 5432: -26,36 + 5433: -25,38 + 5434: -26,37 + 5435: -32,36 + 5436: -33,35 + 5437: -33,37 + 5438: -33,35 + 5439: -34,36 + 5440: -33,38 + 5441: -33,35 + 5442: -36,5 + 5443: -42,6 + 5444: -43,4 + 5445: -43,6 + 5446: -42,7 + 5447: -51,9 + 5448: -49,13 + 5449: -42,-5 + 5450: -43,-5 + 5451: -42,-3 + 5452: -45,-4 + 5453: -45,-5 + 5454: -46,-4 + 5455: -43,-3 + 5456: -43,-2 + 5457: -42,-2 + 5458: -60,-29 + 5459: -60,-29 + 5460: -57,-36 + 5461: -58,-36 + 5462: -59,-36 + 5463: -57,-37 + 5464: -58,-35 + 5465: -58,-34 + 5466: -57,-35 + 5467: -59,-34 + 5468: -58,-34 + 5469: -59,-34 + 5470: -60,-34 + 5471: -60,-35 + 5472: -61,-21 + 5473: -62,-21 + 5474: -62,-20 + 5475: -61,-20 + 5476: -61,-20 + 5477: 13,35 + 6136: 52,20 + 6137: 51,21 + 6138: 53,20 + 6139: 53,21 + 6260: 46,14 + 6261: 45,15 + 6262: 46,16 + 6468: 49,-7 + 6469: 48,-6 + 6470: 48,-4 + 6471: 49,-4 + 6472: 52,-7 + 6473: 52,-5 + 6474: 51,-6 + 6475: 52,-2 + 6476: 52,-3 + 6477: 48,-1 + 6478: 48,-2 + 6498: 49,-12 + 6499: 49,-14 + 6500: 49,-15 + 6501: 49,-13 + 6502: 52,-14 + 6503: 52,-13 + 6504: 52,-12 + 6505: 52,-15 + 6506: 52,-15 + 6507: 52,-10 + 6508: 51,1 + 6509: 51,3 + 6510: 51,4 + 6511: 51,6 + 6512: 51,8 + 6513: 51,9 + 6514: 51,11 + 6515: 51,13 + 6516: 49,13 + 6517: 49,11 + 6518: 49,9 + 6519: 49,7 + 6520: 49,5 + 6521: 49,3 + 6522: 49,1 + 6535: 42,9 + 6536: 43,9 + 6537: 42,7 + 6538: 43,7 + 6539: 45,7 + 6540: 45,9 + 6541: 46,7 + 6542: 40,4 + 6543: 42,4 + 6544: 43,4 + 6545: 43,2 + 6546: 43,1 + 6547: 43,-2 + 6548: 43,-4 + 6549: 43,-7 + 6550: 43,-6 + 6551: 43,-10 + 6552: 43,-11 + 6553: 45,5 + 6554: 42,5 + 6555: 41,5 + 6634: 90,-18 + 6635: 89,-18 + 6718: 51,-39 + 6719: 52,-39 + 6720: 54,-39 + 6721: 52,-37 + 6731: 51,-30 + 6732: 52,-29 + 6756: -33,-12 + 6757: -33,-10 + 6774: -36,-45 + 6775: -35,-44 + 6776: -35,-46 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 3026: -43,17 + 3023: -43,17 - node: cleanable: True color: '#835432FF' id: DirtHeavyMonotile decals: - 2934: -38,29 - 2935: -36,28 - 2936: -34,26 - 2937: -34,24 - 2938: -36,22 - 2939: -37,25 - 2940: -37,26 - 2941: -37,27 - 2942: -38,27 - 2943: -36,26 + 2931: -38,29 + 2932: -36,28 + 2933: -34,26 + 2934: -34,24 + 2935: -36,22 + 2936: -37,25 + 2937: -37,26 + 2938: -37,27 + 2939: -38,27 + 2940: -36,26 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 6670: 88,-21 - 6671: 88,-20 - 6672: 91,-20 - 6675: 87,-20 - 6678: 88,-19 + 6659: 88,-21 + 6660: 88,-20 + 6661: 91,-20 + 6664: 87,-20 + 6667: 88,-19 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3196: 4,-31 - 3197: 0,-31 - 3198: -4,-31 - 3199: -8,-31 - 3200: -10,-31 - 3201: -13,-31 - 3202: -17,-31 - 3203: -18,-31 - 3204: -21,-31 - 3205: -25,-31 - 3206: -25,-27 - 3207: -25,-24 - 3208: -25,-22 - 3209: -25,-19 - 3210: -25,-18 - 3211: -25,-13 - 3212: -25,-11 - 3213: -24,-10 - 3214: -24,-8 - 3215: -22,-2 - 3216: -22,0 - 3217: -22,3 - 3218: -20,8 - 3219: -22,9 - 3220: -24,8 - 3221: -25,9 - 3222: -26,8 - 3223: -26,12 - 3224: -26,15 - 3225: -26,17 - 3226: -25,20 - 3227: -23,19 - 3228: -20,19 - 3229: -18,20 - 3230: -15,20 - 3231: -12,20 - 3232: -7,20 - 3233: -3,20 - 3234: -1,20 - 3235: 2,20 - 3236: 6,20 - 3237: 9,20 - 3238: 11,20 - 3239: 14,20 - 3240: 17,20 - 3241: 20,19 - 3242: 20,17 - 3243: 20,15 - 3244: 20,11 - 3245: 20,9 - 3246: 20,6 - 3247: 20,3 - 3248: 22,3 - 3249: 25,3 - 3250: 27,3 - 3251: 30,3 - 3252: 33,3 - 3253: 36,3 - 3254: 41,3 - 3255: 42,2 - 3256: 42,0 - 3257: 42,-3 - 3258: 42,-6 - 3259: 42,-9 - 3260: 42,-11 - 3261: 42,-15 - 3262: 42,-18 - 3263: 42,-20 - 3264: 44,-20 - 3265: 42,-13 - 3266: 42,-10 - 3267: 42,-7 - 3268: 42,-5 - 3269: 42,-2 - 3270: 42,1 - 3271: 39,3 - 3272: 37,3 - 3273: 35,3 - 3274: 32,3 - 3275: 31,3 - 3276: 26,3 - 3277: 22,3 - 3278: 20,6 - 3279: 20,9 - 3280: 20,12 - 3281: 20,15 - 3282: 20,19 - 3283: 19,20 - 3284: 12,20 - 3285: 8,20 - 3286: 5,20 - 3287: 2,20 - 3288: -1,20 - 3289: -5,20 - 3290: -9,20 - 3291: -12,20 - 3292: -16,20 - 3294: -19,19 - 3295: -26,20 - 3296: -26,16 - 3297: -26,11 - 3298: -26,8 - 3299: -23,8 - 3300: -22,9 - 3301: -21,8 - 3302: -20,9 - 3303: -22,3 - 3304: -22,0 - 3305: -22,-3 - 3306: -22,-5 - 3307: -23,-7 - 3308: -25,-7 - 3309: -23,-8 - 3310: -25,-10 - 3311: -25,-10 - 3312: -25,-14 - 3313: -25,-18 - 3314: -25,-21 - 3315: -25,-25 - 3316: -25,-28 - 3317: -23,-31 - 3318: -20,-31 - 3319: -15,-31 - 3320: -9,-31 - 3321: -5,-31 - 3322: 1,-31 - 3323: 1,-32 - 3324: 7,-31 - 3325: 5,-31 - 3326: 8,-32 - 3327: 9,-33 - 3328: 12,-33 - 3329: 15,-33 - 3330: 18,-33 - 3331: 19,-33 - 3332: 20,-29 - 3333: 20,-27 - 3334: 21,-26 - 3335: 24,-26 - 3336: 27,-26 - 3337: 28,-26 - 3338: 28,-22 - 3339: 28,-21 - 3340: 28,-20 - 3341: 32,-20 - 3342: 35,-20 - 3343: 39,-20 - 3344: 42,-20 - 3345: 40,-20 - 3346: 42,-17 - 3347: 42,-19 - 3348: 49,-20 - 3349: 52,-20 - 3350: 47,-20 - 3351: 53,-20 - 3352: 53,-22 - 3353: 53,-23 - 3354: 54,-20 - 3355: 56,-20 - 3356: 58,-20 - 3357: 58,-20 - 3358: 58,-22 - 3359: 58,-23 - 3360: 58,-22 - 3361: 49,-20 - 3362: 50,-20 - 3363: 44,-13 - 3364: 41,-13 - 3365: 39,-1 - 3366: 37,-1 - 3367: 36,-1 - 3368: 50,6 - 3369: 50,2 - 3370: 50,14 - 3371: 46,-7 - 3372: 45,-8 - 3373: 46,-4 - 3374: 46,-5 - 3375: 45,-1 - 3376: 46,-2 - 3377: 54,-1 - 3378: 55,-1 - 3379: 55,-7 - 3380: 58,-4 - 3381: 59,-6 - 3382: 60,-5 - 3383: 62,-6 - 3384: 61,-6 - 3385: 55,7 - 3386: 54,7 - 3387: 59,15 - 3388: 58,15 - 3389: 60,16 - 3390: 60,3 - 3391: 60,1 - 3392: 63,1 - 3393: 62,1 - 3394: 62,0 - 3395: 62,3 - 3396: 62,4 - 3397: 28,3 - 3398: 28,3 - 3399: 24,8 - 3400: 24,6 - 3401: 23,8 - 3402: 25,7 - 3403: 24,7 - 3404: 24,6 - 3405: 25,11 - 3406: 25,13 - 3407: 25,14 - 3408: 23,15 - 3409: 22,12 - 3410: 23,12 - 3411: 23,14 - 3412: 23,11 + 3193: 4,-31 + 3194: 0,-31 + 3195: -4,-31 + 3196: -8,-31 + 3197: -10,-31 + 3198: -13,-31 + 3199: -17,-31 + 3200: -18,-31 + 3201: -21,-31 + 3202: -25,-31 + 3203: -25,-27 + 3204: -25,-24 + 3205: -25,-22 + 3206: -25,-19 + 3207: -25,-18 + 3208: -25,-13 + 3209: -25,-11 + 3210: -24,-10 + 3211: -24,-8 + 3212: -22,-2 + 3213: -22,0 + 3214: -22,3 + 3215: -20,8 + 3216: -22,9 + 3217: -24,8 + 3218: -25,9 + 3219: -26,8 + 3220: -26,12 + 3221: -26,15 + 3222: -26,17 + 3223: -25,20 + 3224: -23,19 + 3225: -20,19 + 3226: -18,20 + 3227: -15,20 + 3228: -12,20 + 3229: -7,20 + 3230: -3,20 + 3231: -1,20 + 3232: 2,20 + 3233: 6,20 + 3234: 9,20 + 3235: 11,20 + 3236: 14,20 + 3237: 17,20 + 3238: 20,19 + 3239: 20,17 + 3240: 20,15 + 3241: 20,11 + 3242: 20,9 + 3243: 20,6 + 3244: 20,3 + 3245: 22,3 + 3246: 25,3 + 3247: 27,3 + 3248: 30,3 + 3249: 33,3 + 3250: 36,3 + 3251: 41,3 + 3252: 42,2 + 3253: 42,0 + 3254: 42,-3 + 3255: 42,-6 + 3256: 42,-9 + 3257: 42,-11 + 3258: 42,-15 + 3259: 42,-18 + 3260: 42,-20 + 3261: 44,-20 + 3262: 42,-13 + 3263: 42,-10 + 3264: 42,-7 + 3265: 42,-5 + 3266: 42,-2 + 3267: 42,1 + 3268: 39,3 + 3269: 37,3 + 3270: 35,3 + 3271: 32,3 + 3272: 31,3 + 3273: 26,3 + 3274: 22,3 + 3275: 20,6 + 3276: 20,9 + 3277: 20,12 + 3278: 20,15 + 3279: 20,19 + 3280: 19,20 + 3281: 12,20 + 3282: 8,20 + 3283: 5,20 + 3284: 2,20 + 3285: -1,20 + 3286: -5,20 + 3287: -9,20 + 3288: -12,20 + 3289: -16,20 + 3291: -19,19 + 3292: -26,20 + 3293: -26,16 + 3294: -26,11 + 3295: -26,8 + 3296: -23,8 + 3297: -22,9 + 3298: -21,8 + 3299: -20,9 + 3300: -22,3 + 3301: -22,0 + 3302: -22,-3 + 3303: -22,-5 + 3304: -23,-7 + 3305: -25,-7 + 3306: -23,-8 + 3307: -25,-10 + 3308: -25,-10 + 3309: -25,-14 + 3310: -25,-18 + 3311: -25,-21 + 3312: -25,-25 + 3313: -25,-28 + 3314: -23,-31 + 3315: -20,-31 + 3316: -15,-31 + 3317: -9,-31 + 3318: -5,-31 + 3319: 1,-31 + 3320: 1,-32 + 3321: 7,-31 + 3322: 5,-31 + 3323: 8,-32 + 3324: 9,-33 + 3325: 12,-33 + 3326: 15,-33 + 3327: 18,-33 + 3328: 19,-33 + 3329: 20,-29 + 3330: 20,-27 + 3331: 21,-26 + 3332: 24,-26 + 3333: 27,-26 + 3334: 28,-26 + 3335: 28,-22 + 3336: 28,-21 + 3337: 28,-20 + 3338: 32,-20 + 3339: 35,-20 + 3340: 39,-20 + 3341: 42,-20 + 3342: 40,-20 + 3343: 42,-17 + 3344: 42,-19 + 3345: 49,-20 + 3346: 52,-20 + 3347: 47,-20 + 3348: 53,-20 + 3349: 53,-22 + 3350: 53,-23 + 3351: 54,-20 + 3352: 56,-20 + 3353: 58,-20 + 3354: 58,-20 + 3355: 58,-22 + 3356: 58,-23 + 3357: 58,-22 + 3358: 49,-20 + 3359: 50,-20 + 3360: 44,-13 + 3361: 41,-13 + 3362: 39,-1 + 3363: 37,-1 + 3364: 36,-1 + 3365: 50,6 + 3366: 50,2 + 3367: 50,14 + 3368: 46,-7 + 3369: 45,-8 + 3370: 46,-4 + 3371: 46,-5 + 3372: 45,-1 + 3373: 46,-2 + 3374: 54,-1 + 3375: 55,-1 + 3376: 55,-7 + 3377: 58,-4 + 3378: 59,-6 + 3379: 60,-5 + 3380: 62,-6 + 3381: 61,-6 + 3382: 55,7 + 3383: 54,7 + 3384: 59,15 + 3385: 58,15 + 3386: 60,16 + 3387: 60,3 + 3388: 60,1 + 3389: 63,1 + 3390: 62,1 + 3391: 62,0 + 3392: 62,3 + 3393: 62,4 + 3394: 28,3 + 3395: 28,3 + 3396: 24,8 + 3397: 24,6 + 3398: 23,8 + 3399: 25,7 + 3400: 24,7 + 3401: 24,6 + 3402: 25,11 + 3403: 25,13 + 3404: 25,14 + 3405: 23,15 + 3406: 22,12 + 3407: 23,12 + 3408: 23,14 + 3409: 23,11 + 3410: 26,19 + 3411: 24,20 + 3412: 25,21 3413: 26,19 - 3414: 24,20 - 3415: 25,21 - 3416: 26,19 - 3417: 25,20 - 3418: 29,20 - 3419: 29,19 - 3420: 30,19 - 3421: 29,21 - 3422: -19,26 - 3423: -21,28 - 3424: -20,26 - 3425: -20,28 - 3426: -7,40 - 3427: 3,40 - 3428: -26,19 - 3429: -17,11 - 3430: -16,11 - 3431: -16,13 - 3432: -17,13 - 3433: -33,11 - 3434: -33,13 - 3435: -33,14 - 3436: -32,14 - 3437: -30,14 - 3438: -29,14 - 3439: -31,14 - 3440: -30,3 - 3441: -32,3 - 3442: -37,3 - 3443: -36,2 - 3444: -35,2 - 3445: -37,1 - 3446: -33,1 - 3447: -32,2 - 3448: -32,1 - 3449: -31,2 - 3450: -33,2 - 3451: -38,0 - 3452: -37,0 - 3453: -34,0 - 3454: -33,0 - 3455: -31,0 - 3456: -30,0 - 3457: -55,6 - 3458: -54,6 - 3459: -54,4 - 3460: -54,2 - 3461: -56,5 - 3462: -55,4 - 3463: -53,1 - 3464: -51,1 - 3465: -49,1 - 3466: -47,1 - 3467: -45,1 - 3468: -44,1 - 3469: -43,1 - 3470: -54,1 - 3471: -54,-4 - 3472: -55,-4 - 3473: -54,-8 - 3474: -54,-10 - 3475: -54,-12 - 3476: -54,-14 - 3477: -54,-16 - 3478: -54,-19 - 3479: -53,-21 - 3480: -51,-21 - 3481: -54,-21 - 3482: -54,-20 - 3483: -54,-18 - 3484: -48,-21 - 3485: -48,-23 - 3486: -48,-24 - 3487: -50,-25 - 3488: -47,-25 - 3489: -45,-25 - 3490: -45,-26 - 3491: -45,-29 - 3492: -44,-28 - 3493: -43,-28 - 3494: -45,-31 - 3495: -48,-32 - 3496: -49,-32 - 3497: -51,-32 - 3498: -51,-30 - 3499: -51,-28 - 3500: -51,-26 - 3501: -48,-33 - 3502: -54,-26 - 3503: -56,-25 - 3504: -55,-25 - 3505: -56,-26 - 3506: -57,-26 - 3507: -55,-26 - 3508: -56,-25 - 3509: -48,-36 - 3510: -48,-38 - 3511: -48,-40 - 3512: -48,-42 - 3513: -48,-44 - 3514: -48,-47 - 3515: -49,-47 - 3516: -51,-47 - 3517: -53,-47 - 3518: -54,-47 - 3519: -45,-47 - 3520: -45,-47 - 3521: -43,-47 - 3522: -41,-47 - 3523: -41,-47 - 3524: -41,-50 - 3525: -41,-51 - 3526: -41,-54 - 3527: -36,-58 - 3528: -36,-60 - 3529: -36,-63 - 3530: -36,-64 - 3531: -36,-56 - 3532: -37,-56 - 3533: -41,-61 + 3414: 25,20 + 3415: 29,20 + 3416: 29,19 + 3417: 30,19 + 3418: 29,21 + 3419: -19,26 + 3420: -21,28 + 3421: -20,26 + 3422: -20,28 + 3423: -7,40 + 3424: 3,40 + 3425: -26,19 + 3426: -17,11 + 3427: -16,11 + 3428: -16,13 + 3429: -17,13 + 3430: -33,11 + 3431: -33,13 + 3432: -33,14 + 3433: -32,14 + 3434: -30,14 + 3435: -29,14 + 3436: -31,14 + 3437: -30,3 + 3438: -32,3 + 3439: -37,3 + 3440: -36,2 + 3441: -35,2 + 3442: -37,1 + 3443: -33,1 + 3444: -32,2 + 3445: -32,1 + 3446: -31,2 + 3447: -33,2 + 3448: -38,0 + 3449: -37,0 + 3450: -34,0 + 3451: -33,0 + 3452: -31,0 + 3453: -30,0 + 3454: -55,6 + 3455: -54,6 + 3456: -54,4 + 3457: -54,2 + 3458: -56,5 + 3459: -55,4 + 3460: -53,1 + 3461: -51,1 + 3462: -49,1 + 3463: -47,1 + 3464: -45,1 + 3465: -44,1 + 3466: -43,1 + 3467: -54,1 + 3468: -54,-4 + 3469: -55,-4 + 3470: -54,-8 + 3471: -54,-10 + 3472: -54,-12 + 3473: -54,-14 + 3474: -54,-16 + 3475: -54,-19 + 3476: -53,-21 + 3477: -51,-21 + 3478: -54,-21 + 3479: -54,-20 + 3480: -54,-18 + 3481: -48,-21 + 3482: -48,-23 + 3483: -48,-24 + 3484: -50,-25 + 3485: -47,-25 + 3486: -45,-25 + 3487: -45,-26 + 3488: -45,-29 + 3489: -44,-28 + 3490: -43,-28 + 3491: -45,-31 + 3492: -48,-32 + 3493: -49,-32 + 3494: -51,-32 + 3495: -51,-30 + 3496: -51,-28 + 3497: -51,-26 + 3498: -48,-33 + 3499: -54,-26 + 3500: -56,-25 + 3501: -55,-25 + 3502: -56,-26 + 3503: -57,-26 + 3504: -55,-26 + 3505: -56,-25 + 3506: -48,-36 + 3507: -48,-38 + 3508: -48,-40 + 3509: -48,-42 + 3510: -48,-44 + 3511: -48,-47 + 3512: -49,-47 + 3513: -51,-47 + 3514: -53,-47 + 3515: -54,-47 + 3516: -45,-47 + 3517: -45,-47 + 3518: -43,-47 + 3519: -41,-47 + 3520: -41,-47 + 3521: -41,-50 + 3522: -41,-51 + 3523: -41,-54 + 3524: -36,-58 + 3525: -36,-60 + 3526: -36,-63 + 3527: -36,-64 + 3528: -36,-56 + 3529: -37,-56 + 3530: -41,-61 + 3531: -42,-62 + 3532: -41,-64 + 3533: -41,-64 3534: -42,-62 - 3535: -41,-64 - 3536: -41,-64 - 3537: -42,-62 - 3538: -41,-48 - 3539: -53,-47 - 3540: -55,-47 - 3541: -55,-49 - 3542: -55,-52 - 3543: -55,-54 - 3544: -60,-58 - 3545: -60,-60 - 3546: -60,-62 - 3547: -60,-63 - 3548: -60,-64 - 3549: -58,-56 - 3550: -60,-56 - 3551: -55,-64 - 3552: -55,-62 - 3553: -54,-61 - 3554: -54,-63 - 3555: -54,-64 - 3556: -8,-28 - 3557: -7,-26 - 3558: -8,-27 - 3559: -8,-27 - 3560: 7,-22 - 3561: 5,-22 - 3562: 4,-23 - 3563: 4,-20 - 3564: 4,-19 - 3565: 7,-20 - 3566: 7,-21 - 3567: 7,-24 - 3568: 7,-25 - 3569: 10,-16 - 3570: 10,-18 - 3571: 10,-18 - 3572: 12,-29 - 3573: 12,-28 - 3574: 12,-26 - 3575: 13,-25 - 3576: 14,-25 - 3577: 14,-26 - 3578: 15,-25 - 3579: 16,-26 - 3580: 16,-29 - 3581: -4,-36 - 3582: -4,-37 - 3583: -6,-37 - 3584: 34,-2 - 3585: 33,-2 - 3586: 34,-3 - 3587: 32,-2 - 3588: 32,-3 - 3589: 31,-2 - 3590: 31,-3 - 3591: 31,-35 - 3592: 33,-35 - 3593: 32,-37 - 3594: 33,-36 - 3595: 33,-38 - 3596: 32,-36 - 3597: 31,-38 - 3598: 47,-36 - 3599: 47,-35 - 3600: 49,-35 - 3601: 49,-37 - 3602: 47,-37 - 3603: 47,-38 - 3604: 49,-38 - 3605: 47,-39 - 3606: 24,-29 - 3607: 26,-29 - 3608: 27,-29 - 3609: 28,-29 - 3610: 25,-34 - 3611: 27,-34 - 3612: 28,-34 - 3613: 26,-34 - 3614: 28,-43 - 3615: 29,-43 - 3616: 28,-45 - 3617: 29,-45 - 3618: 28,-46 - 3619: 29,-46 - 3620: 19,-46 - 3621: 18,-46 - 3622: 18,-47 - 3623: 19,-49 - 3624: 19,-49 - 3625: 18,-50 - 3626: 19,-50 - 3627: 18,-48 - 3628: 16,-48 - 3629: 14,-48 - 3630: 12,-47 - 3631: 10,-40 - 3632: 11,-39 - 3633: 11,-40 - 3634: 11,-40 - 3635: 8,-31 - 3636: 8,-31 - 3637: 5,-14 - 3638: 6,-14 - 3639: 6,-15 - 3640: 5,-15 - 3641: 4,-15 - 3642: 4,-15 - 3643: 25,7 - 3644: 20,16 - 3645: 20,18 - 3646: 15,26 - 3647: 14,26 - 3648: 13,26 - 3649: 13,26 - 3650: -44,10 - 3651: -45,10 - 3652: -46,10 - 3653: -47,10 - 3654: -49,10 - 3655: -50,10 - 3656: -50,12 - 3657: -47,12 - 3658: -48,1 - 3659: -47,1 - 3660: -48,-41 - 3661: -38,-56 - 3662: -38,-56 - 3663: -42,-57 - 3664: -55,-57 - 3796: -50,0 - 3797: -50,2 - 3798: -48,2 - 3799: -46,2 - 3800: -45,2 - 3801: -44,0 - 3802: -46,0 - 3803: -48,0 - 3835: -51,3 - 3836: -49,3 - 3837: -47,3 - 3838: -45,3 - 3839: -44,5 - 3840: -46,5 - 3841: -48,5 - 3842: -50,5 - 3843: -50,-1 - 3844: -49,-1 - 3845: -47,-1 - 3846: -46,-1 - 3847: -44,-1 - 3848: -44,-3 - 3849: -46,-3 - 3850: -47,-3 - 3851: -49,-3 - 3852: -50,-3 - 3853: -48,-3 - 3854: -46,-3 - 3855: -48,3 - 3856: -46,3 - 3936: -21,6 - 3937: -21,7 - 3938: -22,6 - 3939: -21,7 - 4136: 19,1 - 4137: 21,1 - 4138: 22,1 - 4139: 23,1 - 4140: 23,1 - 4210: 40,-22 - 4211: 41,-22 - 4212: 43,-22 - 4213: 44,-22 - 4272: 61,-25 - 4273: 62,-25 - 4274: 62,-26 - 4279: 68,-23 - 4302: 68,-15 - 4303: 68,-13 - 4304: 68,-14 - 4305: 67,-12 - 4306: 70,-12 + 3535: -41,-48 + 3536: -53,-47 + 3537: -55,-47 + 3538: -55,-49 + 3539: -55,-52 + 3540: -55,-54 + 3541: -60,-58 + 3542: -60,-60 + 3543: -60,-62 + 3544: -60,-63 + 3545: -60,-64 + 3546: -58,-56 + 3547: -60,-56 + 3548: -55,-64 + 3549: -55,-62 + 3550: -54,-61 + 3551: -54,-63 + 3552: -54,-64 + 3553: -8,-28 + 3554: -7,-26 + 3555: -8,-27 + 3556: -8,-27 + 3557: 7,-22 + 3558: 5,-22 + 3559: 4,-23 + 3560: 4,-20 + 3561: 4,-19 + 3562: 7,-20 + 3563: 7,-21 + 3564: 7,-24 + 3565: 7,-25 + 3566: 10,-16 + 3567: 10,-18 + 3568: 10,-18 + 3569: 12,-29 + 3570: 12,-28 + 3571: 12,-26 + 3572: 13,-25 + 3573: 14,-25 + 3574: 14,-26 + 3575: 15,-25 + 3576: 16,-26 + 3577: 16,-29 + 3578: -4,-36 + 3579: -4,-37 + 3580: -6,-37 + 3581: 34,-2 + 3582: 33,-2 + 3583: 34,-3 + 3584: 32,-2 + 3585: 32,-3 + 3586: 31,-2 + 3587: 31,-3 + 3588: 31,-35 + 3589: 33,-35 + 3590: 32,-37 + 3591: 33,-36 + 3592: 33,-38 + 3593: 32,-36 + 3594: 31,-38 + 3595: 47,-36 + 3596: 47,-35 + 3597: 49,-35 + 3598: 49,-37 + 3599: 47,-37 + 3600: 47,-38 + 3601: 49,-38 + 3602: 47,-39 + 3603: 24,-29 + 3604: 26,-29 + 3605: 27,-29 + 3606: 28,-29 + 3607: 25,-34 + 3608: 27,-34 + 3609: 28,-34 + 3610: 26,-34 + 3611: 28,-43 + 3612: 29,-43 + 3613: 28,-45 + 3614: 29,-45 + 3615: 28,-46 + 3616: 29,-46 + 3617: 19,-46 + 3618: 18,-46 + 3619: 18,-47 + 3620: 19,-49 + 3621: 19,-49 + 3622: 18,-50 + 3623: 19,-50 + 3624: 18,-48 + 3625: 16,-48 + 3626: 14,-48 + 3627: 12,-47 + 3628: 10,-40 + 3629: 11,-39 + 3630: 11,-40 + 3631: 11,-40 + 3632: 8,-31 + 3633: 8,-31 + 3634: 5,-14 + 3635: 6,-14 + 3636: 6,-15 + 3637: 5,-15 + 3638: 4,-15 + 3639: 4,-15 + 3640: 25,7 + 3641: 20,16 + 3642: 20,18 + 3643: 15,26 + 3644: 14,26 + 3645: 13,26 + 3646: 13,26 + 3647: -44,10 + 3648: -45,10 + 3649: -46,10 + 3650: -47,10 + 3651: -49,10 + 3652: -50,10 + 3653: -50,12 + 3654: -47,12 + 3655: -48,1 + 3656: -47,1 + 3657: -48,-41 + 3658: -38,-56 + 3659: -38,-56 + 3660: -42,-57 + 3661: -55,-57 + 3793: -50,0 + 3794: -50,2 + 3795: -48,2 + 3796: -46,2 + 3797: -45,2 + 3798: -44,0 + 3799: -46,0 + 3800: -48,0 + 3832: -51,3 + 3833: -49,3 + 3834: -47,3 + 3835: -45,3 + 3836: -44,5 + 3837: -46,5 + 3838: -48,5 + 3839: -50,5 + 3840: -50,-1 + 3841: -49,-1 + 3842: -47,-1 + 3843: -46,-1 + 3844: -44,-1 + 3845: -44,-3 + 3846: -46,-3 + 3847: -47,-3 + 3848: -49,-3 + 3849: -50,-3 + 3850: -48,-3 + 3851: -46,-3 + 3852: -48,3 + 3853: -46,3 + 3933: -21,6 + 3934: -21,7 + 3935: -22,6 + 3936: -21,7 + 4133: 19,1 + 4134: 21,1 + 4135: 22,1 + 4136: 23,1 + 4137: 23,1 + 4207: 40,-22 + 4208: 41,-22 + 4209: 43,-22 + 4210: 44,-22 + 4269: 61,-25 + 4270: 62,-25 + 4271: 62,-26 + 4276: 68,-23 + 4299: 68,-15 + 4300: 68,-13 + 4301: 68,-14 + 4302: 67,-12 + 4303: 70,-12 + 4304: 70,-14 + 4305: 68,-11 + 4306: 71,-12 4307: 70,-14 - 4308: 68,-11 - 4309: 71,-12 - 4310: 70,-14 - 4311: 70,-15 - 4312: 71,-13 - 4313: 69,-13 - 4314: 69,-12 - 4315: 68,-10 - 4316: 67,-10 - 4317: 68,-8 - 4318: 69,-8 - 4319: 70,-9 - 4320: 70,-10 - 4414: 39,-34 + 4308: 70,-15 + 4309: 71,-13 + 4310: 69,-13 + 4311: 69,-12 + 4312: 68,-10 + 4313: 67,-10 + 4314: 68,-8 + 4315: 69,-8 + 4316: 70,-9 + 4317: 70,-10 + 4411: 39,-34 + 4412: 40,-34 + 4413: 39,-34 + 4414: 42,-34 4415: 40,-34 - 4416: 39,-34 - 4417: 42,-34 - 4418: 40,-34 - 4419: 41,-33 - 4420: 34,-36 - 4421: 34,-35 - 4422: 35,-36 - 4423: 38,-37 - 4424: 43,-37 - 4425: 43,-37 - 4426: 46,-37 - 4427: 46,-35 - 4428: 46,-37 - 4429: 47,-37 - 4430: 48,-36 - 4431: 48,-37 - 4432: 46,-39 - 4433: 44,-39 - 4434: 41,-39 - 4435: 37,-39 - 4436: 35,-39 - 4437: 39,-38 - 4438: 33,-38 - 4742: -20,6 - 4743: -20,7 - 4744: -21,6 - 4745: -20,7 - 4746: -20,6 - 4747: -21,12 - 4748: -25,29 - 4749: -25,28 - 4750: -26,30 - 4751: -26,28 - 4752: -26,29 - 4776: -16,40 - 4777: -17,41 - 4778: -15,39 - 4779: -13,41 - 4780: -12,39 - 4831: -2,46 - 4832: -4,46 - 4833: -1,48 - 4834: 0,47 - 4835: -3,50 - 4836: 0,51 - 4837: 2,47 - 4838: 2,45 - 4839: 2,43 - 4840: 2,40 - 4841: -6,40 - 4842: -7,40 - 4843: -7,40 - 4844: -4,46 - 4845: -5,45 - 4846: -6,46 - 4847: 7,41 - 4848: 6,42 - 4849: 9,40 - 4850: 6,39 - 4851: 8,40 - 4852: 6,39 - 4853: 8,39 - 4854: 7,42 - 4855: 7,41 - 4856: 5,41 - 4887: 14,34 - 4888: 13,36 - 4889: 14,37 - 4890: 16,37 - 4891: 14,36 - 4892: 5,30 - 4893: 4,30 - 4894: 3,32 - 4895: 5,32 - 4896: 5,32 - 4897: 4,31 - 4898: 4,31 - 4899: 3,32 - 4900: 3,28 - 4901: 2,27 - 4902: 1,28 - 4903: 3,27 - 4904: 4,26 - 4905: 3,25 - 4906: 4,24 - 4907: 3,23 - 4908: 1,24 - 4909: 2,23 - 4927: -3,25 - 4928: -4,23 - 4929: -2,23 - 4930: -3,24 - 4931: 0,24 - 4932: 0,23 - 4933: -16,29 - 4934: -15,26 - 4935: -15,28 - 4936: -13,28 - 4937: -13,29 - 4938: -9,28 - 4939: -10,26 - 4940: -9,27 - 4941: -11,28 - 4942: -8,29 - 4943: -9,26 - 4944: -6,27 - 4945: -6,26 - 4946: -6,28 - 4947: -3,29 - 4948: -4,27 - 4949: -1,28 - 4950: -3,29 - 4951: -2,30 - 4952: -3,32 - 4953: -2,33 - 4954: -2,34 - 4955: -8,33 - 4956: -7,32 - 4957: -8,32 - 4958: -9,33 - 4959: -6,34 - 4960: -6,33 - 4961: -13,34 - 5029: -17,-28 - 5030: -19,-28 - 5031: -20,-27 - 5032: -20,-26 - 5033: -20,-27 - 5034: -15,-28 - 5035: -14,-28 - 5036: -14,-27 - 5037: -14,-29 - 5038: -17,-29 - 5103: -14,-38 - 5104: -14,-38 - 5122: -6,-37 - 5123: -5,-37 - 5124: -4,-37 - 5310: 78,-28 - 5311: 79,-28 - 5312: 78,-28 - 5313: 78,-27 - 5314: 78,-29 - 5379: 13,-45 - 5380: 12,-45 - 5381: 12,-50 - 5382: 12,-49 - 5383: 16,-49 - 5384: 15,-49 - 6219: 81,-34 - 6220: 82,-35 - 6221: 81,-35 - 6222: 81,-35 - 6248: -2,41 - 6249: -2,42 - 6250: -3,42 - 6251: -3,42 - 6252: -1,43 - 6274: 46,15 - 6275: 47,15 - 6276: 47,15 - 6277: 45,16 - 6490: 49,-1 - 6491: 51,-1 - 6492: 50,-2 - 6493: 49,-3 - 6494: 49,-5 - 6495: 51,-5 - 6496: 51,-3 - 6497: 50,-8 - 6498: 49,-8 - 6499: 48,-7 - 6500: 52,-8 - 6501: 54,-7 - 6502: 49,-10 - 6503: 50,-11 - 6504: 48,-11 - 6505: 51,-10 - 6506: 51,-11 - 6507: 52,-11 - 6508: 53,-11 - 6534: 50,2 - 6535: 50,4 - 6536: 50,9 - 6537: 50,12 - 6538: 50,13 - 6539: 47,9 - 6540: 47,7 - 6541: 41,8 - 6542: 41,7 - 6543: 40,8 - 6544: 40,7 - 6545: 44,8 - 6567: 46,4 - 6568: 45,4 - 6569: 46,2 - 6570: 45,2 - 6571: 45,1 - 6572: 46,5 - 6573: 40,5 - 6574: 44,4 - 6575: 44,7 - 6576: 55,3 - 6577: 54,2 - 6578: 53,3 - 6579: 55,4 - 6580: 57,4 - 6581: 56,2 - 6582: 55,1 - 6583: 55,6 - 6584: 53,7 - 6585: 53,6 - 6586: 55,8 - 6587: 56,10 - 6588: 55,10 - 6589: 53,12 - 6590: 53,11 - 6591: 57,14 - 6601: -1,-23 - 6602: 0,-23 - 6603: -4,-23 - 6604: -5,-23 - 6605: 35,19 - 6606: 34,19 - 6607: 35,20 - 6608: -8,27 - 6609: -12,27 - 6610: -10,27 - 6611: -14,27 - 6612: -15,27 - 6613: -15,27 - 6647: 88,-18 - 6648: 87,-18 - 6649: 91,-19 - 6650: 91,-18 - 6651: 92,-19 - 6733: 51,-36 - 6734: 51,-37 - 6735: 53,-39 - 6736: 54,-40 - 6737: 51,-35 - 6744: 51,-29 - 6750: 51,-26 - 6751: 52,-27 - 6752: 56,-27 - 6753: 56,-29 + 4416: 41,-33 + 4417: 34,-36 + 4418: 34,-35 + 4419: 35,-36 + 4420: 38,-37 + 4421: 43,-37 + 4422: 43,-37 + 4423: 46,-37 + 4424: 46,-35 + 4425: 46,-37 + 4426: 47,-37 + 4427: 48,-36 + 4428: 48,-37 + 4429: 46,-39 + 4430: 44,-39 + 4431: 41,-39 + 4432: 37,-39 + 4433: 35,-39 + 4434: 39,-38 + 4435: 33,-38 + 4735: -20,6 + 4736: -20,7 + 4737: -21,6 + 4738: -20,7 + 4739: -20,6 + 4740: -21,12 + 4741: -25,29 + 4742: -25,28 + 4743: -26,30 + 4744: -26,28 + 4745: -26,29 + 4769: -16,40 + 4770: -17,41 + 4771: -15,39 + 4772: -13,41 + 4773: -12,39 + 4824: -2,46 + 4825: -4,46 + 4826: -1,48 + 4827: 0,47 + 4828: -3,50 + 4829: 0,51 + 4830: 2,47 + 4831: 2,45 + 4832: 2,43 + 4833: 2,40 + 4834: -6,40 + 4835: -7,40 + 4836: -7,40 + 4837: -4,46 + 4838: -5,45 + 4839: -6,46 + 4840: 7,41 + 4841: 6,42 + 4842: 9,40 + 4843: 6,39 + 4844: 8,40 + 4845: 6,39 + 4846: 8,39 + 4847: 7,42 + 4848: 7,41 + 4849: 5,41 + 4880: 14,34 + 4881: 13,36 + 4882: 14,37 + 4883: 16,37 + 4884: 14,36 + 4885: 5,30 + 4886: 4,30 + 4887: 3,32 + 4888: 5,32 + 4889: 5,32 + 4890: 4,31 + 4891: 4,31 + 4892: 3,32 + 4893: 3,28 + 4894: 2,27 + 4895: 1,28 + 4896: 3,27 + 4897: 4,26 + 4898: 3,25 + 4899: 4,24 + 4900: 3,23 + 4901: 1,24 + 4902: 2,23 + 4920: -3,25 + 4921: -4,23 + 4922: -2,23 + 4923: -3,24 + 4924: 0,24 + 4925: 0,23 + 4926: -16,29 + 4927: -15,26 + 4928: -15,28 + 4929: -13,28 + 4930: -13,29 + 4931: -9,28 + 4932: -10,26 + 4933: -9,27 + 4934: -11,28 + 4935: -8,29 + 4936: -9,26 + 4937: -6,27 + 4938: -6,26 + 4939: -6,28 + 4940: -3,29 + 4941: -4,27 + 4942: -1,28 + 4943: -3,29 + 4944: -2,30 + 4945: -3,32 + 4946: -2,33 + 4947: -2,34 + 4948: -8,33 + 4949: -7,32 + 4950: -8,32 + 4951: -9,33 + 4952: -6,34 + 4953: -6,33 + 4954: -13,34 + 5022: -17,-28 + 5023: -19,-28 + 5024: -20,-27 + 5025: -20,-26 + 5026: -20,-27 + 5027: -15,-28 + 5028: -14,-28 + 5029: -14,-27 + 5030: -14,-29 + 5031: -17,-29 + 5096: -14,-38 + 5097: -14,-38 + 5115: -6,-37 + 5116: -5,-37 + 5117: -4,-37 + 5303: 78,-28 + 5304: 79,-28 + 5305: 78,-28 + 5306: 78,-27 + 5307: 78,-29 + 5372: 13,-45 + 5373: 12,-45 + 5374: 12,-50 + 5375: 12,-49 + 5376: 16,-49 + 5377: 15,-49 + 6208: 81,-34 + 6209: 82,-35 + 6210: 81,-35 + 6211: 81,-35 + 6237: -2,41 + 6238: -2,42 + 6239: -3,42 + 6240: -3,42 + 6241: -1,43 + 6263: 46,15 + 6264: 47,15 + 6265: 47,15 + 6266: 45,16 + 6479: 49,-1 + 6480: 51,-1 + 6481: 50,-2 + 6482: 49,-3 + 6483: 49,-5 + 6484: 51,-5 + 6485: 51,-3 + 6486: 50,-8 + 6487: 49,-8 + 6488: 48,-7 + 6489: 52,-8 + 6490: 54,-7 + 6491: 49,-10 + 6492: 50,-11 + 6493: 48,-11 + 6494: 51,-10 + 6495: 51,-11 + 6496: 52,-11 + 6497: 53,-11 + 6523: 50,2 + 6524: 50,4 + 6525: 50,9 + 6526: 50,12 + 6527: 50,13 + 6528: 47,9 + 6529: 47,7 + 6530: 41,8 + 6531: 41,7 + 6532: 40,8 + 6533: 40,7 + 6534: 44,8 + 6556: 46,4 + 6557: 45,4 + 6558: 46,2 + 6559: 45,2 + 6560: 45,1 + 6561: 46,5 + 6562: 40,5 + 6563: 44,4 + 6564: 44,7 + 6565: 55,3 + 6566: 54,2 + 6567: 53,3 + 6568: 55,4 + 6569: 57,4 + 6570: 56,2 + 6571: 55,1 + 6572: 55,6 + 6573: 53,7 + 6574: 53,6 + 6575: 55,8 + 6576: 56,10 + 6577: 55,10 + 6578: 53,12 + 6579: 53,11 + 6580: 57,14 + 6590: -1,-23 + 6591: 0,-23 + 6592: -4,-23 + 6593: -5,-23 + 6594: 35,19 + 6595: 34,19 + 6596: 35,20 + 6597: -8,27 + 6598: -12,27 + 6599: -10,27 + 6600: -14,27 + 6601: -15,27 + 6602: -15,27 + 6636: 88,-18 + 6637: 87,-18 + 6638: 91,-19 + 6639: 91,-18 + 6640: 92,-19 + 6722: 51,-36 + 6723: 51,-37 + 6724: 53,-39 + 6725: 54,-40 + 6726: 51,-35 + 6733: 51,-29 + 6739: 51,-26 + 6740: 52,-27 + 6741: 56,-27 + 6742: 56,-29 + 6758: -32,-12 + 6759: -34,-11 + 6760: -32,-10 + 6761: -33,-9 + 6762: -34,-9 + 6766: 61,-21 + 6767: -24,-42 + 6770: -25,-42 + 6771: -22,-42 + 6772: -22,-42 + 6779: -37,-45 + 6780: -38,-44 + 6781: -38,-46 + 6782: -37,-46 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3025: -44,17 - 6698: 13,-30 - 6699: 16,-30 - 6700: 12,-30 - 6701: 12,-30 + 3022: -44,17 + 6687: 13,-30 + 6688: 16,-30 + 6689: 12,-30 + 6690: 12,-30 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtLight decals: - 6673: 89,-21 - 6674: 90,-20 + 6662: 89,-21 + 6663: 90,-20 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 6592: 57,4 - 6593: 57,2 - 6594: 54,3 - 6595: 56,1 - 6596: 49,-15 - 6597: 52,-15 - 6598: 43,4 + 6581: 57,4 + 6582: 57,2 + 6583: 54,3 + 6584: 56,1 + 6585: 49,-15 + 6586: 52,-15 + 6587: 43,4 + 6778: -36,-44 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 3024: -44,16 + 3021: -44,16 - node: cleanable: True color: '#FFFFFF47' id: DirtMedium decals: - 6706: 11,-29 - 6707: 11,-29 + 6695: 11,-29 + 6696: 11,-29 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtMedium decals: - 6676: 91,-21 - 6677: 90,-21 + 6665: 91,-21 + 6666: 90,-21 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 3966: -16,11 - 3967: -17,12 - 6745: 52,-30 + 3963: -16,11 + 3964: -17,12 + 6734: 52,-30 + 6763: -32,-9 + 6764: -34,-12 + 6777: -36,-46 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtMedium decals: - 3023: -44,15 + 3020: -44,15 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 883: -47,-2 - 910: -50,-7 - 1945: 56,-22 + 880: -47,-2 + 907: -50,-7 + 1942: 56,-22 - node: color: '#FFFFFFFF' id: FlowersBRThree @@ -6376,246 +6399,246 @@ entities: color: '#FFFFFFFF' id: FlowersBRThree decals: - 3057: 80.70172,-6.173584 + 3054: 80.70172,-6.173584 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: 562: -24,6 - 881: -45,4 + 878: -45,4 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 914: -45,-7 - 935: -49,-29 - 1503: -51,-49 + 911: -45,-7 + 932: -49,-29 + 1500: -51,-49 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1113: 42,-31 + 1110: 42,-31 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 882: -49,-2 - 915: -51,-7 - 1504: -49,-49 + 879: -49,-2 + 912: -51,-7 + 1501: -49,-49 - node: cleanable: True color: '#FFFFFFFF' id: Flowerspv1 decals: - 3058: 80.04127,-7.0725327 + 3055: 80.04127,-7.0725327 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 540: -39,6 561: -24,4 - 912: -48,-9 - 1112: 42,-30 - 1751: 57,18 + 909: -48,-9 + 1109: 42,-30 + 1748: 57,18 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 1944: 55,-23 + 1941: 55,-23 - node: color: '#FFFFFFFF' id: Flowersy2 decals: 539: -38,5 - 913: -45,-9 - 936: -48,-30 - 1505: -46,-49 + 910: -45,-9 + 933: -48,-30 + 1502: -46,-49 - node: cleanable: True color: '#FFFFFFFF' id: Flowersy2 decals: - 3059: 81.08699,-7.6962934 + 3056: 81.08699,-7.6962934 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 880: -50,4 - 911: -47,-7 - 2267: 25,1 + 877: -50,4 + 908: -47,-7 + 2264: 25,1 - node: color: '#FFFFFFFF' id: Flowersy4 decals: 542: -28,7 - 1733: 59,19 + 1730: 59,19 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 6253: 43,13 + 6242: 43,13 - node: cleanable: True color: '#FFFFFFFF' id: Grassa2 decals: - 3047: 80,-6 + 3044: 80,-6 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 902: -51,-7 + 899: -51,-7 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 1497: -47,-49 - 1951: 53.52114,-21.634073 + 1494: -47,-49 + 1948: 53.52114,-21.634073 - node: cleanable: True color: '#FFFFFFFF' id: Grassa4 decals: - 3046: 80,-8 + 3043: 80,-8 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 901: -49,-7 - 1498: -45,-49 - 1952: 57.536766,-22.899698 + 898: -49,-7 + 1495: -45,-49 + 1949: 57.536766,-22.899698 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 905: -45,-8 + 902: -45,-8 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 940: -49,-28 - 1734: 60,19 + 937: -49,-28 + 1731: 60,19 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 903: -51,-8 - 904: -45,-7 + 900: -51,-8 + 901: -45,-7 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 900: -48,-9 - 1496: -50,-49 - 1950: 54.661766,-23.446573 + 897: -48,-9 + 1493: -50,-49 + 1947: 54.661766,-23.446573 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 906: -50,-9 + 903: -50,-9 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 899: -46,-8 + 896: -46,-8 - node: cleanable: True color: '#FFFFFFFF' id: Grassc1 decals: - 3049: 79.637665,-6.118546 + 3046: 79.637665,-6.118546 - node: color: '#FFFFFFFF' id: Grassc2 decals: - 898: -47,-7 + 895: -47,-7 - node: cleanable: True color: '#FFFFFFFF' id: Grassc2 decals: - 3050: 81.362175,-7.1642623 + 3047: 81.362175,-7.1642623 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 896: -51,-9 - 897: -49,-8 + 893: -51,-9 + 894: -49,-8 - node: cleanable: True color: '#FFFFFFFF' id: Grassc4 decals: - 3048: 79.56428,-7.366067 + 3045: 79.56428,-7.366067 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 892: -50,-8 - 895: -47,-9 + 889: -50,-8 + 892: -47,-9 - node: cleanable: True color: '#FFFFFFFF' id: Grassd1 decals: - 3051: 79.14232,-8.063211 + 3048: 79.14232,-8.063211 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 894: -45,-9 - 1954: 53.52114,-22.368448 + 891: -45,-9 + 1951: 53.52114,-22.368448 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 893: -48,-7 - 938: -48,-27 - 1955: 57.73989,-21.884073 + 890: -48,-7 + 935: -48,-27 + 1952: 57.73989,-21.884073 - node: cleanable: True color: '#FFFFFFFF' id: Grassd3 decals: - 3052: 79.05059,-6.320351 - 3053: 80.53661,-6.6872687 + 3049: 79.05059,-6.320351 + 3050: 80.53661,-6.6872687 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 891: -46,-7 - 939: -47,-28 + 888: -46,-7 + 936: -47,-28 - node: cleanable: True color: '#FFFFFFFF' id: Grasse1 decals: - 3056: 81.784134,-6.4304266 + 3053: 81.784134,-6.4304266 - node: cleanable: True color: '#FFFFFFFF' id: Grasse2 decals: - 3054: 80.518265,-8.02652 + 3051: 80.518265,-8.02652 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 890: -50,-7 - 937: -47,-30 - 1752: 57,19 - 1953: 55.95864,-23.352823 + 887: -50,-7 + 934: -47,-30 + 1749: 57,19 + 1950: 55.95864,-23.352823 - node: cleanable: True color: '#FFFFFFFF' id: Grasse3 decals: - 3055: 80.72007,-6.0451627 + 3052: 80.72007,-6.0451627 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 6323: 44,7 + 6312: 44,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -6627,8 +6650,8 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 1192: 4,30 - 1193: 5,30 + 1189: 4,30 + 1190: 5,30 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -6640,29 +6663,29 @@ entities: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 1028: 39,-35 - 1029: 36,-36 - 1030: 37,-36 - 1031: 38,-36 - 1032: 39,-36 - 1033: 40,-36 - 1034: 42,-36 - 1035: 41,-36 - 1036: 43,-36 - 1037: 44,-36 - 1040: 38,-35 - 1041: 37,-35 - 1042: 36,-35 - 1043: 41,-35 - 1044: 40,-35 - 1045: 42,-35 - 1046: 43,-35 - 1047: 44,-35 + 1025: 39,-35 + 1026: 36,-36 + 1027: 37,-36 + 1028: 38,-36 + 1029: 39,-36 + 1030: 40,-36 + 1031: 42,-36 + 1032: 41,-36 + 1033: 43,-36 + 1034: 44,-36 + 1037: 38,-35 + 1038: 37,-35 + 1039: 36,-35 + 1040: 41,-35 + 1041: 40,-35 + 1042: 42,-35 + 1043: 43,-35 + 1044: 44,-35 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 6324: 44,9 + 6313: 44,9 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -6673,8 +6696,8 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 1194: 4,32 - 1195: 5,32 + 1191: 4,32 + 1192: 5,32 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -6686,12 +6709,12 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 6325: 45,8 + 6314: 45,8 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 1191: 6,31 + 1188: 6,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -6701,7 +6724,7 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 6326: 43,8 + 6315: 43,8 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -6716,7 +6739,7 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 1190: 3,31 + 1187: 3,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 @@ -6747,62 +6770,62 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 6665: 89,-20 - 6666: 90,-20 + 6654: 89,-20 + 6655: 90,-20 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1796: 58,-24 - 1797: 58,-23 - 2200: -4,-36 - 2218: -56,-59 - 2219: -56,-66 + 1793: 58,-24 + 1794: 58,-23 + 2197: -4,-36 + 2215: -56,-59 + 2216: -56,-66 - node: color: '#FFFFFFFF' id: LoadingArea decals: 352: 39,-22 - 3186: 25,22 - 3187: 29,22 - 6232: -44,24 + 3183: 25,22 + 3184: 29,22 + 6221: -44,24 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 2234: -40,-59 - 2235: -40,-66 - 6233: -45,23 + 2231: -40,-59 + 2232: -40,-66 + 6222: -45,23 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: 351: 45,-22 - 1777: 63,-26 - 6234: -44,22 + 1774: 63,-26 + 6223: -44,22 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1276: 23,12 - 6235: -43,23 + 1273: 23,12 + 6224: -43,23 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay decals: - 2252: 13,25 - 2253: 14,25 - 2254: 15,25 - 2255: 15,24 - 2256: 15,23 - 2257: 14,23 - 2258: 14,24 - 2259: 13,24 - 2260: 13,23 + 2249: 13,25 + 2250: 14,25 + 2251: 15,25 + 2252: 15,24 + 2253: 15,23 + 2254: 14,23 + 2255: 14,24 + 2256: 13,24 + 2257: 13,23 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN @@ -6817,7 +6840,7 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 3293: -19,20 + 3290: -19,20 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS @@ -6832,790 +6855,790 @@ entities: color: '#9D9D97FF' id: MiniTileWhiteCornerNe decals: - 2438: -43,-25 - 2524: -40,-46 + 2435: -43,-25 + 2521: -40,-46 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerNw decals: - 2338: -26,-9 - 2382: -55,7 - 2523: -56,-46 - 2624: 27,-19 - 2834: -27,21 + 2335: -26,-9 + 2379: -55,7 + 2520: -56,-46 + 2621: 27,-19 + 2831: -27,21 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerSe decals: - 2326: -23,-11 - 2450: -46,-33 - 2454: -43,-32 + 2323: -23,-11 + 2447: -46,-33 + 2451: -43,-32 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerSw decals: - 2446: -52,-32 - 2449: -50,-33 - 2600: 7,-34 - 2704: 40,1 - 2733: 19,2 + 2443: -52,-32 + 2446: -50,-33 + 2597: 7,-34 + 2701: 40,1 + 2730: 19,2 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerNe decals: - 2301: -23,-30 - 2350: -25,9 - 2439: -44,-25 - 2569: -28,-30 - 2852: 77,-19 - 2853: 77,-15 + 2298: -23,-30 + 2347: -25,9 + 2436: -44,-25 + 2566: -28,-30 + 2849: 77,-19 + 2850: 77,-15 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerNw decals: - 2339: -25,-9 - 2568: -41,-30 - 2616: 27,-25 - 2668: 57,-19 + 2336: -25,-9 + 2565: -41,-30 + 2613: 27,-25 + 2665: 57,-19 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerSe decals: - 2325: -24,-11 - 2451: -46,-32 - 2457: -47,-33 - 2522: -54,-48 - 2567: -28,-27 - 2672: 59,-21 - 2850: 77,-13 - 2851: 77,-17 + 2322: -24,-11 + 2448: -46,-32 + 2454: -47,-33 + 2519: -54,-48 + 2564: -28,-27 + 2669: 59,-21 + 2847: 77,-13 + 2848: 77,-17 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerSw decals: - 2448: -50,-32 - 2458: -49,-33 - 2521: -42,-48 - 2566: -41,-27 - 2598: 7,-32 - 2677: 52,-21 - 2703: 41,1 - 2705: 40,2 - 2773: 19,19 + 2445: -50,-32 + 2455: -49,-33 + 2518: -42,-48 + 2563: -41,-27 + 2595: 7,-32 + 2674: 52,-21 + 2700: 41,1 + 2702: 40,2 + 2770: 19,19 - node: color: '#9D9D97FF' id: MiniTileWhiteLineE decals: - 2302: -23,-29 - 2303: -24,-25 - 2304: -24,-24 - 2305: -24,-23 - 2306: -24,-23 - 2307: -24,-20 - 2308: -24,-20 + 2299: -23,-29 + 2300: -24,-25 + 2301: -24,-24 + 2302: -24,-23 + 2303: -24,-23 + 2304: -24,-20 + 2305: -24,-20 + 2306: -24,-20 + 2307: -24,-21 + 2308: -24,-21 2309: -24,-20 - 2310: -24,-21 - 2311: -24,-21 - 2312: -24,-20 - 2313: -24,-19 - 2314: -24,-19 - 2315: -24,-19 - 2316: -24,-17 - 2317: -24,-17 - 2318: -24,-16 - 2319: -24,-16 - 2320: -24,-16 - 2321: -24,-15 - 2322: -24,-14 - 2323: -24,-14 - 2324: -24,-13 - 2327: -23,-10 - 2328: -23,-9 - 2329: -23,-8 - 2340: -25,4 - 2341: -25,5 - 2342: -25,6 - 2343: -25,7 - 2355: -43,0 - 2356: -43,1 - 2357: -43,2 - 2358: -43,3 - 2359: -43,-1 - 2398: -53,-6 - 2399: -53,-7 - 2400: -53,-7 - 2401: -53,-8 - 2402: -53,-9 - 2403: -53,-9 - 2404: -53,-10 - 2405: -53,-12 - 2413: -53,-13 - 2414: -53,-13 - 2415: -53,-15 - 2416: -53,-15 - 2417: -53,-15 - 2419: -53,-14 - 2420: -53,-16 - 2421: -53,-17 - 2422: -53,-18 - 2428: -44,-20 - 2429: -44,-21 - 2430: -44,-22 - 2431: -44,-22 - 2432: -44,-23 - 2433: -44,-23 - 2434: -44,-24 - 2435: -43,-25 - 2436: -43,-26 - 2437: -43,-27 - 2455: -43,-31 - 2456: -43,-30 - 2461: -47,-35 - 2462: -47,-36 - 2463: -47,-36 - 2464: -47,-38 - 2465: -47,-39 - 2466: -47,-40 - 2477: -47,-41 - 2478: -47,-42 - 2479: -47,-42 - 2480: -47,-43 - 2481: -47,-44 - 2482: -47,-44 - 2533: -40,-47 - 2534: -40,-48 - 2535: -40,-50 - 2536: -40,-50 - 2537: -40,-51 - 2538: -40,-51 - 2539: -40,-51 - 2540: -40,-52 - 2541: -40,-53 - 2542: -40,-53 - 2543: -40,-53 - 2544: -40,-54 - 2545: -54,-51 - 2546: -54,-51 - 2547: -54,-52 - 2548: -54,-52 - 2549: -54,-53 - 2550: -54,-53 - 2551: -54,-54 - 2562: -28,-29 - 2563: -28,-28 - 2673: 59,-22 - 2678: 43,-17 - 2679: 43,-16 - 2680: 43,-15 - 2681: 43,-15 - 2687: 43,-12 - 2688: 43,-11 - 2753: 21,10 - 2754: 21,11 - 2755: 21,11 - 2756: 21,12 - 2757: 21,12 - 2758: 21,12 - 2759: 21,13 - 2760: 21,14 - 2761: 21,15 - 2848: 77,-14 - 2849: 77,-18 - 3185: -54,-50 + 2310: -24,-19 + 2311: -24,-19 + 2312: -24,-19 + 2313: -24,-17 + 2314: -24,-17 + 2315: -24,-16 + 2316: -24,-16 + 2317: -24,-16 + 2318: -24,-15 + 2319: -24,-14 + 2320: -24,-14 + 2321: -24,-13 + 2324: -23,-10 + 2325: -23,-9 + 2326: -23,-8 + 2337: -25,4 + 2338: -25,5 + 2339: -25,6 + 2340: -25,7 + 2352: -43,0 + 2353: -43,1 + 2354: -43,2 + 2355: -43,3 + 2356: -43,-1 + 2395: -53,-6 + 2396: -53,-7 + 2397: -53,-7 + 2398: -53,-8 + 2399: -53,-9 + 2400: -53,-9 + 2401: -53,-10 + 2402: -53,-12 + 2410: -53,-13 + 2411: -53,-13 + 2412: -53,-15 + 2413: -53,-15 + 2414: -53,-15 + 2416: -53,-14 + 2417: -53,-16 + 2418: -53,-17 + 2419: -53,-18 + 2425: -44,-20 + 2426: -44,-21 + 2427: -44,-22 + 2428: -44,-22 + 2429: -44,-23 + 2430: -44,-23 + 2431: -44,-24 + 2432: -43,-25 + 2433: -43,-26 + 2434: -43,-27 + 2452: -43,-31 + 2453: -43,-30 + 2458: -47,-35 + 2459: -47,-36 + 2460: -47,-36 + 2461: -47,-38 + 2462: -47,-39 + 2463: -47,-40 + 2474: -47,-41 + 2475: -47,-42 + 2476: -47,-42 + 2477: -47,-43 + 2478: -47,-44 + 2479: -47,-44 + 2530: -40,-47 + 2531: -40,-48 + 2532: -40,-50 + 2533: -40,-50 + 2534: -40,-51 + 2535: -40,-51 + 2536: -40,-51 + 2537: -40,-52 + 2538: -40,-53 + 2539: -40,-53 + 2540: -40,-53 + 2541: -40,-54 + 2542: -54,-51 + 2543: -54,-51 + 2544: -54,-52 + 2545: -54,-52 + 2546: -54,-53 + 2547: -54,-53 + 2548: -54,-54 + 2559: -28,-29 + 2560: -28,-28 + 2670: 59,-22 + 2675: 43,-17 + 2676: 43,-16 + 2677: 43,-15 + 2678: 43,-15 + 2684: 43,-12 + 2685: 43,-11 + 2750: 21,10 + 2751: 21,11 + 2752: 21,11 + 2753: 21,12 + 2754: 21,12 + 2755: 21,12 + 2756: 21,13 + 2757: 21,14 + 2758: 21,15 + 2845: 77,-14 + 2846: 77,-18 + 3182: -54,-50 - node: color: '#9D9D97FF' id: MiniTileWhiteLineN decals: - 2295: -22,-30 - 2296: -21,-30 - 2297: -20,-30 - 2298: -20,-30 - 2299: -18,-30 - 2300: -19,-30 - 2344: -19,9 - 2345: -20,9 - 2346: -21,9 - 2347: -22,9 - 2348: -24,9 - 2349: -23,9 - 2369: -51,7 - 2370: -50,7 - 2371: -49,7 - 2372: -48,7 - 2373: -47,7 - 2374: -47,7 - 2375: -46,7 - 2376: -45,7 - 2377: -42,7 - 2378: -43,7 - 2379: -54,7 - 2380: -55,7 - 2381: -53,7 - 2483: -54,-46 + 2292: -22,-30 + 2293: -21,-30 + 2294: -20,-30 + 2295: -20,-30 + 2296: -18,-30 + 2297: -19,-30 + 2341: -19,9 + 2342: -20,9 + 2343: -21,9 + 2344: -22,9 + 2345: -24,9 + 2346: -23,9 + 2366: -51,7 + 2367: -50,7 + 2368: -49,7 + 2369: -48,7 + 2370: -47,7 + 2371: -47,7 + 2372: -46,7 + 2373: -45,7 + 2374: -42,7 + 2375: -43,7 + 2376: -54,7 + 2377: -55,7 + 2378: -53,7 + 2480: -54,-46 + 2481: -51,-46 + 2482: -50,-46 + 2483: -50,-46 2484: -51,-46 - 2485: -50,-46 - 2486: -50,-46 - 2487: -51,-46 + 2485: -53,-46 + 2486: -54,-46 + 2487: -54,-46 2488: -53,-46 - 2489: -54,-46 + 2489: -52,-46 2490: -54,-46 - 2491: -53,-46 - 2492: -52,-46 - 2493: -54,-46 - 2494: -55,-46 - 2495: -46,-46 - 2496: -45,-46 - 2497: -45,-46 - 2498: -44,-46 - 2499: -44,-46 - 2500: -43,-46 - 2501: -43,-46 - 2502: -42,-46 - 2503: -42,-46 - 2504: -41,-46 - 2588: -11,-30 - 2589: -10,-30 - 2590: -10,-30 - 2614: 25,-25 - 2615: 26,-25 - 2625: 28,-19 - 2626: 29,-19 - 2627: 29,-19 - 2628: 31,-19 - 2629: 31,-19 - 2630: 32,-19 - 2631: 32,-19 - 2632: 32,-19 - 2633: 34,-19 - 2634: 34,-19 - 2635: 34,-19 - 2636: 33,-19 - 2637: 35,-19 - 2638: 35,-19 - 2639: 36,-19 - 2640: 36,-19 - 2641: 37,-19 - 2642: 37,-19 - 2643: 39,-19 - 2644: 39,-19 - 2645: 40,-19 - 2646: 40,-19 - 2647: 40,-19 - 2648: 41,-19 - 2649: 42,-19 - 2650: 42,-19 - 2651: 43,-19 - 2652: 44,-19 - 2653: 44,-19 - 2654: 45,-19 - 2655: 47,-19 - 2656: 47,-19 - 2657: 48,-19 - 2658: 49,-19 - 2659: 49,-19 - 2660: 50,-19 - 2661: 51,-19 - 2662: 52,-19 - 2663: 52,-19 - 2664: 54,-19 - 2665: 55,-19 - 2666: 56,-19 - 2667: 53,-19 - 2710: 37,4 - 2711: 35,4 - 2712: 34,4 - 2713: 33,4 - 2714: 32,4 - 2715: 32,4 - 2716: 31,4 - 2776: 20,21 - 2777: 19,21 - 2778: 19,21 - 2779: 18,21 + 2491: -55,-46 + 2492: -46,-46 + 2493: -45,-46 + 2494: -45,-46 + 2495: -44,-46 + 2496: -44,-46 + 2497: -43,-46 + 2498: -43,-46 + 2499: -42,-46 + 2500: -42,-46 + 2501: -41,-46 + 2585: -11,-30 + 2586: -10,-30 + 2587: -10,-30 + 2611: 25,-25 + 2612: 26,-25 + 2622: 28,-19 + 2623: 29,-19 + 2624: 29,-19 + 2625: 31,-19 + 2626: 31,-19 + 2627: 32,-19 + 2628: 32,-19 + 2629: 32,-19 + 2630: 34,-19 + 2631: 34,-19 + 2632: 34,-19 + 2633: 33,-19 + 2634: 35,-19 + 2635: 35,-19 + 2636: 36,-19 + 2637: 36,-19 + 2638: 37,-19 + 2639: 37,-19 + 2640: 39,-19 + 2641: 39,-19 + 2642: 40,-19 + 2643: 40,-19 + 2644: 40,-19 + 2645: 41,-19 + 2646: 42,-19 + 2647: 42,-19 + 2648: 43,-19 + 2649: 44,-19 + 2650: 44,-19 + 2651: 45,-19 + 2652: 47,-19 + 2653: 47,-19 + 2654: 48,-19 + 2655: 49,-19 + 2656: 49,-19 + 2657: 50,-19 + 2658: 51,-19 + 2659: 52,-19 + 2660: 52,-19 + 2661: 54,-19 + 2662: 55,-19 + 2663: 56,-19 + 2664: 53,-19 + 2707: 37,4 + 2708: 35,4 + 2709: 34,4 + 2710: 33,4 + 2711: 32,4 + 2712: 32,4 + 2713: 31,4 + 2773: 20,21 + 2774: 19,21 + 2775: 19,21 + 2776: 18,21 + 2777: 16,21 + 2778: 16,21 + 2779: 16,21 2780: 16,21 - 2781: 16,21 - 2782: 16,21 - 2783: 16,21 - 2784: 15,21 - 2785: 13,21 - 2786: 13,21 - 2787: 12,21 - 2788: 11,21 - 2789: 10,21 - 2790: 10,21 - 2791: 9,21 - 2792: 8,21 - 2831: -26,21 - 2841: 66,-17 - 2842: 68,-17 - 2843: 67,-17 - 2844: 69,-17 - 2845: 70,-17 - 2846: 70,-17 - 2847: 71,-17 + 2781: 15,21 + 2782: 13,21 + 2783: 13,21 + 2784: 12,21 + 2785: 11,21 + 2786: 10,21 + 2787: 10,21 + 2788: 9,21 + 2789: 8,21 + 2828: -26,21 + 2838: 66,-17 + 2839: 68,-17 + 2840: 67,-17 + 2841: 69,-17 + 2842: 70,-17 + 2843: 70,-17 + 2844: 71,-17 - node: color: '#9D9D97FF' id: MiniTileWhiteLineS decals: - 2285: -25,-32 - 2286: -23,-32 - 2287: -24,-32 - 2288: -22,-32 - 2289: -22,-32 - 2290: -21,-32 - 2291: -19,-32 - 2292: -19,-32 - 2293: -18,-32 - 2294: -18,-32 - 2360: -45,-5 - 2361: -46,-5 - 2362: -47,-5 - 2363: -48,-5 - 2364: -48,-5 - 2365: -50,-5 - 2366: -50,-5 - 2367: -49,-5 - 2368: -51,-5 - 2447: -51,-32 - 2452: -45,-32 - 2453: -44,-32 - 2505: -53,-48 - 2506: -52,-48 - 2507: -51,-48 + 2282: -25,-32 + 2283: -23,-32 + 2284: -24,-32 + 2285: -22,-32 + 2286: -22,-32 + 2287: -21,-32 + 2288: -19,-32 + 2289: -19,-32 + 2290: -18,-32 + 2291: -18,-32 + 2357: -45,-5 + 2358: -46,-5 + 2359: -47,-5 + 2360: -48,-5 + 2361: -48,-5 + 2362: -50,-5 + 2363: -50,-5 + 2364: -49,-5 + 2365: -51,-5 + 2444: -51,-32 + 2449: -45,-32 + 2450: -44,-32 + 2502: -53,-48 + 2503: -52,-48 + 2504: -51,-48 + 2505: -50,-48 + 2506: -50,-48 + 2507: -49,-48 2508: -50,-48 2509: -50,-48 - 2510: -49,-48 - 2511: -50,-48 - 2512: -50,-48 - 2513: -48,-48 - 2514: -48,-48 - 2515: -47,-48 - 2516: -47,-48 - 2517: -46,-48 - 2518: -45,-48 - 2519: -44,-48 - 2520: -43,-48 - 2570: -16,-32 - 2571: -14,-32 + 2510: -48,-48 + 2511: -48,-48 + 2512: -47,-48 + 2513: -47,-48 + 2514: -46,-48 + 2515: -45,-48 + 2516: -44,-48 + 2517: -43,-48 + 2567: -16,-32 + 2568: -14,-32 + 2569: -14,-32 + 2570: -14,-32 + 2571: -15,-32 2572: -14,-32 2573: -14,-32 - 2574: -15,-32 - 2575: -14,-32 - 2576: -14,-32 - 2577: -13,-32 - 2578: -12,-32 - 2579: -12,-32 - 2580: -11,-32 - 2581: -11,-32 - 2582: -10,-32 - 2583: -10,-32 - 2584: -7,-32 - 2585: -6,-32 - 2586: -5,-32 - 2587: -5,-32 - 2591: -4,-32 - 2592: -3,-32 - 2593: -3,-32 - 2594: -3,-32 - 2595: -2,-32 - 2596: 3,-32 - 2597: 6,-32 - 2601: 8,-34 - 2602: 9,-34 - 2603: 9,-34 - 2604: 11,-34 - 2605: 11,-34 - 2606: 12,-34 - 2607: 12,-34 - 2608: 13,-34 - 2609: 13,-34 - 2610: 14,-34 - 2611: 15,-34 - 2612: 15,-34 - 2613: 16,-34 - 2671: 60,-21 + 2574: -13,-32 + 2575: -12,-32 + 2576: -12,-32 + 2577: -11,-32 + 2578: -11,-32 + 2579: -10,-32 + 2580: -10,-32 + 2581: -7,-32 + 2582: -6,-32 + 2583: -5,-32 + 2584: -5,-32 + 2588: -4,-32 + 2589: -3,-32 + 2590: -3,-32 + 2591: -3,-32 + 2592: -2,-32 + 2593: 3,-32 + 2594: 6,-32 + 2598: 8,-34 + 2599: 9,-34 + 2600: 9,-34 + 2601: 11,-34 + 2602: 11,-34 + 2603: 12,-34 + 2604: 12,-34 + 2605: 13,-34 + 2606: 13,-34 + 2607: 14,-34 + 2608: 15,-34 + 2609: 15,-34 + 2610: 16,-34 + 2668: 60,-21 + 2703: 38,2 + 2704: 36,2 + 2705: 37,2 2706: 38,2 - 2707: 36,2 - 2708: 37,2 - 2709: 38,2 - 2717: 34,2 - 2718: 33,2 - 2719: 32,2 - 2720: 31,2 - 2721: 31,2 - 2722: 27,2 - 2723: 26,2 - 2724: 26,2 - 2725: 25,2 - 2726: 24,2 - 2727: 23,2 - 2728: 23,2 - 2729: 21,2 - 2730: 21,2 - 2731: 22,2 - 2732: 20,2 - 2774: 18,19 - 2775: 16,19 - 2793: 14,19 - 2794: 13,19 - 2795: 12,19 - 2796: 11,19 - 2797: 10,19 - 2798: 10,19 - 2799: 9,19 - 2800: 9,19 - 2801: 8,19 - 2802: 6,19 - 2803: 6,19 - 2804: 7,19 - 2805: 5,19 - 2806: 0,19 - 2807: 0,19 - 2808: -1,19 - 2809: -1,19 - 2810: -2,19 - 2811: -3,19 - 2812: -3,19 - 2813: -4,19 - 2814: -5,19 - 2815: -6,19 - 2816: -6,19 - 2817: -7,19 - 2818: -7,19 - 2819: -8,19 - 2820: -8,19 - 2821: -8,19 - 2822: -11,19 - 2823: -11,19 - 2824: -13,19 - 2825: -13,19 - 2826: -14,19 - 2827: -12,19 - 2828: -16,19 - 2829: -16,19 - 2830: -18,19 - 2835: 66,-19 - 2836: 67,-19 - 2837: 68,-19 - 2838: 69,-19 - 2839: 70,-19 - 2840: 71,-19 - 3082: 1,19 - 3083: 2,19 + 2714: 34,2 + 2715: 33,2 + 2716: 32,2 + 2717: 31,2 + 2718: 31,2 + 2719: 27,2 + 2720: 26,2 + 2721: 26,2 + 2722: 25,2 + 2723: 24,2 + 2724: 23,2 + 2725: 23,2 + 2726: 21,2 + 2727: 21,2 + 2728: 22,2 + 2729: 20,2 + 2771: 18,19 + 2772: 16,19 + 2790: 14,19 + 2791: 13,19 + 2792: 12,19 + 2793: 11,19 + 2794: 10,19 + 2795: 10,19 + 2796: 9,19 + 2797: 9,19 + 2798: 8,19 + 2799: 6,19 + 2800: 6,19 + 2801: 7,19 + 2802: 5,19 + 2803: 0,19 + 2804: 0,19 + 2805: -1,19 + 2806: -1,19 + 2807: -2,19 + 2808: -3,19 + 2809: -3,19 + 2810: -4,19 + 2811: -5,19 + 2812: -6,19 + 2813: -6,19 + 2814: -7,19 + 2815: -7,19 + 2816: -8,19 + 2817: -8,19 + 2818: -8,19 + 2819: -11,19 + 2820: -11,19 + 2821: -13,19 + 2822: -13,19 + 2823: -14,19 + 2824: -12,19 + 2825: -16,19 + 2826: -16,19 + 2827: -18,19 + 2832: 66,-19 + 2833: 67,-19 + 2834: 68,-19 + 2835: 69,-19 + 2836: 70,-19 + 2837: 71,-19 + 3079: 1,19 + 3080: 2,19 - node: color: '#9D9D97FF' id: MiniTileWhiteLineW decals: - 2268: -26,-21 - 2269: -26,-20 - 2270: -26,-18 - 2271: -26,-19 - 2272: -26,-17 - 2277: -26,-25 - 2278: -26,-24 - 2279: -26,-27 - 2280: -26,-26 - 2281: -26,-28 - 2282: -26,-29 - 2283: -26,-30 - 2284: -26,-31 - 2330: -25,-8 - 2331: -26,-10 - 2332: -26,-11 - 2333: -26,-16 - 2334: -26,-15 - 2335: -26,-15 - 2336: -26,-14 - 2337: -26,-13 - 2351: -27,7 - 2352: -27,8 - 2353: -27,6 - 2354: -27,5 - 2383: -55,5 - 2384: -55,3 - 2385: -55,2 - 2386: -55,1 - 2387: -55,0 - 2388: -55,-1 - 2389: -55,-3 - 2390: -55,-6 - 2391: -55,-6 - 2392: -55,-7 - 2393: -55,-7 - 2394: -55,-8 - 2395: -55,-9 - 2396: -55,-9 - 2397: -55,-11 - 2406: -55,-10 - 2407: -55,-11 - 2408: -55,-12 - 2409: -55,-13 - 2410: -55,-13 - 2411: -55,-15 - 2412: -55,-15 - 2418: -55,-14 - 2423: -55,-16 - 2424: -55,-17 - 2425: -55,-18 - 2426: -55,-20 - 2427: -55,-21 - 2440: -52,-28 - 2441: -52,-29 - 2442: -52,-30 - 2443: -52,-30 - 2444: -52,-31 - 2445: -52,-32 - 2459: -49,-35 - 2460: -49,-36 - 2467: -49,-38 - 2468: -49,-38 - 2469: -49,-39 - 2470: -49,-40 - 2471: -49,-40 - 2472: -49,-41 - 2473: -49,-42 - 2474: -49,-43 - 2475: -49,-43 - 2476: -49,-44 - 2525: -42,-50 - 2526: -42,-50 - 2527: -42,-51 - 2528: -42,-51 - 2529: -42,-52 - 2530: -42,-52 - 2531: -42,-53 - 2532: -42,-54 - 2552: -56,-54 - 2553: -56,-53 - 2554: -56,-52 - 2555: -56,-52 - 2556: -56,-51 - 2557: -56,-51 - 2558: -56,-48 - 2559: -56,-48 - 2560: -56,-47 - 2561: -56,-50 - 2564: -41,-29 - 2565: -41,-28 - 2599: 7,-33 - 2617: 27,-23 - 2618: 27,-23 - 2619: 27,-23 - 2620: 27,-22 - 2621: 27,-24 - 2622: 27,-21 - 2623: 27,-20 - 2669: 57,-18 - 2670: 57,-17 - 2674: 52,-24 - 2675: 52,-23 - 2676: 52,-22 - 2682: 41,-17 - 2683: 41,-16 - 2684: 41,-15 - 2685: 41,-12 - 2686: 41,-11 - 2689: 41,-9 - 2690: 41,-8 - 2691: 41,-7 - 2692: 41,-7 - 2693: 41,-6 - 2694: 41,-5 - 2695: 41,-5 - 2696: 41,-4 - 2697: 41,-3 - 2698: 41,-3 - 2699: 41,-1 - 2700: 41,-1 - 2701: 41,-1 - 2702: 41,-2 - 2734: 19,3 - 2735: 19,4 - 2736: 19,4 - 2737: 19,4 - 2738: 19,5 - 2739: 19,5 - 2740: 19,7 - 2741: 19,8 - 2742: 19,8 - 2743: 19,8 + 2265: -26,-21 + 2266: -26,-20 + 2267: -26,-18 + 2268: -26,-19 + 2269: -26,-17 + 2274: -26,-25 + 2275: -26,-24 + 2276: -26,-27 + 2277: -26,-26 + 2278: -26,-28 + 2279: -26,-29 + 2280: -26,-30 + 2281: -26,-31 + 2327: -25,-8 + 2328: -26,-10 + 2329: -26,-11 + 2330: -26,-16 + 2331: -26,-15 + 2332: -26,-15 + 2333: -26,-14 + 2334: -26,-13 + 2348: -27,7 + 2349: -27,8 + 2350: -27,6 + 2351: -27,5 + 2380: -55,5 + 2381: -55,3 + 2382: -55,2 + 2383: -55,1 + 2384: -55,0 + 2385: -55,-1 + 2386: -55,-3 + 2387: -55,-6 + 2388: -55,-6 + 2389: -55,-7 + 2390: -55,-7 + 2391: -55,-8 + 2392: -55,-9 + 2393: -55,-9 + 2394: -55,-11 + 2403: -55,-10 + 2404: -55,-11 + 2405: -55,-12 + 2406: -55,-13 + 2407: -55,-13 + 2408: -55,-15 + 2409: -55,-15 + 2415: -55,-14 + 2420: -55,-16 + 2421: -55,-17 + 2422: -55,-18 + 2423: -55,-20 + 2424: -55,-21 + 2437: -52,-28 + 2438: -52,-29 + 2439: -52,-30 + 2440: -52,-30 + 2441: -52,-31 + 2442: -52,-32 + 2456: -49,-35 + 2457: -49,-36 + 2464: -49,-38 + 2465: -49,-38 + 2466: -49,-39 + 2467: -49,-40 + 2468: -49,-40 + 2469: -49,-41 + 2470: -49,-42 + 2471: -49,-43 + 2472: -49,-43 + 2473: -49,-44 + 2522: -42,-50 + 2523: -42,-50 + 2524: -42,-51 + 2525: -42,-51 + 2526: -42,-52 + 2527: -42,-52 + 2528: -42,-53 + 2529: -42,-54 + 2549: -56,-54 + 2550: -56,-53 + 2551: -56,-52 + 2552: -56,-52 + 2553: -56,-51 + 2554: -56,-51 + 2555: -56,-48 + 2556: -56,-48 + 2557: -56,-47 + 2558: -56,-50 + 2561: -41,-29 + 2562: -41,-28 + 2596: 7,-33 + 2614: 27,-23 + 2615: 27,-23 + 2616: 27,-23 + 2617: 27,-22 + 2618: 27,-24 + 2619: 27,-21 + 2620: 27,-20 + 2666: 57,-18 + 2667: 57,-17 + 2671: 52,-24 + 2672: 52,-23 + 2673: 52,-22 + 2679: 41,-17 + 2680: 41,-16 + 2681: 41,-15 + 2682: 41,-12 + 2683: 41,-11 + 2686: 41,-9 + 2687: 41,-8 + 2688: 41,-7 + 2689: 41,-7 + 2690: 41,-6 + 2691: 41,-5 + 2692: 41,-5 + 2693: 41,-4 + 2694: 41,-3 + 2695: 41,-3 + 2696: 41,-1 + 2697: 41,-1 + 2698: 41,-1 + 2699: 41,-2 + 2731: 19,3 + 2732: 19,4 + 2733: 19,4 + 2734: 19,4 + 2735: 19,5 + 2736: 19,5 + 2737: 19,7 + 2738: 19,8 + 2739: 19,8 + 2740: 19,8 + 2741: 19,10 + 2742: 19,10 + 2743: 19,11 2744: 19,10 2745: 19,10 - 2746: 19,11 + 2746: 19,12 2747: 19,10 - 2748: 19,10 - 2749: 19,12 - 2750: 19,10 - 2751: 19,9 - 2752: 19,9 - 2762: 19,13 - 2763: 19,14 - 2764: 19,14 - 2765: 19,14 - 2766: 19,15 - 2767: 19,15 - 2768: 19,15 - 2769: 19,16 - 2770: 19,16 - 2771: 19,18 - 2772: 19,18 - 2832: -27,20 - 2833: -27,18 + 2748: 19,9 + 2749: 19,9 + 2759: 19,13 + 2760: 19,14 + 2761: 19,14 + 2762: 19,14 + 2763: 19,15 + 2764: 19,15 + 2765: 19,15 + 2766: 19,16 + 2767: 19,16 + 2768: 19,18 + 2769: 19,18 + 2829: -27,20 + 2830: -27,18 - node: color: '#52B4E996' id: MonoOverlay decals: - 6318: 44,8 + 6307: 44,8 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 1038: 36,-36 + 1035: 36,-36 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 6320: 43,9 + 6309: 43,9 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 1528: -27,11 - 1529: -27,15 - 1530: -27,16 - 1531: -27,12 - 1532: -27,13 - 1533: -27,14 - 1639: -52,-26 - 1640: -52,-27 - 1641: -52,-25 - 1642: -52,-24 + 1525: -27,11 + 1526: -27,15 + 1527: -27,16 + 1528: -27,12 + 1529: -27,13 + 1530: -27,14 + 1636: -52,-26 + 1637: -52,-27 + 1638: -52,-25 + 1639: -52,-24 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1553: -17,-30 - 1554: -16,-30 - 1555: -15,-30 - 1556: -14,-30 - 1557: -13,-30 - 1619: 5,-27 - 1620: 5,-28 - 1621: 5,-29 - 1622: 5,-30 - 1623: 3,-30 - 1624: 2,-30 - 1625: 1,-30 - 1626: 0,-30 - 1627: -1,-30 - 1628: -3,-30 - 1629: -2,-30 - 1630: -4,-30 - 1631: -5,-30 - 1632: -6,-30 - 1633: -7,-30 - 1634: -8,-30 - 1671: 6,21 - 1672: 5,21 - 1673: 2,21 - 1674: 1,21 - 1675: 0,21 - 1676: -1,21 - 1677: -4,21 - 1678: -5,21 - 1679: -6,21 - 1680: -7,21 - 1681: -8,21 - 1682: -11,21 - 1683: -12,21 - 1684: -13,21 - 1685: -14,21 - 1686: -15,21 - 1687: -16,21 - 1701: 28,4 - 1702: 27,4 - 1703: 23,4 - 1704: 22,4 - 1923: 57,-17 - 1924: 58,-17 - 1925: 59,-17 - 1926: 60,-17 - 1927: 61,-17 - 2183: -1,-33 - 6299: 38,4 - 6300: 40,4 - 6301: 41,4 - 6302: 42,4 - 6303: 43,4 + 1550: -17,-30 + 1551: -16,-30 + 1552: -15,-30 + 1553: -14,-30 + 1554: -13,-30 + 1616: 5,-27 + 1617: 5,-28 + 1618: 5,-29 + 1619: 5,-30 + 1620: 3,-30 + 1621: 2,-30 + 1622: 1,-30 + 1623: 0,-30 + 1624: -1,-30 + 1625: -3,-30 + 1626: -2,-30 + 1627: -4,-30 + 1628: -5,-30 + 1629: -6,-30 + 1630: -7,-30 + 1631: -8,-30 + 1668: 6,21 + 1669: 5,21 + 1670: 2,21 + 1671: 1,21 + 1672: 0,21 + 1673: -1,21 + 1674: -4,21 + 1675: -5,21 + 1676: -6,21 + 1677: -7,21 + 1678: -8,21 + 1679: -11,21 + 1680: -12,21 + 1681: -13,21 + 1682: -14,21 + 1683: -15,21 + 1684: -16,21 + 1698: 28,4 + 1699: 27,4 + 1700: 23,4 + 1701: 22,4 + 1920: 57,-17 + 1921: 58,-17 + 1922: 59,-17 + 1923: 60,-17 + 1924: 61,-17 + 2180: -1,-33 + 6288: 38,4 + 6289: 40,4 + 6290: 41,4 + 6291: 42,4 + 6292: 43,4 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 1198: 6,30 - 1635: -51,-20 - 1636: -50,-20 - 1637: -49,-20 - 1638: -48,-20 + 1195: 6,30 + 1632: -51,-20 + 1633: -50,-20 + 1634: -49,-20 + 1635: -48,-20 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 1577: 12,-32 - 1578: 11,-32 - 1579: 13,-32 - 1580: 14,-32 - 1581: 15,-32 - 1582: 16,-32 - 1583: 17,-32 - 1584: 19,-32 - 1585: 19,-30 - 1586: 19,-29 - 1587: 19,-27 - 1588: 19,-26 - 1589: 19,-25 - 1590: 20,-25 - 1591: 21,-25 - 1592: 22,-25 - 1593: 23,-25 - 1594: 24,-25 - 1606: 19,-31 + 1574: 12,-32 + 1575: 11,-32 + 1576: 13,-32 + 1577: 14,-32 + 1578: 15,-32 + 1579: 16,-32 + 1580: 17,-32 + 1581: 19,-32 + 1582: 19,-30 + 1583: 19,-29 + 1584: 19,-27 + 1585: 19,-26 + 1586: 19,-25 + 1587: 20,-25 + 1588: 21,-25 + 1589: 22,-25 + 1590: 23,-25 + 1591: 24,-25 + 1603: 19,-31 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 1713: 37,-21 - 1714: 50,-21 - 1715: 34,-21 - 1716: 36,-21 - 1717: 35,-21 - 1934: 51,-21 - 2031: 29,-21 - 2032: 29,-22 - 2033: 29,-23 - 2034: 29,-24 - 2035: 29,-25 - 2036: 29,-26 - 2037: 29,-27 - 2038: 28,-27 - 2039: 27,-27 - 2040: 26,-27 - 2041: 25,-27 - 2042: 24,-27 - 2043: 23,-27 - 2044: 21,-27 - 2045: 21,-29 - 2046: 21,-30 - 2047: 21,-31 - 2048: 21,-32 - 2049: 21,-33 - 2050: 21,-34 - 2051: 20,-34 - 2052: 19,-34 + 1710: 37,-21 + 1711: 50,-21 + 1712: 34,-21 + 1713: 36,-21 + 1714: 35,-21 + 1931: 51,-21 + 2028: 29,-21 + 2029: 29,-22 + 2030: 29,-23 + 2031: 29,-24 + 2032: 29,-25 + 2033: 29,-26 + 2034: 29,-27 + 2035: 28,-27 + 2036: 27,-27 + 2037: 26,-27 + 2038: 25,-27 + 2039: 24,-27 + 2040: 23,-27 + 2041: 21,-27 + 2042: 21,-29 + 2043: 21,-30 + 2044: 21,-31 + 2045: 21,-32 + 2046: 21,-33 + 2047: 21,-34 + 2048: 20,-34 + 2049: 19,-34 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 6321: 45,7 + 6310: 45,7 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -7625,319 +7648,317 @@ entities: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1541: -25,11 - 1542: -25,12 - 1543: -25,13 - 1544: -25,14 - 1545: -25,15 - 1546: -25,16 - 1547: -25,17 - 1705: 21,5 - 1706: 21,7 - 1707: 21,8 - 1708: 21,9 - 1709: 21,16 - 1710: 21,18 - 1711: 21,19 - 1712: 21,20 - 1928: 61,-17 - 1929: 61,-18 - 1930: 61,-19 - 1931: 61,-20 - 1932: 61,-21 - 2179: -1,-33 - 2180: 0,-33 - 2181: 1,-33 - 2182: 2,-33 - 6304: 43,4 - 6305: 43,3 - 6306: 43,2 - 6307: 43,1 - 6308: 43,-1 - 6309: 43,-2 - 6310: 43,-3 - 6311: 43,-4 - 6312: 43,-5 - 6313: 43,-6 - 6314: 43,-7 - 6315: 43,-8 - 6316: 43,-9 - 6317: 43,-10 + 1538: -25,11 + 1539: -25,12 + 1540: -25,13 + 1541: -25,14 + 1542: -25,15 + 1543: -25,16 + 1544: -25,17 + 1702: 21,5 + 1703: 21,7 + 1704: 21,8 + 1705: 21,9 + 1706: 21,16 + 1707: 21,18 + 1708: 21,19 + 1709: 21,20 + 1925: 61,-17 + 1926: 61,-18 + 1927: 61,-19 + 1928: 61,-20 + 2176: -1,-33 + 2177: 0,-33 + 2178: 1,-33 + 2179: 2,-33 + 6293: 43,4 + 6294: 43,3 + 6295: 43,2 + 6296: 43,1 + 6297: 43,-1 + 6298: 43,-2 + 6299: 43,-3 + 6300: 43,-4 + 6301: 43,-5 + 6302: 43,-6 + 6303: 43,-7 + 6304: 43,-8 + 6305: 43,-9 + 6306: 43,-10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 1199: 3,32 + 1196: 3,32 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 1573: 9,-27 - 1574: 9,-29 - 1575: 9,-30 - 1576: 9,-31 + 1570: 9,-27 + 1571: 9,-29 + 1572: 9,-30 + 1573: 9,-31 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 1600: 19,-25 - 1601: 19,-26 - 1602: 19,-27 - 1603: 19,-29 - 1604: 19,-30 - 6322: 43,7 + 1597: 19,-25 + 1598: 19,-26 + 1599: 19,-27 + 1600: 19,-29 + 1601: 19,-30 + 6311: 43,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 1534: -27,11 - 1535: -27,12 - 1536: -27,13 - 1537: -27,14 - 1538: -27,15 - 1539: -27,16 - 1540: -27,17 - 1605: 19,-31 - 1643: -52,-27 - 1644: -52,-26 - 1645: -52,-25 - 1646: -52,-24 - 1647: -52,-23 - 1718: 34,-21 - 1719: 35,-21 - 1720: 36,-21 - 1721: 37,-21 - 1722: 50,-21 - 1935: 51,-21 - 2053: 19,-34 - 2054: 20,-34 - 2055: 21,-34 - 2062: 23,-27 - 2063: 24,-27 - 2064: 25,-27 - 2065: 26,-27 - 2066: 27,-27 - 2067: 28,-27 - 2068: 29,-27 + 1531: -27,11 + 1532: -27,12 + 1533: -27,13 + 1534: -27,14 + 1535: -27,15 + 1536: -27,16 + 1537: -27,17 + 1602: 19,-31 + 1640: -52,-27 + 1641: -52,-26 + 1642: -52,-25 + 1643: -52,-24 + 1644: -52,-23 + 1715: 34,-21 + 1716: 35,-21 + 1717: 36,-21 + 1718: 37,-21 + 1719: 50,-21 + 1932: 51,-21 + 2050: 19,-34 + 2051: 20,-34 + 2052: 21,-34 + 2059: 23,-27 + 2060: 24,-27 + 2061: 25,-27 + 2062: 26,-27 + 2063: 27,-27 + 2064: 28,-27 + 2065: 29,-27 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 1196: 6,32 + 1193: 6,32 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 1570: 5,-29 - 1571: 5,-28 - 1572: 5,-27 - 2174: -1,-33 - 2175: 1,-33 - 2176: 0,-33 - 2177: 2,-33 + 1567: 5,-29 + 1568: 5,-28 + 1569: 5,-27 + 2171: -1,-33 + 2172: 1,-33 + 2173: 0,-33 + 2174: 2,-33 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 1039: 44,-36 + 1036: 44,-36 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 1595: 19,-25 - 1596: 20,-25 - 1597: 21,-25 - 1598: 22,-25 - 1599: 23,-25 - 6281: 40,4 - 6282: 38,4 - 6283: 41,4 - 6284: 42,4 - 6285: 43,4 - 6286: 43,3 - 6287: 43,2 - 6288: 43,1 - 6289: 43,-1 - 6290: 43,-2 - 6291: 43,-3 - 6292: 43,-4 - 6293: 43,-5 - 6294: 43,-6 - 6295: 43,-7 - 6296: 43,-10 - 6297: 43,-9 - 6298: 43,-8 - 6319: 45,9 + 1592: 19,-25 + 1593: 20,-25 + 1594: 21,-25 + 1595: 22,-25 + 1596: 23,-25 + 6270: 40,4 + 6271: 38,4 + 6272: 41,4 + 6273: 42,4 + 6274: 43,4 + 6275: 43,3 + 6276: 43,2 + 6277: 43,1 + 6278: 43,-1 + 6279: 43,-2 + 6280: 43,-3 + 6281: 43,-4 + 6282: 43,-5 + 6283: 43,-6 + 6284: 43,-7 + 6285: 43,-10 + 6286: 43,-9 + 6287: 43,-8 + 6308: 45,9 - node: color: '#79150096' id: QuarterTileOverlayGreyscale90 decals: - 1522: -25,11 - 1523: -25,12 - 1524: -25,13 - 1525: -25,15 - 1526: -25,14 - 1527: -25,16 + 1519: -25,11 + 1520: -25,12 + 1521: -25,13 + 1522: -25,15 + 1523: -25,14 + 1524: -25,16 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 1548: -16,-30 - 1549: -15,-30 - 1550: -14,-30 - 1551: -13,-30 - 1552: -17,-30 + 1545: -16,-30 + 1546: -15,-30 + 1547: -14,-30 + 1548: -13,-30 + 1549: -17,-30 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 1688: 21,20 - 1689: 21,19 - 1690: 21,18 - 1691: 21,16 - 1692: 21,9 - 1693: 21,8 - 1694: 21,7 - 1695: 21,5 - 1696: 21,4 - 1697: 22,4 - 1698: 23,4 - 1699: 27,4 - 1700: 28,4 + 1685: 21,20 + 1686: 21,19 + 1687: 21,18 + 1688: 21,16 + 1689: 21,9 + 1690: 21,8 + 1691: 21,7 + 1692: 21,5 + 1693: 21,4 + 1694: 22,4 + 1695: 23,4 + 1696: 27,4 + 1697: 28,4 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 1915: 61,-17 - 1916: 60,-17 - 1917: 59,-17 - 1918: 58,-17 - 1919: 61,-18 - 1920: 61,-19 - 1921: 61,-20 - 1922: 61,-21 - 1933: 57,-17 + 1912: 61,-17 + 1913: 60,-17 + 1914: 59,-17 + 1915: 58,-17 + 1916: 61,-18 + 1917: 61,-19 + 1918: 61,-20 + 1930: 57,-17 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1607: 17,-32 - 1608: 16,-32 - 1609: 15,-32 - 1610: 14,-32 - 1611: 13,-32 - 1612: 12,-32 - 1613: 11,-32 - 1614: 9,-32 - 1615: 9,-31 - 1616: 9,-30 - 1617: 9,-29 - 1618: 9,-27 - 1648: -51,-20 - 1649: -50,-20 - 1650: -49,-20 - 1651: -48,-20 - 1652: -52,-20 - 1653: -62,-22 - 2056: 21,-34 - 2057: 21,-33 - 2058: 21,-32 - 2059: 21,-31 - 2060: 21,-30 - 2061: 21,-29 - 2069: 29,-27 - 2070: 29,-26 - 2071: 29,-25 - 2072: 29,-24 - 2073: 29,-23 - 2074: 29,-22 + 1604: 17,-32 + 1605: 16,-32 + 1606: 15,-32 + 1607: 14,-32 + 1608: 13,-32 + 1609: 12,-32 + 1610: 11,-32 + 1611: 9,-32 + 1612: 9,-31 + 1613: 9,-30 + 1614: 9,-29 + 1615: 9,-27 + 1645: -51,-20 + 1646: -50,-20 + 1647: -49,-20 + 1648: -48,-20 + 1649: -52,-20 + 1650: -62,-22 + 2053: 21,-34 + 2054: 21,-33 + 2055: 21,-32 + 2056: 21,-31 + 2057: 21,-30 + 2058: 21,-29 + 2066: 29,-27 + 2067: 29,-26 + 2068: 29,-25 + 2069: 29,-24 + 2070: 29,-23 + 2071: 29,-22 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 1197: 3,30 - 1654: -16,21 - 1655: -15,21 - 1656: -14,21 - 1657: -13,21 - 1658: -12,21 - 1659: -11,21 - 1660: -8,21 - 1661: -7,21 - 1662: -6,21 - 1663: -5,21 - 1664: -4,21 - 1665: -1,21 - 1666: 0,21 - 1667: 1,21 - 1668: 2,21 - 1669: 5,21 - 1670: 6,21 + 1194: 3,30 + 1651: -16,21 + 1652: -15,21 + 1653: -14,21 + 1654: -13,21 + 1655: -12,21 + 1656: -11,21 + 1657: -8,21 + 1658: -7,21 + 1659: -6,21 + 1660: -5,21 + 1661: -4,21 + 1662: -1,21 + 1663: 0,21 + 1664: 1,21 + 1665: 2,21 + 1666: 5,21 + 1667: 6,21 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 1558: -8,-30 - 1559: -7,-30 - 1560: -6,-30 - 1561: -5,-30 - 1562: -4,-30 - 1563: -3,-30 - 1564: -2,-30 - 1565: 0,-30 - 1566: -1,-30 - 1567: 1,-30 - 1568: 2,-30 - 1569: 3,-30 - 2178: 2,-33 + 1555: -8,-30 + 1556: -7,-30 + 1557: -6,-30 + 1558: -5,-30 + 1559: -4,-30 + 1560: -3,-30 + 1561: -2,-30 + 1562: 0,-30 + 1563: -1,-30 + 1564: 1,-30 + 1565: 2,-30 + 1566: 3,-30 + 2175: 2,-33 - node: color: '#FFFFFFFF' id: Rock01 decals: - 1499: -52,-49 + 1496: -52,-49 - node: color: '#FFFFFFFF' id: Rock03 decals: - 907: -49,-9 - 1500: -47,-49 + 904: -49,-9 + 1497: -47,-49 - node: color: '#FFFFFFFF' id: Rock04 decals: - 885: -47,4 + 882: -47,4 - node: color: '#FFFFFFFF' id: Rock05 decals: - 884: -49,-2 + 881: -49,-2 - node: color: '#FFFFFFFF' id: Rock06 decals: - 887: -51,4 - 909: -46,-7 - 1502: -46,-49 - 1735: 58,19 + 884: -51,4 + 906: -46,-7 + 1499: -46,-49 + 1732: 58,19 - node: color: '#FFFFFFFF' id: Rock07 decals: - 886: -46,-2 - 908: -50,-8 - 1501: -51,-49 - 1736: 61,19 + 883: -46,-2 + 905: -50,-8 + 1498: -51,-49 + 1733: 61,19 - node: cleanable: True color: '#FFFFFFFF' id: Rust decals: - 2966: -5,-39 - 2967: -7,-40 - 2968: -6,-41 - 2969: -7,-41 - 2970: -8,-39 - 2971: -8,-42 + 2963: -5,-39 + 2964: -7,-40 + 2965: -6,-41 + 2966: -7,-41 + 2967: -8,-39 + 2968: -8,-42 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -7977,7 +7998,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 1146: -3,24 + 1143: -3,24 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale @@ -7992,7 +8013,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1145: -2,23 + 1142: -2,23 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 @@ -8002,7 +8023,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1144: -3,23 + 1141: -3,23 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 @@ -8012,7 +8033,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1143: -2,24 + 1140: -2,24 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -8022,19 +8043,19 @@ entities: color: '#FFFFFFB1' id: VentSmall decals: - 2900: -36,22 + 2897: -36,22 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 1187: 6,32 - 6635: 91,-13 + 1184: 6,32 + 6624: 91,-13 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 1186: 3,32 - 6636: 88,-13 + 1183: 3,32 + 6625: 88,-13 - node: color: '#EFB34196' id: WarnCornerSE @@ -8044,7 +8065,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerSE decals: - 6634: 91,-16 + 6623: 91,-16 - node: color: '#EFB34196' id: WarnCornerSW @@ -8054,18 +8075,18 @@ entities: color: '#FFFFFFFF' id: WarnCornerSW decals: - 6633: 88,-16 + 6622: 88,-16 - node: color: '#EFB34118' id: WarnCornerSmallNE decals: - 6713: 12,-30 - 6714: 12,-30 + 6702: 12,-30 + 6703: 12,-30 - node: color: '#EFB3416C' id: WarnCornerSmallNE decals: - 6712: 12,-30 + 6701: 12,-30 - node: color: '#EFB34196' id: WarnCornerSmallNE @@ -8076,27 +8097,27 @@ entities: color: '#EFB341A1' id: WarnCornerSmallNE decals: - 6169: 14,39 + 6158: 14,39 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1320: 25,23 - 1321: 29,23 - 2083: 11,-47 - 6369: 51,13 - 6457: 51,-11 + 1317: 25,23 + 1318: 29,23 + 2080: 11,-47 + 6358: 51,13 + 6446: 51,-11 - node: color: '#EFB34118' id: WarnCornerSmallNW decals: - 6715: 16,-30 - 6716: 16,-30 + 6704: 16,-30 + 6705: 16,-30 - node: color: '#EFB3416C' id: WarnCornerSmallNW decals: - 6711: 16,-30 + 6700: 16,-30 - node: color: '#EFB34196' id: WarnCornerSmallNW @@ -8108,15 +8129,15 @@ entities: color: '#EFB341A1' id: WarnCornerSmallNW decals: - 6170: 16,39 + 6159: 16,39 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1083: 39,-1 - 1322: 25,23 - 1323: 29,23 - 2084: 14,-47 + 1080: 39,-1 + 1319: 25,23 + 1320: 29,23 + 2081: 14,-47 - node: color: '#EFB34196' id: WarnCornerSmallSE @@ -8130,13 +8151,13 @@ entities: color: '#EFB341A1' id: WarnCornerSmallSE decals: - 6168: 14,42 + 6157: 14,42 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1442: 55,-33 - 6368: 51,15 + 1439: 55,-33 + 6357: 51,15 - node: color: '#EFB34196' id: WarnCornerSmallSW @@ -8148,7 +8169,7 @@ entities: color: '#EFB341A1' id: WarnCornerSmallSW decals: - 6167: 16,42 + 6156: 16,42 - node: color: '#EFB34196' id: WarnLineE @@ -8176,64 +8197,66 @@ entities: 279: 29,-13 280: 29,-12 281: 29,-11 - 6265: 47,14 - 6266: 47,14 - 6267: 47,15 - 6268: 47,15 + 6254: 47,14 + 6255: 47,14 + 6256: 47,15 + 6257: 47,15 - node: cleanable: True color: '#EFB341A1' id: WarnLineE decals: - 6165: 14,41 - 6166: 14,40 + 6154: 14,41 + 6155: 14,40 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 1188: 6,31 - 1189: 6,30 - 1437: 55,-36 - 1438: 55,-34 - 1439: 55,-35 - 1857: 73,-14 - 1858: 73,-15 - 1859: 73,-17 - 1860: 73,-16 - 1861: 73,-18 - 1862: 73,-19 - 6231: -45,23 - 6366: 51,14 - 6456: 51,-10 - 6631: 91,-15 - 6632: 91,-14 - 6724: 56,-29 - 6725: 56,-28 - 6726: 56,-27 + 1185: 6,31 + 1186: 6,30 + 1434: 55,-36 + 1435: 55,-34 + 1436: 55,-35 + 1854: 73,-14 + 1855: 73,-15 + 1856: 73,-17 + 1857: 73,-16 + 1858: 73,-18 + 1859: 73,-19 + 6220: -45,23 + 6355: 51,14 + 6445: 51,-10 + 6620: 91,-15 + 6621: 91,-14 + 6713: 56,-29 + 6714: 56,-28 + 6715: 56,-27 + 6753: -33,-11 + 6754: -33,-10 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 6458: 52,-12 - 6459: 52,-13 - 6460: 52,-14 - 6461: 52,-15 - 6462: 49,-12 - 6463: 49,-13 - 6464: 49,-14 - 6465: 49,-15 + 6447: 52,-12 + 6448: 52,-13 + 6449: 52,-14 + 6450: 52,-15 + 6451: 49,-12 + 6452: 49,-13 + 6453: 49,-14 + 6454: 49,-15 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 6466: 49,-15 - 6467: 49,-14 - 6468: 49,-13 - 6469: 49,-12 - 6470: 52,-12 - 6471: 52,-13 - 6472: 52,-14 - 6473: 52,-15 + 6455: 49,-15 + 6456: 49,-14 + 6457: 49,-13 + 6458: 49,-12 + 6459: 52,-12 + 6460: 52,-13 + 6461: 52,-14 + 6462: 52,-15 - node: color: '#EFB34196' id: WarnLineN @@ -8251,43 +8274,43 @@ entities: 271: 26,-14 272: 27,-14 273: 28,-14 - 1477: 46,14 - 6255: 46,14 - 6256: 46,14 + 1474: 46,14 + 6244: 46,14 + 6245: 46,14 - node: cleanable: True color: '#EFB341A1' id: WarnLineN decals: - 6164: 15,42 + 6153: 15,42 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1440: 56,-33 - 1441: 57,-33 - 1902: 69,-30 - 1903: 68,-30 - 1904: 70,-30 - 1905: 71,-30 - 1978: 23,-38 - 1979: 24,-38 - 1980: 25,-38 - 2075: 11,-48 - 2076: 12,-48 - 2077: 14,-48 - 2078: 13,-48 - 2079: 15,-48 - 2080: 16,-48 - 2138: 0,-38 - 2139: 1,-38 - 2140: 2,-38 - 2144: 7,-45 - 2145: 8,-45 - 2146: 9,-45 - 6228: -44,24 - 6625: 89,-16 - 6626: 90,-16 + 1437: 56,-33 + 1438: 57,-33 + 1899: 69,-30 + 1900: 68,-30 + 1901: 70,-30 + 1902: 71,-30 + 1975: 23,-38 + 1976: 24,-38 + 1977: 25,-38 + 2072: 11,-48 + 2073: 12,-48 + 2074: 14,-48 + 2075: 13,-48 + 2076: 15,-48 + 2077: 16,-48 + 2135: 0,-38 + 2136: 1,-38 + 2137: 2,-38 + 2141: 7,-45 + 2142: 8,-45 + 2143: 9,-45 + 6217: -44,24 + 6614: 89,-16 + 6615: 90,-16 - node: color: '#EFB34196' id: WarnLineS @@ -8315,48 +8338,50 @@ entities: 275: 16,-11 276: 16,-10 277: 16,-9 - 6259: 45,16 - 6260: 45,15 - 6261: 45,14 - 6262: 45,14 - 6263: 45,15 - 6264: 45,16 + 6248: 45,16 + 6249: 45,15 + 6250: 45,14 + 6251: 45,14 + 6252: 45,15 + 6253: 45,16 - node: cleanable: True color: '#EFB341A1' id: WarnLineS decals: - 6162: 16,40 - 6163: 16,41 + 6151: 16,40 + 6152: 16,41 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 1776: 61,-24 - 1789: 61,-23 - 2006: 26,-43 - 2007: 26,-46 - 6229: -43,23 - 6367: 57,14 - 6629: 88,-15 - 6630: 88,-14 + 1773: 61,-24 + 1786: 61,-23 + 2003: 26,-43 + 2004: 26,-46 + 6218: -43,23 + 6356: 57,14 + 6618: 88,-15 + 6619: 88,-14 + 6751: -33,-10 + 6752: -33,-11 - node: color: '#EFB34118' id: WarnLineW decals: - 6717: 13,-30 - 6718: 13,-30 - 6719: 14,-30 - 6720: 14,-30 - 6721: 15,-30 - 6722: 15,-30 + 6706: 13,-30 + 6707: 13,-30 + 6708: 14,-30 + 6709: 14,-30 + 6710: 15,-30 + 6711: 15,-30 - node: color: '#EFB3416C' id: WarnLineW decals: - 6708: 13,-30 - 6709: 14,-30 - 6710: 15,-30 + 6697: 13,-30 + 6698: 14,-30 + 6699: 15,-30 - node: color: '#EFB34196' id: WarnLineW @@ -8374,73 +8399,72 @@ entities: color: '#EFB341A1' id: WarnLineW decals: - 6161: 15,39 + 6150: 15,39 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1072: 36,-1 - 1073: 37,-1 - 1082: 38,-1 - 1184: 4,32 - 1185: 5,32 - 1314: 30,23 - 1315: 31,23 - 1316: 23,23 - 1317: 24,23 - 1318: 26,23 - 1319: 28,23 - 1807: 68,-11 - 1808: 69,-11 - 1809: 70,-11 - 1898: 68,-29 - 1899: 70,-29 - 1900: 69,-29 - 1901: 71,-29 - 1975: 23,-37 - 1976: 25,-37 - 1977: 24,-37 - 2026: 28,-38 - 2027: 29,-38 - 2081: 12,-47 - 2082: 13,-47 - 2167: 9,-39 - 2168: 10,-39 - 2169: 8,-39 - 2170: 11,-39 - 2184: -5,-35 - 2198: -6,-35 - 2199: -4,-35 - 6230: -44,22 - 6454: 52,-11 - 6455: 53,-11 - 6627: 89,-13 - 6628: 90,-13 + 1069: 36,-1 + 1070: 37,-1 + 1079: 38,-1 + 1181: 4,32 + 1182: 5,32 + 1311: 30,23 + 1312: 31,23 + 1313: 23,23 + 1314: 24,23 + 1315: 26,23 + 1316: 28,23 + 1804: 68,-11 + 1805: 69,-11 + 1806: 70,-11 + 1895: 68,-29 + 1896: 70,-29 + 1897: 69,-29 + 1898: 71,-29 + 1972: 23,-37 + 1973: 25,-37 + 1974: 24,-37 + 2023: 28,-38 + 2024: 29,-38 + 2078: 12,-47 + 2079: 13,-47 + 2164: 9,-39 + 2165: 10,-39 + 2166: 8,-39 + 2167: 11,-39 + 2181: -5,-35 + 2195: -6,-35 + 2196: -4,-35 + 6219: -44,22 + 6443: 52,-11 + 6444: 53,-11 + 6616: 89,-13 + 6617: 90,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 6227: -44,23 + 6216: -44,23 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: 402: -18,-13 - 999: 44,-29 + 996: 44,-29 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: 379: -22,7 - 998: 40,-29 - 3074: -28,-46 + 995: 40,-29 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 401: -18,-16 501: -32,5 - 3078: -31,-45 + 3075: -31,-45 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -8459,9 +8483,9 @@ entities: 463: -40,-5 521: -38,3 655: -39,-16 - 861: -52,5 - 1183: -15,31 - 1738: 60,18 + 858: -52,5 + 1180: -15,31 + 1735: 60,18 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw @@ -8471,9 +8495,9 @@ entities: 460: -30,-5 520: -30,3 522: -25,-5 - 859: -43,-1 - 860: -43,5 - 1102: -59,-29 + 856: -43,-1 + 857: -43,5 + 1099: -59,-29 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe @@ -8483,20 +8507,20 @@ entities: 384: -22,-1 578: -33,14 654: -39,-13 - 858: -52,-3 + 855: -52,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: 577: -28,14 597: -37,-18 - 856: -43,3 - 857: -43,-3 - 966: -50.00212,-30.877844 - 967: -45.158802,-30.877844 - 968: -45.158802,-25.282345 - 969: -50.020466,-25.282345 - 1101: -59,-25 + 853: -43,3 + 854: -43,-3 + 963: -50.00212,-30.877844 + 964: -45.158802,-30.877844 + 965: -45.158802,-25.282345 + 966: -50.020466,-25.282345 + 1098: -59,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -8533,30 +8557,30 @@ entities: 582: -33,11 641: -39,-15 642: -39,-14 - 956: -46,-26 - 957: -46,-27 - 958: -46,-28 - 959: -46,-29 - 960: -46,-30 - 961: -46,-31 - 981: 36,-31 - 982: 36,-30 - 983: 36,-29 - 1005: 44,-31 - 1006: 44,-30 - 1177: -15,32 - 1178: -15,33 - 1179: -15,34 - 1333: 33,15 - 1381: 33,12 - 1382: 33,13 - 1383: 33,14 - 1737: 60,19 - 1877: 69,-24 - 1878: 69,-23 - 1879: 69,-22 - 1880: 69,-21 - 3075: -30,-46 + 953: -46,-26 + 954: -46,-27 + 955: -46,-28 + 956: -46,-29 + 957: -46,-30 + 958: -46,-31 + 978: 36,-31 + 979: 36,-30 + 980: 36,-29 + 1002: 44,-31 + 1003: 44,-30 + 1174: -15,32 + 1175: -15,33 + 1176: -15,34 + 1330: 33,15 + 1378: 33,12 + 1379: 33,13 + 1380: 33,14 + 1734: 60,19 + 1874: 69,-24 + 1875: 69,-23 + 1876: 69,-22 + 1877: 69,-21 + 3072: -30,-46 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -8605,64 +8629,64 @@ entities: 638: -29,-16 639: -30,-16 640: -28,-16 - 752: -40,-33 - 753: -39,-33 - 754: -30,-33 - 755: -29,-33 - 760: -26,-40 - 761: -25,-40 - 762: -24,-40 - 763: -23,-40 - 764: -21,-40 - 765: -22,-40 - 766: -20,-40 - 767: -20,-40 - 776: -19,-40 - 777: -26,-36 - 778: -23,-36 - 779: -20,-36 - 780: -19,-36 - 787: -27,-40 - 788: -28,-40 - 789: -29,-40 - 817: -51,-1 - 818: -50,-1 - 819: -49,-1 - 820: -48,-1 - 821: -47,-1 - 822: -45,-1 - 823: -45,-1 - 824: -46,-1 - 825: -44,-1 - 826: -44,5 - 827: -46,5 - 828: -46,5 - 829: -45,5 - 830: -45,5 - 831: -47,5 - 832: -48,5 - 833: -48,5 - 834: -49,5 - 835: -50,5 - 836: -50,5 - 837: -51,5 - 1000: 41,-29 - 1001: 42,-29 - 1002: 43,-29 - 1096: -61,-29 - 1097: -60,-29 - 1180: -14,31 - 1181: -13,31 - 1182: -12,31 - 3073: -30,-45 - 6146: -35,3 - 6225: 36,-24 + 749: -40,-33 + 750: -39,-33 + 751: -30,-33 + 752: -29,-33 + 757: -26,-40 + 758: -25,-40 + 759: -24,-40 + 760: -23,-40 + 761: -21,-40 + 762: -22,-40 + 763: -20,-40 + 764: -20,-40 + 773: -19,-40 + 774: -26,-36 + 775: -23,-36 + 776: -20,-36 + 777: -19,-36 + 784: -27,-40 + 785: -28,-40 + 786: -29,-40 + 814: -51,-1 + 815: -50,-1 + 816: -49,-1 + 817: -48,-1 + 818: -47,-1 + 819: -45,-1 + 820: -45,-1 + 821: -46,-1 + 822: -44,-1 + 823: -44,5 + 824: -46,5 + 825: -46,5 + 826: -45,5 + 827: -45,5 + 828: -47,5 + 829: -48,5 + 830: -48,5 + 831: -49,5 + 832: -50,5 + 833: -50,5 + 834: -51,5 + 997: 41,-29 + 998: 42,-29 + 999: 43,-29 + 1093: -61,-29 + 1094: -60,-29 + 1177: -14,31 + 1178: -13,31 + 1179: -12,31 + 3070: -30,-45 + 6135: -35,3 + 6214: 36,-24 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 3030: 80,-25 + 3027: 80,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -8701,60 +8725,57 @@ entities: 656: -38,-10 657: -37,-10 658: -36,-10 - 659: -33,-10 - 660: -34,-10 - 661: -32,-10 - 662: -30,-10 - 663: -29,-10 - 664: -28,-10 - 748: -40,-26 - 749: -39,-26 - 750: -30,-26 - 751: -29,-26 - 768: -26,-34 - 769: -25,-34 - 770: -24,-34 - 771: -22,-34 - 772: -21,-34 - 773: -20,-34 - 774: -19,-34 - 775: -23,-34 - 781: -26,-38 - 782: -23,-38 - 783: -20,-38 - 784: -19,-38 - 838: -51,3 - 839: -50,3 - 840: -50,3 - 841: -49,3 - 842: -48,3 - 843: -47,3 - 844: -46,3 - 845: -45,3 - 846: -44,3 - 847: -44,-3 - 848: -45,-3 - 849: -46,-3 - 850: -46,-3 - 851: -47,-3 - 852: -49,-3 - 853: -49,-3 - 854: -51,-3 - 855: -51,-3 - 862: -50,-3 - 863: -48,-3 - 1098: -62,-25 - 1099: -61,-25 - 1100: -60,-25 - 1727: 58,19 - 1728: 59,19 - 1729: 60,19 - 3076: -31,-45 - 3079: 65,-52 - 3080: 66,-52 - 3081: 67,-52 - 6224: 36,-24 - 6244: -38,-17 + 659: -30,-10 + 660: -29,-10 + 661: -28,-10 + 745: -40,-26 + 746: -39,-26 + 747: -30,-26 + 748: -29,-26 + 765: -26,-34 + 766: -25,-34 + 767: -24,-34 + 768: -22,-34 + 769: -21,-34 + 770: -20,-34 + 771: -19,-34 + 772: -23,-34 + 778: -26,-38 + 779: -23,-38 + 780: -20,-38 + 781: -19,-38 + 835: -51,3 + 836: -50,3 + 837: -50,3 + 838: -49,3 + 839: -48,3 + 840: -47,3 + 841: -46,3 + 842: -45,3 + 843: -44,3 + 844: -44,-3 + 845: -45,-3 + 846: -46,-3 + 847: -46,-3 + 848: -47,-3 + 849: -49,-3 + 850: -49,-3 + 851: -51,-3 + 852: -51,-3 + 859: -50,-3 + 860: -48,-3 + 1095: -62,-25 + 1096: -61,-25 + 1097: -60,-25 + 1724: 58,19 + 1725: 59,19 + 1726: 60,19 + 3073: -31,-45 + 3076: 65,-52 + 3077: 66,-52 + 3078: 67,-52 + 6213: 36,-24 + 6233: -38,-17 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -8792,187 +8813,187 @@ entities: 591: -37,-21 592: -37,-20 593: -37,-19 - 950: -50,-27 - 951: -50,-28 - 952: -50,-29 - 953: -50,-30 - 954: -50,-31 - 955: -50,-26 - 1003: 40,-31 - 1004: 40,-30 - 1093: -59,-28 - 1094: -59,-27 - 1095: -59,-26 - 1748: 58,19 - 2273: -27,-16 - 2274: -27,-15 - 2275: -27,-14 - 2276: -27,-13 - 3077: -31,-44 + 947: -50,-27 + 948: -50,-28 + 949: -50,-29 + 950: -50,-30 + 951: -50,-31 + 952: -50,-26 + 1000: 40,-31 + 1001: 40,-30 + 1090: -59,-28 + 1091: -59,-27 + 1092: -59,-26 + 1745: 58,19 + 2270: -27,-16 + 2271: -27,-15 + 2272: -27,-14 + 2273: -27,-13 + 3074: -31,-44 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa1 decals: - 6182: 80.134224,-34.739353 + 6171: 80.134224,-34.739353 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa2 decals: - 6183: 81.98104,-35.791183 + 6172: 81.98104,-35.791183 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa3 decals: - 6184: 80.43999,-36.158104 + 6173: 80.43999,-36.158104 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowb1 decals: - 6185: 83.2041,-35.583263 + 6174: 83.2041,-35.583263 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowb3 decals: - 6186: 83.020645,-36.060257 + 6175: 83.020645,-36.060257 - node: color: '#FFFFFFFF' id: e decals: - 926: -40.4296,-9.97279 + 923: -40.4296,-9.97279 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow01 decals: - 6199: 83.460945,-36.10918 - 6200: 80.01192,-34.201206 + 6188: 83.460945,-36.10918 + 6189: 80.01192,-34.201206 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow03 decals: - 6196: 81.7242,-35.840107 + 6185: 81.7242,-35.840107 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow05 decals: - 6201: 81.07172,-34.84943 + 6190: 81.07172,-34.84943 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow06 decals: - 6205: 80.39903,-34.335743 + 6194: 80.39903,-34.335743 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow07 decals: - 6194: 80.04861,-36.219257 + 6183: 80.04861,-36.219257 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow08 decals: - 6195: 80.8436,-35.974644 + 6184: 80.8436,-35.974644 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow09 decals: - 6197: 82.201195,-35.974644 - 6204: 81.98901,-35.155193 + 6186: 82.201195,-35.974644 + 6193: 81.98901,-35.155193 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow10 decals: - 6192: 80.02415,-34.922813 + 6181: 80.02415,-34.922813 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow11 decals: - 6193: 80.42776,-35.546574 - 6198: 83.24079,-35.7178 + 6182: 80.42776,-35.546574 + 6187: 83.24079,-35.7178 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow12 decals: - 6202: 82.99192,-34.910583 + 6191: 82.99192,-34.910583 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow13 decals: - 6203: 82.56385,-34.88612 + 6192: 82.56385,-34.88612 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa1 decals: - 6189: 82.82495,-35.571033 + 6178: 82.82495,-35.571033 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa2 decals: - 6208: 83.059845,-34.91084 + 6197: 83.059845,-34.91084 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa3 decals: - 6187: 79.9263,-35.46096 + 6176: 79.9263,-35.46096 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowb2 decals: - 6188: 81.369514,-35.70557 - 6206: 80.8828,-34.87415 + 6177: 81.369514,-35.70557 + 6195: 80.8828,-34.87415 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowb3 decals: - 6207: 79.87989,-33.993546 + 6196: 79.87989,-33.993546 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowc2 decals: - 6191: 79.79176,-36.060257 + 6180: 79.79176,-36.060257 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowc3 decals: - 6190: 81.10044,-36.13364 + 6179: 81.10044,-36.13364 - node: color: '#FFFFFFFF' id: h decals: - 927: -40.486675,-10.812624 + 924: -40.486675,-10.812624 - node: color: '#FFFF0066' id: shop decals: - 3067: 50.31763,23.128677 - 3068: 51.239506,23.738052 - 3069: 52.00513,23.034927 + 3064: 50.31763,23.128677 + 3065: 51.239506,23.738052 + 3066: 52.00513,23.034927 - node: color: '#FFFFFFFF' id: w decals: - 925: -40.502983,-9.132956 + 922: -40.502983,-9.132956 - type: GridAtmosphere version: 2 data: @@ -11008,6 +11029,22 @@ entities: parent: 2 - proto: AirAlarm entities: + - uid: 894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 18970 + - 18984 + - 8937 + - 493 + - 492 + - 491 + - type: AtmosDevice + joinedGrid: 2 - uid: 8353 components: - type: Transform @@ -12865,6 +12902,7 @@ entities: - type: DeviceList devices: - 20248 + - 15992 - type: AtmosDevice joinedGrid: 2 - uid: 8475 @@ -13019,7 +13057,7 @@ entities: parent: 2 - type: DeviceList devices: - - 8780 + - 493 - 8779 - 8778 - 8777 @@ -13035,6 +13073,8 @@ entities: - 20228 - 18943 - 18944 + - 492 + - 491 - type: AtmosDevice joinedGrid: 2 - uid: 17630 @@ -13335,20 +13375,6 @@ entities: - 18725 - type: AtmosDevice joinedGrid: 2 - - uid: 20227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 2 - - type: DeviceList - devices: - - 8937 - - 8780 - - 18970 - - 18984 - - type: AtmosDevice - joinedGrid: 2 - uid: 20240 components: - type: Transform @@ -13503,6 +13529,13 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - uid: 14788 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 14855 components: - type: Transform @@ -13538,13 +13571,6 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 16450 - components: - - type: Transform - pos: -27.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 21243 components: - type: Transform @@ -13554,16 +13580,6 @@ entities: joinedGrid: 21128 - proto: Airlock entities: - - uid: 5 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-11.5 - parent: 2 - - type: DeviceLinkSink - links: - - 2078 - uid: 6 components: - type: MetaData @@ -13638,6 +13654,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Armory airlock - type: Transform pos: 4.5,29.5 parent: 2 @@ -13780,6 +13797,13 @@ entities: - type: Transform pos: -29.5,-39.5 parent: 2 + - uid: 21387 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-40.5 + parent: 2 - proto: AirlockChemistryLocked entities: - uid: 6039 @@ -13904,6 +13928,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Secure command airlock - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-35.5 @@ -13947,6 +13972,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Spare supplies airlock - type: Transform pos: 32.5,1.5 parent: 2 @@ -14049,6 +14075,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-15.5 @@ -14057,6 +14084,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform rot: 3.141592653589793 rad pos: -4.5,14.5 @@ -14065,6 +14093,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform rot: 3.141592653589793 rad pos: -0.5,14.5 @@ -14073,6 +14102,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform rot: -1.5707963267948966 rad pos: 38.5,8.5 @@ -14081,6 +14111,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform rot: -1.5707963267948966 rad pos: -53.5,8.5 @@ -14089,6 +14120,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-21.5 @@ -14097,6 +14129,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform rot: 3.141592653589793 rad pos: 51.5,-30.5 @@ -14113,6 +14146,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform rot: 3.141592653589793 rad pos: 62.5,9.5 @@ -14121,6 +14155,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-29.5 @@ -14151,6 +14186,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform rot: 3.141592653589793 rad pos: -21.5,33.5 @@ -14159,6 +14195,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform pos: 15.5,-37.5 parent: 2 @@ -14166,6 +14203,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Substation airlock - type: Transform pos: -38.5,-36.5 parent: 2 @@ -14263,6 +14301,11 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,6.5 parent: 2 + - uid: 5784 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 2 - uid: 6295 components: - type: Transform @@ -14287,16 +14330,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-58.5 parent: 2 - - uid: 7023 - components: - - type: Transform - pos: -18.5,-43.5 - parent: 2 - - uid: 16004 - components: - - type: Transform - pos: -22.5,-43.5 - parent: 2 - uid: 17259 components: - type: Transform @@ -14305,6 +14338,11 @@ entities: - type: DeviceLinkSink links: - 17526 + - uid: 20571 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 - uid: 21312 components: - type: Transform @@ -14560,15 +14598,15 @@ entities: rot: 1.5707963267948966 rad pos: 73.5,5.5 parent: 2 - - uid: 16022 + - uid: 17525 components: - type: Transform - pos: -22.5,-46.5 + pos: -22.5,-48.5 parent: 2 - - uid: 16023 + - uid: 21378 components: - type: Transform - pos: -18.5,-46.5 + pos: -18.5,-48.5 parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: @@ -14670,6 +14708,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Freezer airlock - type: Transform rot: -1.5707963267948966 rad pos: -17.5,11.5 @@ -14713,7 +14752,7 @@ entities: pos: -16.5,19.5 parent: 2 - type: Door - secondsUntilStateChange: -22665.254 + secondsUntilStateChange: -28399.771 state: Opening - uid: 4196 components: @@ -16299,6 +16338,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Interrogation airlock - type: Transform pos: -16.5,28.5 parent: 2 @@ -16339,6 +16379,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Musician airlock - type: Transform pos: -37.5,-16.5 parent: 2 @@ -16346,6 +16387,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Mime airlock - type: Transform pos: -32.5,-16.5 parent: 2 @@ -16353,6 +16395,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Mime airlock - type: Transform pos: -33.5,-16.5 parent: 2 @@ -16360,6 +16403,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Clown airlock - type: Transform pos: -28.5,-16.5 parent: 2 @@ -16367,6 +16411,8 @@ entities: entities: - uid: 6727 components: + - type: MetaData + name: Virology airlock - type: Transform pos: 56.5,14.5 parent: 2 @@ -16376,6 +16422,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Virology airlock - type: Transform rot: -1.5707963267948966 rad pos: 52.5,14.5 @@ -16394,6 +16441,9 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 894 - uid: 8966 components: - type: Transform @@ -17430,6 +17480,14 @@ entities: parent: 2 - proto: APCBasic entities: + - uid: 762 + components: + - type: MetaData + name: Secure Command APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-39.5 + parent: 2 - uid: 9903 components: - type: MetaData @@ -17688,12 +17746,6 @@ entities: - type: Transform pos: 21.5,-51.5 parent: 2 - - uid: 16841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-39.5 - parent: 2 - uid: 17199 components: - type: MetaData @@ -19431,11 +19483,6 @@ entities: - type: Transform pos: -14.5,11.5 parent: 2 - - uid: 1412 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 2 - uid: 3578 components: - type: Transform @@ -19509,11 +19556,6 @@ entities: - type: Transform pos: 64.5,-53.5 parent: 2 - - uid: 20291 - components: - - type: Transform - pos: -18.5,-46.5 - parent: 2 - uid: 20292 components: - type: Transform @@ -19559,6 +19601,16 @@ entities: - type: Transform pos: 10.5,-4.5 parent: 21128 + - uid: 21406 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - uid: 21407 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 - proto: AtmosFixBlockerMarker entities: - uid: 109 @@ -19765,6 +19817,13 @@ entities: - type: Transform pos: 61.5,-13.5 parent: 2 +- proto: BananaPhoneInstrument + entities: + - uid: 21384 + components: + - type: Transform + pos: -27.39006,-17.601238 + parent: 2 - proto: BannerCargo entities: - uid: 5739 @@ -19798,6 +19857,13 @@ entities: - type: Transform pos: 92.5,-20.5 parent: 2 +- proto: BannerScience + entities: + - uid: 13455 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 - proto: BannerSyndicate entities: - uid: 21050 @@ -20054,11 +20120,6 @@ entities: - type: Transform pos: -37.5,-8.5 parent: 2 - - uid: 141 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - uid: 142 components: - type: Transform @@ -20358,11 +20419,6 @@ entities: - type: Transform pos: -37.5,-8.5 parent: 2 - - uid: 153 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - uid: 154 components: - type: Transform @@ -20710,6 +20766,13 @@ entities: - type: Transform pos: -19.492632,-20.289059 parent: 2 +- proto: BookRandom + entities: + - uid: 21418 + components: + - type: Transform + pos: -30.476517,-45.336197 + parent: 2 - proto: BookSecurity entities: - uid: 166 @@ -21643,11 +21706,26 @@ entities: - type: Transform pos: -1.5,-15.5 parent: 2 + - uid: 765 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 - uid: 937 components: - type: Transform pos: -6.5,-13.5 parent: 2 + - uid: 1072 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 - uid: 1434 components: - type: Transform @@ -21698,6 +21776,16 @@ entities: - type: Transform pos: 12.5,16.5 parent: 2 + - uid: 2307 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: -26.5,-41.5 + parent: 2 - uid: 2737 components: - type: Transform @@ -21763,6 +21851,11 @@ entities: - type: Transform pos: -16.5,-14.5 parent: 2 + - uid: 3451 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 - uid: 3522 components: - type: Transform @@ -21783,6 +21876,11 @@ entities: - type: Transform pos: -28.5,36.5 parent: 2 + - uid: 3684 + components: + - type: Transform + pos: -19.5,-43.5 + parent: 2 - uid: 5520 components: - type: Transform @@ -21843,20 +21941,25 @@ entities: - type: Transform pos: 52.5,-23.5 parent: 2 + - uid: 6471 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 - uid: 6758 components: - type: Transform pos: -46.5,-36.5 parent: 2 - - uid: 6820 + - uid: 6800 components: - type: Transform - pos: 57.5,-27.5 + pos: -22.5,-47.5 parent: 2 - - uid: 6997 + - uid: 6820 components: - type: Transform - pos: -22.5,-42.5 + pos: 57.5,-27.5 parent: 2 - uid: 7370 components: @@ -31568,11 +31671,6 @@ entities: - type: Transform pos: 45.5,-33.5 parent: 2 - - uid: 12691 - components: - - type: Transform - pos: 47.5,-33.5 - parent: 2 - uid: 12692 components: - type: Transform @@ -33268,11 +33366,6 @@ entities: - type: Transform pos: -32.5,9.5 parent: 2 - - uid: 13862 - components: - - type: Transform - pos: -33.5,9.5 - parent: 2 - uid: 13863 components: - type: Transform @@ -35628,45 +35721,15 @@ entities: - type: Transform pos: -16.5,-41.5 parent: 2 - - uid: 14783 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 2 - - uid: 14784 - components: - - type: Transform - pos: -25.5,-41.5 - parent: 2 - - uid: 14785 - components: - - type: Transform - pos: -24.5,-41.5 - parent: 2 - - uid: 14786 - components: - - type: Transform - pos: -23.5,-41.5 - parent: 2 - uid: 14787 components: - type: Transform - pos: -22.5,-41.5 - parent: 2 - - uid: 14788 - components: - - type: Transform - pos: -21.5,-41.5 + pos: -18.5,-47.5 parent: 2 - uid: 14789 components: - type: Transform - pos: -19.5,-41.5 - parent: 2 - - uid: 14790 - components: - - type: Transform - pos: -20.5,-41.5 + pos: 52.5,-37.5 parent: 2 - uid: 14791 components: @@ -36223,6 +36286,31 @@ entities: - type: Transform pos: -43.5,15.5 parent: 2 + - uid: 15988 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 15989 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 16009 + components: + - type: Transform + pos: -32.5,19.5 + parent: 2 + - uid: 16015 + components: + - type: Transform + pos: 89.5,-16.5 + parent: 2 + - uid: 16016 + components: + - type: Transform + pos: 90.5,-16.5 + parent: 2 - uid: 16017 components: - type: Transform @@ -36643,6 +36731,11 @@ entities: - type: Transform pos: 53.5,21.5 parent: 2 + - uid: 16424 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 - uid: 16542 components: - type: Transform @@ -36808,11 +36901,6 @@ entities: - type: Transform pos: -28.5,-44.5 parent: 2 - - uid: 16670 - components: - - type: Transform - pos: -27.5,-44.5 - parent: 2 - uid: 16671 components: - type: Transform @@ -36923,6 +37011,11 @@ entities: - type: Transform pos: -8.5,40.5 parent: 2 + - uid: 17062 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 - uid: 17279 components: - type: Transform @@ -37078,6 +37171,11 @@ entities: - type: Transform pos: 6.5,16.5 parent: 2 + - uid: 20890 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 - uid: 20951 components: - type: Transform @@ -37553,6 +37651,21 @@ entities: - type: Transform pos: 5.5,-1.5 parent: 21128 + - uid: 21413 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - uid: 21414 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 21415 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 - proto: CableApcStack entities: - uid: 264 @@ -37590,6 +37703,11 @@ entities: - type: Transform pos: -3.5073886,-40.86422 parent: 2 + - uid: 21331 + components: + - type: Transform + pos: 63.52819,-32.40197 + parent: 2 - proto: CableHV entities: - uid: 265 @@ -37862,16 +37980,6 @@ entities: - type: Transform pos: -1.5,-3.5 parent: 2 - - uid: 319 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 2 - - uid: 320 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - uid: 321 components: - type: Transform @@ -37937,10 +38045,20 @@ entities: - type: Transform pos: -6.5,-9.5 parent: 2 - - uid: 335 + - uid: 488 components: - type: Transform - pos: -7.5,-9.5 + pos: 0.5,-4.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 0.5,-5.5 parent: 2 - uid: 902 components: @@ -37997,6 +38115,11 @@ entities: - type: Transform pos: 54.5,-41.5 parent: 2 + - uid: 8780 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 - uid: 9236 components: - type: Transform @@ -42077,11 +42200,21 @@ entities: - type: Transform pos: -28.5,35.5 parent: 2 + - uid: 16013 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 - uid: 16799 components: - type: Transform pos: 54.5,-40.5 parent: 2 + - uid: 17060 + components: + - type: Transform + pos: -22.5,55.5 + parent: 2 - uid: 17274 components: - type: Transform @@ -42327,6 +42460,151 @@ entities: - type: Transform pos: 2.5,-8.5 parent: 21128 + - uid: 21322 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 21337 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 21338 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 21339 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - uid: 21340 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - uid: 21341 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 21342 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 21343 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 21344 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 21345 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 21346 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 21347 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 21348 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 21349 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 21350 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 21351 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 21352 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 21353 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 21354 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 21355 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 21356 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 21357 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 21358 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 21359 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 21360 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 21361 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 21362 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 21363 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 21364 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 - proto: CableHVStack entities: - uid: 336 @@ -46631,6 +46909,41 @@ entities: - type: Transform pos: -14.5,36.5 parent: 2 + - uid: 16014 + components: + - type: Transform + pos: 90.5,-21.5 + parent: 2 + - uid: 16018 + components: + - type: Transform + pos: 90.5,-17.5 + parent: 2 + - uid: 16019 + components: + - type: Transform + pos: 90.5,-20.5 + parent: 2 + - uid: 16020 + components: + - type: Transform + pos: 90.5,-19.5 + parent: 2 + - uid: 16021 + components: + - type: Transform + pos: 90.5,-16.5 + parent: 2 + - uid: 16022 + components: + - type: Transform + pos: 90.5,-18.5 + parent: 2 + - uid: 16450 + components: + - type: Transform + pos: 91.5,-16.5 + parent: 2 - uid: 16639 components: - type: Transform @@ -47021,6 +47334,96 @@ entities: - type: Transform pos: 4.5,-6.5 parent: 21128 + - uid: 21422 + components: + - type: Transform + pos: 89.5,-16.5 + parent: 2 + - uid: 21423 + components: + - type: Transform + pos: 92.5,-16.5 + parent: 2 + - uid: 21424 + components: + - type: Transform + pos: 88.5,-16.5 + parent: 2 + - uid: 21425 + components: + - type: Transform + pos: 87.5,-16.5 + parent: 2 + - uid: 21426 + components: + - type: Transform + pos: 87.5,-15.5 + parent: 2 + - uid: 21427 + components: + - type: Transform + pos: 87.5,-14.5 + parent: 2 + - uid: 21428 + components: + - type: Transform + pos: 87.5,-13.5 + parent: 2 + - uid: 21429 + components: + - type: Transform + pos: 87.5,-12.5 + parent: 2 + - uid: 21430 + components: + - type: Transform + pos: 87.5,-11.5 + parent: 2 + - uid: 21431 + components: + - type: Transform + pos: 92.5,-11.5 + parent: 2 + - uid: 21432 + components: + - type: Transform + pos: 92.5,-12.5 + parent: 2 + - uid: 21433 + components: + - type: Transform + pos: 92.5,-13.5 + parent: 2 + - uid: 21434 + components: + - type: Transform + pos: 92.5,-14.5 + parent: 2 + - uid: 21435 + components: + - type: Transform + pos: 92.5,-15.5 + parent: 2 + - uid: 21436 + components: + - type: Transform + pos: 91.5,-11.5 + parent: 2 + - uid: 21437 + components: + - type: Transform + pos: 90.5,-11.5 + parent: 2 + - uid: 21438 + components: + - type: Transform + pos: 89.5,-11.5 + parent: 2 + - uid: 21439 + components: + - type: Transform + pos: 88.5,-11.5 + parent: 2 - proto: CableMVStack entities: - uid: 446 @@ -47145,6 +47548,18 @@ entities: - type: Transform pos: -4.5118675,40.515316 parent: 2 +- proto: CapacitorStockPart + entities: + - uid: 16011 + components: + - type: Transform + pos: 68.645836,-28.537565 + parent: 2 + - uid: 16596 + components: + - type: Transform + pos: 68.64931,-28.332705 + parent: 2 - proto: CaptainIDCard entities: - uid: 4579 @@ -47475,36 +47890,6 @@ entities: - type: Transform pos: -32.5,-19.5 parent: 2 - - uid: 488 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 2 - - uid: 489 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - - uid: 490 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 2 - - uid: 491 - components: - - type: Transform - pos: -33.5,-10.5 - parent: 2 - - uid: 492 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 2 - - uid: 493 - components: - - type: Transform - pos: -31.5,-10.5 - parent: 2 - uid: 494 components: - type: Transform @@ -49710,6 +50095,11 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-13.5 parent: 2 + - uid: 763 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 - uid: 967 components: - type: Transform @@ -51303,16 +51693,6 @@ entities: - type: Transform pos: -19.5,-41.5 parent: 2 - - uid: 14062 - components: - - type: Transform - pos: -20.5,-41.5 - parent: 2 - - uid: 14063 - components: - - type: Transform - pos: -21.5,-41.5 - parent: 2 - uid: 14064 components: - type: Transform @@ -53009,26 +53389,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,38.5 parent: 2 - - uid: 16001 - components: - - type: Transform - pos: -22.5,-44.5 - parent: 2 - - uid: 16003 - components: - - type: Transform - pos: -18.5,-44.5 - parent: 2 - - uid: 16026 - components: - - type: Transform - pos: -18.5,-45.5 - parent: 2 - - uid: 16027 - components: - - type: Transform - pos: -22.5,-45.5 - parent: 2 - uid: 16063 components: - type: Transform @@ -53151,6 +53511,11 @@ entities: - type: Transform pos: 78.5,-6.5 parent: 2 + - uid: 16603 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 - uid: 16693 components: - type: Transform @@ -53171,6 +53536,11 @@ entities: - type: Transform pos: 53.5,-39.5 parent: 2 + - uid: 17059 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 - uid: 17268 components: - type: Transform @@ -53507,6 +53877,21 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-5.5 parent: 21128 + - uid: 21408 + components: + - type: Transform + pos: -22.5,-47.5 + parent: 2 + - uid: 21419 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 21420 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 - proto: Chair entities: - uid: 678 @@ -53968,66 +54353,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-18.5 parent: 2 - - uid: 757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 2 - - uid: 758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-12.5 - parent: 2 - - uid: 759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 2 - - uid: 760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-12.5 - parent: 2 - - uid: 761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-15.5 - parent: 2 - - uid: 762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-15.5 - parent: 2 - - uid: 763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-15.5 - parent: 2 - - uid: 764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-15.5 - parent: 2 - - uid: 765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-15.5 - parent: 2 - - uid: 766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-15.5 - parent: 2 - uid: 767 components: - type: Transform @@ -55131,6 +55456,11 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,15.5 parent: 2 + - uid: 6995 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 - uid: 7055 components: - type: Transform @@ -55391,6 +55721,23 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-29.5 parent: 2 + - uid: 12691 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 + - uid: 13862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 2 + - uid: 14063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-15.5 + parent: 2 - uid: 14730 components: - type: Transform @@ -55409,6 +55756,18 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,35.5 parent: 2 + - uid: 14783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + - uid: 14785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 2 - uid: 14864 components: - type: Transform @@ -55495,17 +55854,17 @@ entities: rot: 3.141592653589793 rad pos: -27.5,37.5 parent: 2 - - uid: 15989 + - uid: 15996 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-42.5 + pos: -21.5,-44.5 parent: 2 - - uid: 16007 + - uid: 15999 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-42.5 + pos: -21.5,-44.5 parent: 2 - uid: 16068 components: @@ -55607,6 +55966,22 @@ entities: - type: Transform pos: 14.5,29.5 parent: 2 + - uid: 16911 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 17055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-44.5 + parent: 2 + - uid: 17063 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 - uid: 17291 components: - type: Transform @@ -56349,6 +56724,12 @@ entities: rot: 3.141592653589793 rad pos: 80.5,-28.5 parent: 2 + - uid: 17017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-41.5 + parent: 2 - uid: 17256 components: - type: Transform @@ -56399,13 +56780,6 @@ entities: - type: Transform pos: 45.5,13.5 parent: 2 -- proto: ChemMasterMachineCircuitboard - entities: - - uid: 12257 - components: - - type: Transform - pos: 45.513554,13.717329 - parent: 2 - proto: ChessBoard entities: - uid: 864 @@ -56445,6 +56819,13 @@ entities: - type: Transform pos: 1.4376678,40.533665 parent: 2 +- proto: CigPackBlue + entities: + - uid: 21390 + components: + - type: Transform + pos: 63.494625,8.599179 + parent: 2 - proto: CircuitImprinter entities: - uid: 7140 @@ -56804,10 +57185,10 @@ entities: - type: Transform pos: 67.5,4.5 parent: 2 - - uid: 16445 + - uid: 21397 components: - type: Transform - pos: -27.5,-43.5 + pos: -28.5,-45.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: @@ -57340,6 +57721,33 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingBackpackDuffel + entities: + - uid: 6997 + components: + - type: Transform + pos: 38.118134,9.430878 + parent: 2 + - type: Storage + storedItems: + 7018: + position: 0,0 + _rotation: South + 7023: + position: 1,0 + _rotation: South + 8934: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 7018 + - 7023 + - 8934 - proto: ClothingBackpackDuffelSurgeryFilled entities: - uid: 6756 @@ -57578,13 +57986,24 @@ entities: - type: Transform pos: 61.483467,15.751372 parent: 2 -- proto: ClothingHeadHatBeret +- proto: ClothingHeadHatBeretMerc entities: - - uid: 894 + - uid: 1687 components: - type: Transform - pos: -35.497017,-10.271466 + pos: -35.49438,-10.161792 parent: 2 +- proto: ClothingHeadHatBeretWarden + entities: + - uid: 7551 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 4957 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHatChickenhead entities: - uid: 16602 @@ -57698,15 +58117,15 @@ entities: parent: 2 - proto: ClothingMaskBee entities: - - uid: 897 + - uid: 16410 components: - type: Transform - pos: -33.50343,-10.393772 + pos: 53.547085,20.505089 parent: 2 - - uid: 16410 + - uid: 21323 components: - type: Transform - pos: 53.547085,20.505089 + pos: -35.36938,-10.505542 parent: 2 - proto: ClothingMaskBreathMedicalSecurity entities: @@ -57762,6 +58181,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingNeckAromanticPin + entities: + - uid: 21369 + components: + - type: Transform + pos: -19.497414,17.596235 + parent: 2 - proto: ClothingNeckBling entities: - uid: 14398 @@ -57804,6 +58230,11 @@ entities: - type: Transform pos: -53.317593,-60.37925 parent: 2 + - uid: 21370 + components: + - type: Transform + pos: -19.622414,17.48686 + parent: 2 - proto: ClothingNeckScarfStripedBlue entities: - uid: 7065 @@ -57867,6 +58298,17 @@ entities: - type: Transform pos: 4.709385,33.519436 parent: 2 +- proto: ClothingOuterClownPriest + entities: + - uid: 335 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 16656 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterHardsuitAncientEVA entities: - uid: 17544 @@ -57902,6 +58344,17 @@ entities: - type: Transform pos: -0.5699043,-27.369982 parent: 2 +- proto: ClothingOuterWinterClown + entities: + - uid: 320 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 16656 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterWinterMime entities: - uid: 8690 @@ -57913,6 +58366,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterWinterMusician + entities: + - uid: 15984 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 971 + - type: Physics + canCollide: False - proto: ClothingOuterWinterRD entities: - uid: 7569 @@ -57969,16 +58432,22 @@ entities: parent: 2 - proto: ClothingShoesClown entities: - - uid: 16603 - components: - - type: Transform - pos: 9.518227,39.757885 - parent: 2 - uid: 16909 components: - type: Transform pos: -30.494411,6.9449363 parent: 2 +- proto: ClothingShoesClownLarge + entities: + - uid: 21383 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 21381 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingShoesWizard entities: - uid: 17264 @@ -58052,6 +58521,16 @@ entities: - type: Transform pos: 12.626299,-51.869915 parent: 2 +- proto: ClothingUniformJumpsuitMusician + entities: + - uid: 15986 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 971 + - type: Physics + canCollide: False - proto: Cobweb1 entities: - uid: 911 @@ -58132,6 +58611,11 @@ entities: - type: Transform pos: 76.5,-22.5 parent: 2 + - uid: 21395 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 - proto: Cobweb2 entities: - uid: 13728 @@ -58230,6 +58714,11 @@ entities: - type: Transform pos: 82.5,-5.5 parent: 2 + - uid: 21394 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 - proto: ComfyChair entities: - uid: 912 @@ -58436,6 +58925,12 @@ entities: - type: Transform pos: 78.5,-23.5 parent: 2 + - uid: 16367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-41.5 + parent: 2 - uid: 17227 components: - type: Transform @@ -59239,6 +59734,43 @@ entities: - type: Transform pos: 29.5,20.5 parent: 2 +- proto: CrateToyBox + entities: + - uid: 21381 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21383 + - 21382 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateTrainingBombs entities: - uid: 4192 @@ -59287,11 +59819,22 @@ entities: - type: Transform pos: 0.47511625,47.57249 parent: 2 - - uid: 6587 + - uid: 21336 components: - type: Transform - pos: 50.481403,-3.423089 + pos: 50.51619,-7.4898477 parent: 2 +- proto: CrazyGlue + entities: + - uid: 21382 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 21381 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Crematorium entities: - uid: 940 @@ -59348,15 +59891,36 @@ entities: parent: 2 - proto: CrowbarRed entities: - - uid: 6461 + - uid: 21391 components: - type: Transform - pos: -41.472588,-63.24912 + pos: -31.385849,-8.650845 parent: 2 - - uid: 6471 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-10.5 + parent: 2 + - uid: 13741 components: - type: Transform - pos: -56.55305,-62.332634 + pos: -31.5,-10.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 12257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-9.5 + parent: 2 + - uid: 18992 + components: + - type: Transform + pos: -31.5,-9.5 parent: 2 - proto: CryoPod entities: @@ -59703,10 +60267,10 @@ entities: parent: 2 - proto: DefaultStationBeaconServerRoom entities: - - uid: 20867 + - uid: 21320 components: - type: Transform - pos: 14.5,-46.5 + pos: 70.5,-28.5 parent: 2 - proto: DefaultStationBeaconService entities: @@ -60325,12 +60889,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-25.5 parent: 2 - - uid: 13455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-36.5 - parent: 2 - uid: 13473 components: - type: Transform @@ -60492,6 +61050,12 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-31.5 parent: 2 + - uid: 21325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-36.5 + parent: 2 - proto: DisposalJunction entities: - uid: 12957 @@ -60689,12 +61253,36 @@ entities: parent: 2 - proto: DisposalPipe entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-40.5 + parent: 2 - uid: 1710 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-20.5 parent: 2 + - uid: 2078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-38.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-42.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-44.5 + parent: 2 - uid: 12924 components: - type: Transform @@ -63592,6 +64180,24 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-20.5 parent: 2 + - uid: 15640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-41.5 + parent: 2 + - uid: 20227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-45.5 + parent: 2 + - uid: 20233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-39.5 + parent: 2 - uid: 20697 components: - type: Transform @@ -63988,8 +64594,50 @@ entities: - type: Transform pos: -43.5,-29.5 parent: 2 + - uid: 21319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-43.5 + parent: 2 + - uid: 21324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-37.5 + parent: 2 + - uid: 21326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 2 + - uid: 21327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + - uid: 21328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-36.5 + parent: 2 + - uid: 21329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-36.5 + parent: 2 - proto: DisposalTrunk entities: + - uid: 2313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-46.5 + parent: 2 - uid: 12922 components: - type: Transform @@ -64442,6 +65090,12 @@ entities: parent: 2 - proto: DisposalYJunction entities: + - uid: 3227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-36.5 + parent: 2 - uid: 8078 components: - type: Transform @@ -64579,16 +65233,27 @@ entities: - type: Transform pos: -39.5,-19.5 parent: 2 + - type: Storage + storedItems: + 15984: + position: 0,0 + _rotation: South + 15986: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 15984 + - 15986 - uid: 972 components: - type: Transform pos: -37.5,-9.5 parent: 2 - - uid: 973 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 2 - uid: 974 components: - type: Transform @@ -64673,7 +65338,7 @@ entities: - uid: 976 components: - type: Transform - pos: -34.517124,-12.3351555 + pos: -35.492134,-15.289576 parent: 2 - proto: DrinkMilkCarton entities: @@ -64703,6 +65368,11 @@ entities: - type: Transform pos: 6.2037125,-19.346163 parent: 2 + - uid: 21368 + components: + - type: Transform + pos: 8.516958,16.625814 + parent: 2 - proto: DrinkShotGlass entities: - uid: 980 @@ -67054,7 +67724,6 @@ entities: parent: 2 - type: DeviceList devices: - - 8780 - 8779 - 8778 - 8777 @@ -67068,6 +67737,9 @@ entities: - 8781 - 20226 - 20228 + - 492 + - 493 + - 491 - type: AtmosDevice joinedGrid: 2 - uid: 17631 @@ -67915,18 +68587,6 @@ entities: - 8779 - type: AtmosDevice joinedGrid: 2 - - uid: 20233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-10.5 - parent: 2 - - type: DeviceList - devices: - - 8937 - - 8780 - - type: AtmosDevice - joinedGrid: 2 - uid: 20234 components: - type: Transform @@ -68677,12 +69337,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-11.5 parent: 2 - - uid: 8780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-11.5 - parent: 2 - uid: 8781 components: - type: Transform @@ -68972,6 +69626,36 @@ entities: - 8387 - proto: FirelockEdge entities: + - uid: 491 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 894 + - 17629 + - 17628 + - uid: 492 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 894 + - 17629 + - 17628 + - uid: 493 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 894 + - 17629 + - 17628 - uid: 7175 components: - type: Transform @@ -69172,16 +69856,6 @@ entities: - type: Transform pos: 80.5,-24.5 parent: 2 - - uid: 16367 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 2 - - uid: 16368 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 2 - uid: 16369 components: - type: Transform @@ -69212,6 +69886,16 @@ entities: rot: 1.5707963267948966 rad pos: 77.5,-13.5 parent: 2 + - uid: 17057 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 + - uid: 17058 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 - uid: 17610 components: - type: Transform @@ -70919,14 +71603,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 1072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,13.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 1073 components: - type: Transform @@ -70994,6 +71670,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 15990 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 16473 components: - type: Transform @@ -71337,6 +72020,18 @@ entities: - type: Transform pos: -18.579067,15.65409 parent: 2 +- proto: FoodDonkpocket + entities: + - uid: 14790 + components: + - type: Transform + pos: -56.30128,-62.285282 + parent: 2 + - uid: 15030 + components: + - type: Transform + pos: -56.55128,-62.379032 + parent: 2 - proto: FoodDonutChaos entities: - uid: 20368 @@ -71437,6 +72132,13 @@ entities: - type: Transform pos: -41.513218,-60.76034 parent: 2 +- proto: FoodPizzaMoldySlice + entities: + - uid: 21371 + components: + - type: Transform + pos: -54.548683,9.681784 + parent: 2 - proto: FoodPlateSmallTrash entities: - uid: 16481 @@ -71710,14 +72412,6 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 16911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 16912 components: - type: Transform @@ -71819,6 +72513,8 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 17657 components: - type: Transform @@ -73416,6 +74112,8 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-38.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeFourway entities: - uid: 7044 @@ -74092,6 +74790,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 17003 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 - uid: 17685 components: - type: Transform @@ -86885,6 +87588,8 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-3.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 20615 components: - type: Transform @@ -86896,35 +87601,47 @@ entities: - type: Transform pos: 51.5,-36.5 parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 21104 components: - type: Transform pos: 51.5,-37.5 parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 21107 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-38.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21108 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-37.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21109 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-36.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21110 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-35.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeTJunction entities: - uid: 575 @@ -87042,11 +87759,15 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12470 components: - type: Transform pos: 51.5,-35.5 parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 17684 components: - type: Transform @@ -88813,6 +89534,8 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPort entities: - uid: 1198 @@ -88955,6 +89678,13 @@ entities: parent: 21128 - type: AtmosDevice joinedGrid: 21128 + - uid: 21393 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: GasPressurePump entities: - uid: 1204 @@ -89140,6 +89870,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasThermoMachineFreezer entities: - uid: 1220 @@ -89911,6 +90643,9 @@ entities: - type: Transform pos: -32.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 894 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -90536,6 +91271,8 @@ entities: - 21113 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 21241 components: - type: Transform @@ -90574,6 +91311,17 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 15992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8474 + - type: AtmosDevice + joinedGrid: 2 - uid: 17708 components: - type: Transform @@ -91257,6 +92005,9 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 894 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -91865,6 +92616,8 @@ entities: - 21113 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GeneratorBasic entities: - uid: 5917 @@ -91929,6 +92682,21 @@ entities: parent: 2 - proto: Grille entities: + - uid: 759 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 - uid: 1229 components: - type: Transform @@ -94153,12 +94921,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-40.5 parent: 2 - - uid: 6995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-46.5 - parent: 2 - uid: 7092 components: - type: Transform @@ -94831,57 +95593,25 @@ entities: - type: Transform pos: 19.5,24.5 parent: 2 - - uid: 15984 - components: - - type: Transform - pos: -23.5,-45.5 - parent: 2 - uid: 15991 components: - type: Transform pos: -17.5,-44.5 parent: 2 - - uid: 15992 - components: - - type: Transform - pos: -21.5,-44.5 - parent: 2 - uid: 15994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-46.5 - parent: 2 - - uid: 16009 - components: - - type: Transform - pos: -19.5,-44.5 - parent: 2 - - uid: 16010 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 2 - - uid: 16012 - components: - - type: Transform - pos: -21.5,-45.5 + pos: -24.5,-46.5 parent: 2 - - uid: 16021 + - uid: 16006 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-46.5 + pos: -16.5,-44.5 parent: 2 - - uid: 16024 + - uid: 16007 components: - type: Transform - pos: -19.5,-45.5 - parent: 2 - - uid: 16025 - components: - - type: Transform - pos: -17.5,-45.5 + pos: -16.5,-48.5 parent: 2 - uid: 16071 components: @@ -95538,11 +96268,6 @@ entities: - type: Transform pos: -33.5,-48.5 parent: 2 - - uid: 17003 - components: - - type: Transform - pos: -25.5,-48.5 - parent: 2 - uid: 17004 components: - type: Transform @@ -95706,40 +96431,10 @@ entities: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 17054 - components: - - type: Transform - pos: 44.5,25.5 - parent: 2 - - uid: 17055 - components: - - type: Transform - pos: 44.5,27.5 - parent: 2 - uid: 17056 components: - type: Transform - pos: 44.5,29.5 - parent: 2 - - uid: 17057 - components: - - type: Transform - pos: 46.5,28.5 - parent: 2 - - uid: 17058 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - - uid: 17059 - components: - - type: Transform - pos: 46.5,25.5 - parent: 2 - - uid: 17060 - components: - - type: Transform - pos: 46.5,23.5 + pos: -17.5,-43.5 parent: 2 - uid: 17208 components: @@ -95982,11 +96677,6 @@ entities: - type: Transform pos: -43.5,21.5 parent: 2 - - uid: 20571 - components: - - type: Transform - pos: 92.5,-11.5 - parent: 2 - uid: 20620 components: - type: Transform @@ -96227,16 +96917,6 @@ entities: - type: Transform pos: -18.5,54.5 parent: 2 - - uid: 20795 - components: - - type: Transform - pos: 91.5,-11.5 - parent: 2 - - uid: 20881 - components: - - type: Transform - pos: 91.5,-16.5 - parent: 2 - uid: 20884 components: - type: Transform @@ -96252,11 +96932,6 @@ entities: - type: Transform pos: 88.5,-16.5 parent: 2 - - uid: 20890 - components: - - type: Transform - pos: 92.5,-16.5 - parent: 2 - uid: 20891 components: - type: Transform @@ -96282,25 +96957,20 @@ entities: - type: Transform pos: 87.5,-11.5 parent: 2 - - uid: 20896 - components: - - type: Transform - pos: 92.5,-12.5 - parent: 2 - uid: 20897 components: - type: Transform - pos: 92.5,-13.5 + pos: -17.5,-46.5 parent: 2 - uid: 20898 components: - type: Transform - pos: 92.5,-15.5 + pos: -19.5,-46.5 parent: 2 - uid: 20899 components: - type: Transform - pos: 92.5,-14.5 + pos: -19.5,-47.5 parent: 2 - uid: 20910 components: @@ -96435,6 +97105,71 @@ entities: - type: Transform pos: 5.5,-2.5 parent: 21128 + - uid: 21386 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 21403 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 21404 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 21405 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 21411 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 2 + - uid: 21440 + components: + - type: Transform + pos: 91.5,-11.5 + parent: 2 + - uid: 21441 + components: + - type: Transform + pos: 92.5,-11.5 + parent: 2 + - uid: 21442 + components: + - type: Transform + pos: 92.5,-12.5 + parent: 2 + - uid: 21443 + components: + - type: Transform + pos: 92.5,-13.5 + parent: 2 + - uid: 21444 + components: + - type: Transform + pos: 92.5,-14.5 + parent: 2 + - uid: 21445 + components: + - type: Transform + pos: 92.5,-15.5 + parent: 2 + - uid: 21446 + components: + - type: Transform + pos: 92.5,-16.5 + parent: 2 + - uid: 21447 + components: + - type: Transform + pos: 91.5,-16.5 + parent: 2 - proto: GrilleBroken entities: - uid: 14396 @@ -96489,12 +97224,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,31.5 parent: 2 - - uid: 16019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-43.5 - parent: 2 - uid: 16082 components: - type: Transform @@ -96506,6 +97235,11 @@ entities: - type: Transform pos: 66.5,14.5 parent: 2 + - uid: 16368 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 - uid: 16414 components: - type: Transform @@ -96527,12 +97261,6 @@ entities: - type: Transform pos: -34.5,31.5 parent: 2 - - uid: 17017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-44.5 - parent: 2 - uid: 17310 components: - type: Transform @@ -96698,6 +97426,11 @@ entities: - type: Transform pos: 8.5,4.5 parent: 21128 + - uid: 21417 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 - proto: GrilleSpawner entities: - uid: 5534 @@ -96915,6 +97648,11 @@ entities: - type: Transform pos: -24.5,-45.5 parent: 2 + - uid: 15997 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 - uid: 15998 components: - type: Transform @@ -96925,15 +97663,15 @@ entities: - type: Transform pos: -16.5,-43.5 parent: 2 - - uid: 16013 + - uid: 16001 components: - type: Transform - pos: -20.5,-45.5 + pos: -20.5,-46.5 parent: 2 - - uid: 16016 + - uid: 16003 components: - type: Transform - pos: -20.5,-44.5 + pos: -20.5,-47.5 parent: 2 - uid: 16735 components: @@ -97110,16 +97848,6 @@ entities: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 17015 - components: - - type: Transform - pos: -25.5,-43.5 - parent: 2 - - uid: 17016 - components: - - type: Transform - pos: -24.5,-44.5 - parent: 2 - uid: 17026 components: - type: Transform @@ -97180,31 +97908,6 @@ entities: - type: Transform pos: 44.5,23.5 parent: 2 - - uid: 17062 - components: - - type: Transform - pos: 44.5,24.5 - parent: 2 - - uid: 17063 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - - uid: 17064 - components: - - type: Transform - pos: 44.5,28.5 - parent: 2 - - uid: 17065 - components: - - type: Transform - pos: 46.5,27.5 - parent: 2 - - uid: 17066 - components: - - type: Transform - pos: 46.5,24.5 - parent: 2 - uid: 20267 components: - type: Transform @@ -97390,6 +98093,11 @@ entities: - type: Transform pos: 55.5,-44.5 parent: 2 + - uid: 21385 + components: + - type: Transform + pos: -26.5,-45.5 + parent: 2 - proto: GunSafeDisabler entities: - uid: 16916 @@ -97476,6 +98184,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Armory door - type: Transform pos: 1.5,30.5 parent: 2 @@ -97483,6 +98192,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Armory door - type: Transform pos: 1.5,31.5 parent: 2 @@ -97500,6 +98210,7 @@ entities: components: - type: MetaData flags: PvsPriority + name: Gravity door - type: Transform pos: 52.5,-37.5 parent: 2 @@ -97721,12 +98432,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-8.5 parent: 2 - - uid: 18992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 2 - uid: 18993 components: - type: Transform @@ -97757,6 +98462,11 @@ entities: - type: Transform pos: 3.4828591,51.077652 parent: 2 + - uid: 21332 + components: + - type: Transform + pos: 79.09755,-5.414666 + parent: 2 - proto: HydroponicsToolHatchet entities: - uid: 1446 @@ -98583,6 +99293,32 @@ entities: - type: Transform pos: 5.4943604,41.49463 parent: 2 +- proto: LeavesCannabis + entities: + - uid: 7018 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 6997 + - type: Physics + canCollide: False + - uid: 7023 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 6997 + - type: Physics + canCollide: False + - uid: 8934 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 6997 + - type: Physics + canCollide: False - proto: LGBTQHandyFlag entities: - uid: 17207 @@ -98777,8 +99513,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -98797,6 +99533,8 @@ entities: ents: - 8188 - 8189 + - 320 + - 335 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -99175,8 +99913,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -99193,10 +99931,10 @@ entities: showEnts: False occludes: True ents: - - 9269 - - 8690 - - 8192 - 9270 + - 8192 + - 8690 + - 9269 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -99445,8 +100183,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8977377 - - 7.139109 + - 1.8978093 + - 7.139378 - 0 - 0 - 0 @@ -99463,9 +100201,10 @@ entities: showEnts: False occludes: True ents: - - 6125 - - 4983 - 4982 + - 4983 + - 7551 + - 6125 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -99886,10 +100625,10 @@ entities: parent: 2 - proto: MedkitAdvancedFilled entities: - - uid: 20484 + - uid: 2312 components: - type: Transform - pos: 50.532883,-2.98625 + pos: 50.526608,-3.4690142 parent: 2 - proto: MedkitBruteFilled entities: @@ -100123,6 +100862,25 @@ entities: - type: Transform pos: 55.51022,1.6958185 parent: 2 +- proto: Memorial + entities: + - uid: 15933 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 +- proto: MicroManipulatorStockPart + entities: + - uid: 16010 + components: + - type: Transform + pos: 68.27431,-28.707705 + parent: 2 + - uid: 16426 + components: + - type: Transform + pos: 68.38368,-28.50458 + parent: 2 - proto: MicrophoneInstrument entities: - uid: 4648 @@ -100906,29 +101664,6 @@ entities: We are leaving this in your qualified hands and to your discretion, [italic]Best of wishes, [bold]NanoTrasen technical build team.[/bold][/italic] - - uid: 5458 - components: - - type: Transform - pos: -2.5050802,15.474933 - parent: 2 - - type: Paper - 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] - uid: 5476 components: - type: Transform @@ -100979,6 +101714,27 @@ entities: - type: Transform pos: 49.534363,-24.323221 parent: 2 + - uid: 21421 + components: + - type: Transform + pos: -2.5038486,15.512904 + parent: 2 + - type: Paper + stampState: paper_stamp-ok + stampedBy: + - 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 a substation or APC becomes damaged or wears out over time.[/italics] + + + [italic]Best wishes, [bold]CentComm.[/bold][/italic] - proto: PaperBin10 entities: - uid: 1527 @@ -101283,11 +102039,6 @@ entities: - type: Transform pos: 19.503874,-55.494072 parent: 2 - - uid: 15933 - components: - - type: Transform - pos: -31.43608,-10.504173 - parent: 2 - uid: 15934 components: - type: Transform @@ -101308,6 +102059,11 @@ entities: - type: Transform pos: -37.506485,-61.39018 parent: 2 + - uid: 20867 + components: + - type: Transform + pos: -35.483967,-8.599292 + parent: 2 - proto: PhoneInstrument entities: - uid: 4062 @@ -101340,6 +102096,13 @@ entities: - type: Transform pos: 36.49126,20.946766 parent: 2 +- proto: PillCanisterTricordrazine + entities: + - uid: 21372 + components: + - type: Transform + pos: 45.033794,13.53962 + parent: 2 - proto: PlaqueAtmos entities: - uid: 1548 @@ -101529,6 +102292,11 @@ entities: parent: 2 - proto: PlushieLizard entities: + - uid: 973 + components: + - type: Transform + pos: -31.722744,-8.468524 + parent: 2 - uid: 1556 components: - type: Transform @@ -101636,6 +102404,11 @@ entities: parent: 2 - proto: PlushieMoth entities: + - uid: 897 + components: + - type: Transform + pos: -31.420658,-8.312274 + parent: 2 - uid: 20574 components: - type: Transform @@ -101861,6 +102634,13 @@ entities: - type: Transform pos: -37.5,-46.5 parent: 2 +- proto: PosterLegitMime + entities: + - uid: 21448 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 - proto: PosterLegitSafetyMothEpi entities: - uid: 20517 @@ -101868,12 +102648,12 @@ entities: - type: Transform pos: 60.5,-2.5 parent: 2 -- proto: PotatoAIChip +- proto: PotatoAI entities: - - uid: 17525 + - uid: 21374 components: - type: Transform - pos: 68.52626,-28.483797 + pos: 15.488632,-56.545853 parent: 2 - proto: PottedPlantRandom entities: @@ -101987,11 +102767,6 @@ entities: - type: Transform pos: -37.5,-10.5 parent: 2 - - uid: 1605 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 2 - uid: 1606 components: - type: Transform @@ -102297,15 +103072,15 @@ entities: - type: Transform pos: -11.5,38.5 parent: 2 - - uid: 16005 + - uid: 16243 components: - type: Transform - pos: -20.5,-42.5 + pos: 76.5,-23.5 parent: 2 - - uid: 16243 + - uid: 17054 components: - type: Transform - pos: 76.5,-23.5 + pos: -20.5,-44.5 parent: 2 - uid: 20389 components: @@ -102319,10 +103094,10 @@ entities: parent: 21128 - proto: PottedPlantRandomPlastic entities: - - uid: 7551 + - uid: 21380 components: - type: Transform - pos: 61.5,-16.5 + pos: 61.5,-18.5 parent: 2 - proto: PottedPlantRD entities: @@ -102340,6 +103115,12 @@ entities: parent: 2 - proto: PowerCellRecharger entities: + - uid: 319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 2 - uid: 1612 components: - type: Transform @@ -102977,13 +103758,6 @@ entities: - type: Transform pos: -36.5,-8.5 parent: 2 - - uid: 1687 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-8.5 - parent: 2 - uid: 1688 components: - type: MetaData @@ -103908,14 +104682,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-23.5 parent: 2 - - uid: 6800 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-10.5 - parent: 2 - uid: 6889 components: - type: MetaData @@ -104414,6 +105180,11 @@ entities: parent: 2 - proto: PoweredSmallLight entities: + - uid: 3272 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 - uid: 10543 components: - type: Transform @@ -104544,6 +105315,12 @@ entities: - type: Transform pos: 15.5,37.5 parent: 2 + - uid: 16670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-10.5 + parent: 2 - uid: 17215 components: - type: Transform @@ -104583,6 +105360,24 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-5.5 parent: 21128 + - uid: 21409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-41.5 + parent: 2 + - uid: 21410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-41.5 + parent: 2 + - uid: 21416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-42.5 + parent: 2 - proto: PoweredSmallLightEmpty entities: - uid: 16926 @@ -104622,6 +105417,12 @@ entities: parent: 2 - proto: Rack entities: + - uid: 1605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-31.5 + parent: 2 - uid: 1721 components: - type: Transform @@ -104976,12 +105777,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,41.5 parent: 2 - - uid: 16596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,39.5 - parent: 2 - uid: 16938 components: - type: Transform @@ -105030,6 +105825,11 @@ entities: - type: Transform pos: 7.5,0.5 parent: 21128 + - uid: 21335 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 2 - proto: RadiationCollectorFullTank entities: - uid: 1731 @@ -105112,6 +105912,13 @@ entities: - type: Transform pos: 7.5,-1.5 parent: 2 +- proto: RagItem + entities: + - uid: 21333 + components: + - type: Transform + pos: -42.63141,17.878048 + parent: 2 - proto: Railing entities: - uid: 1747 @@ -108037,6 +108844,35 @@ entities: - type: Transform pos: 41.5,-31.5 parent: 2 +- proto: RandomProduce + entities: + - uid: 21375 + components: + - type: Transform + pos: -27.5,13.5 + parent: 2 +- proto: RandomSnacks + entities: + - uid: 16008 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 21376 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 21379 + components: + - type: Transform + pos: -46.5,-22.5 + parent: 2 + - uid: 21392 + components: + - type: Transform + pos: -41.5,-63.5 + parent: 2 - proto: RandomSoap entities: - uid: 8247 @@ -108787,6 +109623,16 @@ entities: parent: 2 - proto: ReinforcedWindow entities: + - uid: 758 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 2 - uid: 1963 components: - type: Transform @@ -110149,6 +110995,11 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-63.5 parent: 2 + - uid: 6461 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 2 - uid: 6523 components: - type: Transform @@ -110464,6 +111315,11 @@ entities: - type: Transform pos: -34.5,37.5 parent: 2 + - uid: 14786 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 - uid: 14953 components: - type: Transform @@ -110647,45 +111503,15 @@ entities: - type: Transform pos: -9.5,41.5 parent: 2 - - uid: 15986 - components: - - type: Transform - pos: -23.5,-45.5 - parent: 2 - - uid: 15987 - components: - - type: Transform - pos: -19.5,-45.5 - parent: 2 - uid: 15993 components: - type: Transform pos: -17.5,-44.5 parent: 2 - - uid: 15999 - components: - - type: Transform - pos: -21.5,-45.5 - parent: 2 - - uid: 16002 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 2 - - uid: 16011 - components: - - type: Transform - pos: -19.5,-44.5 - parent: 2 - - uid: 16014 - components: - - type: Transform - pos: -17.5,-45.5 - parent: 2 - - uid: 16018 + - uid: 16005 components: - type: Transform - pos: -21.5,-44.5 + pos: -17.5,-43.5 parent: 2 - uid: 16075 components: @@ -110835,6 +111661,11 @@ entities: - type: Transform pos: 73.5,-35.5 parent: 2 + - uid: 17015 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 - uid: 17254 components: - type: Transform @@ -110878,6 +111709,11 @@ entities: - type: Transform pos: 80.5,-36.5 parent: 2 + - uid: 20881 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 - uid: 20886 components: - type: Transform @@ -110902,13 +111738,23 @@ entities: rot: 3.141592653589793 rad pos: 93.5,-15.5 parent: 2 + - uid: 21377 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 21402 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 3270 components: - type: MetaData desc: Bolts all doors and windoors in the HoP's room. - name: Lockdown button + name: Lockdown remote - type: Transform pos: 40.97135,-23.35855 parent: 2 @@ -110916,8 +111762,16 @@ entities: linkedPorts: 3516: - Pressed: DoorBolt + - Pressed: Close + - Pressed: AutoClose 49: - Pressed: DoorBolt + - Pressed: AutoClose + - Pressed: Close + 3489: + - Pressed: Close + - Pressed: AutoClose + - Pressed: DoorBolt - uid: 4982 components: - type: MetaData @@ -111076,11 +111930,23 @@ entities: - type: Transform pos: 71.5,-19.5 parent: 2 + - uid: 16012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-34.5 + parent: 2 - uid: 16166 components: - type: Transform pos: 65.5,-27.5 parent: 2 + - uid: 16445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-34.5 + parent: 2 - uid: 16617 components: - type: Transform @@ -111273,6 +112139,23 @@ entities: - type: Transform pos: -3.5,51.5 parent: 2 +- proto: ShardGlass + entities: + - uid: 6994 + components: + - type: Transform + pos: 37.799515,9.717336 + parent: 2 + - uid: 15987 + components: + - type: Transform + pos: 37.220566,10.453447 + parent: 2 + - uid: 17064 + components: + - type: Transform + pos: 38.60945,9.960392 + parent: 2 - proto: SheetGlass entities: - uid: 2054 @@ -112428,16 +113311,6 @@ entities: linkedPorts: 6: - Pressed: DoorBolt - - uid: 2078 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5: - - Pressed: DoorBolt - uid: 2079 components: - type: Transform @@ -112700,6 +113573,8 @@ entities: - Pressed: Toggle - uid: 16704 components: + - type: MetaData + name: Shutters button - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-36.5 @@ -113656,17 +114531,15 @@ entities: - type: Transform pos: 66.5,-3.5 parent: 2 - - uid: 15990 + - uid: 16026 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-43.5 + pos: -21.5,-45.5 parent: 2 - - uid: 16008 + - uid: 17016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-43.5 + pos: -19.5,-45.5 parent: 2 - proto: SignEVA entities: @@ -114163,6 +115036,8 @@ entities: parent: 2 - uid: 10575 components: + - type: MetaData + name: Secure Command SMES - type: Transform pos: 54.5,-40.5 parent: 2 @@ -114779,11 +115654,6 @@ entities: - type: Transform pos: -49.5,-6.5 parent: 2 - - uid: 13741 - components: - - type: Transform - pos: -47.5,-7.5 - parent: 2 - uid: 13742 components: - type: Transform @@ -114794,6 +115664,11 @@ entities: - type: Transform pos: -48.5,-8.5 parent: 2 + - uid: 16201 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 - proto: SpawnMobCatException entities: - uid: 6742 @@ -115212,11 +116087,6 @@ entities: - type: Transform pos: -36.5,-9.5 parent: 2 - - uid: 15640 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 2 - uid: 15641 components: - type: Transform @@ -115661,6 +116531,23 @@ entities: - type: Transform pos: 55.5,-0.5 parent: 2 +- proto: StationBeaconPart + entities: + - uid: 21365 + components: + - type: Transform + pos: 30.64239,-1.8809888 + parent: 2 + - uid: 21366 + components: + - type: Transform + pos: 30.439264,-2.1622388 + parent: 2 + - uid: 21367 + components: + - type: Transform + pos: 30.54864,-2.0372388 + parent: 2 - proto: StationMap entities: - uid: 13592 @@ -115769,12 +116656,6 @@ entities: - type: Transform pos: -34.5,24.5 parent: 2 - - uid: 15030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,26.5 - parent: 2 - uid: 16635 components: - type: Transform @@ -116019,6 +116900,8 @@ entities: parent: 2 - uid: 10576 components: + - type: MetaData + name: Secure Command Substation - type: Transform pos: 54.5,-41.5 parent: 2 @@ -116899,17 +117782,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Dorm room 3 - - uid: 9042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm room 2 - uid: 9043 components: - type: Transform @@ -118036,16 +118908,6 @@ entities: - SurveillanceCameraService nameSet: True id: Janitorial closet - - uid: 8934 - components: - - type: Transform - pos: -21.5,-39.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel - uid: 8935 components: - type: Transform @@ -118155,6 +119017,16 @@ entities: - SurveillanceCameraService nameSet: True id: North boxing arena + - uid: 21412 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chapel - proto: SurveillanceCameraSupply entities: - uid: 9014 @@ -118306,6 +119178,13 @@ entities: - type: Transform pos: -34.495705,-44.393948 parent: 2 +- proto: SynthesizerInstrument + entities: + - uid: 21334 + components: + - type: Transform + pos: 47.788773,21.30058 + parent: 2 - proto: Syringe entities: - uid: 7064 @@ -118332,6 +119211,12 @@ entities: parent: 2 - proto: Table entities: + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-8.5 + parent: 2 - uid: 1413 components: - type: Transform @@ -118568,6 +119453,12 @@ entities: - type: Transform pos: -29.5,-33.5 parent: 2 + - uid: 3237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 2 - uid: 3705 components: - type: Transform @@ -118843,6 +119734,12 @@ entities: - type: Transform pos: -39.5,-45.5 parent: 2 + - uid: 6587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-8.5 + parent: 2 - uid: 6684 components: - type: Transform @@ -119004,6 +119901,11 @@ entities: - type: Transform pos: 52.5,22.5 parent: 2 + - uid: 16422 + components: + - type: Transform + pos: 63.5,8.5 + parent: 2 - uid: 16463 components: - type: Transform @@ -119090,6 +119992,12 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-29.5 parent: 2 + - uid: 21330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-32.5 + parent: 2 - proto: TableCarpet entities: - uid: 2218 @@ -120422,18 +121330,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-2.5 parent: 2 - - uid: 2307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-12.5 - parent: 2 - - uid: 2308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-12.5 - parent: 2 - uid: 2309 components: - type: Transform @@ -120449,16 +121345,6 @@ entities: - type: Transform pos: -35.5,-10.5 parent: 2 - - uid: 2312 - components: - - type: Transform - pos: -31.5,-10.5 - parent: 2 - - uid: 2313 - components: - - type: Transform - pos: -33.5,-10.5 - parent: 2 - uid: 2314 components: - type: Transform @@ -120697,6 +121583,16 @@ entities: - type: Transform pos: -25.5,28.5 parent: 2 + - uid: 14062 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - uid: 14784 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 - uid: 14991 components: - type: Transform @@ -120785,6 +121681,13 @@ entities: - type: Transform pos: 81.5,-35.5 parent: 2 +- proto: TargetClown + entities: + - uid: 16841 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 - proto: TargetSyndicate entities: - uid: 21066 @@ -121071,6 +121974,13 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-7.5 parent: 2 + - uid: 20896 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-41.5 + parent: 2 - proto: ToiletEmpty entities: - uid: 2320 @@ -121425,10 +122335,10 @@ entities: parent: 2 - proto: VariantCubeBox entities: - - uid: 3227 + - uid: 20484 components: - type: Transform - pos: 59.58202,19.304348 + pos: 59.52491,19.181688 parent: 2 - proto: VehicleKeyATV entities: @@ -129098,8 +130008,7 @@ entities: - type: MetaData flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-42.5 + pos: -27.5,-45.5 parent: 2 - uid: 5774 components: @@ -129136,30 +130045,6 @@ entities: - type: Transform pos: -34.5,-46.5 parent: 2 - - uid: 5781 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-42.5 - parent: 2 - - uid: 5783 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-42.5 - parent: 2 - - uid: 5784 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-42.5 - parent: 2 - uid: 5787 components: - type: MetaData @@ -132204,14 +133089,6 @@ entities: - type: Transform pos: 56.5,-14.5 parent: 2 - - uid: 6994 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-43.5 - parent: 2 - uid: 6996 components: - type: MetaData @@ -132316,14 +133193,6 @@ entities: rot: -1.5707963267948966 rad pos: 64.5,19.5 parent: 2 - - uid: 7018 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-43.5 - parent: 2 - uid: 7019 components: - type: MetaData @@ -136669,59 +137538,54 @@ entities: - type: Transform pos: -44.5,15.5 parent: 2 - - uid: 15988 + - uid: 15995 components: - type: MetaData flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-46.5 + pos: -23.5,-45.5 parent: 2 - - uid: 15995 + - uid: 16002 components: - type: MetaData flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-43.5 + pos: -21.5,-45.5 parent: 2 - - uid: 15996 + - uid: 16004 components: - type: MetaData flags: PvsPriority - type: Transform - pos: -23.5,-43.5 + pos: -19.5,-45.5 parent: 2 - - uid: 15997 + - uid: 16023 components: - type: MetaData flags: PvsPriority - type: Transform - pos: -17.5,-43.5 + pos: -23.5,-44.5 parent: 2 - - uid: 16006 + - uid: 16024 components: - type: MetaData flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-46.5 + pos: -24.5,-44.5 parent: 2 - - uid: 16015 + - uid: 16025 components: - type: MetaData flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-46.5 + pos: -20.5,-45.5 parent: 2 - - uid: 16020 + - uid: 16027 components: - type: MetaData flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-46.5 + pos: -25.5,-44.5 parent: 2 - uid: 16056 components: @@ -137040,13 +137904,6 @@ entities: - type: Transform pos: 16.5,26.5 parent: 2 - - uid: 16422 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-43.5 - parent: 2 - uid: 16423 components: - type: MetaData @@ -137054,13 +137911,6 @@ entities: - type: Transform pos: -26.5,-44.5 parent: 2 - - uid: 16424 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-46.5 - parent: 2 - uid: 16425 components: - type: MetaData @@ -137068,13 +137918,6 @@ entities: - type: Transform pos: -27.5,-46.5 parent: 2 - - uid: 16426 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-45.5 - parent: 2 - uid: 16427 components: - type: MetaData @@ -138049,6 +138892,13 @@ entities: - type: Transform pos: -41.5,24.5 parent: 2 + - uid: 20795 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-45.5 + parent: 2 - uid: 20879 components: - type: MetaData @@ -138225,6 +139075,41 @@ entities: - type: Transform pos: 50.5,-39.5 parent: 2 + - uid: 21396 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-44.5 + parent: 2 + - uid: 21398 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 21399 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-48.5 + parent: 2 + - uid: 21400 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-48.5 + parent: 2 + - uid: 21401 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-48.5 + parent: 2 - proto: WallShuttle entities: - uid: 21142 @@ -140581,13 +141466,6 @@ entities: - type: Transform pos: -26.5,-40.5 parent: 2 - - uid: 3451 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-40.5 - parent: 2 - uid: 3455 components: - type: MetaData @@ -140617,13 +141495,6 @@ entities: - type: Transform pos: -22.5,-40.5 parent: 2 - - uid: 3573 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-40.5 - parent: 2 - uid: 3581 components: - type: MetaData @@ -140631,13 +141502,6 @@ entities: - type: Transform pos: -18.5,-40.5 parent: 2 - - uid: 3684 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-40.5 - parent: 2 - uid: 3685 components: - type: MetaData @@ -141322,6 +142186,13 @@ entities: - type: Transform pos: 12.5,25.5 parent: 2 + - uid: 5781 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-42.5 + parent: 2 - uid: 5782 components: - type: MetaData @@ -142310,6 +143181,20 @@ entities: - type: Transform pos: 13.5,33.5 parent: 2 + - uid: 17065 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-42.5 + parent: 2 + - uid: 17066 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-42.5 + parent: 2 - uid: 20297 components: - type: MetaData @@ -142348,6 +143233,20 @@ entities: parent: 2 - proto: WallSolidRust entities: + - uid: 757 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 766 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-41.5 + parent: 2 - uid: 2704 components: - type: MetaData @@ -143236,14 +144135,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-5.5 parent: 2 - - uid: 3237 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-11.5 - parent: 2 - uid: 3238 components: - type: MetaData @@ -143284,14 +144175,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-1.5 parent: 2 - - uid: 3272 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-11.5 - parent: 2 - uid: 3277 components: - type: MetaData @@ -143708,6 +144591,13 @@ entities: rot: 3.141592653589793 rad pos: 86.5,-11.5 parent: 2 + - uid: 3573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-42.5 + parent: 2 - uid: 3618 components: - type: MetaData @@ -144208,6 +145098,20 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,27.5 parent: 2 + - uid: 5458 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-41.5 + parent: 2 + - uid: 5783 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-42.5 + parent: 2 - uid: 5786 components: - type: MetaData @@ -145131,6 +146035,13 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,4.5 parent: 2 + - uid: 20291 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-42.5 + parent: 2 - uid: 20298 components: - type: MetaData @@ -145160,6 +146071,13 @@ entities: - type: Transform pos: 83.5,-32.5 parent: 2 + - uid: 21388 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-40.5 + parent: 2 - proto: WallWeaponCapacitorRecharger entities: - uid: 13591 @@ -145336,13 +146254,6 @@ entities: - type: Transform pos: 80.5,-29.5 parent: 2 -- proto: WardrobeMixedFilled - entities: - - uid: 3463 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 2 - proto: WardrobePrisonFilled entities: - uid: 1709 @@ -145901,6 +146812,9 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-22.5 parent: 2 + - type: DeviceLinkSink + links: + - 3270 - uid: 3490 components: - type: Transform @@ -146133,6 +147047,12 @@ entities: rot: 3.141592653589793 rad pos: 65.5,-50.5 parent: 2 + - uid: 21321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-24.5 + parent: 2 - proto: WindoorSecureArmoryLocked entities: - uid: 4751 @@ -146239,12 +147159,6 @@ entities: - type: Transform pos: -32.5,-37.5 parent: 2 - - uid: 16201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-24.5 - parent: 2 - proto: WindoorSecureChemistryLocked entities: - uid: 6029 @@ -147226,6 +148140,13 @@ entities: - type: Transform pos: 81.5,-26.5 parent: 2 + - uid: 21389 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-40.5 + parent: 2 - proto: WoodenSupport entities: - uid: 16157 @@ -147296,4 +148217,9 @@ entities: - type: Transform pos: 1.7595062,-8.203196 parent: 21128 + - uid: 21373 + components: + - type: Transform + pos: 46.224125,16.563536 + parent: 2 ... diff --git a/Resources/Maps/corvax_avrit.yml b/Resources/Maps/corvax_avrit.yml index 3870a9c0d89..f054ee4423a 100644 --- a/Resources/Maps/corvax_avrit.yml +++ b/Resources/Maps/corvax_avrit.yml @@ -699,7 +699,7 @@ entities: id: Basalt3 decals: 4432: -10,-33 - 6045: -85.858086,-9.36618 + 6038: -85.858086,-9.36618 - node: color: '#FFFFFFFF' id: Basalt7 @@ -938,12 +938,12 @@ entities: 5472: -32,-87 5473: -34,-87 5474: -34,-85 - 6030: -9,53 - 6031: -9,57 - 6036: -9,66 - 6037: -9,67 - 6038: -9,68 - 6040: -9,62 + 6023: -9,53 + 6024: -9,57 + 6029: -9,66 + 6030: -9,67 + 6031: -9,68 + 6033: -9,62 - node: cleanable: True color: '#FFFFFFFF' @@ -1123,29 +1123,29 @@ entities: 5150: 83,42 5463: -26,-7 5464: -26,-9 - 5832: 36,32 - 5833: 37,32 - 5834: 37,33 - 5835: 36,33 - 5836: 38,33 - 5837: 38,32 - 5838: 39,33 - 6087: 31,19 - 6088: 31,20 - 6089: 29,22 - 6090: 30,23 - 6091: 30,24 - 6092: 30,25 + 5826: 36,32 + 5827: 37,32 + 5828: 37,33 + 5829: 36,33 + 5830: 38,33 + 5831: 38,32 + 5832: 39,33 + 6080: 31,19 + 6081: 31,20 + 6082: 29,22 + 6083: 30,23 + 6084: 30,24 + 6085: 30,25 - node: cleanable: True color: '#FFFFFFFF' id: Box decals: 115: 15,28 - 6254: 8,56 - 6255: 8,57 - 6256: 9,57 - 6257: 9,56 + 6246: 8,56 + 6247: 8,57 + 6248: 9,57 + 6249: 9,56 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -1564,7 +1564,7 @@ entities: 3946: -25,50 3986: -25,46 4690: -26,38 - 6002: -21,53 + 5995: -21,53 - node: color: '#A4610696' id: BrickTileWhiteCornerNe @@ -1623,7 +1623,7 @@ entities: color: '#FFB88BFF' id: BrickTileWhiteCornerNe decals: - 5753: -65,-10 + 5747: -65,-10 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -1647,8 +1647,8 @@ entities: 4002: -27,38 4003: -28,37 4677: -75,-4 - 6001: -23,53 - 6035: -9,68 + 5994: -23,53 + 6028: -9,68 - node: color: '#A4610696' id: BrickTileWhiteCornerNw @@ -1786,7 +1786,7 @@ entities: color: '#FFB88BFF' id: BrickTileWhiteCornerSe decals: - 5751: -65,-12 + 5745: -65,-12 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw @@ -1847,7 +1847,7 @@ entities: 3006: -43,-37 3020: -14,-18 4969: -3,45 - 5796: 5,56 + 5790: 5,56 - node: color: '#DE3A3AD9' id: BrickTileWhiteCornerSw @@ -2005,7 +2005,7 @@ entities: color: '#FFB88BFF' id: BrickTileWhiteInnerSe decals: - 5779: -73,-5 + 5773: -73,-5 - node: color: '#9FED5896' id: BrickTileWhiteInnerSw @@ -2057,7 +2057,7 @@ entities: color: '#FFB88BFF' id: BrickTileWhiteInnerSw decals: - 5784: -64,-5 + 5778: -64,-5 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -2154,44 +2154,44 @@ entities: 4688: -21,46 4689: -26,36 4695: -32,36 - 5719: 3,68 - 5720: 3,67 - 5721: 3,66 - 5722: 3,65 - 5723: 3,64 - 5724: 3,63 - 5725: 3,62 - 5726: 3,61 - 5727: 3,57 - 5728: 3,56 - 5729: 3,55 - 5730: 3,54 - 5982: -37,57 - 5983: -37,58 - 5984: -37,59 - 5985: -37,60 - 5986: -37,62 - 5987: -37,61 - 6006: -21,52 - 6007: -21,51 - 6008: -21,50 - 6028: -59,-7 + 5713: 3,68 + 5714: 3,67 + 5715: 3,66 + 5716: 3,65 + 5717: 3,64 + 5718: 3,63 + 5719: 3,62 + 5720: 3,61 + 5721: 3,57 + 5722: 3,56 + 5723: 3,55 + 5724: 3,54 + 5975: -37,57 + 5976: -37,58 + 5977: -37,59 + 5978: -37,60 + 5979: -37,62 + 5980: -37,61 + 5999: -21,52 + 6000: -21,51 + 6001: -21,50 + 6021: -59,-7 - node: color: '#9FED58FF' id: BrickTileWhiteLineE decals: - 5685: -6,52 - 5686: -6,53 - 5687: -6,54 - 5688: -6,55 - 5689: -6,56 - 5690: -6,57 - 5703: -6,65 - 5704: -6,64 - 5705: -6,63 - 5706: -6,62 - 5707: -6,61 - 5708: -6,60 + 5679: -6,52 + 5680: -6,53 + 5681: -6,54 + 5682: -6,55 + 5683: -6,56 + 5684: -6,57 + 5697: -6,65 + 5698: -6,64 + 5699: -6,63 + 5700: -6,62 + 5701: -6,61 + 5702: -6,60 - node: color: '#A4610696' id: BrickTileWhiteLineE @@ -2255,16 +2255,16 @@ entities: 3734: -48,-40 4900: 3,53 4968: 1,46 - 5731: 3,60 - 5732: 3,59 - 5733: 3,58 - 5775: 6,61 - 5776: 6,62 - 5778: 6,63 - 5780: 6,65 - 5781: 6,64 - 5782: 6,66 - 5783: 6,67 + 5725: 3,60 + 5726: 3,59 + 5727: 3,58 + 5769: 6,61 + 5770: 6,62 + 5772: 6,63 + 5774: 6,65 + 5775: 6,64 + 5776: 6,66 + 5777: 6,67 - node: color: '#DE3A3AD9' id: BrickTileWhiteLineE @@ -2320,21 +2320,21 @@ entities: color: '#FFA500FF' id: BrickTileWhiteLineE decals: - 5677: 9,62 - 5678: 9,61 - 5680: 9,63 + 5671: 9,62 + 5672: 9,61 + 5674: 9,63 - node: color: '#FFB88BFF' id: BrickTileWhiteLineE decals: - 5752: -65,-11 - 5769: -73,-6 - 5770: -73,-7 - 5771: -73,-8 - 5772: -73,-9 - 5773: -73,-10 - 5774: -73,-11 - 5777: -73,-12 + 5746: -65,-11 + 5763: -73,-6 + 5764: -73,-7 + 5765: -73,-8 + 5766: -73,-9 + 5767: -73,-10 + 5768: -73,-11 + 5771: -73,-12 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -2467,21 +2467,21 @@ entities: 5025: 0,45 5026: -1,45 5027: -2,45 - 5742: -1,68 - 5743: 0,68 - 5744: 1,68 - 5745: -8,68 - 5746: -7,68 - 5976: -36,56 - 5977: -35,56 - 5978: -34,56 - 5980: -32,56 - 5981: -31,56 - 6000: -22,53 - 6023: -20,66 - 6024: -19,66 - 6025: -18,66 - 6199: -33,56 + 5736: -1,68 + 5737: 0,68 + 5738: 1,68 + 5739: -8,68 + 5740: -7,68 + 5970: -36,56 + 5971: -35,56 + 5972: -34,56 + 5973: -32,56 + 5974: -31,56 + 5993: -22,53 + 6016: -20,66 + 6017: -19,66 + 6018: -18,66 + 6191: -33,56 - node: cleanable: True color: '#9FED5896' @@ -2557,9 +2557,9 @@ entities: 4964: 0,47 4965: -1,47 4966: -2,47 - 5797: 7,60 - 5798: 8,60 - 5799: 9,60 + 5791: 7,60 + 5792: 8,60 + 5793: 9,60 - node: color: '#DE3A3AB4' id: BrickTileWhiteLineN @@ -2639,18 +2639,18 @@ entities: color: '#FFA500FF' id: BrickTileWhiteLineN decals: - 5669: 7,67 - 5670: 8,67 - 5671: 9,67 - 5681: 9,65 + 5663: 7,67 + 5664: 8,67 + 5665: 9,67 + 5675: 9,65 - node: color: '#FFB88BFF' id: BrickTileWhiteLineN decals: - 5754: -66,-10 - 5755: -68,-10 - 5756: -67,-10 - 5757: -69,-10 + 5748: -66,-10 + 5749: -68,-10 + 5750: -67,-10 + 5751: -69,-10 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -2764,12 +2764,12 @@ entities: 4976: -1,47 4977: 0,47 4992: -2,47 - 5988: -36,63 - 5989: -35,63 - 5990: -34,63 - 5991: -33,63 - 5992: -32,63 - 5993: -31,63 + 5981: -36,63 + 5982: -35,63 + 5983: -34,63 + 5984: -33,63 + 5985: -32,63 + 5986: -31,63 - node: color: '#A4610696' id: BrickTileWhiteLineS @@ -2908,25 +2908,25 @@ entities: color: '#FFA500FF' id: BrickTileWhiteLineS decals: - 5672: 7,66 - 5673: 8,66 - 5674: 9,66 + 5666: 7,66 + 5667: 8,66 + 5668: 9,66 - node: color: '#FFB88BFF' id: BrickTileWhiteLineS decals: - 5747: -68,-12 - 5748: -67,-12 - 5749: -66,-12 - 5750: -69,-12 - 5758: -72,-5 - 5759: -71,-5 - 5760: -70,-5 - 5761: -69,-5 - 5762: -68,-5 - 5763: -67,-5 - 5764: -66,-5 - 5765: -65,-5 + 5741: -68,-12 + 5742: -67,-12 + 5743: -66,-12 + 5744: -69,-12 + 5752: -72,-5 + 5753: -71,-5 + 5754: -70,-5 + 5755: -69,-5 + 5756: -68,-5 + 5757: -67,-5 + 5758: -66,-5 + 5759: -65,-5 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -3035,51 +3035,51 @@ entities: 4787: -9,51 4788: -9,52 4789: -9,53 - 5709: -9,54 - 5710: -9,55 - 5711: -9,56 - 5712: -9,57 - 5713: -9,58 - 5714: -9,59 - 5715: -9,60 - 5716: -9,63 - 5717: -9,64 - 5718: -9,65 - 5734: -9,61 - 5971: -61,-2 - 5972: -61,-1 - 5973: -61,0 - 5974: -61,1 - 5975: -61,2 - 5994: -30,62 - 5995: -30,61 - 5996: -30,60 - 5997: -30,59 - 5998: -30,58 - 5999: -30,57 - 6003: -23,50 - 6004: -23,51 - 6005: -23,52 - 6029: -60,-7 - 6032: -9,62 - 6033: -9,66 - 6034: -9,67 + 5703: -9,54 + 5704: -9,55 + 5705: -9,56 + 5706: -9,57 + 5707: -9,58 + 5708: -9,59 + 5709: -9,60 + 5710: -9,63 + 5711: -9,64 + 5712: -9,65 + 5728: -9,61 + 5965: -61,-2 + 5966: -61,-1 + 5967: -61,0 + 5968: -61,1 + 5969: -61,2 + 5987: -30,62 + 5988: -30,61 + 5989: -30,60 + 5990: -30,59 + 5991: -30,58 + 5992: -30,57 + 5996: -23,50 + 5997: -23,51 + 5998: -23,52 + 6022: -60,-7 + 6025: -9,62 + 6026: -9,66 + 6027: -9,67 - node: color: '#9FED58FF' id: BrickTileWhiteLineW decals: - 5691: 1,57 - 5692: 1,56 - 5693: 1,55 - 5694: 1,54 - 5695: 1,53 - 5696: 1,52 - 5697: 1,60 - 5698: 1,61 - 5699: 1,62 - 5700: 1,65 - 5701: 1,64 - 5702: 1,63 + 5685: 1,57 + 5686: 1,56 + 5687: 1,55 + 5688: 1,54 + 5689: 1,53 + 5690: 1,52 + 5691: 1,60 + 5692: 1,61 + 5693: 1,62 + 5694: 1,65 + 5695: 1,64 + 5696: 1,63 - node: color: '#A4610696' id: BrickTileWhiteLineW @@ -3142,17 +3142,17 @@ entities: 3017: -43,-34 3025: -14,-17 4967: -3,46 - 5785: 5,67 - 5786: 5,66 - 5787: 5,65 - 5788: 5,64 - 5789: 5,63 - 5790: 5,62 - 5791: 5,61 - 5792: 5,60 - 5793: 5,59 - 5794: 5,58 - 5795: 5,57 + 5779: 5,67 + 5780: 5,66 + 5781: 5,65 + 5782: 5,64 + 5783: 5,63 + 5784: 5,62 + 5785: 5,61 + 5786: 5,60 + 5787: 5,59 + 5788: 5,58 + 5789: 5,57 - node: color: '#DE3A3AD9' id: BrickTileWhiteLineW @@ -3205,16 +3205,16 @@ entities: color: '#FFA500FF' id: BrickTileWhiteLineW decals: - 5675: 8,62 - 5676: 8,61 - 5679: 7,64 + 5669: 8,62 + 5670: 8,61 + 5673: 7,64 - node: color: '#FFB88BFF' id: BrickTileWhiteLineW decals: - 5766: -64,-6 - 5767: -64,-7 - 5768: -64,-8 + 5760: -64,-6 + 5761: -64,-7 + 5762: -64,-8 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -3229,12 +3229,12 @@ entities: 420: 37.988625,-7.9187446 2264: -29.469578,-51.01724 4431: -9,-34 - 6078: -42.883698,51.85592 + 6071: -42.883698,51.85592 - node: color: '#FFFFFFFF' id: BushAThree decals: - 6079: -50.00909,50.010246 + 6072: -50.00909,50.010246 - node: color: '#FFFFFFFF' id: BushATwo @@ -3260,7 +3260,7 @@ entities: 2340: -40.10394,34.165638 2770: -56.02164,-12.841251 2776: -69.63793,-16.7884 - 6077: -47.03259,51.115013 + 6070: -47.03259,51.115013 - node: color: '#FFFFFFFF' id: BushCThree @@ -3276,7 +3276,7 @@ entities: 3002: -96,-23 3349: 9.034152,37.877556 4063: -31.072529,51.65369 - 6042: -89.76434,-9.116179 + 6035: -89.76434,-9.116179 - node: color: '#FFFFFFFF' id: BushCTwo @@ -3322,8 +3322,8 @@ entities: id: BushDTwo decals: 3738: 8.129633,-61.06571 - 6017: -59.691895,-8.329788 - 6043: -85.84246,-9.288055 + 6010: -59.691895,-8.329788 + 6036: -85.84246,-9.288055 - node: color: '#FFFFFFFF' id: Busha1 @@ -3338,9 +3338,9 @@ entities: 4042: -30.703804,52.564796 4062: -18.591827,52.58128 5477: 31.958843,-45.961266 - 5619: -3.374849,56.19121 - 6012: -59,-10 - 6013: -63,-12 + 5613: -3.374849,56.19121 + 6005: -59,-10 + 6006: -63,-12 - node: color: '#FFFFFFFF' id: Busha2 @@ -3365,7 +3365,7 @@ entities: 996: -18.585749,-56.040485 3732: -40.20255,31.935944 3742: 18.254955,-30.101465 - 5620: -3.4452083,53.684074 + 5614: -3.4452083,53.684074 - node: color: '#FFFFFFFF' id: Bushb2 @@ -3410,7 +3410,7 @@ entities: 2265: -26.120043,-53.455257 3004: -73,-18 5476: 30.036972,-49.32064 - 5621: -0.7110017,56.58193 + 5615: -0.7110017,56.58193 - node: color: '#FFFFFFFF' id: Bushc2 @@ -3463,12 +3463,12 @@ entities: id: Bushe4 decals: 1030: -30.060707,-59.640705 - 6016: -62.879726,-8.375349 + 6009: -62.879726,-8.375349 - node: color: '#9FED58FF' id: Bushf1 decals: - 6039: -63.149513,-8.643906 + 6032: -63.149513,-8.643906 - node: color: '#FFFFFFFF' id: Bushf1 @@ -3488,8 +3488,8 @@ entities: 1009: -3.3759248,25.230968 1015: -3.3030083,18.738024 2252: -28.98949,-44.871017 - 6018: -62.56089,-8.540124 - 6026: -62.137997,-8.565116 + 6011: -62.56089,-8.540124 + 6019: -62.137997,-8.565116 - node: color: '#FFFFFFFF' id: Bushf3 @@ -3498,13 +3498,13 @@ entities: 1014: -5.292592,16.840872 1016: -7.157175,18.206167 1017: -3.2821748,17.622429 - 6019: -60.21097,-8.567886 + 6012: -60.21097,-8.567886 - node: angle: 0.7853981633974483 rad color: '#FFFFFFFF' id: Bushf3 decals: - 6027: -60.424084,-8.870661 + 6020: -60.424084,-8.870661 - node: color: '#FFFFFFFF' id: Bushg1 @@ -3515,7 +3515,7 @@ entities: color: '#FFFFFFFF' id: Bushg2 decals: - 5617: -2.7424366,53.90177 + 5611: -2.7424366,53.90177 - node: color: '#FFFFFFFF' id: Bushg3 @@ -3539,7 +3539,7 @@ entities: 2339: -43.057064,33.931263 2344: -37.914345,37.905872 2678: -59.326077,-9.930442 - 6014: -58.89571,-8.46195 + 6007: -58.89571,-8.46195 - node: color: '#FFFFFFFF' id: Bushi2 @@ -3554,10 +3554,10 @@ entities: 2679: -58.9042,-9.352317 2773: -66.01293,-16.776505 2777: -57.12063,-13.767191 - 5615: -4.7546477,56.756912 - 5616: -4.772231,53.966396 - 6020: -62.95085,-10.896537 - 6021: -62.436966,-11.097925 + 5609: -4.7546477,56.756912 + 5610: -4.772231,53.966396 + 6013: -62.95085,-10.896537 + 6014: -62.436966,-11.097925 - node: color: '#FFFFFFFF' id: Bushi3 @@ -3574,8 +3574,8 @@ entities: 2271: -23.909307,-66.15036 2272: -23.924932,-65.74411 2774: -65.65356,-17.182755 - 6015: -59.343624,-8.764033 - 6022: -63.12435,-11.283774 + 6008: -59.343624,-8.764033 + 6015: -63.12435,-11.283774 - node: color: '#FFFFFFFF' id: Bushj1 @@ -3605,8 +3605,8 @@ entities: 2351: -92.28845,17.266336 2677: -62.701077,-6.696066 4061: -14.09183,52.675026 - 6041: -62.840637,-8.85393 - 6044: -90.170586,-10.67868 + 6034: -62.840637,-8.85393 + 6037: -90.170586,-10.67868 - node: color: '#FFFFFFFF' id: Bushk2 @@ -3625,7 +3625,7 @@ entities: id: Bushl1 decals: 2854: -41.86759,-62.67357 - 5618: -1.5161572,56.72477 + 5612: -1.5161572,56.72477 - node: color: '#FFFFFFFF' id: Bushl2 @@ -3646,19 +3646,19 @@ entities: 384: 4.143323,-17.435427 386: 3.9384613,-23.577139 2250: -28.98949,-47.996017 - 5612: -3.5541081,54.10666 + 5606: -3.5541081,54.10666 - node: color: '#FFFFFFFF' id: Bushm1 decals: 1010: -6.386342,26.54438 - 5613: -0.57550967,53.344414 + 5607: -0.57550967,53.344414 - node: color: '#FFFFFFFF' id: Bushm3 decals: 1141: -48.905083,22.105616 - 5614: -4.6901555,55.336403 + 5608: -4.6901555,55.336403 - node: color: '#FFFFFFFF' id: Bushn1 @@ -3860,9 +3860,9 @@ entities: color: '#9FED5896' id: ConcreteTrimLineW decals: - 6009: -61,-1 - 6010: -61,0 - 6011: -61,1 + 6002: -61,-1 + 6003: -61,0 + 6004: -61,1 - node: color: '#DE3A3A95' id: ConcreteTrimLineW @@ -4126,15 +4126,15 @@ entities: 5156: 83,30 5157: 75,30 5158: 71,34 - 5823: 33,32 - 5824: 33,33 - 5825: 35,32 - 5826: 34,32 - 5827: 34,33 - 5828: 35,33 - 5829: 32,33 - 5830: 31,32 - 5831: 30,32 + 5817: 33,32 + 5818: 33,33 + 5819: 35,32 + 5820: 34,32 + 5821: 34,33 + 5822: 35,33 + 5823: 32,33 + 5824: 31,32 + 5825: 30,32 - node: cleanable: True color: '#FFFFFFFF' @@ -4155,8 +4155,8 @@ entities: 5096: -2,44 5097: -1,44 5098: 0,44 - 6258: 7,56 - 6259: 7,57 + 6250: 7,56 + 6251: 7,57 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -4422,92 +4422,92 @@ entities: 5517: 106,53 5518: 106,54 5519: 105,54 - 5609: -16,49 - 5610: -19,48 - 5611: -18,50 - 6126: -6,67 - 6127: 1,59 - 6128: 3,54 - 6129: -1,49 - 6130: -7,51 - 6131: -2,41 - 6132: -28,22 - 6133: -35,22 - 6134: -36,23 - 6135: -42,21 - 6136: -50,24 - 6137: -50,17 - 6138: -46,15 - 6139: -49,12 - 6140: -57,14 - 6141: -67,21 - 6142: -69,15 - 6143: -79,14 - 6144: -88,14 - 6145: -86,21 - 6146: -97,14 - 6147: -98,22 - 6148: -78,26 - 6149: -76,36 - 6150: -78,43 - 6151: -60,42 - 6152: -58,32 - 6153: -48,33 - 6154: -52,35 - 6155: -54,37 - 6156: -55,41 - 6157: -49,42 - 6158: -44,45 - 6159: -40,47 - 6160: -38,48 - 6161: -38,52 - 6162: -35,47 - 6163: -37,42 - 6164: -38,36 - 6165: -43,32 - 6166: -50,33 - 6183: -37,56 - 6184: -30,63 - 6185: -29,60 - 6186: -38,63 - 6187: -21,52 - 6188: -23,47 - 6189: -21,39 - 6190: -23,36 - 6191: -33,36 - 6192: -26,44 - 6193: -32,40 - 6194: -27,43 - 6195: -26,45 - 6196: -36,41 - 6197: -35,47 - 6200: -22,50 - 6205: 7,59 - 6206: 6,57 - 6210: -32,0 - 6211: -27,1 - 6212: -22,-1 - 6213: -21,7 - 6214: -23,17 - 6219: -67,18 - 6220: -77,29 - 6221: -78,33 - 6222: -78,40 - 6231: -29,35 - 6244: -74,-11 + 5603: -16,49 + 5604: -19,48 + 5605: -18,50 + 6119: -6,67 + 6120: 1,59 + 6121: 3,54 + 6122: -1,49 + 6123: -7,51 + 6124: -2,41 + 6125: -28,22 + 6126: -35,22 + 6127: -36,23 + 6128: -42,21 + 6129: -50,24 + 6130: -50,17 + 6131: -46,15 + 6132: -49,12 + 6133: -57,14 + 6134: -67,21 + 6135: -69,15 + 6136: -79,14 + 6137: -88,14 + 6138: -86,21 + 6139: -97,14 + 6140: -98,22 + 6141: -78,26 + 6142: -76,36 + 6143: -78,43 + 6144: -60,42 + 6145: -58,32 + 6146: -48,33 + 6147: -52,35 + 6148: -54,37 + 6149: -55,41 + 6150: -49,42 + 6151: -44,45 + 6152: -40,47 + 6153: -38,48 + 6154: -38,52 + 6155: -35,47 + 6156: -37,42 + 6157: -38,36 + 6158: -43,32 + 6159: -50,33 + 6176: -37,56 + 6177: -30,63 + 6178: -29,60 + 6179: -38,63 + 6180: -21,52 + 6181: -23,47 + 6182: -21,39 + 6183: -23,36 + 6184: -33,36 + 6185: -26,44 + 6186: -32,40 + 6187: -27,43 + 6188: -26,45 + 6189: -36,41 + 6190: -35,47 + 6192: -22,50 + 6197: 7,59 + 6198: 6,57 + 6202: -32,0 + 6203: -27,1 + 6204: -22,-1 + 6205: -21,7 + 6206: -23,17 + 6211: -67,18 + 6212: -77,29 + 6213: -78,33 + 6214: -78,40 + 6223: -29,35 + 6236: -74,-11 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Dirt decals: - 5802: 0,59 - 5803: -7,66 - 5804: 2,66 - 5805: 3,61 - 5806: 3,56 - 5807: -3,59 - 5808: -7,53 + 5796: 0,59 + 5797: -7,66 + 5798: 2,66 + 5799: 3,61 + 5800: 3,56 + 5801: -3,59 + 5802: -7,53 - node: cleanable: True color: '#EFB34196' @@ -4682,40 +4682,40 @@ entities: 5350: 34,-15 5351: 37,-16 5352: 40,-15 - 5605: -17,49 - 5606: -17,49 - 5607: -19,50 - 5608: -19,49 - 6167: -54,33 - 6168: -55,39 - 6169: -52,45 - 6170: -46,50 - 6171: -40,47 - 6172: -38,37 - 6201: -23,39 - 6202: -22,35 - 6203: -21,42 - 6204: -23,53 - 6223: -46,22 - 6228: -23,44 - 6232: 5,62 - 6236: -30,21 - 6237: -67,14 - 6241: -86,16 - 6243: -97,20 - 6245: -73,-9 - 6246: -74,-5 - 6248: -60,-1 + 5599: -17,49 + 5600: -17,49 + 5601: -19,50 + 5602: -19,49 + 6160: -54,33 + 6161: -55,39 + 6162: -52,45 + 6163: -46,50 + 6164: -40,47 + 6165: -38,37 + 6193: -23,39 + 6194: -22,35 + 6195: -21,42 + 6196: -23,53 + 6215: -46,22 + 6220: -23,44 + 6224: 5,62 + 6228: -30,21 + 6229: -67,14 + 6233: -86,16 + 6235: -97,20 + 6237: -73,-9 + 6238: -74,-5 + 6240: -60,-1 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 5801: -7,58 - 5809: -7,63 - 5810: -1,66 - 5817: -8,65 + 5795: -7,58 + 5803: -7,63 + 5804: -1,66 + 5811: -8,65 - node: cleanable: True color: '#FFFFFFFF' @@ -4725,14 +4725,14 @@ entities: 4947: -6,49 5043: 1,47 5355: 34,-17 - 6224: -50,19 - 6229: -21,49 - 6230: -34,39 - 6234: 0,34 - 6235: -39,22 - 6238: -75,23 - 6242: -98,16 - 6247: -74,-6 + 6216: -50,19 + 6221: -21,49 + 6222: -34,39 + 6226: 0,34 + 6227: -39,22 + 6230: -75,23 + 6234: -98,16 + 6239: -74,-6 - node: cleanable: True color: '#FFFFFFFF' @@ -4950,29 +4950,29 @@ entities: 5069: 12,54 5092: -6,52 5356: 39,-17 - 6173: -48,33 - 6174: -43,32 - 6175: -38,37 - 6176: -54,33 - 6177: -50,42 - 6178: -44,45 - 6179: -34,46 - 6225: -50,19 - 6226: -47,20 - 6233: 6,66 - 6239: -89,22 - 6240: -85,14 - 6249: -61,3 + 6166: -48,33 + 6167: -43,32 + 6168: -38,37 + 6169: -54,33 + 6170: -50,42 + 6171: -44,45 + 6172: -34,46 + 6217: -50,19 + 6218: -47,20 + 6225: 6,66 + 6231: -89,22 + 6232: -85,14 + 6241: -61,3 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtLight decals: - 5811: -2,58 - 5812: 3,54 - 5818: -4,67 - 5819: 2,62 + 5805: -2,58 + 5806: 3,54 + 5812: -4,67 + 5813: 2,62 - node: cleanable: True color: '#EFB34196' @@ -5098,26 +5098,26 @@ entities: 5075: -7,47 5353: 41,-17 5354: 41,-14 - 6180: -52,35 - 6181: -49,37 - 6182: -52,48 - 6207: 5,64 - 6208: 8,61 - 6209: 6,56 - 6227: -46,13 + 6173: -52,35 + 6174: -49,37 + 6175: -52,48 + 6199: 5,64 + 6200: 8,61 + 6201: 6,56 + 6219: -46,13 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtMedium decals: - 5813: 3,63 - 5814: 2,58 - 5815: 2,52 - 5816: -8,56 - 5820: -5,58 - 5821: -7,51 - 5822: -2,68 + 5807: 3,63 + 5808: 2,58 + 5809: 2,52 + 5810: -8,56 + 5814: -5,58 + 5815: -7,51 + 5816: -2,68 - node: color: '#FFFFFFFF' id: FlowersBROne @@ -5144,10 +5144,10 @@ entities: 4439: -7,-32 4440: -7,-33 5181: -12.86464,-34.866253 - 5630: -2.5071669,54.210087 - 5639: -1.1049442,60.619446 - 5647: -2.6484795,64.4585 - 5882: -0.9312969,69.90281 + 5624: -2.5071669,54.210087 + 5633: -1.1049442,60.619446 + 5641: -2.6484795,64.4585 + 5876: -0.9312969,69.90281 - node: color: '#FFFFFFFF' id: FlowersBRTwo @@ -5156,8 +5156,8 @@ entities: 2347: -72.138016,17.018951 2651: -89.433525,-6.0393915 2681: -66.34033,4.538049 - 5598: -2,53 - 5631: -0.38462186,54.210106 + 5592: -2,53 + 5625: -0.38462186,54.210106 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -5165,18 +5165,18 @@ entities: 2652: -88.01165,-6.7893915 4441: -12,-32 5183: -8.708391,-35.053757 - 5626: -3.0362968,55.087666 + 5620: -3.0362968,55.087666 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: 2688: -66.66846,2.9911737 - 5632: -4.628747,54.192368 - 5641: -1.1313304,62.479603 - 5644: -2.5561326,60.777756 - 5648: -4.8516464,63.46905 - 5649: -4.469061,60.065353 - 5650: -0.41892922,61.358234 + 5626: -4.628747,54.192368 + 5635: -1.1313304,62.479603 + 5638: -2.5561326,60.777756 + 5642: -4.8516464,63.46905 + 5643: -4.469061,60.065353 + 5644: -0.41892922,61.358234 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -5186,9 +5186,9 @@ entities: 2674: -62.31045,-6.352316 3840: -22.023563,23.954266 5182: -10.55214,-34.741253 - 5600: -5,53 - 5633: -1.9843609,55.300438 - 5640: -3.769852,62.994114 + 5594: -5,53 + 5627: -1.9843609,55.300438 + 5634: -3.769852,62.994114 - node: color: '#7F5C462E' id: Flowerspv1 @@ -5202,8 +5202,8 @@ entities: 1033: -61.787426,17.19276 2348: -81.71614,17.143951 2673: -61.93545,-11.946067 - 5628: -4.6832285,55.503494 - 5643: -2.780406,62.677494 + 5622: -4.6832285,55.503494 + 5637: -2.780406,62.677494 - node: color: '#FFFFFFFF' id: Flowerspv2 @@ -5215,10 +5215,10 @@ entities: 2691: -66.15283,4.944299 3842: -22.007938,23.969893 4016: -14,25 - 5599: -1,52 - 5645: -2.39782,61.84636 - 5646: -0.26061642,64.49808 - 5884: -0.071921945,70.04344 + 5593: -1,52 + 5639: -2.39782,61.84636 + 5640: -0.26061642,64.49808 + 5878: -0.071921945,70.04344 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -5231,8 +5231,8 @@ entities: 2684: -66.80908,3.8974242 2689: -66.38721,3.053674 2852: -42.91447,-61.07982 - 5627: -2.7428827,56.306965 - 5642: -3.967742,61.991474 + 5621: -2.7428827,56.306965 + 5636: -3.967742,61.991474 - node: color: '#7F5C462E' id: Flowersy1 @@ -5259,11 +5259,11 @@ entities: 3841: -21.961063,23.907393 3886: -22,33 4435: -6,-32 - 5597: -4,52 - 5629: -0.96509737,56.44148 - 5634: -3.4677968,52.956314 - 5637: -4.2447863,60.962452 - 5883: 0.8812027,69.90281 + 5591: -4,52 + 5623: -0.96509737,56.44148 + 5628: -3.4677968,52.956314 + 5631: -4.2447863,60.962452 + 5877: 0.8812027,69.90281 - node: color: '#7F5C462E' id: Flowersy2 @@ -5284,7 +5284,7 @@ entities: 2671: -59.93545,-9.524192 2682: -66.63721,4.303674 2687: -66.35596,3.303674 - 5638: -1.6854186,63.706512 + 5632: -1.6854186,63.706512 - node: color: '#7F5C462E' id: Flowersy3 @@ -5304,8 +5304,8 @@ entities: 2690: -66.66846,4.959924 4014: -15,29 4436: -6,-34 - 5635: -1.5035636,56.771015 - 5636: -4.152438,64.300186 + 5629: -1.5035636,56.771015 + 5630: -4.152438,64.300186 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -5375,15 +5375,15 @@ entities: 3081: -50,-70 4041: -30.485058,49.47105 5185: -9.73964,-34.913128 - 5622: -2.7023482,54.28315 - 5623: -4.0333357,56.46384 - 5624: -2.3446815,56.576546 - 5625: -0.4212278,54.27855 - 5651: -3.2817254,64.22103 - 5652: -4.6009865,62.571953 - 5653: -3.8094296,60.474327 - 5654: -0.63001025,63.69332 - 5655: -0.643203,60.131317 + 5616: -2.7023482,54.28315 + 5617: -4.0333357,56.46384 + 5618: -2.3446815,56.576546 + 5619: -0.4212278,54.27855 + 5645: -3.2817254,64.22103 + 5646: -4.6009865,62.571953 + 5647: -3.8094296,60.474327 + 5648: -0.63001025,63.69332 + 5649: -0.643203,60.131317 - node: color: '#7F5C462E' id: Grassa2 @@ -5489,7 +5489,7 @@ entities: 2238: 48.300156,9.976542 2767: -56.831837,-9.286302 5101: 42,-39 - 5660: -0.23423171,62.294907 + 5654: -0.23423171,62.294907 - node: color: '#7F5C462E' id: Grassa4 @@ -5540,8 +5540,8 @@ entities: 552: 27.187437,-33.443333 577: 4.8497095,-59.61867 5102: 42,-38 - 5603: -3,52 - 5656: -2.2922797,63.06007 + 5597: -3,52 + 5650: -2.2922797,63.06007 - node: color: '#7F5C462E' id: Grassa5 @@ -5560,8 +5560,8 @@ entities: 582: 15.333179,-60.00758 1000: -13.090528,-52.000862 2262: -27.211185,-56.98896 - 5604: -2,52 - 5657: -1.7118053,61.45058 + 5598: -2,52 + 5651: -1.7118053,61.45058 - node: color: '#7F5C462E' id: Grassb1 @@ -5581,7 +5581,7 @@ entities: 4445: -7.68141,-33.326813 4447: -11.314973,-33.076813 5110: 54.549698,-42.951454 - 5658: -4.77249,64.52446 + 5652: -4.77249,64.52446 - node: color: '#FFFFFFFF' id: Grassb2 @@ -5594,7 +5594,7 @@ entities: 4438: -11.230522,-32.092453 4443: -10,-33 5109: 53.975037,-42.9911 - 5659: -1.7118047,64.630005 + 5653: -1.7118047,64.630005 - node: color: '#7F5C462E' id: Grassb3 @@ -5721,10 +5721,10 @@ entities: color: '#FFFFFFFF' id: Grassc4 decals: - 6056: -86.93581,-9.121064 - 6057: -79.32643,-6.636691 - 6058: -81.34206,-7.0273156 - 6059: -80.71706,-5.058566 + 6049: -86.93581,-9.121064 + 6050: -79.32643,-6.636691 + 6051: -81.34206,-7.0273156 + 6052: -80.71706,-5.058566 - node: color: '#7F5C462E' id: Grassd1 @@ -5745,11 +5745,11 @@ entities: 1011: -5.834258,25.481142 1012: -4.865508,17.382915 1013: -7.740508,18.248098 - 5661: -3.1629922,62.09702 - 5662: -1.8305378,60.289627 - 5663: -1.3028339,62.50599 - 5664: -3.717082,63.178806 - 5665: -4.71972,64.32657 + 5655: -3.1629922,62.09702 + 5656: -1.8305378,60.289627 + 5657: -1.3028339,62.50599 + 5658: -3.717082,63.178806 + 5659: -4.71972,64.32657 - node: color: '#7F5C462E' id: Grassd2 @@ -5761,25 +5761,25 @@ entities: color: '#FFFFFFFF' id: Grassd2 decals: - 6048: -88.65496,-10.084929 - 6049: -88.608086,-5.5224304 - 6050: -90.045586,-5.3036804 + 6041: -88.65496,-10.084929 + 6042: -88.608086,-5.5224304 + 6043: -90.045586,-5.3036804 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 5666: -0.81470627,64.74873 - 5667: -0.37935054,60.962452 - 5668: -4.798876,61.503353 + 5660: -0.81470627,64.74873 + 5661: -0.37935054,60.962452 + 5662: -4.798876,61.503353 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 6051: -80.858086,-6.131807 - 6052: -82.09247,-5.006807 - 6053: -81.3663,-10.277856 - 6054: -78.7413,-9.574731 - 6055: -86.93581,-10.652328 + 6044: -80.858086,-6.131807 + 6045: -82.09247,-5.006807 + 6046: -81.3663,-10.277856 + 6047: -78.7413,-9.574731 + 6048: -86.93581,-10.652328 - node: cleanable: True color: '#919D972F' @@ -5795,16 +5795,16 @@ entities: 5103: 41.48581,-41.242943 5104: 40.871517,-40.767223 5105: 41.584896,-40.759068 - 5602: -5,52 + 5596: -5,52 - node: color: '#FFFFFFFF' id: Grasse3 decals: 498: 2.1109376,-18.48142 2853: -41.07072,-60.954823 - 5601: -4,53 - 6046: -89.56121,-10.569305 - 6047: -88.02996,-9.147429 + 5595: -4,53 + 6039: -89.56121,-10.569305 + 6040: -88.02996,-9.147429 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNe @@ -5982,9 +5982,9 @@ entities: 3446: 67,-31 3447: 67,-30 3516: 61,-34 - 5839: 40,31 - 5840: 40,32 - 5841: 40,33 + 5833: 40,31 + 5834: 40,32 + 5835: 40,33 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -5997,10 +5997,10 @@ entities: 5004: 0,45 5005: -1,45 5006: -2,45 - 5739: -5,68 - 5740: -3,68 - 5741: 3,68 - 5800: 5,68 + 5733: -5,68 + 5734: -3,68 + 5735: 3,68 + 5794: 5,68 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -6303,12 +6303,12 @@ entities: color: '#60CFFF31' id: MiniTileWhiteCornerNe decals: - 5949: 2,-46 + 5943: 2,-46 - node: color: '#60CFFF6C' id: MiniTileWhiteCornerNe decals: - 5950: 2,-46 + 5944: 2,-46 - node: color: '#79150096' id: MiniTileWhiteCornerNe @@ -6451,8 +6451,8 @@ entities: color: '#60CFFF6C' id: MiniTileWhiteCornerNw decals: - 5953: -2,-46 - 5970: -2,-46 + 5947: -2,-46 + 5964: -2,-46 - node: color: '#79150096' id: MiniTileWhiteCornerNw @@ -6591,8 +6591,8 @@ entities: color: '#60CFFF6C' id: MiniTileWhiteCornerSe decals: - 5952: 2,-50 - 5968: 2,-50 + 5946: 2,-50 + 5962: 2,-50 - node: color: '#79150096' id: MiniTileWhiteCornerSe @@ -6727,8 +6727,8 @@ entities: color: '#60CFFF6C' id: MiniTileWhiteCornerSw decals: - 5951: -2,-50 - 5969: -2,-50 + 5945: -2,-50 + 5963: -2,-50 - node: color: '#79150096' id: MiniTileWhiteCornerSw @@ -6947,7 +6947,7 @@ entities: decals: 2051: 10,23 2056: 26,23 - 5947: 32,32 + 5941: 32,32 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSe @@ -7008,7 +7008,7 @@ entities: color: '#EFB34196' id: MiniTileWhiteInnerSe decals: - 5948: 28,34 + 5942: 28,34 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSw @@ -7094,7 +7094,7 @@ entities: 1447: -9,7 1448: -9,8 1449: -9,9 - 5868: 36,35 + 5862: 36,35 - node: cleanable: True color: '#334E6DC8' @@ -7156,12 +7156,12 @@ entities: color: '#60CFFF6C' id: MiniTileWhiteLineE decals: - 5954: 2,-47 - 5955: 2,-48 - 5956: 2,-48 - 5957: 2,-49 - 5958: 2,-49 - 5959: 2,-47 + 5948: 2,-47 + 5949: 2,-48 + 5950: 2,-48 + 5951: 2,-49 + 5952: 2,-49 + 5953: 2,-47 - node: color: '#79150096' id: MiniTileWhiteLineE @@ -7396,10 +7396,10 @@ entities: 4748: 28,39 4749: 28,40 4751: 26,19 - 5842: 24,30 - 5850: 28,32 - 5851: 28,33 - 5861: 36,36 + 5836: 24,30 + 5844: 28,32 + 5845: 28,33 + 5855: 36,36 - node: cleanable: True color: '#EFB34196' @@ -7496,10 +7496,10 @@ entities: 4392: -22,-50 4404: -22,-54 4410: -21,-54 - 6122: -1,-46 - 6123: 0,-46 - 6124: 1,-46 - 6125: 2,-52 + 6115: -1,-46 + 6116: 0,-46 + 6117: 1,-46 + 6118: 2,-52 - node: cleanable: True color: '#52B4E996' @@ -7790,25 +7790,25 @@ entities: 1780: 14,36 1781: 15,36 1782: 16,36 - 5843: 20,31 - 5912: 35,36 - 5913: 36,36 - 5914: 34,36 - 5915: 32,36 - 5916: 31,36 - 5917: 30,36 - 5918: 33,36 - 5934: 40,33 - 5935: 39,33 - 5936: 38,33 - 5937: 37,33 - 5938: 36,33 - 5939: 35,33 - 5940: 34,33 - 5941: 33,33 - 5942: 32,33 - 5943: 31,32 - 5944: 30,32 + 5837: 20,31 + 5906: 35,36 + 5907: 36,36 + 5908: 34,36 + 5909: 32,36 + 5910: 31,36 + 5911: 30,36 + 5912: 33,36 + 5928: 40,33 + 5929: 39,33 + 5930: 38,33 + 5931: 37,33 + 5932: 36,33 + 5933: 35,33 + 5934: 34,33 + 5935: 33,33 + 5936: 32,33 + 5937: 31,32 + 5938: 30,32 - node: cleanable: True color: '#EFB34196' @@ -7918,9 +7918,9 @@ entities: 5582: -2,-44 5583: 2,-44 5584: 3,-44 - 6119: -1,-44 - 6120: 0,-44 - 6121: 1,-44 + 6112: -1,-44 + 6113: 0,-44 + 6114: 1,-44 - node: cleanable: True color: '#52B4E996' @@ -7931,8 +7931,8 @@ entities: color: '#60CFFF6C' id: MiniTileWhiteLineS decals: - 5960: 0,-50 - 5961: 0,-50 + 5954: 0,-50 + 5955: 0,-50 - node: color: '#79150096' id: MiniTileWhiteLineS @@ -8224,23 +8224,23 @@ entities: 1767: 14,32 1768: 15,32 1769: 16,32 - 5878: 29,34 - 5879: 30,34 - 5919: 35,35 - 5920: 34,35 - 5921: 33,35 - 5922: 32,35 - 5923: 30,31 - 5924: 31,31 - 5925: 32,31 - 5926: 33,31 - 5927: 34,31 - 5928: 35,31 - 5929: 36,31 - 5930: 37,31 - 5931: 38,31 - 5932: 39,31 - 5933: 40,31 + 5872: 29,34 + 5873: 30,34 + 5913: 35,35 + 5914: 34,35 + 5915: 33,35 + 5916: 32,35 + 5917: 30,31 + 5918: 31,31 + 5919: 32,31 + 5920: 33,31 + 5921: 34,31 + 5922: 35,31 + 5923: 36,31 + 5924: 37,31 + 5925: 38,31 + 5926: 39,31 + 5927: 40,31 - node: cleanable: True color: '#EFB34196' @@ -8334,12 +8334,12 @@ entities: color: '#60CFFF6C' id: MiniTileWhiteLineW decals: - 5962: -2,-49 - 5963: -2,-48 - 5964: -2,-47 - 5965: -2,-47 - 5966: -2,-48 - 5967: -2,-49 + 5956: -2,-49 + 5957: -2,-48 + 5958: -2,-47 + 5959: -2,-47 + 5960: -2,-48 + 5961: -2,-49 - node: color: '#79150096' id: MiniTileWhiteLineW @@ -8564,10 +8564,10 @@ entities: 2169: 19,28 4741: 26,39 4742: 26,40 - 5910: 30,35 - 5911: 30,36 - 5945: 30,32 - 5946: 32,33 + 5904: 30,35 + 5905: 30,36 + 5939: 30,32 + 5940: 32,33 - node: cleanable: True color: '#EFB34196' @@ -8594,7 +8594,7 @@ entities: color: '#FF0F09FF' id: OldConcreteTrimCornerNw decals: - 6065: -101,-19 + 6058: -101,-19 - node: color: '#9FED5896' id: OldConcreteTrimCornerSe @@ -8604,7 +8604,7 @@ entities: color: '#FF0F09FF' id: OldConcreteTrimCornerSe decals: - 6068: -99,-22 + 6061: -99,-22 - node: color: '#9FED5896' id: OldConcreteTrimCornerSw @@ -8614,17 +8614,17 @@ entities: color: '#FF0F09FF' id: OldConcreteTrimCornerSw decals: - 6066: -101,-22 + 6059: -101,-22 - node: color: '#FF0F09FF' id: OldConcreteTrimEndE decals: - 6072: -98,-19 + 6065: -98,-19 - node: color: '#FF0F09FF' id: OldConcreteTrimInnerSe decals: - 6071: -99,-19 + 6064: -99,-19 - node: color: '#9FED5896' id: OldConcreteTrimLineE @@ -8634,8 +8634,8 @@ entities: color: '#FF0F09FF' id: OldConcreteTrimLineE decals: - 6069: -99,-21 - 6070: -99,-20 + 6062: -99,-21 + 6063: -99,-20 - node: color: '#9FED5896' id: OldConcreteTrimLineN @@ -8647,8 +8647,8 @@ entities: color: '#FF0F09FF' id: OldConcreteTrimLineN decals: - 6073: -99,-19 - 6074: -100,-19 + 6066: -99,-19 + 6067: -100,-19 - node: color: '#9FED5896' id: OldConcreteTrimLineS @@ -8660,7 +8660,7 @@ entities: color: '#FF0F09FF' id: OldConcreteTrimLineS decals: - 6067: -100,-22 + 6060: -100,-22 - node: color: '#9FED5896' id: OldConcreteTrimLineW @@ -8670,8 +8670,8 @@ entities: color: '#FF0F09FF' id: OldConcreteTrimLineW decals: - 6063: -101,-21 - 6064: -101,-20 + 6056: -101,-21 + 6057: -101,-20 - node: color: '#503F66FF' id: Omni @@ -8825,7 +8825,7 @@ entities: 3338: -52.526882,-23.105782 3339: -42.065277,-30.645542 5106: 39.941925,-43.94008 - 6061: -87.17018,-6.246065 + 6054: -87.17018,-6.246065 - node: cleanable: True color: '#FFFFFFFF' @@ -8892,7 +8892,7 @@ entities: 3066: -41,-73 3103: -34,-71 3336: -58.007935,-23.527567 - 6060: -85.27956,-10.652314 + 6053: -85.27956,-10.652314 - node: color: '#FFFFFFFF' id: Rock05 @@ -8935,7 +8935,7 @@ entities: 3340: -42.815277,-30.879917 5107: 41.88389,-42.572388 5108: 54.113747,-45.032722 - 6062: -79.90456,-6.261691 + 6055: -79.90456,-6.261691 - node: angle: 7.853981633974483 rad color: '#FFFFFFFF' @@ -9008,10 +9008,10 @@ entities: 2766: -89,-2 4986: 0,46 5032: -2,46 - 6215: -5,71 - 6216: -3,71 - 6217: 3,71 - 6218: 5,71 + 6207: -5,71 + 6208: -3,71 + 6209: 3,71 + 6210: 5,71 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -9173,7 +9173,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerSE decals: - 6250: 9,56 + 6242: 9,56 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -9297,9 +9297,9 @@ entities: 3767: 16,-5 3768: 16,-4 3769: 16,-3 - 5594: 9,60 - 5595: 9,59 - 5596: 9,58 + 5588: 9,60 + 5589: 9,59 + 5590: 9,58 - node: cleanable: True color: '#FFFFFFFF' @@ -9309,7 +9309,7 @@ entities: 2203: 41,69 2204: 41,68 2205: 41,67 - 6253: 9,57 + 6245: 9,57 - node: color: '#FFFFFFFF' id: WarnLineN @@ -9370,14 +9370,14 @@ entities: 5014: 0,45 5015: -1,45 5017: -2,45 - 5593: 6,56 + 5587: 6,56 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineN decals: - 6251: 8,56 - 6252: 7,56 + 6243: 8,56 + 6244: 7,56 - node: color: '#FFFFFFFF' id: WarnLineS @@ -9396,9 +9396,9 @@ entities: 4165: 16,-5 4166: 16,-4 4167: 16,-3 - 5682: -69,-12 - 5683: -69,-11 - 5684: -69,-10 + 5676: -69,-12 + 5677: -69,-11 + 5678: -69,-10 - node: cleanable: True color: '#FFFFFFFF' @@ -9458,10 +9458,10 @@ entities: 4979: 0,47 4980: -1,47 4981: -2,47 - 5735: -6,68 - 5736: -4,68 - 5737: -2,68 - 5738: 2,68 + 5729: -6,68 + 5730: -4,68 + 5731: -2,68 + 5732: 2,68 - node: cleanable: True color: '#FFFFFFFF' @@ -9500,8 +9500,8 @@ entities: 5307: -23,-36 5335: -32,-36 5442: -39,-32 - 5899: -26,67 - 6110: -35,53 + 5893: -26,67 + 6103: -35,53 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -9518,7 +9518,7 @@ entities: 5429: -36,-37 5434: -37,-39 5448: -34,-36 - 6112: -33,49 + 6105: -33,49 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -9532,8 +9532,8 @@ entities: 5334: -32,-39 5435: -38,-39 5436: -39,-38 - 5900: -26,66 - 6111: -35,49 + 5894: -26,66 + 6104: -35,49 - node: cleanable: True color: '#FFFFFFFF' @@ -9544,28 +9544,28 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 5887: -25,60 - 5888: -20,60 + 5881: -25,60 + 5882: -20,60 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: 3233: -5,35 5452: -34,-33 - 5869: -27,55 - 5870: -22,55 - 5896: -20,59 - 5897: -25,59 + 5863: -27,55 + 5864: -22,55 + 5890: -20,59 + 5891: -25,59 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: 3900: -19,32 5454: -39,-35 - 5880: -18,55 - 5881: -23,55 - 5895: -25,59 - 5898: -20,59 + 5874: -18,55 + 5875: -23,55 + 5889: -25,59 + 5892: -20,59 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe @@ -9576,16 +9576,16 @@ entities: 5430: -37,-37 5431: -36,-36 5451: -34,-33 - 5874: -22,59 - 5875: -27,59 + 5868: -22,59 + 5869: -27,59 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: 5437: -38,-38 5453: -39,-35 - 5876: -23,59 - 5877: -18,59 + 5870: -23,59 + 5871: -18,59 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -9615,15 +9615,15 @@ entities: 5432: -37,-38 5449: -34,-35 5450: -34,-34 - 5865: -27,58 - 5866: -27,57 - 5867: -27,56 - 5871: -22,58 - 5872: -22,57 - 5873: -22,56 - 6116: -33,50 - 6117: -33,51 - 6118: -33,52 + 5859: -27,58 + 5860: -27,57 + 5861: -27,56 + 5865: -22,58 + 5866: -22,57 + 5867: -22,56 + 6109: -33,50 + 6110: -33,51 + 6111: -33,52 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -9662,25 +9662,25 @@ entities: 5444: -37,-32 5445: -36,-32 5446: -35,-32 - 5852: -26,55 - 5853: -25,55 - 5854: -24,55 - 5855: -21,55 - 5856: -20,55 - 5857: -19,55 - 5885: -27,59 - 5886: -26,59 - 5889: -24,59 - 5890: -23,59 - 5891: -22,59 - 5892: -21,59 - 5893: -19,59 - 5894: -18,59 - 5906: -25,67 - 5907: -24,67 - 5908: -23,67 - 5909: -22,67 - 6115: -34,53 + 5846: -26,55 + 5847: -25,55 + 5848: -24,55 + 5849: -21,55 + 5850: -20,55 + 5851: -19,55 + 5879: -27,59 + 5880: -26,59 + 5883: -24,59 + 5884: -23,59 + 5885: -22,59 + 5886: -21,59 + 5887: -19,59 + 5888: -18,59 + 5900: -25,67 + 5901: -24,67 + 5902: -23,67 + 5903: -22,67 + 6108: -34,53 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -9704,17 +9704,17 @@ entities: 5340: -30,-39 5341: -29,-39 5433: -35,-36 - 5844: -19,59 - 5845: -20,59 - 5846: -21,59 - 5847: -26,59 - 5848: -25,59 - 5849: -24,59 - 5901: -25,66 - 5902: -24,66 - 5903: -23,66 - 5904: -22,66 - 5905: -21,66 + 5838: -19,59 + 5839: -20,59 + 5840: -21,59 + 5841: -26,59 + 5842: -25,59 + 5843: -24,59 + 5895: -25,66 + 5896: -24,66 + 5897: -23,66 + 5898: -22,66 + 5899: -21,66 - node: cleanable: True color: '#FFFFFFFF' @@ -9759,14 +9759,14 @@ entities: 5439: -39,-36 5440: -39,-34 5441: -39,-33 - 5858: -18,58 - 5859: -18,57 - 5860: -18,56 - 5862: -23,58 - 5863: -23,57 - 5864: -23,56 - 6113: -35,50 - 6114: -35,51 + 5852: -18,58 + 5853: -18,57 + 5854: -18,56 + 5856: -23,58 + 5857: -23,57 + 5858: -23,56 + 6106: -35,50 + 6107: -35,51 - node: cleanable: True color: '#FFFFFFFF' @@ -9799,7 +9799,7 @@ entities: color: '#FFFFFFFF' id: corgi decals: - 6080: -48.14972,51.089493 + 6073: -48.14972,51.089493 - node: cleanable: True color: '#DE3A3A96' @@ -9820,33 +9820,33 @@ entities: color: '#FF0000FF' id: fireaxe decals: - 6082: -47.71468,51.388058 + 6075: -47.71468,51.388058 - node: color: '#FFFFFFFF' id: fireaxe decals: - 6081: -47.761555,51.325493 + 6074: -47.761555,51.325493 - node: color: '#D4D4D428' id: footprint decals: - 6093: -46.16273,45.8169 - 6094: -45.850227,46.046303 - 6095: -46.259953,46.40779 - 6096: -45.357174,46.254856 - 6097: -45.023838,46.108868 - 6098: -45.405785,45.809948 - 6099: -46.02373,48.20737 - 6100: -45.107063,48.68704 - 6101: -46.093174,49.22232 - 6102: -45.48901,48.700943 - 6103: -45.2945,50.296448 - 6104: -45.2945,50.296448 - 6105: -45.301445,50.296448 - 6106: -45.301445,50.296448 - 6107: -44.884453,50.303364 - 6108: -44.884453,50.303364 - 6109: -44.8914,50.303364 + 6086: -46.16273,45.8169 + 6087: -45.850227,46.046303 + 6088: -46.259953,46.40779 + 6089: -45.357174,46.254856 + 6090: -45.023838,46.108868 + 6091: -45.405785,45.809948 + 6092: -46.02373,48.20737 + 6093: -45.107063,48.68704 + 6094: -46.093174,49.22232 + 6095: -45.48901,48.700943 + 6096: -45.2945,50.296448 + 6097: -45.2945,50.296448 + 6098: -45.301445,50.296448 + 6099: -45.301445,50.296448 + 6100: -44.884453,50.303364 + 6101: -44.884453,50.303364 + 6102: -44.8914,50.303364 - node: angle: 0.3490658503988659 rad color: '#8BBB00FF' @@ -9965,12 +9965,12 @@ entities: color: '#FF0F09FF' id: s decals: - 6076: -99.96925,-20.03051 + 6069: -99.96925,-20.03051 - node: color: '#FF0F09FF' id: scroll decals: - 6075: -100.000496,-19.96801 + 6068: -100.000496,-19.96801 - node: color: '#FF0000FF' id: shortline @@ -10048,10 +10048,10 @@ entities: color: '#FF0000FF' id: smallbrush decals: - 6083: -48.136555,50.77805 - 6084: -48.30843,50.637276 - 6085: -47.79281,50.62163 - 6086: -48.105305,51.05959 + 6076: -48.136555,50.77805 + 6077: -48.30843,50.637276 + 6078: -47.79281,50.62163 + 6079: -48.105305,51.05959 - node: color: '#85FF98FF' id: snake @@ -10861,9 +10861,7 @@ entities: -4,2: 0: 65535 -4,3: - 0: 64895 - 2: 512 - 3: 128 + 0: 65535 3,-2: 0: 65535 6,1: @@ -11349,10 +11347,10 @@ entities: 0: 65535 -8,6: 0: 61439 - 4: 4096 + 2: 4096 -8,7: 0: 65262 - 4: 273 + 2: 273 -7,4: 0: 65535 -7,5: @@ -11533,9 +11531,9 @@ entities: 0: 65535 -9,6: 0: 4095 - 4: 61440 + 2: 61440 -9,7: - 4: 4095 + 2: 4095 0: 61440 -10,8: 0: 65535 @@ -11756,11 +11754,9 @@ entities: -11,9: 0: 65535 -11,10: - 0: 57342 - 5: 8193 + 0: 65535 -11,11: - 0: 64895 - 5: 640 + 0: 65535 -10,9: 0: 65535 -10,10: @@ -11774,14 +11770,11 @@ entities: -9,10: 0: 65535 -8,12: - 0: 49149 - 5: 2 - 2: 16384 + 0: 65535 -8,13: 0: 65535 -7,12: - 0: 65279 - 5: 256 + 0: 65535 -7,13: 0: 65535 -6,12: @@ -11871,8 +11864,7 @@ entities: -13,10: 0: 65535 -13,11: - 5: 4 - 0: 65531 + 0: 65535 -13,8: 0: 65535 0,-17: @@ -11988,11 +11980,9 @@ entities: -11,14: 0: 24575 -10,12: - 0: 63359 - 5: 2176 + 0: 65535 -10,13: - 2: 1 - 0: 61438 + 0: 61439 -10,14: 0: 61439 -9,12: @@ -12184,15 +12174,15 @@ entities: 0: 65471 15,15: 0: 32767 - 6: 32768 + 3: 32768 16,13: 0: 32767 - 6: 32768 + 3: 32768 16,14: 0: 65535 16,15: 0: 65503 - 6: 32 + 3: 32 10,16: 0: 65535 11,16: @@ -12300,8 +12290,7 @@ entities: -8,17: 0: 65348 -7,16: - 0: 65503 - 5: 32 + 0: 65535 -7,17: 0: 63487 -6,16: @@ -12387,8 +12376,7 @@ entities: -15,9: 0: 65535 -14,9: - 0: 49151 - 5: 16384 + 0: 65535 0,-18: 0: 4352 1,-17: @@ -12516,26 +12504,21 @@ entities: -16,11: 0: 52428 -15,10: - 0: 45055 - 7: 20480 + 0: 65535 -15,11: - 0: 36847 - 7: 16 + 0: 36863 -16,12: 0: 52428 -15,12: 0: 34952 -20,10: - 0: 49151 - 7: 16384 + 0: 65535 -20,11: 0: 16383 -19,10: - 0: 26623 - 7: 4096 + 0: 30719 -19,11: - 0: 26471 - 7: 16 + 0: 26487 -24,4: 0: 65535 -24,5: @@ -12665,8 +12648,7 @@ entities: -20,-5: 0: 65535 -19,-6: - 0: 65279 - 5: 256 + 0: 65535 -19,-5: 0: 65535 -18,-6: @@ -12698,14 +12680,11 @@ entities: -24,-6: 0: 65535 -23,-6: - 0: 57343 - 5: 8192 + 0: 65535 -23,-5: - 5: 1 - 0: 65534 + 0: 65535 -22,-6: - 5: 1 - 0: 65534 + 0: 65535 -22,-5: 0: 65535 -21,-6: @@ -13062,7 +13041,7 @@ entities: 0: 65535 17,14: 0: 65471 - 6: 64 + 3: 64 24,8: 0: 65535 24,9: @@ -13101,7 +13080,7 @@ entities: 0: 65535 23,9: 0: 65399 - 6: 136 + 3: 136 23,10: 0: 65535 23,11: @@ -13119,8 +13098,8 @@ entities: 23,13: 0: 65535 24,12: - 0: 57343 - 6: 8192 + 0: 57267 + 3: 8268 24,13: 0: 65535 24,5: @@ -13159,7 +13138,7 @@ entities: 0: 65535 25,10: 0: 65407 - 6: 128 + 3: 128 25,11: 0: 65535 26,9: @@ -13234,11 +13213,11 @@ entities: 0: 65299 20,14: 0: 30579 - 6: 34956 + 3: 34956 20,15: 0: 65535 21,14: - 6: 263 + 3: 263 0: 65272 21,15: 0: 65535 @@ -13252,11 +13231,12 @@ entities: 0: 65535 24,14: 0: 55807 - 6: 9728 + 3: 9728 24,15: 0: 5119 25,12: - 0: 65535 + 0: 65407 + 3: 128 25,13: 0: 65535 25,14: @@ -13264,10 +13244,11 @@ entities: 25,15: 0: 9 26,12: - 0: 65535 + 0: 32767 + 3: 32768 26,13: 0: 49151 - 6: 16384 + 3: 16384 26,14: 0: 8191 27,12: @@ -13561,36 +13542,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 39.154434 - - 147.29524 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -13606,21 +13557,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 5000 moles: @@ -13636,21 +13572,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 25.506031 - - 95.95126 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -24452,7 +24373,7 @@ entities: pos: -38.5,-24.5 parent: 2 - type: Door - secondsUntilStateChange: -13029.5205 + secondsUntilStateChange: -13151.6875 state: Opening - uid: 662 components: @@ -25963,8 +25884,6 @@ entities: - type: DeviceNetwork deviceLists: - 28267 - - type: AtmosDevice - joinedGrid: 2 - uid: 23034 components: - type: Transform @@ -25978,8 +25897,6 @@ entities: - type: DeviceNetwork deviceLists: - 25930 - - type: AtmosDevice - joinedGrid: 2 - uid: 25363 components: - type: Transform @@ -26205,8 +26122,6 @@ entities: - type: DeviceNetwork deviceLists: - 146 - - type: AtmosDevice - joinedGrid: 2 - uid: 42993 components: - type: Transform @@ -26215,8 +26130,6 @@ entities: - type: DeviceNetwork deviceLists: - 43773 - - type: AtmosDevice - joinedGrid: 2 - uid: 43211 components: - type: Transform @@ -26225,8 +26138,6 @@ entities: - type: DeviceNetwork deviceLists: - 11629 - - type: AtmosDevice - joinedGrid: 2 - proto: AltarConvertMaint entities: - uid: 43268 @@ -26321,6 +26232,23 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: AmePart + entities: + - uid: 43814 + components: + - type: Transform + pos: 23.214432,31.779999 + parent: 2 + - uid: 43815 + components: + - type: Transform + pos: 23.417557,31.623753 + parent: 2 + - uid: 43816 + components: + - type: Transform + pos: 23.620682,31.498749 + parent: 2 - proto: AmmoTechFabCircuitboard entities: - uid: 34651 @@ -226780,6 +226708,11 @@ entities: - type: Transform pos: 2.5,-47.5 parent: 2 + - uid: 43813 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 - proto: TableReinforcedGlass entities: - uid: 3025 diff --git a/Resources/Maps/corvax_outpost.yml b/Resources/Maps/corvax_outpost.yml index 8a61dd5de85..5828c754cb7 100644 --- a/Resources/Maps/corvax_outpost.yml +++ b/Resources/Maps/corvax_outpost.yml @@ -19,6 +19,7 @@ tilemap: 30: FloorDarkDiagonal 34: FloorDarkMono 38: FloorDarkPlastic + 42: FloorElevatorShaft 44: FloorFreezer 45: FloorGlass 50: FloorGrassLight @@ -32,6 +33,7 @@ tilemap: 63: FloorLowDesert 64: FloorMetalDiamond 65: FloorMime + 66: FloorMining 70: FloorOldConcrete 71: FloorOldConcreteMono 72: FloorOldConcreteSmooth @@ -47,13 +49,14 @@ tilemap: 104: FloorTechMaint 105: FloorTechMaint2 106: FloorTechMaint3 - 108: FloorWhite 113: FloorWhiteMono + 115: FloorWhitePavement 117: FloorWhitePlastic 118: FloorWood 119: FloorWoodTile 120: Lattice 121: Plating + 123: PlatingBurnt entities: - proto: "" entities: @@ -81,87 +84,87 @@ entities: chunks: 0,0: ind: 0,0 - tiles: GwAAAAACGwAAAAADGwAAAAABeQAAAAAAdwAAAAAAdwAAAAABdwAAAAABdgAAAAABdgAAAAADeQAAAAAADAAAAAAADAAAAAAAFwAAAAAEFwAAAAACFwAAAAAGFwAAAAAGGwAAAAABGwAAAAAAGwAAAAADeQAAAAAAdwAAAAAAdwAAAAACdwAAAAAAdgAAAAADdgAAAAADeQAAAAAAFwAAAAAFDAAAAAAAFwAAAAAHFwAAAAAGFwAAAAAHFwAAAAAHGwAAAAADGwAAAAADGwAAAAADeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAAGFwAAAAAEGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAAAFwAAAAACFwAAAAABFwAAAAAAFwAAAAAFFwAAAAAGFwAAAAAAFwAAAAAHFwAAAAAAFwAAAAAEGAAAAAAGeQAAAAAANQAAAAABNQAAAAAAeQAAAAAAFwAAAAAHFwAAAAACFwAAAAAFFwAAAAACFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAAAFwAAAAAEFwAAAAAFFwAAAAAHFwAAAAAHRwAAAAACNQAAAAACNQAAAAACeQAAAAAAFwAAAAACFwAAAAAGFwAAAAAFFwAAAAAEFwAAAAAFFwAAAAACFwAAAAAAFwAAAAAHFwAAAAADFwAAAAAGFwAAAAAGFwAAAAAEeQAAAAAANQAAAAAANQAAAAADeQAAAAAAFwAAAAAEFwAAAAAEFwAAAAAFFwAAAAAFFwAAAAAGFwAAAAAHFwAAAAAHFwAAAAACFwAAAAAHFwAAAAAEFwAAAAAGFwAAAAAGeQAAAAAANQAAAAADNQAAAAABeQAAAAAAFwAAAAAHFwAAAAAHFwAAAAAAFwAAAAADFwAAAAABFwAAAAADFwAAAAAAFwAAAAACFwAAAAABFwAAAAADFwAAAAADFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAEFwAAAAACFwAAAAABFwAAAAACFwAAAAAFFwAAAAAEFwAAAAAHDAAAAAAAFwAAAAABFwAAAAAGFwAAAAAEFwAAAAAAFwAAAAADFwAAAAABFwAAAAAEFwAAAAAAFwAAAAABFwAAAAACFwAAAAAHFwAAAAACFwAAAAAAFwAAAAABFwAAAAACFwAAAAACFwAAAAABFwAAAAAFFwAAAAAFFwAAAAACFwAAAAACFwAAAAAAFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAAFFwAAAAAEFwAAAAAHFwAAAAADDAAAAAAAFwAAAAADFwAAAAABFwAAAAABFwAAAAABFwAAAAAFFwAAAAAAFwAAAAACFwAAAAAGFwAAAAAFFwAAAAAGFwAAAAAEFwAAAAAHFwAAAAABFwAAAAABDAAAAAAADAAAAAAAFwAAAAAGFwAAAAAEFwAAAAAEFwAAAAAAFwAAAAACFwAAAAADFwAAAAAGFwAAAAAHFwAAAAADFwAAAAAAFwAAAAAAFwAAAAACFwAAAAAHDAAAAAAADAAAAAAADAAAAAAAFwAAAAAHFwAAAAACeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAAFFwAAAAABFwAAAAAEFwAAAAABFwAAAAAAFwAAAAAEFwAAAAAFFwAAAAAGFwAAAAAHFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAADFwAAAAAHFwAAAAADFwAAAAAFFwAAAAAFFwAAAAAFFwAAAAAHDAAAAAAAFwAAAAABFwAAAAACFwAAAAAAFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAADFwAAAAAEFwAAAAACFwAAAAAEFwAAAAAHFwAAAAAAFwAAAAADFwAAAAACFwAAAAAEFwAAAAAGFwAAAAAHFwAAAAACFwAAAAAFFwAAAAAEFwAAAAADFwAAAAAF + tiles: GwAAAAADGwAAAAACGwAAAAABeQAAAAAAdwAAAAACdwAAAAAAdwAAAAABdgAAAAADdgAAAAABeQAAAAAADAAAAAADDAAAAAABFwAAAAACFwAAAAABFwAAAAAGFwAAAAAGGwAAAAACGwAAAAADGwAAAAADeQAAAAAAdwAAAAADdwAAAAABdwAAAAADdgAAAAADdgAAAAACeQAAAAAAFwAAAAAEDAAAAAABFwAAAAAGFwAAAAAAFwAAAAAHFwAAAAAFGwAAAAADGwAAAAADGwAAAAABeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAFGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAADFwAAAAAHFwAAAAABFwAAAAABFwAAAAAAFwAAAAAGFwAAAAAGFwAAAAAGFwAAAAAGFwAAAAAGGAAAAAAGeQAAAAAANQAAAAABNQAAAAADeQAAAAAAFwAAAAAAFwAAAAAEFwAAAAAHFwAAAAAAFwAAAAAEFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAABFwAAAAABRwAAAAABNQAAAAACNQAAAAACeQAAAAAAFwAAAAAHFwAAAAADFwAAAAAEFwAAAAACFwAAAAACFwAAAAAAFwAAAAAGFwAAAAAHFwAAAAAGFwAAAAAGFwAAAAAGFwAAAAAFeQAAAAAANQAAAAABNQAAAAADeQAAAAAAFwAAAAAAFwAAAAAFFwAAAAADFwAAAAAEFwAAAAAGFwAAAAABFwAAAAAGFwAAAAADFwAAAAAEFwAAAAAHFwAAAAAHFwAAAAAEeQAAAAAANQAAAAABNQAAAAACeQAAAAAAFwAAAAAGFwAAAAAFFwAAAAADFwAAAAAGFwAAAAAFFwAAAAAEFwAAAAADFwAAAAADFwAAAAAEFwAAAAADFwAAAAABFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAADFwAAAAAHFwAAAAADFwAAAAACFwAAAAAAFwAAAAADFwAAAAAADAAAAAAAFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAACFwAAAAAAFwAAAAAAFwAAAAACFwAAAAABFwAAAAAEFwAAAAAFFwAAAAABFwAAAAAFFwAAAAABFwAAAAAEFwAAAAAHFwAAAAAAFwAAAAADFwAAAAAFFwAAAAADFwAAAAAAFwAAAAACFwAAAAAFFwAAAAACFwAAAAACFwAAAAABFwAAAAAFFwAAAAAADAAAAAADFwAAAAAHFwAAAAABFwAAAAACFwAAAAADFwAAAAACFwAAAAADFwAAAAAAFwAAAAAGFwAAAAAFFwAAAAAHFwAAAAAHFwAAAAAAFwAAAAAHFwAAAAAEDAAAAAAADAAAAAADFwAAAAACFwAAAAADFwAAAAACFwAAAAADFwAAAAAHFwAAAAADFwAAAAAAFwAAAAAHFwAAAAACFwAAAAAFFwAAAAADFwAAAAAAFwAAAAAFDAAAAAABDAAAAAACDAAAAAAAFwAAAAAHFwAAAAACeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAHFwAAAAACFwAAAAAGFwAAAAAEFwAAAAAGFwAAAAACFwAAAAADFwAAAAACFwAAAAAEFwAAAAACFwAAAAAAFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAHFwAAAAAAFwAAAAAEFwAAAAAGFwAAAAAFFwAAAAACFwAAAAACDAAAAAACFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAAGFwAAAAACFwAAAAAHFwAAAAAAFwAAAAABFwAAAAAHFwAAAAAAFwAAAAACFwAAAAAHFwAAAAAEFwAAAAACFwAAAAAEFwAAAAABFwAAAAAFFwAAAAACFwAAAAAF version: 6 0,-1: ind: 0,-1 - tiles: eQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAFwAAAAAHFwAAAAAEFwAAAAAAFwAAAAAHFwAAAAADFwAAAAAFFwAAAAABFwAAAAAFFwAAAAAHFwAAAAAHFwAAAAAGFwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAABeQAAAAAAFwAAAAAGFwAAAAAEFwAAAAAEeQAAAAAAFwAAAAACFwAAAAABFwAAAAAHFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAADeQAAAAAAFwAAAAAEFwAAAAACFwAAAAABFwAAAAABFwAAAAABFwAAAAACFwAAAAACFwAAAAAAeQAAAAAAGgAAAAACGgAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACeQAAAAAAFwAAAAABFwAAAAACFwAAAAAAFwAAAAADFwAAAAAEFwAAAAAHFwAAAAAHFwAAAAABGgAAAAADGgAAAAACGgAAAAACeQAAAAAARwAAAAAARwAAAAABRwAAAAACeQAAAAAAFwAAAAACFwAAAAACFwAAAAABDAAAAAAAFwAAAAAFFwAAAAABFwAAAAAHDAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARwAAAAAARwAAAAAARwAAAAADeQAAAAAAFwAAAAADFwAAAAAEDAAAAAAADAAAAAAAFwAAAAABFwAAAAACFwAAAAAEDAAAAAAAeQAAAAAAGgAAAAADGgAAAAABCgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAADAAAAAAADAAAAAAAFwAAAAAAFwAAAAAHFwAAAAAAFwAAAAABFwAAAAAGFwAAAAACFwAAAAAHGgAAAAADGgAAAAACGgAAAAAAFwAAAAAAFwAAAAAGFwAAAAACDAAAAAAADAAAAAAAFwAAAAAGFwAAAAAFFwAAAAAFFwAAAAADFwAAAAAEFwAAAAAAFwAAAAACFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAAGFwAAAAABFwAAAAADFwAAAAAFFwAAAAAHFwAAAAAFFwAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAAGFwAAAAADFwAAAAAFWQAAAAAAHAAAAAABFwAAAAADFwAAAAACFwAAAAAAFwAAAAAGFwAAAAACFwAAAAACFwAAAAACFwAAAAAHFwAAAAAEDAAAAAAADAAAAAAADAAAAAAAFwAAAAAGFwAAAAAAeQAAAAAAHAAAAAAAFwAAAAAGFwAAAAAEFwAAAAADFwAAAAAEFwAAAAAAFwAAAAAFFwAAAAACFwAAAAAGFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAACFwAAAAACFwAAAAAFeQAAAAAAeQAAAAAAPwAAAAACPwAAAAAFSgAAAAADDAAAAAAADAAAAAAAFwAAAAAEFwAAAAAEFwAAAAADFwAAAAAHFwAAAAAHFwAAAAAAFwAAAAABFwAAAAABFwAAAAAEeQAAAAAAeQAAAAAAGwAAAAADGwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAFwAAAAADFwAAAAAEFwAAAAABFwAAAAACFwAAAAAAeQAAAAAAeQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAACeQAAAAAAFwAAAAAGFwAAAAAAFwAAAAAAFwAAAAAHeQAAAAAAeQAAAAAAGwAAAAACGwAAAAADGwAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAFwAAAAAAFwAAAAAFFwAAAAABFwAAAAAHFwAAAAACFwAAAAADGwAAAAADGwAAAAACGwAAAAADeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAADAAAAAAAFwAAAAAFFwAAAAADFwAAAAABFwAAAAAFFwAAAAAE + tiles: eQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAFwAAAAAGFwAAAAAHFwAAAAABFwAAAAAAFwAAAAABFwAAAAAFFwAAAAAHFwAAAAABFwAAAAAGFwAAAAAAFwAAAAAEFwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAAAeQAAAAAAFwAAAAAFFwAAAAABFwAAAAAHeQAAAAAAFwAAAAAGFwAAAAAEFwAAAAAAFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADeQAAAAAAFwAAAAABFwAAAAAFFwAAAAAFFwAAAAACFwAAAAAGFwAAAAACFwAAAAAAFwAAAAAFeQAAAAAAGgAAAAACGgAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAADeQAAAAAAFwAAAAAGFwAAAAAAFwAAAAABFwAAAAAEFwAAAAAEFwAAAAAEFwAAAAABFwAAAAAGGgAAAAABGgAAAAAAGgAAAAABeQAAAAAARwAAAAABRwAAAAADRwAAAAAAeQAAAAAAFwAAAAADFwAAAAAHFwAAAAAEDAAAAAADFwAAAAAFFwAAAAAGFwAAAAAGDAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARwAAAAAARwAAAAADRwAAAAACeQAAAAAAFwAAAAACFwAAAAABDAAAAAAADAAAAAAAFwAAAAADFwAAAAAEFwAAAAAGDAAAAAADeQAAAAAAGgAAAAAAGgAAAAABCgAAAAAAeQAAAAAAWQAAAAADeQAAAAAADAAAAAABDAAAAAABFwAAAAACFwAAAAAGFwAAAAADFwAAAAAEFwAAAAADFwAAAAAFFwAAAAAEGgAAAAADGgAAAAABGgAAAAACFwAAAAAHFwAAAAAGFwAAAAACDAAAAAADDAAAAAABFwAAAAAEFwAAAAACFwAAAAACFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAAAFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAAFwAAAAADFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAEFwAAAAADDAAAAAAADAAAAAAADAAAAAABFwAAAAAAFwAAAAABFwAAAAABWQAAAAACHAAAAAABFwAAAAADFwAAAAAGFwAAAAAEFwAAAAAEFwAAAAAHFwAAAAAEFwAAAAADFwAAAAAEFwAAAAAADAAAAAAADAAAAAADDAAAAAADFwAAAAAAFwAAAAAFeQAAAAAAHAAAAAAAFwAAAAADFwAAAAADFwAAAAAAFwAAAAAHFwAAAAAAFwAAAAABFwAAAAAHFwAAAAAFFwAAAAAHFwAAAAACFwAAAAABFwAAAAADFwAAAAAHFwAAAAAEeQAAAAAAeQAAAAAAPwAAAAAEPwAAAAAESgAAAAADDAAAAAABDAAAAAABFwAAAAABFwAAAAAFFwAAAAAEFwAAAAAEFwAAAAAHFwAAAAAGFwAAAAABFwAAAAAFFwAAAAAAeQAAAAAAeQAAAAAAGwAAAAACGwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAFwAAAAAGFwAAAAADFwAAAAAEFwAAAAAEFwAAAAAAeQAAAAAAeQAAAAAAGwAAAAAAGwAAAAACGwAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAFwAAAAAEFwAAAAABFwAAAAADFwAAAAAHeQAAAAAAeQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAABeQAAAAAAFwAAAAACFwAAAAAAFwAAAAACFwAAAAAGFwAAAAADFwAAAAABGwAAAAAAGwAAAAADGwAAAAADeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAABdgAAAAADeQAAAAAADAAAAAADFwAAAAACFwAAAAACFwAAAAAFFwAAAAACFwAAAAAA version: 6 -1,0: ind: -1,0 - tiles: NQAAAAACNQAAAAADNQAAAAABeQAAAAAAGgAAAAAAGgAAAAAAGgAAAAACeQAAAAAAFwAAAAAEFwAAAAADFgAAAAAEeQAAAAAAGgAAAAADGgAAAAADGwAAAAAAGwAAAAACNQAAAAACNQAAAAABNQAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADFgAAAAADFgAAAAABFgAAAAAGeQAAAAAANQAAAAAAeQAAAAAAGwAAAAABGwAAAAACNQAAAAAANQAAAAABNQAAAAACeQAAAAAAGgAAAAAAGgAAAAABGgAAAAADeQAAAAAAFgAAAAAFFgAAAAAEFgAAAAAAeQAAAAAAGgAAAAADeQAAAAAAGwAAAAAAGwAAAAADNQAAAAADNQAAAAACNQAAAAABeQAAAAAAGgAAAAAAGgAAAAABGgAAAAAAeQAAAAAAFgAAAAAGFgAAAAAAFgAAAAAFeQAAAAAAGgAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAADFgAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAACGgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAFwAAAAAGFgAAAAAGFgAAAAABFgAAAAAGFgAAAAACFgAAAAACFgAAAAAGeQAAAAAAGgAAAAABGwAAAAACGwAAAAABGgAAAAACdgAAAAACdgAAAAADdgAAAAABeQAAAAAAFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGeQAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAACeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAFwAAAAAFeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAABFwAAAAAGFwAAAAABFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAFgAAAAAGFwAAAAAEFwAAAAAEFwAAAAACFwAAAAAAFwAAAAAEFwAAAAABFwAAAAAHFwAAAAAAFwAAAAAHFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAEFgAAAAAGFwAAAAABFwAAAAAHFwAAAAADFwAAAAAFFwAAAAACFwAAAAAFFwAAAAAGFwAAAAAAFwAAAAAEFwAAAAAEFwAAAAAHFgAAAAABFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAADFwAAAAACFwAAAAAEFwAAAAAEFwAAAAAGFwAAAAACFwAAAAACFwAAAAAGFwAAAAAAFwAAAAAGFwAAAAAEFwAAAAADFgAAAAACFgAAAAAAFgAAAAADFgAAAAAGFwAAAAAGFwAAAAAHFwAAAAACFwAAAAABFwAAAAAEFwAAAAADFwAAAAABFwAAAAAAFwAAAAAAFwAAAAADFwAAAAAEFgAAAAABFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAFFwAAAAAHFwAAAAAAFwAAAAADFwAAAAAFFwAAAAADFwAAAAACFwAAAAAAFwAAAAAEFwAAAAABFwAAAAAHFgAAAAAGFgAAAAADFgAAAAADFgAAAAAFFgAAAAACFwAAAAABFwAAAAACFwAAAAABFwAAAAAGFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAAEFwAAAAABFgAAAAAGFgAAAAAEFgAAAAAFFgAAAAAAFwAAAAADFwAAAAABFwAAAAAEFwAAAAAHFwAAAAADFwAAAAAHFwAAAAAFFwAAAAADFwAAAAAFFwAAAAAAFwAAAAAHFgAAAAAAFgAAAAACFgAAAAABFwAAAAABFwAAAAAGFwAAAAAEFwAAAAAHFwAAAAAEFwAAAAACFwAAAAAAFwAAAAAA + tiles: NQAAAAACNQAAAAACNQAAAAACeQAAAAAAGgAAAAADGgAAAAACGgAAAAACeQAAAAAAFwAAAAAHFwAAAAACFgAAAAACeQAAAAAAGgAAAAADGgAAAAADGwAAAAACGwAAAAACNQAAAAACNQAAAAADNQAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAAAFgAAAAACFgAAAAAGFgAAAAABeQAAAAAANQAAAAAAeQAAAAAAGwAAAAAAGwAAAAADNQAAAAADNQAAAAACNQAAAAACeQAAAAAAGgAAAAADGgAAAAABGgAAAAABeQAAAAAAFgAAAAAGFgAAAAAAFgAAAAACeQAAAAAAGgAAAAACeQAAAAAAGwAAAAADGwAAAAACNQAAAAABNQAAAAACNQAAAAADeQAAAAAAGgAAAAABGgAAAAABGgAAAAAAeQAAAAAAFgAAAAAEFgAAAAABFgAAAAAFeQAAAAAAGgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAAFgAAAAABGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABdgAAAAACdgAAAAACdgAAAAABeQAAAAAAFwAAAAAEFgAAAAAGFgAAAAAGFgAAAAAEFgAAAAABFgAAAAAEFgAAAAADeQAAAAAAGgAAAAABGwAAAAABGwAAAAACGgAAAAACdgAAAAABdgAAAAACdgAAAAADeQAAAAAAFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAeQAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAADeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAFwAAAAAGeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAADFwAAAAAFFwAAAAAEFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAFgAAAAAAFwAAAAAEFwAAAAAHFwAAAAAEFwAAAAAFFwAAAAAHFwAAAAACFwAAAAADFwAAAAAHFwAAAAABFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAADFgAAAAAFFwAAAAADFwAAAAABFwAAAAAGFwAAAAAEFwAAAAACFwAAAAADFwAAAAAFFwAAAAAEFwAAAAAHFwAAAAAGFwAAAAACFgAAAAAEFgAAAAAEFgAAAAADFgAAAAAFFgAAAAAGFwAAAAAFFwAAAAAAFwAAAAADFwAAAAACFwAAAAAAFwAAAAAFFwAAAAACFwAAAAADFwAAAAAFFwAAAAAGFwAAAAAGFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAAGFwAAAAAEFwAAAAAAFwAAAAADFwAAAAAGFwAAAAAFFwAAAAAHFwAAAAAHFwAAAAAHFwAAAAAAFwAAAAAFFwAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAFwAAAAADFwAAAAACFwAAAAABFwAAAAACFwAAAAAEFwAAAAACFwAAAAAAFwAAAAAAFwAAAAAFFwAAAAADFgAAAAAAFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAEFwAAAAAFFwAAAAAEFwAAAAADFwAAAAADFwAAAAAEFwAAAAAAFwAAAAAAFwAAAAAFFwAAAAABFwAAAAACFwAAAAAAFgAAAAABFgAAAAAGFgAAAAACFgAAAAAGFwAAAAABFwAAAAAGFwAAAAAAFwAAAAAHFwAAAAACFwAAAAAHFwAAAAAGFwAAAAACFwAAAAAEFwAAAAAHFwAAAAAFFgAAAAADFgAAAAAFFgAAAAACFwAAAAAEFwAAAAABFwAAAAAEFwAAAAAFFwAAAAABFwAAAAADFwAAAAAAFwAAAAAE version: 6 -1,-1: ind: -1,-1 - tiles: PAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAADAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAABFwAAAAADFwAAAAACPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAADAAAAAAADAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAAGFwAAAAAAeQAAAAAAFwAAAAAHFwAAAAAFDAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAASwAAAAADSwAAAAACSwAAAAABSwAAAAABSwAAAAADeQAAAAAAFwAAAAAHFwAAAAADeQAAAAAAFwAAAAABFwAAAAAEFwAAAAAFDAAAAAAADAAAAAAADAAAAAAADAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAASwAAAAABeQAAAAAAFwAAAAAFFwAAAAAGeQAAAAAAFwAAAAAGFwAAAAABFwAAAAAGFwAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAAFFwAAAAAHFwAAAAACeQAAAAAAFwAAAAABFwAAAAAEFwAAAAAGFwAAAAAHFwAAAAAHFwAAAAAFDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAAEFwAAAAABFwAAAAAHFwAAAAAHFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAAFwAAAAAAFwAAAAABFwAAAAAEFwAAAAAGDAAAAAAADAAAAAAAFwAAAAAEFwAAAAAAFwAAAAAGFwAAAAAHFwAAAAADFwAAAAAFSgAAAAABSgAAAAAAFwAAAAAEFwAAAAABFwAAAAAHFwAAAAACFwAAAAAAFwAAAAABFwAAAAAHFwAAAAAFFwAAAAADFwAAAAAHFwAAAAABFwAAAAAAFwAAAAAGFwAAAAAHeQAAAAAAFwAAAAACSgAAAAACFwAAAAAAFwAAAAACFwAAAAAHFwAAAAABFwAAAAAFFwAAAAACFwAAAAADFwAAAAAGFwAAAAAFFwAAAAAAFwAAAAADFwAAAAABFwAAAAAFeQAAAAAAeQAAAAAASgAAAAABFwAAAAAFFwAAAAAHFwAAAAAHFwAAAAABFwAAAAAFFwAAAAAEFwAAAAAAFwAAAAAHFwAAAAAFFwAAAAAGFwAAAAAFFwAAAAACFwAAAAAGFwAAAAAHSgAAAAADFwAAAAAAFwAAAAAGFwAAAAAAFwAAAAAGFwAAAAAAFwAAAAAGFwAAAAAEFwAAAAACFwAAAAAHFwAAAAAHFwAAAAAGFwAAAAAEFwAAAAAEFwAAAAACFwAAAAACFwAAAAABFwAAAAACFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAHFwAAAAAEFwAAAAAEFwAAAAABFwAAAAAHFwAAAAAFFwAAAAAFFwAAAAABFwAAAAADPwAAAAADFwAAAAABFwAAAAAAFwAAAAAEFwAAAAAAFwAAAAADFwAAAAAEFwAAAAAEFwAAAAABFwAAAAACFwAAAAADFwAAAAABFwAAAAAHFwAAAAAFFwAAAAAEeQAAAAAAGwAAAAABRgAAAAADRgAAAAACRgAAAAAARgAAAAABFwAAAAAEFwAAAAACFwAAAAAHFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAABFwAAAAACSgAAAAABeQAAAAAAGwAAAAACGwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAeQAAAAAAFwAAAAABFwAAAAAGFwAAAAAASgAAAAADSgAAAAACeQAAAAAAGwAAAAACGwAAAAACNQAAAAACNQAAAAACNQAAAAAAeQAAAAAAGgAAAAABGgAAAAABGgAAAAADeQAAAAAAFwAAAAAFFwAAAAADSgAAAAACSgAAAAACeQAAAAAAeQAAAAAAGwAAAAABGwAAAAAA + tiles: PAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAADAAAAAABeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAAAFwAAAAACFwAAAAAGPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAADAAAAAABDAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAADFwAAAAAFeQAAAAAAFwAAAAAEFwAAAAAEDAAAAAAADAAAAAABDAAAAAACDAAAAAACeQAAAAAASwAAAAAASwAAAAADSwAAAAACSwAAAAAASwAAAAACeQAAAAAAFwAAAAACFwAAAAADeQAAAAAAFwAAAAACFwAAAAAFFwAAAAABDAAAAAADDAAAAAAADAAAAAACDAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAASwAAAAABeQAAAAAAFwAAAAAFFwAAAAACeQAAAAAAFwAAAAABFwAAAAAGFwAAAAAHFwAAAAAHDAAAAAABDAAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAAADAAAAAAADAAAAAADFwAAAAADFwAAAAABFwAAAAAHeQAAAAAAFwAAAAABFwAAAAAGFwAAAAAFFwAAAAAHFwAAAAAGFwAAAAAHDAAAAAADDAAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAADFwAAAAAGFwAAAAAHFwAAAAAHFwAAAAAGFwAAAAAFFwAAAAAFFwAAAAABFwAAAAAFFwAAAAAFFwAAAAABFwAAAAAGFwAAAAAADAAAAAACDAAAAAADFwAAAAAGFwAAAAAGFwAAAAAGFwAAAAABFwAAAAADFwAAAAABSgAAAAAASgAAAAAAFwAAAAAFFwAAAAADFwAAAAAGFwAAAAADFwAAAAACFwAAAAADFwAAAAAEFwAAAAADFwAAAAAHFwAAAAADFwAAAAAAFwAAAAADFwAAAAADFwAAAAACeQAAAAAAFwAAAAAFSgAAAAAAFwAAAAAEFwAAAAAEFwAAAAADFwAAAAACFwAAAAAHFwAAAAAGFwAAAAAHFwAAAAACFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAHFwAAAAABeQAAAAAAeQAAAAAASgAAAAACFwAAAAABFwAAAAABFwAAAAACFwAAAAAFFwAAAAADFwAAAAADFwAAAAAAFwAAAAABFwAAAAABFwAAAAAHFwAAAAABFwAAAAAEFwAAAAAEFwAAAAABSgAAAAAAFwAAAAAHFwAAAAAEFwAAAAABFwAAAAAEFwAAAAACFwAAAAAEFwAAAAAHFwAAAAACFwAAAAAHFwAAAAADFwAAAAAAFwAAAAACFwAAAAABFwAAAAAAFwAAAAAEFwAAAAAHFwAAAAAFFwAAAAAGFwAAAAAEFwAAAAADFwAAAAAGFwAAAAAGFwAAAAADFwAAAAAAFwAAAAADFwAAAAAFFwAAAAAFFwAAAAADFwAAAAAFPwAAAAADFwAAAAAAFwAAAAAAFwAAAAAHFwAAAAAFFwAAAAACFwAAAAABFwAAAAAHFwAAAAADFwAAAAAFFwAAAAAEFwAAAAADFwAAAAAHFwAAAAAAFwAAAAAAeQAAAAAAGwAAAAAARgAAAAABRgAAAAABRgAAAAADRgAAAAACFwAAAAAAFwAAAAACFwAAAAACFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAHFwAAAAABSgAAAAABeQAAAAAAGwAAAAABGwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAeQAAAAAAFwAAAAABFwAAAAABFwAAAAACSgAAAAAASgAAAAABeQAAAAAAGwAAAAABGwAAAAAANQAAAAACNQAAAAADNQAAAAADeQAAAAAAGgAAAAABGgAAAAADGgAAAAADeQAAAAAAFwAAAAAGFwAAAAACSgAAAAADSgAAAAACeQAAAAAAeQAAAAAAGwAAAAADGwAAAAAC version: 6 0,-2: ind: 0,-2 - tiles: FwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAAHFwAAAAABDAAAAAAADAAAAAAAFwAAAAAAeQAAAAAAdQAAAAABdQAAAAAAdQAAAAACdQAAAAADdQAAAAACdQAAAAAAeQAAAAAADAAAAAAADAAAAAAAFwAAAAACFwAAAAABFwAAAAAAFwAAAAADDAAAAAAAFwAAAAAHeQAAAAAAdQAAAAAAcQAAAAABcQAAAAACcQAAAAADcQAAAAACdQAAAAAAdQAAAAACWQAAAAABFwAAAAACFwAAAAAEFwAAAAAGFwAAAAADFwAAAAAAFwAAAAABFwAAAAAAdQAAAAAAdQAAAAABcQAAAAADcQAAAAACcQAAAAADcQAAAAABdQAAAAADdQAAAAABFwAAAAAEFwAAAAACFwAAAAAAFwAAAAAHFwAAAAAEFwAAAAAHFwAAAAACFwAAAAAFeQAAAAAAdQAAAAADcQAAAAABcQAAAAABcQAAAAACcQAAAAABdQAAAAACdQAAAAAAFwAAAAAHFwAAAAACFwAAAAAHFwAAAAADFwAAAAABFwAAAAACFwAAAAAHFwAAAAAGeQAAAAAAdQAAAAAAdQAAAAABdQAAAAAAdQAAAAADdQAAAAACdQAAAAAAeQAAAAAAFwAAAAADFwAAAAAAFwAAAAAGDAAAAAAAFwAAAAABFwAAAAABFwAAAAAHFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAADFwAAAAAHDAAAAAAADAAAAAAADAAAAAAAFwAAAAACFwAAAAAFFwAAAAAFDAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAABFwAAAAADFwAAAAABFwAAAAAEFwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAAEFwAAAAAEFwAAAAAGDAAAAAAADAAAAAAADAAAAAAAFwAAAAACFwAAAAAHFwAAAAAHFwAAAAAHFwAAAAADFwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAAFFwAAAAAAFwAAAAAHDAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAAFwAAAAAFFwAAAAAHFwAAAAACFwAAAAACFwAAAAAHFwAAAAAHFwAAAAADDAAAAAAADAAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAADdQAAAAABFwAAAAACFwAAAAABFwAAAAAEFwAAAAAEFwAAAAAEFwAAAAABFwAAAAADFwAAAAAEFwAAAAAHFwAAAAAHFwAAAAABeQAAAAAAdQAAAAAAdQAAAAACdQAAAAAAeQAAAAAAFwAAAAACFwAAAAAGFwAAAAAFFwAAAAAAFwAAAAABeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAFFwAAAAAHFwAAAAAGeQAAAAAAdQAAAAADdQAAAAACdQAAAAACdQAAAAABFwAAAAAFFwAAAAAGFwAAAAACFwAAAAAFFwAAAAACeQAAAAAAWQAAAAABFwAAAAAHFwAAAAAFFwAAAAABFwAAAAAGeQAAAAAAdQAAAAABdQAAAAACdQAAAAACeQAAAAAAFwAAAAAAFwAAAAADFwAAAAAGFwAAAAAHFwAAAAAEeQAAAAAAWQAAAAABFwAAAAAEFwAAAAAGFwAAAAAGFwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAHFwAAAAAFFwAAAAACFwAAAAACeQAAAAAAWQAAAAACFwAAAAAFFwAAAAAHFwAAAAACFwAAAAABFwAAAAABFwAAAAADFwAAAAAHFwAAAAAGFwAAAAAAFwAAAAADFwAAAAAEFwAAAAAHFwAAAAAHFwAAAAADeQAAAAAAeQAAAAAA + tiles: FwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAADeQAAAAAAeQAAAAAAeQAAAAAADAAAAAADDAAAAAADDAAAAAAAFwAAAAADFwAAAAAADAAAAAABDAAAAAADFwAAAAAGeQAAAAAAdQAAAAACdQAAAAAAdQAAAAABdQAAAAACdQAAAAAAdQAAAAADeQAAAAAADAAAAAAADAAAAAADFwAAAAACFwAAAAABFwAAAAACFwAAAAAADAAAAAABFwAAAAAFeQAAAAAAdQAAAAACcQAAAAAAcQAAAAAAcQAAAAACcQAAAAADdQAAAAAAdQAAAAAAWQAAAAABFwAAAAAAFwAAAAADFwAAAAACFwAAAAAGFwAAAAAEFwAAAAAHFwAAAAADdQAAAAABdQAAAAACcQAAAAABcQAAAAADcQAAAAADcQAAAAAAdQAAAAACdQAAAAABFwAAAAAEFwAAAAACFwAAAAAGFwAAAAADFwAAAAAFFwAAAAACFwAAAAAAFwAAAAACeQAAAAAAdQAAAAACcQAAAAADcQAAAAADcQAAAAACcQAAAAAAdQAAAAAAdQAAAAACFwAAAAAAFwAAAAABFwAAAAABFwAAAAADFwAAAAAHFwAAAAADFwAAAAABFwAAAAABeQAAAAAAdQAAAAABdQAAAAABdQAAAAAAdQAAAAADdQAAAAABdQAAAAABeQAAAAAAFwAAAAAAFwAAAAADFwAAAAAHDAAAAAAAFwAAAAACFwAAAAADFwAAAAAGFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAFFwAAAAAFDAAAAAABDAAAAAADDAAAAAAAFwAAAAADFwAAAAAAFwAAAAAAFgAAAAAEFgAAAAAFSgAAAAADFwAAAAAFFwAAAAACFwAAAAAAFwAAAAAGFwAAAAACFwAAAAAHDAAAAAADDAAAAAADDAAAAAACDAAAAAAAFwAAAAAAFwAAAAAFFwAAAAAFFgAAAAADFgAAAAAFFgAAAAAASgAAAAABFwAAAAAHFwAAAAADFwAAAAAEFwAAAAAEFwAAAAAEDAAAAAABDAAAAAAADAAAAAADDAAAAAADFwAAAAAFFwAAAAAHFwAAAAAEFgAAAAABFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAHFwAAAAADFwAAAAAHFwAAAAACFwAAAAAAFwAAAAADDAAAAAACFgAAAAAEeQAAAAAAdQAAAAADdQAAAAABdQAAAAACdQAAAAADFwAAAAACFwAAAAABFwAAAAAAFwAAAAAHFwAAAAAAFwAAAAADFwAAAAAFFwAAAAAHFwAAAAACFwAAAAAFFwAAAAABeQAAAAAAdQAAAAACdQAAAAABdQAAAAAAeQAAAAAAFwAAAAAEFwAAAAAAFwAAAAAEFwAAAAAGFwAAAAAGeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAEFwAAAAADFwAAAAAAeQAAAAAAdQAAAAAAdQAAAAADdQAAAAADdQAAAAAAFwAAAAAHFwAAAAAHFwAAAAAFFwAAAAADFwAAAAACeQAAAAAAWQAAAAADFwAAAAAGFwAAAAAFFwAAAAAEFwAAAAAHeQAAAAAAdQAAAAAAdQAAAAABdQAAAAADeQAAAAAAFwAAAAAHFwAAAAAGFwAAAAAFFwAAAAADFwAAAAAEeQAAAAAAWQAAAAABFwAAAAAEFwAAAAACFwAAAAAEFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAAHFwAAAAACeQAAAAAAWQAAAAAAFwAAAAAAFwAAAAADFwAAAAAHFwAAAAAHFwAAAAAGFwAAAAAGFwAAAAAAFwAAAAACFwAAAAAGFwAAAAACFwAAAAAEFwAAAAAAFwAAAAABFwAAAAAHeQAAAAAAeQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: FwAAAAAGFwAAAAAAFwAAAAACFwAAAAAGFwAAAAAEFwAAAAAAFwAAAAABGAAAAAABGAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAEGAAAAAAFGAAAAAABGAAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAADGAAAAAADGAAAAAADGAAAAAAAGAAAAAAGGAAAAAAFGAAAAAAEGAAAAAACGAAAAAAFGwAAAAACHAAAAAABHAAAAAAAGwAAAAACGgAAAAAAGgAAAAABeQAAAAAAGAAAAAAGGAAAAAAFGAAAAAABGAAAAAAGGAAAAAACGAAAAAAFGAAAAAAAGAAAAAACGAAAAAADeQAAAAAAHAAAAAACHAAAAAAAeQAAAAAAGgAAAAADGgAAAAAAeQAAAAAAGAAAAAAFGAAAAAAAGAAAAAAGGAAAAAABGAAAAAAGGAAAAAAFGAAAAAABGAAAAAAEGAAAAAABeQAAAAAAHAAAAAAAHAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAABGAAAAAABGAAAAAAGGAAAAAAFGAAAAAADGAAAAAAEGAAAAAAFGAAAAAAFGAAAAAABGwAAAAAAHAAAAAAAHAAAAAACGwAAAAAAGgAAAAAAGgAAAAABeQAAAAAAGAAAAAAFGAAAAAAFGAAAAAABGAAAAAABGAAAAAADGAAAAAABGAAAAAAAGAAAAAADGAAAAAACeQAAAAAAHAAAAAACHAAAAAAAeQAAAAAAGgAAAAACGgAAAAACeQAAAAAAGAAAAAAEGAAAAAAAGAAAAAAGGAAAAAAFGAAAAAADGAAAAAAFGAAAAAAFGAAAAAAAGAAAAAAEeQAAAAAAHAAAAAABHAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAEGAAAAAAFGAAAAAAEGAAAAAAFGAAAAAAGGAAAAAAGGAAAAAAEGAAAAAAEGAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAADeQAAAAAAGAAAAAADGAAAAAAEGAAAAAAGGAAAAAAFGAAAAAACGAAAAAAGGAAAAAACGAAAAAACGAAAAAAFHAAAAAADHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADWQAAAAADGAAAAAAEGAAAAAAEGAAAAAAEGAAAAAAFGAAAAAACGAAAAAADGAAAAAAAGAAAAAAFGAAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAHAAAAAAAHAAAAAADHAAAAAACeQAAAAAAGAAAAAAFGAAAAAAAGAAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAGGAAAAAADGAAAAAAEeQAAAAAAeQAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAADeQAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAJgAAAAACJgAAAAABJgAAAAACeQAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAeQAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAAAeQAAAAAAGAAAAAAEGAAAAAABeQAAAAAAJgAAAAAAIgAAAAABJgAAAAAAeQAAAAAAGAAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAFGAAAAAAEeQAAAAAAJgAAAAACIgAAAAACJgAAAAAAeQAAAAAAGAAAAAABeQAAAAAAGAAAAAAFGAAAAAAAGAAAAAAFGAAAAAAGGAAAAAADGAAAAAACGAAAAAAGGAAAAAAEGAAAAAACeQAAAAAAJgAAAAABIgAAAAADJgAAAAABeQAAAAAAGAAAAAAEeQAAAAAAGAAAAAAEGAAAAAABGAAAAAAAGAAAAAABGAAAAAACGAAAAAAEGAAAAAAGGAAAAAAFGAAAAAADeQAAAAAAJgAAAAACJgAAAAABJgAAAAACeQAAAAAAGAAAAAABeQAAAAAA + tiles: FwAAAAADFwAAAAAGFwAAAAABFwAAAAADFwAAAAAGFwAAAAAFFwAAAAAAGAAAAAABGAAAAAABGAAAAAAGGAAAAAACGAAAAAAGGAAAAAACGAAAAAABGAAAAAAEGAAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAABGAAAAAAEGAAAAAAFGAAAAAAAGAAAAAAAGAAAAAAEGAAAAAAFGAAAAAAFGAAAAAAFGwAAAAABHAAAAAABHAAAAAACGwAAAAACGgAAAAACGgAAAAABeQAAAAAAGAAAAAAGGAAAAAACGAAAAAABGAAAAAAAGAAAAAAGGAAAAAABGAAAAAAEGAAAAAAEGAAAAAAFeQAAAAAAHAAAAAACHAAAAAADeQAAAAAAGgAAAAAAGgAAAAAAeQAAAAAAGAAAAAADGAAAAAAGGAAAAAAFGAAAAAACGAAAAAAGGAAAAAADGAAAAAAEGAAAAAABGAAAAAADeQAAAAAAHAAAAAAAHAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAGGAAAAAAEGAAAAAADGAAAAAABGAAAAAAFGAAAAAACGAAAAAAFGAAAAAAFGAAAAAAFGwAAAAAAHAAAAAADHAAAAAABGwAAAAABGgAAAAADGgAAAAADeQAAAAAAGAAAAAABGAAAAAAEGAAAAAAFGAAAAAADGAAAAAAEGAAAAAAEGAAAAAAGGAAAAAAGGAAAAAADeQAAAAAAHAAAAAACHAAAAAACeQAAAAAAGgAAAAABGgAAAAABeQAAAAAAGAAAAAAEGAAAAAABGAAAAAAAGAAAAAADGAAAAAAEGAAAAAAAGAAAAAAGGAAAAAACGAAAAAAEeQAAAAAAHAAAAAAAHAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAACGAAAAAABGAAAAAADGAAAAAACGAAAAAABGAAAAAABGAAAAAADGAAAAAAFGAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAACeQAAAAAAGAAAAAADGAAAAAADGAAAAAACGAAAAAAFGAAAAAAGGAAAAAAAGAAAAAAAGAAAAAAFGAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAAAHAAAAAABWQAAAAACGAAAAAAEGAAAAAADGAAAAAADGAAAAAAGGAAAAAAEGAAAAAAAGAAAAAADGAAAAAAEGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHAAAAAAAHAAAAAAAHAAAAAABeQAAAAAAGAAAAAAFGAAAAAAFGAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAGGAAAAAAAeQAAAAAAeQAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACeQAAAAAAGAAAAAACGAAAAAAEeQAAAAAAJgAAAAACJgAAAAADJgAAAAACeQAAAAAAGAAAAAAFGAAAAAAFeQAAAAAAeQAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABeQAAAAAAGAAAAAADGAAAAAADeQAAAAAAJgAAAAADIgAAAAADJgAAAAAAeQAAAAAAGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAGGAAAAAAEeQAAAAAAJgAAAAADIgAAAAABJgAAAAACeQAAAAAAGAAAAAAEeQAAAAAAGAAAAAADGAAAAAAGGAAAAAAAGAAAAAAAGAAAAAAGGAAAAAAFGAAAAAAGGAAAAAAFGAAAAAAEeQAAAAAAJgAAAAACIgAAAAAAJgAAAAADeQAAAAAAGAAAAAAGeQAAAAAAGAAAAAACGAAAAAAFGAAAAAADGAAAAAAGGAAAAAAEGAAAAAAEGAAAAAADGAAAAAAGGAAAAAADeQAAAAAAJgAAAAABJgAAAAABJgAAAAADeQAAAAAAGAAAAAAGeQAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: DAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAADFwAAAAAHFwAAAAABFwAAAAACFwAAAAACFwAAAAAADAAAAAAAeQAAAAAAdQAAAAABdQAAAAACdQAAAAABdQAAAAABdQAAAAACdQAAAAABeQAAAAAAFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAAAFwAAAAAAFwAAAAAHFwAAAAAAdQAAAAADdQAAAAAAdQAAAAACcQAAAAADcQAAAAADcQAAAAACdQAAAAACdQAAAAACdQAAAAADFwAAAAAAFwAAAAAGFwAAAAAEFwAAAAACFwAAAAAFFwAAAAAGFwAAAAAAFwAAAAADdQAAAAACdQAAAAADcQAAAAAAcQAAAAABcQAAAAADdQAAAAABdQAAAAAAeQAAAAAAFwAAAAAGFwAAAAADFwAAAAABFwAAAAABFwAAAAADFwAAAAAEFwAAAAAGdQAAAAADdQAAAAAAdQAAAAAAcQAAAAADcQAAAAABcQAAAAACdQAAAAADdQAAAAAAeQAAAAAAFwAAAAAAFwAAAAACFwAAAAAFFwAAAAAGFwAAAAAHFwAAAAAEGAAAAAAGFwAAAAAAeQAAAAAAdQAAAAADdQAAAAABdQAAAAADdQAAAAADdQAAAAAAdQAAAAABeQAAAAAAFwAAAAADFwAAAAAGFwAAAAAGGAAAAAAGGAAAAAAAFwAAAAAFFwAAAAAGFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAHFwAAAAAEGAAAAAADFwAAAAADFwAAAAACFwAAAAAGFwAAAAABFwAAAAAHFwAAAAADFwAAAAACFwAAAAAAFwAAAAABFwAAAAABFwAAAAADFwAAAAAFFwAAAAACFwAAAAAHFwAAAAAFFwAAAAAFFwAAAAAEGAAAAAABGAAAAAABFwAAAAAEFwAAAAAEFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAHFwAAAAADFwAAAAAFFwAAAAADFwAAAAAEFwAAAAAFFwAAAAACFwAAAAAFGAAAAAAEGAAAAAAAGAAAAAAAFwAAAAAFFwAAAAACFwAAAAAEFwAAAAAAFwAAAAABFwAAAAAFFwAAAAAAFwAAAAAEFwAAAAAAFwAAAAADFwAAAAABFwAAAAAGFwAAAAACGAAAAAAFGAAAAAABGAAAAAAFFwAAAAACFwAAAAAEFwAAAAACFwAAAAACFwAAAAABFwAAAAAHFwAAAAAHFwAAAAAGFwAAAAACFwAAAAABFwAAAAACFwAAAAAEGAAAAAAFGAAAAAAFGAAAAAAFGAAAAAAFZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAACFwAAAAAHFwAAAAACFwAAAAADGAAAAAADGAAAAAAFGAAAAAACGAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAFwAAAAAGFwAAAAAFGAAAAAADGAAAAAAGGAAAAAAFGAAAAAAEGAAAAAAFGAAAAAAFGAAAAAAGZAAAAAACZAAAAAAAZAAAAAABZAAAAAABZAAAAAACWQAAAAAAeQAAAAAAFwAAAAAEGAAAAAAFGAAAAAAFFwAAAAAAGAAAAAAGFwAAAAAEGAAAAAABGAAAAAAFGAAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAFwAAAAACFwAAAAACFwAAAAACGAAAAAABGAAAAAACGAAAAAACGAAAAAAAGAAAAAABGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAGGAAAAAAEGAAAAAAFGAAAAAAAGAAAAAAFGAAAAAAAGAAAAAABGAAAAAAB + tiles: DAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAABFwAAAAABFwAAAAAEFwAAAAAEFwAAAAACFwAAAAAGDAAAAAACeQAAAAAAdQAAAAAAdQAAAAADdQAAAAABdQAAAAACdQAAAAACdQAAAAABeQAAAAAAFwAAAAAHFwAAAAAAFwAAAAAAFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAGdQAAAAADdQAAAAABdQAAAAABcQAAAAADcQAAAAADcQAAAAAAdQAAAAAAdQAAAAABdQAAAAADFwAAAAAHFwAAAAAAFwAAAAABFwAAAAAFFwAAAAABFwAAAAAGFwAAAAAGFwAAAAADdQAAAAABdQAAAAADcQAAAAACcQAAAAADcQAAAAABdQAAAAADdQAAAAABeQAAAAAAFwAAAAABFwAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAAGFwAAAAADdQAAAAADdQAAAAACdQAAAAADcQAAAAAAcQAAAAACcQAAAAACdQAAAAACdQAAAAACeQAAAAAAFwAAAAABFwAAAAACFwAAAAAEFwAAAAAHFwAAAAAHFwAAAAAEGAAAAAAEFwAAAAADeQAAAAAAdQAAAAADdQAAAAABdQAAAAAAdQAAAAAAdQAAAAADdQAAAAACeQAAAAAAFwAAAAAHFwAAAAAEFwAAAAAGGAAAAAAFGAAAAAABFwAAAAADFwAAAAAEFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAGFwAAAAABGAAAAAAEFwAAAAAEFwAAAAAGFwAAAAAHFwAAAAAAFwAAAAADFwAAAAADFwAAAAABFwAAAAABFwAAAAAAFwAAAAAEFwAAAAAHFwAAAAAHFwAAAAAHFwAAAAAFFwAAAAAEFwAAAAAEFwAAAAAHGAAAAAAEGAAAAAAGFwAAAAAFFwAAAAABFwAAAAAHFwAAAAACFwAAAAADFwAAAAABFwAAAAAFFwAAAAAAFwAAAAACFwAAAAADFwAAAAAEFwAAAAADFwAAAAAGGAAAAAADGAAAAAAAGAAAAAAFFwAAAAAFFwAAAAADFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAADFwAAAAAFFwAAAAAAFwAAAAACFwAAAAAAFwAAAAACFwAAAAAAFwAAAAAAGAAAAAAGGAAAAAAGGAAAAAAGFwAAAAADFwAAAAACFwAAAAADFwAAAAAGFwAAAAAEFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAAFFwAAAAAGFwAAAAAFFwAAAAAGGAAAAAAAGAAAAAABGAAAAAACGAAAAAAEZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAAHFwAAAAAFFwAAAAAHFwAAAAAEGAAAAAABGAAAAAACGAAAAAABGAAAAAAEWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAFwAAAAACFwAAAAAEGAAAAAAFGAAAAAADGAAAAAAAGAAAAAACGAAAAAAAGAAAAAAEGAAAAAADZAAAAAADZAAAAAADZAAAAAAAZAAAAAABZAAAAAADWQAAAAADeQAAAAAAFwAAAAACGAAAAAAGGAAAAAADFwAAAAADGAAAAAADFwAAAAADGAAAAAAAGAAAAAABGAAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAFwAAAAABFwAAAAAFFwAAAAACGAAAAAAGGAAAAAACGAAAAAABGAAAAAAFGAAAAAABGAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAHGAAAAAADGAAAAAAGGAAAAAADGAAAAAAGGAAAAAACGAAAAAAAGAAAAAAF version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAABFgAAAAAEFgAAAAAAFgAAAAACFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAADFgAAAAAEFgAAAAACFgAAAAADFgAAAAAGFgAAAAAEFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAACFgAAAAAEFgAAAAABFgAAAAAAFgAAAAADFgAAAAACFgAAAAAEFgAAAAABFgAAAAAAeQAAAAAANAAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAEFgAAAAAGFgAAAAAEFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAAANAAAAAADNAAAAAACeQAAAAAAFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAANAAAAAADNAAAAAAANAAAAAADeQAAAAAAFgAAAAACeQAAAAAANAAAAAACNAAAAAAANAAAAAAANAAAAAADeQAAAAAAFgAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAANAAAAAACeQAAAAAAeQAAAAAAFgAAAAADeQAAAAAANAAAAAACNQAAAAABNQAAAAACNAAAAAACeQAAAAAAFgAAAAAEeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAAANAAAAAADNAAAAAAANAAAAAADNQAAAAADNQAAAAACNAAAAAABeQAAAAAASgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAADFgAAAAAAFgAAAAAFFgAAAAACeQAAAAAANAAAAAAANAAAAAAANAAAAAACNAAAAAACeQAAAAAASgAAAAAASgAAAAACFgAAAAAAFgAAAAAFFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAADFgAAAAAEFgAAAAAGFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABDAAAAAAADAAAAAAASgAAAAACFgAAAAADFgAAAAABFgAAAAACFgAAAAADFgAAAAADFgAAAAADFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAFDAAAAAAADAAAAAAADAAAAAAAFwAAAAADFwAAAAADFgAAAAAGFgAAAAADFgAAAAAAFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFgAAAAAAFgAAAAADFgAAAAABFgAAAAADeQAAAAAANQAAAAAANQAAAAADNQAAAAACNQAAAAABNQAAAAABeQAAAAAANQAAAAAANQAAAAADNQAAAAACeQAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAABNAAAAAADNAAAAAACNQAAAAAANAAAAAABNAAAAAADNAAAAAAANQAAAAACeQAAAAAANQAAAAADNAAAAAAANQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAFFgAAAAACFgAAAAAFNAAAAAACNAAAAAADNQAAAAACNAAAAAABNAAAAAADNAAAAAABNQAAAAADeQAAAAAANQAAAAABNAAAAAADNQAAAAACNAAAAAAAFgAAAAAGFgAAAAABFgAAAAADFgAAAAAGFgAAAAAAeQAAAAAANQAAAAAANQAAAAABNQAAAAACNQAAAAADNQAAAAADeQAAAAAANQAAAAABNQAAAAADNQAAAAACeQAAAAAAFgAAAAAGFgAAAAAFFgAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAGFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAADFgAAAAAGFgAAAAADFgAAAAADFgAAAAACFgAAAAAAFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAABFgAAAAAAFgAAAAAEFgAAAAAFFgAAAAAEFgAAAAACFgAAAAADeQAAAAAANAAAAAACeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAGFgAAAAACFgAAAAADFgAAAAAAFgAAAAABFgAAAAAAFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAADNAAAAAAANAAAAAAAeQAAAAAAFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAANAAAAAABNAAAAAABNAAAAAADeQAAAAAAFgAAAAAGeQAAAAAANAAAAAACNAAAAAAANAAAAAACNAAAAAABeQAAAAAAFgAAAAAFeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAANAAAAAABeQAAAAAAeQAAAAAAFgAAAAABeQAAAAAANAAAAAAANQAAAAAANQAAAAABNAAAAAACeQAAAAAAFgAAAAABeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAAGFgAAAAAANAAAAAAANAAAAAAANAAAAAACNQAAAAACNQAAAAADNAAAAAADeQAAAAAASgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAAFgAAAAADFgAAAAABFgAAAAABeQAAAAAANAAAAAACNAAAAAAANAAAAAAANAAAAAAAeQAAAAAASgAAAAACSgAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFDAAAAAADDAAAAAABSgAAAAADFgAAAAAGFgAAAAAAFgAAAAABFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAAFFgAAAAABFgAAAAAFFgAAAAACFgAAAAACFgAAAAAEDAAAAAADDAAAAAAADAAAAAACFwAAAAAFFwAAAAABFgAAAAACFgAAAAAEFgAAAAABFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAABFgAAAAAEFgAAAAAEFgAAAAACeQAAAAAANQAAAAADNQAAAAAANQAAAAABNQAAAAABNQAAAAADeQAAAAAANQAAAAADNQAAAAACNQAAAAABeQAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAAFNAAAAAABNAAAAAAANQAAAAADNAAAAAAANAAAAAABNAAAAAADNQAAAAACeQAAAAAANQAAAAACNAAAAAADNQAAAAADeQAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAAANAAAAAACNAAAAAADNQAAAAAANAAAAAADNAAAAAABNAAAAAACNQAAAAADeQAAAAAANQAAAAACNAAAAAADNQAAAAAANAAAAAADFgAAAAAGFgAAAAAGFgAAAAAFFgAAAAADFgAAAAAGeQAAAAAANQAAAAABNQAAAAABNQAAAAABNQAAAAABNQAAAAAAeQAAAAAANQAAAAACNQAAAAAANQAAAAADeQAAAAAAFgAAAAADFgAAAAAGFgAAAAAC version: 6 -3,-1: ind: -3,-1 - tiles: FgAAAAAAFgAAAAABFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAAAeQAAAAAAFgAAAAAFFgAAAAAGFgAAAAAAFwAAAAADFgAAAAAGFgAAAAAGFgAAAAADFgAAAAABFgAAAAAAFgAAAAABFgAAAAAGFgAAAAADFgAAAAACFgAAAAAAFgAAAAACeQAAAAAAFgAAAAADFgAAAAABFgAAAAAEFwAAAAACFgAAAAAGFgAAAAAGFgAAAAAAFgAAAAABFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAGFgAAAAAFFgAAAAAGFgAAAAAGIgAAAAADFgAAAAABFgAAAAAGFgAAAAACFwAAAAADFgAAAAAGFgAAAAABFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAFFgAAAAABFgAAAAAGFgAAAAACFgAAAAAEFgAAAAAGeQAAAAAAFgAAAAADFgAAAAABFwAAAAAHFwAAAAACMwAAAAABeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAANAAAAAABFgAAAAADFgAAAAAEeQAAAAAANQAAAAADeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAADFwAAAAACFwAAAAADMwAAAAACMwAAAAAAMwAAAAABeQAAAAAAeQAAAAAANQAAAAABeQAAAAAAeQAAAAAANQAAAAABNQAAAAABNQAAAAADNQAAAAAAeQAAAAAAFgAAAAABFwAAAAAEFwAAAAABMwAAAAABMwAAAAADMwAAAAAAeQAAAAAANAAAAAAANQAAAAADNQAAAAABNQAAAAAANQAAAAADNQAAAAABNQAAAAABNQAAAAACeQAAAAAAFgAAAAADFwAAAAABFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAABNQAAAAAANAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAGFwAAAAADFwAAAAADeQAAAAAAMwAAAAACMwAAAAADMwAAAAADNQAAAAADNQAAAAAANQAAAAAAMwAAAAADMwAAAAACMwAAAAADeQAAAAAAFgAAAAAEFgAAAAAAFwAAAAAEFwAAAAACFwAAAAACeQAAAAAAMwAAAAABMwAAAAABMwAAAAAANAAAAAAANQAAAAABNAAAAAACMwAAAAAAMwAAAAABMwAAAAADeQAAAAAAFgAAAAAFFgAAAAAAFwAAAAAHFwAAAAAGFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAABNQAAAAACNAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFwAAAAAHFwAAAAAAFwAAAAAGFwAAAAAAeQAAAAAAMwAAAAADMwAAAAABMwAAAAACNAAAAAADNQAAAAADNAAAAAADMwAAAAABMwAAAAAAMwAAAAABeQAAAAAAFgAAAAAFFwAAAAAAFgAAAAAAFwAAAAAFFwAAAAAAeQAAAAAAMwAAAAABMwAAAAADMwAAAAACNQAAAAABNQAAAAADNQAAAAADMwAAAAACMwAAAAAAMwAAAAADeQAAAAAAFgAAAAAGFwAAAAAAFgAAAAAAFgAAAAAGFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAADNQAAAAACNAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFwAAAAAHFgAAAAAFFgAAAAAAFwAAAAAAFgAAAAAFFgAAAAAEFgAAAAACeQAAAAAANAAAAAAANQAAAAABNAAAAAAAeQAAAAAAFgAAAAAEFgAAAAAAFgAAAAADFgAAAAABFgAAAAABFwAAAAAEFgAAAAAAFwAAAAACFgAAAAAEFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAANQAAAAACeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAAeQAAAAAAFwAAAAABFwAAAAADFwAAAAAC + tiles: FgAAAAADFgAAAAAGFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAABeQAAAAAAFgAAAAADFgAAAAABFgAAAAAEFwAAAAAGFgAAAAAEFgAAAAABFgAAAAAGFgAAAAABFgAAAAADFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABeQAAAAAAFgAAAAACFgAAAAACFgAAAAACFwAAAAAAFgAAAAAGFgAAAAABFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAABFgAAAAAGFgAAAAAFFgAAAAACFgAAAAADFgAAAAACIgAAAAABFgAAAAABFgAAAAAEFgAAAAAFFwAAAAACFgAAAAAEFgAAAAAGFgAAAAAGFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAeQAAAAAAFgAAAAAEFgAAAAAAFwAAAAAGFwAAAAAEMwAAAAACeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAGNAAAAAABFgAAAAAGFgAAAAAFeQAAAAAANQAAAAACeQAAAAAAeQAAAAAAFgAAAAABFgAAAAACFwAAAAABFwAAAAAGMwAAAAADMwAAAAADMwAAAAABeQAAAAAAeQAAAAAANQAAAAAAeQAAAAAAeQAAAAAANQAAAAAANQAAAAABNQAAAAABNQAAAAADeQAAAAAAFgAAAAAFFwAAAAAEFwAAAAAHMwAAAAADMwAAAAABMwAAAAADeQAAAAAANAAAAAABNQAAAAADNQAAAAADNQAAAAACNQAAAAADNQAAAAADNQAAAAABNQAAAAADeQAAAAAAFgAAAAACFwAAAAAEFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAABNQAAAAACNAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFwAAAAADFwAAAAAEeQAAAAAAMwAAAAADMwAAAAABMwAAAAADNQAAAAABNQAAAAABNQAAAAABMwAAAAAAMwAAAAABMwAAAAABeQAAAAAAFgAAAAABFgAAAAABFwAAAAABFwAAAAACFwAAAAADeQAAAAAAMwAAAAACMwAAAAABMwAAAAADNAAAAAACNQAAAAABNAAAAAABMwAAAAAAMwAAAAAAMwAAAAABeQAAAAAAFgAAAAAFFgAAAAADFwAAAAACFwAAAAABFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAAANQAAAAACNAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFwAAAAACFwAAAAAGFwAAAAAEFwAAAAABeQAAAAAAMwAAAAABMwAAAAABMwAAAAABNAAAAAAANQAAAAACNAAAAAADMwAAAAABMwAAAAABMwAAAAACeQAAAAAAFgAAAAADFwAAAAACFgAAAAADFwAAAAAHFwAAAAAGeQAAAAAAMwAAAAADMwAAAAACMwAAAAADNQAAAAABNQAAAAADNQAAAAAAMwAAAAAAMwAAAAACMwAAAAACeQAAAAAAFgAAAAACFwAAAAAGFgAAAAACFgAAAAAFFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANAAAAAACNQAAAAAANAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFwAAAAAGFgAAAAAGFgAAAAAAFwAAAAAGFgAAAAADFgAAAAAFFgAAAAACeQAAAAAANAAAAAACNQAAAAABNAAAAAADeQAAAAAAFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAACFgAAAAAEFwAAAAAAFgAAAAAFFwAAAAAGFgAAAAAEFgAAAAAFFgAAAAAAeQAAAAAAeQAAAAAANQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAACeQAAAAAAFwAAAAABFwAAAAAHFwAAAAAG version: 6 -2,0: ind: -2,0 - tiles: FwAAAAAHFwAAAAAEFwAAAAADFwAAAAAGFwAAAAABFwAAAAACFwAAAAABFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAAHFwAAAAABFwAAAAAHFwAAAAAFeQAAAAAANQAAAAADFwAAAAAFFwAAAAAGFwAAAAAHFwAAAAAEFwAAAAACFwAAAAAHFwAAAAADFwAAAAABFwAAAAABFwAAAAAHDAAAAAAAFwAAAAAFFwAAAAAHFwAAAAADNQAAAAAANQAAAAADFwAAAAAFFgAAAAAEFgAAAAACFwAAAAAHFgAAAAAEFwAAAAAGFwAAAAADFwAAAAACFwAAAAAEFwAAAAAFDAAAAAAADAAAAAAAFwAAAAADFwAAAAADeQAAAAAANQAAAAACFgAAAAAFFgAAAAABFgAAAAAEFgAAAAADFwAAAAAEFwAAAAAFFwAAAAAHFwAAAAABFwAAAAAHFwAAAAAGDAAAAAAADAAAAAAAFwAAAAACFwAAAAABeQAAAAAANQAAAAAAFgAAAAAEFgAAAAAEFgAAAAADFgAAAAAFFgAAAAAFFwAAAAAAFwAAAAABFwAAAAAGFwAAAAAHDAAAAAAAFwAAAAAGFwAAAAAEFwAAAAAFFwAAAAADeQAAAAAAeQAAAAAAFwAAAAABFgAAAAABFgAAAAAFFgAAAAAGFwAAAAAFFwAAAAAEFwAAAAAAFwAAAAAFFwAAAAAGFwAAAAABFwAAAAACFwAAAAAEFwAAAAABFwAAAAAHFwAAAAAEeQAAAAAAFwAAAAAAFwAAAAABFgAAAAAGFgAAAAABFwAAAAAHFwAAAAAHFwAAAAADFwAAAAAGFwAAAAAFFwAAAAAGFwAAAAAHFwAAAAABFwAAAAAAFwAAAAACFwAAAAAHeQAAAAAAFgAAAAAFFgAAAAAGFgAAAAACFgAAAAABFwAAAAACFwAAAAACFwAAAAAEFwAAAAACFwAAAAACFwAAAAACFwAAAAAEFwAAAAAAFwAAAAACFwAAAAAFFwAAAAACeQAAAAAAFgAAAAAEFgAAAAAAeQAAAAAAeQAAAAAARwAAAAAARwAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAHFwAAAAADFwAAAAACFwAAAAAEFwAAAAADFwAAAAAGFwAAAAABFgAAAAAFFgAAAAAFeQAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABeQAAAAAAFwAAAAAHFwAAAAAGFwAAAAADFwAAAAAGFwAAAAAHFwAAAAABFwAAAAACFwAAAAABFgAAAAABeQAAAAAAeQAAAAAARwAAAAADSAAAAAAASAAAAAAARwAAAAACRwAAAAACFwAAAAACFwAAAAAEFwAAAAAHFwAAAAADFwAAAAAGFwAAAAABFwAAAAABFwAAAAADFgAAAAABFgAAAAAAeQAAAAAARwAAAAADSAAAAAAASAAAAAAARwAAAAAARwAAAAACFwAAAAAEFwAAAAADFwAAAAAFFwAAAAAFFwAAAAACFwAAAAABFwAAAAADFwAAAAAHFgAAAAAFFgAAAAAAeQAAAAAARwAAAAABSAAAAAAASAAAAAAARwAAAAADRwAAAAADFwAAAAAEFwAAAAADFwAAAAABFwAAAAAGDAAAAAAAFwAAAAABFwAAAAAAFwAAAAAEFgAAAAAAFgAAAAAGeQAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAACeQAAAAAAFwAAAAADFwAAAAAGFwAAAAAGFwAAAAAGSgAAAAABFwAAAAAFFwAAAAADFwAAAAADFgAAAAAAFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAHFwAAAAAHFwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFgAAAAAAFgAAAAAGFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAABFgAAAAADFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAAGFwAAAAADFwAAAAABDAAAAAAADAAAAAAADAAAAAAA + tiles: FwAAAAAEFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAABFwAAAAAFFwAAAAAEFwAAAAADFwAAAAAAFwAAAAADFwAAAAACFwAAAAAAFwAAAAADFwAAAAAGeQAAAAAANQAAAAACFwAAAAAGFwAAAAAHFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAACFwAAAAAGFwAAAAADFwAAAAAGFwAAAAABDAAAAAADFwAAAAADFwAAAAACFwAAAAACNQAAAAAANQAAAAACFwAAAAAAFgAAAAAGFgAAAAAAFwAAAAAFFgAAAAADFwAAAAAEFwAAAAABFwAAAAAHFwAAAAADFwAAAAAEDAAAAAAADAAAAAADFwAAAAAGFwAAAAADeQAAAAAANQAAAAACFgAAAAACFgAAAAAEFgAAAAABFgAAAAAFFwAAAAADFwAAAAAGFwAAAAABFwAAAAAGFwAAAAAAFwAAAAADDAAAAAACDAAAAAAAFwAAAAACFwAAAAAEeQAAAAAANQAAAAABFgAAAAACFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFwAAAAACFwAAAAAFFwAAAAAEFwAAAAAFDAAAAAADFwAAAAAFFwAAAAABFwAAAAACFwAAAAAFeQAAAAAAeQAAAAAAFwAAAAAFFgAAAAABFgAAAAAGFgAAAAAFFwAAAAAGFwAAAAAAFwAAAAAAFwAAAAAFFwAAAAAFFwAAAAAFFwAAAAAAFwAAAAABFwAAAAADFwAAAAADFwAAAAAAeQAAAAAAFwAAAAAAFwAAAAACFgAAAAAFFgAAAAABFwAAAAACFwAAAAABFwAAAAAHFwAAAAAEFwAAAAABFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAADFwAAAAAEFwAAAAACeQAAAAAAFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAGFwAAAAAFFwAAAAAFFwAAAAABFwAAAAAEFwAAAAAEFwAAAAACFwAAAAADFwAAAAAFFwAAAAAHFwAAAAADFwAAAAACeQAAAAAAFgAAAAAEFgAAAAAFeQAAAAAAeQAAAAAARwAAAAADRwAAAAABeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAEFwAAAAAHFwAAAAACFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAACFgAAAAACFgAAAAAFeQAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABeQAAAAAAFwAAAAAEFwAAAAADFwAAAAACFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAAAFwAAAAAFFgAAAAADeQAAAAAAeQAAAAAARwAAAAACSAAAAAAASAAAAAABRwAAAAABRwAAAAABFwAAAAAGFwAAAAAAFwAAAAAGFwAAAAABFwAAAAAGFwAAAAAAFwAAAAABFwAAAAACFgAAAAAAFgAAAAADeQAAAAAARwAAAAACSAAAAAADSAAAAAADRwAAAAADRwAAAAAAFwAAAAACFwAAAAACFwAAAAAFFwAAAAAAFwAAAAADFwAAAAAAFwAAAAAFFwAAAAAAFgAAAAAEFgAAAAADeQAAAAAARwAAAAABSAAAAAACSAAAAAADRwAAAAACRwAAAAACFwAAAAADFwAAAAAFFwAAAAADFwAAAAACDAAAAAAAFwAAAAAEFwAAAAAGFwAAAAADFgAAAAADFgAAAAAAeQAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACeQAAAAAAFwAAAAADFwAAAAAEFwAAAAAHFwAAAAADSgAAAAACFwAAAAABFwAAAAAFFwAAAAAHFgAAAAABFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAEFwAAAAAEFwAAAAAHDAAAAAACDAAAAAABDAAAAAACDAAAAAAAFgAAAAAFFgAAAAACFgAAAAACFgAAAAAEFgAAAAAEFgAAAAACFgAAAAABFwAAAAADFwAAAAAFFwAAAAACFwAAAAAAFwAAAAADFwAAAAAEDAAAAAADDAAAAAABDAAAAAAD version: 6 -2,-1: ind: -2,-1 - tiles: FwAAAAABFwAAAAAAFwAAAAAHFwAAAAAGFwAAAAAEFwAAAAAGFwAAAAAGFwAAAAAFeQAAAAAAFwAAAAAHFwAAAAADFwAAAAABFwAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAFwAAAAAEFwAAAAAAFwAAAAAEFwAAAAACFwAAAAACFwAAAAAAFwAAAAABFwAAAAAAFwAAAAABFwAAAAAFFwAAAAAGFwAAAAACFwAAAAAHFwAAAAADeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAADFwAAAAAAFwAAAAADFwAAAAACFwAAAAAEFwAAAAAAFwAAAAACFwAAAAABFwAAAAAFFwAAAAAEFwAAAAAEFwAAAAADFwAAAAAGFwAAAAAAFwAAAAABFwAAAAACFwAAAAACFwAAAAAHFwAAAAAEFwAAAAAAFwAAAAAAFwAAAAABFwAAAAAGFwAAAAABFwAAAAAFFwAAAAAEFwAAAAAHFwAAAAAGFwAAAAAEFwAAAAABFwAAAAABFwAAAAAHFwAAAAAHFwAAAAAAFwAAAAAGFwAAAAACFwAAAAAAFwAAAAABFwAAAAABFwAAAAACFwAAAAAEFwAAAAABFwAAAAAEFwAAAAAEFwAAAAABFwAAAAAGFwAAAAAFFwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAADFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAADFwAAAAAFFwAAAAABFwAAAAAAFwAAAAAGeQAAAAAAdgAAAAADdgAAAAABEwAAAAADeQAAAAAAFwAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAFwAAAAAHFwAAAAABFwAAAAADFwAAAAACSgAAAAAAeQAAAAAAdgAAAAAAdwAAAAADdgAAAAAAeQAAAAAAFwAAAAAFeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAACFwAAAAABFwAAAAAFFwAAAAAHSgAAAAABSgAAAAACeQAAAAAAEwAAAAAGdwAAAAACdgAAAAACeQAAAAAAFwAAAAAGeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADFwAAAAAAFwAAAAADFwAAAAAEFwAAAAACeQAAAAAAeQAAAAAAdgAAAAADdwAAAAAAdgAAAAADeQAAAAAAFwAAAAAEdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAADFwAAAAAFFwAAAAADFwAAAAAFFwAAAAAHFwAAAAAAeQAAAAAAdgAAAAABdgAAAAADEwAAAAAGeQAAAAAAFwAAAAADeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAFwAAAAAHFwAAAAABFwAAAAAEFwAAAAAGFwAAAAAFFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAEeQAAAAAAeQAAAAAANQAAAAACeQAAAAAAeQAAAAAAFwAAAAACFwAAAAACFwAAAAAAFwAAAAABFwAAAAAAFwAAAAABFwAAAAADFwAAAAAGFwAAAAAHFwAAAAAGFwAAAAAEeQAAAAAANQAAAAADNQAAAAADNQAAAAADNQAAAAACFwAAAAAFFwAAAAAHFwAAAAAGFwAAAAAAFwAAAAAAFwAAAAACFwAAAAAFFwAAAAAEFwAAAAAFFwAAAAABFwAAAAAHeQAAAAAANQAAAAABNQAAAAABNQAAAAABeQAAAAAAFwAAAAABFwAAAAADFwAAAAAGFwAAAAAFRgAAAAADFwAAAAAAeQAAAAAAFwAAAAACFwAAAAADFwAAAAAGFwAAAAADFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAADFwAAAAAFFwAAAAAEeQAAAAAAdgAAAAACeQAAAAAAFwAAAAAHFwAAAAABFwAAAAAHFwAAAAACFwAAAAAEFwAAAAABFwAAAAAAFwAAAAAHFwAAAAABFwAAAAABFwAAAAAAFwAAAAAHFwAAAAADeQAAAAAANQAAAAAA + tiles: FwAAAAAHFwAAAAAGFwAAAAACFwAAAAACFwAAAAAHFwAAAAAFFwAAAAAFFwAAAAABeQAAAAAAFwAAAAACFwAAAAAHFwAAAAADFwAAAAAGeQAAAAAAPAAAAAAAPAAAAAAAFwAAAAAFFwAAAAAEFwAAAAAHFwAAAAAFFwAAAAAHFwAAAAAFFwAAAAAEFwAAAAAAFwAAAAAFFwAAAAAFFwAAAAAFFwAAAAAAFwAAAAAAFwAAAAACeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAACFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAABFwAAAAAFFwAAAAAHFwAAAAADFwAAAAAAFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAAFFwAAAAADFwAAAAABFwAAAAAHFwAAAAABFwAAAAAAFwAAAAAEFwAAAAAFFwAAAAAGFwAAAAACFwAAAAAHFwAAAAAAFwAAAAABFwAAAAAAFwAAAAAGFwAAAAABFwAAAAAFFwAAAAAAFwAAAAADFwAAAAAEFwAAAAAHFwAAAAAEFwAAAAADFwAAAAAEFwAAAAAAFwAAAAAFFwAAAAAHFwAAAAAGFwAAAAAFFwAAAAAGFwAAAAACFwAAAAAAFwAAAAAGFwAAAAAFFwAAAAACFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAADFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAACFwAAAAAEFwAAAAABFwAAAAAAFwAAAAAEeQAAAAAAdgAAAAAAdgAAAAAAEwAAAAABeQAAAAAAFwAAAAAEeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAFwAAAAAGFwAAAAAFFwAAAAAAFwAAAAACSgAAAAADeQAAAAAAdgAAAAABdwAAAAABdgAAAAABeQAAAAAAFwAAAAAGeQAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAAAFwAAAAADFwAAAAAHFwAAAAAFSgAAAAADSgAAAAAAeQAAAAAAEwAAAAAFdwAAAAACdgAAAAADeQAAAAAAFwAAAAAGeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAABFwAAAAAGFwAAAAABFwAAAAAFFwAAAAADeQAAAAAAeQAAAAAAdgAAAAABdwAAAAABdgAAAAABeQAAAAAAFwAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAFwAAAAADFwAAAAAGFwAAAAACFwAAAAAHFwAAAAACeQAAAAAAdgAAAAABdgAAAAABEwAAAAABeQAAAAAAFwAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAFwAAAAADFwAAAAAAFwAAAAAFFwAAAAADFwAAAAAGFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAADeQAAAAAAeQAAAAAANQAAAAACeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAEFwAAAAABFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAACFwAAAAAFFwAAAAAGeQAAAAAANQAAAAAANQAAAAABNQAAAAABNQAAAAADFwAAAAAHFwAAAAAHFwAAAAAEFwAAAAAFFwAAAAAGFwAAAAADFwAAAAACFwAAAAAGFwAAAAACFwAAAAACFwAAAAAAeQAAAAAANQAAAAADNQAAAAADNQAAAAADeQAAAAAAFwAAAAACFwAAAAAGFwAAAAADFwAAAAACRgAAAAACFwAAAAAFeQAAAAAAFwAAAAAEFwAAAAAFFwAAAAAAFwAAAAAGFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAAFFwAAAAAAFwAAAAAFeQAAAAAAdgAAAAADeQAAAAAAFwAAAAAAFwAAAAAGFwAAAAAEFwAAAAAGFwAAAAABFwAAAAAFFwAAAAAAFwAAAAAGFwAAAAAFFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAHeQAAAAAANQAAAAAC version: 6 -2,1: ind: -2,1 - tiles: FgAAAAACFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAAFFwAAAAACFwAAAAACFwAAAAABFwAAAAADFwAAAAAHFwAAAAAFFwAAAAABDAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAFFwAAAAAHFwAAAAAFeQAAAAAARgAAAAACRgAAAAADRgAAAAADRgAAAAADRgAAAAACRgAAAAADRgAAAAACRgAAAAACRgAAAAADRgAAAAADeQAAAAAAFwAAAAADFwAAAAADFwAAAAAFFwAAAAAARgAAAAAARgAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAADRgAAAAADeQAAAAAAFwAAAAAAFwAAAAAGFwAAAAAEFwAAAAAGRgAAAAAARgAAAAAARwAAAAABSAAAAAAASAAAAAABSAAAAAACSAAAAAACSAAAAAAASAAAAAAARwAAAAAARgAAAAADRwAAAAAAFgAAAAAGFwAAAAAHFwAAAAAFFwAAAAADeQAAAAAARgAAAAAARwAAAAADSAAAAAABSAAAAAABSAAAAAAASAAAAAACSAAAAAABSAAAAAABRwAAAAAARgAAAAABRwAAAAAAFgAAAAAGFgAAAAAFFwAAAAACFwAAAAAGeQAAAAAARgAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAABRgAAAAADRwAAAAACFgAAAAAFFgAAAAAGFgAAAAACFwAAAAAHeQAAAAAARgAAAAABRgAAAAADRgAAAAADRgAAAAABRgAAAAABRgAAAAABRgAAAAAARgAAAAACRgAAAAADRgAAAAAAeQAAAAAAFgAAAAAFFgAAAAAFFgAAAAABFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAABFgAAAAAEFgAAAAADFgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAAEFgAAAAABFgAAAAAEFgAAAAACFgAAAAAGFgAAAAAEFgAAAAABFgAAAAAEPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAAEFgAAAAABFgAAAAAAFgAAAAACFgAAAAAGPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAABFgAAAAAEFgAAAAADFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAACMwAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAABFgAAAAADFgAAAAAEFgAAAAAGFgAAAAACFgAAAAAGFgAAAAAEFgAAAAAEeQAAAAAANAAAAAABMwAAAAABMwAAAAABMwAAAAABNAAAAAABMwAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADeQAAAAAAMwAAAAACNQAAAAACNQAAAAACNQAAAAACMwAAAAADMwAAAAABFgAAAAABFgAAAAAFFgAAAAABFgAAAAAGeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAFgAAAAABeQAAAAAAMwAAAAADNQAAAAABNQAAAAACNQAAAAAAMwAAAAABMwAAAAACFgAAAAAEFgAAAAAC + tiles: FgAAAAADFgAAAAAFFgAAAAAAFgAAAAABFgAAAAAEFgAAAAAGFgAAAAAEFwAAAAACFwAAAAAAFwAAAAAEFwAAAAACFwAAAAAFFwAAAAAAFwAAAAAHDAAAAAACDAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAABFwAAAAAFFwAAAAAAeQAAAAAARgAAAAADRgAAAAACRgAAAAAARgAAAAADRgAAAAADRgAAAAACRgAAAAABRgAAAAABRgAAAAAARgAAAAAAeQAAAAAAFwAAAAAGFwAAAAAFFwAAAAAHFwAAAAAHRgAAAAAARgAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAABRgAAAAAAeQAAAAAAFwAAAAAEFwAAAAACFwAAAAACFwAAAAAARgAAAAACRgAAAAABRwAAAAADSAAAAAADSAAAAAAASAAAAAAASAAAAAABSAAAAAAASAAAAAAARwAAAAADRgAAAAAARwAAAAACFgAAAAADFwAAAAADFwAAAAABFwAAAAAEeQAAAAAARgAAAAABRwAAAAACSAAAAAABSAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAABRwAAAAAARgAAAAAARwAAAAABFgAAAAAGFgAAAAAAFwAAAAAEFwAAAAAFeQAAAAAARgAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAABRgAAAAACRwAAAAACFgAAAAAGFgAAAAAFFgAAAAAEFwAAAAAHeQAAAAAARgAAAAABRgAAAAAARgAAAAADRgAAAAABRgAAAAABRgAAAAABRgAAAAAARgAAAAADRgAAAAACRgAAAAACeQAAAAAAFgAAAAADFgAAAAABFgAAAAAEFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAEFgAAAAACFgAAAAABFgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAFgAAAAAFFgAAAAACFgAAAAADFgAAAAAFFgAAAAAEFgAAAAACFgAAAAAAFgAAAAAGFgAAAAAGFgAAAAAGFgAAAAAFPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAFgAAAAABFgAAAAAAFgAAAAAGFgAAAAADFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAADFgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAADFgAAAAADFgAAAAABFgAAAAAFFgAAAAAEFgAAAAAEFgAAAAABFgAAAAAGFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAACMwAAAAACeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAGFgAAAAACFgAAAAAEFgAAAAABFgAAAAACeQAAAAAANAAAAAADMwAAAAAAMwAAAAABMwAAAAABNAAAAAACMwAAAAADFgAAAAAFFgAAAAADFgAAAAABFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAeQAAAAAAMwAAAAAANQAAAAAANQAAAAACNQAAAAADMwAAAAACMwAAAAACFgAAAAAAFgAAAAADFgAAAAAEFgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAFgAAAAACeQAAAAAAMwAAAAACNQAAAAACNQAAAAACNQAAAAAAMwAAAAACMwAAAAADFgAAAAACFgAAAAAF version: 6 -1,1: ind: -1,1 - tiles: FwAAAAACFwAAAAABFwAAAAAFFwAAAAAAFwAAAAACFwAAAAAGFwAAAAACFwAAAAAHFwAAAAABFwAAAAACFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAAHFwAAAAAEFwAAAAAFFwAAAAACFwAAAAADFwAAAAAGFwAAAAADFwAAAAACFwAAAAAGFwAAAAACFwAAAAAFFwAAAAACFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAAGFwAAAAAHFwAAAAADFwAAAAACFwAAAAADFwAAAAAAFwAAAAACFwAAAAAEFwAAAAAHFwAAAAACFwAAAAAAFwAAAAACFwAAAAACFwAAAAAFFwAAAAABFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAFFwAAAAADFwAAAAAHFwAAAAAGFwAAAAACFwAAAAAGFwAAAAAEFwAAAAAEFwAAAAADFwAAAAAAFwAAAAABFwAAAAAAFwAAAAABFwAAAAAHFwAAAAAAFwAAAAABFwAAAAAFFwAAAAAGFwAAAAACFwAAAAADFwAAAAACFwAAAAABFwAAAAAAFwAAAAACFwAAAAAHeQAAAAAAGgAAAAABFwAAAAADeQAAAAAAeQAAAAAAFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAADFwAAAAAFFwAAAAAEFwAAAAAFeQAAAAAAeQAAAAAAGgAAAAACGgAAAAAAGgAAAAABFwAAAAADeQAAAAAAFwAAAAAGeQAAAAAAeAAAAAAAeAAAAAAAFwAAAAAHFwAAAAADFwAAAAABFwAAAAAHDAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAACFwAAAAACFwAAAAAGDAAAAAAADAAAAAAAeQAAAAAAGwAAAAAAGgAAAAAAGgAAAAADGgAAAAACGwAAAAAAeQAAAAAAFwAAAAADeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAAFwAAAAADFwAAAAABDAAAAAAADAAAAAAAeQAAAAAAGgAAAAACHAAAAAAAHAAAAAADHAAAAAAAGgAAAAACeQAAAAAAFwAAAAAFeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAFFwAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAGgAAAAAAHAAAAAADGgAAAAAAHAAAAAACGgAAAAAAeQAAAAAAFwAAAAACeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAABFwAAAAABFwAAAAADDAAAAAAADAAAAAAAeQAAAAAAGgAAAAADHAAAAAADHAAAAAABHAAAAAACGgAAAAABHAAAAAADFwAAAAAEeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAGFwAAAAAAFwAAAAAFFwAAAAAGDAAAAAAAeQAAAAAAGwAAAAADGgAAAAABGgAAAAACGgAAAAABGwAAAAADeQAAAAAAFwAAAAAFeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAABFgAAAAACFwAAAAAAFwAAAAAFFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAGFgAAAAAGFwAAAAAAFwAAAAAHFwAAAAAEFwAAAAACFwAAAAAHFwAAAAACFwAAAAAGFwAAAAADFwAAAAAFFwAAAAAAFwAAAAAHeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAFFgAAAAAEFgAAAAAFFwAAAAABFwAAAAAAFwAAAAAAFwAAAAABFwAAAAABFwAAAAAHFwAAAAAFFwAAAAAEFwAAAAAEFwAAAAADeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAEFgAAAAABFgAAAAAAFwAAAAAHFwAAAAAAFwAAAAACFwAAAAAAFwAAAAABFwAAAAAGFwAAAAADFwAAAAABFwAAAAAGFwAAAAAEeQAAAAAAeAAAAAAAeQAAAAAA + tiles: FwAAAAAHFwAAAAABFwAAAAAHFwAAAAAHFwAAAAAEFwAAAAAAFwAAAAAAFwAAAAAFFwAAAAACFwAAAAAAFwAAAAAEFwAAAAAFFwAAAAAFFwAAAAACFwAAAAABFwAAAAACFwAAAAAFFwAAAAADFwAAAAAGFwAAAAADFwAAAAAHFwAAAAAEFwAAAAAHFwAAAAACFwAAAAABFwAAAAADFwAAAAADFwAAAAABFwAAAAACFwAAAAADFwAAAAAEFwAAAAADFwAAAAACFwAAAAAEFwAAAAAHFwAAAAAHFwAAAAAAFwAAAAAEFwAAAAACFwAAAAADFwAAAAABFwAAAAADFwAAAAAHFwAAAAACFwAAAAABFwAAAAADFwAAAAAAFwAAAAAGFwAAAAAFFwAAAAAFFwAAAAADFwAAAAACFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAADFwAAAAADFwAAAAAFFwAAAAAGFwAAAAABFwAAAAAEFwAAAAADFwAAAAABFwAAAAAGFwAAAAAAFwAAAAAFFwAAAAAGFwAAAAADFwAAAAAFFwAAAAAAFwAAAAACeQAAAAAAGgAAAAADFwAAAAACeQAAAAAAeQAAAAAAFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAAGFwAAAAAEFwAAAAAGFwAAAAAHeQAAAAAAeQAAAAAAGgAAAAABGgAAAAABGgAAAAAAFwAAAAAHeQAAAAAAFwAAAAACeQAAAAAAeAAAAAAAeAAAAAAAFwAAAAAHFwAAAAAGFwAAAAACFwAAAAAFDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAGgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAADFwAAAAAFFwAAAAAGDAAAAAABDAAAAAABeQAAAAAAGwAAAAADGgAAAAADGgAAAAABGgAAAAADGwAAAAADeQAAAAAAFwAAAAAGeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAFFwAAAAAEFwAAAAAGDAAAAAADDAAAAAABeQAAAAAAGgAAAAABHAAAAAAAHAAAAAAAHAAAAAACGgAAAAACeQAAAAAAFwAAAAACeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAGFwAAAAABDAAAAAADDAAAAAACDAAAAAADeQAAAAAAGgAAAAAAHAAAAAACGgAAAAAAHAAAAAABGgAAAAACeQAAAAAAFwAAAAACeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAADFwAAAAACFwAAAAACDAAAAAADDAAAAAABeQAAAAAAGgAAAAACHAAAAAABHAAAAAAAHAAAAAABGgAAAAAAHAAAAAABFwAAAAAHeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAGFwAAAAAAFwAAAAAEFwAAAAAADAAAAAACeQAAAAAAGwAAAAABGgAAAAABGgAAAAABGgAAAAACGwAAAAAAeQAAAAAAFwAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAABFgAAAAACFwAAAAADFwAAAAAFFwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAADFgAAAAADFwAAAAAHFwAAAAAGFwAAAAAAFwAAAAABFwAAAAACFwAAAAADFwAAAAABFwAAAAACFwAAAAAEFwAAAAAHFwAAAAADeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAFFgAAAAAGFgAAAAAEFwAAAAAFFwAAAAACFwAAAAABFwAAAAAFFwAAAAACFwAAAAADFwAAAAACFwAAAAAAFwAAAAAGFwAAAAAGeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAEFgAAAAAAFgAAAAACFwAAAAACFwAAAAAAFwAAAAAEFwAAAAAEFwAAAAAHFwAAAAAEFwAAAAAHFwAAAAAHFwAAAAADFwAAAAAGeQAAAAAAeAAAAAAAeQAAAAAA version: 6 0,1: ind: 0,1 - tiles: FwAAAAAFFwAAAAACFwAAAAABFwAAAAACFwAAAAACFwAAAAAEFwAAAAAEFwAAAAAHFwAAAAAEFwAAAAAFFwAAAAAFFwAAAAADFwAAAAAFFwAAAAAEFwAAAAADFwAAAAAAFwAAAAAFFwAAAAAAFwAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAAFFwAAAAAEFwAAAAAAFwAAAAACFwAAAAACFwAAAAAFFwAAAAAGDAAAAAAADAAAAAAAFwAAAAACFwAAAAAFFwAAAAACFwAAAAAFDAAAAAAADAAAAAAAFwAAAAAEFwAAAAAAFwAAAAABFwAAAAABFwAAAAAGFwAAAAABFwAAAAAGFwAAAAAGFwAAAAAAFwAAAAAFFwAAAAAHFwAAAAAGFwAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAAHIgAAAAABIgAAAAADIgAAAAADFwAAAAAHFwAAAAAEFwAAAAAGFwAAAAAGFwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAADJgAAAAADJgAAAAADJgAAAAACJgAAAAADeQAAAAAAJgAAAAAAIgAAAAAAIgAAAAAAIgAAAAACJgAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAJgAAAAADIgAAAAACIgAAAAACIgAAAAABIgAAAAACJgAAAAACJgAAAAADJgAAAAABIgAAAAABIgAAAAAAIgAAAAAAJgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAJgAAAAAAIgAAAAADIgAAAAABIgAAAAACIgAAAAACJgAAAAACJgAAAAACJgAAAAABIgAAAAADIgAAAAADIgAAAAAAJgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAACJgAAAAACJgAAAAACeQAAAAAAJgAAAAADIgAAAAAAIgAAAAACIgAAAAABJgAAAAABeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAABIgAAAAABIgAAAAAAIgAAAAADJgAAAAABJgAAAAABeQAAAAAAeQAAAAAAeQAAAAAASwAAAAADJgAAAAACJgAAAAAAJgAAAAABJgAAAAABJgAAAAAAJgAAAAADJgAAAAADIgAAAAABIgAAAAABIgAAAAABJgAAAAADJgAAAAAAJgAAAAAAeQAAAAAAdgAAAAACSwAAAAADJgAAAAABIgAAAAABIgAAAAABIgAAAAABJgAAAAAAJgAAAAABJgAAAAAAIgAAAAADIgAAAAABIgAAAAADJgAAAAABJgAAAAABJgAAAAADeQAAAAAAdgAAAAABSwAAAAAAJgAAAAACIgAAAAACTAAAAAABIgAAAAABJgAAAAACJgAAAAABJgAAAAAAeQAAAAAAVgAAAAAAeQAAAAAAJgAAAAABJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAASwAAAAADJgAAAAAAIgAAAAADIgAAAAADIgAAAAABJgAAAAABJgAAAAABeQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAeQAAAAAAJgAAAAADJgAAAAAAeQAAAAAAEQAAAAAA + tiles: FwAAAAAFFwAAAAAHFwAAAAAEFwAAAAAHFwAAAAACFwAAAAACFwAAAAAEFwAAAAAHFwAAAAAEFwAAAAACFwAAAAABFwAAAAAHFwAAAAAFFwAAAAABFwAAAAAHFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAAHFwAAAAADFwAAAAAFFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAAGDAAAAAABDAAAAAABFwAAAAAHFwAAAAAAFwAAAAABFwAAAAAADAAAAAACDAAAAAAAFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAAFFwAAAAAGFwAAAAAFFwAAAAACFwAAAAAGFwAAAAABFwAAAAAEFwAAAAAEFwAAAAAFFwAAAAAGDAAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAAAFwAAAAACIgAAAAADIgAAAAACIgAAAAACFwAAAAAEFwAAAAABFwAAAAAFFwAAAAAAFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAABIgAAAAAAIgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAAAJgAAAAACJgAAAAADJgAAAAACJgAAAAACeQAAAAAAJgAAAAACIgAAAAADIgAAAAAAIgAAAAACJgAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAABJgAAAAAAIgAAAAAAIgAAAAACIgAAAAAAIgAAAAADJgAAAAABJgAAAAABJgAAAAADIgAAAAABIgAAAAAAIgAAAAACJgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAABJgAAAAAAIgAAAAACIgAAAAAAIgAAAAACIgAAAAACJgAAAAABJgAAAAABJgAAAAACIgAAAAABIgAAAAAAIgAAAAABJgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAAAJgAAAAACJgAAAAABJgAAAAABJgAAAAADJgAAAAABJgAAAAADeQAAAAAAJgAAAAAAIgAAAAACIgAAAAADIgAAAAAAJgAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAIgAAAAABIgAAAAAAJgAAAAACJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAABJgAAAAAAJgAAAAACJgAAAAACJgAAAAAAJgAAAAAAJgAAAAADJgAAAAADIgAAAAADIgAAAAAAIgAAAAAAJgAAAAACJgAAAAADJgAAAAACeQAAAAAAdgAAAAADSwAAAAADJgAAAAACIgAAAAACIgAAAAADIgAAAAAAJgAAAAADJgAAAAABJgAAAAACIgAAAAACIgAAAAAAIgAAAAADJgAAAAAAJgAAAAAAJgAAAAADeQAAAAAAdgAAAAABSwAAAAACJgAAAAAAIgAAAAABTAAAAAAAIgAAAAADJgAAAAABJgAAAAABJgAAAAABeQAAAAAAVgAAAAAAeQAAAAAAJgAAAAABJgAAAAADJgAAAAAAeQAAAAAAeQAAAAAASwAAAAACJgAAAAAAIgAAAAAAIgAAAAACIgAAAAACJgAAAAABJgAAAAADeQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAeQAAAAAAJgAAAAABJgAAAAABeQAAAAAAEQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: FgAAAAADFgAAAAAGFgAAAAAAFgAAAAAAFgAAAAABFwAAAAABFwAAAAAAFwAAAAADFwAAAAAEFwAAAAAEFwAAAAACFwAAAAAHFwAAAAAEFwAAAAADFwAAAAAHFwAAAAAEFgAAAAACFgAAAAAGFgAAAAAFFgAAAAABFgAAAAADFwAAAAADFwAAAAAEFwAAAAADFwAAAAABFwAAAAAAFwAAAAACFwAAAAACFwAAAAACFwAAAAABFwAAAAAAFwAAAAAGFgAAAAABFgAAAAADFgAAAAADFgAAAAADFwAAAAAFFwAAAAACFwAAAAAAFwAAAAAFFwAAAAAHFwAAAAABFwAAAAABFwAAAAAGFwAAAAAFFwAAAAAGFwAAAAACFwAAAAAFFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAAFFwAAAAAFFwAAAAAFFwAAAAAFFwAAAAAEFwAAAAABFwAAAAAEFwAAAAABFwAAAAAEFwAAAAAEFwAAAAACFwAAAAAEFwAAAAAGFgAAAAAFFgAAAAADFwAAAAAHFwAAAAAHFwAAAAADFwAAAAADFwAAAAAGFwAAAAAFFwAAAAAAFwAAAAAHFwAAAAAFFwAAAAACFwAAAAAFFwAAAAACFwAAAAAFFwAAAAABFgAAAAAAFgAAAAAAFwAAAAAEFwAAAAAFFwAAAAADDAAAAAAADAAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAAHFwAAAAADFwAAAAAFFwAAAAAGFwAAAAAFFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAAFFwAAAAABFwAAAAAAFwAAAAADFwAAAAAFFwAAAAAHLAAAAAAALAAAAAAALAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAADFwAAAAADFwAAAAAGFwAAAAAAFwAAAAABFwAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAABFwAAAAADFwAAAAAHFwAAAAAHFwAAAAAAFwAAAAAEFwAAAAAAFwAAAAAHFwAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAAHFwAAAAAGFwAAAAAFFwAAAAABFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAACFwAAAAABFwAAAAAAFwAAAAAHFwAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAASgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAAHDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAAFeQAAAAAAeQAAAAAAPAAAAAAAZAAAAAACDAAAAAAADAAAAAAADAAAAAAASwAAAAAAZAAAAAADeQAAAAAASwAAAAABSwAAAAACSwAAAAAASwAAAAAAeQAAAAAAFwAAAAAHPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAADAAAAAAAeQAAAAAASwAAAAAASwAAAAACSwAAAAAASwAAAAAASwAAAAADSwAAAAAASwAAAAADFwAAAAAGFwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAADAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAH + tiles: FgAAAAAEFgAAAAAFFgAAAAAFFgAAAAACFgAAAAAEFwAAAAACFwAAAAAEFwAAAAABFwAAAAAGFwAAAAAHFwAAAAABFwAAAAAHFwAAAAADFwAAAAABFwAAAAAFFwAAAAAHFgAAAAABFgAAAAABFgAAAAAAFgAAAAAEFgAAAAACFwAAAAAEFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAAFFwAAAAAEFwAAAAAAFwAAAAADFwAAAAADFwAAAAAGFwAAAAAAFgAAAAABFgAAAAAEFgAAAAAAFgAAAAAEFwAAAAACFwAAAAAGFwAAAAADFwAAAAACFwAAAAADFwAAAAADFwAAAAAFFwAAAAADFwAAAAAAFwAAAAADFwAAAAAFFwAAAAAFFgAAAAAFFgAAAAADFgAAAAAAFgAAAAAAFwAAAAAFFwAAAAABFwAAAAADFwAAAAAAFwAAAAAAFwAAAAACFwAAAAAHFwAAAAACFwAAAAADFwAAAAAGFwAAAAAHFwAAAAAHFgAAAAAAFgAAAAABFwAAAAABFwAAAAACFwAAAAAGFwAAAAAAFwAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAAHFwAAAAACFwAAAAAAFwAAAAADFwAAAAAAFwAAAAAAFgAAAAACFgAAAAAGFwAAAAABFwAAAAAGFwAAAAAGDAAAAAAADAAAAAACFwAAAAAFFwAAAAADFwAAAAAAFwAAAAAEFwAAAAAEFwAAAAAGFwAAAAAFFwAAAAAFFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAAADAAAAAADFwAAAAAHFwAAAAAHFwAAAAACFwAAAAAHFwAAAAACFwAAAAACLAAAAAAALAAAAAAALAAAAAAAeQAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAADDAAAAAACDAAAAAABFwAAAAAHFwAAAAABFwAAAAAFFwAAAAAHFwAAAAABFwAAAAACLAAAAAAALAAAAAAALAAAAAAAeQAAAAAADAAAAAABDAAAAAADDAAAAAACFwAAAAADFwAAAAAFFwAAAAABFwAAAAADFwAAAAAHFwAAAAAHFwAAAAABFwAAAAAEFwAAAAAHLAAAAAAALAAAAAAALAAAAAAAeQAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAAADAAAAAADFwAAAAAEFwAAAAADFwAAAAAGFwAAAAAFFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACDAAAAAAADAAAAAACDAAAAAABDAAAAAABDAAAAAADDAAAAAACFwAAAAAEFwAAAAAFFwAAAAAHFwAAAAAGFwAAAAAGDAAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAACDAAAAAAASgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAADDAAAAAADDAAAAAABDAAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAZAAAAAABDAAAAAADDAAAAAACDAAAAAAASwAAAAACZAAAAAADeQAAAAAASwAAAAACSwAAAAABSwAAAAAASwAAAAACeQAAAAAAFwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAADAAAAAAAeQAAAAAASwAAAAABSwAAAAAASwAAAAABSwAAAAAASwAAAAABSwAAAAAASwAAAAACFwAAAAAHFwAAAAAHPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAADAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAAH version: 6 -2,-2: ind: -2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAACFgAAAAAFFgAAAAAFFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAAAFgAAAAAFDAAAAAAAFgAAAAACFgAAAAABFgAAAAAEFgAAAAACFgAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAAFFgAAAAADFgAAAAADFgAAAAAGFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAGFgAAAAABFgAAAAAGFgAAAAAEFgAAAAADFgAAAAADFgAAAAADFgAAAAAEFgAAAAACFgAAAAACFgAAAAAFFgAAAAAGFgAAAAADFgAAAAACFgAAAAACFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAAEFgAAAAADFgAAAAACFgAAAAAEeQAAAAAADAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGDAAAAAAAFgAAAAAGFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAABFgAAAAACFgAAAAAGFgAAAAABFgAAAAACdQAAAAAAFgAAAAACFgAAAAAEFgAAAAADFgAAAAAFFgAAAAABFgAAAAAEFgAAAAADFgAAAAADFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAACFgAAAAACFgAAAAAFFgAAAAAEeQAAAAAAFgAAAAAFFgAAAAABFgAAAAABSgAAAAADeQAAAAAAFgAAAAAEFgAAAAABFgAAAAACFgAAAAADFgAAAAADFgAAAAABFgAAAAACFgAAAAAGFgAAAAAAeQAAAAAAFgAAAAAGFgAAAAAEFgAAAAAFFgAAAAAEDAAAAAAAFgAAAAAGFgAAAAABFgAAAAAEeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAGFgAAAAAEFgAAAAAFFgAAAAACeQAAAAAADAAAAAAAFgAAAAACFgAAAAAADAAAAAAADAAAAAAAFgAAAAABFgAAAAAGeQAAAAAAagAAAAACagAAAAACeQAAAAAAFgAAAAAFFgAAAAAEFwAAAAAGFwAAAAAFeQAAAAAAFgAAAAAAFgAAAAABFgAAAAAEDAAAAAAAFgAAAAAFFgAAAAAAFgAAAAAEeQAAAAAAagAAAAACagAAAAABagAAAAABFgAAAAAFFwAAAAAGFwAAAAAEFwAAAAAHeQAAAAAAFgAAAAAGFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAEFgAAAAAGFgAAAAABeQAAAAAAagAAAAACagAAAAABeQAAAAAAFgAAAAAEFwAAAAAFFwAAAAACFwAAAAAGeQAAAAAAFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAAEFwAAAAAHFgAAAAADFgAAAAADFgAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFwAAAAAHFwAAAAAFFwAAAAACDAAAAAAADAAAAAAAFgAAAAADFwAAAAADFwAAAAAFFwAAAAADFwAAAAAHFwAAAAABFwAAAAACFwAAAAAGFwAAAAAAFwAAAAADFwAAAAACFwAAAAAAFwAAAAABFwAAAAAHFwAAAAAFDAAAAAAAFwAAAAAEFwAAAAAEFwAAAAAHFwAAAAAEFwAAAAADFwAAAAAFFwAAAAAFFwAAAAAEFwAAAAAEFwAAAAACFwAAAAACFwAAAAABFwAAAAACFwAAAAACeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAEFwAAAAAAFwAAAAADFwAAAAAEFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAAHFwAAAAACFwAAAAABFwAAAAADFwAAAAADeQAAAAAAPAAAAAAAPAAAAAAAFwAAAAAAFwAAAAAGFwAAAAACFwAAAAAFFwAAAAAAFwAAAAACFwAAAAABFwAAAAADFwAAAAAGFwAAAAAAFwAAAAADFwAAAAAEFwAAAAAGPAAAAAAAPAAAAAAAPAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAEFgAAAAAAFgAAAAABFgAAAAABFgAAAAAEFgAAAAACFgAAAAABFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAABFgAAAAAFFgAAAAAFDAAAAAABFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAACFgAAAAADFgAAAAACFgAAAAAGFgAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAAEFgAAAAADFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAGFgAAAAACFgAAAAACFgAAAAADFgAAAAAEFgAAAAACFgAAAAAEFgAAAAABFgAAAAAGFgAAAAACFgAAAAAEFgAAAAABFgAAAAAGFgAAAAAEFgAAAAAAFgAAAAADFgAAAAAGFgAAAAAEFgAAAAAAeQAAAAAADAAAAAACFgAAAAAAFgAAAAABFgAAAAAEDAAAAAADFgAAAAADFgAAAAAGFgAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAAGFgAAAAACFgAAAAAEFgAAAAADdQAAAAAAFgAAAAAAFgAAAAABFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAABFgAAAAAEFgAAAAACFgAAAAABFgAAAAAGeQAAAAAAFgAAAAACFgAAAAADFgAAAAACSgAAAAADeQAAAAAAFgAAAAACFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAACFgAAAAABFgAAAAAFFgAAAAABeQAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAACDAAAAAACFgAAAAAFFgAAAAAFFgAAAAABeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAGeQAAAAAADAAAAAAAFgAAAAACFgAAAAABDAAAAAADDAAAAAADFgAAAAADFgAAAAAAeQAAAAAAagAAAAACagAAAAABeQAAAAAAFgAAAAAAFgAAAAAFFwAAAAAAFwAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAADAAAAAACFgAAAAAEFgAAAAACFgAAAAADeQAAAAAAagAAAAAAagAAAAABagAAAAADFgAAAAAEFwAAAAAFFwAAAAAAFwAAAAACeQAAAAAAFgAAAAAEFgAAAAABFgAAAAADFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAAGeQAAAAAAagAAAAACagAAAAADeQAAAAAAFgAAAAAFFwAAAAAHFwAAAAACFwAAAAABeQAAAAAAFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAEFwAAAAAEFgAAAAACFgAAAAABFgAAAAADeQAAAAAAeQAAAAAAFgAAAAADFwAAAAACFwAAAAABFwAAAAAEDAAAAAACDAAAAAAAFgAAAAAGFwAAAAACFwAAAAACFwAAAAAAFwAAAAAGFwAAAAABFwAAAAABFwAAAAABFwAAAAAFFwAAAAAFFwAAAAADFwAAAAAFFwAAAAABFwAAAAAGFwAAAAAGDAAAAAACFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAACFwAAAAAEFwAAAAAEFwAAAAAAFwAAAAAFFwAAAAABFwAAAAAEFwAAAAAHFwAAAAACFwAAAAAFFwAAAAAAeQAAAAAAeQAAAAAAFwAAAAACFwAAAAAHFwAAAAABFwAAAAABFwAAAAACFwAAAAAFFwAAAAAGFwAAAAAAFwAAAAABFwAAAAAGFwAAAAACFwAAAAADFwAAAAACeQAAAAAAPAAAAAAAPAAAAAAAFwAAAAADFwAAAAAFFwAAAAADFwAAAAAGFwAAAAAFFwAAAAAAFwAAAAACFwAAAAAEFwAAAAADFwAAAAAEFwAAAAAAFwAAAAAEFwAAAAAFPAAAAAAAPAAAAAAAPAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: FwAAAAAAFwAAAAAEFwAAAAABFwAAAAAHFwAAAAADFwAAAAAEFwAAAAACFwAAAAAHFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAABFwAAAAACFwAAAAAFFwAAAAAEFwAAAAAEFwAAAAAFFwAAAAAGDAAAAAAADAAAAAAAFwAAAAAFFwAAAAAHFwAAAAABFwAAAAAEFwAAAAAEFwAAAAAAFwAAAAAGFwAAAAACFwAAAAAGFwAAAAAEFwAAAAAGFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAFFwAAAAAHFwAAAAADFwAAAAAAFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAAAdQAAAAAAdQAAAAABdQAAAAADdQAAAAACeQAAAAAAFwAAAAAHFwAAAAAFFwAAAAADFwAAAAAGFwAAAAAGFwAAAAAEeQAAAAAAeQAAAAAAdQAAAAABdQAAAAADcQAAAAABcQAAAAADcQAAAAACcQAAAAAAdQAAAAAAeQAAAAAAFwAAAAADFwAAAAABFwAAAAAAFwAAAAADFwAAAAACFwAAAAAHeQAAAAAAaAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAABdQAAAAABdQAAAAADeQAAAAAAFwAAAAAGFwAAAAAGFwAAAAAAFwAAAAABFwAAAAAAFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAAEFwAAAAAAFwAAAAADFwAAAAABFwAAAAACFwAAAAAFFwAAAAAAFwAAAAAEFwAAAAACFwAAAAAFFwAAAAACFwAAAAAEDAAAAAAAFwAAAAAFFwAAAAADFwAAAAAFFwAAAAAFFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAHFwAAAAAHFwAAAAABeQAAAAAAFwAAAAAHFwAAAAAHFwAAAAAFDAAAAAAADAAAAAAADAAAAAAAFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAGFwAAAAAHFwAAAAACFwAAAAAAFwAAAAABFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAAFwAAAAAHFwAAAAAHFwAAAAADFwAAAAAAFwAAAAAGFwAAAAAAFwAAAAAEFwAAAAAEFwAAAAABdQAAAAAAdQAAAAABdQAAAAAAdQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAACFwAAAAACFwAAAAADFwAAAAACFwAAAAADFwAAAAAHFwAAAAAHFwAAAAACdQAAAAACdQAAAAABdQAAAAAAdQAAAAACdQAAAAADdQAAAAADdQAAAAADdQAAAAAAFwAAAAAFFwAAAAAEFwAAAAAEFwAAAAAEFwAAAAAEFwAAAAAFFwAAAAAHFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAADdQAAAAACdQAAAAADdQAAAAABFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAAHFwAAAAACFwAAAAAEFwAAAAAHFwAAAAAFeQAAAAAADAAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAABeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAFFwAAAAAEFwAAAAAHFwAAAAAEFwAAAAAEFwAAAAAGFwAAAAABDAAAAAAADAAAAAAADAAAAAAAeQAAAAAAdQAAAAACdQAAAAAAdQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAGFwAAAAACFwAAAAAGFwAAAAAHFwAAAAADFwAAAAAGFwAAAAADDAAAAAAADAAAAAAADAAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAAAeQAAAAAAFwAAAAAFFwAAAAADFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAAAFwAAAAADGAAAAAAG + tiles: FwAAAAADFwAAAAABFwAAAAAGFwAAAAACFwAAAAAGFwAAAAAAFwAAAAAAFwAAAAACFwAAAAADFwAAAAABFwAAAAADFwAAAAAGFwAAAAACFwAAAAAAFwAAAAAHFwAAAAADFwAAAAABFwAAAAACDAAAAAADDAAAAAAAFwAAAAADFwAAAAAGFwAAAAAFFwAAAAAEFwAAAAABFwAAAAAAFwAAAAACFwAAAAACFwAAAAAAFwAAAAADFwAAAAADFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAAFwAAAAAEFwAAAAAFFwAAAAAAFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAACdQAAAAABdQAAAAABdQAAAAABdQAAAAADeQAAAAAAFwAAAAADFwAAAAACFwAAAAABFwAAAAAEFwAAAAADFwAAAAAFeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAADcQAAAAADcQAAAAACcQAAAAABcQAAAAADdQAAAAACeQAAAAAAFwAAAAABFwAAAAADFwAAAAACFwAAAAAAFwAAAAABFwAAAAADeQAAAAAAaAAAAAAAeQAAAAAAdQAAAAADdQAAAAADdQAAAAACdQAAAAADdQAAAAAAdQAAAAACeQAAAAAAFwAAAAAGFwAAAAAGFwAAAAAHFwAAAAAEFwAAAAAEFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAGFwAAAAAEFwAAAAAEFwAAAAACFwAAAAADFwAAAAABFwAAAAAEFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAAFwAAAAAADAAAAAAAFwAAAAAGFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAAAFwAAAAAGFwAAAAAHeQAAAAAAFwAAAAAAFwAAAAAGFwAAAAACDAAAAAAADAAAAAAADAAAAAABFwAAAAAFFwAAAAAAFwAAAAAHFwAAAAAFFwAAAAAHFwAAAAAHFwAAAAAGFwAAAAAEFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAABDAAAAAAAFwAAAAAGFwAAAAABFwAAAAAAFwAAAAAEFwAAAAADFwAAAAAAFwAAAAADFwAAAAAGFwAAAAAGdQAAAAABdQAAAAACdQAAAAABdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAADFwAAAAAHFwAAAAACFwAAAAAHFwAAAAAFFwAAAAAGFwAAAAABdQAAAAABdQAAAAACdQAAAAADdQAAAAACdQAAAAAAdQAAAAACdQAAAAACdQAAAAADFwAAAAAAFwAAAAAAFwAAAAAHFwAAAAADFwAAAAAAFwAAAAACFwAAAAAHFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAABdQAAAAAAdQAAAAACdQAAAAACFwAAAAACFwAAAAAFFwAAAAAAFwAAAAAHFwAAAAACFwAAAAABFwAAAAADFwAAAAACeQAAAAAADAAAAAACeQAAAAAAeQAAAAAAdQAAAAADdQAAAAADeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAEFwAAAAAEFwAAAAADFwAAAAAHFwAAAAAHFwAAAAADFwAAAAAGDAAAAAAADAAAAAAADAAAAAACeQAAAAAAdQAAAAAAdQAAAAACdQAAAAABeQAAAAAAFwAAAAAAFwAAAAABFwAAAAAFFwAAAAAEFwAAAAADFwAAAAACFwAAAAAEFwAAAAADDAAAAAABDAAAAAABDAAAAAAAeQAAAAAAdQAAAAAAdQAAAAABdQAAAAABeQAAAAAAFwAAAAADFwAAAAAGFwAAAAAHFwAAAAACFwAAAAACFwAAAAAGFwAAAAADGAAAAAAF version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAFwAAAAADFwAAAAAHFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAFFgAAAAAGFwAAAAAHFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAFgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFwAAAAAAFwAAAAABFwAAAAAFFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFwAAAAABFwAAAAAAFwAAAAAHFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAFFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAADFwAAAAADFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAABFgAAAAAAeQAAAAAAagAAAAABagAAAAAAeQAAAAAAagAAAAADeQAAAAAAFwAAAAAFFwAAAAAFFwAAAAABFwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAABFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAABFwAAAAAEFwAAAAAGAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAFFgAAAAAEFgAAAAAEeQAAAAAAeQAAAAAAagAAAAABagAAAAADeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAABFwAAAAABFwAAAAACAAAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAAGFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAFwAAAAADFwAAAAAEFwAAAAACFwAAAAABFgAAAAADFgAAAAACFgAAAAAEFgAAAAABFgAAAAAGFgAAAAACFgAAAAAFFwAAAAAAeQAAAAAAeQAAAAAAagAAAAAAeQAAAAAAFwAAAAAFFwAAAAABFwAAAAADFwAAAAACFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAACFgAAAAAFFwAAAAADFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAAFwAAAAABFwAAAAAG + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAFwAAAAAHFwAAAAACFwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAFgAAAAADFwAAAAAAFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAFgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAADFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFwAAAAAFFwAAAAADFwAAAAAGFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAACFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFwAAAAABFwAAAAAFFwAAAAAAFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAFFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAAHFwAAAAAEFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAACFgAAAAACeQAAAAAAagAAAAADagAAAAAAeQAAAAAAagAAAAADeQAAAAAAFwAAAAAEFwAAAAAEFwAAAAAGFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAACFwAAAAADFwAAAAAGAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAACFgAAAAAGFgAAAAAEeQAAAAAAeQAAAAAAagAAAAACagAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAEAAAAAAAAFgAAAAADFgAAAAACFgAAAAAEFgAAAAAFFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAagAAAAADeQAAAAAAFwAAAAADFwAAAAADFwAAAAAFFwAAAAAHFgAAAAACFgAAAAAGFgAAAAAFFgAAAAACFgAAAAADFgAAAAAFFgAAAAAFFwAAAAACeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAFwAAAAAGFwAAAAAHFwAAAAAAFwAAAAAGFgAAAAAAFgAAAAAEFgAAAAABFgAAAAAEFgAAAAADFgAAAAAFFwAAAAAFFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAADFwAAAAACFwAAAAAE version: 6 0,-3: ind: 0,-3 - tiles: FwAAAAAAFwAAAAABFwAAAAAEFwAAAAADFwAAAAAHFwAAAAAFFwAAAAAEDAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAADAAAAAAAFwAAAAADFwAAAAAEFwAAAAAEFwAAAAAAFwAAAAAEFwAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAdQAAAAADdQAAAAACeQAAAAAAFwAAAAACFwAAAAAEFwAAAAAHFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAAeQAAAAAAdQAAAAABdQAAAAADeQAAAAAAFwAAAAAFFwAAAAACFwAAAAAFeQAAAAAAWQAAAAAAeQAAAAAAdQAAAAABdQAAAAADdQAAAAABdQAAAAABeQAAAAAADAAAAAAADAAAAAAAFwAAAAAAFwAAAAAGFwAAAAABFwAAAAAAFwAAAAAHFwAAAAAHeQAAAAAAWQAAAAACWQAAAAABdQAAAAACcQAAAAADcQAAAAAAdQAAAAAAdQAAAAABDAAAAAAAFwAAAAACFwAAAAAGFwAAAAABFwAAAAAGFwAAAAAFFwAAAAABFwAAAAAGeQAAAAAAWQAAAAACeQAAAAAAdQAAAAABdQAAAAABdQAAAAABdQAAAAAAeQAAAAAAFwAAAAAHFwAAAAAEFwAAAAAHFwAAAAAAFwAAAAAEFwAAAAAEFwAAAAAAFwAAAAAHFwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAAFwAAAAAHFwAAAAAEFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAAAFwAAAAABFwAAAAABFwAAAAAHFwAAAAAAFwAAAAADFwAAAAAHFwAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAAAFwAAAAAHDAAAAAAADAAAAAAAFwAAAAAAFwAAAAAHFwAAAAABFwAAAAAFFwAAAAAHFwAAAAAHFwAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAABeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAAFFwAAAAADFwAAAAABFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAADdQAAAAABdQAAAAAAdQAAAAABdQAAAAACFwAAAAAAFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAAAdQAAAAABdQAAAAACdQAAAAADdQAAAAAAcQAAAAACcQAAAAADdQAAAAACdQAAAAACFwAAAAAFFwAAAAAHdQAAAAACdQAAAAACdQAAAAAAdQAAAAABdQAAAAAAdQAAAAABdQAAAAABdQAAAAADdQAAAAAAcQAAAAAAcQAAAAAAcQAAAAADcQAAAAADdQAAAAADFwAAAAACFwAAAAADdQAAAAACdQAAAAABdQAAAAAAdQAAAAACdQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAAAcQAAAAADcQAAAAACdQAAAAAAdQAAAAABFwAAAAAFFwAAAAAGeQAAAAAAeQAAAAAAdQAAAAACdQAAAAADeQAAAAAAeQAAAAAADAAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAAAdQAAAAADdQAAAAABeQAAAAAAFwAAAAAGFwAAAAACeQAAAAAAcQAAAAAAdQAAAAACdQAAAAABeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAACeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAABeQAAAAAAcQAAAAAAdQAAAAADdQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAFwAAAAAFFwAAAAAADAAAAAAADAAAAAAA + tiles: FwAAAAAAFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAAAFwAAAAADFwAAAAAEDAAAAAACDAAAAAAADAAAAAAADAAAAAACeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAADAAAAAAAFwAAAAAAFwAAAAABFwAAAAACFwAAAAAHFwAAAAAFFwAAAAABDAAAAAABDAAAAAABDAAAAAABDAAAAAADDAAAAAADeQAAAAAAdQAAAAABdQAAAAAAeQAAAAAAFwAAAAADFwAAAAAGFwAAAAAFFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAACeQAAAAAAdQAAAAADdQAAAAABeQAAAAAAFwAAAAAEFwAAAAAAFwAAAAABeQAAAAAAWQAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAABdQAAAAADeQAAAAAADAAAAAABDAAAAAACFwAAAAAGFwAAAAAFFwAAAAADFwAAAAAEFwAAAAAGFwAAAAADeQAAAAAAWQAAAAACWQAAAAACdQAAAAABcQAAAAAAcQAAAAAAdQAAAAAAdQAAAAABDAAAAAABFwAAAAAAFwAAAAADFwAAAAAFFwAAAAAGFwAAAAADFwAAAAAHFwAAAAAAeQAAAAAAWQAAAAADeQAAAAAAdQAAAAACdQAAAAABdQAAAAAAdQAAAAADeQAAAAAAFwAAAAABFwAAAAAGFwAAAAAFFwAAAAACFwAAAAACFwAAAAADFwAAAAAGFwAAAAAGFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACDAAAAAABFwAAAAAGFwAAAAADFwAAAAACFwAAAAAHFwAAAAAEFwAAAAAFFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAAHFwAAAAABFwAAAAAFFwAAAAADDAAAAAADDAAAAAACDAAAAAABDAAAAAAAFwAAAAAEFwAAAAAADAAAAAACDAAAAAAAFwAAAAAHFwAAAAAEFwAAAAAHFwAAAAAHFwAAAAAAFwAAAAAGFwAAAAABDAAAAAACDAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAADeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAFFwAAAAAFFwAAAAAEFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAAAdQAAAAAAdQAAAAACdQAAAAADdQAAAAABFwAAAAAAFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAABdQAAAAABdQAAAAACdQAAAAABdQAAAAABcQAAAAADcQAAAAABdQAAAAADdQAAAAAAFwAAAAABFwAAAAADdQAAAAACdQAAAAAAdQAAAAACdQAAAAABdQAAAAACdQAAAAAAdQAAAAACdQAAAAABdQAAAAADcQAAAAABcQAAAAAAcQAAAAAAcQAAAAACdQAAAAACFwAAAAABFwAAAAAHdQAAAAABdQAAAAADdQAAAAABdQAAAAADdQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAABcQAAAAABcQAAAAADdQAAAAABdQAAAAACFwAAAAAEFwAAAAACeQAAAAAAeQAAAAAAdQAAAAACdQAAAAADeQAAAAAAeQAAAAAADAAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAACdQAAAAAAdQAAAAADeQAAAAAAFwAAAAAEFwAAAAAFeQAAAAAAcQAAAAADdQAAAAADdQAAAAAAeQAAAAAADAAAAAACDAAAAAACDAAAAAAAeQAAAAAAeQAAAAAAdQAAAAABdQAAAAACeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAEeQAAAAAAcQAAAAABdQAAAAACdQAAAAAAeQAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAADDAAAAAAAFwAAAAAAFwAAAAAADAAAAAADDAAAAAAB version: 6 -4,-1: ind: -4,-1 - tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAADeQAAAAAAeQAAAAAAFgAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAMwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAMwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA + tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAMwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAMwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAAAMwAAAAABMwAAAAADeQAAAAAAFgAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAABNAAAAAABMwAAAAAAeQAAAAAAFgAAAAACFgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAABNAAAAAACMwAAAAADMwAAAAADNAAAAAAAFgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAACNAAAAAAAMwAAAAAAeQAAAAAAFgAAAAAAFgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAADMwAAAAACMwAAAAADeQAAAAAAFgAAAAAAFgAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAAAeQAAAAAAeQAAAAAAFgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAADeQAAAAAAeQAAAAAAFgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAADNAAAAAADFgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAABNAAAAAADFgAAAAAB + tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAADMwAAAAACMwAAAAACeQAAAAAAFgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAAANAAAAAAAMwAAAAABeQAAAAAAFgAAAAAFFgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAABNAAAAAACMwAAAAACMwAAAAABNAAAAAACFgAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAACNAAAAAADMwAAAAABeQAAAAAAFgAAAAAFFgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAADMwAAAAADMwAAAAACeQAAAAAAFgAAAAABFgAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAAAMwAAAAAANAAAAAABFgAAAAAFDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAABNAAAAAADFgAAAAAA version: 6 -5,-1: ind: -5,-1 @@ -173,19 +176,19 @@ entities: version: 6 -5,0: ind: -5,0 - tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA + tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA version: 6 -4,0: ind: -4,0 - tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAANAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAANQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAANAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAAARgAAAAAARgAAAAADRgAAAAACRgAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAAASAAAAAABSAAAAAABSAAAAAADRgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAACSAAAAAADSAAAAAABSAAAAAAARgAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAAASAAAAAADSAAAAAAASAAAAAAARgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAACRgAAAAADRgAAAAABRgAAAAAARgAAAAAAeQAAAAAADwAAAAAADwAAAAAA + tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAANAAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAANQAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAANAAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAACRgAAAAABRgAAAAACRgAAAAAARgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAABSAAAAAACSAAAAAABSAAAAAADRgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAAASAAAAAADSAAAAAAASAAAAAAARgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAABSAAAAAADSAAAAAABSAAAAAADRgAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAACRgAAAAAARgAAAAABRgAAAAACRgAAAAACeQAAAAAADwAAAAAADwAAAAAA version: 6 -3,0: ind: -3,0 - tiles: FgAAAAADFgAAAAABFgAAAAADFgAAAAABeQAAAAAANQAAAAACeQAAAAAAFgAAAAADFgAAAAABFgAAAAAFFgAAAAADFgAAAAAAFgAAAAABFgAAAAABFwAAAAAGFwAAAAAHNAAAAAACNQAAAAAANAAAAAACeQAAAAAAeQAAAAAANQAAAAACeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAFFgAAAAAEFgAAAAAGFwAAAAAHFgAAAAAGFwAAAAABFwAAAAAFNQAAAAABNAAAAAADNQAAAAADNAAAAAADeQAAAAAANQAAAAADNAAAAAADNQAAAAAARwAAAAACRwAAAAABSAAAAAAARwAAAAABFwAAAAAAFgAAAAAEFgAAAAABFwAAAAAENAAAAAABNAAAAAADNAAAAAADNAAAAAABNAAAAAADNAAAAAABNAAAAAABRwAAAAADSAAAAAABFwAAAAADFwAAAAADFwAAAAACFwAAAAABFgAAAAADFgAAAAAEFgAAAAAENQAAAAACNAAAAAAANQAAAAADNAAAAAACeQAAAAAANQAAAAAANAAAAAABSAAAAAACFwAAAAABFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAAAFgAAAAACFgAAAAAAFgAAAAAFGgAAAAAANQAAAAAANAAAAAADNAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAACFwAAAAAFFwAAAAAEFwAAAAADFwAAAAACFgAAAAAFFgAAAAABFwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAAEFgAAAAADFgAAAAABFgAAAAAAFgAAAAAFFgAAAAAEDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAADFgAAAAAEFgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAFFgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAAEFgAAAAABFgAAAAADFgAAAAAAFgAAAAABFgAAAAADFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAEFgAAAAACeQAAAAAAFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAAFFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAAFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAAGFgAAAAADFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAABFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAABFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAABFgAAAAADFgAAAAABFgAAAAAGFgAAAAACFgAAAAAE + tiles: FgAAAAAFFgAAAAAFFgAAAAACFgAAAAADeQAAAAAANQAAAAACeQAAAAAAFgAAAAAFFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAGFgAAAAADFgAAAAACFwAAAAACFwAAAAABNAAAAAABNQAAAAACNAAAAAABeQAAAAAAeQAAAAAANQAAAAABeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFFgAAAAACFgAAAAABFwAAAAACFgAAAAABFwAAAAADFwAAAAAHNQAAAAABNAAAAAABNQAAAAAANAAAAAADeQAAAAAANQAAAAABNAAAAAABNQAAAAADRwAAAAABRwAAAAABSAAAAAACRwAAAAAAFwAAAAAAFgAAAAAEFgAAAAABFwAAAAAENAAAAAABNAAAAAAANAAAAAACNAAAAAACNAAAAAAANAAAAAABNAAAAAACRwAAAAACSAAAAAACFwAAAAAEFwAAAAAEFwAAAAAGFwAAAAAEFgAAAAACFgAAAAACFgAAAAABNQAAAAAANAAAAAADNQAAAAAANAAAAAADeQAAAAAANQAAAAABNAAAAAABSAAAAAABFwAAAAAHFwAAAAAGFwAAAAAGFwAAAAABFwAAAAAHFgAAAAACFgAAAAADFgAAAAABGgAAAAACNQAAAAADNAAAAAAANAAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAGFwAAAAACFwAAAAADFwAAAAADFwAAAAADFgAAAAACFgAAAAAAFwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAAGFgAAAAAFFgAAAAADFgAAAAADFgAAAAADFgAAAAAGDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAAAFgAAAAAEFgAAAAAEFgAAAAAAFgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAAGFgAAAAADFgAAAAADFgAAAAACFgAAAAACFgAAAAAGFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAADFgAAAAADeQAAAAAAFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAACFgAAAAAGFgAAAAABFgAAAAAAFgAAAAABFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAEFgAAAAAEFgAAAAAEFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAAFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAFFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAABFgAAAAAEFgAAAAAGFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAABFgAAAAAAFgAAAAAFFgAAAAAFFgAAAAADFgAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: dQAAAAAAcQAAAAACcQAAAAABMgAAAAADcQAAAAACcQAAAAACdQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAABcQAAAAACcQAAAAADMgAAAAACcQAAAAABcQAAAAABdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAACcQAAAAAAcQAAAAACMgAAAAAAcQAAAAACcQAAAAADdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAADcQAAAAAAMgAAAAAAcQAAAAADcQAAAAADdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAATAAAAAACcQAAAAACMgAAAAAAcQAAAAAATAAAAAADdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAABcQAAAAAAcQAAAAADcQAAAAACcQAAAAACcQAAAAAAdQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAADcQAAAAAAcQAAAAAATAAAAAADcQAAAAADcQAAAAAAdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAACdQAAAAACdQAAAAACdQAAAAACdQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAADdQAAAAADdQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAAATAAAAAABdQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAADdQAAAAACdQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdQAAAAABdQAAAAADdQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAAAdQAAAAADdQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAABTAAAAAAAdQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAFeQAAAAAAdQAAAAACdQAAAAACdQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAGFgAAAAACFgAAAAAFFgAAAAAE + tiles: dQAAAAACcQAAAAACZAAAAAACMgAAAAADZAAAAAADcQAAAAAAdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAADZAAAAAADMgAAAAADZAAAAAACcQAAAAACdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAADZAAAAAACMgAAAAADZAAAAAADcQAAAAACdQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAABcQAAAAAAZAAAAAACMgAAAAACZAAAAAACcQAAAAAAdQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAACZAAAAAABMgAAAAAAZAAAAAAAcQAAAAACdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAABcQAAAAACZAAAAAACcQAAAAABcQAAAAAAdQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAACcQAAAAABdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAABdQAAAAABdQAAAAACdQAAAAABdQAAAAABdQAAAAADdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAAAdQAAAAADdQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAABTAAAAAABdQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAABdQAAAAADdQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAACdQAAAAAAdQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAACTAAAAAADdQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAAeQAAAAAAdQAAAAABdQAAAAACdQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAADFgAAAAAGFgAAAAAAFgAAAAAB version: 6 -3,-3: ind: -3,-3 @@ -193,55 +196,55 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAATAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAATAAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAAAcQAAAAAAMgAAAAAAcQAAAAAAcQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAAAcQAAAAAAMgAAAAAAcQAAAAAAcQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAAAcQAAAAAAMgAAAAAAcQAAAAAAcQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAAAcQAAAAAAMgAAAAAAcQAAAAAAcQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAAAcQAAAAAAMgAAAAAAcQAAAAAAcQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAAAcQAAAAAAMgAAAAAAcQAAAAAAcQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAAAcQAAAAAAMgAAAAAAcQAAAAAAcQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAdQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAACcQAAAAADcQAAAAADTAAAAAADcQAAAAABcQAAAAADdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAADTAAAAAAAcQAAAAACcQAAAAABcQAAAAABTAAAAAADdQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAADcQAAAAAAcQAAAAACMgAAAAAAcQAAAAADcQAAAAABdQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAADcQAAAAACcQAAAAACMgAAAAADcQAAAAACcQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAdQAAAAAAdQAAAAACdQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAACdQAAAAADdQAAAAACdQAAAAAAdQAAAAAAdQAAAAABdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAABcQAAAAAAcQAAAAADcQAAAAABcQAAAAACcQAAAAACdQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAACcQAAAAADcQAAAAABZAAAAAABcQAAAAAAcQAAAAACdQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAADcQAAAAACZAAAAAADMgAAAAACZAAAAAABcQAAAAAAdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAACcQAAAAACZAAAAAADMgAAAAAAZAAAAAAAcQAAAAABdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAABcQAAAAAAZAAAAAADMgAAAAACZAAAAAACcQAAAAACdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAADcQAAAAABZAAAAAACMgAAAAACZAAAAAAAcQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAADcQAAAAAAZAAAAAADMgAAAAABZAAAAAABcQAAAAABdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAAAZAAAAAABMgAAAAAAZAAAAAAAcQAAAAADdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAAAZAAAAAACMgAAAAAAZAAAAAAAcQAAAAADdQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAACcQAAAAAAZAAAAAABcQAAAAABcQAAAAACdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAADcQAAAAADTAAAAAACTAAAAAAATAAAAAAAcQAAAAAAdQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAACcQAAAAADcQAAAAABZAAAAAADcQAAAAAAcQAAAAACdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAACcQAAAAAAZAAAAAABMgAAAAABZAAAAAACcQAAAAACdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAABcQAAAAABZAAAAAAAMgAAAAACZAAAAAACcQAAAAABdQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAFwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAF version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAFwAAAAACFwAAAAAAFwAAAAABFwAAAAACFwAAAAAHFwAAAAACFwAAAAADFwAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAFwAAAAAHFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAAAFwAAAAADFwAAAAADFwAAAAAFTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAFwAAAAAAAAAAAAAAFwAAAAAHFwAAAAADFwAAAAAGFwAAAAAEFwAAAAACFwAAAAAFFwAAAAAEFwAAAAABFwAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAFwAAAAAFAAAAAAAAFwAAAAADFwAAAAAGFwAAAAADFwAAAAAAFwAAAAAGFwAAAAADFwAAAAACFwAAAAAFFwAAAAAAFwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAADeAAAAAAAFwAAAAACFwAAAAAEFwAAAAAEFwAAAAADFwAAAAAAFwAAAAABFwAAAAAHFwAAAAAHFwAAAAADFwAAAAADFwAAAAAHFwAAAAAHFwAAAAAAFwAAAAACFwAAAAAGAAAAAAAAFwAAAAAFFwAAAAAEFwAAAAAHFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAADFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAAAFwAAAAAHFwAAAAAEFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAFwAAAAAFFwAAAAAEFwAAAAAAFwAAAAAEFwAAAAAFeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAABdQAAAAACdQAAAAAAdQAAAAAAFwAAAAACFwAAAAAGFwAAAAAAFwAAAAADFwAAAAABeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdQAAAAAAdQAAAAABdQAAAAADdQAAAAACdQAAAAAAdQAAAAADdQAAAAABFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAEFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAFwAAAAAHFwAAAAAAFwAAAAABFwAAAAACFwAAAAAEFwAAAAAFFwAAAAAFFwAAAAACFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAACFwAAAAAHFwAAAAAHFwAAAAADFwAAAAACFwAAAAADFwAAAAAGFwAAAAAGFwAAAAAFeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAFFwAAAAACFwAAAAAFFwAAAAACFwAAAAADFwAAAAAFFwAAAAAAFwAAAAAAFwAAAAAAeQAAAAAAOgAAAAAAdQAAAAABdQAAAAABOgAAAAAAeQAAAAAAFwAAAAACFwAAAAABFwAAAAACFwAAAAADFwAAAAAAFwAAAAADFwAAAAADFwAAAAAAFwAAAAADFwAAAAACeQAAAAAAOgAAAAAAdQAAAAADdQAAAAAAOgAAAAAAeQAAAAAAFwAAAAAAFwAAAAABFwAAAAAFFwAAAAACFwAAAAABFwAAAAAHFwAAAAAFFwAAAAABFwAAAAAFFwAAAAAEeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAGFwAAAAAEFwAAAAAAFwAAAAACFwAAAAACFwAAAAACFwAAAAADFwAAAAAADAAAAAAAFwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAAH + tiles: AAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAACFwAAAAAGFwAAAAAEFwAAAAAHFwAAAAACFwAAAAAHeQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAeQAAAAAAFwAAAAACAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAFFwAAAAACFwAAAAAGFwAAAAAEFwAAAAAGFwAAAAAHFwAAAAABTQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAATQAAAAAAFwAAAAABAAAAAAAAFwAAAAABFwAAAAACFwAAAAAGFwAAAAADFwAAAAAAFwAAAAADFwAAAAAGFwAAAAADFwAAAAAGeQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAeQAAAAAAFwAAAAAFAAAAAAAAFwAAAAAEFwAAAAAGFwAAAAADFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAAHFwAAAAADFwAAAAAAFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAFeAAAAAAAFwAAAAAEFwAAAAAEFwAAAAAGFwAAAAADFwAAAAABFwAAAAAGFwAAAAAFFwAAAAAAFwAAAAADFwAAAAAFFwAAAAADFwAAAAABFwAAAAAGFwAAAAADFwAAAAAEAAAAAAAAFwAAAAAHFwAAAAACFwAAAAAHFwAAAAABFwAAAAABFwAAAAAHFwAAAAAFFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAEFwAAAAABFwAAAAABFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAFwAAAAAHFwAAAAAAFwAAAAAAFwAAAAAHFwAAAAAGeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAdQAAAAAAdQAAAAACdQAAAAADdQAAAAADdQAAAAACdQAAAAAAFwAAAAACFwAAAAACFwAAAAAEFwAAAAAHFwAAAAAEeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAdQAAAAABdQAAAAAAdQAAAAADdQAAAAABdQAAAAACdQAAAAADdQAAAAAAFwAAAAAHFwAAAAACFwAAAAAFFwAAAAAEFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAFwAAAAAAFwAAAAAFFwAAAAAFFwAAAAABFwAAAAACFwAAAAAGFwAAAAADFwAAAAAFFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAGFwAAAAADFwAAAAAFFwAAAAACFwAAAAACFwAAAAABFwAAAAAEFwAAAAAHFwAAAAADeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAACFwAAAAABFwAAAAAEFwAAAAAAFwAAAAAEFwAAAAACFwAAAAABFwAAAAAEFwAAAAABeQAAAAAAOgAAAAAAdQAAAAADdQAAAAAAOgAAAAAAeQAAAAAAFwAAAAAGFwAAAAAAFwAAAAADFwAAAAACFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAAHFwAAAAACFwAAAAACeQAAAAAAOgAAAAAAdQAAAAADdQAAAAAAOgAAAAAAeQAAAAAAFwAAAAAEFwAAAAAAFwAAAAAAFwAAAAAFFwAAAAADFwAAAAADFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAFeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAACFwAAAAAFFwAAAAAEFwAAAAABFwAAAAAAFwAAAAACFwAAAAAGFwAAAAAEDAAAAAACFwAAAAABeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAAC version: 6 1,-4: ind: 1,-4 - tiles: FwAAAAABFwAAAAADFwAAAAAHFwAAAAACFwAAAAAHFwAAAAACFwAAAAACFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAAHFwAAAAAHFwAAAAAFFwAAAAAHFwAAAAAFFwAAAAACFwAAAAADFwAAAAABFwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAFFwAAAAAGFwAAAAAAFwAAAAAGFwAAAAAEFwAAAAACFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAAHFwAAAAADFwAAAAABFwAAAAAGAAAAAAAAAAAAAAAAFwAAAAABFwAAAAAGFwAAAAAFFwAAAAACFwAAAAAHFwAAAAAEFwAAAAABFwAAAAAGFwAAAAABFwAAAAAHFwAAAAAAFwAAAAADFwAAAAAHFwAAAAAGAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAFFwAAAAACFwAAAAABFwAAAAAHFwAAAAABFwAAAAAHFwAAAAAAFwAAAAABFwAAAAAEFwAAAAAFFwAAAAACFwAAAAADFwAAAAAEAAAAAAAAAAAAAAAAeQAAAAAAFwAAAAABFwAAAAAEFwAAAAAEFwAAAAAHFwAAAAABFwAAAAACFwAAAAABFwAAAAAGFwAAAAAHFwAAAAAFFwAAAAAAFwAAAAAGFwAAAAABFwAAAAADeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAABFwAAAAAGFwAAAAACFwAAAAAEFwAAAAABFwAAAAAAFwAAAAABFwAAAAAAFwAAAAAFAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAADFwAAAAAAFwAAAAADFwAAAAABFwAAAAAFAAAAAAAAdQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAAFFwAAAAADFwAAAAACFwAAAAACFwAAAAACFwAAAAADFwAAAAADFwAAAAAGFwAAAAACFwAAAAADFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAAFwAAAAAFFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAGFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAAFeQAAAAAAFwAAAAAEFwAAAAADFwAAAAAHFwAAAAAHFwAAAAAFFwAAAAAEFwAAAAAHFwAAAAABSgAAAAAASgAAAAADFwAAAAAEFwAAAAAGFwAAAAACFwAAAAAHFwAAAAADFwAAAAAFFwAAAAABFwAAAAAHFwAAAAAGFwAAAAAHFwAAAAAGFwAAAAADFwAAAAAHSgAAAAACSgAAAAACSgAAAAAASgAAAAABFwAAAAAGFwAAAAAHFwAAAAAHFwAAAAABFwAAAAACFwAAAAAGFwAAAAACFwAAAAACFwAAAAAAFwAAAAACFwAAAAABSgAAAAAASgAAAAACSgAAAAACSgAAAAACSgAAAAAAFwAAAAAFFwAAAAACFwAAAAABFwAAAAAEFwAAAAABFwAAAAACFwAAAAADFwAAAAAEFwAAAAABFwAAAAAAFwAAAAACSgAAAAABSgAAAAADSgAAAAADSgAAAAABFwAAAAAGFwAAAAACFwAAAAADFwAAAAAFFwAAAAABFwAAAAAFFwAAAAAGFwAAAAAAFwAAAAAGFwAAAAAAFwAAAAACFwAAAAACFwAAAAAHSgAAAAAASgAAAAABFwAAAAACFwAAAAACFwAAAAADFwAAAAABFwAAAAADFwAAAAAAFwAAAAAEFwAAAAAEFwAAAAAEFwAAAAABFwAAAAABFwAAAAAHFwAAAAAAFwAAAAAGFwAAAAABFwAAAAAFFwAAAAAAFwAAAAAAFwAAAAABFwAAAAAHFwAAAAACFwAAAAAE + tiles: FwAAAAAFFwAAAAAEFwAAAAAGFwAAAAAFFwAAAAABFwAAAAAGFwAAAAADFwAAAAAHFwAAAAABFwAAAAABFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFFwAAAAAEFwAAAAAAFwAAAAAFFwAAAAAAFwAAAAADFwAAAAAEFwAAAAABFwAAAAAFFwAAAAADFwAAAAACFwAAAAAGFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAHFwAAAAABFwAAAAAHFwAAAAAAFwAAAAACFwAAAAAGFwAAAAAGFwAAAAAHFwAAAAADFwAAAAAFFwAAAAABFwAAAAABFwAAAAACFwAAAAACAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAGFwAAAAAAFwAAAAABFwAAAAAHFwAAAAAHFwAAAAAFFwAAAAAGFwAAAAABFwAAAAAEFwAAAAAEFwAAAAABFwAAAAAAFwAAAAACAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAAHAAAAAAAAAAAAAAAAeQAAAAAAFwAAAAAAFwAAAAAEFwAAAAAGFwAAAAABFwAAAAAEFwAAAAABFwAAAAAGFwAAAAACFwAAAAAFFwAAAAABFwAAAAACFwAAAAAAFwAAAAACFwAAAAABeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAFFwAAAAADFwAAAAACFwAAAAAAFwAAAAAHFwAAAAAAFwAAAAACFwAAAAACFwAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAACFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAAAFwAAAAAFFwAAAAACFwAAAAACAAAAAAAAdQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAFwAAAAADFwAAAAAGFwAAAAAEFwAAAAABFwAAAAAAFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAFFwAAAAAHFwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAACFwAAAAAFFwAAAAACFwAAAAAHFwAAAAABFwAAAAADFwAAAAAFFwAAAAAGFwAAAAACFwAAAAAFeQAAAAAAFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAADFwAAAAAEFwAAAAAGFwAAAAADFwAAAAACSgAAAAADSgAAAAADFwAAAAABFwAAAAAEFwAAAAAEFwAAAAABFwAAAAAEFwAAAAACFwAAAAAFFwAAAAACFwAAAAAEFwAAAAAHFwAAAAAESgAAAAABSgAAAAABSgAAAAAASgAAAAADSgAAAAACSgAAAAACFwAAAAAFFwAAAAAAFwAAAAAHFwAAAAAEFwAAAAACFwAAAAACFwAAAAABFwAAAAAHFwAAAAADFwAAAAACSgAAAAADSgAAAAACSgAAAAAASgAAAAADSgAAAAABSgAAAAABFwAAAAAEFwAAAAACFwAAAAAFFwAAAAACFwAAAAACFwAAAAAGFwAAAAADFwAAAAADFwAAAAAFFwAAAAAAFwAAAAAASgAAAAACSgAAAAACSgAAAAACSgAAAAABFwAAAAAEFwAAAAAHFwAAAAAHFwAAAAAEFwAAAAADFwAAAAAAFwAAAAAFFwAAAAADFwAAAAAEFwAAAAAEFwAAAAAAFwAAAAACFwAAAAAHSgAAAAABSgAAAAADFwAAAAACFwAAAAAFFwAAAAAHFwAAAAAFFwAAAAAHFwAAAAAHFwAAAAABFwAAAAAEFwAAAAAHFwAAAAAGFwAAAAADFwAAAAAAFwAAAAAEFwAAAAAEFwAAAAAAFwAAAAAHFwAAAAAAFwAAAAAHFwAAAAAFFwAAAAABFwAAAAAGFwAAAAAE version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFFwAAAAAGFwAAAAAFFwAAAAAGFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAFFwAAAAABFwAAAAAGFwAAAAAHFwAAAAAGFwAAAAAHFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAFwAAAAADFwAAAAADFwAAAAAEFwAAAAAGFwAAAAAHFwAAAAABFwAAAAADFwAAAAAGFwAAAAAEFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAEFwAAAAAHFwAAAAACFwAAAAAAFwAAAAAFFwAAAAABFwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAG + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABFwAAAAAFFwAAAAABFwAAAAAEFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAADFwAAAAABFwAAAAAGFwAAAAADFwAAAAAHFwAAAAAAFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAFwAAAAABFwAAAAABFwAAAAACFwAAAAACFwAAAAACFwAAAAACFwAAAAABFwAAAAACFwAAAAAHFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFFwAAAAAAFwAAAAAGFwAAAAADFwAAAAAGFwAAAAAEFwAAAAAGFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAF version: 6 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABFwAAAAABFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAACFwAAAAACFwAAAAAGFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABFwAAAAAGFwAAAAAEFwAAAAAEFwAAAAACFwAAAAABFwAAAAAGFwAAAAAGeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAAGFwAAAAAGFwAAAAADFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFFwAAAAABFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABFwAAAAACFwAAAAACFwAAAAAEFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAHFwAAAAAAFwAAAAAFFwAAAAABFwAAAAAFFwAAAAABFwAAAAAEeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAHFwAAAAACFwAAAAAHFwAAAAAAFwAAAAAGFwAAAAAFFwAAAAACFwAAAAABFwAAAAAEFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: FwAAAAAHFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAFwAAAAAGFwAAAAAAFwAAAAAGFwAAAAAAFwAAAAACFwAAAAAAFwAAAAABFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAADFwAAAAADFwAAAAAAFwAAAAAFFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAFwAAAAAEFwAAAAAEFwAAAAAGFwAAAAACFwAAAAACFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAFwAAAAAFFwAAAAAFFwAAAAAEFwAAAAAHFwAAAAAFFwAAAAAHFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAHFwAAAAAHFwAAAAAFFwAAAAAEFwAAAAABFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAGFwAAAAAGFwAAAAACFwAAAAAEFwAAAAAEFwAAAAAAFwAAAAAEFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAHFwAAAAADFwAAAAAAFwAAAAAAFwAAAAABFwAAAAAHFwAAAAACFwAAAAAFFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAEFwAAAAABFwAAAAAHFwAAAAAFFwAAAAAFFwAAAAAHFwAAAAAFFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAADFwAAAAAFFwAAAAAFFwAAAAAGFwAAAAAHFwAAAAAEFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAACFwAAAAABFwAAAAADFwAAAAABFwAAAAAAFwAAAAACFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAAEFwAAAAADFwAAAAABFwAAAAAHFwAAAAABFwAAAAAHeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAHFwAAAAADFwAAAAAGFwAAAAAHFwAAAAAAFwAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAACFwAAAAAGFwAAAAAGFwAAAAAAFwAAAAAFAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: FwAAAAAEFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAFwAAAAAHFwAAAAAAFwAAAAADFwAAAAACFwAAAAAEFwAAAAAFFwAAAAABFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFFwAAAAADFwAAAAAGFwAAAAAEFwAAAAAHFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAFwAAAAACFwAAAAABFwAAAAAEFwAAAAABFwAAAAAHFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAFwAAAAAGFwAAAAAEFwAAAAADFwAAAAAHFwAAAAAEFwAAAAAGFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAABFwAAAAADFwAAAAAFFwAAAAACFwAAAAADFwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAAAFwAAAAACFwAAAAAGFwAAAAADFwAAAAAGFwAAAAAGFwAAAAABFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAAFwAAAAAEFwAAAAABFwAAAAAAFwAAAAACFwAAAAACFwAAAAADFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAABFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAHFwAAAAAEFwAAAAAHFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAADFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAABFwAAAAAEFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAADFwAAAAABFwAAAAABFwAAAAABFwAAAAAFFwAAAAAAFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAAAFwAAAAADFwAAAAAGFwAAAAADFwAAAAAGFwAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAAFwAAAAAGFwAAAAAFFwAAAAAGFwAAAAAHFwAAAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAADFwAAAAAFFwAAAAAHFwAAAAAHFwAAAAABAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABFwAAAAADFwAAAAACFwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAAHFwAAAAAFFwAAAAABFwAAAAAFFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAFwAAAAAEFwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAFwAAAAAHFwAAAAAHeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAFwAAAAAFFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFwAAAAAFFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAHFwAAAAADFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAFFwAAAAAEFwAAAAAGFwAAAAACFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAFwAAAAAHFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAFwAAAAACFwAAAAAHeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAFwAAAAAGFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFwAAAAAHFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: GAAAAAAEeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAAFwAAAAAAFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAACFwAAAAADFwAAAAAAFwAAAAAGFwAAAAAGAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAHFwAAAAAGFwAAAAABFwAAAAABFwAAAAADAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAACFwAAAAACGAAAAAADGAAAAAABGAAAAAABAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAHGAAAAAADGAAAAAACGAAAAAACGAAAAAACGAAAAAAEAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAABGAAAAAAEGAAAAAADGAAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAACGAAAAAAFGAAAAAAFGAAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAAGAAAAAACGAAAAAAEGAAAAAACeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAACGAAAAAAGGAAAAAAGGAAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAABGAAAAAABGAAAAAAAGAAAAAAGAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAEGAAAAAAGGAAAAAAGGAAAAAAEGAAAAAACAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAFeQAAAAAAdgAAAAAAdgAAAAADEwAAAAABEwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAADeQAAAAAAGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GAAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAHFwAAAAAHFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAHFwAAAAABFwAAAAAEFwAAAAACFwAAAAAEFwAAAAADAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAEFwAAAAAGFwAAAAABFwAAAAAHFwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAGFwAAAAAGGAAAAAABGAAAAAAFGAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACGAAAAAAFGAAAAAABGAAAAAAFGAAAAAAFGAAAAAAGAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAAGGAAAAAAEGAAAAAAAGAAAAAAEAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAGGAAAAAAEGAAAAAABGAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAAFGAAAAAAGGAAAAAAFGAAAAAAEeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAADGAAAAAAGGAAAAAAEGAAAAAADAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAEGAAAAAADGAAAAAAGGAAAAAAGGAAAAAAFAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAEGAAAAAABGAAAAAAGGAAAAAAEGAAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAABeQAAAAAAdgAAAAACdgAAAAABEwAAAAAAEwAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAACeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: GAAAAAADGAAAAAADeQAAAAAAEwAAAAABdgAAAAABdgAAAAADdgAAAAACeQAAAAAAGAAAAAAAGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAAFeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAADeQAAAAAAGAAAAAABGAAAAAAAGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAACeQAAAAAAdgAAAAACdgAAAAACEwAAAAAGdgAAAAACeQAAAAAAGAAAAAAAGAAAAAACGAAAAAADGAAAAAAEGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAGeQAAAAAAdgAAAAADdgAAAAABdgAAAAABEwAAAAAGeQAAAAAAGAAAAAAEGAAAAAAGGAAAAAAEGAAAAAABGAAAAAAGGAAAAAAFGAAAAAAEAAAAAAAAGAAAAAAFGAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAACGAAAAAABGAAAAAADGAAAAAADGAAAAAAGGAAAAAACGAAAAAADGAAAAAAFGAAAAAACGAAAAAACGAAAAAACGAAAAAADGAAAAAAEGAAAAAAAGAAAAAADGAAAAAAAGAAAAAAAGAAAAAADGAAAAAAGGAAAAAABGAAAAAAGGAAAAAAFGAAAAAADGAAAAAAGGAAAAAABGAAAAAAGGAAAAAAAGAAAAAAAGAAAAAAEGAAAAAAGGAAAAAACGAAAAAAFGAAAAAACGAAAAAAGGAAAAAAEGAAAAAAFGAAAAAAEGAAAAAADGAAAAAAAGAAAAAACGAAAAAAEGAAAAAAEGAAAAAAGGAAAAAAFGAAAAAAEGAAAAAAGGAAAAAADGAAAAAAFGAAAAAAEGAAAAAAGGAAAAAAAGAAAAAAAGAAAAAACGAAAAAABGAAAAAADGAAAAAAEGAAAAAACGAAAAAAFGAAAAAAAGAAAAAACGAAAAAAFGAAAAAABGAAAAAABGAAAAAABGAAAAAADGAAAAAAGGAAAAAAFGAAAAAACGAAAAAAEGAAAAAAAGAAAAAAFGAAAAAABGAAAAAAEGAAAAAACGAAAAAAEGAAAAAACGAAAAAAFGAAAAAADGAAAAAACGAAAAAAFGAAAAAADGAAAAAAFGAAAAAAEGAAAAAAGGAAAAAADGAAAAAAAGAAAAAAEGAAAAAACGAAAAAAEGAAAAAAGGAAAAAAGGAAAAAAGGAAAAAAAGAAAAAAAGAAAAAADGAAAAAADGAAAAAAGGAAAAAAEGAAAAAAFGAAAAAAGGAAAAAAFGAAAAAAFGAAAAAAFGAAAAAACGAAAAAABGAAAAAAAGAAAAAAEGAAAAAAFGAAAAAADGAAAAAACGAAAAAAGGAAAAAAFGAAAAAADGAAAAAAEGAAAAAAEGAAAAAAEGAAAAAAAGAAAAAABGAAAAAAEGAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAABGAAAAAADGAAAAAAFGAAAAAAFGAAAAAABGAAAAAAEGAAAAAACGAAAAAAAGAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAENgAAAAAAQAAAAAAAeQAAAAAAGAAAAAAEGAAAAAAAGAAAAAACGAAAAAAAGAAAAAAAGAAAAAAEGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAABGAAAAAAGIgAAAAACIgAAAAABeQAAAAAAGAAAAAADGAAAAAAAGAAAAAABGAAAAAAEGAAAAAABGAAAAAAGGAAAAAAGeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAGAAAAAABGAAAAAAFIgAAAAAAIgAAAAADeQAAAAAAGAAAAAACGAAAAAACGAAAAAAEGAAAAAADGAAAAAACGAAAAAAAGAAAAAAFeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAGAAAAAAEGAAAAAAB + tiles: GAAAAAAAGAAAAAAAeQAAAAAAEwAAAAACdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAGAAAAAAFGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAFeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAACeQAAAAAAGAAAAAAGGAAAAAADGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAEeQAAAAAAdgAAAAAAdgAAAAABEwAAAAAGdgAAAAAAeQAAAAAAGAAAAAAFGAAAAAAAGAAAAAAEGAAAAAACGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAAEeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABEwAAAAAEeQAAAAAAGAAAAAAAGAAAAAADGAAAAAAEGAAAAAAAGAAAAAAFGAAAAAAFGAAAAAADAAAAAAAAGAAAAAAGGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAACGAAAAAADGAAAAAAEGAAAAAAEGAAAAAAAGAAAAAACGAAAAAAFGAAAAAAGGAAAAAADGAAAAAAEGAAAAAAEGAAAAAAGGAAAAAAEGAAAAAAGGAAAAAAEGAAAAAACGAAAAAAAGAAAAAAEGAAAAAAAGAAAAAAEGAAAAAADGAAAAAABGAAAAAABGAAAAAAGGAAAAAAFGAAAAAADGAAAAAABGAAAAAAEGAAAAAACGAAAAAADGAAAAAACGAAAAAACGAAAAAAEGAAAAAAEGAAAAAAFGAAAAAAFGAAAAAAGGAAAAAAEGAAAAAACGAAAAAAGGAAAAAADGAAAAAAEGAAAAAAFGAAAAAABGAAAAAAAGAAAAAABGAAAAAADGAAAAAAAGAAAAAACGAAAAAADGAAAAAADGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAACGAAAAAABGAAAAAAFGAAAAAAFGAAAAAAEGAAAAAAAGAAAAAAEGAAAAAAEGAAAAAAEGAAAAAAGGAAAAAABGAAAAAAFGAAAAAAGGAAAAAACGAAAAAABGAAAAAADGAAAAAAGGAAAAAAAGAAAAAACGAAAAAADGAAAAAAEGAAAAAABGAAAAAAGGAAAAAAAGAAAAAABGAAAAAAFGAAAAAADGAAAAAABGAAAAAADGAAAAAACGAAAAAABGAAAAAAGGAAAAAAGGAAAAAADGAAAAAACGAAAAAAEGAAAAAAFGAAAAAAGGAAAAAAEGAAAAAAGGAAAAAABGAAAAAADGAAAAAAGGAAAAAAEGAAAAAAGGAAAAAABGAAAAAAFGAAAAAAAGAAAAAAGGAAAAAABGAAAAAAEGAAAAAABGAAAAAAAGAAAAAAFGAAAAAAEGAAAAAAFGAAAAAABGAAAAAABGAAAAAABGAAAAAAFGAAAAAABGAAAAAABGAAAAAABGAAAAAACGAAAAAAAGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAADGAAAAAABGAAAAAADGAAAAAAAGAAAAAAEGAAAAAACGAAAAAAAGAAAAAAGGAAAAAABGAAAAAAAGAAAAAADGAAAAAACGAAAAAABNgAAAAAAQAAAAAAAeQAAAAAAGAAAAAAAGAAAAAABGAAAAAAEGAAAAAAAGAAAAAAFGAAAAAACGAAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAEGAAAAAADIgAAAAADIgAAAAADeQAAAAAAGAAAAAABGAAAAAADGAAAAAACGAAAAAAGGAAAAAAEGAAAAAACGAAAAAAEeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAGAAAAAACGAAAAAAEIgAAAAACIgAAAAABeQAAAAAAGAAAAAACGAAAAAAFGAAAAAAFGAAAAAAEGAAAAAAGGAAAAAABGAAAAAAFeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAGAAAAAAGGAAAAAAG version: 6 1,0: ind: 1,0 - tiles: FwAAAAACGAAAAAAEeQAAAAAAJgAAAAAAJgAAAAACJgAAAAACJgAAAAABGAAAAAAFGAAAAAAAGAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAFGAAAAAAAGAAAAAAEFwAAAAAAGAAAAAAAIgAAAAACJgAAAAADIgAAAAAAIgAAAAAAIgAAAAABGAAAAAAAGAAAAAAFGAAAAAAFGAAAAAACGAAAAAAGGAAAAAAEGAAAAAAAGAAAAAAGGAAAAAAEFwAAAAAEGAAAAAAEIgAAAAACJgAAAAADIgAAAAABIgAAAAABIgAAAAADGAAAAAAEGAAAAAAEGAAAAAAGGAAAAAAGGAAAAAAAGAAAAAAEGAAAAAAEGAAAAAAFGAAAAAAFFwAAAAAAGAAAAAAEeQAAAAAAJgAAAAADIgAAAAADIgAAAAADIgAAAAAAGAAAAAACGAAAAAABGAAAAAADGAAAAAAEGAAAAAADGAAAAAADGAAAAAADGAAAAAAFIgAAAAACFwAAAAAHFwAAAAAHeQAAAAAAJgAAAAACJgAAAAADJgAAAAADJgAAAAADGAAAAAAAGAAAAAACGAAAAAAAGAAAAAAFGAAAAAAEGAAAAAAFGAAAAAAAGAAAAAAEeQAAAAAAFwAAAAAEFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAEGAAAAAADGAAAAAAEGAAAAAAFGAAAAAABGAAAAAAEGAAAAAAFeQAAAAAAJgAAAAAAFwAAAAAGFwAAAAAFIgAAAAACJgAAAAACIgAAAAABJgAAAAAAIgAAAAADGAAAAAACGAAAAAAEGAAAAAADGAAAAAACGAAAAAAEGAAAAAAAGAAAAAADeQAAAAAAJgAAAAAAFwAAAAAHFwAAAAACIgAAAAACJgAAAAAAIgAAAAACJgAAAAACIgAAAAAAGAAAAAABGAAAAAADGAAAAAAEGAAAAAAFGAAAAAACGAAAAAADGAAAAAAGeQAAAAAAJgAAAAADFwAAAAACGAAAAAAAFwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAADGAAAAAAEGAAAAAABGAAAAAABGAAAAAAFGAAAAAABGAAAAAADeQAAAAAAJgAAAAAAFwAAAAAAGAAAAAAGFwAAAAADFwAAAAAGGAAAAAAGGAAAAAAAGAAAAAADGAAAAAAEGAAAAAAGGAAAAAACGAAAAAAFGAAAAAAFGAAAAAAEGAAAAAADeQAAAAAAJgAAAAAAFwAAAAAAFwAAAAACFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAGGAAAAAAAGAAAAAACGAAAAAACGAAAAAABeQAAAAAAFwAAAAABFwAAAAAEeQAAAAAAJgAAAAABJgAAAAABJgAAAAAAJgAAAAADJgAAAAABJgAAAAACJgAAAAABeQAAAAAAGAAAAAADGAAAAAAGGAAAAAACGAAAAAAAGAAAAAAGFwAAAAAEFwAAAAAFeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJgAAAAABJgAAAAACJgAAAAADJgAAAAACeQAAAAAAGAAAAAABGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAAEeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJgAAAAADJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAGAAAAAABeQAAAAAAJgAAAAACJgAAAAACJgAAAAAAFwAAAAACFwAAAAADeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJgAAAAACJgAAAAABJgAAAAADJgAAAAACeQAAAAAAGAAAAAAEeQAAAAAAJgAAAAADIgAAAAACIgAAAAADGAAAAAAGFwAAAAAEeQAAAAAAJgAAAAACJgAAAAAAJgAAAAABJgAAAAACJgAAAAACJgAAAAABJgAAAAACeQAAAAAAGAAAAAAAeQAAAAAAJgAAAAADIgAAAAAAIgAAAAAB + tiles: FwAAAAAAGAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAADJgAAAAACGAAAAAAFGAAAAAAAGAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAABGAAAAAACGAAAAAACFwAAAAAGGAAAAAACIgAAAAABJgAAAAAAIgAAAAABIgAAAAACIgAAAAABGAAAAAAEGAAAAAAFGAAAAAACGAAAAAADGAAAAAAAGAAAAAAFGAAAAAABGAAAAAAFGAAAAAABFwAAAAAHGAAAAAAFIgAAAAACJgAAAAACIgAAAAAAIgAAAAAAIgAAAAADGAAAAAAAGAAAAAAEGAAAAAAEGAAAAAADGAAAAAADGAAAAAAAGAAAAAADGAAAAAACGAAAAAACFwAAAAAHGAAAAAAFeQAAAAAAJgAAAAACIgAAAAABIgAAAAACIgAAAAAAGAAAAAAEGAAAAAAFGAAAAAAGGAAAAAAFGAAAAAAEGAAAAAABGAAAAAACGAAAAAACIgAAAAABFwAAAAABFwAAAAAHeQAAAAAAJgAAAAAAJgAAAAADJgAAAAAAJgAAAAABGAAAAAAFGAAAAAABGAAAAAADGAAAAAADGAAAAAAFGAAAAAAEGAAAAAABGAAAAAADeQAAAAAAFwAAAAAGFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAACGAAAAAAAGAAAAAAGGAAAAAAGGAAAAAAFGAAAAAABGAAAAAACeQAAAAAAJgAAAAAAFwAAAAAGFwAAAAAFIgAAAAAAJgAAAAAAIgAAAAADJgAAAAAAIgAAAAACGAAAAAAGGAAAAAAFGAAAAAAFGAAAAAAAGAAAAAACGAAAAAADGAAAAAADeQAAAAAAJgAAAAABFwAAAAAEFwAAAAAFIgAAAAADJgAAAAAAIgAAAAAAJgAAAAADIgAAAAABGAAAAAAFGAAAAAADGAAAAAAAGAAAAAABGAAAAAAGGAAAAAABGAAAAAAEeQAAAAAAJgAAAAABFwAAAAAGGAAAAAAGFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAEGAAAAAAEGAAAAAAEGAAAAAAFGAAAAAABGAAAAAABGAAAAAAGeQAAAAAAJgAAAAAAFwAAAAACGAAAAAAEFwAAAAAFFwAAAAACGAAAAAAGGAAAAAABGAAAAAADGAAAAAACGAAAAAADGAAAAAAGGAAAAAADGAAAAAACGAAAAAAFGAAAAAAEeQAAAAAAJgAAAAAAFwAAAAAGFwAAAAAHFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAADGAAAAAAEGAAAAAADGAAAAAAAeQAAAAAAFwAAAAACFwAAAAAAeQAAAAAAJgAAAAAAJgAAAAACJgAAAAACJgAAAAAAJgAAAAAAJgAAAAABJgAAAAAAeQAAAAAAGAAAAAAEGAAAAAABGAAAAAAFGAAAAAABGAAAAAABFwAAAAABFwAAAAAGeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJgAAAAAAJgAAAAABJgAAAAADJgAAAAACeQAAAAAAGAAAAAADGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAGeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJgAAAAAAJgAAAAABJgAAAAACJgAAAAACeQAAAAAAGAAAAAAAeQAAAAAAJgAAAAAAJgAAAAACJgAAAAAAFwAAAAAEFwAAAAADeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJgAAAAABJgAAAAABJgAAAAADJgAAAAAAeQAAAAAAGAAAAAAGeQAAAAAAJgAAAAADIgAAAAAAIgAAAAADGAAAAAABFwAAAAACeQAAAAAAJgAAAAABJgAAAAAAJgAAAAACJgAAAAACJgAAAAABJgAAAAADJgAAAAADeQAAAAAAGAAAAAAFeQAAAAAAJgAAAAAAIgAAAAAAIgAAAAAD version: 6 1,1: ind: 1,1 - tiles: FwAAAAADFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACJgAAAAAAJgAAAAACJgAAAAACeQAAAAAAGAAAAAABeQAAAAAAJgAAAAACIgAAAAAAIgAAAAADFwAAAAAEFwAAAAADFwAAAAAHFwAAAAAAFwAAAAACeQAAAAAAJgAAAAAAJgAAAAABJgAAAAACJgAAAAAAeQAAAAAAGAAAAAACeQAAAAAAJgAAAAACIgAAAAABIgAAAAADFwAAAAABFwAAAAACFwAAAAAHFwAAAAAGFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAADeQAAAAAAJgAAAAAATwAAAAAATwAAAAAAFwAAAAACFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAAHFwAAAAACFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAABGAAAAAAEGAAAAAADeQAAAAAAJgAAAAABTwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAAEGAAAAAAFGAAAAAADGAAAAAAEGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAFwAAAAAHFwAAAAAGGAAAAAAEGAAAAAACGAAAAAAFGAAAAAAAGAAAAAAEGAAAAAAFGAAAAAAAGAAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAGAAAAAAFFwAAAAAFFwAAAAAAGAAAAAAEGAAAAAAEGAAAAAADGAAAAAADGAAAAAACGAAAAAAFGAAAAAAEdgAAAAACdgAAAAACdgAAAAABeQAAAAAAeAAAAAAAeQAAAAAAGAAAAAAFFwAAAAAGFwAAAAABFwAAAAAHGAAAAAAGGAAAAAAEGAAAAAAAGAAAAAABGAAAAAAFGAAAAAAAdgAAAAABdgAAAAABdgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAADFwAAAAAGFwAAAAACFwAAAAACGAAAAAAEGAAAAAAAGAAAAAAGGAAAAAAGGAAAAAAAGAAAAAAEdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAGFwAAAAABFwAAAAAHFwAAAAADFwAAAAACGAAAAAAFGAAAAAADGAAAAAADGAAAAAADGAAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAAFwAAAAACFwAAAAAAFwAAAAADFwAAAAAFGAAAAAAGGAAAAAAFGAAAAAAFGAAAAAAGGAAAAAABeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAEFwAAAAACFwAAAAAGFwAAAAAEFwAAAAACGAAAAAAFGAAAAAACGAAAAAAFGAAAAAACGAAAAAAEdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAEFwAAAAAAFwAAAAABFwAAAAAFFwAAAAAGFwAAAAAAFwAAAAAAFwAAAAABGAAAAAAFGAAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAFFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAAAFwAAAAAEGAAAAAADeQAAAAAAGAAAAAAGGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAFFwAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAGAAAAAACGAAAAAABEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAHFwAAAAABFwAAAAADFwAAAAAFFwAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAGAAAAAAD + tiles: FwAAAAADFwAAAAAHeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACJgAAAAABJgAAAAACJgAAAAAAeQAAAAAAGAAAAAACeQAAAAAAJgAAAAAAIgAAAAABIgAAAAADFwAAAAAHFwAAAAADFwAAAAAFFwAAAAAFFwAAAAACeQAAAAAAJgAAAAADJgAAAAABJgAAAAAAJgAAAAADeQAAAAAAGAAAAAACeQAAAAAAJgAAAAADIgAAAAACIgAAAAADFwAAAAAAFwAAAAACFwAAAAACFwAAAAAFFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAEeQAAAAAAJgAAAAACTwAAAAAATwAAAAAAFwAAAAACFwAAAAABFwAAAAAAFwAAAAACFwAAAAAGFwAAAAACFwAAAAABFwAAAAAEFwAAAAADFwAAAAAFGAAAAAAEGAAAAAACeQAAAAAAJgAAAAAATwAAAAAATwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAABGAAAAAAGGAAAAAAAGAAAAAAGGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAFwAAAAAHFwAAAAACGAAAAAADGAAAAAADGAAAAAAEGAAAAAABGAAAAAADGAAAAAADGAAAAAABGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAGAAAAAACFwAAAAABFwAAAAAFGAAAAAACGAAAAAADGAAAAAAGGAAAAAAFGAAAAAAAGAAAAAAFGAAAAAABdgAAAAAAdgAAAAADdgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAGAAAAAAFFwAAAAAFFwAAAAABFwAAAAAAGAAAAAADGAAAAAACGAAAAAAFGAAAAAABGAAAAAADGAAAAAABdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAGGAAAAAADGAAAAAAEGAAAAAAEGAAAAAAAGAAAAAABGAAAAAADdgAAAAABdgAAAAABdgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAABGAAAAAACGAAAAAADGAAAAAABGAAAAAADGAAAAAAFdgAAAAABdgAAAAABdgAAAAABeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAFFwAAAAACFwAAAAAEFwAAAAAGFwAAAAACGAAAAAAEGAAAAAACGAAAAAACGAAAAAADGAAAAAADeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAFFwAAAAAGFwAAAAABFwAAAAAEFwAAAAADGAAAAAADGAAAAAABGAAAAAADGAAAAAABGAAAAAAAdgAAAAABdgAAAAADdgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAFFwAAAAACFwAAAAAFFwAAAAAAFwAAAAAHFwAAAAAAFwAAAAAGFwAAAAACGAAAAAAFGAAAAAAGdgAAAAABdgAAAAADdgAAAAACeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAHFwAAAAAHFwAAAAAEFwAAAAAGFwAAAAABFwAAAAAGGAAAAAAFeQAAAAAAGAAAAAADGAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAABFwAAAAACFwAAAAAAFwAAAAACFwAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAGAAAAAAGGAAAAAAFEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAACFwAAAAAEFwAAAAAGFwAAAAAGFwAAAAAEQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAGAAAAAAE version: 6 3,-4: ind: 3,-4 @@ -253,63 +256,63 @@ entities: version: 6 2,0: ind: 2,0 - tiles: IgAAAAAAIgAAAAADGAAAAAABGAAAAAACeQAAAAAAGAAAAAACGAAAAAABGAAAAAAFGAAAAAAGGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAACGAAAAAABGAAAAAAAGAAAAAAFGAAAAAAGGAAAAAAGGAAAAAAAGAAAAAAFGAAAAAAFGAAAAAAAGAAAAAAEGAAAAAAEGAAAAAABGAAAAAABGAAAAAAGGAAAAAAAGAAAAAABGAAAAAACGAAAAAAGGAAAAAAAGAAAAAAFGAAAAAAFGAAAAAABGAAAAAABGAAAAAAAGAAAAAAGGAAAAAADGAAAAAAAGAAAAAAGGAAAAAAGGAAAAAAGGAAAAAAFGAAAAAAFIgAAAAAAIgAAAAABIgAAAAABGAAAAAAFeQAAAAAAGAAAAAABGAAAAAAFGAAAAAAAGAAAAAADGAAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAGGAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAGGAAAAAABGAAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAGGAAAAAAFGAAAAAAAIgAAAAAAIgAAAAAAJgAAAAADeQAAAAAAJgAAAAAAJgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIgAAAAADIgAAAAAAJgAAAAADeQAAAAAAJgAAAAADIgAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABIgAAAAADJgAAAAAAJgAAAAACJgAAAAAAIgAAAAAAJgAAAAACeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAAAJgAAAAAAeQAAAAAAJgAAAAACJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAABJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAFGAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAFAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAFGAAAAAADGAAAAAAGGAAAAAAAGAAAAAABGAAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAACGAAAAAAAAAAAAAAAGAAAAAAEGAAAAAAEGAAAAAAAGAAAAAAAGAAAAAADGAAAAAAAGAAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAAFGAAAAAAFGAAAAAABGAAAAAABGAAAAAADGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAABGAAAAAACGAAAAAAGGAAAAAAFGAAAAAAFGAAAAAAEGAAAAAACGAAAAAAFGAAAAAAAGAAAAAACGAAAAAAGGAAAAAAAGAAAAAACJgAAAAAAJgAAAAACeQAAAAAAGAAAAAAGGAAAAAADGAAAAAABGAAAAAAAGAAAAAAGGAAAAAAGGAAAAAAGGAAAAAABGAAAAAAGGAAAAAAEGAAAAAABGAAAAAABGAAAAAAGIgAAAAACJgAAAAABeQAAAAAAGAAAAAAAGAAAAAADGAAAAAAGGAAAAAAFGAAAAAAAGAAAAAACGAAAAAAFGAAAAAAFGAAAAAACGAAAAAAAGAAAAAADGAAAAAAFGAAAAAAAIgAAAAACJgAAAAABeQAAAAAAGAAAAAAAGAAAAAAGGAAAAAADGAAAAAAAGAAAAAACGAAAAAADGAAAAAAFGAAAAAADGAAAAAABGAAAAAAEGAAAAAACGAAAAAABGAAAAAAD + tiles: IgAAAAADIgAAAAADGAAAAAADGAAAAAAEeQAAAAAAGAAAAAAAGAAAAAACGAAAAAAFGAAAAAAEGAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAGGAAAAAAGGAAAAAACGAAAAAAAGAAAAAACGAAAAAACGAAAAAABGAAAAAACGAAAAAADGAAAAAABGAAAAAAAGAAAAAAGGAAAAAAFGAAAAAACGAAAAAAEGAAAAAADGAAAAAAAGAAAAAACGAAAAAABGAAAAAACGAAAAAADGAAAAAACGAAAAAAAGAAAAAABGAAAAAADGAAAAAAFGAAAAAACGAAAAAAAGAAAAAAAGAAAAAABGAAAAAAGGAAAAAACGAAAAAADGAAAAAAFIgAAAAABIgAAAAABIgAAAAACGAAAAAAGeQAAAAAAGAAAAAAGGAAAAAABGAAAAAADGAAAAAAFGAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAABGAAAAAABGAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAGGAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAEGAAAAAAAGAAAAAAAIgAAAAACIgAAAAACJgAAAAADeQAAAAAAJgAAAAACJgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIgAAAAADIgAAAAACJgAAAAACeQAAAAAAJgAAAAABIgAAAAAAJgAAAAABeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABIgAAAAAAJgAAAAACJgAAAAADJgAAAAABIgAAAAABJgAAAAACeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADIgAAAAADJgAAAAACeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADIgAAAAADJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAADGAAAAAADGAAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAFAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAFGAAAAAAEGAAAAAADGAAAAAAFGAAAAAACGAAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAACGAAAAAAGAAAAAAAAGAAAAAABGAAAAAACGAAAAAADGAAAAAAFGAAAAAAAGAAAAAAEGAAAAAAEGAAAAAAFGAAAAAAGGAAAAAAAGAAAAAAEGAAAAAACGAAAAAACGAAAAAAGGAAAAAADGAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAACGAAAAAACGAAAAAAEGAAAAAAFGAAAAAADGAAAAAACGAAAAAADGAAAAAAGGAAAAAAEGAAAAAADGAAAAAACGAAAAAAGGAAAAAAFJgAAAAABJgAAAAAAeQAAAAAAGAAAAAAFGAAAAAAEGAAAAAAFGAAAAAACGAAAAAAGGAAAAAACGAAAAAADGAAAAAAFGAAAAAAGGAAAAAADGAAAAAADGAAAAAAFGAAAAAAFIgAAAAACJgAAAAACeQAAAAAAGAAAAAAAGAAAAAAFGAAAAAAAGAAAAAAFGAAAAAADGAAAAAADGAAAAAAFGAAAAAAFGAAAAAAEGAAAAAADGAAAAAAAGAAAAAAGGAAAAAAGIgAAAAACJgAAAAADeQAAAAAAGAAAAAAGGAAAAAAAGAAAAAACGAAAAAAGGAAAAAADGAAAAAABGAAAAAAFGAAAAAAFGAAAAAAEGAAAAAACGAAAAAAEGAAAAAADGAAAAAAA version: 6 3,0: ind: 3,0 - tiles: GAAAAAAFGAAAAAABGAAAAAAFGAAAAAAAGAAAAAAGGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAACGAAAAAABGAAAAAAAGAAAAAADGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAABGAAAAAADGAAAAAAEGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAEGAAAAAADGAAAAAAAGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAABGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAGGAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAEGAAAAAABGAAAAAACGAAAAAADGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAABGAAAAAAGGAAAAAAEGAAAAAAAGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GAAAAAACGAAAAAAGGAAAAAAEGAAAAAAGGAAAAAADGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAADGAAAAAABGAAAAAABGAAAAAAAGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAAAGAAAAAAGGAAAAAAFGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAACGAAAAAAGGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAAFGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAAAGAAAAAABGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAADGAAAAAAAGAAAAAACGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAADGAAAAAAAGAAAAAAFGAAAAAAAGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAAGGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAABGAAAAAAFGAAAAAABGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAAFGAAAAAACGAAAAAADGAAAAAACGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAAFGAAAAAAAGAAAAAAGGAAAAAAGGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAFGAAAAAABGAAAAAABGAAAAAACGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAGGAAAAAAGGAAAAAADGAAAAAAEGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAAEGAAAAAADGAAAAAAGGAAAAAAGGAAAAAAGGAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAABGAAAAAAFGAAAAAACGAAAAAACGAAAAAACGAAAAAAFeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAAGGAAAAAAAGAAAAAACGAAAAAAAGAAAAAAEGAAAAAAFAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAAFGAAAAAAEGAAAAAAEGAAAAAACGAAAAAABGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAAFGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAEGAAAAAAAGAAAAAAGGAAAAAAAGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAACGAAAAAABGAAAAAAEGAAAAAAAGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAABGAAAAAAGGAAAAAAAGAAAAAACGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAACGAAAAAAEGAAAAAAGGAAAAAAFGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAAFGAAAAAAFGAAAAAAAGAAAAAABGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAACGAAAAAAAGAAAAAADGAAAAAAEGAAAAAAAGAAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAAGGAAAAAAEGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAFeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAAEGAAAAAAAGAAAAAAGGAAAAAAGGAAAAAADGAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAAFGAAAAAABGAAAAAAEGAAAAAAGGAAAAAACGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: IgAAAAACJgAAAAAAeQAAAAAAGAAAAAACGAAAAAAEGAAAAAABGAAAAAAAGAAAAAABGAAAAAAEGAAAAAABGAAAAAADGAAAAAAEGAAAAAAFGAAAAAAAGAAAAAAEGAAAAAAEIgAAAAADJgAAAAAAeQAAAAAAGAAAAAAEGAAAAAABGAAAAAAGGAAAAAAFGAAAAAAGGAAAAAADGAAAAAAEGAAAAAAFGAAAAAAFGAAAAAAAGAAAAAABGAAAAAACGAAAAAAETwAAAAAAJgAAAAABeQAAAAAAGAAAAAACGAAAAAACGAAAAAAAGAAAAAACGAAAAAACGAAAAAAAGAAAAAAGGAAAAAADGAAAAAADGAAAAAAFGAAAAAABGAAAAAAEGAAAAAAETwAAAAAAJgAAAAADeQAAAAAAGAAAAAADGAAAAAAFGAAAAAAEGAAAAAABGAAAAAADGAAAAAAGGAAAAAAAGAAAAAAGGAAAAAAEGAAAAAABGAAAAAACGAAAAAAAGAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAFGAAAAAAFGAAAAAABGAAAAAACGAAAAAAAGAAAAAAGGAAAAAABGAAAAAAEGAAAAAACGAAAAAAFGAAAAAAEdgAAAAAAGAAAAAAFGAAAAAAFGAAAAAACGAAAAAAAGAAAAAACGAAAAAAEGAAAAAAEbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGAAAAAAFGAAAAAACGAAAAAADGAAAAAAFGAAAAAAFGAAAAAAEGAAAAAAFdgAAAAAAdgAAAAAAdgAAAAAAbAAAAAAAbAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGAAAAAAGGAAAAAACGAAAAAAAGAAAAAAAGAAAAAABGAAAAAABGAAAAAAAGAAAAAADdgAAAAAAbAAAAAAAbAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGAAAAAAFGAAAAAABGAAAAAADGAAAAAACGAAAAAAGGAAAAAABGAAAAAACGAAAAAAEGAAAAAAAbAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGAAAAAAGGAAAAAACGAAAAAAGGAAAAAAGGAAAAAACGAAAAAAGGAAAAAAAGAAAAAAGGAAAAAAFGAAAAAAFGAAAAAAAGAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAGAAAAAAAGAAAAAABGAAAAAACGAAAAAACGAAAAAABGAAAAAAEGAAAAAAEGAAAAAAFGAAAAAAGGAAAAAACGAAAAAACGAAAAAAFGAAAAAAGGAAAAAADGAAAAAAEGAAAAAABGAAAAAACGAAAAAAGGAAAAAAEGAAAAAABGAAAAAAAGAAAAAAGGAAAAAADGAAAAAAGGAAAAAACGAAAAAAGGAAAAAAFGAAAAAACGAAAAAAGGAAAAAAFGAAAAAAEGAAAAAAGGAAAAAAFGAAAAAAFGAAAAAADGAAAAAACGAAAAAAGGAAAAAAGGAAAAAADGAAAAAAEGAAAAAAAGAAAAAADGAAAAAABGAAAAAABGAAAAAADGAAAAAADGAAAAAAAGAAAAAAGAAAAAAAAGAAAAAAFGAAAAAADGAAAAAAFGAAAAAACGAAAAAAEGAAAAAACGAAAAAAAGAAAAAACGAAAAAAFGAAAAAACGAAAAAADGAAAAAAEGAAAAAAFGAAAAAABAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAABGAAAAAACGAAAAAAFGAAAAAACGAAAAAAEGAAAAAADGAAAAAAFGAAAAAABGAAAAAAEGAAAAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAAGGAAAAAABGAAAAAAEGAAAAAAEGAAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: IgAAAAABJgAAAAACeQAAAAAAGAAAAAAGGAAAAAAAGAAAAAABGAAAAAAGGAAAAAABGAAAAAABGAAAAAADGAAAAAABGAAAAAAGGAAAAAAAGAAAAAAEGAAAAAACGAAAAAACIgAAAAACJgAAAAACeQAAAAAAGAAAAAABGAAAAAACGAAAAAADGAAAAAAAGAAAAAAEGAAAAAAFGAAAAAAGGAAAAAADGAAAAAAGGAAAAAAGGAAAAAAEGAAAAAAFGAAAAAAETwAAAAAAJgAAAAADeQAAAAAAGAAAAAABGAAAAAAEGAAAAAAGGAAAAAABGAAAAAAFGAAAAAAAGAAAAAABGAAAAAAFGAAAAAABGAAAAAAEGAAAAAAAGAAAAAAGGAAAAAAATwAAAAAAJgAAAAACeQAAAAAAGAAAAAAGGAAAAAAGGAAAAAAFGAAAAAACGAAAAAAEGAAAAAAEGAAAAAAFGAAAAAAFGAAAAAACGAAAAAABGAAAAAAAGAAAAAABGAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAABGAAAAAABGAAAAAAFGAAAAAAGGAAAAAAEGAAAAAADGAAAAAADGAAAAAADGAAAAAAFGAAAAAADGAAAAAACGAAAAAABdgAAAAAAGAAAAAADGAAAAAABGAAAAAAAGAAAAAAEGAAAAAABGAAAAAACGAAAAAAGcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAAAdgAAAAADdgAAAAABdgAAAAAAGAAAAAAGGAAAAAAAGAAAAAAAGAAAAAAEGAAAAAABGAAAAAACGAAAAAABdgAAAAABdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABGAAAAAABGAAAAAACGAAAAAAEGAAAAAADGAAAAAAEGAAAAAAAGAAAAAAGGAAAAAAEdgAAAAACeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADEwAAAAAFdgAAAAAAdgAAAAAAGAAAAAABGAAAAAAAGAAAAAAFGAAAAAACGAAAAAAGGAAAAAACGAAAAAABGAAAAAADGAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACEwAAAAAAdgAAAAABGAAAAAACGAAAAAAFGAAAAAAAGAAAAAABGAAAAAAAGAAAAAAFGAAAAAACGAAAAAAFGAAAAAAFGAAAAAABGAAAAAADGAAAAAACdgAAAAADdgAAAAACdgAAAAACGAAAAAAEGAAAAAAEGAAAAAAFGAAAAAAEGAAAAAADGAAAAAACGAAAAAACGAAAAAAGGAAAAAABGAAAAAAGGAAAAAAFGAAAAAABGAAAAAAEGAAAAAAFGAAAAAAFGAAAAAACGAAAAAADGAAAAAACGAAAAAAEGAAAAAAGGAAAAAAAGAAAAAACGAAAAAAGGAAAAAAFGAAAAAAAGAAAAAAAGAAAAAABGAAAAAAGGAAAAAAGGAAAAAACGAAAAAAFGAAAAAAEGAAAAAACGAAAAAAEGAAAAAAAGAAAAAAEGAAAAAABGAAAAAACGAAAAAAEGAAAAAAGGAAAAAADGAAAAAAEGAAAAAAFGAAAAAAFGAAAAAAFGAAAAAAAGAAAAAACGAAAAAABAAAAAAAAGAAAAAACGAAAAAABGAAAAAAGGAAAAAAEGAAAAAAEGAAAAAAFGAAAAAAEGAAAAAAAGAAAAAAFGAAAAAACGAAAAAABGAAAAAAFGAAAAAADGAAAAAAEAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAGGAAAAAACGAAAAAABGAAAAAAAGAAAAAADGAAAAAACGAAAAAAFGAAAAAABGAAAAAAGGAAAAAAGeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAADGAAAAAAFGAAAAAAAGAAAAAAEGAAAAAAGeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: GAAAAAADGAAAAAABGAAAAAACGAAAAAACGAAAAAADGAAAAAAEGAAAAAADAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAAEGAAAAAAFGAAAAAAAGAAAAAAGGAAAAAACGAAAAAAFeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAACGAAAAAADGAAAAAAFGAAAAAAGGAAAAAABGAAAAAAGAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAGGAAAAAABGAAAAAAAGAAAAAAGGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGAAAAAAAGAAAAAACGAAAAAAFGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGAAAAAAFGAAAAAABGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAGAAAAAAEGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAATQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAAFeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GAAAAAAAGAAAAAABGAAAAAADGAAAAAAAGAAAAAAGGAAAAAABGAAAAAACAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAEGAAAAAAGGAAAAAACGAAAAAAFGAAAAAACGAAAAAAEGAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAAGGAAAAAAFGAAAAAADGAAAAAABGAAAAAAEGAAAAAAGAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAABGAAAAAABGAAAAAADGAAAAAACGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAADGAAAAAAFGAAAAAADGAAAAAAEGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAACGAAAAAADGAAAAAAAGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAADGAAAAAADGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAFTQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABTQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAACeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: QAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAFFwAAAAADFwAAAAAFFwAAAAABeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAGAAAAAAAGAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAEFwAAAAAHFwAAAAADFwAAAAAGFwAAAAAEeQAAAAAAFwAAAAACFwAAAAAEGAAAAAAEGAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAEFwAAAAAEFwAAAAADFwAAAAAEFwAAAAAHFwAAAAAEFwAAAAABFwAAAAAFGAAAAAAGGAAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAFwAAAAACFwAAAAAHFwAAAAAEFwAAAAAGFwAAAAABFwAAAAAAFwAAAAAEFwAAAAADGAAAAAAFGAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAAFwAAAAAFFwAAAAAFFwAAAAADFwAAAAAGFwAAAAABFwAAAAAEGAAAAAACGAAAAAAAFwAAAAADFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAADFwAAAAABFwAAAAAAFwAAAAADFwAAAAAHFwAAAAADFwAAAAABFwAAAAAAFwAAAAADGAAAAAAGFwAAAAAAFwAAAAAFFwAAAAAFFwAAAAADFwAAAAADFwAAAAAGFwAAAAAEFwAAAAADFwAAAAAGFwAAAAAFFwAAAAAFFwAAAAABFwAAAAABFwAAAAAAFwAAAAAFGAAAAAAGFwAAAAAGFwAAAAABFwAAAAAFFwAAAAAHFwAAAAAGFwAAAAAGFwAAAAABFwAAAAADFwAAAAAFFwAAAAAFFwAAAAAAFwAAAAAGFwAAAAADFwAAAAABFwAAAAADGAAAAAAGFwAAAAAFFwAAAAAHFwAAAAAFFwAAAAABFwAAAAAEFwAAAAADFwAAAAAEFwAAAAAHFwAAAAAAFwAAAAAGFwAAAAABFwAAAAAGFwAAAAADFwAAAAAHFwAAAAAGGAAAAAABFwAAAAADFwAAAAAEFwAAAAAGFwAAAAACFwAAAAADFwAAAAAGFwAAAAAAFwAAAAABFwAAAAACFwAAAAAEFwAAAAAGFwAAAAAFFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAEFwAAAAABFwAAAAAEFwAAAAAGFwAAAAACFwAAAAAEFwAAAAAFFwAAAAAHFwAAAAAEFwAAAAAHFwAAAAAGFwAAAAAHFwAAAAAEFwAAAAAFFwAAAAAFFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAAHFwAAAAADFwAAAAAAFwAAAAAGFwAAAAAEFwAAAAACFwAAAAABFwAAAAAEFwAAAAAHFwAAAAABFwAAAAAHFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAGFwAAAAABFwAAAAAGFwAAAAADFwAAAAAHJgAAAAACJgAAAAABJgAAAAABeQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAFwAAAAAEFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADJgAAAAADJgAAAAABJgAAAAACJgAAAAAAJgAAAAABJgAAAAACJgAAAAADJgAAAAAAeQAAAAAAFwAAAAADFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACJgAAAAAAJgAAAAACeQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAFwAAAAAEFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: QAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAAAFwAAAAADFwAAAAABFwAAAAACeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAGAAAAAAEGAAAAAAGEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAACFwAAAAADFwAAAAADFwAAAAAHFwAAAAACeQAAAAAAFwAAAAAGFwAAAAAGGAAAAAAFGAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFwAAAAADFwAAAAACFwAAAAAGFwAAAAADFwAAAAAGFwAAAAAHFwAAAAAHFwAAAAAHGAAAAAAFGAAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAFwAAAAAGFwAAAAACFwAAAAAAFwAAAAAHFwAAAAAFFwAAAAAEFwAAAAADFwAAAAADGAAAAAAAGAAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAHFwAAAAABFwAAAAADFwAAAAADFwAAAAAFFwAAAAAFFwAAAAAEGAAAAAAFGAAAAAAGFwAAAAAEFwAAAAAGFwAAAAAFFwAAAAACFwAAAAAFFwAAAAAGFwAAAAAEFwAAAAAFFwAAAAACFwAAAAAGFwAAAAAGFwAAAAAFFwAAAAAHFwAAAAACFwAAAAAGGAAAAAAEFwAAAAAAFwAAAAAAFwAAAAAHFwAAAAAHFwAAAAACFwAAAAAFFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAAGFwAAAAADFwAAAAACFwAAAAAFFwAAAAAGFwAAAAAFGAAAAAAAFwAAAAABFwAAAAAGFwAAAAADFwAAAAAHFwAAAAAAFwAAAAAGFwAAAAADFwAAAAAHFwAAAAAAFwAAAAABFwAAAAACFwAAAAAGFwAAAAACFwAAAAAGFwAAAAADGAAAAAAAFwAAAAACFwAAAAAAFwAAAAADFwAAAAABFwAAAAACFwAAAAACFwAAAAAHFwAAAAAFFwAAAAAHFwAAAAACFwAAAAAAFwAAAAABFwAAAAACFwAAAAAHFwAAAAADGAAAAAAAFwAAAAAHFwAAAAAFFwAAAAAGFwAAAAADFwAAAAAHFwAAAAAGFwAAAAABFwAAAAAHFwAAAAABFwAAAAAFFwAAAAABFwAAAAAHFwAAAAAEFwAAAAADFwAAAAAAFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAAHFwAAAAADFwAAAAAEFwAAAAAFFwAAAAACFwAAAAAAFwAAAAABFwAAAAAFFwAAAAAEFwAAAAAGFwAAAAACFwAAAAAEFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAADFwAAAAAHFwAAAAAEFwAAAAABFwAAAAABFwAAAAABFwAAAAAHFwAAAAAFFwAAAAAHFwAAAAACFwAAAAAAFwAAAAACFwAAAAAFFwAAAAAAFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAEFwAAAAACFwAAAAADFwAAAAAHFwAAAAABJgAAAAACJgAAAAAAJgAAAAAAeQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAFwAAAAAEFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAAAJgAAAAABJgAAAAACJgAAAAABJgAAAAABJgAAAAACJgAAAAAAJgAAAAABeQAAAAAAFwAAAAADFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADJgAAAAACeQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAFwAAAAAGFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 0,2: ind: 0,2 - tiles: SwAAAAABJgAAAAACJgAAAAACJgAAAAADJgAAAAADJgAAAAABJgAAAAABeQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAeQAAAAAAJgAAAAACJgAAAAACQAAAAAAAQAAAAAAASwAAAAABSwAAAAAASwAAAAABSwAAAAABSwAAAAAASwAAAAABSwAAAAABeQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAeQAAAAAAIgAAAAACIgAAAAADeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAABIgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADIgAAAAACeQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAAFwAAAAACFwAAAAAGFwAAAAAFFwAAAAABFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAABFwAAAAAEFwAAAAAAFwAAAAAGFwAAAAACFwAAAAABFwAAAAAAFwAAAAAFFwAAAAAFeQAAAAAAeQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAFwAAAAADFwAAAAAAFwAAAAAHFwAAAAABFwAAAAACFwAAAAAHFwAAAAABFwAAAAAGFwAAAAAAFwAAAAACFwAAAAAGeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAFwAAAAAGFwAAAAAAFwAAAAAFFwAAAAAEFwAAAAAHFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAAEFwAAAAABFwAAAAAHeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAFwAAAAAEFwAAAAAHFwAAAAAFFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAGFwAAAAAHFwAAAAACFwAAAAAFFwAAAAABeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAFwAAAAABFwAAAAAHFwAAAAACFwAAAAAAFwAAAAAHFwAAAAAGFwAAAAADFwAAAAAEFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAADFwAAAAAEFwAAAAAGFwAAAAAHFwAAAAACFwAAAAADFwAAAAAHFwAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFwAAAAAFFwAAAAAHFwAAAAAAFwAAAAACFwAAAAAGFwAAAAAAFwAAAAADFwAAAAABFwAAAAAHFwAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABFwAAAAAAFwAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAGeQAAAAAAJgAAAAABJgAAAAACJgAAAAADJgAAAAACHgAAAAACJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADeQAAAAAAJgAAAAADJgAAAAAAJgAAAAADJgAAAAABHgAAAAAAJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAJgAAAAACJgAAAAADJgAAAAACJgAAAAACHgAAAAABJgAAAAAB + tiles: SwAAAAACJgAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAABJgAAAAADeQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAeQAAAAAAJgAAAAAAJgAAAAADQAAAAAAAQAAAAAAASwAAAAABSwAAAAABSwAAAAABSwAAAAACSwAAAAADSwAAAAABSwAAAAADeQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAeQAAAAAAIgAAAAACIgAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAACIgAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABIgAAAAADeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAGFwAAAAACFwAAAAAFFwAAAAABFwAAAAAAFwAAAAAEFwAAAAAFFwAAAAAFFwAAAAADFwAAAAABFwAAAAAGFwAAAAACFwAAAAAGFwAAAAAAFwAAAAABFwAAAAADFwAAAAACeQAAAAAAeQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAHFwAAAAAFFwAAAAAAFwAAAAAAFwAAAAADFwAAAAADFwAAAAABFwAAAAAHFwAAAAABFwAAAAACFwAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAFwAAAAABFwAAAAACFwAAAAAFFwAAAAAAFwAAAAADFwAAAAADFwAAAAACFwAAAAACFwAAAAADFwAAAAAHFwAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAFwAAAAACFwAAAAAAFwAAAAADFwAAAAAAFwAAAAABFwAAAAAAFwAAAAABFwAAAAAEFwAAAAAEFwAAAAAHFwAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAFwAAAAAEFwAAAAAHFwAAAAACFwAAAAADFwAAAAAEFwAAAAABFwAAAAACFwAAAAAEFwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAEFwAAAAAFFwAAAAAAFwAAAAABFwAAAAACFwAAAAAEFwAAAAAFFwAAAAAEeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAFwAAAAAGFwAAAAAEFwAAAAAGFwAAAAADFwAAAAABFwAAAAAAFwAAAAADFwAAAAACFwAAAAAAFwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAACFwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFFwAAAAACeQAAAAAAJgAAAAADJgAAAAAAJgAAAAADJgAAAAADHgAAAAADJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAeQAAAAAAJgAAAAABJgAAAAADJgAAAAADJgAAAAACHgAAAAADJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAJgAAAAADJgAAAAAAJgAAAAABJgAAAAABHgAAAAABJgAAAAAB version: 6 -1,2: ind: -1,2 - tiles: FgAAAAABFgAAAAADFgAAAAAAFwAAAAACFwAAAAAEFwAAAAADFwAAAAAAFwAAAAAEFwAAAAACFwAAAAAEFwAAAAAGFwAAAAADFwAAAAADeQAAAAAAeAAAAAAAeQAAAAAANAAAAAAANAAAAAAAeQAAAAAAFwAAAAAGFwAAAAACFwAAAAACFwAAAAACFwAAAAAGFwAAAAADFwAAAAAHFwAAAAAFFwAAAAADFwAAAAAAeQAAAAAAeAAAAAAAeQAAAAAANAAAAAAANAAAAAAAFgAAAAABFgAAAAAAFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEeQAAAAAAeAAAAAAAeQAAAAAANAAAAAACNAAAAAAANAAAAAADFgAAAAAGFwAAAAADeQAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAADMwAAAAADeQAAAAAAFwAAAAAFeQAAAAAAeAAAAAAAeAAAAAAANQAAAAACNQAAAAADNAAAAAABFgAAAAADFgAAAAAAMwAAAAACMwAAAAADNAAAAAADNAAAAAAANAAAAAAAMwAAAAAAeQAAAAAAFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAANQAAAAABNQAAAAABNAAAAAAAFgAAAAAGFgAAAAAAeQAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACeQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAAHNQAAAAAANQAAAAAANAAAAAADFgAAAAAAFgAAAAACFgAAAAAAeQAAAAAAeQAAAAAAMwAAAAACMwAAAAABeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAAGFwAAAAAFFwAAAAAFNQAAAAADNQAAAAACNAAAAAAAFgAAAAACFgAAAAADFgAAAAAEeQAAAAAAFwAAAAADFwAAAAAHFwAAAAAHFwAAAAADFwAAAAADFwAAAAABFwAAAAAFFwAAAAAAFwAAAAAHNAAAAAABNAAAAAACNAAAAAABFgAAAAADFgAAAAADFgAAAAACeQAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAADFwAAAAACFwAAAAABFwAAAAABFwAAAAADFwAAAAACMwAAAAADMwAAAAACMwAAAAACMwAAAAADMwAAAAADFgAAAAAAeQAAAAAANQAAAAADNQAAAAAANQAAAAACNQAAAAAANQAAAAACNAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: FgAAAAABFgAAAAABFgAAAAAFFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAADFwAAAAAAFwAAAAAGFwAAAAABFwAAAAAHFwAAAAAAFwAAAAAEeQAAAAAAeAAAAAAAeQAAAAAANAAAAAACNAAAAAAAeQAAAAAAFwAAAAAGFwAAAAAAFwAAAAADFwAAAAAHFwAAAAABFwAAAAAAFwAAAAAEFwAAAAAEFwAAAAAAFwAAAAAHeQAAAAAAeAAAAAAAeQAAAAAANAAAAAAANAAAAAAAFgAAAAACFgAAAAACFwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAeQAAAAAAeAAAAAAAeQAAAAAANAAAAAACNAAAAAAANAAAAAADFgAAAAAEFwAAAAAHeQAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAACMwAAAAABeQAAAAAAFwAAAAADeQAAAAAAeAAAAAAAeAAAAAAANQAAAAABNQAAAAACNAAAAAACFgAAAAACFgAAAAACMwAAAAACMwAAAAABNAAAAAAANAAAAAACNAAAAAADMwAAAAABeQAAAAAAFwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAANQAAAAACNQAAAAABNAAAAAACFgAAAAACFgAAAAAGeQAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAMwAAAAAAeQAAAAAAFwAAAAAHFwAAAAABFwAAAAAEFwAAAAAHNQAAAAAANQAAAAACNAAAAAADFgAAAAABFgAAAAAFFgAAAAADeQAAAAAAeQAAAAAAMwAAAAABMwAAAAAAeQAAAAAAeQAAAAAAFwAAAAABFwAAAAAEFwAAAAABFwAAAAACNQAAAAABNQAAAAABNAAAAAACFgAAAAAEKgAAAAAAFgAAAAABeQAAAAAAFwAAAAAHFwAAAAAHFwAAAAAAFwAAAAABFwAAAAAEFwAAAAAEFwAAAAABFwAAAAAEFwAAAAACNAAAAAACNAAAAAACNAAAAAAAewAAAAAAKgAAAAAAewAAAAAAFgAAAAACFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAAAFwAAAAAHFwAAAAABFwAAAAAAFwAAAAABFwAAAAAAMwAAAAADMwAAAAADMwAAAAABewAAAAAAKgAAAAAAewAAAAAAeQAAAAAANQAAAAABNQAAAAAANQAAAAADNQAAAAADNQAAAAACNAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAewAAAAAAewAAAAAAewAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 2,2: ind: 2,2 - tiles: GAAAAAAEGAAAAAAEGAAAAAAAGAAAAAABGAAAAAAAGAAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAACGAAAAAAEGAAAAAACGAAAAAAAGAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAAAGAAAAAACGAAAAAACGAAAAAABGAAAAAAAGAAAAAACGAAAAAABGAAAAAAFGAAAAAABeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAGGAAAAAAAGAAAAAAFGAAAAAACGAAAAAADGAAAAAABGAAAAAADGAAAAAABGAAAAAABGAAAAAAEeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAEGAAAAAABGAAAAAAAGAAAAAAGGAAAAAAAGAAAAAAEGAAAAAADGAAAAAAGGAAAAAACGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAAAGAAAAAADGAAAAAADGAAAAAAFGAAAAAABGAAAAAAGGAAAAAACGAAAAAAEGAAAAAACGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAAGGAAAAAABGAAAAAAGGAAAAAAEGAAAAAAFGAAAAAAAGAAAAAAFGAAAAAAGGAAAAAAGGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAACGAAAAAABGAAAAAAFGAAAAAAEGAAAAAAAGAAAAAADGAAAAAADGAAAAAAEGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAADGAAAAAADGAAAAAAEGAAAAAAAGAAAAAADGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAGAAAAAAGGAAAAAAEGAAAAAADGAAAAAACGAAAAAACGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAGAAAAAABGAAAAAADGAAAAAAAGAAAAAAFGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAGGAAAAAAFGAAAAAAGGAAAAAADAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAABGAAAAAADGAAAAAAAGAAAAAAEGAAAAAADGAAAAAAEGAAAAAADGAAAAAAEeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAFGAAAAAADGAAAAAAAGAAAAAAFGAAAAAADGAAAAAAEGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAGGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAGGAAAAAACGAAAAAABGAAAAAAFGAAAAAAGGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAGGAAAAAADGAAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAACGAAAAAAFGAAAAAAEGAAAAAADGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAADGAAAAAACGAAAAAAEGAAAAAAFGAAAAAAEGAAAAAAGGAAAAAACGAAAAAAFGAAAAAACeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAAAGAAAAAACGAAAAAAEGAAAAAABGAAAAAADGAAAAAAFGAAAAAACGAAAAAAGGAAAAAAFGAAAAAAEeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAADGAAAAAAAGAAAAAACGAAAAAAAGAAAAAADGAAAAAACGAAAAAAAGAAAAAABGAAAAAAGGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAEGAAAAAADGAAAAAAEGAAAAAACGAAAAAAAGAAAAAAEGAAAAAAGGAAAAAACGAAAAAAEGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAEGAAAAAAGGAAAAAAEGAAAAAACGAAAAAAEGAAAAAABGAAAAAAFGAAAAAAAGAAAAAAFGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAABGAAAAAAEGAAAAAABGAAAAAACGAAAAAAGGAAAAAABGAAAAAADGAAAAAADGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAFGAAAAAAFGAAAAAAAGAAAAAAAGAAAAAAGGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAGAAAAAABGAAAAAADGAAAAAADGAAAAAAEGAAAAAAAGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAGAAAAAAEGAAAAAAFGAAAAAAEGAAAAAABGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAFGAAAAAABGAAAAAAAGAAAAAABGAAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAABGAAAAAACGAAAAAAAGAAAAAAAGAAAAAAGGAAAAAACGAAAAAABGAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAEGAAAAAAEGAAAAAABGAAAAAAFGAAAAAADGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAADGAAAAAAAGAAAAAAAGAAAAAAGGAAAAAABGAAAAAAFGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAADGAAAAAAFGAAAAAAAGAAAAAABGAAAAAAGGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: eQAAAAAAFwAAAAAGGAAAAAAAGAAAAAAFGAAAAAAEGAAAAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAABFwAAAAAGGAAAAAAGGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAFwAAAAAGGAAAAAAGGAAAAAAAGAAAAAACGAAAAAACGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAAFwAAAAAAGAAAAAABGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAAFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADJgAAAAABJgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAACHgAAAAADHgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAABHgAAAAACHgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAHgAAAAAAHgAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAACFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAACJgAAAAABJgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAADHgAAAAABHgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAABHgAAAAABHgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAHgAAAAADHgAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHgAAAAADHgAAAAAATAAAAAADHgAAAAACHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAABJgAAAAACJgAAAAAAJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAJgAAAAADJgAAAAADJgAAAAABJgAAAAADJgAAAAACJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHgAAAAAAHgAAAAADTAAAAAAAHgAAAAABHgAAAAADHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAADJgAAAAADJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: eQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAABFgAAAAAGeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFgAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: eQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAAFgAAAAAFeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: FgAAAAAEFgAAAAAGeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFgAAAAAAeQAAAAAANAAAAAACMwAAAAAAMwAAAAABMwAAAAADNAAAAAABMwAAAAABFgAAAAACFgAAAAAFFgAAAAAGFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAABMwAAAAAAeQAAAAAAeQAAAAAANAAAAAAANAAAAAAAFgAAAAAAFgAAAAAFFgAAAAABFgAAAAACFgAAAAACFgAAAAAGFgAAAAADFgAAAAACFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAAGFgAAAAAGNAAAAAAANAAAAAAAFgAAAAADFgAAAAAFFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAANAAAAAAANAAAAAADNAAAAAADNAAAAAACNAAAAAABNAAAAAAANAAAAAACeQAAAAAAFgAAAAACFgAAAAADeQAAAAAANAAAAAAANAAAAAAANAAAAAAAeQAAAAAAFgAAAAAENAAAAAABNQAAAAACNQAAAAABNQAAAAACNQAAAAABNQAAAAAANQAAAAABeQAAAAAAFgAAAAABFgAAAAAAeQAAAAAANAAAAAABNAAAAAAANAAAAAAAMwAAAAABFgAAAAABNAAAAAACNQAAAAACNQAAAAACNQAAAAABNQAAAAACNQAAAAACNQAAAAAAeQAAAAAAFgAAAAABFgAAAAAGeQAAAAAANAAAAAADNAAAAAACNAAAAAAAeQAAAAAAFgAAAAAENAAAAAADNQAAAAAANQAAAAAANQAAAAABNQAAAAAANQAAAAACNQAAAAACeQAAAAAAFgAAAAABFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAENAAAAAADNQAAAAADNQAAAAAANQAAAAADNQAAAAACNQAAAAACNQAAAAACeQAAAAAAFgAAAAAEFgAAAAADFgAAAAADFgAAAAACFgAAAAAEFgAAAAAGFgAAAAAGFgAAAAAENAAAAAACNAAAAAABNAAAAAAANAAAAAAANAAAAAADNAAAAAACNAAAAAACeQAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAABFgAAAAAEMwAAAAABMwAAAAABMwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAADeQAAAAAAFgAAAAACFgAAAAABFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAEFgAAAAAGFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAADFgAAAAADFgAAAAAGFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAFgAAAAAFFgAAAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAFgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: FgAAAAAAFgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFgAAAAABeQAAAAAANAAAAAAAMwAAAAACMwAAAAAAMwAAAAADNAAAAAACMwAAAAACFgAAAAACFgAAAAADFgAAAAAAFgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAADMwAAAAAAeQAAAAAAeQAAAAAANAAAAAADNAAAAAABFgAAAAADFgAAAAAEFgAAAAAFFgAAAAADFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAADFgAAAAAGFgAAAAACFgAAAAADFgAAAAABFgAAAAACFgAAAAABNAAAAAAANAAAAAAAFgAAAAAFFgAAAAADFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAABNAAAAAABNAAAAAADNAAAAAAANAAAAAABNAAAAAABNAAAAAACNAAAAAAAeQAAAAAAFgAAAAABFgAAAAADeQAAAAAANAAAAAADNAAAAAACNAAAAAAAeQAAAAAAFgAAAAAENAAAAAADNQAAAAADNQAAAAADNQAAAAACNQAAAAACNQAAAAABNQAAAAADeQAAAAAAFgAAAAAAFgAAAAAEeQAAAAAANAAAAAACNAAAAAAANAAAAAAAMwAAAAAAFgAAAAADNAAAAAACNQAAAAADNQAAAAAANQAAAAAANQAAAAABNQAAAAABNQAAAAACeQAAAAAAFgAAAAACFgAAAAADeQAAAAAANAAAAAABNAAAAAADNAAAAAAAeQAAAAAAFgAAAAACNAAAAAAANQAAAAADNQAAAAACNQAAAAACNQAAAAADNQAAAAADNQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAENAAAAAABNQAAAAAANQAAAAABNQAAAAABNQAAAAADNQAAAAADNQAAAAACeQAAAAAAFgAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAAAFgAAAAAFFgAAAAADFgAAAAAANAAAAAABNAAAAAABNAAAAAABNAAAAAAANAAAAAADNAAAAAAANAAAAAADeQAAAAAAFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAEMwAAAAADMwAAAAACMwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMwAAAAABeQAAAAAAFgAAAAACFgAAAAACFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAGFgAAAAABFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAEFgAAAAABFgAAAAAEFgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAFgAAAAAAFgAAAAABFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAABFgAAAAAFFgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAACRgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAARgAAAAAARgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAABeQAAAAAADwAAAAAADwAAAAAADwAAAAAARgAAAAACRgAAAAAARwAAAAACRwAAAAADRgAAAAADRgAAAAADRgAAAAAARgAAAAABRwAAAAADRwAAAAABRwAAAAABRgAAAAAARgAAAAACDwAAAAAADwAAAAAADwAAAAAARgAAAAAARgAAAAADRwAAAAAARwAAAAADRgAAAAABRgAAAAADRgAAAAABRgAAAAACRgAAAAADRwAAAAADRgAAAAAARgAAAAAARgAAAAABDwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAABRgAAAAABRgAAAAABRgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAAARwAAAAACRgAAAAACeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAADRwAAAAADRgAAAAADeQAAAAAAFgAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAACRgAAAAAARgAAAAABeQAAAAAAFgAAAAAFGgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAAARgAAAAACRgAAAAABeQAAAAAAFgAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAAAGgAAAAADGgAAAAACGgAAAAADRgAAAAABRgAAAAACRgAAAAACRgAAAAAARgAAAAADeQAAAAAAFgAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABGgAAAAACRgAAAAAARgAAAAACRgAAAAACRgAAAAACeQAAAAAAFgAAAAADGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAACRgAAAAAARgAAAAADRgAAAAAARgAAAAAARgAAAAACeQAAAAAAFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGgAAAAADGgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAABeQAAAAAAeQAAAAAAFgAAAAADFgAAAAAGFgAAAAAGFgAAAAADFgAAAAACFgAAAAABFgAAAAABFgAAAAABFgAAAAAEFgAAAAABFgAAAAACFgAAAAAGFgAAAAAAFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAFFgAAAAAEFgAAAAAGFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAEFgAAAAABFgAAAAADFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAADFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAABFgAAAAAE + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEFgAAAAAEFgAAAAACFgAAAAACFgAAAAAGDwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAABRgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAARgAAAAAARgAAAAADeQAAAAAAeQAAAAAAeQAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAARgAAAAAARgAAAAACRwAAAAABRwAAAAACRgAAAAAARgAAAAACRgAAAAACRgAAAAAARwAAAAACRwAAAAADRwAAAAADRgAAAAACRgAAAAAADwAAAAAADwAAAAAADwAAAAAARgAAAAADRgAAAAACRwAAAAAARwAAAAACRgAAAAACRgAAAAADRgAAAAABRgAAAAADRgAAAAACRwAAAAACRgAAAAABRgAAAAABRgAAAAABDwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAADRgAAAAADRgAAAAACRgAAAAACeQAAAAAAeQAAAAAAeQAAAAAARgAAAAADRwAAAAABRgAAAAABeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAACRwAAAAADRgAAAAAAeQAAAAAAFgAAAAAEDwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAACRgAAAAABRgAAAAAAeQAAAAAAFgAAAAABGgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAACRgAAAAAARgAAAAABeQAAAAAAFgAAAAAFGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAAAGgAAAAACRgAAAAAARgAAAAAARgAAAAADRgAAAAACRgAAAAABeQAAAAAAFgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAACGgAAAAADRgAAAAAARgAAAAABRgAAAAADRgAAAAABeQAAAAAAFgAAAAAGGgAAAAADGgAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAACGgAAAAABRgAAAAABRgAAAAADRgAAAAADRgAAAAABRgAAAAAAeQAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAGgAAAAADGgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAADeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAAEFgAAAAAFFgAAAAABFgAAAAADFgAAAAAFFgAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAAFFgAAAAAFFgAAAAACFgAAAAAEFgAAAAAEFgAAAAAEFgAAAAACFgAAAAABFgAAAAADFgAAAAADFgAAAAABFgAAAAAGFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAFFgAAAAAD version: 6 1,4: ind: 1,4 @@ -325,15 +328,15 @@ entities: version: 6 -4,2: ind: -4,2 - tiles: IgAAAAADIgAAAAABIgAAAAACIgAAAAADIgAAAAAAeQAAAAAAFgAAAAAEFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAGFgAAAAACFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAFgAAAAACFgAAAAAFFgAAAAAEFgAAAAACFgAAAAAAFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAAFgAAAAABFgAAAAABFgAAAAAGFgAAAAADFgAAAAAAFgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAFgAAAAAAFgAAAAAGFgAAAAABFgAAAAAGFgAAAAABFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAGFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAAGeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAAFgAAAAAAFgAAAAACFgAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAFgAAAAAEFgAAAAAFFgAAAAAGFgAAAAAGFgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAFgAAAAACFgAAAAAEFgAAAAAEFgAAAAAFFgAAAAAEFgAAAAAGeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAADFgAAAAAFFgAAAAACFgAAAAAAFgAAAAACFgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAFeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: IgAAAAABIgAAAAADIgAAAAADIgAAAAADIgAAAAACeQAAAAAAFgAAAAABFgAAAAADFgAAAAADFgAAAAAAFgAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAFFgAAAAAGFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAGFgAAAAACFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAFgAAAAADFgAAAAACFgAAAAAGFgAAAAADFgAAAAAFFgAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAEeAAAAAAAeAAAAAAAeAAAAAAAFgAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAABeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAAFgAAAAAAFgAAAAADFgAAAAABeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAFgAAAAABFgAAAAAAFgAAAAAGFgAAAAAGFgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAABFgAAAAAEFgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAACFgAAAAADFgAAAAACFgAAAAAEeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAGeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAARgAAAAABRgAAAAADRgAAAAADeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAADRgAAAAAARgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAARgAAAAACRgAAAAABRgAAAAACeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAARgAAAAABRgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAACRgAAAAADeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAAADwAAAAAARgAAAAADRgAAAAAARgAAAAAARgAAAAABRgAAAAADRgAAAAACeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAGFgAAAAAGFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAAAeQAAAAAADwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFgAAAAAGFgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAADeQAAAAAAFgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAFgAAAAADFgAAAAACeQAAAAAAGgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAABeQAAAAAAFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACFgAAAAAFeQAAAAAAGwAAAAACRgAAAAADRgAAAAABRgAAAAACRgAAAAACRgAAAAAARgAAAAADeQAAAAAAFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAAAeQAAAAAAGgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAGFgAAAAADFgAAAAADeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAADIgAAAAABIgAAAAABIgAAAAABeQAAAAAAFgAAAAADFgAAAAAGFgAAAAACFgAAAAACFgAAAAACFgAAAAAGFgAAAAADFgAAAAADFgAAAAAEFgAAAAAGIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAFgAAAAAGFgAAAAACFgAAAAAGFgAAAAACFgAAAAADFgAAAAABFgAAAAAEFgAAAAAFFgAAAAABFgAAAAAAIgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAFgAAAAAGFgAAAAAGFgAAAAAGFgAAAAAAFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAARgAAAAAARgAAAAACRgAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAARgAAAAACRgAAAAAARgAAAAACeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAARgAAAAAARgAAAAAARgAAAAADeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAARgAAAAAARgAAAAAARgAAAAADRgAAAAADRgAAAAABRgAAAAAARgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAARgAAAAAARgAAAAADRgAAAAACRgAAAAACRgAAAAABRgAAAAACRgAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAACRgAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFgAAAAAEFgAAAAAEFgAAAAADFgAAAAAADwAAAAAARgAAAAADRgAAAAADRgAAAAABRgAAAAACRgAAAAADRgAAAAABeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAABFgAAAAAFFgAAAAADFgAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAAAeQAAAAAADwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAFgAAAAAAFgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAADeQAAAAAAFgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAFgAAAAABFgAAAAAFeQAAAAAAGgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARgAAAAACeQAAAAAAFgAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAEFgAAAAAEeQAAAAAAGwAAAAACRgAAAAAARgAAAAADRgAAAAABRgAAAAABRgAAAAABRgAAAAABeQAAAAAAFgAAAAADFgAAAAAAFgAAAAAFFgAAAAADFgAAAAAGFgAAAAAAFgAAAAABeQAAAAAAGgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAABFgAAAAAGFgAAAAAEFgAAAAAFeQAAAAAAeQAAAAAAIgAAAAADIgAAAAADIgAAAAACIgAAAAACIgAAAAAAeQAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAAFFgAAAAABFgAAAAAAFgAAAAAGIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAFgAAAAAEFgAAAAACFgAAAAAGFgAAAAACFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAFFgAAAAACFgAAAAADIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADeQAAAAAAFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAEFgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -5,1: ind: -5,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAARgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAARgAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAARgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAARgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAARgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAARgAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAARgAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAARgAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAARgAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAARgAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA version: 6 -6,-1: ind: -6,-1 @@ -341,7 +344,7 @@ entities: version: 6 -6,0: ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAA version: 6 -6,1: ind: -6,1 @@ -379,6 +382,14 @@ entities: ind: -3,3 tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + -2,-5: + ind: -2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -418,107 +429,139 @@ entities: 324: -28.801765,-22.944937 334: -18.203285,-25.042423 338: -35.904755,-1.7838664 - 958: 36.831802,31.929901 - 973: 43.80229,11.998156 - 980: 40.962307,1.7351682 - 991: 30.045877,0.20900917 - 1116: 15.2572155,8.165568 - 1146: 13.940187,1.6461987 - 1193: -9.847918,-7.645767 - 1202: -26.793886,-13.607289 - 1228: 11.474959,-18.75413 - 1235: 12.706221,-28.55948 - 1240: 13.101593,12.046461 - 1305: 27.867834,27.063396 - 1314: 0.48829108,-17.334173 - 1326: -2.9708345,-27.703413 - 1524: -15.671015,31.953587 - 1532: -16.87774,27.01193 - 1564: -24.125809,35.052845 - 1775: -33.09784,25.252794 - 1883: -5.5515394,16.82666 - 1920: -33.214447,-6.4120655 - 1933: -27.17761,6.5531034 + 955: 36.831802,31.929901 + 970: 43.80229,11.998156 + 977: 40.962307,1.7351682 + 988: 30.045877,0.20900917 + 1113: 15.2572155,8.165568 + 1143: 13.940187,1.6461987 + 1190: -9.847918,-7.645767 + 1199: -26.793886,-13.607289 + 1225: 11.474959,-18.75413 + 1232: 12.706221,-28.55948 + 1237: 13.101593,12.046461 + 1302: 27.867834,27.063396 + 1311: 0.48829108,-17.334173 + 1323: -2.9708345,-27.703413 + 1520: -15.671015,31.953587 + 1528: -16.87774,27.01193 + 1560: -24.125809,35.052845 + 1771: -33.09784,25.252794 + 1879: -5.5515394,16.82666 + 1916: -33.214447,-6.4120655 + 1929: -27.17761,6.5531034 + 2802: -60.787766,-1.1471583 + 2823: -66.502884,7.018114 + 2920: -83.5441,1.9288175 + 2921: -82.2316,2.8819427 + 2922: -82.7941,1.7256925 - node: cleanable: True color: '#FFFFFFFF' id: Basalt1 decals: - 1349: -15.440878,-29.232687 - 1353: -22.978743,-28.256847 + 1346: -15.440878,-29.232687 + 1350: -22.978743,-28.256847 - node: color: '#FFFFFFFF' id: Basalt2 decals: 333: -23.418358,-20.995682 - 959: 33.042114,34.25961 - 1281: 29.339336,2.7427118 - 1553: -9.040731,39.944096 - 1761: -37.156647,29.579756 - 1779: -18.9346,25.096952 - 1783: -48.757397,12.023065 - 1887: -5.990235,17.142838 - 1894: 9.896843,15.529478 - 1908: -28.237709,-18.122831 - 1917: -33.026947,-11.294338 - 1951: -15.762699,19.468319 - 1952: -2.4417908,14.468319 - 1957: -30.507786,-30.579666 - 1963: -29.840889,-31.104805 + 956: 33.042114,34.25961 + 1278: 29.339336,2.7427118 + 1549: -9.040731,39.944096 + 1757: -37.156647,29.579756 + 1775: -18.9346,25.096952 + 1779: -48.757397,12.023065 + 1883: -5.990235,17.142838 + 1890: 9.896843,15.529478 + 1904: -28.237709,-18.122831 + 1913: -33.026947,-11.294338 + 1947: -15.762699,19.468319 + 1948: -2.4417908,14.468319 + 1953: -30.507786,-30.579666 + 1959: -29.840889,-31.104805 + 2822: -73.878075,-14.420362 + 2827: -65.82413,6.9969273 + 2831: -68.53817,3.4319563 + 2842: -80.31527,4.4798236 + 2849: -82.31509,-12.322231 + 2871: -62.842125,9.550008 + 2923: -83.30972,1.8194425 + 2924: -82.13785,2.8819427 + 3429: 8.08981,-62.837643 + 3433: 16.981516,-62.462643 + 3446: 9.154597,-65.1413 - node: color: '#FFFFFFFF' id: Basalt3 decals: 331: -25.344738,-18.839432 332: -19.954113,-22.308182 - 961: 31.164124,41.338047 - 984: 38.59574,-5.407087 - 988: 23.624002,6.940701 - 1120: 15.3040905,8.009318 - 1132: 13.193462,11.346642 - 1135: 16.268763,16.418217 - 1139: 13.494286,6.3934283 - 1147: 14.252687,1.0993237 - 1189: -8,-6 - 1197: -10.629168,-8.552017 - 1217: -34.552353,-4.27784 - 1218: -19.040133,-4.5773597 - 1236: 13.15239,-28.90323 - 1241: 11.976593,12.983961 - 1258: 3.5074081,16.02935 - 1309: 24.732222,26.556034 - 1316: 0.894541,-20.334173 - 1333: -10.7361765,-31.994392 - 1334: -3.3686292,-35.025482 - 1528: -24.145409,39.893917 - 1554: -8.618857,40.17847 - 1563: -8.819744,39.338028 - 1759: -51.21249,26.242868 - 1784: -49.319897,11.78869 - 1807: -49.690414,16.478664 - 1930: -32.738663,5.8968534 - 1938: -22.736778,8.395535 + 958: 31.164124,41.338047 + 981: 38.59574,-5.407087 + 985: 23.624002,6.940701 + 1117: 15.3040905,8.009318 + 1129: 13.193462,11.346642 + 1132: 16.268763,16.418217 + 1136: 13.494286,6.3934283 + 1144: 14.252687,1.0993237 + 1186: -8,-6 + 1194: -10.629168,-8.552017 + 1214: -34.552353,-4.27784 + 1215: -19.040133,-4.5773597 + 1233: 13.15239,-28.90323 + 1238: 11.976593,12.983961 + 1255: 3.5074081,16.02935 + 1306: 24.732222,26.556034 + 1313: 0.894541,-20.334173 + 1330: -10.7361765,-31.994392 + 1331: -3.3686292,-35.025482 + 1524: -24.145409,39.893917 + 1550: -8.618857,40.17847 + 1559: -8.819744,39.338028 + 1755: -51.21249,26.242868 + 1780: -49.319897,11.78869 + 1803: -49.690414,16.478664 + 1926: -32.738663,5.8968534 + 1934: -22.736778,8.395535 + 2804: -61.249207,-6.9105616 + 2818: -82.06134,-8.720434 + 2826: -65.78636,6.918802 + 2833: -60.244675,3.349106 + 2858: -62.342613,-4.904404 + 2867: -62.76963,3.6756492 + 2912: -82.01285,2.2100677 + 2913: -81.87222,2.9131927 + 2914: -84.76285,2.0225673 + 2915: -83.57535,1.9131925 + 3434: 16.55964,-62.618893 + 3442: 15.330149,-65.07991 - node: cleanable: True color: '#FFFFFFFF' id: Basalt3 decals: - 1360: -21.392378,-25.73712 + 1357: -21.392378,-25.73712 - node: color: '#FFFFFFFF' id: Basalt4 decals: 301: -48.16239,-20.643335 - 983: 38.09712,0.7664182 - 998: 24.067078,3.7164564 - 1226: 4.027135,-6.3204727 - 1227: 11.193709,-19.322268 + 980: 38.09712,0.7664182 + 995: 24.067078,3.7164564 + 1223: 4.027135,-6.3204727 + 1224: 11.193709,-19.322268 + 2815: -76.56209,-3.677723 + 2821: -73.02273,-13.889112 + 2891: -79.45692,13.0986595 + 2892: -75.53598,11.325779 - node: cleanable: True color: '#FFFFFFFF' id: Basalt4 decals: - 1352: -22.191357,-27.446014 + 1349: -22.191357,-27.446014 - node: color: '#FFFFFFFF' id: Basalt5 @@ -533,78 +576,99 @@ entities: 328: -34.42347,-21.693293 335: -14.516985,-27.75555 337: -36.92038,-3.9980364 - 957: 35,33 - 962: 24.61996,36.89288 - 969: 39.42429,18.569317 - 976: 41.474167,11.781538 - 977: 44.192917,1.4382932 - 1118: 14.3822155,8.118693 - 1138: 12.463036,6.6020784 - 1141: 13.228661,4.5039616 - 1144: 13.205812,0.80244875 - 1150: 11.314857,2.364138 - 1152: 12.600464,-1.8344193 - 1195: -10.176043,-8.489517 - 1200: -20.79786,-13.49406 - 1205: -27.497011,-13.841664 - 1225: 2.714635,-6.8985977 - 1229: 10.396834,-18.84788 - 1232: 12.331221,-29.34073 - 1239: 13.914093,11.593336 - 1246: 12.075298,12.506778 - 1248: 13.685623,10.559168 - 1256: 3.4811459,15.482475 - 1265: 6.304414,9.242622 - 1275: -3.9947867,8.481548 - 1276: 23.68643,7.188801 - 1287: 25.394194,30.971863 - 1290: 28.157896,28.487488 - 1302: 26.78971,26.235271 - 1307: 23.575972,27.899784 - 1315: 0.019541085,-17.443548 - 1320: -2.1591704,-21.947626 - 1323: -3.5177095,-28.249943 - 1328: -4.8754683,-30.576374 - 1332: -11.5955515,-32.298557 - 1335: -3.3373792,-35.59624 - 1383: -39.174545,4.4029417 - 1521: -12.753784,38.964314 - 1525: -15.441666,31.663078 - 1533: -17.455866,26.871305 - 1537: -17.34705,33.922367 - 1541: -3.326138,38.506596 - 1548: -6.768057,39.36597 - 1552: -2.2581756,39.256596 - 1567: -28.032059,33.959095 - 1755: -50.248856,29.030094 - 1762: -37.312897,29.84538 - 1766: -32.289944,31.392256 - 1768: -33.22284,26.603401 - 1772: -33.06659,23.999084 - 1785: -49.39802,12.03869 - 1787: -45.741203,16.922514 - 1792: -55.70881,21.998856 - 1795: -61.758873,18.395866 - 1803: -58.741993,17.960054 - 1877: -14.311324,20.784346 - 1882: -5.9948163,16.710732 - 1892: 8.752504,15.481611 - 1900: -11.133938,-4.805233 - 1906: -28.925209,-17.763456 - 1931: -33.12687,6.0999784 - 1934: -26.880735,5.9749784 - 1937: -22.252403,8.454277 - 1940: -22.94602,9.12991 - 1959: -27.383451,-29.663757 - 1962: -29.919014,-30.917305 + 954: 35,33 + 959: 24.61996,36.89288 + 966: 39.42429,18.569317 + 973: 41.474167,11.781538 + 974: 44.192917,1.4382932 + 1115: 14.3822155,8.118693 + 1135: 12.463036,6.6020784 + 1138: 13.228661,4.5039616 + 1141: 13.205812,0.80244875 + 1147: 11.314857,2.364138 + 1149: 12.600464,-1.8344193 + 1192: -10.176043,-8.489517 + 1197: -20.79786,-13.49406 + 1202: -27.497011,-13.841664 + 1222: 2.714635,-6.8985977 + 1226: 10.396834,-18.84788 + 1229: 12.331221,-29.34073 + 1236: 13.914093,11.593336 + 1243: 12.075298,12.506778 + 1245: 13.685623,10.559168 + 1253: 3.4811459,15.482475 + 1262: 6.304414,9.242622 + 1272: -3.9947867,8.481548 + 1273: 23.68643,7.188801 + 1284: 25.394194,30.971863 + 1287: 28.157896,28.487488 + 1299: 26.78971,26.235271 + 1304: 23.575972,27.899784 + 1312: 0.019541085,-17.443548 + 1317: -2.1591704,-21.947626 + 1320: -3.5177095,-28.249943 + 1325: -4.8754683,-30.576374 + 1329: -11.5955515,-32.298557 + 1332: -3.3373792,-35.59624 + 1380: -39.174545,4.4029417 + 1517: -12.753784,38.964314 + 1521: -15.441666,31.663078 + 1529: -17.455866,26.871305 + 1533: -17.34705,33.922367 + 1537: -3.326138,38.506596 + 1544: -6.768057,39.36597 + 1548: -2.2581756,39.256596 + 1563: -28.032059,33.959095 + 1751: -50.248856,29.030094 + 1758: -37.312897,29.84538 + 1762: -32.289944,31.392256 + 1764: -33.22284,26.603401 + 1768: -33.06659,23.999084 + 1781: -49.39802,12.03869 + 1783: -45.741203,16.922514 + 1788: -55.70881,21.998856 + 1791: -61.758873,18.395866 + 1799: -58.741993,17.960054 + 1873: -14.311324,20.784346 + 1878: -5.9948163,16.710732 + 1888: 8.752504,15.481611 + 1896: -11.133938,-4.805233 + 1902: -28.925209,-17.763456 + 1927: -33.12687,6.0999784 + 1930: -26.880735,5.9749784 + 1933: -22.252403,8.454277 + 1936: -22.94602,9.12991 + 1955: -27.383451,-29.663757 + 1958: -29.919014,-30.917305 + 2798: -69,2 + 2801: -61.385906,-1.5199734 + 2805: -61.17108,-7.3324366 + 2813: -76.25223,-7.8916235 + 2817: -82.639465,-9.39231 + 2819: -73.46543,-13.970434 + 2832: -64.71438,2.4116058 + 2834: -63.39292,6.387979 + 2836: -67.91902,13.149759 + 2853: -66.61057,-17.718208 + 2857: -63.089718,-10.777156 + 2870: -63.389,9.409382 + 2872: -60.7069,11.213473 + 2886: -69.376,-0.5463318 + 2895: -75.05937,-14.502789 + 2901: -73.45359,1.8856144 + 3426: 5.699185,-62.384518 + 3428: 7.6835594,-62.837643 + 3439: 19.423864,-61.234444 + 3440: 16.392614,-60.50007 + 3445: 9.185847,-64.90692 - node: cleanable: True color: '#FFFFFFFF' id: Basalt5 decals: - 1345: -13.065878,-31.430168 - 1348: -15.878378,-29.435812 - 1355: -23.322493,-29.069347 + 1342: -13.065878,-31.430168 + 1345: -15.878378,-29.435812 + 1352: -23.322493,-29.069347 - node: color: '#FFFFFFFF' id: Basalt6 @@ -621,181 +685,221 @@ entities: 320: -34.15204,-15.646087 322: -34.426765,-19.699102 323: -34.78614,-19.569937 - 963: 23.861382,36.096004 - 964: 23.173882,36.752254 - 966: 31.972412,26.541353 - 967: 32.269287,27.260103 - 970: 39.57703,18.439585 - 972: 41.826984,16.170853 - 974: 43.849167,11.685656 - 975: 43.64604,12.076281 - 978: 43.911667,1.0476682 - 979: 43.599167,1.5320432 - 982: 41.290432,1.9226682 - 985: 38.18949,-5.188337 - 986: 29.31585,2.3170726 - 990: 29.420877,2.6152592 - 992: 30.102917,0.28067398 - 993: 30.243542,-0.20370102 - 994: 29.477917,-0.18807602 - 995: 24.860466,2.2911954 - 996: 23.985466,1.6349454 - 997: 24.319178,1.9732833 - 1123: 14.5697155,7.2436934 - 1130: 13.8353405,7.8218184 - 1133: 13.130962,11.362267 - 1134: 12.474712,11.471642 - 1137: 15.145903,16.881634 - 1140: 13.134911,6.75767 - 1142: 13.650536,4.4727116 - 1143: 13.369286,4.6602116 - 1148: 13.042683,1.4274487 - 1149: 13.761433,1.4118237 - 1151: 11.408607,2.2950778 - 1153: 12.725464,-1.9437943 - 1154: 11.991089,-2.3656693 - 1191: -8.851766,-6.251027 - 1192: -8.054891,-5.641652 - 1196: -9.972918,-8.473892 - 1198: -10.894793,-8.505142 - 1203: -26.918886,-13.826039 - 1207: -27.434511,-13.841664 - 1216: -34.599228,-3.8090901 - 1219: -19.133883,-4.6086097 - 1222: -19.713482,-3.9992347 - 1224: 3.29276,-6.9454727 - 1231: 11.021834,-19.31663 - 1233: 12.331221,-29.46573 - 1237: 13.679718,12.483961 - 1243: 13.382843,12.468336 - 1244: 14.304718,13.905836 - 1247: 11.278423,12.756778 - 1249: 14.404373,10.809168 - 1250: 14.201248,11.340418 - 1251: 14.513748,11.090418 - 1252: 14.337288,11.89698 - 1253: 12.809552,14.419975 - 1255: 5.328644,14.84185 - 1259: 3.4709415,16.076225 - 1261: 1.3407731,15.71685 - 1262: 3.2779593,11.1197605 - 1266: 6.163789,8.876367 - 1268: 0.67892504,11.0057535 - 1270: -7.172862,1.170232 - 1273: -7.432553,3.6168346 - 1274: -7.354428,5.2489014 - 1277: 23.077055,6.766926 - 1278: 23.483305,7.126301 - 1279: 26.809317,7.845395 - 1282: 29.370586,2.9614618 - 1284: 29.809566,0.317778 - 1285: 29.778316,-0.275972 - 1286: 34.289165,-0.15097201 - 1291: 27.689146,28.565613 - 1303: 26.72721,26.047771 - 1306: 28.149084,26.454021 - 1308: 23.654097,27.91541 - 1310: 24.544722,26.681034 - 1319: -2.2278707,-21.797464 - 1321: -2.724058,-21.494501 - 1322: -3.0783834,-24.1535 - 1324: -3.3770845,-28.297163 - 1329: -4.7348433,-30.6545 - 1375: -37.987045,2.949817 - 1376: -38.799545,4.5279417 - 1377: -37.06517,4.4498167 - 1378: -37.06517,3.7935667 - 1379: -38.299545,4.0904417 - 1380: -39.44017,3.027942 - 1523: -13.269409,39.04244 - 1526: -15.238541,31.678703 - 1529: -24.801659,40.003292 - 1534: -17.737116,26.44943 - 1535: -16.393366,26.60568 - 1536: -17.136177,34.047367 - 1538: -18.034082,30.660261 - 1539: -26.267286,34.18815 - 1540: -4.2649384,39.600346 - 1542: -3.076138,38.67847 - 1546: -5.768057,39.58472 - 1549: -6.893057,39.381596 - 1550: -1.9015934,39.64722 - 1555: -8.650107,40.11597 - 1556: -9.384481,39.412846 - 1557: -4.3012123,38.444096 - 1558: -5.129604,38.975346 - 1559: -6.957729,39.815014 - 1560: -7.113979,39.471264 - 1561: -9.083034,38.687958 - 1565: -24.141434,34.72472 - 1568: -27.06245,40.857742 - 1569: -27.0937,40.670242 - 1756: -49.61982,29.297615 - 1760: -51.21249,26.149118 - 1763: -37.0853,29.97038 - 1764: -32.605507,31.736008 - 1767: -32.21666,31.351906 - 1769: -33.207214,25.962776 - 1774: -33.28534,22.821901 - 1776: -32.94159,25.39342 - 1777: -19.543976,24.975157 - 1782: -49.944897,14.20232 - 1786: -49.476147,12.467576 - 1788: -45.325676,17.203764 - 1789: -45.138176,16.610014 - 1790: -50.243168,20.82698 - 1793: -55.69599,21.95198 - 1794: -56.498497,21.54573 - 1796: -61.727623,18.364616 - 1798: -62.540123,18.552116 - 1800: -61.90193,20.802668 - 1801: -58.99568,17.724543 - 1804: -58.663868,17.97568 - 1805: -49.971664,16.43558 - 1808: -50.262463,16.64722 - 1878: -14.309448,20.887205 - 1884: -6.2546644,16.42041 - 1886: -6.052735,16.861588 - 1890: 9.268129,15.372236 - 1893: 8.830629,15.403486 - 1895: 10.60378,-4.7768984 - 1896: 6.1211753,-8.730023 - 1897: -4.8135757,-5.6518984 - 1898: -6.4845557,-8.080021 - 1901: -10.446438,-4.805233 - 1907: -29.175209,-18.044706 - 1909: -29.143959,-18.497831 - 1910: -33.938484,-17.841581 - 1912: -33.407234,-17.794706 - 1913: -33.657234,-17.638456 - 1914: -33.495697,-11.231838 - 1918: -33.245697,-11.653713 - 1919: -33.605072,-6.8808155 - 1921: -33.480072,-6.3339405 - 1923: -32.995697,-7.1464405 - 1924: -33.511322,-7.1151905 - 1925: -33.31063,3.0876274 - 1935: -27.786985,6.1781034 - 1941: -23.055395,12.822712 - 1946: -18.791542,4.790169 - 1947: -19.182167,6.243294 - 1949: -12.879653,17.499569 - 1954: -29.713875,-28.838053 - 1961: -27.137764,-29.695007 - 1964: -29.778389,-31.21418 - 1965: -30.372139,-30.68293 + 960: 23.861382,36.096004 + 961: 23.173882,36.752254 + 963: 31.972412,26.541353 + 964: 32.269287,27.260103 + 967: 39.57703,18.439585 + 969: 41.826984,16.170853 + 971: 43.849167,11.685656 + 972: 43.64604,12.076281 + 975: 43.911667,1.0476682 + 976: 43.599167,1.5320432 + 979: 41.290432,1.9226682 + 982: 38.18949,-5.188337 + 983: 29.31585,2.3170726 + 987: 29.420877,2.6152592 + 989: 30.102917,0.28067398 + 990: 30.243542,-0.20370102 + 991: 29.477917,-0.18807602 + 992: 24.860466,2.2911954 + 993: 23.985466,1.6349454 + 994: 24.319178,1.9732833 + 1120: 14.5697155,7.2436934 + 1127: 13.8353405,7.8218184 + 1130: 13.130962,11.362267 + 1131: 12.474712,11.471642 + 1134: 15.145903,16.881634 + 1137: 13.134911,6.75767 + 1139: 13.650536,4.4727116 + 1140: 13.369286,4.6602116 + 1145: 13.042683,1.4274487 + 1146: 13.761433,1.4118237 + 1148: 11.408607,2.2950778 + 1150: 12.725464,-1.9437943 + 1151: 11.991089,-2.3656693 + 1188: -8.851766,-6.251027 + 1189: -8.054891,-5.641652 + 1193: -9.972918,-8.473892 + 1195: -10.894793,-8.505142 + 1200: -26.918886,-13.826039 + 1204: -27.434511,-13.841664 + 1213: -34.599228,-3.8090901 + 1216: -19.133883,-4.6086097 + 1219: -19.713482,-3.9992347 + 1221: 3.29276,-6.9454727 + 1228: 11.021834,-19.31663 + 1230: 12.331221,-29.46573 + 1234: 13.679718,12.483961 + 1240: 13.382843,12.468336 + 1241: 14.304718,13.905836 + 1244: 11.278423,12.756778 + 1246: 14.404373,10.809168 + 1247: 14.201248,11.340418 + 1248: 14.513748,11.090418 + 1249: 14.337288,11.89698 + 1250: 12.809552,14.419975 + 1252: 5.328644,14.84185 + 1256: 3.4709415,16.076225 + 1258: 1.3407731,15.71685 + 1259: 3.2779593,11.1197605 + 1263: 6.163789,8.876367 + 1265: 0.67892504,11.0057535 + 1267: -7.172862,1.170232 + 1270: -7.432553,3.6168346 + 1271: -7.354428,5.2489014 + 1274: 23.077055,6.766926 + 1275: 23.483305,7.126301 + 1276: 26.809317,7.845395 + 1279: 29.370586,2.9614618 + 1281: 29.809566,0.317778 + 1282: 29.778316,-0.275972 + 1283: 34.289165,-0.15097201 + 1288: 27.689146,28.565613 + 1300: 26.72721,26.047771 + 1303: 28.149084,26.454021 + 1305: 23.654097,27.91541 + 1307: 24.544722,26.681034 + 1316: -2.2278707,-21.797464 + 1318: -2.724058,-21.494501 + 1319: -3.0783834,-24.1535 + 1321: -3.3770845,-28.297163 + 1326: -4.7348433,-30.6545 + 1372: -37.987045,2.949817 + 1373: -38.799545,4.5279417 + 1374: -37.06517,4.4498167 + 1375: -37.06517,3.7935667 + 1376: -38.299545,4.0904417 + 1377: -39.44017,3.027942 + 1519: -13.269409,39.04244 + 1522: -15.238541,31.678703 + 1525: -24.801659,40.003292 + 1530: -17.737116,26.44943 + 1531: -16.393366,26.60568 + 1532: -17.136177,34.047367 + 1534: -18.034082,30.660261 + 1535: -26.267286,34.18815 + 1536: -4.2649384,39.600346 + 1538: -3.076138,38.67847 + 1542: -5.768057,39.58472 + 1545: -6.893057,39.381596 + 1546: -1.9015934,39.64722 + 1551: -8.650107,40.11597 + 1552: -9.384481,39.412846 + 1553: -4.3012123,38.444096 + 1554: -5.129604,38.975346 + 1555: -6.957729,39.815014 + 1556: -7.113979,39.471264 + 1557: -9.083034,38.687958 + 1561: -24.141434,34.72472 + 1564: -27.06245,40.857742 + 1565: -27.0937,40.670242 + 1752: -49.61982,29.297615 + 1756: -51.21249,26.149118 + 1759: -37.0853,29.97038 + 1760: -32.605507,31.736008 + 1763: -32.21666,31.351906 + 1765: -33.207214,25.962776 + 1770: -33.28534,22.821901 + 1772: -32.94159,25.39342 + 1773: -19.543976,24.975157 + 1778: -49.944897,14.20232 + 1782: -49.476147,12.467576 + 1784: -45.325676,17.203764 + 1785: -45.138176,16.610014 + 1786: -50.243168,20.82698 + 1789: -55.69599,21.95198 + 1790: -56.498497,21.54573 + 1792: -61.727623,18.364616 + 1794: -62.540123,18.552116 + 1796: -61.90193,20.802668 + 1797: -58.99568,17.724543 + 1800: -58.663868,17.97568 + 1801: -49.971664,16.43558 + 1804: -50.262463,16.64722 + 1874: -14.309448,20.887205 + 1880: -6.2546644,16.42041 + 1882: -6.052735,16.861588 + 1886: 9.268129,15.372236 + 1889: 8.830629,15.403486 + 1891: 10.60378,-4.7768984 + 1892: 6.1211753,-8.730023 + 1893: -4.8135757,-5.6518984 + 1894: -6.4845557,-8.080021 + 1897: -10.446438,-4.805233 + 1903: -29.175209,-18.044706 + 1905: -29.143959,-18.497831 + 1906: -33.938484,-17.841581 + 1908: -33.407234,-17.794706 + 1909: -33.657234,-17.638456 + 1910: -33.495697,-11.231838 + 1914: -33.245697,-11.653713 + 1915: -33.605072,-6.8808155 + 1917: -33.480072,-6.3339405 + 1919: -32.995697,-7.1464405 + 1920: -33.511322,-7.1151905 + 1921: -33.31063,3.0876274 + 1931: -27.786985,6.1781034 + 1937: -23.055395,12.822712 + 1942: -18.791542,4.790169 + 1943: -19.182167,6.243294 + 1945: -12.879653,17.499569 + 1950: -29.713875,-28.838053 + 1957: -27.137764,-29.695007 + 1960: -29.778389,-31.21418 + 1961: -30.372139,-30.68293 + 2799: -69,2 + 2803: -61.45964,-1.7721584 + 2806: -61.811707,-7.191812 + 2807: -61.749207,-6.957437 + 2808: -61.23358,-7.613687 + 2810: -68.56953,-6.41528 + 2824: -66.30199,6.715677 + 2840: -83.18509,5.5200253 + 2850: -82.61078,-12.478481 + 2855: -61.99622,-22.278297 + 2862: -58.81626,-1.8679821 + 2864: -63.316505,3.9952154 + 2865: -62.879005,3.885841 + 2868: -61.48275,7.643758 + 2869: -62.60775,8.534383 + 2873: -65.967804,12.29496 + 2881: -50.953785,5.84471 + 2883: -55.28097,1.9047947 + 2885: -58.69412,1.9156818 + 2888: -71.150185,8.792873 + 2890: -79.03504,12.9424095 + 2893: -78.79252,0.17811298 + 2896: -67.879845,0.375297 + 2897: -70.14238,14.230311 + 2898: -71.70488,13.789423 + 2902: -74.10984,1.5224066 + 2903: -73.93701,2.3950438 + 2904: -74.31999,2.1919188 + 2905: -83.13249,1.8637924 + 2906: -83.63249,2.3012924 + 2907: -84.30437,1.9262922 + 3430: 7.3554354,-63.212643 + 3435: 15.903391,-62.728268 + 3438: 16.88665,-63.28306 + 3441: 17.37699,-59.890694 + 3443: 15.189524,-65.11116 + 3444: 6.3264723,-63.243546 + 3447: 9.232722,-65.1413 + 3448: 8.592097,-65.31317 + 3449: 8.685847,-64.67255 - node: cleanable: True color: '#FFFFFFFF' id: Basalt6 decals: - 1346: -13.175253,-31.336418 - 1350: -16.190878,-29.717062 - 1357: -23.039263,-29.022472 - 1358: -22.611578,-28.12615 - 1359: -23.034311,-27.9699 - 1362: -21.079878,-25.940245 - 1363: -21.064253,-25.70587 + 1343: -13.175253,-31.336418 + 1347: -16.190878,-29.717062 + 1354: -23.039263,-29.022472 + 1355: -22.611578,-28.12615 + 1356: -23.034311,-27.9699 + 1359: -21.079878,-25.940245 + 1360: -21.064253,-25.70587 - node: color: '#FFFFFFFF' id: Basalt7 @@ -805,88 +909,130 @@ entities: 326: -29.209734,-22.601463 329: -34.0018,-22.052668 336: -36.98652,-5.9052973 - 965: 32.253235,26.822603 - 968: 36.303783,22.535538 - 971: 42.137955,15.914158 - 981: 40.852932,1.9382932 - 987: 24.639627,1.9264476 - 1117: 14.9759655,8.306193 - 1122: 14.9134655,7.0561934 - 1131: 15.755962,13.096642 - 1136: 15.268763,17.277592 - 1145: 13.690187,0.88057375 - 1190: -8.820516,-5.829152 - 1194: -10.426043,-8.005142 - 1201: -20.063484,-13.134685 - 1204: -26.622011,-14.107289 - 1213: -34.427353,-4.09034 - 1220: -19.197857,-4.5304847 - 1223: 3.120885,-6.8204727 - 1230: 10.896834,-18.801004 - 1234: 12.018721,-28.918856 - 1238: 13.867218,13.437086 - 1245: 14.390032,14.116153 - 1254: 5.688019,14.451225 - 1257: 2.9435024,15.607475 - 1260: 1.6493621,15.451225 - 1263: 3.9654593,10.9166355 - 1267: 0.53830004,11.2870035 - 1269: -7.438487,1.092107 - 1272: -7.526303,3.7262096 - 1280: 26.778067,8.001645 - 1283: 29.323711,2.8833368 - 1289: 28.157896,29.096863 - 1304: 28.00846,25.844646 - 1312: 24.435347,28.907234 - 1313: -1.589834,-18.677923 - 1317: 4.6205707,-16.94509 - 1318: -2.4778707,-21.797464 - 1325: -3.8458345,-27.937788 - 1330: -4.9535933,-30.888874 - 1331: -11.180387,-32.282932 - 1336: -3.2905042,-36.080616 - 1381: -38.205795,5.3716917 - 1382: -36.862045,3.8560667 - 1522: -12.269409,39.07369 - 1527: -24.567284,39.571312 - 1531: -16.665133,26.538334 - 1543: -0.6855131,38.61597 - 1547: -5.861807,39.725346 - 1551: -2.2922184,39.67847 - 1562: -9.163494,38.775528 - 1566: -24.282059,34.97472 - 1757: -50.61982,29.235115 - 1765: -32.74307,31.611008 - 1770: -32.988464,24.634651 - 1773: -32.957214,23.717834 - 1778: -19.34085,24.659452 - 1780: -49.726147,13.436695 - 1791: -56.285667,22.030106 - 1799: -62.08943,20.865168 - 1806: -50.04979,16.353664 - 1879: -13.856323,20.24658 - 1891: 9.518129,15.794111 - 1899: -10.696438,-4.789608 - 1903: -28.362709,-17.513456 - 1911: -33.61036,-17.622831 - 1915: -33.589447,-11.325588 - 1926: -33.45424,3.2220256 - 1928: -32.488663,6.2874784 - 1932: -27.418478,5.8499784 - 1936: -22.814903,8.647978 - 1942: -22.57102,12.572712 - 1945: -20.310455,9.16324 - 1950: -11.35952,17.405819 - 1955: -28.92966,-28.869303 - 1960: -27.367826,-29.773132 + 962: 32.253235,26.822603 + 965: 36.303783,22.535538 + 968: 42.137955,15.914158 + 978: 40.852932,1.9382932 + 984: 24.639627,1.9264476 + 1114: 14.9759655,8.306193 + 1119: 14.9134655,7.0561934 + 1128: 15.755962,13.096642 + 1133: 15.268763,17.277592 + 1142: 13.690187,0.88057375 + 1187: -8.820516,-5.829152 + 1191: -10.426043,-8.005142 + 1198: -20.063484,-13.134685 + 1201: -26.622011,-14.107289 + 1210: -34.427353,-4.09034 + 1217: -19.197857,-4.5304847 + 1220: 3.120885,-6.8204727 + 1227: 10.896834,-18.801004 + 1231: 12.018721,-28.918856 + 1235: 13.867218,13.437086 + 1242: 14.390032,14.116153 + 1251: 5.688019,14.451225 + 1254: 2.9435024,15.607475 + 1257: 1.6493621,15.451225 + 1260: 3.9654593,10.9166355 + 1264: 0.53830004,11.2870035 + 1266: -7.438487,1.092107 + 1269: -7.526303,3.7262096 + 1277: 26.778067,8.001645 + 1280: 29.323711,2.8833368 + 1286: 28.157896,29.096863 + 1301: 28.00846,25.844646 + 1309: 24.435347,28.907234 + 1310: -1.589834,-18.677923 + 1314: 4.6205707,-16.94509 + 1315: -2.4778707,-21.797464 + 1322: -3.8458345,-27.937788 + 1327: -4.9535933,-30.888874 + 1328: -11.180387,-32.282932 + 1333: -3.2905042,-36.080616 + 1378: -38.205795,5.3716917 + 1379: -36.862045,3.8560667 + 1518: -12.269409,39.07369 + 1523: -24.567284,39.571312 + 1527: -16.665133,26.538334 + 1539: -0.6855131,38.61597 + 1543: -5.861807,39.725346 + 1547: -2.2922184,39.67847 + 1558: -9.163494,38.775528 + 1562: -24.282059,34.97472 + 1753: -50.61982,29.235115 + 1761: -32.74307,31.611008 + 1766: -32.988464,24.634651 + 1769: -32.957214,23.717834 + 1774: -19.34085,24.659452 + 1776: -49.726147,13.436695 + 1787: -56.285667,22.030106 + 1795: -62.08943,20.865168 + 1802: -50.04979,16.353664 + 1875: -13.856323,20.24658 + 1887: 9.518129,15.794111 + 1895: -10.696438,-4.789608 + 1899: -28.362709,-17.513456 + 1907: -33.61036,-17.622831 + 1911: -33.589447,-11.325588 + 1922: -33.45424,3.2220256 + 1924: -32.488663,6.2874784 + 1928: -27.418478,5.8499784 + 1932: -22.814903,8.647978 + 1938: -22.57102,12.572712 + 1941: -20.310455,9.16324 + 1946: -11.35952,17.405819 + 1951: -28.92966,-28.869303 + 1956: -27.367826,-29.773132 + 2800: -69.024376,1.528023 + 2809: -68.91908,-6.7638702 + 2814: -77.37251,-3.6777227 + 2820: -73.09805,-13.873487 + 2825: -66.34886,6.700052 + 2828: -68.26777,7.8719273 + 2830: -71.366295,4.128251 + 2835: -67.2159,9.134966 + 2837: -74.28153,13.165385 + 2838: -72.29716,13.99351 + 2839: -83.24759,5.759135 + 2843: -84.319565,2.0439727 + 2844: -83.350815,3.012723 + 2845: -81.725815,1.4814733 + 2846: -81.319565,-1.0222999 + 2851: -72.63397,-14.361107 + 2852: -70.22983,-15.975222 + 2854: -64.19702,-17.843208 + 2856: -64.24597,-11.895532 + 2859: -63.42074,-6.138779 + 2860: -60.998863,-3.7794037 + 2861: -58.738136,-5.398991 + 2863: -58.704247,1.4687691 + 2866: -62.879005,3.8162742 + 2877: -54.31316,8.188459 + 2878: -50.75066,5.641585 + 2879: -49.78191,6.7040854 + 2880: -49.485035,6.6572104 + 2882: -55.24972,2.1235447 + 2884: -58.834743,1.7438068 + 2887: -70.88456,8.574123 + 2889: -79.00379,13.2236595 + 2899: -71.344215,13.320673 + 2900: -74.14109,1.9637394 + 2908: -82.40347,2.0225677 + 2909: -82.4191,3.1788177 + 2910: -83.1066,2.9444425 + 2911: -83.8566,1.2100674 + 3427: 6.730435,-60.837643 + 3431: 7.2304354,-63.025143 + 3432: 16.740807,-62.243893 + 3437: 16.24679,-64.3275 - node: cleanable: True color: '#FFFFFFFF' id: Basalt7 decals: - 1347: -12.456503,-31.445793 - 1354: -23.463118,-28.444347 - 1361: -21.126753,-25.73712 + 1344: -12.456503,-31.445793 + 1351: -23.463118,-28.444347 + 1358: -21.126753,-25.73712 - node: color: '#FFFFFFFF' id: Basalt8 @@ -895,76 +1041,96 @@ entities: 317: -34.136944,-14.7326565 327: -33.376595,-22.162043 339: -36.30626,-7.8752747 - 960: 28.857483,37.22004 - 989: 26.952127,8.005884 - 1199: -20.259336,-13.116901 - 1221: -19.135357,-3.7804847 - 1242: 13.101593,14.093336 - 1264: 11.766966,4.3366933 - 1271: -7.204112,0.99835706 - 1288: 29.409819,30.221863 - 1311: 24.888472,28.61036 - 1327: -3.7127004,-28.390913 - 1337: -2.3842542,-34.986866 - 1530: -16.825703,26.37984 - 1758: -51.36874,26.617868 - 1771: -32.863464,23.686584 - 1781: -49.49177,14.10857 - 1797: -62.008873,18.661491 - 1802: -58.730057,17.866304 - 1880: -14.434448,20.24658 - 1885: -5.6609144,16.48291 - 1888: 9.274446,16.564713 - 1902: -10.274563,-4.727108 - 1904: -27.940834,-17.247831 - 1916: -33.714447,-11.184963 - 1927: -32.707413,3.2220256 - 1929: -32.160538,6.0531034 - 1939: -21.721153,8.864285 - 1943: -22.024145,12.869587 - 1944: -20.435455,10.764887 - 1948: -13.535903,17.655819 - 1953: 16.97626,15.552662 - 1956: -28.96091,-29.103678 + 957: 28.857483,37.22004 + 986: 26.952127,8.005884 + 1196: -20.259336,-13.116901 + 1218: -19.135357,-3.7804847 + 1239: 13.101593,14.093336 + 1261: 11.766966,4.3366933 + 1268: -7.204112,0.99835706 + 1285: 29.409819,30.221863 + 1308: 24.888472,28.61036 + 1324: -3.7127004,-28.390913 + 1334: -2.3842542,-34.986866 + 1526: -16.825703,26.37984 + 1754: -51.36874,26.617868 + 1767: -32.863464,23.686584 + 1777: -49.49177,14.10857 + 1793: -62.008873,18.661491 + 1798: -58.730057,17.866304 + 1876: -14.434448,20.24658 + 1881: -5.6609144,16.48291 + 1884: 9.274446,16.564713 + 1898: -10.274563,-4.727108 + 1900: -27.940834,-17.247831 + 1912: -33.714447,-11.184963 + 1923: -32.707413,3.2220256 + 1925: -32.160538,6.0531034 + 1935: -21.721153,8.864285 + 1939: -22.024145,12.869587 + 1940: -20.435455,10.764887 + 1944: -13.535903,17.655819 + 1949: 16.97626,15.552662 + 1952: -28.96091,-29.103678 + 2812: -75.90848,-7.4874063 + 2816: -82.15509,-9.071308 + 2847: -83.20058,-5.6167517 + 2874: -65.54593,12.23246 + 2875: -60.3913,11.10746 + 2876: -57.564598,8.565838 + 2894: -78.01127,0.42811298 + 2916: -82.8566,1.7725675 + 2917: -83.80972,2.2413173 + 2918: -81.68472,2.6319427 + 2919: -81.6066,3.5225677 + 2927: -83.82382,1.0694427 + 2928: -82.02695,3.8819427 + 3436: 16.231516,-61.853268 - node: cleanable: True color: '#FFFFFFFF' id: Basalt8 decals: - 1356: -23.228743,-28.459972 + 1353: -23.228743,-28.459972 - node: color: '#FFFFFFFF' id: Basalt9 decals: 330: -25.709818,-23.207975 - 1121: 14.4134655,7.4155684 - 1881: -14.558018,20.162775 - 1889: 9.533754,14.700361 - 1905: -28.565834,-17.435331 - 1922: -32.917572,-7.1776905 - 1958: -30.30466,-29.548416 + 1118: 14.4134655,7.4155684 + 1877: -14.558018,20.162775 + 1885: 9.533754,14.700361 + 1901: -28.565834,-17.435331 + 1918: -32.917572,-7.1776905 + 1954: -30.30466,-29.548416 + 2811: -68.71015,-6.346781 + 2829: -71.000984,0.49947298 + 2841: -79.018394,3.7766986 + 2848: -83.07558,-10.420778 + 2925: -83.63632,1.9600677 + 2926: -82.58945,1.0225679 - node: cleanable: True color: '#FFFFFFFF' id: Basalt9 decals: - 1351: -18.910107,-27.071014 + 1348: -18.910107,-27.071014 - node: color: '#EFB34196' id: Bot decals: - 1734: -62,29 - 1735: -63,29 - 1736: -64,29 - 1737: -64,30 - 1738: -64,31 - 1739: -64,32 - 1740: -62,32 - 1741: -61,32 - 1742: -60,32 - 1743: -60,31 - 1744: -60,30 - 1745: -63,32 + 1730: -62,29 + 1731: -63,29 + 1732: -64,29 + 1733: -64,30 + 1734: -64,31 + 1735: -64,32 + 1736: -62,32 + 1737: -61,32 + 1738: -60,32 + 1739: -60,31 + 1740: -60,30 + 1741: -63,32 - node: color: '#FFFFFFFF' id: Bot @@ -972,109 +1138,162 @@ entities: 108: -14,-3 109: -15,-3 110: -16,-3 - 750: 30,13 - 751: 31,13 - 752: 32,13 - 753: 33,13 - 926: 31,3 - 927: 32,3 - 928: 33,3 - 929: 34,3 - 1106: -22,38 - 1107: -22,37 - 1108: -22,36 - 1109: -20,38 - 1110: -20,37 - 1111: -20,36 - 1112: -18,38 - 1113: -18,37 - 1114: -18,36 - 1477: -4,41 + 747: 30,13 + 748: 31,13 + 749: 32,13 + 750: 33,13 + 923: 31,3 + 924: 32,3 + 925: 33,3 + 926: 34,3 + 1103: -22,38 + 1104: -22,37 + 1105: -22,36 + 1106: -20,38 + 1107: -20,37 + 1108: -20,36 + 1109: -18,38 + 1110: -18,37 + 1111: -18,36 + 1473: -4,41 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: BotGreyscale decals: - 1124: -16,38 - 1125: -15,38 - 1126: -15,37 - 1127: -16,37 - 1128: -16,36 - 1129: -15,36 + 1121: -16,38 + 1122: -15,38 + 1123: -15,37 + 1124: -16,37 + 1125: -16,36 + 1126: -15,36 - node: color: '#FFFFFFFF' id: Box decals: - 925: 20,13 + 922: 20,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 2675: -20,-5 + 3310: 24,-8 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1001: 28,12 + 998: 28,12 + 2689: 1,-8 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 2674: -20,-3 + 2688: 3,-8 + 3309: 24,-6 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 999: 28,11 - 1009: 23,9 - 1013: 28,8 - 1018: 26,1 - 1023: 31,0 - 1030: 13,43 - 1155: 6,-5 - 1160: 12,-8 + 996: 28,11 + 1006: 23,9 + 1010: 28,8 + 1015: 26,1 + 1020: 31,0 + 1027: 13,43 + 1152: 6,-5 + 1157: 12,-8 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 1004: 29,10 - 1005: 24,8 - 1006: 25,8 - 1015: 29,7 - 1029: 14,42 - 1159: 7,-6 + 1001: 29,10 + 1002: 24,8 + 1003: 25,8 + 1012: 29,7 + 1026: 14,42 + 1156: 7,-6 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 1014: 29,9 - 1016: 27,2 - 1021: 32,1 - 1022: 33,1 - 1163: 13,-7 + 1011: 29,9 + 1013: 27,2 + 1018: 32,1 + 1019: 33,1 + 1160: 13,-7 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1000: 30,11 - 1010: 26,9 - 1017: 28,1 - 1024: 34,0 - 1031: 15,43 - 1156: 8,-5 + 997: 30,11 + 1007: 26,9 + 1014: 28,1 + 1021: 34,0 + 1028: 15,43 + 1153: 8,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 3050: -28,-52 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 3049: -30,-52 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelInnerNe + decals: + 3095: -28,-43 + 3098: -28,-51 + 3103: -28,-53 + 3116: -31,-62 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: 449: 15,-29 450: 15,-31 - 569: 11,-42 - 1003: 28,10 - 1008: 23,8 - 1012: 28,7 - 1028: 13,42 - 1157: 6,-6 - 1162: 12,-9 + 1000: 28,10 + 1005: 23,8 + 1009: 28,7 + 1025: 13,42 + 1154: 6,-6 + 1159: 12,-9 + 2632: 11,-42 + 2649: 14,-45 + 3125: -30,-53 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelInnerNw + decals: + 3096: -30,-43 + 3097: -30,-51 + 3104: -30,-53 + 3115: -27,-62 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: 452: 10,-31 - 568: 14,-42 - 1002: 30,10 - 1007: 26,8 - 1027: 15,42 - 1158: 8,-6 + 999: 30,10 + 1004: 26,8 + 1024: 15,42 + 1155: 8,-6 + 2633: 14,-42 + 2647: 11,-45 + 2795: 24,-20 + 3124: -28,-53 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelInnerSe + decals: + 3089: -31,-42 + 3100: -28,-51 + 3101: -28,-53 + 3123: -28,-61 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe @@ -1082,76 +1301,159 @@ entities: 447: 15,-29 448: 15,-27 456: 11,-32 - 1011: 28,9 - 1020: 26,2 - 1026: 31,1 - 1161: 12,-7 + 1008: 28,9 + 1017: 26,2 + 1023: 31,1 + 1158: 12,-7 + 2646: 11,-44 + 2650: 14,-43 + 3127: -30,-51 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelInnerSw + decals: + 3093: -27,-42 + 3099: -30,-51 + 3102: -30,-53 + 3122: -30,-61 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: 451: 10,-29 455: 14,-32 - 1019: 28,2 - 1025: 34,1 + 1016: 28,2 + 1022: 34,1 + 2645: 14,-44 + 2648: 11,-43 + 2797: 24,-18 + 3126: -28,-51 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelLineE + decals: + 3071: -31,-60 + 3072: -31,-59 + 3073: -31,-58 + 3074: -31,-57 + 3075: -31,-56 + 3076: -31,-55 + 3077: -31,-54 + 3078: -31,-53 + 3079: -31,-52 + 3080: -31,-51 + 3081: -31,-50 + 3082: -31,-49 + 3083: -31,-48 + 3084: -31,-47 + 3085: -31,-46 + 3086: -31,-45 + 3087: -31,-44 + 3088: -31,-43 + 3108: -31,-61 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: 405: 15,-22 - 1088: 7,19 - 1170: -2,-5 - 1174: -21,-17 - 1180: -15,-20 - 1185: -6,-12 + 1085: 7,19 + 1167: -2,-5 + 1171: -21,-17 + 1177: -15,-20 + 1182: -6,-12 + 2686: 1,-9 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelLineN + decals: + 3112: -30,-62 + 3113: -29,-62 + 3114: -28,-62 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: 407: 16,-22 - 1083: 8,18 - 1084: 9,18 - 1085: 10,18 - 1166: 16,-23 - 1167: -1,-6 - 1168: 0,-6 - 1169: 1,-6 - 1176: -20,-18 - 1179: -14,-21 + 1080: 8,18 + 1081: 9,18 + 1082: 10,18 + 1163: 16,-23 + 1164: -1,-6 + 1165: 0,-6 + 1166: 1,-6 + 1173: -20,-18 + 1176: -14,-21 + 2672: -21,-5 + 3051: -29,-52 + 3306: 23,-8 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelLineS + decals: + 3090: -30,-42 + 3091: -29,-42 + 3092: -28,-42 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 1175: -20,-16 - 1184: -5,-11 + 1172: -20,-16 + 1181: -5,-11 + 2673: -21,-3 + 2685: 2,-8 + 3052: -29,-52 + 3308: 23,-6 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelLineW + decals: + 3054: -27,-44 + 3055: -27,-45 + 3056: -27,-46 + 3057: -27,-47 + 3058: -27,-48 + 3059: -27,-49 + 3060: -27,-50 + 3061: -27,-51 + 3062: -27,-52 + 3063: -27,-53 + 3064: -27,-54 + 3065: -27,-55 + 3066: -27,-56 + 3067: -27,-57 + 3068: -27,-58 + 3069: -27,-59 + 3070: -27,-60 + 3094: -27,-43 + 3109: -27,-61 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: 406: 17,-22 - 1089: 11,19 - 1171: 2,-5 - 1181: -13,-20 - 1186: -4,-12 + 1086: 11,19 + 1168: 2,-5 + 1178: -13,-20 + 1183: -4,-12 + 2671: -20,-4 + 2687: 3,-9 + 3307: 24,-7 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 1391: -8,25 + 1387: -8,25 - node: color: '#FFFFFFFF' id: BrickTileWhiteBox decals: - 1981: -27,-44 - 1982: -29,-42 - 1983: -31,-51 - 1984: -29,-52 - 1985: -27,-51 - 2000: -29,-38 - 2001: -29,-34 - 2014: -31,-61 - 2015: -27,-61 - 2016: -31,-44 + 1991: -29,-38 + 1992: -29,-34 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteCornerNe + decals: + 2990: -27,-42 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe @@ -1162,8 +1464,13 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 1397: -7,27 - 1398: -6,26 + 1393: -7,27 + 1394: -6,26 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteCornerNw + decals: + 2993: -31,-42 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -1174,8 +1481,13 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 1395: -10,26 - 1396: -9,27 + 1391: -10,26 + 1392: -9,27 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteCornerSe + decals: + 3121: -27,-62 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe @@ -1186,8 +1498,13 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 1399: -7,23 - 1400: -6,24 + 1395: -7,23 + 1396: -6,24 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteCornerSw + decals: + 3117: -31,-62 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw @@ -1197,13 +1514,19 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 1393: -9,23 - 1394: -10,24 + 1389: -9,23 + 1390: -10,24 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: 484: 2,-31 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteInnerNe + decals: + 3031: -30,-51 + 3105: -30,-61 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe @@ -1215,16 +1538,23 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1401: -7,26 + 1397: -7,26 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 1086: 7,18 - 1164: 15,-23 - 1172: -2,-6 - 1177: -21,-18 - 1182: -15,-21 + 1083: 7,18 + 1161: 15,-23 + 1169: -2,-6 + 1174: -21,-18 + 1179: -15,-21 + 2680: 38,20 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteInnerNw + decals: + 3030: -28,-51 + 3107: -28,-61 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw @@ -1236,15 +1566,21 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 1404: -9,26 + 1400: -9,26 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 1087: 11,18 - 1165: 17,-23 - 1173: 2,-6 - 1183: -13,-21 + 1084: 11,18 + 1162: 17,-23 + 1170: 2,-6 + 1180: -13,-21 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteInnerSe + decals: + 3028: -30,-53 + 3041: -30,-43 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe @@ -1255,13 +1591,20 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1402: -7,24 + 1398: -7,24 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 1178: -21,-16 - 1188: -6,-11 + 1175: -21,-16 + 1185: -6,-11 + 2681: 38,22 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteInnerSw + decals: + 3027: -28,-53 + 3040: -28,-43 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw @@ -1272,17 +1615,55 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1403: -9,24 + 1399: -9,24 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 1187: -4,-11 + 1184: -4,-11 + 2678: 45,22 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteLineE + decals: + 2972: -27,-60 + 2973: -27,-59 + 2974: -27,-58 + 2975: -27,-57 + 2976: -27,-56 + 2977: -27,-55 + 2978: -27,-54 + 2979: -27,-53 + 2980: -27,-52 + 2981: -27,-51 + 2982: -27,-50 + 2983: -27,-49 + 2984: -27,-48 + 2985: -27,-47 + 2986: -27,-46 + 2987: -27,-45 + 2988: -27,-44 + 2989: -27,-43 + 3012: -30,-54 + 3013: -30,-55 + 3014: -30,-57 + 3015: -30,-56 + 3016: -30,-58 + 3017: -30,-59 + 3018: -30,-60 + 3042: -30,-44 + 3043: -30,-45 + 3044: -30,-46 + 3045: -30,-47 + 3046: -30,-48 + 3047: -30,-49 + 3048: -30,-50 + 3110: -27,-61 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 1406: -6,25 + 1402: -6,25 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1296,6 +1677,18 @@ entities: 442: 15,-30 457: 11,-33 564: 11,-41 + 2635: 14,-44 + 2638: 11,-45 + 2679: 38,21 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteLineN + decals: + 2991: -28,-42 + 2992: -30,-42 + 3029: -29,-51 + 3053: -29,-42 + 3106: -29,-61 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -1305,7 +1698,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1407: -8,27 + 1403: -8,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -1313,8 +1706,20 @@ entities: 410: 9,-31 445: 16,-29 446: 16,-31 - 566: 12,-42 - 567: 13,-42 + 565: 12,-42 + 566: 13,-42 + 2636: 15,-45 + 2639: 10,-45 + 2794: 23,-20 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteLineS + decals: + 3026: -29,-53 + 3039: -29,-43 + 3118: -30,-62 + 3119: -29,-62 + 3120: -28,-62 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -1325,7 +1730,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1392: -8,23 + 1388: -8,23 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -1340,11 +1745,57 @@ entities: 444: 16,-27 453: 12,-32 454: 13,-32 + 2637: 15,-43 + 2641: 10,-43 + 2642: 12,-44 + 2643: 13,-44 + 2676: 44,22 + 2682: 39,22 + 2683: 40,22 + 2684: 41,22 + 2796: 23,-18 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteLineW + decals: + 2994: -31,-43 + 2995: -31,-44 + 2996: -31,-45 + 2997: -31,-46 + 2998: -31,-47 + 2999: -31,-48 + 3000: -31,-49 + 3001: -31,-50 + 3002: -31,-51 + 3003: -31,-52 + 3004: -31,-53 + 3005: -31,-54 + 3006: -31,-56 + 3007: -31,-55 + 3008: -31,-57 + 3009: -31,-58 + 3010: -31,-59 + 3011: -31,-60 + 3019: -28,-60 + 3020: -28,-59 + 3021: -28,-58 + 3022: -28,-57 + 3023: -28,-56 + 3024: -28,-55 + 3025: -28,-54 + 3032: -28,-50 + 3033: -28,-49 + 3034: -28,-48 + 3035: -28,-47 + 3036: -28,-46 + 3037: -28,-45 + 3038: -28,-44 + 3111: -31,-61 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 1405: -10,25 + 1401: -10,25 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -1357,13 +1808,17 @@ entities: 411: 10,-30 412: 9,-30 458: 14,-33 - 565: 14,-41 + 2634: 14,-41 + 2640: 11,-44 + 2644: 14,-45 + 2677: 45,21 + 2793: 24,-19 - node: color: '#FFFFFFFF' id: BushAOne decals: 516: -10.358366,-21.710321 - 570: -7.869849,-11.104276 + 567: -7.869849,-11.104276 - node: color: '#FFFFFFFF' id: BushAThree @@ -1375,7 +1830,7 @@ entities: decals: 92: 2,-6 93: 2,-5 - 1825: -12.001242,23.064625 + 1821: -12.001242,23.064625 - node: color: '#FFFFFFFF' id: BushCOne @@ -1394,8 +1849,8 @@ entities: 90: 3,-5 167: -15.5479965,-6.025156 522: -10.514616,-22.507196 - 1832: -13.041373,25.3615 - 1845: -18.204708,15.1442795 + 1828: -13.041373,25.3615 + 1841: -18.204708,15.1442795 - node: color: '#FFFFFFFF' id: Busha1 @@ -1419,17 +1874,17 @@ entities: decals: 72: 10,-9 171: -17.34985,-8.993906 - 884: -22,1 - 885: -10,-13 - 886: -4,-2 + 881: -22,1 + 882: -10,-13 + 883: -4,-2 - node: color: '#FFFFFFFF' id: Bushb2 decals: 547: -16.911293,-20.27151 - 1055: 11.018109,-0.026574612 - 1824: -12.985617,24.33025 - 1846: -20.345333,12.7849045 + 1052: 11.018109,-0.026574612 + 1820: -12.985617,24.33025 + 1842: -20.345333,12.7849045 - node: color: '#FFFFFFFF' id: Bushb3 @@ -1438,16 +1893,16 @@ entities: 166: -17.657372,-6.447031 174: -14.398652,-8.067273 519: -11.483366,-20.304071 - 571: -8.697974,-11.385526 - 1034: 4.2073364,17.93196 - 1966: -30.736502,-27.757978 + 568: -8.697974,-11.385526 + 1031: 4.2073364,17.93196 + 1962: -30.736502,-27.757978 - node: color: '#FFFFFFFF' id: Bushc1 decals: 521: -10.045866,-20.882196 - 1056: 9.877484,-0.5109496 - 1823: -12.110617,26.26775 + 1053: 9.877484,-0.5109496 + 1819: -12.110617,26.26775 - node: color: '#FFFFFFFF' id: Bushc2 @@ -1455,7 +1910,7 @@ entities: 70: 10,-8 71: 8,-7 524: -10.311491,-23.475946 - 883: -22,4 + 880: -22,4 - node: color: '#FFFFFFFF' id: Bushc3 @@ -1487,12 +1942,12 @@ entities: color: '#FFFFFFFF' id: Bushk1 decals: - 1033: 2.7854614,18.103834 + 1030: 2.7854614,18.103834 - node: color: '#FFFFFFFF' id: Bushk2 decals: - 1032: 6,19 + 1029: 6,19 - node: color: '#FFFFFFFF' id: Bushm1 @@ -1513,7 +1968,7 @@ entities: 223: -42,-2 226: -42,-5 230: -42,-9 - 2008: -39,-24 + 1999: -39,-24 - node: color: '#EFB34196' id: ConcreteTrimCornerNe @@ -1540,7 +1995,7 @@ entities: 222: -44,-2 225: -44,-5 229: -44,-9 - 2011: -42,-24 + 2002: -42,-24 - node: color: '#EFB34196' id: ConcreteTrimCornerNw @@ -1568,7 +2023,7 @@ entities: 221: -42,-10 224: -42,-3 228: -42,-7 - 2003: -39,-27 + 1994: -39,-27 - node: color: '#EFB34196' id: ConcreteTrimCornerSe @@ -1596,7 +2051,7 @@ entities: 220: -44,-10 227: -44,-7 231: -44,-3 - 2002: -42,-27 + 1993: -42,-27 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSw @@ -1609,12 +2064,12 @@ entities: color: '#A4610696' id: ConcreteTrimInnerNe decals: - 1498: -23,35 + 1494: -23,35 - node: color: '#A4610696' id: ConcreteTrimInnerNw decals: - 1499: -14,35 + 1495: -14,35 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw @@ -1625,7 +2080,7 @@ entities: color: '#A4610696' id: ConcreteTrimInnerSe decals: - 1497: -23,40 + 1493: -23,40 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSe @@ -1635,7 +2090,7 @@ entities: color: '#A4610696' id: ConcreteTrimInnerSw decals: - 1575: -14,40 + 1571: -14,40 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw @@ -1654,10 +2109,10 @@ entities: color: '#A4610696' id: ConcreteTrimLineE decals: - 1479: -23,39 - 1480: -23,38 - 1481: -23,37 - 1482: -23,36 + 1475: -23,39 + 1476: -23,38 + 1477: -23,37 + 1478: -23,36 - node: color: '#DE3A3A96' id: ConcreteTrimLineE @@ -1667,8 +2122,8 @@ entities: 198: -37,-19 199: -37,-18 218: -42,-6 - 2006: -39,-26 - 2007: -39,-25 + 1997: -39,-26 + 1998: -39,-25 - node: color: '#EFB34196' id: ConcreteTrimLineE @@ -1707,14 +2162,14 @@ entities: color: '#A4610696' id: ConcreteTrimLineN decals: - 1483: -22,35 - 1484: -21,35 - 1485: -20,35 - 1486: -19,35 - 1487: -18,35 - 1488: -17,35 - 1489: -16,35 - 1490: -15,35 + 1479: -22,35 + 1480: -21,35 + 1481: -20,35 + 1482: -19,35 + 1483: -18,35 + 1484: -17,35 + 1485: -16,35 + 1486: -15,35 - node: color: '#DE3A3A96' id: ConcreteTrimLineN @@ -1723,8 +2178,8 @@ entities: 194: -43,-17 195: -44,-17 196: -38,-17 - 2009: -41,-24 - 2010: -40,-24 + 2000: -41,-24 + 2001: -40,-24 - node: color: '#EFB34196' id: ConcreteTrimLineN @@ -1765,17 +2220,17 @@ entities: color: '#A4610696' id: ConcreteTrimLineS decals: - 1495: -20,40 - 1496: -19,40 - 1572: -15,40 - 1573: -17,40 - 1574: -16,40 + 1491: -20,40 + 1492: -19,40 + 1568: -15,40 + 1569: -17,40 + 1570: -16,40 - node: cleanable: True color: '#A4610696' id: ConcreteTrimLineS decals: - 1520: -21,40 + 1516: -21,40 - node: color: '#DE3A3A96' id: ConcreteTrimLineS @@ -1784,8 +2239,8 @@ entities: 189: -43,-20 190: -42,-20 197: -38,-20 - 2004: -41,-27 - 2005: -40,-27 + 1995: -41,-27 + 1996: -40,-27 - node: color: '#EFB34196' id: ConcreteTrimLineS @@ -1815,10 +2270,10 @@ entities: color: '#A4610696' id: ConcreteTrimLineW decals: - 1491: -14,36 - 1492: -14,37 - 1493: -14,38 - 1494: -14,39 + 1487: -14,36 + 1488: -14,37 + 1489: -14,38 + 1490: -14,39 - node: color: '#DE3A3A96' id: ConcreteTrimLineW @@ -1828,7 +2283,7 @@ entities: 200: -39,-19 201: -39,-18 219: -44,-6 - 2012: -42,-26 + 2003: -42,-26 - node: color: '#EFB34196' id: ConcreteTrimLineW @@ -1854,8 +2309,12 @@ entities: id: Dirt decals: 460: 18,-31 - 1583: -54,24 - 1584: -54,25 + 1579: -54,24 + 1580: -54,25 + 2021: -23,-3 + 2022: -25,-4 + 2023: -23,-4 + 2024: -25,-3 - node: cleanable: True color: '#FFFFFFFF' @@ -1889,118 +2348,139 @@ entities: 495: 18,-37 496: 20,-33 497: 23,-31 - 902: 30,14 - 907: 37,7 - 908: 36,6 - 913: 37,8 - 914: 35,7 - 918: 20,13 - 919: 22,2 - 920: 20,3 - 930: 44,-2 - 931: 44,-1 - 937: 42,-1 - 938: 31,-44 - 939: 31,-46 - 940: 32,-45 - 945: 43,9 - 948: 43,10 - 949: 34,42 - 950: 33,41 - 951: 34,41 - 952: 32,42 - 1061: -8,8 - 1062: -10,7 - 1063: -9,7 - 1068: -9,9 - 1098: 16,-4 - 1099: 16,-5 - 1100: 15,-5 - 1101: 15,-4 - 1292: 28,31 - 1293: 27,31 - 1294: 28,32 - 1295: 29,31 - 1296: 28,30 - 1338: -3,-43 - 1339: -4,-43 - 1340: -3,-44 - 1365: -48,2 - 1366: -47,5 - 1367: -45,3 - 1371: -48,5 - 1372: -45,4 - 1373: -49,3 - 1374: -46,3 - 1384: -40,3 - 1385: -38,2 - 1386: -41,4 - 1387: -37,2 - 1388: -39,2 - 1389: -40,2 - 1390: -41,3 - 1414: -8,20 - 1415: -9,21 - 1416: -8,21 - 1462: -9,41 - 1463: -8,41 - 1464: -7,41 - 1465: -6,41 - 1466: -5,41 - 1467: -5,41 - 1468: -6,41 - 1469: -7,41 - 1470: -8,41 - 1471: -9,41 - 1478: -4,41 - 1506: -23,35 - 1507: -14,39 - 1508: -20,40 - 1509: -18,35 - 1510: -21,38 - 1511: -16,39 - 1516: -24,41 - 1590: -6,-35 - 1592: -8,-36 - 1595: -7,-36 - 1597: -9,-38 - 1599: -6,-38 - 1661: -30,22 - 1662: -23,19 - 1663: -22,21 - 1664: -30,18 - 1672: -28,25 - 1673: -31,25 - 1674: -29,26 - 1678: -35,20 - 1679: -37,22 - 1680: -35,23 - 1681: -38,18 - 1686: -41,27 - 1687: -43,25 - 1688: -46,27 - 1695: -41,21 - 1696: -44,19 - 1697: -36,19 - 1698: -43,17 - 1699: -40,14 - 1700: -52,20 - 1701: -55,19 - 1728: -28,32 - 1729: -28,31 - 1730: -29,32 - 1811: 11,45 - 1812: 17,46 - 1813: 21,47 - 1814: 24,45 - 1820: 16,51 - 1821: 12,53 - 1822: 12,47 + 899: 30,14 + 904: 37,7 + 905: 36,6 + 910: 37,8 + 911: 35,7 + 915: 20,13 + 916: 22,2 + 917: 20,3 + 927: 44,-2 + 928: 44,-1 + 934: 42,-1 + 935: 31,-44 + 936: 31,-46 + 937: 32,-45 + 942: 43,9 + 945: 43,10 + 946: 34,42 + 947: 33,41 + 948: 34,41 + 949: 32,42 + 1058: -8,8 + 1059: -10,7 + 1060: -9,7 + 1065: -9,9 + 1095: 16,-4 + 1096: 16,-5 + 1097: 15,-5 + 1098: 15,-4 + 1289: 28,31 + 1290: 27,31 + 1291: 28,32 + 1292: 29,31 + 1293: 28,30 + 1335: -3,-43 + 1336: -4,-43 + 1337: -3,-44 + 1362: -48,2 + 1363: -47,5 + 1364: -45,3 + 1368: -48,5 + 1369: -45,4 + 1370: -49,3 + 1371: -46,3 + 1381: -40,3 + 1382: -38,2 + 1383: -37,2 + 1384: -39,2 + 1385: -40,2 + 1386: -41,3 + 1410: -8,20 + 1411: -9,21 + 1412: -8,21 + 1458: -9,41 + 1459: -8,41 + 1460: -7,41 + 1461: -6,41 + 1462: -5,41 + 1463: -5,41 + 1464: -6,41 + 1465: -7,41 + 1466: -8,41 + 1467: -9,41 + 1474: -4,41 + 1502: -23,35 + 1503: -14,39 + 1504: -20,40 + 1505: -18,35 + 1506: -21,38 + 1507: -16,39 + 1512: -24,41 + 1586: -6,-35 + 1588: -8,-36 + 1591: -7,-36 + 1593: -9,-38 + 1595: -6,-38 + 1657: -30,22 + 1658: -23,19 + 1659: -22,21 + 1660: -30,18 + 1668: -28,25 + 1669: -31,25 + 1670: -29,26 + 1674: -35,20 + 1675: -37,22 + 1676: -35,23 + 1677: -38,18 + 1682: -41,27 + 1683: -43,25 + 1684: -46,27 + 1691: -41,21 + 1692: -44,19 + 1693: -36,19 + 1694: -43,17 + 1695: -40,14 + 1696: -52,20 + 1697: -55,19 + 1724: -28,32 + 1725: -28,31 + 1726: -29,32 + 1807: 11,45 + 1808: 17,46 + 1809: 21,47 + 1810: 24,45 + 1816: 16,51 + 1817: 12,53 + 1818: 12,47 + 3142: -30,-44 + 3143: -28,-47 + 3144: -30,-52 + 3145: -28,-56 + 3146: -30,-57 + 3147: -31,-63 + 3148: -26,-62 + 3149: -26,-58 + 3150: -31,-54 + 3151: -26,-47 + 3152: -26,-42 + 3153: -29,-38 + 3154: -30,-34 + 3155: -28,-34 + 3172: -28,-61 + 3450: 12,-63 + 3451: 12,-63 + 3452: 11,-62 + 3453: 13,-62 + 3454: 13,-63 + 3455: 13,-64 + 3456: 11,-64 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 1585: -54,24 + 1581: -54,24 - node: cleanable: True color: '#FFFFFFFF' @@ -2012,41 +2492,50 @@ entities: 402: 19,-20 489: 8,-30 498: 23,-29 - 903: 33,19 - 904: 31,16 - 909: 37,7 - 915: 31,5 - 921: 22,0 - 932: 44,-2 - 941: 32,-44 - 946: 43,5 - 953: 33,41 - 1064: -8,7 - 1097: 17,-5 - 1102: 16,-5 - 1105: 15,-4 - 1297: 28,31 - 1341: -3,-44 - 1364: -47,3 - 1472: -9,41 - 1476: -5,41 - 1512: -21,41 - 1601: -9,-38 - 1614: -6,-38 - 1615: -9,-37 - 1665: -31,18 - 1669: -22,18 - 1675: -31,25 - 1682: -34,18 - 1689: -49,25 - 1702: -57,19 - 1731: -28,31 - 1815: 18,45 + 900: 33,19 + 901: 31,16 + 906: 37,7 + 912: 31,5 + 918: 22,0 + 929: 44,-2 + 938: 32,-44 + 943: 43,5 + 950: 33,41 + 1061: -8,7 + 1094: 17,-5 + 1099: 16,-5 + 1102: 15,-4 + 1294: 28,31 + 1338: -3,-44 + 1361: -47,3 + 1468: -9,41 + 1472: -5,41 + 1508: -21,41 + 1597: -9,-38 + 1610: -6,-38 + 1611: -9,-37 + 1661: -31,18 + 1665: -22,18 + 1671: -31,25 + 1678: -34,18 + 1685: -49,25 + 1698: -57,19 + 1727: -28,31 + 1811: 18,45 + 3156: -32,-52 + 3458: 12,-62 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3168: -30,-47 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 1588: -53,25 + 1584: -53,25 - node: cleanable: True color: '#FFFFFFFF' @@ -2056,32 +2545,42 @@ entities: 251: -45,-5 346: -29,-8 404: 20,-18 - 910: 36,8 - 923: 21,2 - 934: 44,-1 - 944: 31,-46 - 955: 34,41 - 1066: -9,7 - 1300: 27,31 - 1343: -3,-43 - 1344: -13,-38 - 1369: -49,3 - 1475: -6,41 - 1515: -15,36 - 1517: -26,41 - 1613: -6,-34 - 1666: -29,20 - 1676: -31,26 - 1684: -35,23 - 1690: -40,25 - 1703: -51,20 - 1816: 12,51 + 907: 36,8 + 920: 21,2 + 931: 44,-1 + 941: 31,-46 + 952: 34,41 + 1063: -9,7 + 1297: 27,31 + 1340: -3,-43 + 1341: -13,-38 + 1366: -49,3 + 1471: -6,41 + 1511: -15,36 + 1513: -26,41 + 1609: -6,-34 + 1662: -29,20 + 1672: -31,26 + 1680: -35,23 + 1686: -40,25 + 1699: -51,20 + 1812: 12,51 + 3157: -26,-55 + 3162: -26,-43 + 3459: 11,-64 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3169: -29,-40 - node: color: '#FFFFFFFF' id: DirtLight decals: 459: 4,-27 - 1586: -55,25 + 1582: -55,25 - node: cleanable: True color: '#FFFFFFFF' @@ -2091,36 +2590,50 @@ entities: 343: -30,-6 345: -31,-8 403: 16,-18 - 905: 30,18 - 906: 20,13 - 911: 37,5 - 916: 33,9 - 924: 22,4 - 935: 43,-1 - 936: 43,-1 - 943: 32,-45 - 956: 32,42 - 1065: -10,7 - 1104: 15,-5 - 1299: 28,32 - 1370: -49,2 - 1474: -7,41 - 1514: -19,39 - 1611: -6,-35 - 1621: -6,-38 - 1667: -23,22 - 1671: -24,23 - 1685: -36,26 - 1691: -45,25 - 1733: -29,31 - 1817: 15,51 - 1818: 11,49 + 902: 30,18 + 903: 20,13 + 908: 37,5 + 913: 33,9 + 921: 22,4 + 932: 43,-1 + 933: 43,-1 + 940: 32,-45 + 953: 32,42 + 1062: -10,7 + 1101: 15,-5 + 1296: 28,32 + 1367: -49,2 + 1470: -7,41 + 1510: -19,39 + 1607: -6,-35 + 1617: -6,-38 + 1663: -23,22 + 1667: -24,23 + 1681: -36,26 + 1687: -45,25 + 1729: -29,31 + 1813: 15,51 + 1814: 11,49 + 3158: -29,-64 + 3161: -26,-52 + 3163: -30,-49 + 3164: -28,-58 + 3165: -30,-53 + 3167: -28,-51 + 3457: 11,-63 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 3170: -26,-53 - node: color: '#FFFFFFFF' id: DirtMedium decals: 461: 23,-27 - 1587: -54,25 + 1583: -54,25 - node: cleanable: True color: '#FFFFFFFF' @@ -2128,55 +2641,132 @@ entities: decals: 249: -44,-10 342: -29,-10 - 912: 37,6 - 917: 34,8 - 922: 19,0 - 933: 43,-2 - 942: 31,-44 - 947: 43,9 - 954: 34,42 - 1067: -9,8 - 1103: 16,-4 - 1298: 28,30 - 1342: -4,-44 - 1368: -47,1 - 1473: -8,41 - 1513: -16,36 - 1607: -8,-36 - 1618: -6,-34 - 1668: -31,23 - 1670: -24,18 - 1677: -30,25 - 1683: -39,20 - 1692: -46,25 - 1693: -43,19 - 1732: -28,32 - 1819: 18,49 + 909: 37,6 + 914: 34,8 + 919: 19,0 + 930: 43,-2 + 939: 31,-44 + 944: 43,9 + 951: 34,42 + 1064: -9,8 + 1100: 16,-4 + 1295: 28,30 + 1339: -4,-44 + 1365: -47,1 + 1469: -8,41 + 1509: -16,36 + 1603: -8,-36 + 1614: -6,-34 + 1664: -31,23 + 1666: -24,18 + 1673: -30,25 + 1679: -39,20 + 1688: -46,25 + 1689: -43,19 + 1728: -28,32 + 1815: 18,49 + 3159: -32,-63 + 3160: -26,-52 + 3166: -27,-45 + 3171: -29,-61 + 3460: 13,-64 + 3461: 12,-63 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtMedium decals: - 1694: -43,20 + 1690: -43,20 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 3542: 23.413275,-53.132713 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 3477: 10.139433,-48.29941 + 3478: 10.311308,-47.98691 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 3539: 26.02265,-50.86709 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 3540: 26.288275,-51.070213 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 3519: 17.780872,-34.164684 + 3520: 17.327747,-34.58656 + 3521: 17.030872,-35.05531 + 3522: 18.249622,-33.89906 + 3541: 23.08515,-52.851463 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 3468: 6.6563807,-47.59098 + 3469: 6.4376307,-47.856606 + 3506: 9.901302,-31.492397 + 3538: 27.110193,-52.382713 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 3484: 21.1814,-39.060513 + 3485: 21.46265,-39.060513 + 3504: 10.061562,-31.133022 + 3505: 10.186562,-31.320522 + 3537: 27.141443,-52.757713 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 3535: 25.275654,-54.21084 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 3534: 22.940956,-51.632713 + 3536: 25.766443,-54.038963 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 3464: 9.437631,-47.106606 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 3495: 10.403248,-41.94449 + 3498: 7.63974,-33.929897 + 3499: 8.07724,-34.070522 + 3533: 22.675331,-51.570213 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 2017: 3,-34 - 2018: 3,-33 + 2005: 3,-34 + 2006: 3,-33 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 713: 23,16 - 714: 24,16 - 715: 25,16 - 716: 25,17 - 717: 24,17 - 718: 23,17 - 719: 22,17 - 720: 22,16 + 710: 23,16 + 711: 24,16 + 712: 25,16 + 713: 25,17 + 714: 24,17 + 715: 23,17 + 716: 22,17 + 717: 22,16 - node: color: '#FFFFFFFF' id: Grassa1 @@ -2186,21 +2776,25 @@ entities: 292: -36.535534,-21.838291 293: -35.70741,-23.010166 510: -9.326637,-26.66923 - 865: -18,-10 - 1833: -13.900748,25.049 - 1844: -19.079708,14.0192795 - 1850: -19.110958,15.0661545 + 862: -18,-10 + 1829: -13.900748,25.049 + 1840: -19.079708,14.0192795 + 1846: -19.110958,15.0661545 + 3472: 6.9845057,-46.767155 + 3508: 10.076551,-32.956703 + 3513: 14.021595,-31.99321 - node: color: '#FFFFFFFF' id: Grassa2 decals: 89: 4,-5 499: -7.342942,-23.558205 - 1440: 8,13 - 1841: -19.532833,12.985665 - 1869: 3.30201,18.899693 - 1969: -27.736502,-23.761871 - 1975: -31.861477,-24.039827 + 1436: 8,13 + 1837: -19.532833,12.985665 + 1865: 3.30201,18.899693 + 1965: -27.736502,-23.761871 + 1971: -31.861477,-24.039827 + 3502: 7.8774595,-32.898647 - node: color: '#FFFFFFFF' id: Grassa3 @@ -2210,13 +2804,15 @@ entities: 291: -36.441784,-22.557041 500: -6.462534,-23.32383 538: -16.099081,-20.457111 - 866: -14,-9 - 880: -22,3 - 881: -21,3 - 882: -23,4 - 1046: 11.714785,7.8319244 - 1054: 9.893109,0.19217539 - 1847: -16.704708,16.066154 + 863: -14,-9 + 877: -22,3 + 878: -21,3 + 879: -23,4 + 1043: 11.714785,7.8319244 + 1051: 9.893109,0.19217539 + 1843: -16.704708,16.066154 + 3465: 7.4845057,-47.77848 + 3524: 17.936258,-33.159214 - node: color: '#FFFFFFFF' id: Grassa4 @@ -2226,10 +2822,12 @@ entities: 77: 4,-10 85: 12,-11 509: -8.525329,-26.63798 - 1048: 6.8371563,13.806423 - 1051: 14.0357895,17.473137 - 1447: 15,17 - 1976: -27.115576,-28.18021 + 1045: 6.8371563,13.806423 + 1048: 14.0357895,17.473137 + 1443: 15,17 + 1972: -27.115576,-28.18021 + 3462: 8.360676,-47.450356 + 3475: 9.208554,-48.48691 - node: color: '#FFFFFFFF' id: Grassa5 @@ -2237,9 +2835,17 @@ entities: 297: -36.824215,-23.713291 503: -5.526578,-21.69883 504: -8.441935,-24.408884 - 875: -5,-3 - 1829: -11.494498,22.095875 - 1843: -20.032833,13.9567795 + 872: -5,-3 + 1825: -11.494498,22.095875 + 1839: -20.032833,13.9567795 + 3470: 6.2032557,-47.012856 + 3482: 15.281494,-47.994587 + 3483: 21.542349,-40.005238 + 3486: 20.277061,-40.085114 + 3487: 21.183311,-40.81949 + 3496: 8.186615,-35.023647 + 3527: 16.50198,-32.753704 + 3528: 9.135788,-41.09594 - node: color: '#FFFFFFFF' id: Grassb1 @@ -2250,24 +2856,36 @@ entities: 505: -7.854138,-24.666008 532: -11.311491,-23.757196 560: -12.63809,-24.05366 - 574: -7.557349,-10.666776 - 867: -14,-6 - 868: -13,-7 - 1037: 4.7073364,19.02571 - 1448: 2,18 - 1828: -12.360617,22.64275 - 1834: -14.353873,24.70525 - 1839: -13.166373,22.639381 - 1840: -12.275748,21.842506 - 1974: -28.033377,-26.121246 - 1979: -26.84995,-30.808014 - 1980: -37.480503,-22.546843 + 571: -7.557349,-10.666776 + 864: -14,-6 + 865: -13,-7 + 1034: 4.7073364,19.02571 + 1444: 2,18 + 1824: -12.360617,22.64275 + 1830: -14.353873,24.70525 + 1835: -13.166373,22.639381 + 1836: -12.275748,21.842506 + 1970: -28.033377,-26.121246 + 1975: -26.84995,-30.808014 + 1976: -37.480503,-22.546843 + 3463: 9.281381,-47.669106 + 3471: 5.4220057,-47.048405 + 3488: 21.019756,-39.75699 + 3493: 15.134382,-40.960114 + 3497: 7.60849,-34.476772 + 3507: 9.04273,-34.054897 + 3509: 10.429746,-32.23883 + 3517: 15.44347,-32.55571 + 3543: 24.007025,-52.92959 + 3550: 27.10471,-51.47859 + 3556: 21.31276,-52.189213 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Grassb1 decals: 529: -9.342741,-21.397821 + 3523: 16.748758,-34.065464 - node: color: '#FFFFFFFF' id: Grassb2 @@ -2282,26 +2900,33 @@ entities: 533: -9.955027,-24.241262 534: -13.130331,-20.285236 557: -10.607389,-26.27241 - 578: -4.190379,-2.1612287 - 871: -19,-8 - 872: -7,-8 - 873: -6,-3 - 887: -24,5 - 888: -20,2 - 1036: 1.7698364,19.02571 - 1058: 11.611859,1.6296754 - 1059: 10.533734,-1.0421996 - 1060: 10.931298,-7.107482 - 1071: -6.290835,-0.4938903 - 1072: -6.6755114,-10.60518 - 1439: 12,0 - 1446: 12,18 - 1836: -11.760123,27.078793 - 1837: -12.494498,27.156918 - 1852: -20.673458,14.2849045 - 1854: -18.840294,16.049618 - 1855: -17.815937,16.756489 - 1870: 3.42701,17.899693 + 575: -4.190379,-2.1612287 + 868: -19,-8 + 869: -7,-8 + 870: -6,-3 + 884: -24,5 + 885: -20,2 + 1033: 1.7698364,19.02571 + 1055: 11.611859,1.6296754 + 1056: 10.533734,-1.0421996 + 1057: 10.931298,-7.107482 + 1068: -6.290835,-0.4938903 + 1069: -6.6755114,-10.60518 + 1435: 12,0 + 1442: 12,18 + 1832: -11.760123,27.078793 + 1833: -12.494498,27.156918 + 1848: -20.673458,14.2849045 + 1850: -18.840294,16.049618 + 1851: -17.815937,16.756489 + 1866: 3.42701,17.899693 + 3489: 19.738506,-39.97574 + 3490: 22.222881,-38.991364 + 3500: 6.918213,-33.929897 + 3501: 6.918213,-33.133022 + 3511: 8.960996,-31.70758 + 3546: 22.95615,-50.541664 + 3552: 26.592457,-53.939213 - node: color: '#FFFFFFFF' id: Grassb3 @@ -2319,20 +2944,26 @@ entities: 549: -15.958169,-20.943384 556: -11.319763,-26.08491 558: -12.341215,-24.538034 - 577: -5.0931168,-1.4737287 - 874: -7,-1 - 1038: 4.074179,18.77571 - 1049: 6.8215313,14.181423 - 1050: 13.8400345,17.009548 - 1069: -4.026391,-3.124024 - 1073: -7.7223864,-9.794033 - 1449: 4,17 - 1450: 1,19 - 1831: -12.197623,25.189625 - 1853: -20.532833,11.8786545 - 1968: -30.908377,-28.492353 - 1973: -29.252127,-23.793121 - 1977: -26.678076,-30.839264 + 574: -5.0931168,-1.4737287 + 871: -7,-1 + 1035: 4.074179,18.77571 + 1046: 6.8215313,14.181423 + 1047: 13.8400345,17.009548 + 1066: -4.026391,-3.124024 + 1070: -7.7223864,-9.794033 + 1445: 4,17 + 1446: 1,19 + 1827: -12.197623,25.189625 + 1849: -20.532833,11.8786545 + 1964: -30.908377,-28.492353 + 1969: -29.252127,-23.793121 + 1973: -26.678076,-30.839264 + 3467: 6.7345057,-48.34098 + 3473: 7.9688807,-46.704655 + 3512: 9.57795,-31.795576 + 3544: 21.850775,-53.132713 + 3547: 23.846775,-49.931713 + 3551: 24.427902,-54.048588 - node: color: '#FFFFFFFF' id: Grassb4 @@ -2346,32 +2977,47 @@ entities: 550: -15.240931,-20.880884 553: -10.194763,-25.788034 559: -12.51309,-25.02241 - 572: -7.791724,-11.713651 - 575: -7.041724,-11.416776 - 576: -5.6712418,-1.0206037 - 860: -9,-10 - 877: 12,-6 - 878: -21,0 - 879: -22,2 - 889: -23,0 - 1035: 2.3635864,19.05696 - 1047: 12.277285,8.238174 - 1052: 13.0201645,17.301262 - 1053: 11.158734,0.9109254 - 1057: 10.486859,1.2546754 - 1441: 8,14 - 1442: 6,15 - 1443: 13,7 - 1826: -12.204367,23.877125 - 1830: -11.713248,24.424 - 1835: -12.931998,26.235043 - 1838: -11.385123,25.360043 - 1842: -19.610958,12.119531 - 1848: -17.407833,16.097404 - 1851: -19.782833,14.8474045 - 1967: -31.564627,-27.820478 - 1972: -28.424002,-24.168121 - 1978: -27.146826,-31.042389 + 569: -7.791724,-11.713651 + 572: -7.041724,-11.416776 + 573: -5.6712418,-1.0206037 + 857: -9,-10 + 874: 12,-6 + 875: -21,0 + 876: -22,2 + 886: -23,0 + 1032: 2.3635864,19.05696 + 1044: 12.277285,8.238174 + 1049: 13.0201645,17.301262 + 1050: 11.158734,0.9109254 + 1054: 10.486859,1.2546754 + 1437: 8,14 + 1438: 6,15 + 1439: 13,7 + 1822: -12.204367,23.877125 + 1826: -11.713248,24.424 + 1831: -12.931998,26.235043 + 1834: -11.385123,25.360043 + 1838: -19.610958,12.119531 + 1844: -17.407833,16.097404 + 1847: -19.782833,14.8474045 + 1963: -31.564627,-27.820478 + 1968: -28.424002,-24.168121 + 1974: -27.146826,-31.042389 + 3466: 8.422006,-48.231606 + 3479: 10.280058,-46.963337 + 3491: 22.347881,-40.03824 + 3492: 14.368757,-40.81949 + 3503: 8.779606,-33.148647 + 3510: 11.257871,-31.83258 + 3514: 14.834095,-31.11821 + 3516: 14.31847,-33.008835 + 3518: 15.510696,-31.571335 + 3525: 17.420633,-32.95609 + 3529: 9.651413,-41.83571 + 3530: 7.088913,-40.038834 + 3548: 25.055456,-49.88484 + 3553: 27.061207,-53.626713 + 3555: 22.609634,-53.251713 - node: color: '#FFFFFFFF' id: Grassb5 @@ -2386,23 +3032,35 @@ entities: 551: -16.787802,-20.89651 554: -10.741638,-25.17866 555: -11.304138,-25.475534 - 573: -8.494849,-10.666776 - 861: -6,-10 - 862: -13,-13 - 863: -15,-14 - 864: -17,-11 - 869: -13,-5 - 870: -19,-11 - 876: -3,-4 - 1070: -5.36896,-2.3220153 - 1444: 11,10 - 1445: 13,16 - 1827: -12.969992,23.377125 - 1849: -18.126583,16.17553 - 1856: -17.057423,16.837753 - 1857: -19.75125,11.447966 - 1970: -27.424002,-24.574371 - 1971: -27.705252,-25.246246 + 570: -8.494849,-10.666776 + 858: -6,-10 + 859: -13,-13 + 860: -15,-14 + 861: -17,-11 + 866: -13,-5 + 867: -19,-11 + 873: -3,-4 + 1067: -5.36896,-2.3220153 + 1440: 11,10 + 1441: 13,16 + 1823: -12.969992,23.377125 + 1845: -18.126583,16.17553 + 1852: -17.057423,16.837753 + 1853: -19.75125,11.447966 + 1966: -27.424002,-24.574371 + 1967: -27.705252,-25.246246 + 3474: 8.781381,-46.53278 + 3476: 9.233183,-49.23691 + 3480: 9.873808,-46.182087 + 3481: 14.907272,-48.010212 + 3494: 10.190399,-41.19449 + 3515: 14.81847,-32.99321 + 3526: 15.736355,-33.23808 + 3531: 6.447997,-39.945084 + 3532: 22.372824,-52.447784 + 3545: 21.959747,-51.916664 + 3549: 24.461706,-50.19734 + 3554: 27.885162,-53.142338 - node: color: '#FFFFFFFF' id: Grassd1 @@ -2414,45 +3072,51 @@ entities: id: Grassd2 decals: 358: 12.848926,-25.012222 - 1040: 10.109772,10.290092 - 1041: 9.859772,10.868217 + 1037: 10.109772,10.290092 + 1038: 9.859772,10.868217 + 2665: 2.2949767,-24.30851 + 2667: 2.3106017,-23.15226 - node: color: '#FFFFFFFF' id: Grassd3 decals: 360: 12.020801,-24.434097 361: 13.223926,-24.621597 - 1045: 9.178905,11.571342 - 1871: 14.011263,12.980376 - 1872: 14.214388,12.964751 - 1873: 13.823763,12.949126 - 1874: 11.995638,14.027251 - 1875: 12.308138,13.949126 - 1876: 11.870638,13.964751 + 1042: 9.178905,11.571342 + 1867: 14.011263,12.980376 + 1868: 14.214388,12.964751 + 1869: 13.823763,12.949126 + 1870: 11.995638,14.027251 + 1871: 12.308138,13.949126 + 1872: 11.870638,13.964751 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 1043: 8.411603,11.805717 - 1074: 11.994294,13.963815 + 1040: 8.411603,11.805717 + 1071: 11.994294,13.963815 + 2666: 3.5762267,-24.05851 + 2670: 2.0137267,-25.04804 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 1044: 7.630353,11.899467 + 1041: 7.630353,11.899467 + 2668: 3.1074767,-22.511635 + 2669: 2.8574767,-24.93351 - node: color: '#FFFFFFFF' id: Grasse3 decals: 359: 11.880176,-25.246597 - 1039: 9.609772,9.877094 - 1042: 8.812897,10.727592 - 1858: -17.834185,14.04186 - 1859: -17.146685,14.04186 - 1860: -16.990435,14.76061 - 1861: -16.97481,14.963735 - 1862: -17.03731,13.94811 - 1863: -17.78731,13.932485 + 1036: 9.609772,9.877094 + 1039: 8.812897,10.727592 + 1854: -17.834185,14.04186 + 1855: -17.146685,14.04186 + 1856: -16.990435,14.76061 + 1857: -16.97481,14.963735 + 1858: -17.03731,13.94811 + 1859: -17.78731,13.932485 - node: color: '#DE3A3A96' id: GrayConcreteTrimCornerNe @@ -2464,7 +3128,7 @@ entities: decals: 24: 2,7 94: -14,3 - 1209: -26,38 + 1206: -26,38 - node: color: '#DE3A3A96' id: GrayConcreteTrimCornerNw @@ -2476,7 +3140,7 @@ entities: decals: 25: 1,7 95: -17,3 - 1206: -28,38 + 1203: -28,38 - node: color: '#DE3A3A96' id: GrayConcreteTrimCornerSe @@ -2488,8 +3152,8 @@ entities: decals: 19: 2,4 96: -14,-1 - 1208: -26,36 - 1865: -18,15 + 1205: -26,36 + 1861: -18,15 - node: color: '#DE3A3A96' id: GrayConcreteTrimCornerSw @@ -2501,7 +3165,7 @@ entities: decals: 18: 1,4 97: -17,-1 - 1210: -28,36 + 1207: -28,36 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNe @@ -2523,8 +3187,8 @@ entities: 209: -48,-19 211: -48,-17 289: -45,-24 - 1867: -18,16 - 1868: -19,15 + 1863: -18,16 + 1864: -19,15 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSw @@ -2544,9 +3208,9 @@ entities: 213: -48,-19 254: -44,-12 288: -45,-25 - 1215: -26,37 - 1622: -7,-32 - 1864: -19,14 + 1212: -26,37 + 1618: -7,-32 + 1860: -19,14 - node: color: '#DE3A3A96' id: GrayConcreteTrimLineN @@ -2562,7 +3226,7 @@ entities: 207: -47,-20 257: -43,-13 287: -50,-25 - 1211: -27,38 + 1208: -27,38 - node: color: '#DE3A3A96' id: GrayConcreteTrimLineS @@ -2577,9 +3241,9 @@ entities: 206: -47,-17 283: -50,-23 290: -44,-24 - 1212: -27,36 - 1624: -6,-31 - 1866: -17,16 + 1209: -27,36 + 1620: -6,-31 + 1862: -17,16 - node: color: '#DE3A3A96' id: GrayConcreteTrimLineW @@ -2600,217 +3264,217 @@ entities: 215: -49,-18 253: -42,-12 285: -49,-24 - 1214: -28,37 - 1623: -5,-32 + 1211: -28,37 + 1619: -5,-32 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 1115: -22,39 + 1112: -22,39 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1119: -18,39 + 1116: -18,39 - node: angle: -1.5707963267948966 rad color: '#EFB34196' id: LoadingAreaGreyscale decals: - 1747: -65,24 - 1748: -65,25 - 1749: -65,26 + 1743: -65,24 + 1744: -65,25 + 1745: -65,26 - node: color: '#FFFFFFFF' id: MiniTileDarkBox decals: - 1570: 12,51 - 1571: 16,51 + 1566: 12,51 + 1567: 16,51 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 2024: 13,-62 + 2012: 13,-62 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 2025: 11,-62 + 2013: 11,-62 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 2028: 13,-64 + 2016: 13,-64 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 2022: 11,-64 + 2010: 11,-64 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNe decals: - 1082: 11,13 + 1079: 11,13 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: - 1077: 15,12 + 1074: 15,12 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: - 1080: 11,15 + 1077: 11,15 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSw decals: - 1076: 15,14 - 1081: 13,15 + 1073: 15,14 + 1078: 13,15 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 1078: 11,14 - 2026: 13,-63 + 1075: 11,14 + 2014: 13,-63 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 2027: 12,-62 + 2015: 12,-62 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: 349: 12,-23 408: 13,-26 - 1079: 12,15 - 2029: 12,-64 + 1076: 12,15 + 2017: 12,-64 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: 348: 11,-24 - 684: 23,0 - 685: 23,1 - 686: 23,2 - 687: 23,3 - 688: 23,4 - 1075: 15,13 - 2023: 11,-63 + 681: 23,0 + 682: 23,1 + 683: 23,2 + 684: 23,3 + 685: 23,4 + 1072: 15,13 + 2011: 11,-63 - node: color: '#334E6DC8' id: MiniTileOverlay decals: - 814: 2,29 - 815: 2,30 - 816: 2,31 - 817: 3,31 - 818: 3,29 - 819: 4,29 - 820: 4,30 - 821: 4,31 + 811: 2,29 + 812: 2,30 + 813: 2,31 + 814: 3,31 + 815: 3,29 + 816: 4,29 + 817: 4,30 + 818: 4,31 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 767: 1,32 + 764: 1,32 - node: color: '#D381C996' id: MiniTileSteelInnerNe decals: - 748: 29,17 + 745: 29,17 - node: color: '#D381C996' id: MiniTileSteelInnerNw decals: - 749: 33,17 + 746: 33,17 - node: color: '#D381C996' id: MiniTileSteelLineE decals: - 739: 29,18 - 740: 29,19 + 736: 29,18 + 737: 29,19 - node: color: '#D381C996' id: MiniTileSteelLineN decals: - 745: 30,17 - 746: 31,17 - 747: 32,17 + 742: 30,17 + 743: 31,17 + 744: 32,17 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 768: 2,32 - 769: 3,32 - 770: 4,32 - 771: 5,32 + 765: 2,32 + 766: 3,32 + 767: 4,32 + 768: 5,32 - node: color: '#D381C996' id: MiniTileSteelLineW decals: - 737: 33,18 - 738: 33,19 + 734: 33,18 + 735: 33,19 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 764: 1,29 - 765: 1,30 - 766: 1,31 + 761: 1,29 + 762: 1,30 + 763: 1,31 - node: color: '#334E6DC8' id: MiniTileWhiteBox decals: - 830: 3,30 + 827: 3,30 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 813: 5,26 - 822: 4,31 - 1461: -10,3 + 810: 5,26 + 819: 4,31 + 1457: -10,3 - node: color: '#52B4E996' id: MiniTileWhiteCornerNe decals: 436: 13,-36 - 2020: 22,-33 + 2008: 22,-33 - node: color: '#9FED5896' id: MiniTileWhiteCornerNe decals: - 581: 15,-56 - 622: 13,-51 + 578: 15,-56 + 619: 13,-51 - node: color: '#D381C996' id: MiniTileWhiteCornerNe decals: - 681: 21,7 - 723: 25,15 - 893: 28,-1 + 678: 21,7 + 720: 25,15 + 890: 28,-1 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 1417: -22,23 + 1413: -22,23 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNe decals: 134: -5,-15 - 606: 8,-56 - 607: 19,-56 + 603: 8,-56 + 604: 19,-56 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNw decals: - 776: 0,33 - 812: 0,26 - 826: 2,31 - 1460: -12,3 + 773: 0,33 + 809: 0,26 + 823: 2,31 + 1456: -12,3 - node: color: '#52B4E996' id: MiniTileWhiteCornerNw @@ -2820,113 +3484,113 @@ entities: color: '#9FED5896' id: MiniTileWhiteCornerNw decals: - 582: 10,-56 - 621: 12,-51 + 579: 10,-56 + 618: 12,-51 - node: color: '#D381C996' id: MiniTileWhiteCornerNw decals: - 661: 36,8 - 668: 19,4 - 678: 19,7 - 890: 26,-1 + 658: 36,8 + 665: 19,4 + 675: 19,7 + 887: 26,-1 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 1418: -31,23 + 1414: -31,23 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw decals: 133: -9,-15 - 603: 6,-56 - 610: 17,-56 + 600: 6,-56 + 607: 17,-56 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe decals: - 811: 5,23 - 828: 4,29 + 808: 5,23 + 825: 4,29 - node: color: '#52B4E996' id: MiniTileWhiteCornerSe decals: 434: 13,-38 - 637: 19,-38 - 2019: 22,-34 + 634: 19,-38 + 2007: 22,-34 - node: color: '#9FED5896' id: MiniTileWhiteCornerSe decals: - 580: 15,-57 - 619: 13,-52 + 577: 15,-57 + 616: 13,-52 - node: color: '#D381C996' id: MiniTileWhiteCornerSe decals: - 679: 21,6 - 722: 25,11 - 891: 28,-5 + 676: 21,6 + 719: 25,11 + 888: 28,-5 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 1435: -22,18 - 1632: -34,18 - 1650: -41,19 + 1431: -22,18 + 1628: -34,18 + 1646: -41,19 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSe decals: 131: -5,-17 - 604: 8,-57 - 609: 19,-57 + 601: 8,-57 + 606: 19,-57 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSw decals: - 810: 0,23 - 827: 2,29 + 807: 0,23 + 824: 2,29 - node: color: '#52B4E996' id: MiniTileWhiteCornerSw decals: 433: 12,-38 - 632: 6,-38 + 629: 6,-38 - node: color: '#9FED5896' id: MiniTileWhiteCornerSw decals: - 579: 10,-57 - 620: 12,-52 + 576: 10,-57 + 617: 12,-52 - node: color: '#D381C996' id: MiniTileWhiteCornerSw decals: - 666: 36,5 - 667: 19,0 - 680: 19,6 - 892: 26,-5 + 663: 36,5 + 664: 19,0 + 677: 19,6 + 889: 26,-5 - node: color: '#EFB34196' id: MiniTileWhiteCornerSw decals: - 1436: -31,18 - 1633: -38,18 - 1651: -44,19 + 1432: -31,18 + 1629: -38,18 + 1647: -44,19 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: 132: -9,-17 - 605: 6,-57 - 608: 17,-57 + 602: 6,-57 + 605: 17,-57 - node: color: '#334E6DC8' id: MiniTileWhiteEndE decals: - 859: 24,46 + 856: 24,46 - node: color: '#52B4E996' id: MiniTileWhiteEndE @@ -2942,171 +3606,171 @@ entities: id: MiniTileWhiteInnerNe decals: 440: 13,-37 - 763: 21,-36 + 760: 21,-36 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe decals: - 1641: -35,20 + 1637: -35,20 - node: color: '#52B4E996' id: MiniTileWhiteInnerNw decals: 439: 12,-37 - 762: 4,-36 + 759: 4,-36 - node: color: '#EFB34196' id: MiniTileWhiteInnerNw decals: - 1640: -37,20 + 1636: -37,20 - node: color: '#52B4E996' id: MiniTileWhiteInnerSe decals: 438: 13,-37 - 638: 19,-37 - 2021: 21,-34 + 635: 19,-37 + 2009: 21,-34 - node: color: '#EFB34196' id: MiniTileWhiteInnerSe decals: - 1634: -34,19 + 1630: -34,19 - node: color: '#52B4E996' id: MiniTileWhiteInnerSw decals: 437: 12,-37 - 633: 6,-37 + 630: 6,-37 - node: color: '#EFB34196' id: MiniTileWhiteInnerSw decals: - 1635: -38,19 - 1654: -43,19 + 1631: -38,19 + 1650: -43,19 - node: color: '#334E6DC8' id: MiniTileWhiteLineE decals: - 789: 10,29 - 790: 10,28 - 791: 10,27 - 792: 10,26 - 793: 10,24 - 794: 10,25 - 795: 10,23 - 808: 5,25 - 809: 5,24 - 829: 4,30 - 834: 13,45 - 835: 13,46 - 836: 13,47 - 1451: -10,-1 - 1452: -10,0 - 1453: -10,1 - 1454: -10,2 + 786: 10,29 + 787: 10,28 + 788: 10,27 + 789: 10,26 + 790: 10,24 + 791: 10,25 + 792: 10,23 + 805: 5,25 + 806: 5,24 + 826: 4,30 + 831: 13,45 + 832: 13,46 + 833: 13,47 + 1447: -10,-1 + 1448: -10,0 + 1449: -10,1 + 1450: -10,2 - node: color: '#52B4E996' id: MiniTileWhiteLineE decals: - 636: 21,-35 + 633: 21,-35 - node: color: '#D381C996' id: MiniTileWhiteLineE decals: - 651: 34,5 - 652: 34,6 - 653: 34,7 - 654: 34,8 - 655: 34,9 - 724: 25,12 - 725: 25,13 - 726: 25,14 - 727: 33,13 - 728: 33,14 - 729: 33,15 - 730: 33,18 - 731: 33,19 - 741: 33,16 - 744: 33,17 - 894: 28,-2 - 895: 28,-3 - 896: 28,-4 + 648: 34,5 + 649: 34,6 + 650: 34,7 + 651: 34,8 + 652: 34,9 + 721: 25,12 + 722: 25,13 + 723: 25,14 + 724: 33,13 + 725: 33,14 + 726: 33,15 + 727: 33,18 + 728: 33,19 + 738: 33,16 + 741: 33,17 + 891: 28,-2 + 892: 28,-3 + 893: 28,-4 - node: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 1411: -22,22 - 1412: -22,21 - 1413: -22,20 - 1437: -22,19 - 1645: -35,21 - 1646: -35,22 - 1647: -35,23 - 1648: -41,20 - 1653: -42,18 - 1660: -41,21 + 1407: -22,22 + 1408: -22,21 + 1409: -22,20 + 1433: -22,19 + 1641: -35,21 + 1642: -35,22 + 1643: -35,23 + 1644: -41,20 + 1649: -42,18 + 1656: -41,21 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: 130: -5,-16 - 617: 14,-52 - 618: 14,-51 + 614: 14,-52 + 615: 14,-51 - node: color: '#334E6DC8' id: MiniTileWhiteLineN decals: - 777: 1,33 - 778: 2,33 - 779: 3,33 - 780: 4,33 - 781: 5,33 - 782: 6,33 - 804: 1,26 - 805: 2,26 - 806: 3,26 - 807: 4,26 - 825: 3,31 - 837: 10,49 - 838: 11,49 - 839: 12,49 - 840: 13,49 - 841: 14,49 - 842: 15,49 - 843: 16,49 - 844: 17,49 - 845: 18,49 - 855: 22,46 - 856: 23,46 - 857: 20,46 - 858: 21,46 - 1459: -11,3 + 774: 1,33 + 775: 2,33 + 776: 3,33 + 777: 4,33 + 778: 5,33 + 779: 6,33 + 801: 1,26 + 802: 2,26 + 803: 3,26 + 804: 4,26 + 822: 3,31 + 834: 10,49 + 835: 11,49 + 836: 12,49 + 837: 13,49 + 838: 14,49 + 839: 15,49 + 840: 16,49 + 841: 17,49 + 842: 18,49 + 852: 22,46 + 853: 23,46 + 854: 20,46 + 855: 21,46 + 1455: -11,3 - node: color: '#52B4E996' id: MiniTileWhiteLineN decals: - 645: 17,-43 - 646: 18,-43 - 647: 19,-43 - 648: 20,-43 - 649: 21,-43 - 650: 22,-43 - 760: 22,-36 - 761: 3,-36 + 642: 17,-43 + 643: 18,-43 + 644: 19,-43 + 645: 20,-43 + 646: 21,-43 + 647: 22,-43 + 757: 22,-36 + 758: 3,-36 - node: color: '#8CC8C4C4' id: MiniTileWhiteLineN decals: - 1589: -47,27 - 1591: -46,27 - 1593: -45,27 - 1594: -44,27 - 1596: -43,27 - 1598: -42,27 - 1600: -41,27 - 1612: -48,27 - 1619: -49,27 - 1620: -40,27 + 1585: -47,27 + 1587: -46,27 + 1589: -45,27 + 1590: -44,27 + 1592: -43,27 + 1594: -42,27 + 1596: -41,27 + 1608: -48,27 + 1615: -49,27 + 1616: -40,27 - node: color: '#9FED5896' id: MiniTileWhiteLineN @@ -3116,44 +3780,44 @@ entities: 120: -7,-18 121: -6,-18 122: -5,-18 - 587: 11,-56 - 588: 12,-56 - 589: 13,-56 - 590: 14,-56 - 2030: -4,-18 - 2031: -3,-18 + 584: 11,-56 + 585: 12,-56 + 586: 13,-56 + 587: 14,-56 + 2018: -4,-18 + 2019: -3,-18 - node: color: '#D381C996' id: MiniTileWhiteLineN decals: - 665: 37,8 - 672: 20,4 - 673: 21,4 - 674: 22,4 - 683: 20,7 - 708: 19,15 - 709: 20,15 - 710: 21,15 - 711: 22,15 - 712: 23,15 - 721: 24,15 - 901: 27,-1 + 662: 37,8 + 669: 20,4 + 670: 21,4 + 671: 22,4 + 680: 20,7 + 705: 19,15 + 706: 20,15 + 707: 21,15 + 708: 22,15 + 709: 23,15 + 718: 24,15 + 898: 27,-1 - node: color: '#EFB34196' id: MiniTileWhiteLineN decals: - 1419: -30,23 - 1420: -29,23 - 1421: -28,23 - 1422: -27,23 - 1423: -26,23 - 1424: -25,23 - 1425: -24,23 - 1426: -23,23 - 1636: -39,20 - 1637: -38,20 - 1638: -34,20 - 1639: -33,20 + 1415: -30,23 + 1416: -29,23 + 1417: -28,23 + 1418: -27,23 + 1419: -26,23 + 1420: -25,23 + 1421: -24,23 + 1422: -23,23 + 1632: -39,20 + 1633: -38,20 + 1634: -34,20 + 1635: -33,20 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN @@ -3161,66 +3825,66 @@ entities: 127: -8,-15 128: -7,-15 129: -6,-15 - 591: 10,-55 - 592: 11,-55 - 593: 12,-55 - 594: 13,-55 - 595: 15,-55 - 596: 14,-55 - 613: 7,-56 - 614: 18,-56 + 588: 10,-55 + 589: 11,-55 + 590: 12,-55 + 591: 13,-55 + 592: 15,-55 + 593: 14,-55 + 610: 7,-56 + 611: 18,-56 - node: color: '#334E6DC8' id: MiniTileWhiteLineS decals: - 800: 1,23 - 801: 2,23 - 802: 3,23 - 803: 4,23 - 824: 3,29 - 846: 12,53 - 847: 13,53 - 848: 14,53 - 849: 15,53 - 850: 16,53 - 851: 20,46 - 852: 21,46 - 853: 22,46 - 854: 23,46 + 797: 1,23 + 798: 2,23 + 799: 3,23 + 800: 4,23 + 821: 3,29 + 843: 12,53 + 844: 13,53 + 845: 14,53 + 846: 15,53 + 847: 16,53 + 848: 20,46 + 849: 21,46 + 850: 22,46 + 851: 23,46 - node: color: '#52B4E996' id: MiniTileWhiteLineS decals: - 627: 8,-38 - 628: 7,-38 - 634: 17,-38 - 635: 18,-38 - 639: 17,-45 - 640: 18,-45 - 641: 20,-45 - 642: 19,-45 - 643: 21,-45 - 644: 22,-45 - 754: 5,-37 - 755: 4,-37 - 756: 3,-37 - 757: 20,-37 - 758: 21,-37 - 759: 22,-37 + 624: 8,-38 + 625: 7,-38 + 631: 17,-38 + 632: 18,-38 + 636: 17,-45 + 637: 18,-45 + 638: 20,-45 + 639: 19,-45 + 640: 21,-45 + 641: 22,-45 + 751: 5,-37 + 752: 4,-37 + 753: 3,-37 + 754: 20,-37 + 755: 21,-37 + 756: 22,-37 - node: color: '#8CC8C4C4' id: MiniTileWhiteLineS decals: - 1602: -47,25 - 1603: -46,25 - 1604: -45,25 - 1605: -44,25 - 1606: -43,25 - 1608: -42,25 - 1609: -41,25 - 1610: -48,25 - 1616: -49,25 - 1617: -40,25 + 1598: -47,25 + 1599: -46,25 + 1600: -45,25 + 1601: -44,25 + 1602: -43,25 + 1604: -42,25 + 1605: -41,25 + 1606: -48,25 + 1612: -49,25 + 1613: -40,25 - node: color: '#9FED5896' id: MiniTileWhiteLineS @@ -3233,46 +3897,46 @@ entities: 135: -6,-19 136: -5,-19 137: -4,-19 - 583: 11,-57 - 584: 12,-57 - 585: 13,-57 - 586: 14,-57 - 623: 12,-47 - 624: 13,-47 - 2032: -3,-19 + 580: 11,-57 + 581: 12,-57 + 582: 13,-57 + 583: 14,-57 + 620: 12,-47 + 621: 13,-47 + 2020: -3,-19 - node: color: '#D381C996' id: MiniTileWhiteLineS decals: - 664: 37,5 - 669: 20,0 - 670: 21,0 - 671: 22,0 - 682: 20,6 - 702: 19,11 - 703: 20,11 - 704: 21,11 - 705: 22,11 - 706: 23,11 - 707: 24,11 - 900: 27,-5 + 661: 37,5 + 666: 20,0 + 667: 21,0 + 668: 22,0 + 679: 20,6 + 699: 19,11 + 700: 20,11 + 701: 21,11 + 702: 22,11 + 703: 23,11 + 704: 24,11 + 897: 27,-5 - node: color: '#EFB34196' id: MiniTileWhiteLineS decals: - 1427: -30,18 - 1428: -29,18 - 1429: -28,18 - 1430: -27,18 - 1431: -26,18 - 1432: -25,18 - 1433: -24,18 - 1434: -23,18 - 1627: -33,19 - 1628: -39,19 - 1629: -37,18 - 1630: -36,18 - 1631: -35,18 + 1423: -30,18 + 1424: -29,18 + 1425: -28,18 + 1426: -27,18 + 1427: -26,18 + 1428: -25,18 + 1429: -24,18 + 1430: -23,18 + 1623: -33,19 + 1624: -39,19 + 1625: -37,18 + 1626: -36,18 + 1627: -35,18 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS @@ -3280,92 +3944,92 @@ entities: 124: -8,-17 125: -7,-17 126: -6,-17 - 597: 10,-58 - 598: 11,-58 - 599: 12,-58 - 600: 13,-58 - 601: 14,-58 - 602: 15,-58 - 611: 18,-57 - 612: 7,-57 + 594: 10,-58 + 595: 11,-58 + 596: 12,-58 + 597: 13,-58 + 598: 14,-58 + 599: 15,-58 + 608: 18,-57 + 609: 7,-57 - node: color: '#334E6DC8' id: MiniTileWhiteLineW decals: - 772: 0,29 - 773: 0,30 - 774: 0,31 - 775: 0,32 - 783: 0,28 - 784: 8,25 - 785: 8,26 - 786: 8,27 - 787: 8,28 - 788: 8,29 - 796: 8,23 - 797: 8,24 - 798: 0,24 - 799: 0,25 - 823: 2,30 - 831: 15,45 - 832: 15,46 - 833: 15,47 - 1455: -12,-1 - 1456: -12,0 - 1457: -12,1 - 1458: -12,2 + 769: 0,29 + 770: 0,30 + 771: 0,31 + 772: 0,32 + 780: 0,28 + 781: 8,25 + 782: 8,26 + 783: 8,27 + 784: 8,28 + 785: 8,29 + 793: 8,23 + 794: 8,24 + 795: 0,24 + 796: 0,25 + 820: 2,30 + 828: 15,45 + 829: 15,46 + 830: 15,47 + 1451: -12,-1 + 1452: -12,0 + 1453: -12,1 + 1454: -12,2 - node: color: '#52B4E996' id: MiniTileWhiteLineW decals: - 629: 4,-35 - 630: 4,-34 - 631: 4,-33 + 626: 4,-35 + 627: 4,-34 + 628: 4,-33 - node: color: '#D381C996' id: MiniTileWhiteLineW decals: - 656: 31,5 - 657: 31,6 - 658: 31,7 - 659: 31,8 - 660: 31,9 - 662: 36,7 - 663: 36,6 - 675: 19,3 - 676: 19,2 - 677: 19,1 - 732: 29,13 - 733: 29,14 - 734: 29,15 - 735: 29,18 - 736: 29,19 - 742: 29,16 - 743: 29,17 - 897: 26,-2 - 898: 26,-3 - 899: 26,-4 + 653: 31,5 + 654: 31,6 + 655: 31,7 + 656: 31,8 + 657: 31,9 + 659: 36,7 + 660: 36,6 + 672: 19,3 + 673: 19,2 + 674: 19,1 + 729: 29,13 + 730: 29,14 + 731: 29,15 + 732: 29,18 + 733: 29,19 + 739: 29,16 + 740: 29,17 + 894: 26,-2 + 895: 26,-3 + 896: 26,-4 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 1408: -31,20 - 1409: -31,21 - 1410: -31,22 - 1438: -31,19 - 1642: -37,21 - 1643: -37,22 - 1644: -37,23 - 1649: -44,20 - 1652: -43,18 - 1659: -44,21 + 1404: -31,20 + 1405: -31,21 + 1406: -31,22 + 1434: -31,19 + 1638: -37,21 + 1639: -37,22 + 1640: -37,23 + 1645: -44,20 + 1648: -43,18 + 1655: -44,21 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: 123: -9,-16 - 615: 11,-52 - 616: 11,-51 + 612: 11,-52 + 613: 11,-51 - node: color: '#DE3A3A96' id: OldConcreteTrimCornerNe @@ -3412,13 +4076,13 @@ entities: color: '#EFB34196' id: OldConcreteTrimInnerNe decals: - 1726: -56,11 + 1722: -56,11 - node: cleanable: True color: '#EFB34196' id: OldConcreteTrimInnerNw decals: - 1727: -52,11 + 1723: -52,11 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerNw @@ -3429,23 +4093,23 @@ entities: color: '#EFB34196' id: OldConcreteTrimInnerSe decals: - 1725: -56,15 + 1721: -56,15 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerSe decals: - 1625: -7,-31 + 1621: -7,-31 - node: cleanable: True color: '#EFB34196' id: OldConcreteTrimInnerSw decals: - 1724: -52,15 + 1720: -52,15 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerSw decals: - 1626: -5,-31 + 1622: -5,-31 - node: color: '#DE3A3A96' id: OldConcreteTrimLineE @@ -3457,9 +4121,9 @@ entities: color: '#EFB34196' id: OldConcreteTrimLineE decals: - 1721: -56,12 - 1722: -56,13 - 1723: -56,14 + 1717: -56,12 + 1718: -56,13 + 1719: -56,14 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineE @@ -3472,9 +4136,9 @@ entities: color: '#EFB34196' id: OldConcreteTrimLineN decals: - 1718: -53,11 - 1719: -54,11 - 1720: -55,11 + 1714: -53,11 + 1715: -54,11 + 1716: -55,11 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineN @@ -3490,9 +4154,9 @@ entities: color: '#EFB34196' id: OldConcreteTrimLineS decals: - 1712: -55,15 - 1713: -54,15 - 1714: -53,15 + 1708: -55,15 + 1709: -54,15 + 1710: -53,15 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineS @@ -3511,37 +4175,118 @@ entities: color: '#EFB34196' id: OldConcreteTrimLineW decals: - 1715: -52,14 - 1716: -52,13 - 1717: -52,12 + 1711: -52,14 + 1712: -52,13 + 1713: -52,12 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineW decals: 148: 0,-14 149: 1,-12 + - node: + color: '#965C93FF' + id: QuarterTileOverlayGreyscale + decals: + 3128: -32,-61 + 3129: -32,-62 + 3130: -32,-63 + 3140: -30,-64 + - node: + color: '#AE6CABFF' + id: QuarterTileOverlayGreyscale + decals: + 2948: -32,-59 + 2949: -32,-57 + 2950: -32,-56 + 2951: -32,-55 + 2952: -32,-54 + 2953: -32,-53 + 2954: -32,-51 + 2955: -32,-49 + 2956: -32,-48 + 2957: -32,-47 + 2958: -32,-46 + 2959: -32,-45 + 2960: -32,-44 + 2961: -32,-43 + 2962: -32,-42 + 2963: -32,-41 + 2964: -31,-41 + 2965: -30,-41 + 2966: -32,-52 + 2967: -32,-50 + 2968: -32,-60 + 2969: -32,-58 - node: color: '#198896FF' id: QuarterTileOverlayGreyscale180 decals: - 1986: -28,-39 - 1987: -28,-38 - 1988: -28,-37 - 1989: -28,-36 - 1990: -28,-35 - 1991: -28,-34 - 1992: -28,-33 + 1977: -28,-39 + 1978: -28,-38 + 1979: -28,-37 + 1980: -28,-36 + 1981: -28,-35 + 1982: -28,-34 + 1983: -28,-33 + - node: + color: '#965C93FF' + id: QuarterTileOverlayGreyscale180 + decals: + 3134: -32,-63 + 3136: -31,-63 + 3139: -30,-64 - node: color: '#198896FF' id: QuarterTileOverlayGreyscale270 decals: - 1993: -30,-33 - 1994: -30,-34 - 1995: -30,-35 - 1996: -30,-36 - 1997: -30,-37 - 1998: -30,-38 - 1999: -30,-39 + 1984: -30,-33 + 1985: -30,-34 + 1986: -30,-35 + 1987: -30,-36 + 1988: -30,-37 + 1989: -30,-38 + 1990: -30,-39 + - node: + color: '#965C93FF' + id: QuarterTileOverlayGreyscale270 + decals: + 3135: -26,-63 + 3137: -27,-63 + 3138: -28,-64 + - node: + color: '#965C93FF' + id: QuarterTileOverlayGreyscale90 + decals: + 3131: -26,-61 + 3132: -26,-62 + 3133: -26,-63 + 3141: -28,-64 + - node: + color: '#AE6CABFF' + id: QuarterTileOverlayGreyscale90 + decals: + 2929: -28,-41 + 2930: -27,-41 + 2931: -26,-41 + 2932: -26,-43 + 2933: -26,-44 + 2934: -26,-45 + 2935: -26,-46 + 2936: -26,-47 + 2937: -26,-48 + 2938: -26,-49 + 2939: -26,-51 + 2940: -26,-52 + 2941: -26,-53 + 2942: -26,-54 + 2943: -26,-55 + 2944: -26,-56 + 2945: -26,-58 + 2946: -26,-59 + 2947: -26,-60 + 2970: -26,-57 + 2971: -26,-50 - node: color: '#FFFFFFFF' id: Rock01 @@ -3583,103 +4328,103 @@ entities: color: '#FFFFFFFF' id: Rock06 decals: - 1301: 27.50846,26.500896 - 1544: -6.044888,39.55347 + 1298: 27.50846,26.500896 + 1540: -6.044888,39.55347 - node: color: '#FFFFFFFF' id: Rock07 decals: - 1545: -2.1430566,39.77222 - 1754: -50.07698,29.45197 + 1541: -2.1430566,39.77222 + 1750: -50.07698,29.45197 - node: cleanable: True color: '#EFB34196' id: WarnCornerGreyscaleNE decals: - 1708: -53,14 + 1704: -53,14 - node: cleanable: True color: '#EFB34196' id: WarnCornerGreyscaleNW decals: - 1704: -55,14 + 1700: -55,14 - node: cleanable: True color: '#EFB34196' id: WarnCornerGreyscaleSE decals: - 1707: -53,12 + 1703: -53,12 - node: cleanable: True color: '#EFB34196' id: WarnCornerGreyscaleSW decals: - 1706: -55,12 + 1702: -55,12 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 693: 21,14 + 690: 21,14 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 692: 19,14 + 689: 19,14 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 691: 21,12 + 688: 21,12 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 689: 19,12 + 686: 19,12 - node: color: '#EFB34196' id: WarnCornerSmallGreyscaleNE decals: - 1751: -65,23 + 1747: -65,23 - node: color: '#A4610696' id: WarnCornerSmallGreyscaleSE decals: - 1503: -17,39 + 1499: -17,39 - node: color: '#EFB34196' id: WarnCornerSmallGreyscaleSE decals: - 1750: -65,27 + 1746: -65,27 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 700: 17,11 + 697: 17,11 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 701: 17,15 + 698: 17,15 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 1746: -54,35 + 1742: -54,35 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 690: 21,13 - 696: 17,12 - 697: 17,13 - 698: 17,14 + 687: 21,13 + 693: 17,12 + 694: 17,13 + 695: 17,14 - node: color: '#A4610696' id: WarnLineGreyscaleE decals: - 1500: -17,36 - 1501: -17,37 - 1502: -17,38 + 1496: -17,36 + 1497: -17,37 + 1498: -17,38 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE @@ -3696,7 +4441,7 @@ entities: color: '#EFB34196' id: WarnLineGreyscaleE decals: - 1710: -53,13 + 1706: -53,13 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN @@ -3707,22 +4452,22 @@ entities: color: '#EFB34196' id: WarnLineGreyscaleN decals: - 1655: -44,21 - 1656: -43,21 - 1657: -42,21 - 1658: -41,21 + 1651: -44,21 + 1652: -43,21 + 1653: -42,21 + 1654: -41,21 - node: cleanable: True color: '#EFB34196' id: WarnLineGreyscaleN decals: - 1709: -54,14 + 1705: -54,14 - node: color: '#A4610696' id: WarnLineGreyscaleS decals: - 1504: -16,39 - 1505: -15,39 + 1500: -16,39 + 1501: -15,39 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS @@ -3733,7 +4478,7 @@ entities: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 1711: -54,12 + 1707: -54,12 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW @@ -3742,41 +4487,41 @@ entities: 235: -44,-8 238: -41,-8 240: -41,-4 - 2013: -42,-25 + 2004: -42,-25 - node: color: '#EFB34196' id: WarnLineGreyscaleW decals: - 1752: -64,27 - 1753: -64,23 + 1748: -64,27 + 1749: -64,23 - node: cleanable: True color: '#EFB34196' id: WarnLineGreyscaleW decals: - 1705: -55,13 + 1701: -55,13 - node: cleanable: True color: '#A4610696' id: WarnLineN decals: - 1518: -22,40 - 1519: -18,40 + 1514: -22,40 + 1515: -18,40 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 694: 20,12 + 691: 20,12 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 699: 19,13 + 696: 19,13 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 695: 20,14 + 692: 20,14 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -3791,7 +4536,7 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1582: -3,40 + 1578: -3,40 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -3810,12 +4555,12 @@ entities: 28: 7,1 29: 6,1 30: 5,1 - 1576: -9,40 - 1577: -8,40 - 1578: -7,40 - 1579: -6,40 - 1580: -5,40 - 1581: -4,40 + 1572: -9,40 + 1573: -8,40 + 1574: -7,40 + 1575: -6,40 + 1576: -5,40 + 1577: -4,40 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -3831,36 +4576,1042 @@ entities: color: '#FFFFFFFF' id: prolizard decals: - 1809: -55,44 + 1805: -55,44 - node: color: '#FFFFFFFF' id: snake decals: - 1810: -55,43 + 1806: -55,43 + - node: + color: '#201F3862' + id: splatter + decals: + 2025: 15.950054,14.543422 + 2026: 15.621929,14.668422 + 2027: 16.34068,14.527797 + 2028: 16.40318,15.215297 + 2029: 15.746929,15.434047 + 2030: 15.512554,15.074672 + 2031: 19.61391,9.13495 + 2032: 19.598286,9.2287 + 2033: 19.58266,8.869325 + 2034: 19.61391,8.713075 + 2035: 19.64516,8.7912 + 2036: 19.473286,9.4162 + 2037: 19.317036,9.00995 + 2038: 19.418407,8.681825 + 2039: 15.117514,3.4489439 + 2040: 15.492514,3.4489439 + 2041: 15.489502,2.958242 + 2042: 15.552002,2.458242 + 2043: 14.536377,3.598867 + 2044: 14.239502,3.192617 + 2045: 14.427002,2.833242 + 2046: 14.520752,2.333242 + 2047: 14.505127,1.8176169 + 2048: 14.880127,1.5519919 + 2049: 15.411377,1.5207419 + 2050: 15.505127,1.6144919 + 2051: 17.302002,3.505117 + 2052: 17.145752,3.505117 + 2053: 16.848877,3.505117 + 2054: 16.630127,3.333242 + 2055: 16.489502,2.583242 + 2056: 16.520752,2.239492 + 2057: 16.489502,1.6144919 + 2058: 16.411377,2.973867 + 2059: 16.489502,1.1144919 + 2060: 16.364502,1.9582419 + 2061: 16.614502,0.53636694 + 2062: 16.583252,-0.10425812 + 2063: 16.395752,-0.43238312 + 2064: 16.223877,-0.36988312 + 2065: 16.114502,-0.08863312 + 2066: 16.286377,0.25511688 + 2067: 15.723877,-0.32300812 + 2068: 15.770752,-0.7448831 + 2069: 15.505127,-1.2136331 + 2070: 15.427002,-1.8230081 + 2071: 15.052002,-2.432383 + 2072: 15.333252,-2.401133 + 2073: 15.270752,-1.9167581 + 2074: 15.286377,-1.9480081 + 2075: 15.427002,-1.4167581 + 2076: 14.692627,1.5355058 + 2077: 23.65334,20.202812 + 2078: 23.40334,20.437187 + 2079: 23.356464,19.921562 + 2080: 23.668964,19.796562 + 2081: 23.418964,19.749687 + 2082: 23.200214,20.921562 + 2083: 23.262714,20.515312 + 2084: 26.433187,27.458113 + 2085: 26.448812,27.083113 + 2086: 26.651937,26.833113 + 2087: 26.276937,26.708113 + 2088: 26.542562,26.504988 + 2089: 26.339437,27.254988 + 2090: 30.276937,38.28675 + 2091: 30.245687,38.021126 + 2092: 30.167562,37.66175 + 2093: 30.417562,37.41175 + 2094: 30.776937,37.302376 + 2095: 30.995687,37.318 + 2096: 31.323812,37.458626 + 2097: 31.52694,37.302376 + 2098: 30.542562,37.09925 + 2099: 30.386312,36.614876 + 2100: 30.433187,36.771126 + 2101: 31.279343,40.52707 + 2102: 31.029343,40.542694 + 2103: 30.482468,40.480194 + 2104: 30.341843,40.12082 + 2105: 30.419968,39.792694 + 2106: 30.685593,39.65207 + 2107: 30.513718,39.55832 + 2108: 31.107468,39.46457 + 2109: 30.779343,40.68332 + 2110: 24.49731,-19.72866 + 2111: 24.55981,-19.97866 + 2112: 24.12231,-19.57241 + 2113: 23.794186,-19.525536 + 2114: 24.231686,-19.525536 + 2115: 24.544186,-19.525536 + 2116: 25.21606,-19.44741 + 2117: 23.512936,-19.25991 + 2118: 23.34106,-18.806786 + 2119: 25.02856,-19.35366 + 2120: 25.46606,-19.431786 + 2121: 28.169186,-22.556786 + 2122: 27.65356,-22.431786 + 2123: 27.294186,-22.056786 + 2124: 27.387936,-21.463036 + 2125: 27.325436,-21.150536 + 2126: 27.325436,-20.650536 + 2127: 27.30981,-21.181786 + 2128: 27.52856,-21.588036 + 2129: 27.24731,-20.29116 + 2130: 27.43481,-20.338036 + 2131: 26.981686,-20.213036 + 2132: 26.606686,-20.35366 + 2133: 26.05981,-20.38491 + 2134: 25.669186,-20.494286 + 2135: 27.075436,-20.494286 + 2136: 28.32457,-22.411976 + 2137: 28.090195,-22.505726 + 2138: 27.44957,-22.4901 + 2139: 29.465195,-26.472475 + 2140: 28.840195,-26.3631 + 2141: 28.60582,-26.4256 + 2142: 28.60582,-26.4881 + 2143: 29.058945,-26.097475 + 2144: 29.29332,-26.8631 + 2145: 29.51207,-27.0506 + 2146: 29.41832,-27.222475 + 2147: 29.51207,-26.628725 + 2148: 28.60582,-26.316225 + 2149: 28.152695,-26.441225 + 2150: 28.13707,-26.4881 + 2151: 29.23082,-26.39435 + 2152: 29.071592,-27.4881 + 2153: 28.509092,-27.4881 + 2154: 28.212217,-27.441225 + 2155: 30.352842,-27.51648 + 2156: 30.602842,-27.500854 + 2157: 31.243467,-27.407104 + 2158: 31.477842,-27.45398 + 2159: 31.58722,-27.89148 + 2160: 31.055967,-27.45398 + 2161: 31.493467,-28.188354 + 2162: 31.399717,-28.563354 + 2163: 30.946592,-28.500854 + 2164: 30.524717,-28.42273 + 2165: 30.196592,-28.375854 + 2166: 30.305967,-28.250854 + 2167: 32.352844,-31.5827 + 2168: 31.96222,-31.5827 + 2169: 31.71222,-31.55145 + 2170: 31.540344,-31.598326 + 2171: 31.368467,-31.879576 + 2172: 31.321592,-32.160828 + 2173: 31.352842,-32.207703 + 2174: 31.274717,-32.38707 + 2175: 30.743467,-32.48082 + 2176: 30.634092,-32.60582 + 2177: 30.602842,-33.027695 + 2178: 30.649717,-33.246445 + 2179: 30.884092,-33.38707 + 2180: 31.602844,-33.402695 + 2181: 31.93097,-33.402695 + 2182: 32.102844,-33.402695 + 2183: 32.18097,-33.38707 + 2184: 31.009092,-33.38707 + 2185: 30.352842,-32.94957 + 2186: 32.08722,-31.340195 + 2187: 32.384094,-31.246445 + 2188: 31.509094,-31.590195 + 2189: 14.398537,2.6877122 + 2190: 15.432013,-0.93648285 + 2191: 15.447638,-2.2572005 + 2192: 16.260138,15.643122 + 2193: 16.260138,15.268122 + 2194: 16.369513,14.569111 + 2195: 15.619513,14.584736 + 2196: 15.478888,15.209736 + 2197: 16.447638,15.178486 + 2198: 16.510138,14.897236 + 2199: 15.432013,15.006611 + 2200: 15.947638,14.437489 + 2201: 16.369513,14.124989 + 2202: 19.252869,9.492397 + 2203: 19.377869,8.476772 + 2204: 22.885387,4.582294 + 2205: 22.979137,4.222919 + 2206: 22.916637,3.519794 + 2207: 23.072887,2.785419 + 2208: 22.869762,1.801044 + 2209: 22.932262,0.988544 + 2210: 22.729137,0.332294 + 2211: 22.635387,-0.355206 + 2212: 22.760387,-0.667706 + 2213: 22.791637,1.051044 + 2214: 24.513733,7.970726 + 2215: 23.060608,7.986351 + 2216: 25.841858,8.095726 + 2217: 27.921297,8.470726 + 2218: 28.124422,7.111351 + 2219: 27.968172,10.262704 + 2220: 29.468172,10.137704 + 2221: 29.561922,10.028329 + 2222: 29.905672,10.184579 + 2223: 27.905672,1.9725502 + 2224: 27.155672,2.1288002 + 2225: 26.577547,2.0975502 + 2226: 26.140047,1.9881752 + 2227: 31.220001,1.0350502 + 2228: 32.204376,1.0350502 + 2229: 33.18875,1.0819252 + 2230: 34.110626,0.2645166 + 2231: 30.376251,2.5301416 + 2232: 30.235626,2.9988916 + 2233: 30.235626,3.2645166 + 2234: 31.063751,2.4363916 + 2235: 31.829376,2.3895166 + 2236: 31.376251,2.5145166 + 2237: 31.438751,2.7176416 + 2238: 32.345,2.3738916 + 2239: 32.485626,2.3113916 + 2240: 33.016876,2.5145166 + 2241: 33.579376,2.4832666 + 2242: 34.1575,2.4520166 + 2243: 34.548126,2.7176416 + 2244: 34.641876,3.1863916 + 2245: 22.645782,6.9946885 + 2246: 22.630157,6.6196885 + 2247: 22.567657,6.0415635 + 2248: 22.552032,5.7759385 + - node: + color: '#201F3866' + id: splatter + decals: + 2690: 38.087204,21.662958 + 2691: 38.07158,21.162958 + 2692: 38.00908,20.959833 + 2693: 38.024704,20.662958 + 2694: 38.243454,20.319208 + 2695: 37.774704,20.647333 + 2696: 37.837204,21.319208 + 2697: 38.10283,21.803583 + 3324: 14.580044,3.3727603 + 3325: 15.126919,3.5758858 + 3326: 15.423794,3.4821358 + 3327: 15.486294,3.4040108 + 3328: 15.580044,3.1227608 + 3329: 15.611294,2.5602608 + 3330: 15.392544,2.1852608 + 3331: 15.361294,1.7790105 + 3332: 14.939419,1.7165105 + 3333: 14.611294,1.7165105 + 3334: 14.580044,2.2633853 + 3335: 14.501919,2.5133853 + 3336: 14.361294,3.4352603 + 3337: 15.251919,3.4196358 + 3338: 14.705044,3.4196353 + 3339: 16.642544,3.5290108 + 3340: 16.626919,3.4977608 + 3341: 16.580044,3.1383858 + 3342: 16.470669,2.7633858 + 3343: 16.267544,2.3102608 + 3344: 16.298794,1.6071358 + 3345: 16.345669,0.9977608 + 3346: 17.095669,3.5602608 + 3347: 17.189419,3.6696358 + 3348: 17.392544,3.7321358 + 3349: 17.345669,3.8883858 + 3350: 17.330044,4.138386 + 3351: 17.017544,3.9665108 + 3352: 16.501919,0.8727608 + 3353: 16.533169,0.09151077 + 3354: 16.548794,-0.40848923 + 3355: 16.330044,-0.5022392 + 3356: 16.095669,-0.37723923 + 3357: 16.533169,-0.017864227 + 3358: 15.845669,-0.47098935 + 3359: 15.658169,-0.68973935 + 3360: 15.486294,-1.2053643 + 3361: 15.486294,-1.5647393 + 3362: 15.408169,-1.9241143 + 3363: 16.533169,1.445834 + 3364: 16.486294,0.75833404 + 3365: 15.017544,1.5239587 + 3366: 14.408169,1.6020837 + 3367: 14.220669,2.3520837 + 3368: 14.955044,3.7270837 + 3369: 17.626919,10.116155 + 3370: 16.595669,7.6474047 + 3371: 16.564419,7.6474047 + 3372: 16.517544,7.6474047 + 3373: 16.470669,7.8349047 + 3374: 16.470669,8.209905 + 3375: 16.767544,7.4911547 + 3376: 17.173794,7.4755297 + 3377: 17.220669,7.5380297 + 3378: 17.345669,7.5692797 + 3379: 17.361294,7.5849047 + 3380: 17.439419,8.10053 + 3381: 17.314419,8.72553 + 3382: 17.392544,8.94428 + 3383: 17.408169,9.16303 + 3384: 17.298794,9.491155 + 3385: 16.861294,9.60053 + 3386: 16.486294,9.334905 + 3387: 16.392544,8.834905 + 3388: 16.423794,8.459905 + 3389: 16.423794,8.147405 + 3390: 16.423794,9.116155 + 3391: 16.423794,9.459905 + 3392: 17.376919,9.10053 + 3393: 17.517544,8.47553 + 3394: 17.486294,8.31928 + 3395: 17.423794,9.47553 + 3396: 16.626919,9.522405 + 3397: 17.158169,9.66303 + 3398: 16.392544,9.50678 + 3399: 16.376919,8.772405 + 3400: 15.970669,9.209905 + 3401: 16.345669,9.72553 + 3402: 15.673794,8.584905 + 3403: 17.705044,9.366155 + 3404: 17.689419,8.88178 + 3405: 16.126919,8.553655 + 3406: 16.220669,8.053655 + 3407: 15.876919,8.959905 + 3408: 16.126919,8.03803 + 3409: 15.501919,14.525505 + 3410: 15.267543,15.32238 + 3411: 15.501919,15.38488 + 3412: 16.439419,14.47863 + 3413: 16.517544,15.44738 + 3414: 30.546833,38.31731 + 3415: 30.515583,38.03606 + 3416: 30.468708,37.364185 + 3417: 30.140583,36.864185 + 3418: 29.953083,36.707935 + 3419: 29.749958,36.676685 + 3420: 29.578083,36.676685 + 3421: 30.374958,36.739185 + 3422: 30.406208,37.301685 + 3423: 29.937458,36.81731 + 3424: 30.859333,37.270435 + 3425: 30.359333,36.551685 + - node: + cleanable: True + color: '#201F3866' + id: splatter + decals: + 2698: 46.02278,22.537958 + 2699: 46.08528,22.194208 + 2700: 46.36653,22.116083 + 2701: 45.944656,22.069208 + 2702: 46.413406,22.756708 + 2703: 45.944656,22.756708 + 2704: 46.39778,22.475458 + 2705: 46.507156,21.944208 + 2706: 47.153008,19.584833 + 2707: 46.903008,19.631708 + 2708: 46.684258,19.866083 + 2709: 46.434258,20.084833 + 2710: 46.293633,20.303583 + 2711: 45.871758,20.584833 + 2712: 45.684258,20.584833 + 2713: 45.324883,20.584833 + 2714: 39.99715,21.912958 + 2715: 39.9659,21.647333 + 2716: 40.575275,21.725458 + 2717: 40.0284,22.006708 + 2718: 39.856525,21.600458 + 2719: 40.075275,21.303583 + 2720: 40.481525,21.803583 + 2721: 40.2784,21.991083 + 2722: 40.18465,21.537958 + 2723: 40.34251,21.616083 + 2724: 46.795635,22.272333 + 2725: 46.46751,21.819208 + 2726: 46.326885,21.662958 + 2727: 46.139385,22.381708 + 2728: 46.21751,22.381708 + 2729: 45.609283,22.116083 + 2730: 45.609283,22.537958 + 2731: 45.890533,23.287958 + 2732: 43.250877,24.475458 + 2733: 43.813377,24.522333 + 2734: 43.797752,25.022333 + 2735: 43.782127,25.209833 + 2736: 42.891502,24.397333 + 2737: 42.735252,24.537958 + 2738: 42.235252,24.428583 + 2739: 42.766502,24.428583 + 2740: 43.485252,24.397333 + 2741: 43.610252,25.084833 + 2742: 43.672752,25.287958 + 2743: 47.42055,19.459427 + 2744: 46.779926,19.803177 + 2745: 46.373676,20.131302 + 2746: 48.779926,19.662552 + 2747: 48.85805,19.662552 + 2748: 49.311176,19.678177 + 2749: 49.373676,19.850052 + 2750: 49.3893,20.006302 + 2751: 49.436176,20.256302 + 2752: 48.623676,20.053177 + 2753: 48.654926,19.787552 + 2754: 27.739279,-18.536108 + 2755: 27.411154,-18.739233 + 2756: 27.379904,-19.145483 + 2757: 27.598654,-19.457983 + 2758: 27.864279,-19.520483 + 2759: 27.908627,-19.504858 + 2760: 28.699083,-19.473608 + 2761: 28.699083,-18.848608 + 2762: 28.574083,-18.614233 + 2763: 27.761583,-18.364233 + 2764: 27.699083,-18.426733 + 2765: 27.605333,-18.614233 + 2766: 27.511583,-19.317358 + 2767: 28.699083,-19.567358 + 2768: 28.495958,-19.426733 + 2769: 28.636583,-18.957983 + 2770: 28.605333,-18.770483 + 2771: 28.183458,-18.582983 + 2772: 27.886583,-18.473608 + 2773: 25.589708,-18.473608 + 2774: 25.449083,-18.489233 + 2775: 24.824083,-18.379858 + 2776: 24.495958,-18.504858 + 2777: 25.214708,-18.504858 + 2778: 25.574083,-18.411108 + 2779: 25.449083,-17.864233 + 2780: 25.199083,-17.598608 + 2781: 24.683458,-17.567358 + 2782: 24.589708,-17.567358 + 2783: 25.652208,-18.582983 + 2784: 26.042833,-18.551733 + 2785: 26.245958,-18.536108 + 2786: 26.370958,-18.645483 + 2787: 26.417833,-18.957983 + 2788: 26.495958,-19.317358 + 2789: 26.605333,-19.411108 + 2790: 26.808458,-19.598608 + 2791: 27.011583,-19.661108 + 2792: 25.433458,-18.848608 - node: cleanable: True color: '#440900FF' id: splatter decals: - 626: 18.606695,-46.96591 + 623: 18.606695,-46.96591 + - node: + color: '#456B88FF' + id: splatter + decals: + 2651: 2.9824767,-22.542885 + 2652: 2.9043517,-22.33976 + 2653: 3.1699767,-22.324135 + 2654: 3.2637267,-22.74601 + 2655: 2.2637267,-23.96476 + 2656: 2.4043517,-24.386635 + 2657: 2.8731017,-24.24601 + 2658: 2.8106017,-23.949135 + 2659: 2.5293517,-24.105385 + 2660: 2.5293517,-24.480385 + 2661: 2.5606017,-24.230385 + 2662: 12.060602,-24.49601 + 2663: 12.310602,-24.667885 + 2664: 12.029352,-24.65226 + - node: + color: '#462F2360' + id: splatter + decals: + 2249: -8.155287,19.391867 + 2250: -7.4990373,19.485617 + 2251: -6.1709123,19.344992 + 2252: -6.3740373,19.813742 + 2253: -5.7646623,19.423117 + 2254: -8.999037,19.407492 + 2255: -9.389662,19.626242 + 2256: -9.827162,20.298117 + 2257: -10.045912,20.469992 + 2258: -8.686537,19.563742 + - node: + color: '#462F2366' + id: splatter + decals: + 2259: -7.3584123,20.079367 + 2260: -7.1240373,20.391867 + 2261: -6.6709123,20.376242 + 2262: -9.452162,20.204367 + 2263: -10.545912,20.579367 + 2264: -6.4521623,20.891867 + 2265: -6.3584123,21.219992 + 2266: -16.3407,24.152443 + 2267: -16.68445,23.464943 + 2268: -16.481325,23.183693 + 2269: -16.55945,23.777443 + 2270: -16.481325,22.996193 + 2271: -16.668825,22.730568 + 2272: -17.356325,22.496193 + 2273: -17.43445,21.824318 + 2274: -17.6532,21.652443 + 2275: -17.356325,22.418068 + 2276: -16.575075,22.589943 + 2277: -18.0282,21.464943 + 2278: -18.1532,21.339943 + 2279: -18.55945,21.480568 + 2280: -18.5907,21.121193 + 2281: -18.731325,20.652443 + 2282: -19.168825,20.464943 + 2283: -19.450075,20.136818 + 2284: -19.8407,19.761818 + 2285: -20.325075,19.668068 + 2286: -19.981325,19.558693 + 2287: -19.325075,19.871193 + 2288: -18.62195,20.668068 + 2289: -18.481325,20.683693 + 2290: -19.356325,19.793068 + 2291: -17.4657,21.558693 + 2292: -16.4657,24.558693 + 2293: -16.4657,25.011818 + 2294: -16.1532,25.418068 + 2295: -15.7782,25.511818 + 2296: -15.68445,25.511818 + 2297: -15.4032,26.121193 + 2298: -15.450075,26.621193 + 2299: -15.62195,26.058693 + 2300: -15.443701,26.93571 + 2301: -15.271826,27.420086 + 2302: -14.974951,27.49821 + 2303: -14.678076,27.49821 + 2304: -15.553076,27.46696 + 2305: -15.553076,27.045086 + 2306: -14.474951,27.420086 + 2307: -14.412451,27.826336 + 2308: -14.537451,28.201336 + 2309: -14.303076,28.701336 + 2310: -14.146826,28.96696 + 2311: -13.834326,29.420086 + 2312: -14.303076,29.420086 + 2313: -14.553076,28.96696 + 2314: -14.474951,28.52946 + 2315: -16.41245,25.263836 + 2316: -16.459326,25.138836 + 2317: -16.521826,24.545086 + 2318: -16.4437,25.46696 + 2319: -16.334326,24.201336 + 2320: -16.3187,23.638836 + 2321: -13.663182,29.598366 + 2322: -34.53777,-5.5130444 + 2323: -35.428394,-5.3880444 + 2324: -35.16277,-5.3724194 + 2325: -35.66277,-4.9817944 + 2326: -35.69402,-4.4817944 + 2327: -35.553394,-3.8977327 + 2328: -35.709644,-3.6789827 + 2329: -35.490894,-2.6946077 + 2330: -35.272144,-2.4602327 + 2331: -35.209644,-2.4602327 + 2332: -34.78777,-2.4289827 + 2333: -34.522144,-2.0852327 + 2334: -34.44402,-1.6789827 + 2335: -34.022144,-1.4446077 + 2336: -33.81902,-1.6164827 + 2337: -33.334644,-1.9758577 + 2338: -33.428394,-2.3508577 + 2339: -33.522144,-1.8977327 + 2340: -33.522144,-2.6789827 + 2341: -33.553394,-3.0071077 + 2342: -33.53777,-3.2883577 + 2343: -33.63152,-3.6633577 + 2344: -33.63152,-4.1633577 + 2345: -34.053394,-4.5852327 + 2346: -34.66277,-4.985231 + 2347: -34.62683,-5.3399754 + 2348: -35.56433,-4.7306004 + 2349: -35.56433,-4.2774754 + 2350: -35.517456,-3.1056004 + 2351: -35.486206,-2.4962254 + 2352: -34.68933,-2.2931004 + 2353: -34.37683,-2.2931004 + 2354: -34.50183,-2.4337254 + 2355: -34.37683,-1.4649754 + 2356: -33.43933,-2.0743504 + 2357: -33.579956,-4.1524754 + 2358: -33.62683,-4.3399754 + 2359: -33.986206,-4.3712254 + 2360: -33.72058,-4.3712254 + 2361: -34.56433,-5.1681004 + 2362: -35.47058,-5.4806004 + 2363: -36.586624,-3.5833085 + 2364: -36.586624,-3.8020585 + 2365: -36.47725,-4.317683 + 2366: -36.5085,-3.8489335 + 2367: -36.53975,-4.317683 + 2368: -36.555374,-4.770808 + 2369: -36.492874,-4.942683 + 2370: -36.399124,-5.223933 + 2371: -36.492874,-5.598933 + 2372: -36.41475,-6.036433 + 2373: -36.242874,-6.317683 + 2374: -35.8835,-6.427058 + 2375: -35.66475,-6.473933 + 2376: -35.6335,-6.677058 + 2377: -36.649124,-6.411433 + 2378: -36.47725,-6.614558 + 2379: -36.446,-6.567683 + 2380: -36.555374,-6.208308 + 2381: -36.5085,-6.098933 + 2382: -36.071,-6.505183 + 2383: -35.461624,-6.833308 + 2384: -35.555374,-7.302058 + 2385: -35.66475,-7.520808 + 2386: -35.524124,-6.836829 + 2387: -35.571,-6.92668 + 2388: -35.6335,-7.42668 + 2389: -35.586624,-7.98918 + 2390: -35.430374,-8.317305 + 2391: -35.071,-8.629805 + 2392: -34.649124,-8.629805 + 2393: -34.586624,-9.129805 + 2394: -34.97725,-8.598555 + 2395: -35.399124,-8.45793 + 2396: -35.492874,-8.223555 + 2397: -34.6335,-5.39543 + 2398: -34.961624,-5.536055 + 2399: -34.8835,-5.411055 + 2400: -34.524124,-8.782501 + 2401: -34.524124,-9.173126 + 2402: -34.586624,-9.501251 + 2403: -34.696,-9.954376 + 2404: -34.53975,-9.420317 + 2405: -34.5085,-10.779692 + 2406: -34.5085,-11.060942 + 2407: -34.5085,-11.514067 + 2408: -34.5085,-11.670317 + 2409: -34.6335,-10.732817 + 2410: -34.6335,-10.451567 + 2411: -34.524124,-11.748442 + 2412: -34.524124,-11.935942 + 2413: -34.492874,-12.295317 + 2414: -34.492874,-10.982817 + 2415: -34.72725,-11.264067 + 2416: -34.555374,-12.076567 + 2417: -34.571,-12.264067 + 2418: -34.571,-12.748442 + 2419: -34.47725,-13.139067 + 2420: -34.41475,-13.389067 + 2421: -34.700054,-12.357817 + 2422: -34.418804,-12.639067 + 2423: -34.450054,-13.201567 + 2424: -34.18443,-13.467192 + 2425: -33.887554,-13.514067 + 2426: -33.575054,-13.623442 + 2427: -34.262554,-13.545317 + 2428: -33.87193,-13.998442 + 2429: -33.71568,-14.264067 + 2430: -33.49693,-13.824717 + 2431: -33.37193,-14.590342 + 2432: -33.481304,-14.934092 + 2433: -33.481304,-15.121592 + 2434: -33.700054,-14.152842 + 2435: -33.62193,-14.449717 + 2436: -33.55943,-15.496592 + 2437: -33.481304,-15.699717 + 2438: -33.481304,-16.137217 + 2439: -33.168804,-16.543467 + 2440: -32.99693,-16.527842 + 2441: -32.65318,-16.480967 + 2442: -32.543804,-16.637217 + 2443: -32.52818,-17.074717 + 2444: -32.543804,-17.293467 + 2445: -33.46568,-16.340342 + 2446: -33.668804,-15.996592 + 2447: -33.481304,-15.371592 + 2448: -32.418804,-16.692472 + 2449: -32.49693,-17.192472 + 2450: -32.418804,-17.614347 + 2451: -32.418804,-18.036222 + 2452: -32.418804,-18.223722 + 2453: -32.62193,-17.192472 + 2454: -32.52818,-17.973722 + 2455: -32.512554,-18.395597 + 2456: -32.481304,-18.708097 + 2457: -32.387554,-19.114347 + 2458: -32.24693,-19.223722 + 2459: -32.512554,-16.426847 + 2460: -32.46568,-16.770597 + 2461: -32.65318,-16.551847 + 2462: -32.325054,-19.371162 + 2463: -32.012554,-19.371162 + 2464: -31.762554,-19.386787 + 2465: -31.580498,-19.652412 + 2466: -31.517998,-20.027412 + 2467: -31.299248,-20.339912 + 2468: -31.236748,-20.402412 + 2469: -30.971123,-20.402412 + 2470: -31.517998,-20.214912 + 2471: -31.767998,-19.589912 + 2472: -32.330498,-19.511787 + 2473: -32.674248,-19.402412 + 2474: -31.049248,-20.543037 + 2475: -30.986748,-20.496162 + 2476: -30.564873,-20.433662 + 2477: -30.080498,-20.527412 + 2478: -29.986748,-20.496162 + 2479: -29.471123,-20.449287 + 2480: -29.127373,-20.449287 + 2481: -28.799248,-20.386787 + 2482: -28.564873,-20.371162 + 2483: -29.142998,-20.433662 + 2484: -29.658623,-20.464912 + 2485: -30.408623,-20.464912 + 2486: -28.267998,-20.496162 + 2487: -28.236748,-20.480537 + 2488: -27.861748,-20.418037 + 2489: -27.705498,-20.418037 + 2490: -35.041847,-0.855474 + 2491: -34.104347,-0.183599 + 2492: -34.494972,-0.402349 + 2493: -34.541847,-0.496099 + 2494: -34.494972,0.175776 + 2495: -34.557472,0.253901 + 2496: -34.588722,0.582026 + 2497: -34.541847,1.019526 + 2498: -34.401222,1.300776 + 2499: -34.369972,1.488276 + 2500: -34.463722,1.066401 + 2501: -34.526222,-0.027348995 + 2502: -34.760597,-0.527349 + 2503: -35.073097,-0.824224 + 2504: -35.244972,-0.621099 + 2505: -34.104347,1.503901 + 2506: -33.744972,1.628901 + 2507: -33.619972,1.628901 + 2508: -34.198097,1.597651 + 2509: -33.260597,2.238276 + 2510: -33.432472,2.316401 + 2511: -33.604347,2.003901 + 2512: -33.604347,1.988276 + 2513: -33.198097,2.535151 + 2514: -33.119972,2.503901 + 2515: -32.510597,2.488276 + 2516: -32.213722,2.488276 + 2517: -31.90122,2.519526 + 2518: -31.43247,2.613276 + 2519: -31.40122,2.613276 + 2520: -32.526222,2.566401 + 2521: -32.682472,2.566401 + 2522: -31.979345,2.675776 + 2523: -31.49497,2.675776 + 2524: -31.21372,2.660151 + 2525: -31.104345,2.597651 + 2526: -31.104345,2.503901 + 2527: -28.36997,4.8619294 + 2528: -28.448095,4.8150544 + 2529: -28.448095,5.2213044 + 2530: -28.448095,5.3150544 + 2531: -28.43247,5.6431794 + 2532: -28.43247,5.9088044 + 2533: -28.40122,6.0806794 + 2534: -28.49497,6.4244294 + 2535: -28.573095,6.5650544 + 2536: -28.68247,6.8931794 + 2537: -28.666845,7.2369294 + 2538: -28.635595,7.3306794 + 2539: -28.68247,7.3931794 + 2540: -29.02622,7.3931794 + 2541: -28.823095,7.0494294 + 2542: -28.479345,5.8931794 + 2543: -28.541845,5.2525544 + 2544: -28.58872,5.0025544 + 2545: -28.666845,4.6275544 + 2546: -28.68247,4.5650544 + 2547: -31.49497,4.6431794 + 2548: -31.573095,4.7369294 + 2549: -31.49497,5.0963044 + 2550: -31.55747,5.4713044 + 2551: -31.073095,5.5650544 + 2552: -30.71372,5.5650544 + 2553: -30.49497,5.4869294 + 2554: -30.33872,5.5650544 + 2555: -30.61997,5.9088044 + 2556: -30.58872,6.2369294 + 2557: -30.83872,6.4713044 + 2558: -30.416845,6.5181794 + 2559: -31.33872,6.5181794 + 2560: -31.77622,6.5025544 + 2561: -31.979345,6.5025544 + 2562: -32.260597,6.5025544 + 2563: -32.526222,6.3775544 + 2564: -32.526222,5.8931794 + 2565: -32.557472,5.7525544 + 2566: -32.619972,5.6431794 + 2567: -32.963722,5.5963044 + 2568: -33.182472,5.5650544 + 2569: -33.401222,5.1275544 + 2570: -33.573097,4.7994294 + 2571: -33.385597,4.4244294 + 2572: -32.869972,4.5025544 + 2573: -32.119972,4.5806794 + 2574: -31.83872,4.5338044 + 2575: -31.635595,4.5806794 + 2576: -33.573097,4.5650544 + 2577: -33.448097,5.2056794 + 2578: -33.557472,5.4088044 + 2579: -33.557472,5.4088044 + 2580: -33.119972,4.4088044 + 2581: -32.885597,4.4244294 + 2582: -32.385597,4.4244294 + 2583: -32.198097,4.2838044 + 2584: -31.854345,3.8775544 + 2585: -32.229347,4.2681794 + 2586: -32.776222,4.3150544 + 2587: -31.77622,4.3775544 + 2588: -31.71372,4.3150544 + 2589: -32.698097,4.1744294 + 2590: -32.041847,3.7213044 + 2591: -32.010597,3.7213044 + 2592: -31.55747,4.1900544 + 2593: -31.83872,3.6119294 + 2594: -32.047966,4.2400417 + 2595: -32.34484,4.2400417 + 2596: -32.641716,4.6619167 + 2597: -31.594841,5.0212917 + 2598: -31.454216,5.2400417 + 2599: -31.172966,5.3962917 + 2600: -31.422966,6.6098127 + 2601: -25.466604,16.29826 + 2602: -25.529104,16.095135 + 2603: -25.529104,15.82951 + 2604: -25.560354,15.454509 + 2605: -25.63848,14.985759 + 2606: -25.38848,14.798259 + 2607: -25.372854,14.751384 + 2608: -25.63848,16.11076 + 2609: -25.82598,16.26701 + 2610: -25.82598,16.26701 + 2611: -25.54473,16.01701 + 2612: -25.497854,14.720134 + 2613: -25.57598,14.704509 + 2614: -25.716604,16.345135 + 2615: -26.01348,16.345135 + 2616: -25.54473,15.86076 + 2617: -25.560354,14.813884 + 2618: 15.077542,-22.85922 + 2619: 15.733791,-23.062346 + 2620: 16.577541,-22.85922 + 2621: 17.030666,-22.312346 + 2622: 15.718166,-26.999945 + 2623: 14.843167,-27.218695 + 2624: 14.952542,-27.98432 + 2625: 15.124417,-28.749945 + 2626: 14.827542,-29.086737 + 2627: 15.093167,-29.899237 + 2628: 10.020038,-29.321112 + 2629: 10.270038,-29.914862 + 2630: 10.035663,-30.024237 + 2631: 9.301288,-28.852362 + - node: + color: '#462F237C' + id: splatter + decals: + 3311: -15.855171,25.615559 + 3312: -15.511421,25.818684 + 3313: -15.761421,25.974934 + 3314: -16.027046,25.615559 + 3315: -15.605171,26.428059 + 3316: -14.542672,27.756184 + 3317: -16.542671,22.818684 + 3318: -16.558296,22.709309 + 3319: -18.698921,20.678059 + 3320: -19.402046,20.537434 + 3321: -19.448921,20.193684 + 3322: -19.589546,19.615559 + 3323: -20.183296,19.568684 + - node: + cleanable: True + color: '#462F237C' + id: splatter + decals: + 3173: -40.525124,4.357059 + 3174: -40.400124,4.028934 + 3175: -40.3845,3.622684 + 3176: -39.931374,3.544559 + 3177: -39.712624,3.497684 + 3178: -39.60325,3.1539342 + 3179: -39.47825,2.6539342 + 3180: -39.572,3.2789342 + 3181: -39.243874,2.7633092 + 3182: -38.712624,2.5758095 + 3183: -38.306374,2.5758095 + 3184: -37.85325,2.6695595 + 3185: -37.0095,2.5914347 + 3186: -37.056374,2.5289347 + 3187: -37.618874,2.5758095 + 3188: -38.118874,2.5758095 + 3189: -39.79075,3.372684 + 3190: -39.556374,3.0289342 + 3191: -40.525124,4.013309 + 3192: -40.087624,3.763309 + 3193: -39.79075,3.591434 + 3194: -39.47825,3.3570592 + 3195: -40.447,3.857059 + 3196: -40.6345,4.169559 + 3197: -40.60325,4.669559 + 3198: -37.54075,2.6070595 + 3199: -36.931374,2.4351847 + 3200: -36.79075,2.4195597 + 3201: -36.697,2.3101847 + 3202: -37.368874,2.4351845 + 3203: -40.212624,3.466434 + 3204: -40.556374,4.028934 + 3205: -40.79075,4.263309 + 3206: -39.441364,2.7211304 + 3207: -39.48824,2.5023804 + 3208: -37.30074,2.4711308 + 3209: -39.11324,2.4867554 + 3210: -13.43241,29.691153 + 3211: -13.432411,30.034903 + 3212: -13.604285,29.878653 + 3213: -13.604286,30.300528 + 3214: -13.682411,30.675528 + 3215: -13.635536,31.128653 + 3216: -13.526161,31.863026 + 3217: -13.557411,32.113026 + 3218: -13.557411,32.113026 + 3219: -13.432411,30.956778 + 3220: -13.166785,33.64485 + 3221: -12.666785,33.58235 + 3222: -12.635535,33.629227 + 3223: -12.729286,33.972977 + 3224: -12.635536,34.222977 + 3225: -12.619911,34.64485 + 3226: -12.557411,35.0511 + 3227: -12.666785,33.64485 + 3228: -13.15116,33.379227 + 3229: -13.104285,33.3636 + 3230: -12.43241,35.399944 + 3231: -12.24491,35.54057 + 3232: -11.916785,35.54057 + 3233: -11.760535,35.50932 + 3234: -12.30741,35.462444 + 3235: -12.52616,35.087444 + 3236: -12.61991,34.774944 + 3237: -9.431391,40.236362 + 3238: -9.415766,40.142612 + 3239: -9.447016,39.783237 + 3240: -9.509516,39.611362 + 3241: -9.462641,39.283237 + 3242: -9.353266,38.830112 + 3243: -9.290766,38.798862 + 3244: -9.572016,39.064487 + 3245: -9.587641,39.501987 + 3246: -9.572016,39.908237 + 3247: -9.587641,40.189487 + 3248: -8.165766,38.517612 + 3249: -7.7438903,38.580112 + 3250: -7.5876403,38.580112 + 3251: -7.3220153,38.580112 + 3252: -6.9313903,38.658237 + 3253: -7.9157653,38.486362 + 3254: -8.368891,38.501987 + 3255: -8.181391,38.486362 + 3256: -8.415766,38.486362 + 3257: -7.3220153,38.626987 + 3258: -7.1188903,38.408237 + 3259: -7.3532653,38.330112 + 3260: -7.5876403,38.376987 + 3261: -7.8532653,38.720737 + 3262: 11.84463,36.589012 + 3263: 12.25088,36.604637 + 3264: 12.84463,36.667137 + 3265: 13.18838,36.526512 + 3266: 31.518513,42.207916 + 3267: 31.502888,41.94229 + 3268: 31.37789,41.770416 + 3269: 31.393515,41.676666 + 3270: 26.364775,29.878 + 3271: 26.4429,29.59675 + 3272: 26.489775,29.612375 + 3273: 26.489775,29.84675 + 3274: 26.427275,30.268625 + 3275: 26.22415,30.5655 + 3276: 26.364775,30.393625 + 3277: 26.53665,30.34675 + 3278: 26.2554,30.956125 + 3279: 26.41165,30.487375 + 3280: 26.364775,30.112375 + 3281: 26.333525,29.987375 + 3282: 26.5054,29.706125 + 3283: 26.864775,29.674875 + 3284: 27.0679,29.628 + 3285: 27.22415,29.378 + 3286: 27.4429,29.3155 + 3287: 27.489775,28.8155 + 3288: 27.5054,28.753 + 3289: 27.5679,28.799875 + 3290: 27.458525,28.987375 + 3291: 27.396025,29.1905 + 3292: 27.083525,29.331125 + 3293: 26.614775,29.503 + 3294: 26.3179,29.628 + 3295: 26.59915,29.643625 + 3296: 26.677275,29.65925 + 3297: 27.489775,29.128 + 3298: 27.614775,28.78425 + 3299: 27.552275,29.362375 + 3300: 27.646025,29.378 + 3301: 26.4429,29.643625 + 3302: 24.084538,30.299877 + 3303: 27.958525,30.706125 + 3304: 26.493395,30.924875 + 3305: 26.524645,31.28425 - node: cleanable: True color: '#7915004B' id: splatter decals: - 1090: 14.765797,-3.808158 - 1091: 15.218922,-3.855033 - 1092: 15.172047,-4.261283 - 1093: 14.578297,-4.355033 - 1094: 14.797047,-4.808158 - 1095: 15.593922,-4.542533 - 1096: 15.531422,-3.870658 + 1087: 14.765797,-3.808158 + 1088: 15.218922,-3.855033 + 1089: 15.172047,-4.261283 + 1090: 14.578297,-4.355033 + 1091: 14.797047,-4.808158 + 1092: 15.593922,-4.542533 + 1093: 15.531422,-3.870658 - node: cleanable: True color: '#A11900FF' id: splatter decals: - 625: 18.606695,-47.02841 + 622: 18.606695,-47.02841 - node: cleanable: True color: '#FF3E3554' @@ -4237,7 +5988,8 @@ entities: -9,-7: 0: 65535 -9,-6: - 0: 65535 + 0: 65279 + 4: 256 -9,-5: 0: 65535 -9,-8: @@ -4340,7 +6092,7 @@ entities: 0: 65535 -14,-4: 0: 65533 - 4: 2 + 5: 2 -14,-3: 0: 65535 -14,-2: @@ -4379,7 +6131,7 @@ entities: 0: 65535 -13,-5: 0: 65519 - 5: 16 + 6: 16 -13,-8: 0: 61440 -17,-4: @@ -4430,10 +6182,10 @@ entities: 0: 65535 -12,2: 0: 57343 - 4: 8192 + 5: 8192 -12,3: 0: 64989 - 4: 546 + 5: 546 -11,0: 0: 65535 -11,1: @@ -4626,14 +6378,14 @@ entities: 0: 49151 -1,-15: 0: 4096 - 6: 76 + 7: 76 -1,-14: 0: 8994 -1,-13: 0: 35378 0,-15: 0: 65518 - 6: 1 + 7: 1 0,-14: 0: 65535 0,-13: @@ -4649,7 +6401,8 @@ entities: 1,-13: 0: 65535 2,-16: - 0: 65535 + 0: 63487 + 8: 2048 2,-15: 0: 65535 2,-14: @@ -4657,7 +6410,8 @@ entities: 2,-13: 0: 65535 3,-16: - 0: 65535 + 0: 65533 + 4: 2 3,-15: 0: 65535 3,-14: @@ -4692,35 +6446,35 @@ entities: 0: 13072 7,-15: 0: 30579 - 6: 128 + 7: 128 7,-14: 0: 65535 7,-13: 0: 65535 0,-17: 0: 32768 - 6: 8 + 7: 8 1,-17: 0: 64512 - 6: 275 + 7: 275 2,-17: 0: 65528 3,-17: 0: 65535 3,-18: 0: 49152 - 6: 2188 + 7: 2188 4,-18: 0: 4096 - 6: 1 + 7: 1 4,-17: 0: 65527 5,-17: 0: 65296 - 6: 8 + 7: 8 6,-17: 0: 12288 - 6: 275 + 7: 275 8,-12: 0: 65535 8,-11: @@ -4735,10 +6489,10 @@ entities: 0: 65535 9,-10: 0: 32767 - 6: 32768 + 7: 32768 9,-9: 0: 55 - 6: 34952 + 7: 34952 10,-11: 0: 4369 10,-10: @@ -4775,13 +6529,13 @@ entities: 0: 65535 9,-8: 0: 13056 - 6: 34952 + 7: 34952 9,-7: 0: 4403 - 6: 34952 + 7: 34952 9,-6: 0: 4369 - 6: 34958 + 7: 34958 9,-5: 0: 65535 10,-5: @@ -4897,12 +6651,12 @@ entities: 0: 63283 11,3: 0: 65531 - 6: 4 + 7: 4 12,0: 0: 65535 12,2: 0: 4096 - 6: 17476 + 7: 17476 12,3: 0: 65527 13,0: @@ -4911,7 +6665,7 @@ entities: 0: 12544 12,-3: 0: 63280 - 6: 2 + 7: 2 12,-2: 0: 65535 12,-1: @@ -4922,7 +6676,7 @@ entities: 0: 13107 13,-1: 0: 30583 - 6: 128 + 7: 128 8,4: 0: 65535 8,5: @@ -4935,7 +6689,7 @@ entities: 0: 65535 9,5: 0: 63487 - 4: 2048 + 5: 2048 9,6: 0: 65535 9,7: @@ -4944,7 +6698,7 @@ entities: 0: 65535 10,5: 0: 60927 - 4: 4608 + 5: 4608 10,6: 0: 65535 10,7: @@ -4963,10 +6717,10 @@ entities: 0: 32767 12,6: 0: 307 - 6: 192 + 7: 192 13,4: 0: 14199 - 6: 128 + 7: 128 13,5: 0: 19 -6,5: @@ -5145,10 +6899,10 @@ entities: 0: 14199 10,10: 0: 4403 - 6: 32768 + 7: 32768 10,11: 0: 1 - 6: 142 + 7: 142 8,12: 0: 255 8,13: @@ -5257,10 +7011,10 @@ entities: 0: 65535 -16,-8: 0: 65296 - 6: 1 + 7: 1 -15,-8: 0: 28928 - 6: 1102 + 7: 1102 -20,-4: 0: 65535 -20,-3: @@ -5301,7 +7055,7 @@ entities: 0: 65535 -18,-8: 0: 51200 - 6: 1102 + 7: 1102 -17,-8: 0: 65504 -20,0: @@ -5344,45 +7098,45 @@ entities: 0: 65535 -12,9: 0: 20479 - 6: 45056 + 7: 45056 -12,10: - 6: 11 + 7: 11 0: 65524 -12,11: - 6: 11 + 7: 11 0: 65524 -11,8: 0: 65535 -11,9: 0: 20479 - 6: 45056 + 7: 45056 -11,10: - 6: 11 + 7: 11 0: 65524 -11,11: - 6: 11 + 7: 11 0: 65524 -10,8: 0: 65535 -10,9: 0: 20479 - 6: 45056 + 7: 45056 -10,10: - 6: 11 + 7: 11 0: 65524 -10,11: - 6: 11 + 7: 11 0: 65524 -9,8: 0: 65535 -9,9: 0: 53247 - 6: 12288 + 7: 12288 -9,10: - 6: 3 + 7: 3 0: 65532 -9,11: - 6: 3 + 7: 3 0: 65532 -8,8: 0: 65535 @@ -5420,7 +7174,7 @@ entities: 0: 65535 -10,6: 0: 61439 - 4: 4096 + 5: 4096 -10,7: 0: 65535 -9,4: @@ -5456,7 +7210,8 @@ entities: -15,8: 0: 65535 -15,9: - 0: 65535 + 0: 49151 + 9: 16384 -15,10: 0: 65535 -15,11: @@ -5465,30 +7220,30 @@ entities: 0: 65535 -14,9: 0: 32767 - 6: 32768 + 7: 32768 -14,10: 0: 65527 - 6: 8 + 7: 8 -14,11: 0: 65527 - 6: 8 + 7: 8 -13,8: 0: 65535 -13,9: 0: 20479 - 6: 45056 + 7: 45056 -13,10: - 6: 11 + 7: 11 0: 65524 -13,11: - 6: 11 + 7: 11 0: 65524 -16,12: 0: 206 - 6: 2048 + 7: 2048 -15,12: 0: 3327 - 6: 768 + 7: 768 -14,12: 0: 4095 -13,12: @@ -5522,7 +7277,8 @@ entities: -13,5: 0: 65535 -13,6: - 0: 65535 + 0: 65407 + 10: 128 -13,7: 0: 65535 -20,4: @@ -5537,18 +7293,24 @@ entities: 0: 65535 -19,5: 0: 35071 + 7: 29184 -19,6: 0: 35064 + 7: 30214 -19,7: 0: 65528 + 7: 2 -18,4: 0: 65535 -18,5: 0: 35071 + 7: 29184 -18,6: 0: 35064 + 7: 29443 -18,7: 0: 65528 + 7: 2 -17,4: 0: 65535 -17,5: @@ -5563,10 +7325,10 @@ entities: 0: 65535 -22,-3: 0: 52360 - 6: 1 + 7: 1 -22,-4: 0: 32768 - 6: 28928 + 7: 28928 -21,-4: 0: 65472 -21,-3: @@ -5590,37 +7352,38 @@ entities: 0: 61439 -21,4: 0: 61166 - 6: 4096 + 7: 4096 -21,5: 0: 52428 - 6: 8738 + 7: 8738 -21,6: 0: 52428 - 6: 8738 + 7: 8738 -21,7: 0: 52428 - 6: 8738 + 7: 8738 -20,8: 0: 65535 -20,9: 0: 2255 - 6: 32800 + 7: 32800 -19,8: 0: 65535 -19,9: 0: 61439 -19,10: 0: 8 - 6: 16 + 7: 16 -18,8: 0: 65535 -18,9: - 0: 65535 + 0: 65527 + 11: 8 -18,10: 0: 61439 -18,11: 0: 12 - 6: 1826 + 7: 1826 -17,8: 0: 65535 -17,9: @@ -5631,14 +7394,14 @@ entities: 0: 239 -21,8: 0: 36044 - 6: 25122 + 7: 25122 -20,-6: 0: 8879 -20,-7: 0: 41504 -22,2: 0: 35020 - 6: 48 + 7: 48 -22,3: 0: 8 -23,-6: @@ -5663,44 +7426,59 @@ entities: 0: 34952 -9,-16: 0: 34944 + 7: 8 -9,-15: 0: 34952 -8,-16: 0: 65534 + 7: 1 -8,-15: 0: 65535 -7,-16: 0: 65523 + 7: 12 -7,-15: 0: 65535 -1,-16: - 6: 16384 + 7: 16384 8,-15: - 6: 562 + 7: 562 12,1: - 6: 17476 + 7: 17476 12,-4: - 6: 9984 + 7: 9984 14,-1: - 6: 562 + 7: 562 13,6: - 6: 273 + 7: 273 14,4: - 6: 562 + 7: 562 -23,2: - 6: 2184 + 7: 2184 -22,4: - 6: 50176 + 7: 50176 -22,5: - 6: 4 + 7: 4 -20,10: - 6: 200 + 7: 200 -16,-9: - 6: 4864 + 7: 4864 -17,-9: - 6: 2048 + 7: 2048 -8,12: - 6: 1 + 7: 1 + -8,-18: + 7: 12032 + -8,-17: + 7: 57890 + -7,-18: + 7: 9984 + -7,-17: + 7: 47778 + -9,-18: + 7: 34816 + -9,-17: + 7: 8 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -5762,6 +7540,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.14996 moles: @@ -5807,6 +7600,66 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14984 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14978 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.710548 + - 89.19683 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -5822,8 +7675,8 @@ entities: localAnchorB: -46.5,-29 localAnchorA: 0.49999997,-3 referenceAngle: -3.1415927 - damping: 494.90906 - stiffness: 4442.2935 + damping: 494.9198 + stiffness: 4442.39 - type: NavMap - uid: 14719 components: @@ -5996,8 +7849,8 @@ entities: localAnchorB: -46.5,-29 localAnchorA: 0.49999997,-3 referenceAngle: -3.1415927 - damping: 494.90906 - stiffness: 4442.2935 + damping: 494.9198 + stiffness: 4442.39 - proto: AcousticGuitarInstrument entities: - uid: 15048 @@ -6008,6 +7861,145 @@ entities: parent: 2 - proto: AirAlarm entities: + - uid: 2472 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 14220 + - 17071 + - 17425 + - 16184 + - 16159 + - 16158 + - 16181 + - 16157 + - 16180 + - 16156 + - 16179 + - 16133 + - 16134 + - type: AtmosDevice + joinedGrid: 2 + - uid: 2566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 4415 + - 14052 + - 14051 + - 13959 + - 13958 + - 14055 + - 13488 + - 10745 + - 16408 + - 16409 + - 9157 + - type: AtmosDevice + joinedGrid: 2 + - uid: 3583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 14122 + - 14124 + - 10748 + - 10746 + - 14125 + - 14117 + - 14123 + - 6143 + - 15162 + - 15163 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 3582 + - 7919 + - 6942 + - 14117 + - 14123 + - 11039 + - 10751 + - 3321 + - type: AtmosDevice + joinedGrid: 2 + - uid: 8072 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 17407 + - 17087 + - 8180 + - 8182 + - 16098 + - 16096 + - 17086 + - type: AtmosDevice + joinedGrid: 2 + - uid: 8726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 9055 + - 14850 + - 9078 + - 3589 + - 3588 + - 3586 + - 3585 + - 310 + - 280 + - 555 + - 14093 + - 14092 + - 14091 + - 14099 + - 14100 + - 14101 + - 8783 + - 9077 + - 5701 + - 8759 + - 14854 + - 14853 + - 13489 + - 2996 + - 2513 + - 2512 + - 2511 + - 1170 + - 1171 + - 16862 + - 17529 + - 12592 + - type: AtmosDevice + joinedGrid: 2 - uid: 12556 components: - type: Transform @@ -6024,6 +8016,764 @@ entities: - 13598 - type: AtmosDevice joinedGrid: 2 + - uid: 17351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 9065 + - 14213 + - 14164 + - 14214 + - 5698 + - 2307 + - 2510 + - 5700 + - 5699 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 1477 + - 14077 + - 14115 + - 14111 + - 14078 + - 14076 + - 17356 + - 15881 + - 15882 + - 17064 + - 562 + - 14066 + - 5689 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17361 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 14066 + - 17363 + - 17362 + - 15778 + - 15777 + - 7044 + - 7048 + - 10054 + - 7045 + - 7057 + - 15785 + - 7058 + - 15784 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 17365 + - 15757 + - 15758 + - 7043 + - 6969 + - 17363 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 2473 + - 15880 + - 15858 + - 15871 + - 15877 + - 14111 + - 14105 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 17387 + - 15920 + - 15919 + - 14214 + - 14164 + - 14213 + - 5691 + - 5692 + - 5693 + - 5694 + - 8783 + - 9077 + - 5701 + - 882 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 14985 + - 5694 + - 5693 + - 5692 + - 2515 + - 2514 + - 16960 + - 16957 + - 16958 + - 16959 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17391 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 17390 + - 17056 + - 17057 + - 14130 + - 14129 + - 2510 + - 2307 + - 5698 + - 1173 + - 2511 + - 2512 + - 2513 + - 2996 + - 5469 + - 2997 + - 2241 + - 4294 + - 14601 + - 17053 + - 17055 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17392 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 17393 + - 4294 + - 2241 + - 2997 + - 5469 + - 10748 + - 10746 + - 14125 + - 14124 + - 14122 + - 7443 + - 7442 + - 7441 + - 7440 + - 696 + - 695 + - 14205 + - 359 + - 385 + - 419 + - 14148 + - 14149 + - 14151 + - 8238 + - 17394 + - 17395 + - 17396 + - 10276 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17398 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 17397 + - 15208 + - 15290 + - 359 + - 385 + - 419 + - 14148 + - 14149 + - 14151 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17400 + components: + - type: Transform + pos: -23.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 17399 + - 15638 + - 15639 + - 7972 + - 17401 + - 17402 + - 14126 + - 14121 + - 17396 + - 17395 + - 17394 + - 8238 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17403 + components: + - type: Transform + pos: -8.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 17406 + - 17404 + - 14121 + - 14126 + - 9235 + - 10743 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17411 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 17405 + - 7973 + - 7953 + - 5695 + - 5696 + - 5697 + - 16045 + - 16044 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 7647 + - 17410 + - 15995 + - 15994 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17413 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 17409 + - 2648 + - 14158 + - 16115 + - 16116 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17414 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 14153 + - 17087 + - 17086 + - 3917 + - 3881 + - 5742 + - 17063 + - 14640 + - 7953 + - 7973 + - 5552 + - 14158 + - 14154 + - 14152 + - 5770 + - 5705 + - 8782 + - 17408 + - 16102 + - 16097 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 8782 + - 17415 + - 16214 + - 4067 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17421 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 15541 + - 15539 + - 17420 + - 7443 + - 7442 + - 7441 + - 7440 + - 14211 + - 1284 + - 530 + - 5552 + - 8182 + - 8180 + - 5192 + - 1979 + - 1235 + - 1995 + - 1994 + - 717 + - 296 + - 16075 + - 16074 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 17426 + - 7420 + - 7418 + - 7419 + - 7422 + - 7421 + - 7423 + - 7425 + - 7424 + - 15512 + - 15513 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17429 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 17440 + - 103 + - 101 + - 16372 + - 16383 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17430 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 16241 + - 16242 + - 17441 + - 14053 + - 14054 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17431 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 5690 + - 5471 + - 5648 + - 877 + - 5507 + - 14044 + - 14043 + - 17069 + - 17068 + - 14057 + - 14045 + - 14056 + - 17428 + - 16390 + - 16389 + - 16271 + - 16254 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 14880 + - 8760 + - 14015 + - 14043 + - 14044 + - 17443 + - 16272 + - 16255 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 17435 + - 17434 + - 13961 + - 17068 + - 17069 + - 14057 + - 17444 + - 16360 + - 16340 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17436 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 13959 + - 13958 + - 14056 + - 14045 + - 17446 + - 17445 + - 17447 + - 13960 + - 13957 + - 12380 + - 14880 + - 8760 + - 17435 + - 17434 + - 16341 + - 16361 + - 16319 + - 16318 + - 16322 + - 16320 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 14051 + - 17448 + - 16424 + - 16425 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17439 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 14052 + - 17449 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 17437 + - 3589 + - 3588 + - 3586 + - 3585 + - 17075 + - 17074 + - 17073 + - 14162 + - 1994 + - 1995 + - 1235 + - 1979 + - 17071 + - 5507 + - 877 + - 5648 + - 5471 + - 16197 + - 16196 + - 16783 + - 16782 + - 17450 + - 8754 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17476 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 14162 + - 17076 + - 17477 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 17488 + - 17077 + - 17041 + - 17485 + - 16724 + - 16723 + - 10171 + - 16728 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 17481 + - 17074 + - 17073 + - 17485 + - 17075 + - 16740 + - 16741 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17492 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 17506 + - 17504 + - 16813 + - 16814 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 17504 + - 17507 + - 17497 + - 13489 + - 17495 + - 17494 + - 17508 + - 8422 + - 16833 + - 16831 + - 16837 + - 16850 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17517 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 17521 + - 14090 + - 14092 + - 14093 + - 14091 + - 12541 + - 14095 + - 14094 + - 16561 + - 16562 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 17523 + - 14099 + - 14100 + - 14101 + - 14102 + - 14097 + - 14098 + - 16633 + - 17026 + - 16632 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 15581 + - 15580 + - 14098 + - 14097 + - 15582 + - 14095 + - 14094 + - 17522 + - 16643 + - 16642 + - 17012 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 17520 + - 17450 + - 14086 + - 16596 + - 16583 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 17525 + - 8759 + - 14853 + - 14854 + - 17528 + - 17349 + - 17529 + - 16887 + - 16884 + - 16886 + - 16855 + - type: AtmosDevice + joinedGrid: 2 - proto: AirAlarmElectronics entities: - uid: 15904 @@ -6908,6 +9658,11 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,32.5 parent: 2 + - uid: 14845 + components: + - type: Transform + pos: -28.5,-64.5 + parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 2913 @@ -7191,7 +9946,6 @@ entities: - type: MetaData flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-17.5 parent: 2 - proto: AirlockMaintJanitorLocked @@ -7569,15 +10323,6 @@ entities: - type: Docking dockJointId: docking15790 dockedWith: 14720 -- proto: AirlockShuttleEasyPry - entities: - - uid: 758 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-63.5 - parent: 2 - proto: AirlockTheatreLocked entities: - uid: 7969 @@ -7635,6 +10380,454 @@ entities: - type: Transform pos: 12.5,-48.5 parent: 2 +- proto: AirSensor + entities: + - uid: 1477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 + - uid: 2473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17378 + - uid: 3582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5704 + - uid: 6143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3583 + - uid: 8422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17493 + - uid: 8754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - uid: 9055 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - uid: 9065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - type: AtmosDevice + joinedGrid: 2 + - uid: 9078 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - uid: 10276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - uid: 10745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2566 + - uid: 12592 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - uid: 14850 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - uid: 14985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17389 + - uid: 17356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 + - uid: 17362 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 + - uid: 17365 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17369 + - uid: 17387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17386 + - uid: 17390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 + - uid: 17393 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - uid: 17397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17398 + - uid: 17399 + components: + - type: Transform + pos: -17.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17400 + - uid: 17404 + components: + - type: Transform + pos: -4.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17403 + - uid: 17405 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17411 + - uid: 17406 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17403 + - uid: 17407 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8072 + - uid: 17408 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 + - uid: 17409 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17413 + - uid: 17410 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17412 + - uid: 17415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17416 + - uid: 17420 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 + - uid: 17425 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 + - uid: 17426 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17427 + - uid: 17428 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17431 + - uid: 17437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - uid: 17440 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17429 + - uid: 17441 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17430 + - uid: 17443 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17432 + - uid: 17444 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17433 + - uid: 17445 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 + - uid: 17446 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 + - uid: 17447 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 + - uid: 17448 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17438 + - uid: 17449 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17439 + - uid: 17477 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17476 + - uid: 17481 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17487 + - uid: 17488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17483 + - uid: 17489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 2 + - uid: 17520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17524 + - uid: 17521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17517 + - uid: 17522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17519 + - uid: 17523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17518 + - uid: 17525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17526 - proto: AltarBananium entities: - uid: 2717 @@ -7685,6 +10878,23 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: AnomalyCoreBluespaceInert + entities: + - uid: 17484 + components: + - type: Transform + pos: 25.400436,-52.152355 + parent: 2 + - uid: 17490 + components: + - type: Transform + pos: 26.386536,-51.5069 + parent: 2 + - uid: 17491 + components: + - type: Transform + pos: 24.696081,-50.7793 + parent: 2 - proto: AnomalyLocatorWide entities: - uid: 4059 @@ -7710,348 +10920,468 @@ entities: - type: Transform pos: 33.777195,19.791845 parent: 2 +- proto: AntiAnomalyZone20 + entities: + - uid: 17296 + components: + - type: Transform + pos: -66.5,-1.5 + parent: 2 - proto: APCBasic entities: - uid: 888 components: + - type: MetaData + name: ЛКП допросной - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-10.5 parent: 2 - uid: 1486 components: + - type: MetaData + name: ЛКП приемная бриг - type: Transform rot: 3.141592653589793 rad pos: -37.5,-20.5 parent: 2 - uid: 1526 components: + - type: MetaData + name: ЛКП барак брига - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-16.5 parent: 2 - uid: 1587 components: + - type: MetaData + name: ЛКП бар - type: Transform pos: -23.5,-1.5 parent: 2 - uid: 1614 components: + - type: MetaData + name: ЛКП атмоса - type: Transform pos: -42.5,28.5 parent: 2 - uid: 2595 components: + - type: MetaData + name: ЛКП зона прибытия - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-33.5 parent: 2 - uid: 2771 components: + - type: MetaData + name: ЛКП комнаты клоуна - type: Transform pos: -5.5,-49.5 parent: 2 - uid: 2813 components: + - type: MetaData + name: ЛКП подстанции комнаты клоуна - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-42.5 parent: 2 - uid: 2947 components: + - type: MetaData + name: ЛКП мусорка - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-37.5 parent: 2 - - uid: 3038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-42.5 - parent: 2 - uid: 3421 components: + - type: MetaData + name: ЛКП разбитый шаттл - type: Transform pos: 12.5,-60.5 parent: 2 - uid: 3493 components: + - type: MetaData + name: ЛКП подстанции карго - type: Transform pos: -28.5,33.5 parent: 2 - uid: 3815 components: + - type: MetaData + name: святой ЛКП - type: Transform pos: -1.5,7.5 parent: 2 - uid: 3820 components: + - type: MetaData + name: ЛКП хранилище EVA - type: Transform pos: -10.5,4.5 parent: 2 - uid: 3867 components: + - type: MetaData + name: ЛКП подстанции северо-восточных соляр - type: Transform pos: 29.5,49.5 parent: 2 - uid: 3904 components: + - type: MetaData + name: ЛКП комнаты ГП - type: Transform rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 2 - uid: 4237 components: + - type: MetaData + name: ЛКП подстанции юго-восточных соляр - type: Transform pos: 35.5,-47.5 parent: 2 - uid: 4404 components: + - type: MetaData + name: ЛКП подстанции сервисного отдела - type: Transform rot: 3.141592653589793 rad pos: -8.5,6.5 parent: 2 - uid: 4539 components: + - type: MetaData + name: ЛКП комнаты уборщика - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-13.5 parent: 2 - uid: 4823 components: + - type: MetaData + name: ЛКП библиотеки - type: Transform pos: 6.5,2.5 parent: 2 - uid: 4881 components: + - type: MetaData + name: ЛКП подстанции РНД - type: Transform pos: 43.5,0.5 parent: 2 - uid: 4926 components: + - type: MetaData + name: ЛКП комнаты детектива - type: Transform pos: -29.5,-4.5 parent: 2 - uid: 4945 components: + - type: MetaData + name: ЛКП прибытие - type: Transform pos: -30.5,-39.5 parent: 2 - uid: 4992 components: + - type: MetaData + name: ЛКП комнаты смотрителя - type: Transform pos: -37.5,-8.5 parent: 2 - uid: 4997 components: + - type: MetaData + name: ЛКП тюрьмы - type: Transform rot: 3.141592653589793 rad pos: -41.5,-10.5 parent: 2 - uid: 5044 components: + - type: MetaData + name: ЛКП комнаты СБ - type: Transform rot: 3.141592653589793 rad pos: -39.5,-27.5 parent: 2 - uid: 5402 components: + - type: MetaData + name: ЛКП комнаты НР - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-3.5 parent: 2 - uid: 5403 components: + - type: MetaData + name: ЛКП ксеноархеологии - type: Transform rot: 1.5707963267948966 rad pos: 30.5,9.5 parent: 2 - uid: 5404 components: + - type: MetaData + name: ЛКП генератора аномалий - type: Transform rot: 1.5707963267948966 rad pos: 28.5,15.5 parent: 2 - uid: 5407 components: + - type: MetaData + name: ЛКП робототехники - type: Transform pos: 21.5,16.5 parent: 2 - uid: 5411 components: + - type: MetaData + name: ЛКП приемной РНД - type: Transform pos: 21.5,5.5 parent: 2 - uid: 5667 components: + - type: MetaData + name: ЛКП медицинские палаты - type: Transform rot: 3.141592653589793 rad pos: 19.5,-31.5 parent: 2 - uid: 5984 components: + - type: MetaData + name: ЛКП хим. лаб. - type: Transform rot: 3.141592653589793 rad pos: 6.5,-31.5 parent: 2 - uid: 5985 components: + - type: MetaData + name: ЛКП мед. отдел - type: Transform rot: 3.141592653589793 rad pos: 14.5,-39.5 parent: 2 - uid: 5986 components: + - type: MetaData + name: ЛКП комнаты ГВ - type: Transform pos: 7.5,-41.5 parent: 2 - uid: 5987 components: + - type: MetaData + name: ЛКП хирургия - type: Transform rot: 3.141592653589793 rad pos: 19.5,-45.5 parent: 2 - uid: 6135 components: + - type: MetaData + name: ЛКП морг - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-18.5 parent: 2 - uid: 6136 components: + - type: MetaData + name: ЛКП комнаты парамедика - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-19.5 parent: 2 - uid: 6243 components: + - type: MetaData + name: ЛКП вирусология - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-52.5 parent: 2 - uid: 7530 components: + - type: MetaData + name: ЛКП комнаты клонирования - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-34.5 parent: 2 - uid: 7697 components: + - type: MetaData + name: ЛКП комнаты ИИ - type: Transform rot: 3.141592653589793 rad pos: 13.5,48.5 parent: 2 - uid: 7956 components: + - type: MetaData + name: ЛКП подстанции командования - type: Transform pos: 33.5,43.5 parent: 2 - uid: 8135 components: + - type: MetaData + name: ЛКП мастерской - type: Transform pos: -26.5,14.5 parent: 2 - uid: 8202 components: + - type: MetaData + name: ЛКП кухня - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-16.5 parent: 2 - uid: 8241 components: + - type: MetaData + name: ЛКП старый бар - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-14.5 parent: 2 - uid: 8306 components: + - type: MetaData + name: ЛКП гидропоника - type: Transform rot: 3.141592653589793 rad pos: -6.5,-18.5 parent: 2 - uid: 8319 components: + - type: MetaData + name: ЛКП холодильник - type: Transform pos: -13.5,-21.5 parent: 2 - uid: 8831 components: + - type: MetaData + name: ЛКП утилизаторов - type: Transform rot: -1.5707963267948966 rad pos: -4.5,36.5 parent: 2 - uid: 8864 components: + - type: MetaData + name: ЛКП карго - type: Transform rot: 1.5707963267948966 rad pos: -24.5,32.5 parent: 2 - uid: 8865 components: + - type: MetaData + name: ЛКП комнаты КМ - type: Transform pos: -26.5,39.5 parent: 2 - uid: 9112 components: + - type: MetaData + name: ЛКП комнаты мима - type: Transform rot: -1.5707963267948966 rad pos: 6.5,39.5 parent: 2 - uid: 9514 components: + - type: MetaData + name: ЛКП пещеры - type: Transform pos: -85.5,0.5 parent: 2 - - uid: 9828 - components: - - type: Transform - pos: -54.5,26.5 - parent: 2 - uid: 9894 components: + - type: MetaData + name: ЛКП комнаты суда - type: Transform pos: -6.5,28.5 parent: 2 - uid: 10164 components: + - type: MetaData + name: ЛКП УЧ - type: Transform pos: -58.5,28.5 parent: 2 + - type: Apc + hasAccess: True + lastExternalState: Good + lastChargeState: Full - uid: 10304 components: + - type: MetaData + name: ЛКП комнаты ДАМ - type: Transform rot: 1.5707963267948966 rad pos: -43.5,16.5 parent: 2 - uid: 10309 components: + - type: MetaData + name: ЛКП комнаты СМЭС - type: Transform rot: 1.5707963267948966 rad pos: -44.5,21.5 parent: 2 - uid: 10793 components: + - type: MetaData + name: ЛКП комнаты СИ - type: Transform pos: -28.5,28.5 parent: 2 - uid: 11406 components: + - type: MetaData + name: ЛКП подстанции бриг - type: Transform pos: -70.5,-16.5 parent: 2 - uid: 13673 components: + - type: MetaData + name: ЛКП общего зала инженерки - type: Transform pos: -26.5,24.5 parent: 2 - uid: 13720 components: + - type: MetaData + name: ЛКП подстанции мед. отдел - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-44.5 parent: 2 - uid: 13807 components: + - type: MetaData + name: ЛКП юго-западных соляр - type: Transform pos: -70.5,-21.5 parent: 2 @@ -8059,6 +11389,8 @@ entities: entities: - uid: 2970 components: + - type: MetaData + name: ЛКП разбитого шаттла - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-21.5 @@ -8074,23 +11406,31 @@ entities: entities: - uid: 4827 components: + - type: MetaData + name: ЛКП дормы - type: Transform pos: 18.5,-5.5 parent: 2 - uid: 5033 components: + - type: MetaData + name: ЛКП комната ГСБ - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-23.5 parent: 2 - uid: 8530 components: + - type: MetaData + name: ЛКП хранилища - type: Transform rot: -1.5707963267948966 rad pos: 11.5,32.5 parent: 2 - uid: 11391 components: + - type: MetaData + name: ЛКП воздушный шлюз брига - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-27.5 @@ -8104,17 +11444,23 @@ entities: entities: - uid: 5026 components: + - type: MetaData + name: ЛКП оружейки - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-16.5 parent: 2 - uid: 8568 components: + - type: MetaData + name: ЛКП комнаты капитана - type: Transform pos: 16.5,27.5 parent: 2 - uid: 10088 components: + - type: MetaData + name: ЛКП комнаты грав. ген. - type: Transform rot: 1.5707963267948966 rad pos: -56.5,15.5 @@ -8123,24 +11469,32 @@ entities: entities: - uid: 4699 components: + - type: MetaData + name: ЛКП серверной рнд - type: Transform rot: 3.141592653589793 rad pos: 33.5,-3.5 parent: 2 - uid: 5088 components: + - type: MetaData + name: ЛКП перма бриг - type: Transform rot: -1.5707963267948966 rad pos: -41.5,0.5 parent: 2 - uid: 8520 components: + - type: MetaData + name: ЛКП комнаты коммуникаций - type: Transform rot: -1.5707963267948966 rad pos: 19.5,32.5 parent: 2 - uid: 8569 components: + - type: MetaData + name: ЛКП комнаты командования - type: Transform rot: 3.141592653589793 rad pos: 4.5,27.5 @@ -8152,6 +11506,13 @@ entities: - type: Transform pos: 32.2219,5.7022533 parent: 2 +- proto: Ashtray + entities: + - uid: 17342 + components: + - type: Transform + pos: 45.321518,21.69293 + parent: 2 - proto: AtmosDeviceFanTiny entities: - uid: 134 @@ -8166,11 +11527,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-49.5 parent: 2 - - uid: 622 - components: - - type: Transform - pos: -28.5,-63.5 - parent: 2 - uid: 625 components: - type: Transform @@ -8580,6 +11936,11 @@ entities: parent: 2 - proto: Autolathe entities: + - uid: 3121 + components: + - type: Transform + pos: -18.5,34.5 + parent: 2 - uid: 3417 components: - type: Transform @@ -8590,11 +11951,6 @@ entities: - type: Transform pos: 19.5,0.5 parent: 2 - - uid: 9055 - components: - - type: Transform - pos: -15.5,41.5 - parent: 2 - proto: AutolatheMachineCircuitboard entities: - uid: 14005 @@ -8707,6 +12063,19 @@ entities: - type: Transform pos: -35.5,-14.5 parent: 2 +- proto: BarberScissors + entities: + - uid: 17514 + components: + - type: Transform + pos: -12.511029,-6.319012 + parent: 2 + - uid: 17515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.440593,-6.6534743 + parent: 2 - proto: Barricade entities: - uid: 697 @@ -8736,6 +12105,12 @@ entities: - type: Transform pos: -54.5,7.5 parent: 2 + - uid: 6696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,20.5 + parent: 2 - uid: 11413 components: - type: Transform @@ -8766,6 +12141,12 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,-8.5 parent: 2 + - uid: 14981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-58.5 + parent: 2 - uid: 16972 components: - type: Transform @@ -8796,6 +12177,11 @@ entities: - type: Transform pos: 4.5,-43.5 parent: 2 + - uid: 11076 + components: + - type: Transform + pos: 10.5,-58.5 + parent: 2 - uid: 12583 components: - type: Transform @@ -8807,12 +12193,33 @@ entities: - type: Transform pos: -31.5,10.5 parent: 2 + - uid: 14543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-59.5 + parent: 2 - uid: 17242 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-13.5 parent: 2 + - uid: 17346 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 17347 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 17348 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 - proto: BarricadeDirectional entities: - uid: 455 @@ -8911,6 +12318,17 @@ entities: rot: -1.5707963267948966 rad pos: -69.5,-5.5 parent: 2 + - uid: 17352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,21.5 + parent: 2 + - uid: 17358 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 - proto: BarSign entities: - uid: 1057 @@ -9046,11 +12464,6 @@ entities: - type: Transform pos: -7.5,-53.5 parent: 2 - - uid: 3947 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 2 - uid: 4359 components: - type: Transform @@ -9582,6 +12995,13 @@ entities: - type: Transform pos: -3.5,6.5 parent: 2 +- proto: BookStruck + entities: + - uid: 2744 + components: + - type: Transform + pos: -58.416523,24.445093 + parent: 2 - proto: BoozeDispenser entities: - uid: 1117 @@ -9596,12 +13016,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-16.5 parent: 2 - - uid: 16749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,22.5 - parent: 2 - proto: BorgCharger entities: - uid: 5486 @@ -15825,21 +19239,11 @@ entities: - type: Transform pos: -54.5,16.5 parent: 2 - - uid: 10280 - components: - - type: Transform - pos: -54.5,26.5 - parent: 2 - uid: 10281 components: - type: Transform pos: -54.5,25.5 parent: 2 - - uid: 10282 - components: - - type: Transform - pos: -54.5,24.5 - parent: 2 - uid: 10283 components: - type: Transform @@ -18375,16 +21779,6 @@ entities: - type: Transform pos: -26.5,-59.5 parent: 2 - - uid: 14880 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 2 - - uid: 14881 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 2 - uid: 14882 components: - type: Transform @@ -18435,16 +21829,6 @@ entities: - type: Transform pos: -30.5,-59.5 parent: 2 - - uid: 14892 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 2 - - uid: 14893 - components: - - type: Transform - pos: -30.5,-61.5 - parent: 2 - uid: 14894 components: - type: Transform @@ -19055,11 +22439,6 @@ entities: - type: Transform pos: 38.5,19.5 parent: 2 - - uid: 17041 - components: - - type: Transform - pos: 7.5,20.5 - parent: 2 - uid: 17049 components: - type: Transform @@ -19285,6 +22664,76 @@ entities: - type: Transform pos: -69.5,-8.5 parent: 2 + - uid: 17357 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 17359 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 17360 + components: + - type: Transform + pos: -49.5,-13.5 + parent: 2 + - uid: 17379 + components: + - type: Transform + pos: -51.5,25.5 + parent: 2 + - uid: 17380 + components: + - type: Transform + pos: -51.5,24.5 + parent: 2 + - uid: 17381 + components: + - type: Transform + pos: -51.5,23.5 + parent: 2 + - uid: 17382 + components: + - type: Transform + pos: -50.5,23.5 + parent: 2 + - uid: 17383 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 17384 + components: + - type: Transform + pos: -48.5,23.5 + parent: 2 + - uid: 17385 + components: + - type: Transform + pos: -47.5,23.5 + parent: 2 + - uid: 17388 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 17422 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 17424 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 - proto: CableApcStack entities: - uid: 1772 @@ -26578,11 +30027,6 @@ entities: - type: Transform pos: -43.5,16.5 parent: 2 - - uid: 10276 - components: - - type: Transform - pos: -54.5,26.5 - parent: 2 - uid: 10305 components: - type: Transform @@ -28473,6 +31917,14 @@ entities: rot: -1.5707963267948966 rad pos: 20.311066,-12.298499 parent: 2 +- proto: CandlePurpleInfinite + entities: + - uid: 14945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.289328,-51.51672 + parent: 2 - proto: CandleRedInfinite entities: - uid: 12389 @@ -28480,6 +31932,12 @@ entities: - type: Transform pos: 0.46652955,0.7069062 parent: 2 + - uid: 14899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.641506,-51.29668 + parent: 2 - proto: CannabisSeeds entities: - uid: 16410 @@ -29729,6 +33187,12 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-49.5 parent: 2 + - uid: 5924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,22.5 + parent: 2 - uid: 6023 components: - type: Transform @@ -29783,12 +33247,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-29.5 parent: 2 - - uid: 6143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-19.5 - parent: 2 - uid: 6145 components: - type: Transform @@ -29862,6 +33320,12 @@ entities: - type: Transform pos: -64.5,11.5 parent: 2 + - uid: 7445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,23.5 + parent: 2 - uid: 7484 components: - type: Transform @@ -31266,6 +34730,12 @@ entities: - type: Transform pos: -4.5,14.5 parent: 2 + - uid: 11554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,21.5 + parent: 2 - uid: 11910 components: - type: Transform @@ -32373,6 +35843,36 @@ entities: - type: Transform pos: -54.5,7.5 parent: 2 + - uid: 14715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,23.5 + parent: 2 + - uid: 14716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,23.5 + parent: 2 + - uid: 14717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,21.5 + parent: 2 + - uid: 14718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,22.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,23.5 + parent: 2 - uid: 15426 components: - type: Transform @@ -32513,6 +36013,12 @@ entities: - type: Transform pos: 36.5,32.5 parent: 2 + - uid: 16582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,23.5 + parent: 2 - uid: 16648 components: - type: Transform @@ -32525,6 +36031,24 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,22.5 parent: 2 + - uid: 16749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,23.5 + parent: 2 + - uid: 16750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,27.5 + parent: 2 + - uid: 16754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,27.5 + parent: 2 - uid: 16838 components: - type: Transform @@ -32582,6 +36106,156 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,15.5 parent: 2 + - uid: 17155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,27.5 + parent: 2 + - uid: 17269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,27.5 + parent: 2 + - uid: 17270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,27.5 + parent: 2 + - uid: 17271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,27.5 + parent: 2 + - uid: 17272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,28.5 + parent: 2 + - uid: 17273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,29.5 + parent: 2 + - uid: 17274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,29.5 + parent: 2 + - uid: 17275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,28.5 + parent: 2 + - uid: 17276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,25.5 + parent: 2 + - uid: 17277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,25.5 + parent: 2 + - uid: 17278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,25.5 + parent: 2 + - uid: 17279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,25.5 + parent: 2 + - uid: 17280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,25.5 + parent: 2 + - uid: 17281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,25.5 + parent: 2 + - uid: 17282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,25.5 + parent: 2 + - uid: 17283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,25.5 + parent: 2 + - uid: 17284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,27.5 + parent: 2 + - uid: 17285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,28.5 + parent: 2 + - uid: 17286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,29.5 + parent: 2 + - uid: 17287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,30.5 + parent: 2 + - uid: 17288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,23.5 + parent: 2 + - uid: 17289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,22.5 + parent: 2 + - uid: 17290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,21.5 + parent: 2 + - uid: 17291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,20.5 + parent: 2 + - uid: 17294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,25.5 + parent: 2 - proto: Chair entities: - uid: 306 @@ -32664,11 +36338,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,21.5 parent: 2 - - uid: 14862 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 2 - uid: 14920 components: - type: Transform @@ -33061,6 +36730,17 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-7.5 parent: 2 + - uid: 14881 + components: + - type: Transform + pos: 20.5,-50.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-52.5 + parent: 2 - uid: 16580 components: - type: Transform @@ -33189,6 +36869,13 @@ entities: - type: Transform pos: 9.471062,8.727533 parent: 2 +- proto: CigaretteSpent + entities: + - uid: 17343 + components: + - type: Transform + pos: 45.602768,21.677305 + parent: 2 - proto: CircuitImprinter entities: - uid: 5438 @@ -33809,6 +37496,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingEyesHudMedSec + entities: + - uid: 17516 + components: + - type: Transform + pos: 50.487354,7.745494 + parent: 2 - proto: ClothingHandsGlovesColorBlack entities: - uid: 8771 @@ -33970,20 +37664,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadHatBunny - entities: - - uid: 12339 - components: - - type: Transform - pos: -78.51918,10.174431 - parent: 2 -- proto: ClothingHeadHatCatEars - entities: - - uid: 12340 - components: - - type: Transform - pos: -79.03109,9.603652 - parent: 2 - proto: ClothingHeadHatCorpsoft entities: - uid: 9787 @@ -33996,7 +37676,7 @@ entities: - uid: 798 components: - type: Transform - pos: -78.40412,9.249278 + pos: -78.93682,9.655767 parent: 2 - proto: ClothingHeadHatFlowerCrown entities: @@ -34248,6 +37928,13 @@ entities: - type: Transform pos: 18.500828,-3.3923998 parent: 2 +- proto: ClothingNeckHeadphones + entities: + - uid: 621 + components: + - type: Transform + pos: 15.646736,-9.545184 + parent: 2 - proto: ClothingNeckScarfStripedOrange entities: - uid: 15257 @@ -34655,7 +38342,7 @@ entities: - uid: 14979 components: - type: Transform - pos: -75.68992,11.294994 + pos: -79.18583,10.248651 parent: 2 - proto: ClothingUniformJumpsuitMercenary entities: @@ -34668,6 +38355,78 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Coal1 + entities: + - uid: 622 + components: + - type: Transform + pos: -78.45205,5.199046 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -82.58753,2.0696437 + parent: 2 + - uid: 17364 + components: + - type: Transform + pos: -63.204796,-13.351975 + parent: 2 + - uid: 17366 + components: + - type: Transform + pos: -61.572247,-5.7325006 + parent: 2 + - uid: 17367 + components: + - type: Transform + pos: -58.828617,-3.0101829 + parent: 2 + - uid: 17368 + components: + - type: Transform + pos: -61.440147,0.13083172 + parent: 2 + - uid: 17370 + components: + - type: Transform + pos: -70.19275,3.8633032 + parent: 2 + - uid: 17371 + components: + - type: Transform + pos: -65.802124,0.6445541 + parent: 2 + - uid: 17372 + components: + - type: Transform + pos: -66.04225,8.347005 + parent: 2 + - uid: 17373 + components: + - type: Transform + pos: -72.44858,12.400759 + parent: 2 + - uid: 17374 + components: + - type: Transform + pos: -76.374405,-3.6103096 + parent: 2 + - uid: 17375 + components: + - type: Transform + pos: -80.77449,-11.539312 + parent: 2 + - uid: 17376 + components: + - type: Transform + pos: -70.68377,-10.94556 + parent: 2 + - uid: 17377 + components: + - type: Transform + pos: -67.84197,-7.099069 + parent: 2 - proto: Cobweb1 entities: - uid: 411 @@ -34701,6 +38460,22 @@ entities: - type: Transform pos: -6.5,-33.5 parent: 2 + - uid: 14713 + components: + - type: Transform + pos: -36.5,40.5 + parent: 2 + - uid: 14714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,39.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 - proto: Cobweb2 entities: - uid: 1912 @@ -34708,6 +38483,11 @@ entities: - type: Transform pos: -26.5,-1.5 parent: 2 + - uid: 4291 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 - uid: 7646 components: - type: Transform @@ -34908,10 +38688,10 @@ entities: parent: 2 - proto: ComputerCargoShuttle entities: - - uid: 9078 + - uid: 17478 components: - type: Transform - pos: -14.5,41.5 + pos: -12.5,40.5 parent: 2 - proto: ComputerComms entities: @@ -35165,16 +38945,6 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,29.5 parent: 2 - - uid: 11077 - components: - - type: Transform - pos: -61.5,29.5 - parent: 2 - - uid: 11078 - components: - - type: Transform - pos: -62.5,29.5 - parent: 2 - proto: ConveyorBelt entities: - uid: 2727 @@ -35310,18 +39080,6 @@ entities: - type: Transform pos: 32.5,9.5 parent: 2 -- proto: CrateBaseWeldable - entities: - - uid: 9064 - components: - - type: Transform - pos: -12.5,41.5 - parent: 2 - - uid: 9065 - components: - - type: Transform - pos: -13.5,41.5 - parent: 2 - proto: CrateCoffin entities: - uid: 237 @@ -35437,13 +39195,6 @@ entities: showEnts: False occludes: True ent: null -- proto: CrateEmergencyInternalsLarge - entities: - - uid: 14945 - components: - - type: Transform - pos: -35.5,-21.5 - parent: 2 - proto: CrateEngineeringAMEControl entities: - uid: 17045 @@ -35581,51 +39332,6 @@ entities: - 0 - proto: CrateEngineeringSecure entities: - - uid: 12489 - components: - - type: Transform - anchored: True - pos: -68.5,36.5 - parent: 2 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14972 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 13235 - - 12994 - - 12973 - - 12624 - - 11639 - - 7621 - - 12490 - - 7445 - - 5924 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 12924 components: - type: Transform @@ -35801,10 +39507,10 @@ entities: air: volume: 200 immutable: False - temperature: 93.465614 + temperature: 293.1478 moles: - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -35821,8 +39527,8 @@ entities: showEnts: False occludes: True ents: - - 1772 - 1739 + - 1772 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -36072,6 +39778,18 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateWoodenGrave + entities: + - uid: 15132 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 15133 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 - proto: CrayonBox entities: - uid: 268 @@ -36210,6 +39928,18 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-17.5 parent: 2 + - uid: 17320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,27.5 + parent: 2 + - uid: 17321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,23.5 + parent: 2 - proto: CrystalCyan entities: - uid: 719 @@ -36346,6 +40076,12 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-22.5 parent: 2 + - uid: 10597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,27.5 + parent: 2 - uid: 12348 components: - type: Transform @@ -36425,6 +40161,12 @@ entities: rot: 3.141592653589793 rad pos: 47.5,18.5 parent: 2 + - uid: 17315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,23.5 + parent: 2 - proto: CrystalGreen entities: - uid: 8163 @@ -36521,11 +40263,6 @@ entities: - type: Transform pos: -25.5,40.5 parent: 2 - - uid: 8422 - components: - - type: Transform - pos: -10.5,41.5 - parent: 2 - uid: 8850 components: - type: Transform @@ -36766,18 +40503,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,21.5 parent: 2 -- proto: CrystalSubspaceStockPart - entities: - - uid: 4291 - components: - - type: Transform - pos: 28.6241,-51.49181 - parent: 2 - - uid: 4292 - components: - - type: Transform - pos: 28.439207,-51.623837 - parent: 2 - proto: d6Dice entities: - uid: 8227 @@ -36804,12 +40529,425 @@ entities: - type: Transform pos: -4.0369062,-8.322501 parent: 2 - - uid: 8174 +- proto: DefaultStationBeaconAI + entities: + - uid: 14594 components: - type: Transform - rot: -6.283185307179586 rad - pos: -12.440054,-6.8331184 + pos: 14.5,49.5 + parent: 2 + - type: WarpPoint + location: Командование - ИИ +- proto: DefaultStationBeaconAME + entities: + - uid: 14645 + components: + - type: Transform + pos: -43.5,13.5 + parent: 2 + - type: WarpPoint + location: Инженерия - ДАМ +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 14683 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - type: WarpPoint + location: РнД - Генератор аномалий +- proto: DefaultStationBeaconArmory + entities: + - uid: 13773 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - type: WarpPoint + location: Бриг - Оружейная +- proto: DefaultStationBeaconArrivals + entities: + - uid: 13276 + components: + - type: Transform + pos: -25.5,-53.5 + parent: 2 + - type: WarpPoint + location: Прибытие +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 14712 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - type: WarpPoint + location: РнД - Артефакторная +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 14711 + components: + - type: Transform + pos: -47.5,33.5 + parent: 2 + - type: WarpPoint + location: Инженерия - Атмос +- proto: DefaultStationBeaconBar + entities: + - uid: 14710 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - type: WarpPoint + location: Сервис - Бар +- proto: DefaultStationBeaconBotany + entities: + - uid: 14658 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - type: WarpPoint + location: Сервис - Гидропоника +- proto: DefaultStationBeaconBrig + entities: + - uid: 14705 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - type: WarpPoint + location: Бриг +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 14548 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - type: WarpPoint + location: Командование - Каюта капитана +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 12994 + components: + - type: Transform + pos: -19.5,42.5 + parent: 2 + - type: WarpPoint + location: Карго - доки +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 12973 + components: + - type: Transform + pos: -19.5,31.5 + parent: 2 + - type: WarpPoint + location: Карго - Приемная +- proto: DefaultStationBeaconCERoom + entities: + - uid: 14502 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - type: WarpPoint + location: Инженерия - Кабинет СИ +- proto: DefaultStationBeaconChemistry + entities: + - uid: 17300 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - type: WarpPoint + location: Мед - Химия +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 14545 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 + - type: WarpPoint + location: Мед - Кабинет ГВ +- proto: DefaultStationBeaconCommand + entities: + - uid: 14546 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - type: WarpPoint + location: Командование - Мостик +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 14630 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - type: WarpPoint + location: Командование - Зал суда +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 14498 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - type: WarpPoint + location: Бриг - Кабинет Детектива +- proto: DefaultStationBeaconDisposals + entities: + - uid: 14399 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - type: WarpPoint + location: Мусорка +- proto: DefaultStationBeaconDorms + entities: + - uid: 14644 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - type: WarpPoint + location: Сервис - Жилые помещения +- proto: DefaultStationBeaconEngineering + entities: + - uid: 14569 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - type: WarpPoint + location: Инженерия +- proto: DefaultStationBeaconEvac + entities: + - uid: 17302 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - type: WarpPoint + location: Эвакуация +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 17301 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - type: WarpPoint + location: Командование - Хранилище EVA +- proto: DefaultStationBeaconGravGen + entities: + - uid: 14674 + components: + - type: Transform + pos: -53.5,15.5 + parent: 2 + - type: WarpPoint + location: Инженерия - Генератор гравитации +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 13771 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - type: WarpPoint + location: Сервис - Кабинет ГП +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 14540 + components: + - type: Transform + pos: -52.5,-23.5 + parent: 2 + - type: WarpPoint + location: Бриг - Кабинет ГСБ +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 14489 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - type: WarpPoint + location: Сервис - Кабинет уборщика +- proto: DefaultStationBeaconKitchen + entities: + - uid: 14458 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - type: WarpPoint + location: Сервис - Кухня +- proto: DefaultStationBeaconLibrary + entities: + - uid: 14706 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - type: WarpPoint + location: Сервис - Библиотека +- proto: DefaultStationBeaconMedbay + entities: + - uid: 14485 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 2 + - type: WarpPoint + location: Мед - палаты +- proto: DefaultStationBeaconMedical + entities: + - uid: 14487 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - type: WarpPoint + location: Мед +- proto: DefaultStationBeaconMorgue + entities: + - uid: 14435 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - type: WarpPoint + location: Мед - Морг +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 13723 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - type: WarpPoint + location: Бриг - Пермакамеры +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 14522 + components: + - type: Transform + pos: -26.5,37.5 + parent: 2 + - type: WarpPoint + location: Карго - Кабинет КМ +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 14519 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - type: WarpPoint + location: РнД - Кабинет НР +- proto: DefaultStationBeaconRobotics + entities: + - uid: 13235 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - type: WarpPoint + location: РнД - Робототехника +- proto: DefaultStationBeaconSalvage + entities: + - uid: 17299 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - type: WarpPoint + location: Карго - Утилизаторская +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 13182 + components: + - type: Transform + pos: 22.5,46.5 + parent: 2 + - type: WarpPoint + location: Командование - Серверная +- proto: DefaultStationBeaconSolars + entities: + - uid: 12490 + components: + - type: Transform + pos: 36.5,-49.5 + parent: 2 + - type: WarpPoint + location: Соляры - ЮВ + - uid: 12624 + components: + - type: Transform + pos: 30.5,47.5 + parent: 2 + - type: WarpPoint + location: Соляры - СВ + - uid: 17298 + components: + - type: Transform + pos: -71.5,-23.5 + parent: 2 + - type: WarpPoint + location: Соляры - ЮЗ +- proto: DefaultStationBeaconSurgery + entities: + - uid: 13774 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 + - type: WarpPoint + location: Мед - Операционная +- proto: DefaultStationBeaconTechVault + entities: + - uid: 17417 + components: + - type: Transform + pos: 14.5,52.5 parent: 2 + - type: WarpPoint + location: Командование - Хранилище +- proto: DefaultStationBeaconTEG + entities: + - uid: 110 + components: + - type: Transform + pos: -39.5,33.5 + parent: 2 + - type: WarpPoint + location: Инженерия - ТЭГ +- proto: DefaultStationBeaconTeslaEngine + entities: + - uid: 14697 + components: + - type: Transform + pos: -61.5,25.5 + parent: 2 + - type: WarpPoint + location: Инженерия - Генератор Теслы +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 13772 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - type: WarpPoint + location: Бриг - Смотритель - proto: DefibrillatorCabinet entities: - uid: 3619 @@ -37691,6 +41829,12 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-36.5 parent: 2 + - uid: 9501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,28.5 + parent: 2 - uid: 11451 components: - type: Transform @@ -37708,12 +41852,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,36.5 parent: 2 - - uid: 11595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,26.5 - parent: 2 - uid: 14346 components: - type: Transform @@ -37786,6 +41924,12 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-25.5 parent: 2 + - uid: 7621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 2 - uid: 7819 components: - type: Transform @@ -37804,6 +41948,12 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-25.5 parent: 2 + - uid: 8631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,28.5 + parent: 2 - uid: 8701 components: - type: Transform @@ -38302,6 +42452,12 @@ entities: - type: Transform pos: -2.5,-26.5 parent: 2 + - uid: 9989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,26.5 + parent: 2 - uid: 10023 components: - type: Transform @@ -38349,6 +42505,12 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-32.5 parent: 2 + - uid: 10376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,28.5 + parent: 2 - uid: 11418 components: - type: Transform @@ -38950,24 +43112,6 @@ entities: - type: Transform pos: -3.5,33.5 parent: 2 - - uid: 11556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,26.5 - parent: 2 - - uid: 11557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,26.5 - parent: 2 - - uid: 11558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,26.5 - parent: 2 - uid: 11563 components: - type: Transform @@ -39124,11 +43268,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,29.5 parent: 2 - - uid: 11594 - components: - - type: Transform - pos: 9.5,28.5 - parent: 2 - uid: 11596 components: - type: Transform @@ -40525,6 +44664,12 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 + - uid: 10492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 - uid: 11416 components: - type: Transform @@ -40564,12 +44709,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,32.5 parent: 2 - - uid: 11559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,26.5 - parent: 2 - uid: 11561 components: - type: Transform @@ -40685,6 +44824,11 @@ entities: - type: Transform pos: 30.5,11.5 parent: 2 + - uid: 3458 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 - uid: 6432 components: - type: Transform @@ -40725,11 +44869,6 @@ entities: - type: Transform pos: -10.5,-17.5 parent: 2 - - uid: 11554 - components: - - type: Transform - pos: 5.5,26.5 - parent: 2 - uid: 11555 components: - type: Transform @@ -40960,11 +45099,6 @@ entities: rot: 3.141592653589793 rad pos: 23.55338,11.741095 parent: 2 - - uid: 16754 - components: - - type: Transform - pos: 49.30793,21.697426 - parent: 2 - proto: DrinkGoldenCup entities: - uid: 7387 @@ -40979,6 +45113,28 @@ entities: - type: Transform pos: -32.779964,45.628044 parent: 2 +- proto: DrinkMopwataBottleRandom + entities: + - uid: 4417 + components: + - type: Transform + pos: -62.56809,-22.020933 + parent: 2 + - uid: 17538 + components: + - type: Transform + pos: 31.377895,16.212215 + parent: 2 + - uid: 17539 + components: + - type: Transform + pos: 31.598007,16.027382 + parent: 2 + - uid: 17540 + components: + - type: Transform + pos: 31.430721,15.86015 + parent: 2 - proto: DrinkMREFlask entities: - uid: 9217 @@ -41048,6 +45204,11 @@ entities: parent: 2 - proto: DrinkVodkaBottleFull entities: + - uid: 2728 + components: + - type: Transform + pos: 49.244793,22.677305 + parent: 2 - uid: 2816 components: - type: Transform @@ -41058,6 +45219,11 @@ entities: - type: Transform pos: 37.35389,-15.284262 parent: 2 + - uid: 11557 + components: + - type: Transform + pos: 49.541668,22.84918 + parent: 2 - uid: 13459 components: - type: Transform @@ -41068,8 +45234,18 @@ entities: - type: Transform pos: 34.41588,-39.381138 parent: 2 + - uid: 17334 + components: + - type: Transform + pos: 49.682293,22.53668 + parent: 2 - proto: DrinkVodkaGlass entities: + - uid: 10508 + components: + - type: Transform + pos: 49.353794,21.88043 + parent: 2 - uid: 15104 components: - type: Transform @@ -41126,6 +45302,13 @@ entities: - type: Transform pos: -43.09468,25.439474 parent: 2 +- proto: DrinkWineGlass + entities: + - uid: 14892 + components: + - type: Transform + pos: 20.641506,-51.375893 + parent: 2 - proto: Dropper entities: - uid: 1039 @@ -41134,80 +45317,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.1427298,-15.437378 parent: 2 -- proto: EffectFlashBluespace - entities: - - uid: 1007 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - - uid: 1234 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - - uid: 2414 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - - uid: 5291 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - - uid: 8994 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - - uid: 9157 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - - uid: 11076 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - - uid: 12592 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - - uid: 12610 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - - uid: 15133 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - - uid: 16652 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - - uid: 17107 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - parent: 15132 - proto: EggSpider entities: - uid: 14646 @@ -41217,6 +45326,18 @@ entities: parent: 2 - proto: EmergencyLight entities: + - uid: 3591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-48.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-43.5 + parent: 2 - uid: 9415 components: - type: Transform @@ -41245,18 +45366,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,-19.5 parent: 2 - - uid: 13488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-50.5 - parent: 2 - - uid: 13489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-44.5 - parent: 2 - uid: 13491 components: - type: Transform @@ -42228,6 +46337,320 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,18.5 parent: 2 +- proto: FigureSpawner + entities: + - uid: 17107 + components: + - type: Transform + anchored: False + pos: 669.5,-1.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium + - uid: 17245 + components: + - type: Transform + anchored: False + pos: -405.5,373.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium + - uid: 17246 + components: + - type: Transform + anchored: False + pos: 957.5,120.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium + - uid: 17248 + components: + - type: Transform + anchored: False + pos: 35.5,-950.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium + - uid: 17249 + components: + - type: Transform + anchored: False + pos: 613.5,-583.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium + - uid: 17250 + components: + - type: Transform + anchored: False + pos: -400.5,-142.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium + - uid: 17251 + components: + - type: Transform + anchored: False + pos: -71.5,-181.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium + - uid: 17451 + components: + - type: Transform + anchored: False + pos: -219.5,-161.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium + - uid: 17496 + components: + - type: Transform + anchored: False + pos: -876.5,-13.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium + - uid: 17498 + components: + - type: Transform + anchored: False + pos: -282.5,142.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium + - uid: 17501 + components: + - type: Transform + anchored: False + pos: -195.5,184.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium + - uid: 17541 + components: + - type: Transform + anchored: False + pos: -193.5,-217.5 + parent: 1 + - type: RandomSpawner + prototypes: + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisSmall + - AsteroidDebrisMedium + - AsteroidDebrisMedium + - AsteroidDebrisLarge + - AsteroidDebrisLarger + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageSmall + - AsteroidSalvageMedium + - AsteroidSalvageMedium + - AsteroidSalvageLarge + - AsteroidSalvageHuge + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisSmall + - ScrapDebrisMedium - proto: filingCabinetDrawerRandom entities: - uid: 9133 @@ -42263,327 +46686,457 @@ entities: - type: Transform pos: 8.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17429 - uid: 103 components: - type: Transform pos: 8.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17429 - uid: 359 components: - type: Transform pos: -21.5,28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17398 - uid: 385 components: - type: Transform pos: -20.5,28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17398 - uid: 419 components: - type: Transform pos: -18.5,29.5 parent: 2 - - uid: 434 - components: - - type: Transform - pos: -14.5,33.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17398 - uid: 877 components: - type: Transform pos: 11.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 17431 - uid: 1235 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-2.5 parent: 2 - - uid: 1236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 2 - - uid: 1815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 2 - - uid: 1830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 + - 17442 - uid: 1979 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 + - 17442 - uid: 1994 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 + - 17442 - uid: 1995 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-2.5 parent: 2 - - uid: 1996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 + - 17442 - uid: 2241 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 + - 17392 - uid: 2307 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 17391 - uid: 2510 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 17391 - uid: 2511 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 + - 8726 - uid: 2512 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 + - 8726 - uid: 2513 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 + - 8726 - uid: 2996 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 + - 8726 - uid: 2997 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 + - 17392 - uid: 4294 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 + - 17392 - uid: 5469 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 + - 17392 - uid: 5471 components: - type: Transform pos: 9.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 17431 - uid: 5507 components: - type: Transform pos: 12.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 17431 - uid: 5648 components: - type: Transform pos: 10.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 17431 - uid: 5689 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 - uid: 5690 components: - type: Transform pos: 7.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17431 - uid: 5691 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17386 - uid: 5692 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17386 + - 17389 - uid: 5693 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17386 + - 17389 - uid: 5694 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17386 + - 17389 - uid: 5698 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 17391 - uid: 5699 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 - uid: 5700 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 - uid: 5701 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17386 + - 8726 - uid: 5705 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 - uid: 5770 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 - uid: 7647 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17412 - uid: 7953 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 + - 17411 - uid: 7973 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 + - 17411 - uid: 8180 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8072 + - 17421 - uid: 8182 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,7.5 parent: 2 - - uid: 8238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 2 - - uid: 8272 + - type: DeviceNetwork + deviceLists: + - 8072 + - 17421 + - uid: 8760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-0.5 + rot: 3.141592653589793 rad + pos: 20.5,-31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 + - 17432 - uid: 8782 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 + - 17416 - uid: 8783 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17386 + - 8726 - uid: 9077 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17386 + - 8726 - uid: 9235 components: - type: Transform pos: -7.5,38.5 parent: 2 - - uid: 10052 - components: - - type: Transform - pos: -17.5,33.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 17403 - uid: 10743 components: - type: Transform pos: -6.5,38.5 parent: 2 - - uid: 10744 - components: - - type: Transform - pos: -16.5,33.5 - parent: 2 - - uid: 10745 - components: - - type: Transform - pos: -15.5,33.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 17403 - uid: 10746 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 3583 - uid: 10748 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 3583 - uid: 10749 components: - type: Transform @@ -42602,12 +47155,18 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5704 - uid: 11039 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5704 - uid: 12337 components: - type: Transform @@ -42637,6 +47196,9 @@ entities: - type: Transform pos: 23.5,-36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 - uid: 13956 components: - type: Transform @@ -42647,46 +47209,78 @@ entities: - type: Transform pos: 2.5,-35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 - uid: 13958 components: - type: Transform pos: 12.5,-39.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2566 + - 17436 - uid: 13959 components: - type: Transform pos: 13.5,-39.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2566 + - 17436 - uid: 13960 components: - type: Transform pos: 2.5,-36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 - uid: 13961 components: - type: Transform pos: 1.5,-28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17433 - uid: 14015 components: - type: Transform pos: 24.5,-29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17432 - uid: 14043 components: - type: Transform pos: 17.5,-29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17432 + - 17431 - uid: 14044 components: - type: Transform pos: 17.5,-27.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17432 + - 17431 - uid: 14045 components: - type: Transform pos: 12.5,-33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 + - 17431 - uid: 14050 components: - type: Transform @@ -42697,78 +47291,126 @@ entities: - type: Transform pos: 16.5,-43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2566 + - 17438 - uid: 14052 components: - type: Transform pos: 9.5,-43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17439 + - 2566 - uid: 14053 components: - type: Transform pos: 16.5,-20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17430 - uid: 14054 components: - type: Transform pos: 22.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17430 - uid: 14055 components: - type: Transform pos: 23.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2566 - uid: 14056 components: - type: Transform pos: 13.5,-33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 + - 17431 - uid: 14057 components: - type: Transform pos: 8.5,-27.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17433 + - 17431 - uid: 14066 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 + - 17361 - uid: 14076 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 - uid: 14077 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 - uid: 14078 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 - uid: 14105 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17378 - uid: 14111 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 + - 17378 - uid: 14115 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 - uid: 14116 components: - type: Transform @@ -42781,102 +47423,171 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 3583 + - 5704 - uid: 14121 components: - type: Transform pos: -9.5,39.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17400 + - 17403 - uid: 14122 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 3583 - uid: 14123 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 3583 + - 5704 - uid: 14124 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 3583 - uid: 14125 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 3583 - uid: 14126 components: - type: Transform pos: -10.5,36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17400 + - 17403 - uid: 14148 components: - type: Transform pos: -18.5,30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17398 - uid: 14149 components: - type: Transform pos: -18.5,31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17398 - uid: 14151 components: - type: Transform pos: -18.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17398 - uid: 14152 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 - uid: 14153 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 - uid: 14154 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 - uid: 14158 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 + - 17413 - uid: 14162 components: - type: Transform pos: 7.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 17476 - uid: 14164 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 17386 - uid: 14213 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 17386 - uid: 14214 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 17386 - uid: 14215 components: - type: Transform @@ -42889,48 +47600,79 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 + - uid: 14880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 + - 17432 + - uid: 17041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17483 - uid: 17053 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 - uid: 17055 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 - uid: 17056 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 - uid: 17057 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 - uid: 17058 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,22.5 parent: 2 - - uid: 17063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-13.5 - parent: 2 - uid: 17064 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 - uid: 17065 components: - type: Transform @@ -42954,11 +47696,19 @@ entities: - type: Transform pos: 8.5,-28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17433 + - 17431 - uid: 17069 components: - type: Transform pos: 8.5,-29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17433 + - 17431 - uid: 17070 components: - type: Transform @@ -42969,43 +47719,73 @@ entities: - type: Transform pos: 14.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 + - 17442 - uid: 17073 components: - type: Transform pos: 1.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 17487 - uid: 17074 components: - type: Transform pos: 0.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 17487 - uid: 17075 components: - type: Transform pos: -0.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 17487 - uid: 17076 components: - type: Transform pos: 5.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17476 - uid: 17077 components: - type: Transform pos: -4.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17483 - uid: 17086 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 + - 8072 - uid: 17087 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 + - 8072 - uid: 17103 components: - type: Transform @@ -43016,6 +47796,45 @@ entities: - type: Transform pos: -49.5,29.5 parent: 2 + - uid: 17363 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 + - 17369 + - uid: 17434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 + - 17433 + - uid: 17435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 + - 17433 + - uid: 17485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17487 + - 17483 - proto: FirelockEdge entities: - uid: 280 @@ -43024,18 +47843,27 @@ entities: rot: 3.141592653589793 rad pos: -6.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 - uid: 296 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 - uid: 310 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 - uid: 380 components: - type: Transform @@ -43053,42 +47881,63 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 - uid: 555 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 - uid: 695 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 - uid: 696 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 - uid: 717 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 - uid: 1170 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 - uid: 1171 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 - uid: 1172 components: - type: Transform @@ -43099,175 +47948,319 @@ entities: - type: Transform pos: -26.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 - uid: 1284 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 - uid: 2514 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17389 - uid: 2515 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17389 - uid: 2648 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17413 + - uid: 3585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 8726 + - uid: 3586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 8726 + - uid: 3588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 8726 + - uid: 3589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 8726 - uid: 3881 components: - type: Transform pos: 24.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 - uid: 3917 components: - type: Transform pos: 23.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 - uid: 4415 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2566 - uid: 5192 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 - uid: 5552 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 + - 17421 - uid: 5695 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17411 - uid: 5696 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17411 - uid: 5697 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,14.5 parent: 2 - - uid: 5703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,2.5 - parent: 2 - - uid: 5704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,1.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 17411 - uid: 5742 components: - type: Transform pos: 30.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 - uid: 7418 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17427 - uid: 7419 components: - type: Transform pos: 9.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17427 - uid: 7420 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17427 - uid: 7421 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17427 - uid: 7422 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17427 - uid: 7423 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17427 - uid: 7440 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17421 - uid: 7441 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17421 - uid: 7442 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17421 - uid: 7443 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17421 - uid: 7972 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,37.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17400 + - uid: 8238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17400 + - uid: 8759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - 17526 - uid: 11412 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,20.5 parent: 2 - - uid: 14086 + - uid: 13488 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-16.5 + rot: -1.5707963267948966 rad + pos: 23.5,-38.5 parent: 2 - - uid: 14087 + - type: DeviceNetwork + deviceLists: + - 2566 + - uid: 13489 components: - type: Transform - pos: 2.5,-8.5 + pos: -15.5,-1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - 17493 + - uid: 14086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17524 - uid: 14088 components: - type: Transform @@ -43278,66 +48271,112 @@ entities: - type: Transform pos: -4.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17517 - uid: 14091 components: - type: Transform pos: -6.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - 17517 - uid: 14092 components: - type: Transform pos: -7.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - 17517 - uid: 14093 components: - type: Transform pos: -8.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - 17517 - uid: 14094 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17517 + - 17519 - uid: 14095 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17517 + - 17519 - uid: 14097 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17519 + - 17518 - uid: 14098 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17519 + - 17518 - uid: 14099 components: - type: Transform pos: -13.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - 17518 - uid: 14100 components: - type: Transform pos: -14.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - 17518 - uid: 14101 components: - type: Transform pos: -15.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - 17518 - uid: 14102 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17518 - uid: 14110 components: - type: Transform @@ -43354,23 +48393,26 @@ entities: - type: Transform pos: -32.5,11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 - uid: 14130 components: - type: Transform pos: -31.5,11.5 parent: 2 - - uid: 14161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,29.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 17391 - uid: 14205 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 - uid: 14206 components: - type: Transform @@ -43383,6 +48425,9 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 - uid: 14218 components: - type: Transform @@ -43395,6 +48440,9 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 - uid: 14277 components: - type: Transform @@ -43460,35 +48508,183 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 - uid: 14654 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,22.5 parent: 2 + - uid: 14853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - 17526 + - uid: 14854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 + - 17526 - uid: 15580 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17519 - uid: 15581 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17519 - uid: 15582 components: - type: Transform pos: -10.5,-15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17519 - uid: 17048 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,17.5 parent: 2 + - uid: 17063 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 + - uid: 17349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17526 + - uid: 17394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17400 + - uid: 17395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17400 + - uid: 17396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17392 + - 17400 + - uid: 17401 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17400 + - uid: 17402 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17400 + - uid: 17450 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 + - 17524 + - uid: 17494 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17493 + - uid: 17495 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17493 + - uid: 17497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17493 + - uid: 17528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17526 + - uid: 17529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17526 + - 8726 - proto: FirelockElectronics entities: - uid: 15273 @@ -43509,12 +48705,18 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 - uid: 882 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17386 - uid: 3228 components: - type: Transform @@ -43530,6 +48732,9 @@ entities: - type: Transform pos: -35.5,24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5704 - uid: 3528 components: - type: Transform @@ -43551,23 +48756,69 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17427 - uid: 7425 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17427 - uid: 12541 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17517 - uid: 16392 components: - type: Transform pos: -4.5,-12.5 parent: 2 + - uid: 17504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17493 + - 17492 + - uid: 17506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17492 + - uid: 17507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17493 + - uid: 17508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17493 - proto: Fireplace entities: - uid: 7232 @@ -43630,11 +48881,6 @@ entities: - type: Transform pos: -50.661106,30.560944 parent: 2 - - uid: 13276 - components: - - type: Transform - pos: -65.457375,18.589718 - parent: 2 - uid: 13279 components: - type: Transform @@ -43712,6 +48958,11 @@ entities: - type: Transform pos: -71.5,-4.5 parent: 2 + - uid: 8272 + components: + - type: Transform + pos: -78.5,-0.5 + parent: 2 - uid: 11854 components: - type: Transform @@ -44077,11 +49328,6 @@ entities: - type: Transform pos: -77.5,-0.5 parent: 2 - - uid: 12082 - components: - - type: Transform - pos: -78.5,-0.5 - parent: 2 - uid: 12083 components: - type: Transform @@ -45271,28 +50517,6 @@ entities: - type: Transform pos: -11.32637,25.461452 parent: 2 -- proto: FoodFrozenFreezy - entities: - - uid: 5924 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 12489 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleBerry - entities: - - uid: 11639 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 12489 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FoodFrozenPopsicleJumbo entities: - uid: 7377 @@ -45304,37 +50528,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 13235 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 12489 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleOrange - entities: - - uid: 12624 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 12489 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenSandwich - entities: - - uid: 7445 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 12489 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FoodFrozenSandwichStrawberry entities: - uid: 7375 @@ -45346,15 +50539,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 12994 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 12489 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FoodFrozenSnowconeMime entities: - uid: 6702 @@ -45362,17 +50546,6 @@ entities: - type: Transform pos: 5.5794315,40.835297 parent: 2 -- proto: FoodFrozenSundae - entities: - - uid: 7621 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 12489 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FoodGalaxythistle entities: - uid: 13493 @@ -45416,12 +50589,12 @@ entities: - type: Transform pos: 46.86138,5.584971 parent: 2 -- proto: FoodMeatHawaiianKebab +- proto: FoodMeatRotten entities: - - uid: 16582 + - uid: 17341 components: - type: Transform - pos: 45.44787,21.607355 + pos: 49.446518,21.13043 parent: 2 - proto: FoodMeatSpiderLeg entities: @@ -45479,17 +50652,6 @@ entities: - type: Transform pos: -5.3287005,-52.44495 parent: 2 -- proto: FoodPieFrosty - entities: - - uid: 12973 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 12489 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FoodPotato entities: - uid: 12372 @@ -45629,6 +50791,15 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' +- proto: GasMinerAmmonia + entities: + - uid: 10599 + components: + - type: Transform + pos: -35.5,40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: GasMinerCarbonDioxide entities: - uid: 10738 @@ -45657,16 +50828,6 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 -- proto: GasMinerPlasma - entities: - - uid: 110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerWaterVapor entities: - uid: 107 @@ -45824,14 +50985,6 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 13182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 13653 components: - type: Transform @@ -58330,6 +63483,9 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17416 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58350,6 +63506,9 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17369 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58360,6 +63519,9 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58369,6 +63531,9 @@ entities: - type: Transform pos: -45.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58378,6 +63543,9 @@ entities: - type: Transform pos: -45.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58387,16 +63555,29 @@ entities: - type: Transform pos: -36.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5704 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 9157 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 10054 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58417,6 +63598,9 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17483 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58466,6 +63650,9 @@ entities: - type: Transform pos: -29.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 3583 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58495,6 +63682,9 @@ entities: rot: 3.141592653589793 rad pos: -21.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17398 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58584,6 +63774,9 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17427 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58594,6 +63787,9 @@ entities: rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58660,6 +63856,9 @@ entities: - type: Transform pos: -20.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17400 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58720,6 +63919,9 @@ entities: rot: 3.141592653589793 rad pos: -41.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17369 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58730,6 +63932,9 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58799,6 +64004,9 @@ entities: - type: Transform pos: -52.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17378 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58809,6 +64017,9 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17378 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58819,6 +64030,9 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58829,6 +64043,9 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17386 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58859,6 +64076,9 @@ entities: rot: 3.141592653589793 rad pos: 32.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17412 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58869,6 +64089,9 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17411 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58879,6 +64102,9 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58889,6 +64115,9 @@ entities: rot: 3.141592653589793 rad pos: 21.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8072 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58899,6 +64128,9 @@ entities: rot: 3.141592653589793 rad pos: 21.5,1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58909,6 +64141,9 @@ entities: rot: 3.141592653589793 rad pos: 32.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17413 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58919,6 +64154,9 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58928,6 +64166,9 @@ entities: - type: Transform pos: 14.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58937,6 +64178,9 @@ entities: - type: Transform pos: 14.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58947,6 +64191,9 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58957,6 +64204,9 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58967,6 +64217,9 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58987,6 +64240,9 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17430 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -58997,6 +64253,9 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17431 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59007,6 +64266,9 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-27.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17432 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59026,6 +64288,9 @@ entities: - type: Transform pos: 11.5,-35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59036,6 +64301,9 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59045,6 +64313,9 @@ entities: - type: Transform pos: 4.5,-27.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17433 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59055,6 +64326,9 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59064,6 +64338,9 @@ entities: - type: Transform pos: 6.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17429 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59074,6 +64351,9 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17431 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59104,6 +64384,9 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2566 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59114,6 +64397,9 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17438 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59154,6 +64440,9 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17517 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59163,6 +64452,9 @@ entities: - type: Transform pos: 2.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17524 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59182,6 +64474,9 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17518 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59192,6 +64487,9 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17519 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59202,6 +64500,9 @@ entities: rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17483 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59212,6 +64513,9 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17487 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59232,6 +64536,9 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59242,6 +64549,9 @@ entities: rot: 3.141592653589793 rad pos: -11.5,1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17492 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59251,6 +64561,9 @@ entities: - type: Transform pos: -13.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17493 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59260,6 +64573,9 @@ entities: - type: Transform pos: -13.5,5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17493 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59270,6 +64586,9 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17526 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59280,6 +64599,9 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8726 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59290,6 +64612,9 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17526 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59310,6 +64635,9 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17389 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59320,6 +64648,9 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-34.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17389 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59341,6 +64672,9 @@ entities: - type: Transform pos: -34.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5704 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59371,6 +64705,9 @@ entities: rot: 3.141592653589793 rad pos: -44.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17369 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59381,6 +64718,9 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59391,6 +64731,9 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59461,6 +64804,9 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 3583 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59529,6 +64875,9 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17398 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59586,6 +64935,9 @@ entities: - type: Transform pos: 6.5,30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17427 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59596,6 +64948,9 @@ entities: rot: 3.141592653589793 rad pos: 8.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59651,6 +65006,9 @@ entities: - type: Transform pos: -21.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17400 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59701,6 +65059,9 @@ entities: rot: 3.141592653589793 rad pos: -42.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17369 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59711,6 +65072,9 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59721,6 +65085,9 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59731,6 +65098,9 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17361 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59791,6 +65161,9 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17378 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59801,6 +65174,9 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17378 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59811,6 +65187,9 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17355 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59821,6 +65200,9 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17386 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59851,6 +65233,9 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17412 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59861,6 +65246,9 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17411 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59871,6 +65259,9 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17421 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59881,6 +65272,9 @@ entities: rot: 3.141592653589793 rad pos: 19.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8072 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59891,6 +65285,9 @@ entities: rot: 3.141592653589793 rad pos: 19.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17414 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59901,6 +65298,9 @@ entities: rot: 3.141592653589793 rad pos: 31.5,8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17413 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59911,6 +65311,9 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59920,6 +65323,9 @@ entities: - type: Transform pos: 15.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59930,6 +65336,9 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59940,6 +65349,9 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59949,6 +65361,9 @@ entities: - type: Transform pos: 20.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2472 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59959,6 +65374,9 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59969,6 +65387,9 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17416 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59988,6 +65409,9 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17430 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -59997,6 +65421,9 @@ entities: - type: Transform pos: 20.5,-24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17431 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60007,6 +65434,9 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17432 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60027,6 +65457,9 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60037,6 +65470,9 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60046,6 +65482,9 @@ entities: - type: Transform pos: 5.5,-29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17433 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60056,6 +65495,9 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17436 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60065,6 +65507,9 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17429 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60075,6 +65520,9 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17431 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60095,6 +65543,9 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2566 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60105,6 +65556,9 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17438 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60154,6 +65608,9 @@ entities: - type: Transform pos: -3.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17517 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60163,6 +65620,9 @@ entities: - type: Transform pos: 1.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17524 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60182,6 +65642,9 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17518 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60192,6 +65655,9 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17519 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60202,6 +65668,9 @@ entities: rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17483 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60212,6 +65681,9 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17483 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60222,6 +65694,9 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17487 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60242,6 +65717,9 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17442 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60252,6 +65730,9 @@ entities: rot: 3.141592653589793 rad pos: -9.5,1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17492 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60262,6 +65743,9 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17493 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60272,6 +65756,9 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17493 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60282,6 +65769,9 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17526 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60292,6 +65782,9 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17526 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60311,6 +65804,9 @@ entities: - type: Transform pos: -29.5,-34.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17389 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60321,6 +65817,9 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17389 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60331,6 +65830,9 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17519 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -60351,16 +65853,19 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 17518 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - proto: Gateway entities: - - uid: 3536 + - uid: 14836 components: - type: Transform - pos: 25.5,-51.5 + pos: -11.5,41.5 parent: 2 - type: Gateway enabled: True @@ -60495,11 +66000,6 @@ entities: - type: Transform pos: -53.5,18.5 parent: 2 - - uid: 621 - components: - - type: Transform - pos: -25.5,-62.5 - parent: 2 - uid: 842 components: - type: Transform @@ -60750,11 +66250,6 @@ entities: - type: Transform pos: -24.5,-54.5 parent: 2 - - uid: 2566 - components: - - type: Transform - pos: -26.5,-62.5 - parent: 2 - uid: 2569 components: - type: Transform @@ -61290,30 +66785,10 @@ entities: - type: Transform pos: -6.5,42.5 parent: 2 - - uid: 8753 - components: - - type: Transform - pos: -9.5,40.5 - parent: 2 - - uid: 8757 - components: - - type: Transform - pos: -14.5,42.5 - parent: 2 - - uid: 8758 - components: - - type: Transform - pos: -13.5,42.5 - parent: 2 - - uid: 8759 - components: - - type: Transform - pos: -12.5,42.5 - parent: 2 - - uid: 8760 + - uid: 9064 components: - type: Transform - pos: -11.5,42.5 + pos: -55.5,46.5 parent: 2 - uid: 9761 components: @@ -61885,26 +67360,11 @@ entities: - type: Transform pos: -50.5,-12.5 parent: 2 - - uid: 14538 - components: - - type: Transform - pos: -31.5,-62.5 - parent: 2 - uid: 14541 components: - type: Transform pos: -32.5,-55.5 parent: 2 - - uid: 14542 - components: - - type: Transform - pos: -30.5,-62.5 - parent: 2 - - uid: 14543 - components: - - type: Transform - pos: -30.5,-63.5 - parent: 2 - uid: 14570 components: - type: Transform @@ -61925,11 +67385,6 @@ entities: - type: Transform pos: -0.5,3.5 parent: 14719 - - uid: 14836 - components: - - type: Transform - pos: -26.5,-63.5 - parent: 2 - uid: 14841 components: - type: Transform @@ -61945,6 +67400,86 @@ entities: - type: Transform pos: 49.5,24.5 parent: 2 + - uid: 17303 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - uid: 17327 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 17328 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 17329 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 17330 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 17452 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 17453 + components: + - type: Transform + pos: -32.5,-62.5 + parent: 2 + - uid: 17454 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 2 + - uid: 17455 + components: + - type: Transform + pos: -25.5,-63.5 + parent: 2 + - uid: 17460 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 17461 + components: + - type: Transform + pos: -30.5,-66.5 + parent: 2 + - uid: 17463 + components: + - type: Transform + pos: -26.5,-66.5 + parent: 2 + - uid: 17464 + components: + - type: Transform + pos: -26.5,-67.5 + parent: 2 + - uid: 17465 + components: + - type: Transform + pos: -26.5,-68.5 + parent: 2 + - uid: 17480 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 2 + - uid: 17486 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 2 - proto: GrilleBroken entities: - uid: 2660 @@ -61953,6 +67488,11 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-20.5 parent: 2 + - uid: 8752 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 - uid: 12402 components: - type: Transform @@ -61987,6 +67527,71 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,33.5 parent: 2 + - uid: 14161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-66.5 + parent: 2 + - uid: 17466 + components: + - type: Transform + pos: -26.5,-65.5 + parent: 2 + - uid: 17469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-65.5 + parent: 2 + - uid: 17470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-67.5 + parent: 2 + - uid: 17474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-67.5 + parent: 2 + - uid: 17479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-69.5 + parent: 2 + - uid: 17531 + components: + - type: Transform + pos: -32.5,47.5 + parent: 2 + - uid: 17532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,47.5 + parent: 2 +- proto: GrilleDiagonal + entities: + - uid: 1007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-63.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-63.5 + parent: 2 + - uid: 17472 + components: + - type: Transform + pos: -26.5,-69.5 + parent: 2 - proto: GrilleSpawner entities: - uid: 1801 @@ -62285,12 +67890,6 @@ entities: - type: Transform pos: -24.5,-37.5 parent: 2 - - uid: 13525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,46.5 - parent: 2 - uid: 13526 components: - type: Transform @@ -62577,6 +68176,13 @@ entities: parent: 12355 - type: Physics canCollide: False +- proto: HoloprojectorField + entities: + - uid: 17505 + components: + - type: Transform + pos: -37.440945,-21.914015 + parent: 2 - proto: HospitalCurtains entities: - uid: 4469 @@ -62629,7 +68235,7 @@ entities: pos: 21.5,-12.5 parent: 2 - type: Door - secondsUntilStateChange: -70580.08 + secondsUntilStateChange: -78349.914 state: Closing - uid: 1457 components: @@ -62694,6 +68300,24 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,5.5 parent: 2 + - uid: 14893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-50.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-52.5 + parent: 2 + - uid: 14924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-51.5 + parent: 2 - uid: 15136 components: - type: Transform @@ -63283,10 +68907,10 @@ entities: air: volume: 200 immutable: False - temperature: 19.718554 + temperature: 293.14694 moles: - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -63303,11 +68927,11 @@ entities: showEnts: False occludes: True ents: - - 5397 - - 3504 - - 3464 - - 3456 - 3339 + - 3456 + - 3464 + - 3504 + - 5397 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -63394,13 +69018,6 @@ entities: showEnts: False occludes: True ent: null -- proto: LockerBluespaceStation - entities: - - uid: 15132 - components: - - type: Transform - pos: -73.5,5.5 - parent: 2 - proto: LockerBoozeFilled entities: - uid: 1109 @@ -63830,8 +69447,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -63848,18 +69465,18 @@ entities: showEnts: False occludes: True ents: - - 14990 - - 14991 - - 14992 - - 14993 - - 14994 - - 14995 - - 14996 - - 14997 - - 14998 - - 14999 - - 15000 - 15001 + - 15000 + - 14999 + - 14998 + - 14997 + - 14996 + - 14995 + - 14994 + - 14993 + - 14992 + - 14991 + - 14990 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -63930,6 +69547,12 @@ entities: - type: Transform pos: 33.5,-2.5 parent: 2 + - uid: 17353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,21.5 + parent: 2 - proto: MachineFrameDestroyed entities: - uid: 4285 @@ -64087,6 +69710,13 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 2 +- proto: MatchstickSpent + entities: + - uid: 17344 + components: + - type: Transform + pos: 45.493393,21.557667 + parent: 2 - proto: MaterialCloth entities: - uid: 541 @@ -64324,14 +69954,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-28.5 parent: 2 -- proto: MonkeyCubeBox - entities: - - uid: 8193 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 33.522274,9.641938 - parent: 2 - proto: MopItem entities: - uid: 464 @@ -64902,6 +70524,13 @@ entities: - type: Transform pos: 7.627235,-56.39288 parent: 2 +- proto: PetCarrier + entities: + - uid: 4348 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 - proto: Pickaxe entities: - uid: 7456 @@ -65016,13 +70645,6 @@ entities: canCollide: False - proto: PlasmaCanister entities: - - uid: 9501 - components: - - type: Transform - pos: -63.5,32.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10736 components: - type: Transform @@ -65159,6 +70781,20 @@ entities: - type: Transform pos: 13.455497,-24.54226 parent: 2 +- proto: PlushieHampter + entities: + - uid: 17419 + components: + - type: Transform + pos: -29.319164,-48.38994 + parent: 2 +- proto: PlushieHuman + entities: + - uid: 17418 + components: + - type: Transform + pos: -29.350145,-55.22454 + parent: 2 - proto: PlushieLizard entities: - uid: 14573 @@ -65166,6 +70802,13 @@ entities: - type: Transform pos: -32.325665,45.64367 parent: 2 +- proto: PlushieLizardMirrored + entities: + - uid: 7040 + components: + - type: Transform + pos: -27.673283,-56.31758 + parent: 2 - proto: PlushieMoth entities: - uid: 7388 @@ -65286,10 +70929,12 @@ entities: - type: Transform pos: -40.5,29.5 parent: 2 - - uid: 16849 +- proto: PortableScrubberMachineCircuitBoard + entities: + - uid: 17354 components: - type: Transform - pos: 37.5,21.5 + pos: 37.496883,21.467098 parent: 2 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: @@ -67067,22 +72712,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-58.5 parent: 2 - - uid: 14924 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-62.5 - parent: 2 - - uid: 14925 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-62.5 - parent: 2 - uid: 14927 components: - type: MetaData @@ -67430,11 +73059,6 @@ entities: - type: Transform pos: -18.5,2.5 parent: 2 - - uid: 7040 - components: - - type: Transform - pos: -11.5,41.5 - parent: 2 - uid: 7655 components: - type: Transform @@ -67983,6 +73607,13 @@ entities: - type: Transform pos: 18.525774,50.658035 parent: 2 +- proto: PsychBed + entities: + - uid: 17297 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 - proto: Rack entities: - uid: 187 @@ -68170,23 +73801,6 @@ entities: - type: Transform pos: -61.5,32.5 parent: 2 -- proto: RadiationCollectorNoTank - entities: - - uid: 2744 - components: - - type: Transform - pos: -71.5,30.5 - parent: 2 - - uid: 3458 - components: - - type: Transform - pos: -72.5,30.5 - parent: 2 - - uid: 11819 - components: - - type: Transform - pos: -73.5,30.5 - parent: 2 - proto: RadioHandheld entities: - uid: 7458 @@ -68357,6 +73971,12 @@ entities: - type: Transform pos: -72.5,-7.5 parent: 2 + - uid: 1815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,41.5 + parent: 2 - uid: 1824 components: - type: Transform @@ -68477,6 +74097,12 @@ entities: - type: Transform pos: -70.5,-7.5 parent: 2 + - uid: 2474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-19.5 + parent: 2 - uid: 2998 components: - type: Transform @@ -68693,6 +74319,12 @@ entities: rot: 3.141592653589793 rad pos: -73.5,-6.5 parent: 2 + - uid: 8174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,40.5 + parent: 2 - uid: 8192 components: - type: Transform @@ -68790,6 +74422,93 @@ entities: rot: 3.141592653589793 rad pos: -49.5,10.5 parent: 2 + - uid: 17305 + components: + - type: Transform + pos: -73.5,23.5 + parent: 2 + - uid: 17306 + components: + - type: Transform + pos: -72.5,23.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + pos: -71.5,23.5 + parent: 2 + - uid: 17308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,24.5 + parent: 2 + - uid: 17309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,25.5 + parent: 2 + - uid: 17310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,26.5 + parent: 2 + - uid: 17311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,27.5 + parent: 2 + - uid: 17312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,27.5 + parent: 2 + - uid: 17313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,26.5 + parent: 2 + - uid: 17317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,27.5 + parent: 2 + - uid: 17318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,25.5 + parent: 2 + - uid: 17319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,24.5 + parent: 2 + - uid: 17467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,42.5 + parent: 2 + - uid: 17468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,41.5 + parent: 2 + - uid: 17471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,40.5 + parent: 2 - proto: RailingCorner entities: - uid: 1930 @@ -68827,6 +74546,18 @@ entities: - type: Transform pos: -17.5,15.5 parent: 2 + - uid: 17459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,42.5 + parent: 2 + - uid: 17462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,42.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 1056 @@ -68994,6 +74725,12 @@ entities: rot: 1.5707963267948966 rad pos: -77.5,11.5 parent: 2 + - uid: 11558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,27.5 + parent: 2 - uid: 12074 components: - type: Transform @@ -69047,6 +74784,57 @@ entities: rot: 3.141592653589793 rad pos: -18.5,15.5 parent: 2 + - uid: 17304 + components: + - type: Transform + pos: -74.5,23.5 + parent: 2 + - uid: 17316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,23.5 + parent: 2 + - uid: 17322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,27.5 + parent: 2 + - uid: 17323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,23.5 + parent: 2 + - uid: 17324 + components: + - type: Transform + pos: -70.5,27.5 + parent: 2 + - uid: 17325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,23.5 + parent: 2 + - uid: 17326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,27.5 + parent: 2 + - uid: 17473 + components: + - type: Transform + pos: -12.5,39.5 + parent: 2 + - uid: 17475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,39.5 + parent: 2 - proto: RailingRound entities: - uid: 3934 @@ -69149,6 +74937,36 @@ entities: parent: 2 - proto: RandomPosterLegit entities: + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-56.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-43.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-41.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-60.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 2 - uid: 8125 components: - type: Transform @@ -69240,6 +75058,11 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-33.5 parent: 2 + - uid: 3038 + components: + - type: Transform + pos: -25.5,-62.5 + parent: 2 - uid: 4181 components: - type: Transform @@ -69390,6 +75213,43 @@ entities: - type: Transform pos: -26.5,18.5 parent: 2 + - uid: 16849 + components: + - type: Transform + pos: -27.5,-47.5 + parent: 2 + - uid: 17456 + components: + - type: Transform + pos: -31.5,-56.5 + parent: 2 + - uid: 17457 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 17458 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 17336 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 17337 + components: + - type: Transform + pos: 48.5,17.5 + parent: 2 + - uid: 17338 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 - proto: RandomVending entities: - uid: 4322 @@ -69407,11 +75267,6 @@ entities: - type: Transform pos: 10.5,-0.5 parent: 2 - - uid: 13226 - components: - - type: Transform - pos: -14.5,32.5 - parent: 2 - proto: RandomVendingDrinks entities: - uid: 2554 @@ -69434,16 +75289,6 @@ entities: - type: Transform pos: -30.5,-40.5 parent: 2 - - uid: 14899 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 2 - - uid: 14900 - components: - - type: Transform - pos: -31.5,-61.5 - parent: 2 - uid: 15088 components: - type: Transform @@ -69826,10 +75671,10 @@ entities: - type: Transform pos: -53.5,16.5 parent: 2 - - uid: 766 + - uid: 758 components: - type: Transform - pos: -26.5,-63.5 + pos: -31.5,-63.5 parent: 2 - uid: 1017 components: @@ -69986,11 +75831,6 @@ entities: - type: Transform pos: -40.5,28.5 parent: 2 - - uid: 2452 - components: - - type: Transform - pos: -30.5,-62.5 - parent: 2 - uid: 2454 components: - type: Transform @@ -70021,21 +75861,6 @@ entities: - type: Transform pos: -24.5,-54.5 parent: 2 - - uid: 2472 - components: - - type: Transform - pos: -31.5,-62.5 - parent: 2 - - uid: 2473 - components: - - type: Transform - pos: -26.5,-62.5 - parent: 2 - - uid: 2474 - components: - - type: Transform - pos: -25.5,-62.5 - parent: 2 - uid: 2492 components: - type: Transform @@ -70106,11 +75931,6 @@ entities: - type: Transform pos: 39.5,-18.5 parent: 2 - - uid: 3359 - components: - - type: Transform - pos: -30.5,-63.5 - parent: 2 - uid: 3364 components: - type: Transform @@ -70201,11 +76021,6 @@ entities: - type: Transform pos: -5.5,42.5 parent: 2 - - uid: 6696 - components: - - type: Transform - pos: -14.5,42.5 - parent: 2 - uid: 7699 components: - type: Transform @@ -70266,26 +76081,6 @@ entities: - type: Transform pos: 38.5,-19.5 parent: 2 - - uid: 8726 - components: - - type: Transform - pos: -13.5,42.5 - parent: 2 - - uid: 8752 - components: - - type: Transform - pos: -9.5,40.5 - parent: 2 - - uid: 8754 - components: - - type: Transform - pos: -12.5,42.5 - parent: 2 - - uid: 8755 - components: - - type: Transform - pos: -11.5,42.5 - parent: 2 - uid: 8776 components: - type: Transform @@ -70331,16 +76126,31 @@ entities: - type: Transform pos: -47.5,28.5 parent: 2 + - uid: 12082 + components: + - type: Transform + pos: -32.5,-62.5 + parent: 2 - uid: 14837 components: - type: Transform pos: -32.5,-55.5 parent: 2 + - uid: 14849 + components: + - type: Transform + pos: -25.5,-63.5 + parent: 2 - uid: 14855 components: - type: Transform pos: -32.5,-47.5 parent: 2 + - uid: 14862 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 2 - uid: 16556 components: - type: Transform @@ -70356,6 +76166,20 @@ entities: - type: Transform pos: 50.5,23.5 parent: 2 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 2398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-63.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-63.5 + parent: 2 - proto: ResearchAndDevelopmentServer entities: - uid: 4044 @@ -70460,6 +76284,13 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-61.5 parent: 2 +- proto: SalvageLootSpawner + entities: + - uid: 2662 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 - proto: SalvageMagnet entities: - uid: 12230 @@ -70510,13 +76341,6 @@ entities: - type: Transform pos: -66.5,5.5 parent: 2 -- proto: SalvagePartsT2Spawner - entities: - - uid: 2662 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 2 - proto: SawElectric entities: - uid: 3964 @@ -70551,20 +76375,6 @@ entities: - type: Transform pos: -39.5,1.5 parent: 2 -- proto: ShadowBasaltFour - entities: - - uid: 17249 - components: - - type: Transform - pos: 37.5,13.5 - parent: 2 -- proto: ShadowBasaltOne - entities: - - uid: 16393 - components: - - type: Transform - pos: 25.5,7.5 - parent: 2 - proto: ShadowBasaltThree entities: - uid: 17247 @@ -70572,33 +76382,6 @@ entities: - type: Transform pos: 38.5,-8.5 parent: 2 - - uid: 17248 - components: - - type: Transform - pos: 29.5,1.5 - parent: 2 -- proto: ShadowBasaltTwo - entities: - - uid: 17245 - components: - - type: Transform - pos: 23.5,2.5 - parent: 2 - - uid: 17246 - components: - - type: Transform - pos: 38.5,1.5 - parent: 2 - - uid: 17250 - components: - - type: Transform - pos: 43.5,16.5 - parent: 2 - - uid: 17251 - components: - - type: Transform - pos: 31.5,23.5 - parent: 2 - proto: ShadowTree06 entities: - uid: 958 @@ -70917,6 +76700,13 @@ entities: - type: Transform pos: -18.5,23.5 parent: 2 +- proto: ShotGunCabinetFilled + entities: + - uid: 17530 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 - proto: ShuttersNormalOpen entities: - uid: 738 @@ -72116,6 +77906,12 @@ entities: rot: 3.141592653589793 rad pos: -69.5,-4.5 parent: 2 + - uid: 10602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,38.5 + parent: 2 - uid: 12568 components: - type: Transform @@ -72328,27 +78124,6 @@ entities: - type: Transform pos: 25.670744,17.800793 parent: 2 -- proto: SingularityGenerator - entities: - - uid: 9989 - components: - - type: Transform - pos: -62.5,32.5 - parent: 2 -- proto: SingularityToy - entities: - - uid: 12490 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 12489 - - type: SingularityDistortion - falloffPower: 1.2698234 - intensity: 6.687403 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Sink entities: - uid: 9334 @@ -72412,56 +78187,78 @@ entities: entities: - uid: 4203 components: + - type: MetaData + name: СМЭС юго-восточных соляр - type: Transform pos: 37.5,-50.5 parent: 2 - uid: 7614 components: + - type: MetaData + name: СМЭС северо-восточных соляр - type: Transform pos: 31.5,48.5 parent: 2 - uid: 9835 components: + - type: MetaData + name: центральный СМЭС - type: Transform pos: -42.5,23.5 parent: 2 - uid: 9976 components: + - type: MetaData + name: СМЭС комнаты грав. ген. - type: Transform pos: -51.5,12.5 parent: 2 - uid: 10053 components: + - type: MetaData + name: центральный СМЭС - type: Transform pos: -43.5,23.5 parent: 2 - uid: 10190 components: + - type: MetaData + name: центральный СМЭС - type: Transform pos: -41.5,23.5 parent: 2 - uid: 10191 components: + - type: MetaData + name: центральный СМЭС - type: Transform pos: -40.5,23.5 parent: 2 - uid: 10798 components: + - type: MetaData + name: СМЭС УЧ - type: Transform pos: -58.5,25.5 parent: 2 - uid: 11089 components: + - type: MetaData + name: СМЭС УЧ - type: Transform pos: -58.5,26.5 parent: 2 - uid: 12797 components: + - type: MetaData + name: СМЭС юго-западных соляр - type: Transform pos: -72.5,-24.5 parent: 2 - uid: 13451 components: + - type: MetaData + name: СМЭС ТЭГа - type: Transform pos: -36.5,32.5 parent: 2 @@ -72485,12 +78282,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-15.5 parent: 2 - - uid: 16750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,20.5 - parent: 2 - proto: SolarPanel entities: - uid: 1952 @@ -73136,13 +78927,13 @@ entities: parent: 2 - proto: SolidSecretDoor entities: - - uid: 2398 + - uid: 12610 components: - type: MetaData flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-4.5 + pos: 17.5,-3.5 parent: 2 - proto: SpaceCash10 entities: @@ -73188,6 +78979,26 @@ entities: - type: Transform pos: 12.5,-62.5 parent: 2 + - uid: 17533 + components: + - type: Transform + pos: 18.5,-60.5 + parent: 2 + - uid: 17534 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 2 + - uid: 17535 + components: + - type: Transform + pos: 13.5,-62.5 + parent: 2 + - uid: 17536 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 2 - proto: SpaceVillainArcade entities: - uid: 2629 @@ -73231,6 +79042,11 @@ entities: - type: Transform pos: -73.5,-12.5 parent: 2 + - uid: 3556 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 - uid: 15110 components: - type: Transform @@ -73507,6 +79323,36 @@ entities: - type: Transform pos: -6.5,-52.5 parent: 2 + - uid: 3551 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + pos: 17.5,-56.5 + parent: 2 + - uid: 17509 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 17510 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 17511 + components: + - type: Transform + pos: -48.5,3.5 + parent: 2 + - uid: 17513 + components: + - type: Transform + pos: -62.5,24.5 + parent: 2 - proto: SpawnPointDetective entities: - uid: 3470 @@ -73588,7 +79434,7 @@ entities: - type: Transform pos: 25.5,-35.5 parent: 2 - - uid: 14981 + - uid: 17527 components: - type: Transform pos: 13.5,-56.5 @@ -73821,6 +79667,20 @@ entities: - type: Transform pos: 0.5,-13.5 parent: 2 +- proto: SpeedLoaderLightRifle + entities: + - uid: 8994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.518974,-22.216494 + parent: 2 + - uid: 10280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.2846,-22.380556 + parent: 2 - proto: SpeedLoaderMagnum entities: - uid: 896 @@ -73936,6 +79796,11 @@ entities: - type: Transform pos: -0.5,-20.5 parent: 2 + - uid: 4292 + components: + - type: Transform + pos: -34.5,40.5 + parent: 2 - uid: 4336 components: - type: Transform @@ -73981,6 +79846,11 @@ entities: - type: Transform pos: 26.5,31.5 parent: 2 + - uid: 12489 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 - uid: 14589 components: - type: Transform @@ -74042,6 +79912,21 @@ entities: rot: 3.141592653589793 rad pos: 28.5,21.5 parent: 2 + - uid: 17331 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 17332 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 17333 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 - proto: SprayBottleSpaceCleaner entities: - uid: 2076 @@ -74729,6 +80614,13 @@ entities: - type: Transform pos: 48.5,24.5 parent: 2 +- proto: Stimpack + entities: + - uid: 17537 + components: + - type: Transform + pos: 18.745178,-59.495323 + parent: 2 - proto: StoolBar entities: - uid: 1238 @@ -74861,51 +80753,71 @@ entities: entities: - uid: 3974 components: + - type: MetaData + name: подстанция сервисного отдела - type: Transform pos: -7.5,7.5 parent: 2 - uid: 4232 components: + - type: MetaData + name: подстанция юго-восточных соляр - type: Transform pos: 35.5,-50.5 parent: 2 - uid: 4289 components: + - type: MetaData + name: подстанция мед. отдел - type: Transform pos: 32.5,-43.5 parent: 2 - uid: 5670 components: + - type: MetaData + name: подстанция РНД - type: Transform pos: 44.5,-1.5 parent: 2 - uid: 7616 components: + - type: MetaData + name: подстанция северо-восточных соляр - type: Transform pos: 31.5,47.5 parent: 2 - uid: 9977 components: + - type: MetaData + name: подстанция комнаты грав. ген. - type: Transform pos: -51.5,11.5 parent: 2 - uid: 10261 components: + - type: MetaData + name: подстанция инженерки - type: Transform pos: -54.5,24.5 parent: 2 - uid: 10771 components: + - type: MetaData + name: подстанция УЧ - type: Transform pos: -58.5,23.5 parent: 2 - uid: 11363 components: + - type: MetaData + name: подстанция бриг - type: Transform pos: -71.5,-17.5 parent: 2 - uid: 12798 components: + - type: MetaData + name: подстанция юго-западных соляр - type: Transform pos: -70.5,-24.5 parent: 2 @@ -74913,21 +80825,29 @@ entities: entities: - uid: 2696 components: + - type: MetaData + name: подстанция комнаты клоуна - type: Transform pos: -2.5,-42.5 parent: 2 - uid: 7101 components: + - type: MetaData + name: подстанция командования - type: Transform pos: 33.5,41.5 parent: 2 - uid: 13249 components: + - type: MetaData + name: подстанция карго - type: Transform pos: -28.5,32.5 parent: 2 - uid: 13474 components: + - type: MetaData + name: подстанция ТЭГа - type: Transform pos: -36.5,33.5 parent: 2 @@ -75032,6 +80952,24 @@ entities: parent: 2 - type: Lock locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: SuitStorageCaptain entities: - uid: 7361 @@ -75285,6 +81223,10 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,4.5 parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + - type: ActiveUserInterface - uid: 17146 components: - type: Transform @@ -75338,12 +81280,6 @@ entities: - type: Transform pos: -23.5,-14.5 parent: 2 - - uid: 17155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 2 - uid: 17156 components: - type: Transform @@ -75356,6 +81292,15 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-17.5 parent: 2 + - uid: 17314 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + - type: ActiveUserInterface - proto: SurveillanceCameraMedical entities: - uid: 17131 @@ -76940,6 +82885,12 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,23.5 parent: 2 + - uid: 14900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-51.5 + parent: 2 - uid: 16563 components: - type: Transform @@ -77184,6 +83135,56 @@ entities: showEnts: False occludes: True ents: [] +- proto: TeslaCoil + entities: + - uid: 3852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,29.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,29.5 + parent: 2 +- proto: TeslaGenerator + entities: + - uid: 11556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,32.5 + parent: 2 +- proto: TeslaGroundingRod + entities: + - uid: 11077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,32.5 + parent: 2 + - uid: 17292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,32.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,31.5 + parent: 2 +- proto: TeslaToy + entities: + - uid: 11078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.52286,25.461412 + parent: 2 - proto: ThermomachineFreezerMachineCircuitBoard entities: - uid: 7626 @@ -77667,6 +83668,14 @@ entities: - type: Transform pos: 14.5,-57.5 parent: 2 +- proto: VariantCubeBox + entities: + - uid: 8193 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 33.522274,9.641938 + parent: 2 - proto: VehicleKeyJanicart entities: - uid: 435 @@ -79012,13 +85021,6 @@ entities: - type: Transform pos: 9.5,-57.5 parent: 2 - - uid: 3121 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-58.5 - parent: 2 - uid: 3122 components: - type: MetaData @@ -81246,6 +87248,13 @@ entities: - type: Transform pos: -19.5,41.5 parent: 2 + - uid: 3536 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,41.5 + parent: 2 - uid: 5787 components: - type: MetaData @@ -81323,13 +87332,6 @@ entities: - type: Transform pos: -8.5,42.5 parent: 2 - - uid: 8072 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,42.5 - parent: 2 - uid: 8075 components: - type: MetaData @@ -81659,6 +87661,20 @@ entities: - type: Transform pos: -9.5,41.5 parent: 2 + - uid: 8753 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 8757 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,43.5 + parent: 2 - uid: 8834 components: - type: MetaData @@ -81694,6 +87710,13 @@ entities: - type: Transform pos: -19.5,43.5 parent: 2 + - uid: 13525 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,42.5 + parent: 2 - uid: 13778 components: - type: MetaData @@ -81715,6 +87738,20 @@ entities: - type: Transform pos: 13.5,-64.5 parent: 2 + - uid: 14538 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 14542 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,43.5 + parent: 2 - uid: 14976 components: - type: MetaData @@ -81793,12 +87830,24 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,39.5 parent: 2 + - uid: 8755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,43.5 + parent: 2 - uid: 8780 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,35.5 parent: 2 + - uid: 10052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,40.5 + parent: 2 - uid: 12351 components: - type: Transform @@ -81815,6 +87864,11 @@ entities: - type: Transform pos: -22.5,43.5 parent: 2 + - uid: 14087 + components: + - type: Transform + pos: -13.5,43.5 + parent: 2 - uid: 15034 components: - type: Transform @@ -81832,6 +87886,12 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-64.5 parent: 2 + - uid: 17482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,40.5 + parent: 2 - proto: WallmountGeneratorAPUElectronics entities: - uid: 7768 @@ -82836,6 +88896,13 @@ entities: - type: Transform pos: -17.5,-1.5 parent: 2 + - uid: 434 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-63.5 + parent: 2 - uid: 474 components: - type: MetaData @@ -84327,6 +90394,13 @@ entities: - type: Transform pos: -2.5,-41.5 parent: 2 + - uid: 1996 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-60.5 + parent: 2 - uid: 2006 components: - type: MetaData @@ -84537,6 +90611,13 @@ entities: - type: Transform pos: -32.5,-40.5 parent: 2 + - uid: 2452 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-61.5 + parent: 2 - uid: 2464 components: - type: MetaData @@ -86854,6 +92935,20 @@ entities: - type: Transform pos: -29.5,30.5 parent: 2 + - uid: 8723 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-64.5 + parent: 2 + - uid: 8758 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-63.5 + parent: 2 - uid: 8903 components: - type: MetaData @@ -87057,6 +93152,13 @@ entities: - type: Transform pos: -45.5,45.5 parent: 2 + - uid: 9828 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-61.5 + parent: 2 - uid: 9927 components: - type: MetaData @@ -87211,6 +93313,13 @@ entities: - type: Transform pos: -56.5,38.5 parent: 2 + - uid: 10282 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-60.5 + parent: 2 - uid: 10371 components: - type: MetaData @@ -87974,6 +94083,13 @@ entities: - type: Transform pos: -83.5,11.5 parent: 2 + - uid: 10744 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-64.5 + parent: 2 - uid: 10747 components: - type: MetaData @@ -88590,6 +94706,34 @@ entities: - type: Transform pos: -69.5,-18.5 parent: 2 + - uid: 11559 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 11594 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 11595 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 11639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,9.5 + parent: 2 - uid: 11641 components: - type: MetaData @@ -88716,6 +94860,13 @@ entities: - type: Transform pos: -54.5,34.5 parent: 2 + - uid: 11819 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,9.5 + parent: 2 - uid: 11914 components: - type: MetaData @@ -89094,6 +95245,20 @@ entities: - type: Transform pos: -52.5,31.5 parent: 2 + - uid: 12339 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 12340 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-35.5 + parent: 2 - uid: 12344 components: - type: MetaData @@ -89752,6 +95917,13 @@ entities: - type: Transform pos: -41.5,38.5 parent: 2 + - uid: 13226 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-64.5 + parent: 2 - uid: 13476 components: - type: MetaData @@ -89794,13 +95966,6 @@ entities: - type: Transform pos: -32.5,-58.5 parent: 2 - - uid: 14845 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-60.5 - parent: 2 - uid: 14846 components: - type: MetaData @@ -89822,40 +95987,12 @@ entities: - type: Transform pos: -24.5,-59.5 parent: 2 - - uid: 14849 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-60.5 - parent: 2 - - uid: 14850 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-61.5 - parent: 2 - uid: 14851 components: - type: MetaData flags: PvsPriority - type: Transform - pos: -24.5,-62.5 - parent: 2 - - uid: 14853 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-61.5 - parent: 2 - - uid: 14854 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-62.5 + pos: -30.5,-64.5 parent: 2 - uid: 14857 components: @@ -89878,20 +96015,6 @@ entities: - type: Transform pos: -24.5,-41.5 parent: 2 - - uid: 14902 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-63.5 - parent: 2 - - uid: 14903 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-63.5 - parent: 2 - uid: 17061 components: - type: MetaData @@ -93611,13 +99734,6 @@ entities: - type: Transform pos: 20.5,-49.5 parent: 2 - - uid: 3551 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-50.5 - parent: 2 - uid: 3552 components: - type: MetaData @@ -93646,13 +99762,6 @@ entities: - type: Transform pos: 21.5,-49.5 parent: 2 - - uid: 3556 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-50.5 - parent: 2 - uid: 3557 components: - type: MetaData @@ -93681,13 +99790,6 @@ entities: - type: Transform pos: 22.5,-49.5 parent: 2 - - uid: 3561 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-50.5 - parent: 2 - uid: 3562 components: - type: MetaData @@ -93828,20 +99930,6 @@ entities: - type: Transform pos: 20.5,-53.5 parent: 2 - - uid: 3582 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-52.5 - parent: 2 - - uid: 3583 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-51.5 - parent: 2 - uid: 3584 components: - type: MetaData @@ -93849,20 +99937,6 @@ entities: - type: Transform pos: 21.5,-53.5 parent: 2 - - uid: 3585 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-52.5 - parent: 2 - - uid: 3586 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-51.5 - parent: 2 - uid: 3587 components: - type: MetaData @@ -93870,20 +99944,6 @@ entities: - type: Transform pos: 22.5,-53.5 parent: 2 - - uid: 3588 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-52.5 - parent: 2 - - uid: 3589 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-51.5 - parent: 2 - uid: 3590 components: - type: MetaData @@ -93891,13 +99951,6 @@ entities: - type: Transform pos: 23.5,-55.5 parent: 2 - - uid: 3591 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-52.5 - parent: 2 - uid: 3595 components: - type: MetaData @@ -96593,13 +102646,6 @@ entities: - type: Transform pos: 1.5,14.5 parent: 2 - - uid: 14985 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-59.5 - parent: 2 - proto: WallRockAndesite entities: - uid: 1858 @@ -97960,13 +104006,6 @@ entities: - type: Transform pos: 42.5,36.5 parent: 2 - - uid: 10376 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,9.5 - parent: 2 - uid: 10386 components: - type: MetaData @@ -98051,13 +104090,6 @@ entities: - type: Transform pos: 36.5,-24.5 parent: 2 - - uid: 10492 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,9.5 - parent: 2 - uid: 10493 components: - type: MetaData @@ -98352,13 +104384,6 @@ entities: - type: Transform pos: 41.5,3.5 parent: 2 - - uid: 10595 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 41.5,4.5 - parent: 2 - uid: 10596 components: - type: MetaData @@ -98366,13 +104391,6 @@ entities: - type: Transform pos: 40.5,3.5 parent: 2 - - uid: 10597 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,4.5 - parent: 2 - uid: 10598 components: - type: MetaData @@ -98380,13 +104398,6 @@ entities: - type: Transform pos: 39.5,3.5 parent: 2 - - uid: 10599 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,4.5 - parent: 2 - uid: 10600 components: - type: MetaData @@ -98401,13 +104412,6 @@ entities: - type: Transform pos: 37.5,3.5 parent: 2 - - uid: 10602 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 41.5,9.5 - parent: 2 - uid: 10603 components: - type: MetaData @@ -99688,13 +105692,6 @@ entities: - type: Transform pos: -43.5,-26.5 parent: 2 - - uid: 1477 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-20.5 - parent: 2 - uid: 1478 components: - type: MetaData @@ -100752,13 +106749,6 @@ entities: - type: Transform pos: -25.5,-23.5 parent: 2 - - uid: 2728 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-35.5 - parent: 2 - uid: 2751 components: - type: MetaData @@ -105827,6 +111817,41 @@ entities: - type: Transform pos: -29.5,29.5 parent: 2 + - uid: 17295 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -68.5,36.5 + parent: 2 + - uid: 17499 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 17500 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-21.5 + parent: 2 + - uid: 17502 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 17503 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-22.5 + parent: 2 - proto: WallRockBasaltBananium entities: - uid: 8768 @@ -111415,13 +117440,6 @@ entities: - type: Transform pos: -3.5,-0.5 parent: 2 - - uid: 52 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-3.5 - parent: 2 - uid: 55 components: - type: MetaData @@ -112407,7 +118425,6 @@ entities: - type: MetaData flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-19.5 parent: 2 - uid: 1859 @@ -112508,6 +118525,14 @@ entities: - type: Transform pos: 0.5,4.5 parent: 2 + - uid: 5291 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 2 - uid: 7439 components: - type: MetaData @@ -112611,7 +118636,6 @@ entities: - type: MetaData flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-18.5 parent: 2 - uid: 11042 @@ -112654,7 +118678,6 @@ entities: - type: MetaData flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - uid: 12579 @@ -113479,14 +119502,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,38.5 parent: 2 -- proto: WarningPlasma - entities: - - uid: 10508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,38.5 - parent: 2 - proto: WarningWaste entities: - uid: 13281 @@ -113495,297 +119510,29 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,38.5 parent: 2 -- proto: WarpPoint - entities: - - uid: 3852 - components: - - type: Transform - pos: -43.5,34.5 - parent: 2 - - type: WarpPoint - location: Инженерия - Атмос - - uid: 8631 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 2 - - type: WarpPoint - location: Сервис - Библиотека - - uid: 13771 - components: - - type: Transform - pos: -52.5,-23.5 - parent: 2 - - type: WarpPoint - location: Бриг - Кабинет ГСБ - - uid: 13772 - components: - - type: Transform - pos: -42.5,-5.5 - parent: 2 - - type: WarpPoint - location: Бриг - Тюремные камеры - - uid: 13773 - components: - - type: Transform - pos: -42.5,3.5 - parent: 2 - - type: WarpPoint - location: Бриг - Перма - - uid: 13774 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 2 - - type: WarpPoint - location: Бриг - Кабинет детектива - - uid: 14435 - components: - - type: Transform - pos: -53.5,13.5 - parent: 2 - - type: WarpPoint - location: Инженерия - Генератор гравитации - - uid: 14487 - components: - - type: Transform - pos: -28.5,26.5 - parent: 2 - - type: WarpPoint - location: Инженерия - Кабинет СИ - - uid: 14489 - components: - - type: Transform - pos: -4.5,39.5 - parent: 2 - - type: WarpPoint - location: Карго - Утилизаторы - - uid: 14502 - components: - - type: Transform - pos: 3.5,30.5 - parent: 2 - - type: WarpPoint - location: Мостик - - uid: 14522 - components: - - type: Transform - pos: 14.5,51.5 - parent: 2 - - type: WarpPoint - location: Мостик - ИИ и Хранилище плат - - uid: 14540 - components: - - type: Transform - pos: 16.5,25.5 - parent: 2 - - type: WarpPoint - location: Мостик - Кабинет Капитана - - uid: 14545 - components: - - type: Transform - pos: 34.5,7.5 - parent: 2 - - type: WarpPoint - location: Научный - Ксеноархеология - - uid: 14546 - components: - - type: Transform - pos: 31.5,16.5 - parent: 2 - - type: WarpPoint - location: Научный - Аномалистика - - uid: 14548 - components: - - type: Transform - pos: 22.5,13.5 - parent: 2 - - type: WarpPoint - location: Научный - Робототехника - - uid: 14594 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 2 - - type: WarpPoint - location: Научный - Серверная - - uid: 14630 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 2 - - type: WarpPoint - location: Медбей - Морг - - uid: 14658 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 2 - - type: WarpPoint - location: Медбей - Химическая лаборатория - - uid: 14683 - components: - - type: Transform - pos: 20.5,-28.5 - parent: 2 - - type: WarpPoint - location: Медбей - Палаты - - uid: 14697 - components: - - type: Transform - pos: 19.5,-43.5 - parent: 2 - - type: WarpPoint - location: Медбей - Операционная - - uid: 14705 - components: - - type: Transform - pos: 6.5,-43.5 - parent: 2 - - type: WarpPoint - location: Медбей - Кабинет ГВ - - uid: 14706 - components: - - type: Transform - pos: 12.5,-55.5 - parent: 2 - - type: WarpPoint - location: Медбей - Вирусология - - uid: 14710 - components: - - type: Transform - pos: -28.5,-46.5 - parent: 2 - - type: WarpPoint - location: Прибытие и эвакуация - - uid: 14711 - components: - - type: Transform - pos: -23.5,-6.5 - parent: 2 - - type: WarpPoint - location: Сервис - Бар - - uid: 14712 - components: - - type: Transform - pos: -14.5,-16.5 - parent: 2 - - type: WarpPoint - location: Сервис - Кухня - - uid: 14713 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 2 - - type: WarpPoint - location: Сервис - Ботаника - - uid: 14714 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 2 - - type: WarpPoint - location: Сервис - Уборщик - - uid: 14715 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 2 - - type: WarpPoint - location: Сервис - Церковь - - uid: 14717 - components: - - type: Transform - pos: -7.5,25.5 - parent: 2 - - type: WarpPoint - location: Сервис - Суд - - uid: 14718 - components: - - type: Transform - pos: 4.5,40.5 - parent: 2 - - type: WarpPoint - location: Сервис - Мим - proto: WarpPointBombing entities: - - uid: 13723 - components: - - type: Transform - pos: -52.5,-17.5 - parent: 2 - - type: WarpPoint - location: Бриг - Оружейная - - uid: 14399 - components: - - type: Transform - pos: -43.5,13.5 - parent: 2 - - type: WarpPoint - location: Инженерия - ДАМ - - uid: 14458 - components: - - type: Transform - pos: -62.5,25.5 - parent: 2 - - type: WarpPoint - location: Инженерия - УЧ установка - - uid: 14485 - components: - - type: Transform - pos: -26.5,37.5 - parent: 2 - - type: WarpPoint - location: Карго - Кабинет КМа - - uid: 14498 - components: - - type: Transform - pos: 17.5,32.5 - parent: 2 - - type: WarpPoint - location: Мостик - Телекоммуникационные сервера - - uid: 14519 - components: - - type: Transform - pos: 20.5,46.5 - parent: 2 - - type: WarpPoint - location: Мостик - Маршрутизаторы камер - - uid: 14569 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 2 - - type: WarpPoint - location: Научный - Кабинет НРа - - uid: 14645 + - uid: 17339 components: - type: Transform - pos: -7.5,-51.5 + pos: -42.5,13.5 parent: 2 - type: WarpPoint - location: Сервис - Клоун - - uid: 14674 + location: ДАМ + - uid: 17340 components: - type: Transform - pos: 12.5,-36.5 + pos: -67.5,25.5 parent: 2 - type: WarpPoint - location: Медбей - Склад - - uid: 14716 + location: Ускоритель частиц + - uid: 17345 components: - type: Transform - pos: -15.5,1.5 + pos: 9.5,28.5 parent: 2 - type: WarpPoint - location: Сервис - Кабинет Главы Персонала - - uid: 14834 - components: - - type: Transform - pos: 0.5,0.5 - parent: 14719 - - type: WarpPoint - location: Бриг - Шаттл + location: Мостик - proto: WaterCooler entities: - uid: 4561 @@ -113971,6 +119718,13 @@ entities: - type: Transform pos: 17.203026,23.668383 parent: 2 +- proto: WeaponParticleDecelerator + entities: + - uid: 17512 + components: + - type: Transform + pos: 28.427675,31.71158 + parent: 2 - proto: WeaponRevolverDeckard entities: - uid: 7378 @@ -114059,6 +119813,13 @@ entities: - type: Transform pos: -53.405174,-17.457668 parent: 2 +- proto: WeaponTeslaGun + entities: + - uid: 17350 + components: + - type: Transform + pos: -78.43827,10.498604 + parent: 2 - proto: WeaponTurretSyndicateBroken entities: - uid: 15100 @@ -114173,12 +119934,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-37.5 parent: 2 - - uid: 4348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 2 - uid: 15624 components: - type: Transform @@ -114347,19 +120102,17 @@ entities: parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 2250 + - uid: 766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-28.5 + rot: -1.5707963267948966 rad + pos: 8.5,-19.5 parent: 2 -- proto: WindoorSecureSalvageLocked - entities: - - uid: 8723 + - uid: 2250 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,39.5 + pos: 8.5,-28.5 parent: 2 - proto: WindoorSecureScienceLocked entities: @@ -115542,11 +121295,6 @@ entities: - type: Transform pos: 26.5,-48.5 parent: 2 - - uid: 4417 - components: - - type: Transform - pos: 8.5,-40.5 - parent: 2 - uid: 4540 components: - type: Transform @@ -115637,6 +121385,16 @@ entities: - type: Transform pos: -25.5,-29.5 parent: 2 + - uid: 16393 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 16652 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 2 - uid: 17052 components: - type: Transform diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 5b50e73072b..57ae892c743 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -31699,26 +31699,6 @@ entities: - type: Transform pos: 86.5,-16.5 parent: 13329 - - uid: 29181 - components: - - type: Transform - pos: 96.5,21.5 - parent: 13329 - - uid: 29182 - components: - - type: Transform - pos: 97.5,21.5 - parent: 13329 - - uid: 29183 - components: - - type: Transform - pos: 99.5,21.5 - parent: 13329 - - uid: 29184 - components: - - type: Transform - pos: 100.5,21.5 - parent: 13329 - uid: 29233 components: - type: Transform @@ -32103,26 +32083,6 @@ entities: - type: Transform pos: -30.5,17.5 parent: 13329 - - uid: 32702 - components: - - type: Transform - pos: 96.5,21.5 - parent: 13329 - - uid: 32703 - components: - - type: Transform - pos: 97.5,21.5 - parent: 13329 - - uid: 34645 - components: - - type: Transform - pos: 100.5,21.5 - parent: 13329 - - uid: 34646 - components: - - type: Transform - pos: 99.5,21.5 - parent: 13329 - proto: BigBox entities: - uid: 11622 @@ -101288,6 +101248,34 @@ entities: - type: Transform pos: 93.53844,56.395863 parent: 13329 +- proto: CryogenicSleepUnit + entities: + - uid: 27924 + components: + - type: Transform + pos: 96.5,21.5 + parent: 13329 + - uid: 27928 + components: + - type: Transform + pos: 99.5,21.5 + parent: 13329 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 27927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,21.5 + parent: 13329 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 27929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 100.5,21.5 + parent: 13329 - proto: CryoPod entities: - uid: 17618 @@ -192495,23 +192483,6 @@ entities: - type: Transform pos: 29.221989,-29.186216 parent: 13329 -- proto: SpaceMedipen - entities: - - uid: 29294 - components: - - type: Transform - pos: 74.614944,6.1718864 - parent: 13329 - - uid: 35279 - components: - - type: Transform - pos: 2.509602,47.560272 - parent: 13329 - - uid: 35280 - components: - - type: Transform - pos: 2.587727,47.435272 - parent: 13329 - proto: SpaceVillainArcadeFilled entities: - uid: 1074 diff --git a/Resources/Maps/gemini.yml b/Resources/Maps/gemini.yml index 19388ef9166..57c47c8b5c6 100644 --- a/Resources/Maps/gemini.yml +++ b/Resources/Maps/gemini.yml @@ -12452,7 +12452,7 @@ entities: pos: -9.5,60.5 parent: 2 - type: Door - secondsUntilStateChange: -4047.308 + secondsUntilStateChange: -4087.5586 state: Opening - uid: 160 components: @@ -14187,7 +14187,7 @@ entities: pos: 0.5,-22.5 parent: 2 - type: Door - secondsUntilStateChange: -85487.99 + secondsUntilStateChange: -85528.24 state: Opening - uid: 439 components: @@ -14574,7 +14574,7 @@ entities: pos: -1.5,10.5 parent: 2 - type: Door - secondsUntilStateChange: -108448.305 + secondsUntilStateChange: -108488.555 state: Opening - proto: AirlockResearchDirectorLocked entities: @@ -14587,7 +14587,7 @@ entities: pos: -2.5,11.5 parent: 2 - type: Door - secondsUntilStateChange: -108447.94 + secondsUntilStateChange: -108488.19 state: Opening - proto: AirlockSalvageGlassLocked entities: @@ -14629,7 +14629,7 @@ entities: pos: 24.5,72.5 parent: 2 - type: Door - secondsUntilStateChange: -107002.07 + secondsUntilStateChange: -107042.32 state: Opening - uid: 501 components: @@ -14664,7 +14664,7 @@ entities: pos: 18.5,68.5 parent: 2 - type: Door - secondsUntilStateChange: -122875.49 + secondsUntilStateChange: -122915.74 state: Opening - uid: 505 components: @@ -14683,7 +14683,7 @@ entities: pos: 23.5,72.5 parent: 2 - type: Door - secondsUntilStateChange: -107002.51 + secondsUntilStateChange: -107042.76 state: Opening - uid: 507 components: @@ -14717,7 +14717,7 @@ entities: pos: 10.5,6.5 parent: 2 - type: Door - secondsUntilStateChange: -108450.87 + secondsUntilStateChange: -108491.12 state: Opening - uid: 511 components: @@ -14725,7 +14725,7 @@ entities: pos: -0.5,15.5 parent: 2 - type: Door - secondsUntilStateChange: -108444.57 + secondsUntilStateChange: -108484.82 state: Opening - uid: 512 components: @@ -14735,7 +14735,7 @@ entities: pos: 2.5,7.5 parent: 2 - type: Door - secondsUntilStateChange: -107905.54 + secondsUntilStateChange: -107945.79 state: Opening - uid: 513 components: @@ -14744,7 +14744,7 @@ entities: pos: 11.5,3.5 parent: 2 - type: Door - secondsUntilStateChange: -145665.94 + secondsUntilStateChange: -145706.19 state: Opening - uid: 514 components: @@ -14752,7 +14752,7 @@ entities: pos: 5.5,19.5 parent: 2 - type: Door - secondsUntilStateChange: -108460.67 + secondsUntilStateChange: -108500.92 state: Opening - uid: 515 components: @@ -14760,7 +14760,7 @@ entities: pos: -0.5,16.5 parent: 2 - type: Door - secondsUntilStateChange: -108444.805 + secondsUntilStateChange: -108485.055 state: Opening - uid: 516 components: @@ -14768,7 +14768,7 @@ entities: pos: 13.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -108459.1 + secondsUntilStateChange: -108499.35 state: Opening - uid: 517 components: @@ -14776,7 +14776,7 @@ entities: pos: 14.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -108459.41 + secondsUntilStateChange: -108499.66 state: Opening - proto: AirlockScienceLocked entities: @@ -14788,7 +14788,7 @@ entities: pos: 27.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -108420.91 + secondsUntilStateChange: -108461.16 state: Opening - uid: 519 components: @@ -14798,7 +14798,7 @@ entities: pos: 30.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -108419.336 + secondsUntilStateChange: -108459.586 state: Opening - uid: 520 components: @@ -14809,7 +14809,7 @@ entities: pos: 17.5,15.5 parent: 2 - type: Door - secondsUntilStateChange: -108458.07 + secondsUntilStateChange: -108498.32 state: Opening - uid: 521 components: @@ -14819,7 +14819,7 @@ entities: pos: 30.5,12.5 parent: 2 - type: Door - secondsUntilStateChange: -108419.6 + secondsUntilStateChange: -108459.85 state: Opening - uid: 522 components: @@ -14829,7 +14829,7 @@ entities: pos: 27.5,12.5 parent: 2 - type: Door - secondsUntilStateChange: -108421.2 + secondsUntilStateChange: -108461.45 state: Opening - uid: 523 components: @@ -14839,7 +14839,7 @@ entities: pos: 15.5,19.5 parent: 2 - type: Door - secondsUntilStateChange: -149751.78 + secondsUntilStateChange: -149792.03 state: Opening - uid: 524 components: @@ -14849,7 +14849,7 @@ entities: pos: 11.5,19.5 parent: 2 - type: Door - secondsUntilStateChange: -108462.47 + secondsUntilStateChange: -108502.72 state: Opening - uid: 525 components: @@ -14860,7 +14860,7 @@ entities: pos: 17.5,14.5 parent: 2 - type: Door - secondsUntilStateChange: -108458.336 + secondsUntilStateChange: -108498.586 state: Opening - uid: 526 components: @@ -14871,7 +14871,7 @@ entities: pos: 22.5,15.5 parent: 2 - type: Door - secondsUntilStateChange: -108456.6 + secondsUntilStateChange: -108496.85 state: Opening - uid: 527 components: @@ -14882,7 +14882,7 @@ entities: pos: 22.5,14.5 parent: 2 - type: Door - secondsUntilStateChange: -108456.336 + secondsUntilStateChange: -108496.586 state: Opening - proto: AirlockSecurity entities: @@ -20438,36 +20438,6 @@ entities: - type: Transform pos: 9.5,-18.5 parent: 2 - - uid: 1325 - components: - - type: Transform - pos: 15.5,-41.5 - parent: 2 - - uid: 1326 - components: - - type: Transform - pos: 16.5,-41.5 - parent: 2 - - uid: 1327 - components: - - type: Transform - pos: 17.5,-41.5 - parent: 2 - - uid: 1328 - components: - - type: Transform - pos: 15.5,-45.5 - parent: 2 - - uid: 1329 - components: - - type: Transform - pos: 16.5,-45.5 - parent: 2 - - uid: 1330 - components: - - type: Transform - pos: 17.5,-45.5 - parent: 2 - uid: 1331 components: - type: Transform @@ -20790,36 +20760,6 @@ entities: - type: Transform pos: 53.5,-49.5 parent: 2 - - uid: 1386 - components: - - type: Transform - pos: 15.5,-45.5 - parent: 2 - - uid: 1387 - components: - - type: Transform - pos: 16.5,-45.5 - parent: 2 - - uid: 1388 - components: - - type: Transform - pos: 17.5,-45.5 - parent: 2 - - uid: 1389 - components: - - type: Transform - pos: 15.5,-41.5 - parent: 2 - - uid: 1390 - components: - - type: Transform - pos: 16.5,-41.5 - parent: 2 - - uid: 1391 - components: - - type: Transform - pos: 17.5,-41.5 - parent: 2 - uid: 1392 components: - type: Transform @@ -72481,6 +72421,42 @@ entities: - type: Transform pos: 40.567684,-7.455921 parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 1326 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 1329 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 1325 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 2 - proto: CryoPod entities: - uid: 10800 @@ -86181,7 +86157,7 @@ entities: pos: 19.5,62.5 parent: 2 - type: Door - secondsUntilStateChange: -146247.16 + secondsUntilStateChange: -146287.4 state: Closing - uid: 12990 components: @@ -123674,7 +123650,7 @@ entities: pos: 29.5,63.5 parent: 2 - type: Door - secondsUntilStateChange: -122017.79 + secondsUntilStateChange: -122058.04 state: Opening - proto: HospitalCurtainsOpen entities: diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index b2c199df9a3..df89029dd1a 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -187,7 +187,7 @@ entities: version: 6 2,2: ind: 2,2 - tiles: eQAAAAAATQAAAAAAeQAAAAAAHQAAAAACJAAAAAAAJAAAAAAAJAAAAAACJAAAAAACJAAAAAADJAAAAAABJAAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJAAAAAAAJAAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAACJAAAAAACJAAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAYwAAAAABYwAAAAADeQAAAAAAJAAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAABJAAAAAAAHQAAAAACHQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACJAAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABJAAAAAADeQAAAAAAWQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAWQAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAACdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAYwAAAAADYwAAAAADeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAADdgAAAAADeQAAAAAAWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAADHQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: eQAAAAAATQAAAAAAeQAAAAAAHQAAAAACJAAAAAAAJAAAAAAAJAAAAAACJAAAAAACJAAAAAADJAAAAAABJAAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJAAAAAAAJAAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAACJAAAAAACJAAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAYwAAAAABYwAAAAADeQAAAAAAJAAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAABJAAAAAAAHQAAAAACHQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACJAAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABJAAAAAADeQAAAAAAWQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAWQAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAACdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAYwAAAAADYwAAAAADeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAADdgAAAAADeQAAAAAAWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAADHQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 2,1: ind: 2,1 @@ -11325,13 +11325,6 @@ entities: - type: Transform pos: 19.5,51.5 parent: 30 - - uid: 13665 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,42.5 - parent: 30 - uid: 13667 components: - type: MetaData @@ -14395,16 +14388,6 @@ entities: parent: 30 - proto: Bed entities: - - uid: 1334 - components: - - type: Transform - pos: 29.5,42.5 - parent: 30 - - uid: 1371 - components: - - type: Transform - pos: 29.5,41.5 - parent: 30 - uid: 1765 components: - type: Transform @@ -14695,16 +14678,6 @@ entities: parent: 30 - proto: BedsheetSpawner entities: - - uid: 1723 - components: - - type: Transform - pos: 29.5,42.5 - parent: 30 - - uid: 5482 - components: - - type: Transform - pos: 29.5,41.5 - parent: 30 - uid: 6438 components: - type: Transform @@ -16046,11 +16019,26 @@ entities: - type: Transform pos: -43.5,-0.5 parent: 30 + - uid: 1334 + components: + - type: Transform + pos: 30.5,39.5 + parent: 30 + - uid: 1371 + components: + - type: Transform + pos: 30.5,41.5 + parent: 30 - uid: 1393 components: - type: Transform pos: 32.5,43.5 parent: 30 + - uid: 1723 + components: + - type: Transform + pos: 30.5,40.5 + parent: 30 - uid: 1878 components: - type: Transform @@ -28021,31 +28009,6 @@ entities: - type: Transform pos: 33.5,43.5 parent: 30 - - uid: 14842 - components: - - type: Transform - pos: 33.5,42.5 - parent: 30 - - uid: 14843 - components: - - type: Transform - pos: 32.5,42.5 - parent: 30 - - uid: 14844 - components: - - type: Transform - pos: 31.5,42.5 - parent: 30 - - uid: 14845 - components: - - type: Transform - pos: 31.5,42.5 - parent: 30 - - uid: 14846 - components: - - type: Transform - pos: 30.5,42.5 - parent: 30 - uid: 14849 components: - type: Transform @@ -55435,10 +55398,6 @@ entities: - type: Transform pos: -43.5,19.5 parent: 30 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -55457,15 +55416,15 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - uid: 9578 components: - type: Transform pos: -22.5,-44.5 parent: 30 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -55484,15 +55443,15 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - uid: 16813 components: - type: Transform pos: -54.5,41.5 parent: 30 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -55511,15 +55470,15 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - uid: 20467 components: - type: Transform pos: 3.5,-44.5 parent: 30 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -55538,6 +55497,10 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - uid: 22442 components: - type: Transform @@ -55575,10 +55538,6 @@ entities: - type: Transform pos: -31.5,-38.5 parent: 30 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - type: EntityStorage air: volume: 200 @@ -55597,6 +55556,10 @@ entities: - 0 - 0 - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage - proto: CrateEngineeringCableMV entities: - uid: 10220 @@ -56073,6 +56036,34 @@ entities: - type: Transform pos: -5.497734,64.51515 parent: 30 +- proto: CryogenicSleepUnit + entities: + - uid: 1771 + components: + - type: Transform + pos: 31.5,41.5 + parent: 30 + - uid: 5490 + components: + - type: Transform + pos: 31.5,42.5 + parent: 30 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 13665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,42.5 + parent: 30 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 9041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,41.5 + parent: 30 - proto: CryoPod entities: - uid: 784 @@ -90202,8 +90193,6 @@ entities: - type: Transform pos: 30.5,42.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15441 @@ -91968,8 +91957,6 @@ entities: - type: Transform pos: 29.5,42.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13799 @@ -99053,21 +99040,11 @@ entities: parent: 30 - proto: HospitalCurtainsOpen entities: - - uid: 1771 - components: - - type: Transform - pos: 29.5,42.5 - parent: 30 - uid: 5030 components: - type: Transform pos: -28.5,39.5 parent: 30 - - uid: 5490 - components: - - type: Transform - pos: 29.5,41.5 - parent: 30 - uid: 7740 components: - type: Transform @@ -109523,6 +109500,13 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 14842 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,42.5 + parent: 30 - uid: 14948 components: - type: MetaData @@ -143499,6 +143483,13 @@ entities: - type: Transform pos: 7.5,31.5 parent: 30 + - uid: 5482 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,42.5 + parent: 30 - uid: 5500 components: - type: MetaData diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index f830bff6753..52d24c94037 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -194,7 +194,7 @@ entities: version: 6 0,2: ind: 0,2 - tiles: WQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADPgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACWQAAAAADWQAAAAABaQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACWQAAAAABWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADWQAAAAAAWQAAAAACWQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAFHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAFgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAAFgAAAAADHQAAAAACHQAAAAACHQAAAAAAFgAAAAAGFgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFgAAAAAEFgAAAAAAHQAAAAACHQAAAAAAHQAAAAAAFgAAAAAAFgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA + tiles: WQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADPgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACWQAAAAADWQAAAAABaQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACWQAAAAABWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADWQAAAAAAWQAAAAACWQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAFHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAFgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAAFgAAAAADHQAAAAACHQAAAAACHQAAAAAAFgAAAAAGFgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFgAAAAAEFgAAAAAAHQAAAAACHQAAAAAAHQAAAAAAFgAAAAAAFgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA version: 6 -1,2: ind: -1,2 @@ -238,7 +238,7 @@ entities: version: 6 2,1: ind: 2,1 - tiles: eQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADdgAAAAADPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACLAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAABdgAAAAADdgAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAACdgAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABdgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAACdgAAAAACdgAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACLAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAABdgAAAAADdgAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAACdgAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABdgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAACdgAAAAACdgAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 3,1: ind: 3,1 @@ -342,7 +342,7 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -4,-3: ind: -4,-3 @@ -640,6 +640,12 @@ entities: 1676: 23,-49 1677: 22,-49 1678: 21,-49 + 3494: -4,45 + 3495: -3,45 + 3496: -2,45 + 3497: -1,45 + 3498: 2,44 + 3499: 2,45 - node: color: '#FFFFFFFF' id: BotLeft @@ -2795,8 +2801,6 @@ entities: 571: -7,29 651: -3,45 652: -2,45 - 653: -1,45 - 654: 0,45 660: 1,27 754: -12,30 755: -9,30 @@ -4749,11 +4753,11 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 649: 1,45 656: 2,27 783: 6,40 1773: 2,-74 1774: 3,-73 + 3493: -1,45 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 @@ -7073,10 +7077,12 @@ entities: 0: 8930 16,-8: 0: 60395 + 5: 4 17,-8: 0: 65535 18,-8: 0: 12914 + 5: 137 18,-7: 0: 47858 18,-6: @@ -7101,14 +7107,19 @@ entities: 0: 3983 16,-9: 0: 59951 + 5: 1216 17,-9: 0: 65375 + 5: 160 17,-10: 0: 40960 + 5: 24560 18,-10: 0: 4096 + 5: 8976 18,-9: 0: 12896 + 5: 35227 10,-10: 0: 63249 10,-9: @@ -8086,6 +8097,12 @@ entities: 0: 7987 20,7: 0: 4369 + 19,-8: + 5: 51 + 16,-10: + 5: 60608 + 19,-9: + 5: 13107 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -10024,13 +10041,6 @@ entities: - type: Transform pos: 36.5,14.5 parent: 5350 - - uid: 8657 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,18.5 - parent: 5350 - uid: 8658 components: - type: MetaData @@ -11451,16 +11461,37 @@ entities: - type: Transform pos: -3.5,52.5 parent: 5350 + - type: DeviceLinkSink + links: + - 6555 + - type: DeviceLinkSource + linkedPorts: + 6555: + - DoorStatus: DoorBolt - uid: 7808 components: - type: Transform pos: -7.5,52.5 parent: 5350 + - type: DeviceLinkSink + links: + - 7732 + - type: DeviceLinkSource + linkedPorts: + 7732: + - DoorStatus: DoorBolt - uid: 7809 components: - type: Transform pos: -11.5,52.5 parent: 5350 + - type: DeviceLinkSink + links: + - 7810 + - type: DeviceLinkSource + linkedPorts: + 7810: + - DoorStatus: DoorBolt - uid: 7921 components: - type: Transform @@ -11561,6 +11592,11 @@ entities: - type: Transform pos: 46.5,-29.5 parent: 5350 + - uid: 12808 + components: + - type: Transform + pos: 36.5,18.5 + parent: 5350 - uid: 14272 components: - type: Transform @@ -12887,6 +12923,18 @@ entities: - type: Transform pos: -3.5,49.5 parent: 5350 + - type: DeviceLinkSink + links: + - 7807 + - type: DeviceLinkSource + linkedPorts: + 7807: + - DoorStatus: DoorBolt + - uid: 6627 + components: + - type: Transform + pos: 0.5,46.5 + parent: 5350 - uid: 7280 components: - type: Transform @@ -12897,11 +12945,25 @@ entities: - type: Transform pos: -7.5,49.5 parent: 5350 + - type: DeviceLinkSink + links: + - 7808 + - type: DeviceLinkSource + linkedPorts: + 7808: + - DoorStatus: DoorBolt - uid: 7810 components: - type: Transform pos: -11.5,49.5 parent: 5350 + - type: DeviceLinkSink + links: + - 7809 + - type: DeviceLinkSource + linkedPorts: + 7809: + - DoorStatus: DoorBolt - uid: 7818 components: - type: Transform @@ -14285,13 +14347,6 @@ entities: - type: Transform pos: -50.5,-44.5 parent: 5350 -- proto: AppleSeeds - entities: - - uid: 7025 - components: - - type: Transform - pos: -8.510362,60.487736 - parent: 5350 - proto: Ashtray entities: - uid: 24770 @@ -15019,6 +15074,11 @@ entities: - type: Transform pos: 1.5,52.5 parent: 5350 + - uid: 7670 + components: + - type: Transform + pos: -53.5,-55.5 + parent: 5350 - uid: 8197 components: - type: Transform @@ -15039,6 +15099,11 @@ entities: - type: Transform pos: 7.5,24.5 parent: 5350 + - uid: 9145 + components: + - type: Transform + pos: -53.5,-51.5 + parent: 5350 - uid: 9226 components: - type: Transform @@ -15079,11 +15144,6 @@ entities: - type: Transform pos: 38.5,15.5 parent: 5350 - - uid: 12807 - components: - - type: Transform - pos: 38.5,19.5 - parent: 5350 - uid: 14291 components: - type: Transform @@ -15283,11 +15343,6 @@ entities: - type: Transform pos: 38.5,15.5 parent: 5350 - - uid: 12808 - components: - - type: Transform - pos: 38.5,19.5 - parent: 5350 - uid: 17794 components: - type: Transform @@ -52580,16 +52635,6 @@ entities: parent: 5350 - proto: CarpetPurple entities: - - uid: 12818 - components: - - type: Transform - pos: 37.5,18.5 - parent: 5350 - - uid: 12819 - components: - - type: Transform - pos: 38.5,18.5 - parent: 5350 - uid: 24815 components: - type: Transform @@ -52752,13 +52797,6 @@ entities: - type: Transform pos: -47.5,-10.5 parent: 5350 -- proto: CarrotSeeds - entities: - - uid: 7215 - components: - - type: Transform - pos: -8.541612,59.456486 - parent: 5350 - proto: Catwalk entities: - uid: 1265 @@ -57352,12 +57390,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-19.5 parent: 5350 - - uid: 11007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,44.5 - parent: 5350 - uid: 12031 components: - type: Transform @@ -57813,11 +57845,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 5350 - - uid: 12811 - components: - - type: Transform - pos: 38.5,18.5 - parent: 5350 - uid: 21683 components: - type: Transform @@ -57896,11 +57923,6 @@ entities: - type: Transform pos: 25.569641,-21.532032 parent: 5350 - - uid: 7216 - components: - - type: Transform - pos: -4.5259867,59.362736 - parent: 5350 - uid: 13578 components: - type: Transform @@ -58217,134 +58239,6 @@ entities: - type: Transform pos: -23.5,29.5 parent: 5350 -- proto: ClosetBase - entities: - - uid: 13596 - components: - - type: Transform - pos: 34.5,46.5 - parent: 5350 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13597 - components: - - type: Transform - pos: 27.5,46.5 - parent: 5350 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19415 - components: - - type: Transform - pos: 4.5,-53.5 - parent: 5350 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 22665 - components: - - type: Transform - pos: 34.5,-30.5 - parent: 5350 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 23127 - components: - - type: Transform - pos: -24.5,39.5 - parent: 5350 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23133 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: ClosetBombFilled entities: - uid: 8196 @@ -58384,10 +58278,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 10353 + - uid: 19392 components: - type: Transform - pos: 1.5,45.5 + pos: 6.5,-49.5 parent: 5350 - type: EntityStorage air: @@ -58407,29 +58301,11 @@ entities: - 0 - 0 - 0 - - uid: 19392 + - uid: 24242 components: - type: Transform - pos: 6.5,-49.5 + pos: 2.5,45.5 parent: 5350 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetChefFilled entities: - uid: 2479 @@ -59855,6 +59731,11 @@ entities: - 0 - proto: ClosetL3SecurityFilled entities: + - uid: 6401 + components: + - type: Transform + pos: 2.5,44.5 + parent: 5350 - uid: 8195 components: - type: Transform @@ -59892,29 +59773,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 10352 - components: - - type: Transform - pos: 0.5,45.5 - parent: 5350 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetL3VirologyFilled entities: - uid: 16254 @@ -60619,6 +60477,134 @@ entities: - 0 - 0 - 0 +- proto: ClosetSteelBase + entities: + - uid: 13596 + components: + - type: Transform + pos: 34.5,46.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.848459 + - 14.477538 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13597 + components: + - type: Transform + pos: 27.5,46.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.848459 + - 14.477538 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19415 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.848459 + - 14.477538 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 22665 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.848459 + - 14.477538 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23127 + components: + - type: Transform + pos: -24.5,39.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.848459 + - 14.477538 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23133 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: ClosetToolFilled entities: - uid: 10151 @@ -60752,7 +60738,7 @@ entities: - uid: 12814 components: - type: Transform - pos: 37.47535,17.640844 + pos: 29.527231,28.571722 parent: 5350 - uid: 23033 components: @@ -61223,6 +61209,13 @@ entities: - type: Transform pos: -7.4309044,-16.489243 parent: 5350 +- proto: ClothingHeadHatOrangesoft + entities: + - uid: 24771 + components: + - type: Transform + pos: -2.4934072,56.65246 + parent: 5350 - proto: ClothingHeadHatPirate entities: - uid: 22910 @@ -61842,48 +61835,6 @@ entities: - type: Transform pos: 48.50155,35.454395 parent: 5350 -- proto: ClothingOuterSanta - entities: - - uid: 26645 - components: - - type: Transform - pos: 2.3673172,43.738365 - parent: 5350 - - uid: 26646 - components: - - type: Transform - pos: 2.3673172,43.738365 - parent: 5350 - - uid: 26647 - components: - - type: Transform - pos: 2.3673172,43.738365 - parent: 5350 - - uid: 26648 - components: - - type: Transform - pos: 2.3673172,43.738365 - parent: 5350 - - uid: 26649 - components: - - type: Transform - pos: 2.6016922,43.56649 - parent: 5350 - - uid: 26650 - components: - - type: Transform - pos: 2.6016922,43.56649 - parent: 5350 - - uid: 26651 - components: - - type: Transform - pos: 2.6016922,43.56649 - parent: 5350 - - uid: 26652 - components: - - type: Transform - pos: 2.6016922,43.56649 - parent: 5350 - proto: ClothingOuterSkub entities: - uid: 24112 @@ -61960,11 +61911,6 @@ entities: parent: 5350 - proto: ClothingShoesColorOrange entities: - - uid: 13784 - components: - - type: Transform - pos: -2.5458217,57.40607 - parent: 5350 - uid: 23094 components: - type: Transform @@ -62747,6 +62693,12 @@ entities: - type: Transform pos: 8.5,48.5 parent: 5350 + - uid: 6400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,40.5 + parent: 5350 - uid: 8209 components: - type: Transform @@ -63682,6 +63634,11 @@ entities: - type: Transform pos: -37.5,19.5 parent: 5350 + - uid: 3697 + components: + - type: Transform + pos: -38.5,13.5 + parent: 5350 - uid: 3752 components: - type: Transform @@ -63692,6 +63649,31 @@ entities: - type: Transform pos: -38.5,15.5 parent: 5350 + - uid: 11007 + components: + - type: Transform + pos: -37.5,13.5 + parent: 5350 + - uid: 11229 + components: + - type: Transform + pos: -37.5,15.5 + parent: 5350 + - uid: 12813 + components: + - type: Transform + pos: -36.5,15.5 + parent: 5350 + - uid: 12819 + components: + - type: Transform + pos: -36.5,19.5 + parent: 5350 + - uid: 13784 + components: + - type: Transform + pos: -36.5,17.5 + parent: 5350 - uid: 17452 components: - type: Transform @@ -63996,6 +63978,39 @@ entities: - type: Transform pos: 45.422592,-8.454437 parent: 5350 +- proto: CryogenicSleepUnit + entities: + - uid: 7222 + components: + - type: Transform + pos: -2.5,57.5 + parent: 5350 + - uid: 8293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,19.5 + parent: 5350 + - uid: 12807 + components: + - type: Transform + pos: 37.5,19.5 + parent: 5350 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 12809 + components: + - type: Transform + pos: 37.5,17.5 + parent: 5350 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 12810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,17.5 + parent: 5350 - proto: CryoPod entities: - uid: 14353 @@ -70722,11 +70737,6 @@ entities: - type: Transform pos: 32.5,15.5 parent: 5350 - - uid: 12809 - components: - - type: Transform - pos: 37.5,19.5 - parent: 5350 - proto: DresserCaptainFilled entities: - uid: 1057 @@ -74376,6 +74386,13 @@ entities: parent: 5350 - type: Fixtures fixtures: {} + - uid: 7100 + components: + - type: Transform + pos: -14.5,57.5 + parent: 5350 + - type: Fixtures + fixtures: {} - uid: 9500 components: - type: Transform @@ -111748,6 +111765,11 @@ entities: - type: Transform pos: 19.5,24.5 parent: 5350 + - uid: 8657 + components: + - type: Transform + pos: 36.5,19.5 + parent: 5350 - uid: 8953 components: - type: Transform @@ -111923,6 +111945,11 @@ entities: - type: Transform pos: 2.5,41.5 parent: 5350 + - uid: 10417 + components: + - type: Transform + pos: 1.5,46.5 + parent: 5350 - uid: 10529 components: - type: Transform @@ -112648,6 +112675,11 @@ entities: - type: Transform pos: 32.5,47.5 parent: 5350 + - uid: 12811 + components: + - type: Transform + pos: 36.5,17.5 + parent: 5350 - uid: 12871 components: - type: Transform @@ -116800,10 +116832,10 @@ entities: parent: 5350 - proto: GunSafeShotgunKammerer entities: - - uid: 9145 + - uid: 7394 components: - type: Transform - pos: -7.5,38.5 + pos: -1.5,40.5 parent: 5350 - proto: GunSafeSubMachineGunDrozd entities: @@ -117023,6 +117055,11 @@ entities: parent: 5350 - proto: HospitalCurtainsOpen entities: + - uid: 7215 + components: + - type: Transform + pos: -14.5,57.5 + parent: 5350 - uid: 12706 components: - type: Transform @@ -119842,11 +119879,6 @@ entities: parent: 5350 - proto: MaintenanceWeaponSpawner entities: - - uid: 12813 - components: - - type: Transform - pos: 38.5,17.5 - parent: 5350 - uid: 17307 components: - type: Transform @@ -119945,16 +119977,6 @@ entities: parent: 5350 - proto: MedicalBed entities: - - uid: 3697 - components: - - type: Transform - pos: -53.5,-51.5 - parent: 5350 - - uid: 11229 - components: - - type: Transform - pos: -53.5,-55.5 - parent: 5350 - uid: 14063 components: - type: Transform @@ -122209,6 +122231,13 @@ entities: - type: Transform pos: 2.4472017,-65.61963 parent: 5350 +- proto: PlushieSharkGrey + entities: + - uid: 24772 + components: + - type: Transform + pos: -6.535018,55.64106 + parent: 5350 - proto: PlushieSnake entities: - uid: 22664 @@ -129505,6 +129534,23 @@ entities: - type: Transform pos: 14.5,-54.5 parent: 5350 +- proto: RandomArtifactSpawner20 + entities: + - uid: 6587 + components: + - type: Transform + pos: -39.5,17.5 + parent: 5350 + - uid: 7216 + components: + - type: Transform + pos: -39.5,19.5 + parent: 5350 + - uid: 12818 + components: + - type: Transform + pos: -39.5,15.5 + parent: 5350 - proto: RandomBoard entities: - uid: 1942 @@ -132441,6 +132487,11 @@ entities: - type: Transform pos: 26.5,27.5 parent: 5350 + - uid: 8286 + components: + - type: Transform + pos: 36.5,17.5 + parent: 5350 - uid: 8547 components: - type: Transform @@ -132816,6 +132867,16 @@ entities: - type: Transform pos: 63.5,-0.5 parent: 5350 + - uid: 10337 + components: + - type: Transform + pos: 2.5,41.5 + parent: 5350 + - uid: 10352 + components: + - type: Transform + pos: 0.5,41.5 + parent: 5350 - uid: 10354 components: - type: Transform @@ -132826,6 +132887,11 @@ entities: - type: Transform pos: 63.5,1.5 parent: 5350 + - uid: 10416 + components: + - type: Transform + pos: 1.5,46.5 + parent: 5350 - uid: 10815 components: - type: Transform @@ -133051,6 +133117,11 @@ entities: - type: Transform pos: 35.5,51.5 parent: 5350 + - uid: 12812 + components: + - type: Transform + pos: 36.5,19.5 + parent: 5350 - uid: 13599 components: - type: Transform @@ -134667,6 +134738,11 @@ entities: - type: Transform pos: -34.606827,23.525726 parent: 5350 + - uid: 24252 + components: + - type: Transform + pos: -7.4329324,40.692398 + parent: 5350 - uid: 26642 components: - type: Transform @@ -134776,6 +134852,11 @@ entities: - type: Transform pos: 54.45478,-5.421943 parent: 5350 + - uid: 24244 + components: + - type: Transform + pos: -7.4485574,40.661148 + parent: 5350 - uid: 26470 components: - type: Transform @@ -135282,14 +135363,6 @@ entities: - type: DeviceLinkSink links: - 5345 - - uid: 10335 - components: - - type: Transform - pos: 1.5,41.5 - parent: 5350 - - type: DeviceLinkSink - links: - - 10478 - uid: 10479 components: - type: Transform @@ -135969,15 +136042,6 @@ entities: linkedPorts: 9438: - Pressed: Toggle - - uid: 10478 - components: - - type: Transform - pos: -0.5,41.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 10335: - - Pressed: Toggle - uid: 10482 components: - type: Transform @@ -141124,10 +141188,10 @@ entities: - type: Transform pos: -7.5,37.5 parent: 5350 - - uid: 10384 + - uid: 10335 components: - type: Transform - pos: -1.5,40.5 + pos: -7.5,38.5 parent: 5350 - proto: SuitStorageWarden entities: @@ -142741,11 +142805,6 @@ entities: - type: Transform pos: -2.5,53.5 parent: 5350 - - uid: 7100 - components: - - type: Transform - pos: -2.5,57.5 - parent: 5350 - uid: 7169 components: - type: Transform @@ -143073,6 +143132,11 @@ entities: - type: Transform pos: -16.5,40.5 parent: 5350 + - uid: 10336 + components: + - type: Transform + pos: -2.5,56.5 + parent: 5350 - uid: 10342 components: - type: Transform @@ -145299,16 +145363,6 @@ entities: - type: Transform pos: 37.5,24.5 parent: 5350 - - uid: 12810 - components: - - type: Transform - pos: 37.5,17.5 - parent: 5350 - - uid: 12812 - components: - - type: Transform - pos: 38.5,17.5 - parent: 5350 - uid: 13611 components: - type: Transform @@ -146167,20 +146221,6 @@ entities: - type: Transform pos: 5.5,-32.5 parent: 5350 - - uid: 10336 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,41.5 - parent: 5350 - - uid: 10337 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,41.5 - parent: 5350 - uid: 11178 components: - type: MetaData @@ -147107,14 +147147,6 @@ entities: - type: Transform pos: -17.5,15.5 parent: 5350 - - uid: 6627 - components: - - type: MetaData - flags: SessionSpecific - name: cigarette machine - - type: Transform - pos: -2.5,55.5 - parent: 5350 - uid: 7936 components: - type: MetaData @@ -147587,6 +147619,13 @@ entities: - type: Transform pos: 28.5,-20.5 parent: 5350 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 10384 + components: + - type: Transform + pos: -2.5,55.5 + parent: 5350 - proto: VendingMachineSnack entities: - uid: 1178 @@ -147603,13 +147642,6 @@ entities: - type: Transform pos: -24.5,12.5 parent: 5350 - - uid: 7222 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -3.5,55.5 - parent: 5350 - uid: 19509 components: - type: MetaData @@ -147626,6 +147658,13 @@ entities: - type: Transform pos: 34.5,-25.5 parent: 5350 +- proto: VendingMachineSustenance + entities: + - uid: 10353 + components: + - type: Transform + pos: -3.5,55.5 + parent: 5350 - proto: VendingMachineTankDispenserEngineering entities: - uid: 1502 @@ -151310,20 +151349,6 @@ entities: - type: Transform pos: -0.5,46.5 parent: 5350 - - uid: 6400 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,46.5 - parent: 5350 - - uid: 6401 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,46.5 - parent: 5350 - uid: 6402 components: - type: MetaData @@ -164308,13 +164333,6 @@ entities: - type: Transform pos: -13.5,54.5 parent: 5350 - - uid: 6587 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,53.5 - parent: 5350 - uid: 6652 components: - type: MetaData @@ -164686,13 +164704,6 @@ entities: - type: Transform pos: 36.5,20.5 parent: 5350 - - uid: 8286 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,19.5 - parent: 5350 - uid: 8287 components: - type: MetaData @@ -164735,13 +164746,6 @@ entities: - type: Transform pos: 39.5,19.5 parent: 5350 - - uid: 8293 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,17.5 - parent: 5350 - uid: 8309 components: - type: MetaData @@ -165792,6 +165796,13 @@ entities: - type: Transform pos: 5.5,-33.5 parent: 5350 + - uid: 10478 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,53.5 + parent: 5350 - uid: 10644 components: - type: MetaData @@ -171738,27 +171749,6 @@ entities: parent: 5350 - type: WarpPoint location: Courtroom - - uid: 24242 - components: - - type: Transform - pos: -25.5,26.5 - parent: 5350 - - type: WarpPoint - location: Janitor Closet - - uid: 24244 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 5350 - - type: WarpPoint - location: HoP Office - - uid: 24252 - components: - - type: Transform - pos: -15.5,-42.5 - parent: 5350 - - type: WarpPoint - location: Cloning - proto: WaterCooler entities: - uid: 2088 @@ -171986,6 +171976,11 @@ entities: - type: Transform pos: 3.5,-67.5 parent: 5350 + - uid: 22250 + components: + - type: Transform + pos: 2.5,43.5 + parent: 5350 - uid: 22251 components: - type: Transform @@ -172298,11 +172293,6 @@ entities: - type: Transform pos: 25.569641,-21.485157 parent: 5350 - - uid: 7394 - components: - - type: Transform - pos: -4.4791117,60.47211 - parent: 5350 - uid: 13579 components: - type: Transform @@ -172409,12 +172399,6 @@ entities: - type: Transform pos: -5.5,35.5 parent: 5350 - - uid: 22250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-37.5 - parent: 5350 - uid: 23045 components: - type: Transform @@ -173162,18 +173146,6 @@ entities: parent: 5350 - proto: WindowFrostedDirectional entities: - - uid: 26304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-37.5 - parent: 5350 - - uid: 26305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-37.5 - parent: 5350 - uid: 26306 components: - type: Transform @@ -173727,11 +173699,11 @@ entities: - type: Transform pos: -3.5,56.5 parent: 5350 - - uid: 7670 + - uid: 7025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,45.5 + rot: 1.5707963267948966 rad + pos: -0.5,45.5 parent: 5350 - uid: 7673 components: @@ -173882,17 +173854,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,24.5 parent: 5350 - - uid: 10416 - components: - - type: Transform - pos: -7.5,40.5 - parent: 5350 - - uid: 10417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,36.5 - parent: 5350 - uid: 10502 components: - type: Transform diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 377d0d2fcf3..0ff870f99c2 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -1,86885 +1,86877 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 7: FloorAsteroidSand - 11: FloorAsteroidTile - 14: FloorBar - 17: FloorBlueCircuit - 29: FloorDark - 33: FloorDarkMini - 34: FloorDarkMono - 36: FloorDarkPavement - 41: FloorEighties - 44: FloorFreezer - 47: FloorGrass - 54: FloorGreenCircuit - 58: FloorHydro - 61: FloorLaundry - 62: FloorLino - 69: FloorMono - 77: FloorReinforced - 80: FloorShowroom - 89: FloorSteel - 104: FloorTechMaint - 105: FloorTechMaint2 - 108: FloorWhite - 118: FloorWood - 120: Lattice - 121: Plating - 122: PlatingAsteroid -entities: -- proto: "" - entities: - - uid: 473 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - type: GridTree - - type: MovedGrids - - uid: 4812 - components: - - type: MetaData - - type: Transform - pos: 2.2710133,-2.4148211 - parent: 473 - - type: MapGrid - chunks: - -1,0: - ind: -1,0 - tiles: PgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAACHQAAAAADeQAAAAAADgAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAACdgAAAAACHQAAAAABeQAAAAAADgAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAADgAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAABdgAAAAABdgAAAAAAHQAAAAABDgAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAADdgAAAAACdgAAAAAAHQAAAAADDgAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAABdgAAAAABdgAAAAACHQAAAAACDgAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAADdgAAAAAAHQAAAAACDgAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAACdgAAAAADHQAAAAACDgAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAAAdgAAAAADHQAAAAAADgAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAAAdgAAAAADHQAAAAAADgAAAAACDgAAAAABWQAAAAADWQAAAAAAWQAAAAACDgAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABDgAAAAADWQAAAAACWQAAAAADWQAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABDgAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAA - version: 6 - 0,0: - ind: 0,0 - tiles: DgAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAADgAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAADgAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAALAAAAAAALAAAAAAADgAAAAAAHQAAAAADHQAAAAADHQAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAABHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAALAAAAAAALAAAAAAADgAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAB - version: 6 - -1,1: - ind: -1,1 - tiles: eQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACNgAAAAAAHQAAAAACHQAAAAABHQAAAAADNgAAAAAAHQAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADNgAAAAAAHQAAAAADHQAAAAACLAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAUAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAD - version: 6 - 0,1: - ind: 0,1 - tiles: WQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADWQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACLwAAAAAALwAAAAAALwAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAADdgAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACdgAAAAABdgAAAAADdgAAAAABUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACeQAAAAAAHQAAAAAAdgAAAAACdgAAAAACdgAAAAACeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC - version: 6 - 0,-1: - ind: 0,-1 - tiles: WQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAHQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAADgAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABDgAAAAACeQAAAAAAJAAAAAADJAAAAAABJAAAAAACJAAAAAACJAAAAAABJAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAADgAAAAADeQAAAAAAJAAAAAADJAAAAAAAJAAAAAADJAAAAAABJAAAAAACJAAAAAABaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAADgAAAAABeQAAAAAAJAAAAAABJAAAAAADJAAAAAACJAAAAAADJAAAAAAAJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: bAAAAAADbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADOgAAAAAAHQAAAAABLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAACDgAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABDgAAAAACDgAAAAABWQAAAAADWQAAAAADWQAAAAADDgAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAACDgAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADWQAAAAACDgAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAADgAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABeQAAAAAADgAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAACdgAAAAACHQAAAAABHQAAAAAADgAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAC - version: 6 - -2,1: - ind: -2,1 - tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA - version: 6 - -2,0: - ind: -2,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADPQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADPQAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAADKQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADHQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAAB - version: 6 - -2,-1: - ind: -2,-1 - tiles: HQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAbAAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAOgAAAAAAOgAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAADWQAAAAACWQAAAAABHQAAAAADeQAAAAAAHQAAAAABOgAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADOgAAAAAAOgAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAA - version: 6 - -1,2: - ind: -1,2 - tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,2: - ind: 0,2 - tiles: HQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 1,2: - ind: 1,2 - tiles: WQAAAAAAWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACLAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,1: - ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,0: - ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,3: - ind: 0,3 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAAANgAAAAAANgAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAANgAAAAAAHQAAAAADNgAAAAAAHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAeQAAAAAANgAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADHQAAAAABNgAAAAAAHQAAAAACHQAAAAABNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,3: - ind: 1,3 - tiles: eQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,2: - ind: -2,2 - tiles: WQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,-1: - ind: 1,-1 - tiles: eQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACeQAAAAAAeAAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAD - version: 6 - 0,-2: - ind: 0,-2 - tiles: WQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAABNgAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABbAAAAAACbAAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADNgAAAAAANgAAAAAANgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADbAAAAAAAbAAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABEQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACWQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -1,-2: - ind: -1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAbAAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAADbAAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABbAAAAAABWQAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA - version: 6 - -1,-3: - ind: -1,-3 - tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD - version: 6 - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -1,-4: - ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,-2: - ind: 1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABbAAAAAACbAAAAAADbAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACbAAAAAAAbAAAAAADbAAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADWQAAAAAAWQAAAAABWQAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAABwAAAAAABwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAHBwAAAAAAeQAAAAAAaQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAACAAAAAAAA - version: 6 - 2,-2: - ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,-3: - ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA - version: 6 - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA - version: 6 - -3,-1: - ind: -3,-1 - tiles: BwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAD - version: 6 - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABeQAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAABwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABBwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA - version: 6 - -2,-2: - ind: -2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAABeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAACbAAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAACPgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAADHQAAAAAAHQAAAAAAHQAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAbAAAAAADHQAAAAABHQAAAAAAHQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABbAAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAbAAAAAAD - version: 6 - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAABeQAAAAAADgAAAAADDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAACDgAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACIQAAAAACIQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAIQAAAAAAIQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAAAdgAAAAABdgAAAAACdgAAAAADeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAA - version: 6 - -3,2: - ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,1: - ind: -3,1 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA - version: 6 - -3,0: - ind: -3,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAA - version: 6 - -3,-3: - ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAADWQAAAAADWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAWQAAAAAAWQAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAA - version: 6 - -4,-1: - ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAAeQAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA - version: 6 - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA - version: 6 - -5,-2: - ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA - version: 6 - 3,-3: - ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,-2: - ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,1: - ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1084: 27,-31 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 1605: -35,19 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 938: -11,-6 - 1085: 27,-29 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 16: -21,-9 - 17: -21,-8 - 18: -21,-7 - 19: -23,-7 - 28: -21,-4 - 30: -23,-4 - 56: 5,22 - 57: 6,22 - 58: 7,22 - 59: 8,22 - 141: 20,14 - 147: 18,21 - 246: 13,55 - 247: 13,49 - 248: 7,49 - 249: 7,55 - 250: 11,43 - 251: 9,43 - 310: 28,-10 - 311: 30,-10 - 419: 11,-28 - 420: 12,-28 - 422: 12,-26 - 423: 14,-26 - 424: 5,-24 - 425: 19,-27 - 588: -30,22 - 589: -31,22 - 635: -17,11 - 636: -17,9 - 654: -37,-9 - 655: -36,-9 - 687: -35,5 - 688: -34,5 - 689: -33,5 - 690: -32,5 - 699: -35,1 - 713: -31,-6 - 714: -31,-10 - 863: -54,-11 - 864: -55,-10 - 865: -54,-9 - 866: -53,-10 - 899: 14,23 - 900: 14,25 - 901: 14,26 - 902: 14,27 - 903: 18,23 - 904: 18,24 - 936: -10,-6 - 937: -10,-10 - 1010: 31,-29 - 1011: 32,-29 - 1012: 34,-29 - 1013: 35,-29 - 1082: 29,-31 - 1083: 29,-29 - 1204: -9,-28 - 1205: -9,-27 - 1233: -14,-26 - 1234: -16,-26 - 1531: 2,-36 - 1532: -15,-14 - 1604: -37,20 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 1533: -47,-9 - 1534: -47,-8 - 1535: -47,-7 - 1599: -32,-10 - 1600: -33,-10 - 1601: -34,-10 - 1602: -36,21 - 1603: -37,21 - - node: - color: '#FFFFFFFF' - id: BotLeftGreyscale - decals: - 869: -53,-9 - 870: -55,-11 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: BotRight - decals: - 1086: 22,-27 - - node: - color: '#FFFFFFFF' - id: BotRightGreyscale - decals: - 867: -55,-9 - 868: -53,-11 - 1369: -19,-19 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 1038: -15,-35 - 1039: -23,-40 - 1040: -23,-39 - 1041: -23,-37 - 1042: -23,-38 - 1043: -23,-36 - 1091: -1,28 - 1092: -1,29 - 1093: -1,30 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 1088: -5,28 - 1089: -5,29 - 1090: -5,30 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNe - decals: - 1553: -39,-11 - 1554: -39,-11 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNw - decals: - 1559: -43,-11 - 1560: -43,-11 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerSe - decals: - 1575: -39,-19 - 1576: -39,-19 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerSw - decals: - 1573: -43,-19 - 1574: -43,-19 - - node: - color: '#EFB34196' - id: BrickTileSteelLineE - decals: - 1583: -39,-18 - 1584: -39,-18 - 1585: -39,-17 - 1586: -39,-17 - 1587: -39,-15 - 1588: -39,-15 - 1589: -39,-16 - 1590: -39,-16 - 1591: -39,-14 - 1592: -39,-14 - 1593: -39,-13 - 1594: -39,-13 - 1595: -39,-12 - 1596: -39,-12 - - node: - color: '#D381C996' - id: BrickTileSteelLineN - decals: - 1005: 31,-29 - 1006: 32,-29 - 1007: 33,-29 - 1008: 34,-29 - 1009: 35,-29 - - node: - color: '#EFB34196' - id: BrickTileSteelLineN - decals: - 1555: -40,-11 - 1556: -40,-11 - 1557: -42,-11 - 1558: -42,-11 - - node: - color: '#D381C996' - id: BrickTileSteelLineS - decals: - 1000: 31,-25 - 1001: 32,-25 - 1002: 33,-25 - 1003: 34,-25 - 1004: 35,-25 - - node: - color: '#EFB34196' - id: BrickTileSteelLineS - decals: - 1577: -40,-19 - 1578: -40,-19 - 1579: -41,-19 - 1580: -41,-19 - 1581: -42,-19 - 1582: -42,-19 - - node: - color: '#EFB34196' - id: BrickTileSteelLineW - decals: - 1561: -43,-12 - 1562: -43,-12 - 1563: -43,-14 - 1564: -43,-14 - 1565: -43,-15 - 1566: -43,-15 - 1567: -43,-16 - 1568: -43,-16 - 1569: -43,-17 - 1570: -43,-17 - 1571: -43,-18 - 1572: -43,-18 - - node: - color: '#334E6DC8' - id: BrickTileWhiteBox - decals: - 1045: -50,-14 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteBox - decals: - 1046: -51,-14 - - node: - color: '#EFB34196' - id: BrickTileWhiteBox - decals: - 1044: -49,-14 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 1171: -9,-21 - 1243: -15,-21 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 1061: 26,-25 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw - decals: - 1172: -13,-21 - 1247: -21,-21 - 1248: -23,-23 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 1062: 27,-25 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSe - decals: - 1170: -9,-24 - 1256: -15,-24 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSw - decals: - 1249: -23,-24 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNe - decals: - 1066: 25,-25 - 1070: 26,-27 - 1081: 22,-24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNe - decals: - 1495: -6,-32 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerNw - decals: - 1260: -21,-23 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNw - decals: - 1067: 28,-25 - 1069: 27,-27 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNw - decals: - 1496: 0,-32 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSe - decals: - 1058: 21,-25 - 1068: 25,-24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSe - decals: - 1494: -6,-23 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSw - decals: - 1057: 25,-25 - 1065: 28,-24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSw - decals: - 1493: 0,-23 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 1052: 21,-27 - 1053: 21,-26 - 1059: 26,-26 - 1071: 22,-21 - 1072: 22,-22 - 1073: 22,-23 - 1306: -17,-18 - 1307: -17,-17 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 1470: -6,-31 - 1471: -6,-30 - 1472: -6,-29 - 1473: -6,-27 - 1474: -6,-25 - 1475: -6,-24 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 1180: -11,-21 - 1244: -17,-21 - 1245: -18,-21 - 1246: -19,-21 - 1259: -22,-23 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 1047: 27,-28 - 1048: 28,-28 - 1049: 29,-28 - 1074: 23,-24 - 1075: 24,-24 - 1076: 25,-24 - 1077: 26,-24 - 1078: 27,-24 - 1079: 28,-24 - 1080: 29,-24 - 1305: -16,-19 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 1476: -5,-32 - 1477: -4,-32 - 1478: -2,-32 - 1479: -1,-32 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 1173: -12,-24 - 1181: -11,-24 - 1250: -16,-24 - 1251: -18,-24 - 1252: -19,-24 - 1253: -20,-24 - 1254: -21,-24 - 1255: -22,-24 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 1054: 24,-25 - 1055: 23,-25 - 1056: 22,-25 - 1063: 27,-24 - 1064: 26,-24 - 1308: -16,-16 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 1488: -1,-23 - 1489: -2,-23 - 1490: -3,-23 - 1491: -4,-23 - 1492: -5,-23 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 1261: -21,-22 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 1050: 25,-27 - 1051: 25,-26 - 1060: 27,-26 - 1309: -15,-18 - 1310: -15,-17 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 1480: 0,-31 - 1481: 0,-30 - 1482: 0,-29 - 1483: 0,-28 - 1484: 0,-27 - 1485: 0,-26 - 1486: 0,-25 - 1487: 0,-24 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bushb3 - decals: - 850: 14.0002365,-41.964172 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bushc3 - decals: - 857: 4.0288744,-43.00805 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 51: 6.409272,21.00127 - - node: - color: '#FFFFFFFF' - id: Bushg2 - decals: - 27: -8.467243,-8.991291 - - node: - color: '#FFFFFFFF' - id: Bushg3 - decals: - 26: -8.904743,-10.131916 - - node: - color: '#FFFFFFFF' - id: Bushg4 - decals: - 25: -7.107868,-9.913166 - 328: -9.013572,-49.089592 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 24: -7.920368,-9.100666 - 327: -8.919771,-45.902092 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 326: -8.986252,-47.542717 - 333: -13.982322,-47.902092 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 23: -8.592243,-9.991291 - 52: 7.440522,20.93877 - - node: - color: '#FFFFFFFF' - id: Bushk1 - decals: - 50: 7.940522,21.016895 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 53: 7.034272,20.954395 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 941: -35,-4 - 942: -35,-3 - - node: - color: '#D381C996' - id: CheckerNESW - decals: - 1504: -3,-29 - 1505: -3,-28 - 1506: -3,-27 - 1507: -3,-26 - - node: - color: '#DE3A3A96' - id: CheckerNESW - decals: - 939: -35,-1 - 940: -35,-2 - - node: - color: '#334E6DC8' - id: CheckerNWSE - decals: - 1280: -25,-29 - 1281: -26,-29 - 1282: -27,-29 - 1283: -27,-28 - 1284: -26,-28 - 1285: -25,-28 - 1286: -25,-27 - 1287: -26,-27 - 1288: -27,-27 - 1289: -27,-26 - 1290: -26,-26 - 1291: -25,-26 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 1194: -11,-29 - 1195: -10,-29 - 1196: -10,-28 - 1197: -11,-28 - 1198: -11,-27 - 1199: -10,-27 - 1200: -10,-26 - 1201: -11,-26 - 1294: -26,-24 - 1295: -26,-23 - 1296: -25,-23 - 1297: -25,-24 - 1500: -3,-29 - 1501: -3,-28 - 1502: -3,-27 - 1503: -3,-26 - - node: - color: '#D381C996' - id: CheckerNWSE - decals: - 357: 16,-22 - 358: 16,-21 - 359: 17,-21 - 360: 17,-22 - 361: 18,-22 - 362: 18,-21 - 985: 31,-28 - 986: 31,-27 - 987: 31,-26 - 988: 32,-26 - 989: 32,-27 - 990: 32,-28 - 991: 33,-28 - 992: 33,-27 - 993: 33,-26 - 994: 34,-26 - 995: 34,-27 - 996: 34,-28 - 997: 35,-28 - 998: 35,-27 - 999: 35,-26 - - node: - color: '#D4D4D496' - id: CheckerNWSE - decals: - 943: -35,-4 - 944: -35,-3 - 945: -35,-2 - 946: -35,-1 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 561: -34,12 - 562: -35,12 - 563: -34,11 - 564: -34,10 - 565: -35,10 - 566: -35,11 - 567: -36,10 - 568: -36,11 - 569: -36,12 - 570: -37,10 - 571: -37,11 - 572: -37,12 - 573: -38,11 - 574: -38,10 - 575: -39,10 - 576: -39,11 - 577: -39,12 - 578: -38,12 - 579: -40,12 - 580: -40,11 - 581: -40,10 - - node: - color: '#EFB34196' - id: CheckerNWSE - decals: - 728: -49,-10 - 729: -50,-10 - 730: -51,-10 - 731: -51,-9 - 732: -50,-9 - 733: -49,-9 - 734: -49,-8 - 735: -50,-8 - 736: -51,-8 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 29: -22,-4 - 60: 9,22 - 142: 20,15 - 148: 18,20 - 254: 5,47 - 255: 6,47 - 256: 7,47 - 312: 29,-10 - 313: 31,-10 - 421: 12,-29 - 582: -27,13 - 583: -27,14 - 630: -20,7 - 631: -19,7 - 632: -18,12 - 633: -17,12 - 634: -17,10 - 648: -35,-34 - 649: -34,-34 - 691: -35,4 - 692: -34,4 - 693: -33,4 - 694: -32,4 - 700: -34,-6 - 715: -40,-4 - 716: -40,-3 - 717: -40,-2 - 1087: 22,-26 - 1202: -9,-26 - 1203: -9,-29 - 1367: -12,-37 - 1368: -11,-37 - 1370: -6,-15 - 1371: -7,-15 - 1372: 0,-15 - 1373: 1,-15 - 1374: -12,-13 - 1375: -12,-12 - 1376: 6,-13 - 1377: 6,-12 - 1378: 11,-11 - 1379: 12,-11 - 1380: 12,0 - 1381: 11,0 - 1382: 12,16 - 1383: 11,16 - 1384: 13,14 - 1385: 13,15 - 1386: 4,19 - 1387: 4,20 - 1388: -10,19 - 1389: -10,20 - 1390: -23,15 - 1391: -24,15 - 1392: -26,6 - 1393: -27,6 - 1394: -26,-11 - 1395: -27,-11 - 1396: -22,-13 - 1397: -22,-12 - 1606: 5,-4 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 1030: -44,-28 - 1031: -45,-29 - 1032: -43,-27 - 1033: -44,-30 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 801: 7,-33 - 802: 8,-32 - 809: 5,-39 - 810: 5,-38 - 811: 12,-41 - 828: 24,12 - 1027: -43,-28 - 1028: -44,-27 - 1029: -45,-28 - 1537: -47,-8 - 1538: -47,-7 - 1539: -47,-10 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 910: 20,27 - 911: 19,26 - 912: 17,26 - 913: 16,24 - 914: 16,30 - 915: 17,32 - 916: 16,35 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 804: 8,-34 - 805: 8,-36 - 806: 13,-39 - 807: 14,-38 - 808: 4,-38 - 812: -34,-6 - 813: -34,-8 - 814: -33,-7 - 815: -41,-9 - 816: -41,-8 - 817: -39,-9 - 818: -34,-4 - 819: -31,-3 - 820: -25,-5 - 821: -26,-4 - 822: -23,-12 - 823: 13,-4 - 824: 19,15 - 825: 18,14 - 826: 24,14 - 829: 24,13 - 830: 22,14 - 831: 23,15 - 832: 17,14 - 833: 16,21 - 834: 15,21 - 835: 16,19 - 836: 16,23 - 837: 17,24 - 838: -21,9 - 839: -23,8 - 840: -25,7 - 841: -23,13 - 842: 0,-19 - 843: -6,-28 - 844: -6,-33 - 845: -11,-38 - 1536: -47,-9 - 1543: -46,-13 - 1544: -45,-12 - 1545: -46,-11 - 1546: -45,-11 - 1547: -45,-10 - 1548: -45,-9 - 1549: -46,-8 - 1550: -46,-7 - 1551: -45,-6 - 1552: -40,-6 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 803: 8,-33 - 827: 24,15 - 1540: -46,-10 - 1541: -46,-9 - 1542: -46,-12 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 47: 6.065522,21.048145 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 48: 7.049897,20.985645 - 325: -8.939377,-46.636467 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 49: 7.518647,21.016895 - 324: -8.955002,-48.308342 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 332: -13.997947,-48.917717 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 109: -7,29 - 110: 1,29 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 1182: -11,-23 - 1183: -11,-22 - 1206: -13,-26 - 1207: -15,-26 - 1208: -17,-26 - 1209: -18,-26 - 1210: -16,-29 - 1211: -17,-29 - 1212: -18,-29 - 1300: -24,-24 - - node: - color: '#A4610696' - id: FullTileOverlayGreyscale - decals: - 272: 26,-8 - 273: 30,-7 - 897: 16,33 - 898: 15,28 - - node: - color: '#D381C996' - id: FullTileOverlayGreyscale - decals: - 363: 15,-22 - 364: 15,-21 - 365: 19,-22 - 366: 19,-21 - 397: 30,-26 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 297: 30,1 - 444: -5,-26 - 445: -3,-31 - 559: -33,17 - 560: -35,13 - 612: -27,28 - 613: -31,28 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 737: -50,-11 - 738: -52,-13 - 739: -47,-13 - 759: -41,-10 - 760: -44,-13 - 766: -47,-10 - 767: -47,-9 - 768: -47,-8 - 769: -47,-7 - - node: - color: '#FFDB9895' - id: FullTileOverlayGreyscale - decals: - 462: -11,-18 - 463: -11,-17 - 464: -12,-17 - 465: -11,-16 - 466: -10,-17 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassa4 - decals: - 846: 14.0471115,-39.042297 - 849: 13.9846115,-43.011047 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassa5 - decals: - 848: 3.9064865,-36.901672 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb1 - decals: - 847: 3.9377365,-39.073547 - 851: 13.4377365,-40.948547 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb2 - decals: - 852: 14.1408615,-40.964172 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb3 - decals: - 853: 13.1408615,-43.026672 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb4 - decals: - 1036: -44,-28 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb5 - decals: - 1037: -44,-30 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassc2 - decals: - 856: 13.63825,-42.897484 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassc3 - decals: - 855: 13.88825,-41.03811 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassc4 - decals: - 854: 14.089525,-39.057083 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 20: -8.810993,-9.335041 - - node: - color: '#FFFFFFFF' - id: Grassd2 - decals: - 46: 7.909272,21.016895 - 323: -8.91927,-49.011467 - 329: -13.966697,-45.902092 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 21: -7.826618,-9.960041 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 44: 6.049897,21.0706 - 45: 6.784272,21.079395 - 321: -8.936016,-46.30113 - 331: -13.997947,-48.558342 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 22: -7.045368,-10.022541 - 322: -9.029766,-47.11363 - 330: -13.997947,-47.558342 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 104: -3,20 - 105: -2,20 - 106: -4,20 - 862: 25,1 - 1266: -20,-29 - 1267: -21,-29 - 1268: -22,-29 - 1269: -23,-29 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 1184: -10,-23 - 1185: -12,-23 - 1189: -11,-24 - 1213: -17,-27 - 1214: -16,-27 - 1215: -15,-27 - 1216: -14,-27 - 1217: -21,-27 - 1218: -22,-27 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 136: 17,15 - 154: 16,21 - 155: 15,21 - 165: 19,19 - 166: 18,19 - 171: 19,21 - 267: 30,-8 - 268: 29,-8 - 269: 28,-8 - 890: 16,35 - 891: 16,32 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale - decals: - 639: -40,-34 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 389: 6,-15 - 390: 5,-15 - 391: 4,-15 - 392: 3,-15 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale - decals: - 6: -22,-10 - 7: -23,-10 - 187: 10,46 - 198: 6,46 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 294: 28,4 - 295: 29,4 - 296: 30,4 - 432: -3,-25 - 551: -35,17 - 600: -27,32 - 601: -28,32 - 602: -29,32 - 603: -30,32 - 604: -31,32 - 605: -32,32 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 626: -19,11 - 627: -20,11 - 681: -30,5 - 683: -32,3 - 684: -33,3 - 685: -34,3 - 686: -35,3 - 707: -31,-7 - 708: -32,-7 - 709: -33,-7 - 771: -45,-6 - 772: -44,-6 - 773: -43,-6 - 774: -42,-6 - 775: -39,-6 - 776: -40,-6 - 777: -41,-6 - 778: -43,-2 - 779: -44,-2 - 780: -45,-2 - 781: -46,-2 - 877: -48,-12 - 878: -49,-12 - 879: -50,-12 - 880: -51,-12 - 917: 24,1 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale - decals: - 450: -10,-15 - 451: -11,-15 - 452: -12,-15 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 1262: -20,-26 - 1263: -22,-26 - 1264: -21,-26 - 1265: -23,-26 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 1186: -10,-22 - 1187: -12,-22 - 1188: -11,-21 - 1219: -14,-28 - 1220: -15,-28 - 1221: -16,-28 - 1222: -17,-28 - 1223: -21,-28 - 1224: -22,-28 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 159: 15,17 - 160: 16,17 - 161: 17,17 - 162: 18,17 - 163: 19,17 - 176: 17,13 - 264: 28,-10 - 265: 29,-10 - 266: 30,-10 - 889: 16,29 - 892: 16,34 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale180 - decals: - 644: -40,-36 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 393: 6,-19 - 394: 5,-19 - 395: 4,-19 - 396: 3,-19 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale180 - decals: - 4: -23,-7 - 5: -22,-7 - 188: 10,44 - 194: 6,44 - 201: 10,48 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 289: 30,2 - 290: 29,2 - 291: 28,2 - 435: -3,-30 - 552: -35,14 - 606: -32,29 - 607: -31,29 - 608: -30,29 - 609: -29,29 - 610: -28,29 - 611: -27,29 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 622: -19,8 - 623: -20,8 - 665: -35,1 - 666: -34,1 - 667: -33,1 - 668: -32,1 - 669: -31,1 - 670: -30,1 - 671: -29,1 - 710: -31,-9 - 711: -32,-9 - 712: -33,-9 - 752: -44,-9 - 753: -43,-9 - 754: -42,-9 - 755: -41,-9 - 756: -40,-9 - 757: -39,-9 - 874: -53,-14 - 875: -55,-14 - 876: -48,-14 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale180 - decals: - 459: -10,-19 - 460: -11,-19 - 461: -12,-19 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 1102: -1,31 - 1103: -1,32 - 1104: -1,33 - 1105: -1,34 - 1106: -4,31 - 1107: -4,32 - 1108: -4,33 - 1109: -4,34 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 1292: -27,-24 - 1293: -27,-23 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 156: 14,20 - 157: 14,19 - 158: 14,18 - 172: 14,25 - 173: 14,26 - 174: 14,27 - 175: 14,23 - 271: 27,-9 - 893: 15,30 - 894: 15,31 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale270 - decals: - 637: -41,-35 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 340: 8,-25 - 367: 20,-22 - 368: 20,-21 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale270 - decals: - 9: -21,-9 - 10: -21,-8 - 183: 13,45 - 186: 9,45 - 200: 5,45 - 206: 8,51 - 207: 8,52 - 208: 8,53 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 293: 27,3 - 436: -4,-29 - 437: -4,-28 - 438: -4,-27 - 439: -4,-26 - 515: -30,13 - 516: -30,15 - 517: -30,17 - 518: -30,19 - 525: -28,16 - 526: -28,19 - 543: -32,11 - 545: -32,18 - 546: -32,19 - 547: -32,20 - 555: -36,15 - 556: -36,16 - 592: -32,26 - 593: -32,27 - 594: -28,26 - 595: -28,27 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 677: -31,5 - 678: -31,4 - 706: -34,-8 - 742: -46,-14 - 743: -46,-13 - 744: -46,-12 - 745: -46,-11 - 761: -46,-10 - 762: -46,-9 - 763: -46,-8 - 764: -46,-7 - 765: -46,-6 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale270 - decals: - 453: -13,-18 - 454: -13,-17 - 455: -13,-16 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 1094: -5,31 - 1095: -5,32 - 1096: -5,33 - 1097: -5,34 - 1098: -2,31 - 1099: -2,32 - 1100: -2,33 - 1101: -2,34 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 164: 20,18 - 168: 17,20 - 169: 20,20 - 270: 31,-9 - 895: 17,30 - 896: 17,31 - 905: 20,26 - 906: 20,25 - 907: 20,27 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale90 - decals: - 643: -39,-35 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 345: 9,-26 - 398: 29,-26 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale90 - decals: - 14: -24,-9 - 15: -24,-8 - 184: 15,45 - 185: 11,45 - 196: 7,45 - 209: 12,51 - 210: 12,52 - 211: 12,53 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 292: 31,3 - 440: -2,-29 - 441: -2,-28 - 442: -2,-27 - 443: -2,-26 - 557: -34,15 - 558: -34,16 - 596: -26,26 - 597: -26,27 - 598: -30,26 - 599: -30,27 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 624: -18,9 - 625: -18,10 - 673: -29,2 - 674: -29,3 - 675: -29,4 - 676: -29,5 - 705: -30,-8 - 746: -45,-14 - 747: -45,-13 - 748: -45,-12 - 749: -45,-11 - 750: -45,-10 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale90 - decals: - 456: -9,-18 - 457: -9,-17 - 458: -9,-16 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 55: 5,21 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 143: 22,15 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 54: 9,21 - 695: -35,3 - 696: -34,3 - 697: -33,3 - 698: -32,3 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 83: -9,22 - 84: -9,23 - 85: -9,24 - 86: -9,25 - 87: -9,26 - 88: -9,27 - 89: -9,28 - 90: -9,29 - 91: -9,30 - 92: -11,20 - 93: -12,20 - 94: -13,20 - 95: -14,20 - 96: -15,20 - 97: -16,20 - 107: -1,20 - 111: 2,22 - 112: 2,23 - 113: 2,24 - 114: 2,25 - 115: 2,26 - 116: 2,27 - 117: 2,28 - 118: 2,29 - 119: 2,30 - 1116: -2,31 - 1117: -3,32 - 1120: -2,32 - 1121: -3,33 - 1122: 0,33 - 1123: 0,32 - 1124: 1,33 - 1130: -6,33 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 469: -7,-16 - 470: -7,-17 - 471: -7,-18 - 472: -7,-19 - 473: -7,-20 - 491: -17,-12 - 492: -15,-12 - 493: -13,-12 - 494: -11,-12 - 495: -9,-12 - 496: -7,-12 - 1270: -7,-21 - 1301: -17,-16 - 1341: -12,-56 - 1342: -12,-55 - 1343: -12,-54 - 1344: -12,-53 - 1345: -12,-52 - 1346: -12,-51 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 486: -8,-12 - 487: -10,-12 - 488: -14,-12 - 489: -16,-12 - 490: -18,-12 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 133: 14,15 - 134: 15,15 - 135: 16,15 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale - decals: - 638: -41,-34 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 339: 8,-24 - 372: 14,-28 - 795: 8,-34 - 796: 8,-35 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 8: -21,-10 - 1136: 1,20 - 1137: 0,20 - 1406: -28,-1 - 1407: -27,-1 - 1408: -27,0 - 1409: -27,1 - 1410: -27,2 - 1411: -27,3 - 1412: -27,4 - 1413: -27,5 - 1420: -27,7 - 1421: -27,8 - 1422: -26,8 - 1423: -25,8 - 1424: -24,8 - 1425: -24,9 - 1426: -20,20 - 1427: -19,20 - 1428: -18,20 - 1429: -17,20 - 1430: 11,-1 - 1431: 11,-2 - 1432: 11,-3 - 1433: 11,-4 - 1434: 11,-5 - 1435: 11,-6 - 1436: 11,-7 - 1437: 11,-8 - 1438: 11,-9 - 1439: 11,-10 - 1440: -6,-12 - 1447: 7,-12 - 1448: 8,-12 - 1449: 9,-12 - 1450: 10,-12 - 1451: 11,-12 - 1452: 0,-16 - 1453: 0,-17 - 1454: 0,-18 - 1455: 0,-19 - 1456: 0,-20 - 1457: 0,-21 - 1458: 0,-22 - 1459: -1,-22 - 1460: -2,-22 - 1508: -12,-35 - 1509: -11,-35 - 1510: -10,-35 - 1511: -9,-35 - 1512: -8,-35 - 1516: -4,-35 - 1517: -5,-35 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale - decals: - 1311: -12,-45 - 1312: -12,-44 - 1313: -12,-43 - 1314: -12,-42 - 1315: -12,-41 - 1316: -12,-40 - 1317: -12,-39 - 1318: -12,-38 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 502: -24,10 - 503: -24,11 - 504: -24,12 - 505: -24,13 - 506: -24,14 - 507: -24,16 - 508: -24,17 - 509: -24,18 - 510: -24,19 - 511: -24,20 - 512: -23,20 - 513: -22,20 - 514: -21,20 - 524: -30,11 - 527: -27,20 - 528: -27,17 - 544: -32,17 - 616: -26,10 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 628: -21,10 - 680: -29,5 - 682: -31,3 - 784: -46,-4 - 785: -46,-3 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 1114: -4,34 - 1115: -3,33 - 1118: -3,32 - 1119: -4,33 - 1132: -6,33 - 1133: 0,33 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 485: -21,-13 - 1298: -27,-24 - 1299: -27,-23 - 1303: -15,-19 - 1353: -11,-38 - 1354: -11,-39 - 1355: -11,-40 - 1356: -11,-41 - 1357: -11,-42 - 1358: -11,-43 - 1359: -11,-44 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 139: 12,14 - 140: 12,13 - 180: 18,13 - 181: 19,13 - 182: 20,13 - 909: 20,28 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale180 - decals: - 642: -39,-36 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 346: 9,-29 - 347: 9,-28 - 348: 9,-27 - 351: 9,-22 - 352: 10,-22 - 353: 11,-22 - 354: 12,-22 - 355: 13,-22 - 356: 14,-22 - 369: 15,-29 - 378: 1,-14 - 379: 2,-13 - 380: 3,-13 - 381: 4,-13 - 382: 5,-13 - 383: 7,-13 - 384: 1,-23 - 385: 1,-24 - 386: 1,-25 - 400: 29,-25 - 497: 1,-13 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 12: -24,-7 - 1146: -1,16 - 1147: 0,16 - 1148: 0,17 - 1149: 0,18 - 1150: 0,19 - 1151: 2,19 - 1152: 1,19 - 1153: 3,19 - 1154: 12,12 - 1155: 12,11 - 1156: 12,10 - 1157: 12,9 - 1158: 12,8 - 1159: 12,7 - 1160: 12,6 - 1161: 12,5 - 1523: -4,-36 - 1524: -5,-36 - 1525: -6,-36 - 1526: -7,-36 - 1527: -8,-36 - 1528: -9,-36 - 1529: -10,-36 - 1530: -11,-36 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale180 - decals: - 1327: -11,-56 - 1328: -11,-55 - 1329: -11,-54 - 1330: -11,-53 - 1331: -11,-52 - 1332: -11,-51 - 1333: -11,-50 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 519: -31,18 - 520: -31,20 - 521: -31,16 - 522: -31,14 - 523: -31,12 - 533: -26,16 - 534: -26,19 - 535: -29,18 - 536: -29,15 - 537: -29,13 - 614: -27,11 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 751: -45,-9 - 790: -33,-4 - 791: -32,-4 - 792: -31,-4 - 793: -30,-4 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 1112: -2,32 - 1113: -3,33 - 1128: 0,33 - 1129: -6,33 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 467: -7,-13 - 468: -7,-14 - 474: -7,-25 - 475: -7,-26 - 476: -7,-27 - 477: -7,-28 - 478: -7,-29 - 479: -8,-13 - 480: -9,-13 - 481: -10,-13 - 482: -11,-13 - 483: -13,-13 - 484: -19,-13 - 1271: -7,-24 - 1304: -17,-19 - 1360: -12,-44 - 1361: -12,-43 - 1362: -12,-42 - 1363: -12,-41 - 1364: -12,-40 - 1365: -12,-39 - 1366: -12,-38 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 177: 16,13 - 178: 15,13 - 179: 14,13 - 274: 30,-6 - 275: 29,-6 - 276: 28,-6 - 277: 27,-6 - 278: 24,-8 - 279: 24,-6 - 280: 24,-4 - 281: 22,-4 - 282: 20,-4 - 283: 18,-4 - 284: 16,-4 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale270 - decals: - 641: -41,-36 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 334: 4,-22 - 335: 5,-22 - 336: 6,-22 - 337: 7,-22 - 338: 8,-22 - 341: 8,-29 - 342: 8,-28 - 343: 8,-27 - 344: 8,-26 - 371: 14,-29 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale270 - decals: - 11: -21,-7 - 1138: -5,16 - 1139: -6,16 - 1140: -6,17 - 1141: -6,18 - 1142: -6,19 - 1143: -7,19 - 1144: -8,19 - 1145: -9,19 - 1162: -7,-30 - 1163: -7,-31 - 1164: -7,-32 - 1165: -7,-33 - 1398: -27,-10 - 1399: -27,-9 - 1400: -27,-8 - 1401: -27,-7 - 1402: -27,-6 - 1403: -27,-5 - 1404: -27,-4 - 1405: -28,-4 - 1518: -2,-36 - 1519: -1,-36 - 1520: 0,-36 - 1521: 1,-36 - 1522: 2,-36 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale270 - decals: - 1334: -12,-56 - 1335: -12,-55 - 1336: -12,-54 - 1337: -12,-53 - 1338: -12,-52 - 1339: -12,-51 - 1340: -12,-50 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 308: 24,-2 - 309: 24,0 - 531: -27,16 - 532: -27,19 - 542: -32,10 - 548: -32,15 - 615: -26,11 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 629: -21,9 - 758: -38,-9 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 74: 3,22 - 75: 3,23 - 76: 3,24 - 77: 3,25 - 78: 3,26 - 79: 3,27 - 80: 3,28 - 81: 3,29 - 82: 3,30 - 98: 5,20 - 99: 6,20 - 100: 7,20 - 101: 8,20 - 102: 9,20 - 103: 10,20 - 108: -5,20 - 120: -8,22 - 121: -8,23 - 122: -8,24 - 123: -8,25 - 124: -8,26 - 125: -8,27 - 126: -8,28 - 127: -8,29 - 128: -8,30 - 1110: -4,33 - 1111: -3,32 - 1125: -6,32 - 1126: -6,33 - 1127: -7,33 - 1131: 0,33 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 1302: -15,-16 - 1347: -11,-56 - 1348: -11,-55 - 1349: -11,-54 - 1350: -11,-53 - 1351: -11,-52 - 1352: -11,-51 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 129: 12,20 - 130: 12,18 - 131: 12,17 - 132: 12,15 - 137: 18,15 - 138: 19,15 - 167: 17,19 - 908: 20,24 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale90 - decals: - 640: -39,-34 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 349: 9,-25 - 350: 9,-24 - 370: 15,-28 - 373: 1,-20 - 374: 1,-19 - 375: 1,-18 - 376: 1,-17 - 377: 1,-16 - 387: 1,-30 - 388: 1,-29 - 399: 29,-27 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale90 - decals: - 13: -24,-10 - 1134: -6,20 - 1135: -7,20 - 1276: 1,-31 - 1277: 2,-31 - 1278: 2,-32 - 1279: 2,-33 - 1414: -19,2 - 1415: -20,2 - 1416: -21,2 - 1417: -22,2 - 1418: -23,2 - 1419: -24,2 - 1441: 0,-12 - 1442: 1,-12 - 1443: 2,-12 - 1444: 3,-12 - 1445: 4,-12 - 1446: 5,-12 - 1461: -4,-22 - 1462: -5,-22 - 1463: -6,-22 - 1464: -6,-21 - 1465: -6,-20 - 1466: -6,-19 - 1467: -6,-18 - 1468: -6,-17 - 1469: -6,-16 - 1513: 2,-35 - 1514: -1,-35 - 1515: -2,-35 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale90 - decals: - 1319: -11,-38 - 1320: -11,-39 - 1321: -11,-40 - 1322: -11,-41 - 1323: -11,-42 - 1324: -11,-43 - 1325: -11,-44 - 1326: -11,-45 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 298: 27,0 - 299: 28,0 - 300: 29,0 - 301: 30,0 - 302: 23,-3 - 303: 21,-3 - 304: 19,-3 - 305: 17,-3 - 306: 15,-3 - 307: 25,-1 - 529: -26,20 - 530: -26,17 - 538: -29,12 - 539: -29,14 - 540: -29,17 - 541: -29,20 - 617: -27,10 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 672: -29,1 - 679: -31,5 - 770: -46,-6 - 782: -43,-3 - 783: -43,-4 - 786: -33,-1 - 787: -32,-1 - 788: -31,-1 - 789: -30,-1 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Rock03 - decals: - 1034: -45,-28 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Rock04 - decals: - 1035: -44,-27 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 947: -6,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 948: -5,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 949: -4,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 950: -3,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 951: -2,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 952: -1,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 953: 0,-13 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1231: -23,-27 - 1232: -18,-27 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 0: -23,-8 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 153: 14,21 - 260: 27,-8 - 882: 15,32 - 888: 15,35 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 794: 8,-33 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale - decals: - 189: 9,46 - 199: 5,46 - 213: 8,54 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 286: 27,4 - 430: -4,-25 - 550: -36,17 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 618: -21,11 - 702: -34,-7 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale - decals: - 447: -13,-15 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1229: -13,-28 - 1230: -20,-28 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1: -22,-9 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 150: 20,17 - 262: 31,-10 - 881: 17,29 - 887: 17,34 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 191: 11,44 - 195: 7,44 - 203: 11,48 - 204: 12,50 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 288: 31,2 - 434: -2,-30 - 553: -34,14 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 621: -18,8 - 704: -30,-9 - 741: -45,-15 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 448: -9,-19 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1227: -23,-28 - 1228: -18,-28 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 149: 14,17 - 263: 27,-10 - 884: 15,29 - 885: 15,34 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3: -23,-9 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 192: 9,44 - 193: 5,44 - 202: 9,48 - 205: 8,50 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 285: 27,2 - 433: -4,-30 - 554: -36,14 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 620: -21,8 - 701: -34,-9 - 740: -46,-15 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 446: -13,-19 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1225: -13,-27 - 1226: -20,-27 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 151: 20,19 - 152: 17,21 - 170: 20,21 - 261: 31,-8 - 883: 17,32 - 886: 17,35 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2: -22,-8 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 190: 11,46 - 197: 7,46 - 212: 12,54 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 287: 31,4 - 431: -2,-25 - 549: -34,17 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 619: -18,11 - 703: -30,-7 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 449: -9,-15 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 1023: -9,-44 - 1024: -14,-44 - 1025: -14,-51 - 1026: -9,-51 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 222: 11,46 - 225: 7,46 - 653: -34,-34 - 659: -36,-8 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 402: 19,-24 - 720: -41,-2 - - node: - color: '#FFFFFFFF' - id: WarnCorner - decals: - 221: 9,44 - 226: 5,44 - 650: -35,-35 - 656: -37,-10 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 723: -39,-4 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 223: 9,46 - 224: 5,46 - 652: -35,-34 - 658: -37,-8 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 403: 19,-26 - 719: -41,-4 - - node: - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 33: -21,-4 - 220: 11,44 - 227: 7,44 - 651: -34,-35 - 657: -36,-10 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 722: -39,-2 - - node: - color: '#52B4E996' - id: WarnCornerGreyscaleSW - decals: - 1174: -13,-24 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 1235: -15,-29 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 932: 21,5 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 929: 25,1 - 931: 23,5 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 935: 23,3 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 934: 25,3 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnEnd - decals: - 43: 7,16 - - node: - color: '#FFFFFFFF' - id: WarnEnd - decals: - 42: 7,15 - - node: - color: '#52B4E996' - id: WarnFullGreyscale - decals: - 1168: -8,-23 - 1169: -8,-22 - 1190: -13,-25 - 1191: -14,-23 - 1192: -14,-22 - 1193: -10,-25 - 1238: -17,-25 - 1239: -19,-28 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 921: 23,7 - 922: 23,8 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleE - decals: - 1166: -9,-23 - 1167: -9,-22 - 1241: -15,-23 - 1242: -15,-22 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 1498: -6,-28 - 1499: -6,-26 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - decals: - 1274: 1,-22 - 1275: 1,-21 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleN - decals: - 1178: -10,-21 - 1179: -12,-21 - 1257: -16,-21 - 1258: -20,-21 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleN - decals: - 1497: -3,-32 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 1598: -41,-11 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleS - decals: - 1177: -10,-24 - 1240: -17,-24 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleW - decals: - 1175: -13,-23 - 1176: -13,-22 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - decals: - 1272: -7,-23 - 1273: -7,-22 - 1597: -43,-13 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 925: 21,7 - 926: 22,7 - 927: 23,7 - 933: 24,3 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 923: 21,7 - 924: 21,8 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 918: 21,8 - 919: 22,8 - 920: 23,8 - 928: 24,1 - 930: 22,5 - 1236: -14,-29 - 1237: -13,-29 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 61: -2,23 - 62: -3,23 - 63: -4,23 - 217: 15,44 - 218: 14,44 - 219: 13,44 - 257: 10,50 - 584: -34,21 - 585: -35,21 - 586: -36,21 - 587: -37,21 - 871: -53,-12 - 872: -54,-12 - 873: -55,-12 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 38: 9,14 - 39: 9,15 - 40: 9,16 - 41: 9,17 - 64: -2,26 - 66: 0,22 - 67: 0,23 - 68: 0,24 - 69: 0,25 - 235: 8,49 - 236: 8,50 - 237: 8,51 - 238: 8,52 - 239: 8,53 - 240: 8,54 - 241: 8,55 - 252: 11,53 - 314: 31,-6 - 315: 31,-5 - 316: 31,-4 - 317: 31,-3 - 318: 31,-2 - 319: 31,-1 - 320: 31,0 - 401: 19,-25 - 404: 27,-30 - 414: 3,-28 - 415: 3,-27 - 416: 3,-26 - 645: -38,-36 - 646: -38,-35 - 647: -38,-34 - 660: -37,1 - 661: -37,2 - 662: -37,3 - 663: -37,4 - 664: -37,5 - 718: -41,-3 - - node: - color: '#FFFFFFFF' - id: WarningLine - decals: - 31: -23,-4 - 32: -22,-4 - 144: 24,16 - 145: 23,16 - 146: 22,16 - 214: 15,46 - 215: 14,46 - 216: 13,46 - 242: 13,50 - 243: 7,50 - 258: 9,56 - 259: 11,56 - 407: 27,-27 - 408: 28,-27 - 409: 29,-27 - 426: 23,-23 - 427: 24,-23 - 428: 25,-23 - 429: 26,-23 - 498: -34,19 - 499: -35,19 - 500: -36,19 - 501: -37,19 - 590: -30,22 - 591: -31,22 - 724: -43,-4 - 725: -44,-4 - 726: -45,-4 - 727: -46,-4 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarningLine - decals: - 858: 26,-37 - 859: 25,-37 - 860: 24,-37 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 34: 5,14 - 35: 5,15 - 36: 5,16 - 37: 5,17 - 65: -4,26 - 70: -6,22 - 71: -6,23 - 72: -6,24 - 73: -6,25 - 228: 12,49 - 229: 12,50 - 230: 12,51 - 231: 12,52 - 232: 12,53 - 233: 12,54 - 234: 12,55 - 253: 9,53 - 411: 1,-28 - 412: 1,-27 - 413: 1,-26 - 417: 3,-22 - 418: 3,-21 - 721: -39,-3 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 244: 13,54 - 245: 7,54 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 406: 27,-29 - - node: - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 410: 26,-27 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 405: 27,-31 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 972: -27,-17 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 978: -11,-2 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 977: -8,-2 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 969: -30,-17 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 958: -16,22 - 959: -16,23 - 960: -16,24 - 966: -30,-20 - 967: -30,-19 - 968: -30,-18 - 973: -27,-16 - 974: -27,-15 - 982: -11,-1 - 983: -11,0 - 984: -11,1 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 975: -10,-2 - 976: -9,-2 - 1014: -30,-39 - 1015: -31,-39 - 1016: -32,-39 - 1017: -27,-37 - 1018: -28,-37 - 1019: -26,-37 - 1020: -25,-37 - 1021: -24,-37 - 1022: -23,-37 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 954: -23,25 - 955: -22,25 - 956: -21,25 - 957: -20,25 - 961: 5,26 - 962: 6,26 - 963: 7,26 - 964: 8,26 - 965: 9,26 - 970: -29,-17 - 971: -28,-17 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 979: -8,-1 - 980: -8,0 - 981: -8,1 - - node: - cleanable: True - color: '#761C0C44' - id: splatter - decals: - 797: 13.502298,-42.657906 - 798: 4.171296,-34.3466 - - node: - cleanable: True - color: '#79150050' - id: splatter - decals: - 861: 27.509422,-40.416092 - - node: - cleanable: True - color: '#9FED5812' - id: splatter - decals: - 799: 13.296297,-42.144028 - 800: 3.8275461,-36.737778 - - type: GridAtmosphere - version: 2 - data: - tiles: - -2,-1: - 0: 65535 - -1,-3: - 0: 65535 - -1,-1: - 0: 65535 - -1,-2: - 0: 65535 - -2,1: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 62271 - 1: 3264 - 0,-1: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 61441 - 1: 4094 - 1,-1: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 0,0: - 0: 65535 - 1,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 0,4: - 0: 65535 - -1,4: - 0: 65535 - -2,0: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -1,5: - 0: 65535 - 0,5: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 0,-4: - 0: 65535 - 1,-4: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -1,-4: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,6: - 0: 63487 - 2: 2048 - -2,7: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - -3,8: - 0: 56829 - -2,8: - 0: 65535 - -2,9: - 0: 3999 - -1,8: - 0: 65535 - -1,9: - 0: 3983 - 0,8: - 0: 65535 - 0,9: - 0: 22471 - 1,8: - 0: 22015 - -7,4: - 0: 65535 - -7,5: - 0: 65535 - -7,3: - 0: 65535 - -4,9: - 0: 240 - -4,8: - 0: 503 - -3,9: - 0: 241 - 0,10: - 0: 57309 - 0,11: - 0: 65518 - 1,9: - 0: 17652 - 1,10: - 0: 62543 - 1,11: - 0: 65535 - 2,8: - 0: 52476 - 2,9: - 0: 17660 - 2,10: - 0: 65519 - 2,11: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 3839 - 3,10: - 0: 65535 - 3,11: - 0: 65535 - 4,8: - 0: 65535 - 4,9: - 0: 8191 - 4,10: - 0: 13297 - 4,11: - 0: 65407 - 5,8: - 0: 30719 - 5,9: - 0: 32631 - 5,10: - 0: 10103 - 5,11: - 0: 15 - 6,8: - 0: 30511 - 6,9: - 0: 32631 - 6,10: - 0: 10103 - 6,11: - 0: 15 - 7,8: - 0: 30511 - 7,9: - 0: 32631 - 7,10: - 0: 10103 - 7,11: - 0: 15 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,4: - 0: 30719 - 5,5: - 0: 65399 - 5,6: - 0: 65535 - 5,7: - 0: 30719 - 6,4: - 0: 255 - 7,4: - 0: 1 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,2: - 0: 62805 - 6,3: - 0: 65535 - 7,3: - 0: 4369 - 8,8: - 0: 4369 - 8,9: - 0: 4369 - 8,10: - 0: 4369 - 8,11: - 0: 1 - 0,12: - 0: 61439 - 0,13: - 0: 52430 - 0,14: - 0: 2188 - 1,12: - 0: 65535 - 1,13: - 0: 65535 - 1,14: - 0: 65535 - 1,15: - 0: 12 - 2,12: - 0: 65535 - 2,13: - 0: 65535 - 2,14: - 0: 65535 - 2,15: - 0: 255 - 3,12: - 0: 65535 - 3,13: - 0: 65535 - 3,14: - 0: 14335 - 3,15: - 0: 1 - 4,12: - 0: 65535 - 4,13: - 0: 30591 - 4,14: - 0: 19 - 5,12: - 0: 4401 - -5,9: - 0: 1783 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 56831 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -8,-4: - 0: 65535 - -8,-3: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 24575 - 7,0: - 0: 65535 - 7,1: - 0: 32767 - -8,8: - 0: 65535 - -8,9: - 0: 52991 - -7,8: - 0: 65535 - -7,9: - 0: 29687 - -6,8: - 0: 52701 - -6,9: - 0: 248 - -5,8: - 0: 65535 - 8,0: - 0: 30583 - 8,1: - 0: 13107 - 8,-4: - 0: 4096 - 8,-3: - 0: 29491 - 8,-2: - 0: 30583 - 8,-1: - 0: 29491 - 4,-4: - 0: 65535 - 4,-3: - 0: 64255 - 4,-2: - 0: 64511 - 4,-1: - 0: 65535 - 5,-4: - 0: 30591 - 5,-3: - 0: 65143 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 61679 - 6,-3: - 0: 65519 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 49171 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - -4,-10: - 0: 65484 - -4,-9: - 0: 65535 - -4,-12: - 0: 61166 - -4,-11: - 0: 52462 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 61183 - -2,-10: - 0: 63244 - -2,-9: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 65535 - -1,-10: - 0: 61455 - -1,-9: - 0: 65535 - 0,-12: - 0: 13107 - 0,-11: - 0: 48059 - 0,-10: - 0: 65485 - 0,-9: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - -4,-13: - 0: 61166 - -4,-15: - 0: 52430 - -4,-14: - 0: 52428 - -3,-14: - 0: 65535 - -3,-13: - 0: 65535 - -3,-15: - 0: 65535 - -2,-13: - 0: 65535 - -2,-14: - 0: 61064 - -1,-15: - 0: 28672 - -1,-14: - 0: 65535 - -1,-13: - 0: 65535 - 0,-14: - 0: 13056 - 0,-13: - 0: 13107 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 13119 - 3: 52416 - 5,-7: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-8: - 0: 56543 - 3: 8992 - 6,-7: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 30719 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: - 0: 7 - 9,-8: - 0: 65535 - 9,-7: - 0: 65535 - 9,-6: - 0: 4991 - 10,-8: - 0: 4340 - 10,-7: - 0: 273 - 8,-10: - 0: 65535 - 8,-9: - 0: 65535 - 4,-10: - 0: 65535 - 4,-9: - 0: 65535 - 5,-10: - 0: 65535 - 5,-9: - 0: 65535 - 6,-10: - 0: 65535 - 6,-9: - 0: 65535 - 7,-10: - 0: 65535 - 7,-9: - 0: 65535 - -9,-4: - 0: 65535 - -9,-7: - 0: 65535 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - -8,-7: - 0: 65535 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -8,-8: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 - -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - -8,-10: - 0: 65535 - -8,-9: - 0: 65535 - -7,-10: - 0: 65535 - -7,-9: - 0: 65535 - -7,-11: - 0: 63248 - -6,-11: - 0: 61440 - -6,-10: - 0: 65535 - -6,-9: - 0: 65535 - -5,-11: - 0: 12288 - -5,-10: - 0: 65331 - -5,-9: - 0: 65535 - -10,8: - 0: 2286 - -9,8: - 0: 65535 - -9,9: - 0: 142 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,7: - 0: 65535 - -9,6: - 0: 65535 - -11,1: - 0: 65535 - -11,2: - 0: 65535 - -11,3: - 0: 49151 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -8,0: - 0: 65535 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - 1,-12: - 0: 65152 - 1,-11: - 0: 65535 - 2,-12: - 0: 65520 - 2,-11: - 0: 65535 - 3,-12: - 0: 65296 - 3,-11: - 0: 65535 - 11,-8: - 0: 244 - 8,-11: - 0: 65523 - 9,-11: - 0: 13296 - 9,-10: - 0: 63347 - 9,-9: - 0: 63351 - 10,-11: - 0: 58608 - 10,-10: - 0: 65262 - 10,-9: - 0: 61166 - 11,-11: - 0: 58608 - 11,-10: - 0: 65262 - 11,-9: - 0: 61166 - 4,-12: - 0: 65280 - 4,-11: - 0: 65535 - 5,-12: - 0: 65280 - 5,-11: - 0: 65535 - 6,-12: - 0: 61440 - 6,-11: - 0: 65535 - 7,-11: - 0: 65535 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 65535 - -11,-4: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -11,-1: - 0: 65535 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -10,-1: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -12,-8: - 0: 65516 - -12,-7: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - -11,-8: - 0: 65535 - -11,-7: - 0: 65535 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-8: - 0: 65535 - -10,-7: - 0: 65535 - -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -9,-8: - 0: 65535 - -8,-12: - 0: 30512 - -8,-11: - 0: 65535 - -12,4: - 0: 3618 - 3: 204 - -11,4: - 3: 17 - 0: 35754 - -11,5: - 0: 52424 - -11,6: - 0: 52428 - -11,7: - 0: 2184 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -12,2: - 0: 65535 - -12,3: - 0: 61439 - -11,0: - 0: 65535 - -10,0: - 0: 65535 - -9,0: - 0: 65535 - -12,-9: - 0: 32768 - -11,-9: - 0: 65516 - -11,-10: - 0: 51200 - -10,-10: - 0: 65531 - -10,-9: - 0: 65535 - -9,-11: - 0: 65228 - -9,-10: - 0: 65535 - -9,-9: - 0: 65535 - -9,-12: - 0: 32768 - -14,0: - 0: 16191 - 4: 192 - 5: 49152 - -14,1: - 0: 16191 - 3: 49344 - -14,2: - 0: 16191 - 6: 192 - 3: 49152 - -14,3: - 0: 49407 - -13,0: - 0: 61423 - 4: 16 - 5: 4096 - -13,1: - 0: 61423 - 3: 4112 - -13,2: - 0: 61423 - 6: 16 - 3: 4096 - -13,3: - 0: 31999 - -15,-4: - 0: 61132 - -15,-3: - 0: 61166 - -15,-2: - 0: 2254 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -14,-1: - 0: 61448 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 64751 - -16,-8: - 0: 61440 - -16,-7: - 0: 56792 - -16,-6: - 0: 56829 - -16,-5: - 0: 63709 - -15,-8: - 0: 61440 - -15,-7: - 0: 39320 - -15,-6: - 0: 6649 - -15,-5: - 0: 39057 - -14,-8: - 0: 61440 - -14,-7: - 0: 65256 - -14,-6: - 0: 61439 - -14,-5: - 0: 65535 - -13,-8: - 0: 61440 - -13,-7: - 0: 65528 - -13,-6: - 0: 65535 - -13,-5: - 0: 65535 - -18,-8: - 0: 61440 - -18,-7: - 0: 56793 - -18,-6: - 0: 56829 - -18,-5: - 0: 63965 - -17,-8: - 0: 61440 - -17,-7: - 0: 56792 - -17,-6: - 0: 56829 - -17,-5: - 0: 63709 - 12,-11: - 0: 58608 - 12,-10: - 0: 65262 - 12,-9: - 0: 61166 - 13,-11: - 0: 8752 - 13,-10: - 0: 12834 - 13,-9: - 0: 8738 - 12,-8: - 0: 244 - 13,-8: - 0: 50 - -15,0: - 0: 17484 - -15,1: - 0: 17484 - -15,2: - 0: 17484 - -15,3: - 0: 12 - -15,-1: - 0: 16384 - -14,4: - 0: 192 - -13,4: - 0: 116 - -2,-15: - 0: 1 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.554012 - - 81.084145 - - 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 - - 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 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: BecomesStation - id: Omega - - type: OccluderTree - - type: Shuttle - - type: RadiationGridResistance - - type: GravityShake - shakeTimes: 10 - - type: GasTileOverlay - - type: SpreaderGrid - - type: GridPathfinding -- proto: AcousticGuitarInstrument - entities: - - uid: 1755 - components: - - type: Transform - pos: -10.386757,8.623476 - parent: 4812 -- proto: AdvancedMatterBinStockPart - entities: - - uid: 6200 - components: - - type: Transform - pos: 7.405039,-15.314831 - parent: 4812 - - uid: 6201 - components: - - type: Transform - pos: 7.701914,-15.330456 - parent: 4812 -- proto: AirAlarm - entities: - - uid: 4981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-20.5 - parent: 4812 - - type: DeviceList - devices: - - 6621 - - 5047 - - 6553 - - 8806 - - 5025 - - 6554 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 4982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-18.5 - parent: 4812 - - type: DeviceList - devices: - - 4941 - - 4875 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 6692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 7234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 4812 - - type: DeviceList - devices: - - 4890 - - 4876 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 7236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-28.5 - parent: 4812 - - type: DeviceList - devices: - - 8838 - - 8836 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 7241 - components: - - type: Transform - pos: -19.5,-24.5 - parent: 4812 - - type: DeviceList - devices: - - 6686 - - 7227 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 7249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 7284 - components: - - type: Transform - pos: -3.5,27.5 - parent: 4812 - - type: DeviceList - devices: - - 12226 - - 1853 - - 1852 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-15.5 - parent: 4812 - - type: DeviceList - devices: - - 12170 - - 12027 - - 12026 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-14.5 - parent: 4812 - - type: DeviceList - devices: - - 12028 - - 12025 - - 12172 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-11.5 - parent: 4812 - - type: DeviceList - devices: - - 12175 - - 12029 - - 12024 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12176 - components: - - type: Transform - pos: -46.5,-5.5 - parent: 4812 - - type: DeviceList - devices: - - 12177 - - 12032 - - 12033 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-0.5 - parent: 4812 - - type: DeviceList - devices: - - 10758 - - 10757 - - 12179 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12182 - components: - - type: Transform - pos: -42.5,13.5 - parent: 4812 - - type: DeviceList - devices: - - 12181 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12183 - components: - - type: Transform - pos: -28.5,6.5 - parent: 4812 - - type: DeviceList - devices: - - 12184 - - 12035 - - 12036 - - 8690 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-2.5 - parent: 4812 - - type: DeviceList - devices: - - 8691 - - 8690 - - 12189 - - 12188 - - 12185 - - 3708 - - 8787 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 4812 - - type: DeviceList - devices: - - 12192 - - 8691 - - 12034 - - 11962 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 4812 - - type: DeviceList - devices: - - 6494 - - 6495 - - 12195 - - 8156 - - 8157 - - 12041 - - 12042 - - 12188 - - 12189 - - 12197 - - 12196 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,0.5 - parent: 4812 - - type: DeviceList - devices: - - 12200 - - 12196 - - 12197 - - 1685 - - 1686 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12202 - components: - - type: Transform - pos: -24.5,9.5 - parent: 4812 - - type: DeviceList - devices: - - 12201 - - 8156 - - 8157 - - 7784 - - 8154 - - 8155 - - 12205 - - 12204 - - 12039 - - 12040 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12206 - components: - - type: Transform - pos: -20.5,13.5 - parent: 4812 - - type: DeviceList - devices: - - 12208 - - 12204 - - 12205 - - 8562 - - 8563 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 4812 - - type: DeviceList - devices: - - 12211 - - 12212 - - 7782 - - 7783 - - 7911 - - 7910 - - 7909 - - 7914 - - 7913 - - 7912 - - 7874 - - 7872 - - 7871 - - 7873 - - 7887 - - 7886 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12213 - components: - - type: Transform - pos: -37.5,13.5 - parent: 4812 - - type: DeviceList - devices: - - 7905 - - 7907 - - 12214 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,15.5 - parent: 4812 - - type: DeviceList - devices: - - 12216 - - 12212 - - 7906 - - 7908 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12219 - components: - - type: Transform - pos: -31.5,33.5 - parent: 4812 - - type: DeviceList - devices: - - 12218 - - 7858 - - 7856 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12220 - components: - - type: Transform - pos: -18.5,21.5 - parent: 4812 - - type: DeviceList - devices: - - 8155 - - 8154 - - 2693 - - 2695 - - 12222 - - 8307 - - 8306 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12223 - components: - - type: Transform - pos: -5.5,21.5 - parent: 4812 - - type: DeviceList - devices: - - 2693 - - 2695 - - 2782 - - 2783 - - 12225 - - 1817 - - 1816 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,26.5 - parent: 4812 - - type: DeviceList - devices: - - 12230 - - 2231 - - 1928 - - 2474 - - 2441 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 4812 - - type: DeviceList - devices: - - 12231 - - 2473 - - 2472 - - 2442 - - 2475 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12234 - components: - - type: Transform - pos: 2.5,35.5 - parent: 4812 - - type: DeviceList - devices: - - 12237 - - 2473 - - 2472 - - 2231 - - 1928 - - 2443 - - 2444 - - 2447 - - 2448 - - 2446 - - 2445 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,24.5 - parent: 4812 - - type: DeviceList - devices: - - 12242 - - 1927 - - 2074 - - 2071 - - 2072 - - 2073 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12245 - components: - - type: Transform - pos: 11.5,21.5 - parent: 4812 - - type: DeviceList - devices: - - 12243 - - 2787 - - 2786 - - 2476 - - 963 - - 2783 - - 2782 - - 1770 - - 3782 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 4812 - - type: DeviceList - devices: - - 4122 - - 4117 - - 12251 - - 2852 - - 2853 - - 2787 - - 2786 - - 4439 - - 4440 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,21.5 - parent: 4812 - - type: DeviceList - devices: - - 3257 - - 12254 - - 3021 - - 3024 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,23.5 - parent: 4812 - - type: DeviceList - devices: - - 3016 - - 3020 - - 3017 - - 3019 - - 12257 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 4812 - - type: DeviceList - devices: - - 12259 - - 3001 - - 2983 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12260 - components: - - type: Transform - pos: 9.5,47.5 - parent: 4812 - - type: DeviceList - devices: - - 3814 - - 12261 - - 3944 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,45.5 - parent: 4812 - - type: DeviceList - devices: - - 3816 - - 12263 - - 3841 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,44.5 - parent: 4812 - - type: DeviceList - devices: - - 3813 - - 12264 - - 3835 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12266 - components: - - type: Transform - pos: 9.5,51.5 - parent: 4812 - - type: DeviceList - devices: - - 3815 - - 3838 - - 12267 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 4812 - - type: DeviceList - devices: - - 4426 - - 4423 - - 12274 - - 4122 - - 4117 - - 4442 - - 4441 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-4.5 - parent: 4812 - - type: DeviceList - devices: - - 12277 - - 4424 - - 4425 - - 4380 - - 4381 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12278 - components: - - type: Transform - pos: 25.5,2.5 - parent: 4812 - - type: DeviceList - devices: - - 12279 - - 4425 - - 4424 - - 4444 - - 4443 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12282 - components: - - type: Transform - pos: 23.5,6.5 - parent: 4812 - - type: DeviceList - devices: - - 4226 - - 12281 - - 4231 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,0.5 - parent: 4812 - - type: DeviceList - devices: - - 4205 - - 12284 - - 4203 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12285 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 4812 - - type: DeviceList - devices: - - 12287 - - 4423 - - 4426 - - 6415 - - 6414 - - 6417 - - 6416 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12289 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 4812 - - type: DeviceList - devices: - - 4645 - - 4644 - - 6500 - - 6499 - - 4646 - - 4647 - - 5792 - - 6414 - - 6415 - - 12288 - - 6420 - - 6419 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12293 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 4812 - - type: DeviceList - devices: - - 6497 - - 6496 - - 6500 - - 6499 - - 12295 - - 12038 - - 12037 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12296 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 4812 - - type: DeviceList - devices: - - 1511 - - 12297 - - 1512 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12299 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 4812 - - type: DeviceList - devices: - - 12298 - - 849 - - 858 - - 857 - - 848 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,2.5 - parent: 4812 - - type: DeviceList - devices: - - 931 - - 932 - - 12300 - - 782 - - 783 - - 784 - - 349 - - 351 - - 361 - - 354 - - 353 - - 352 - - 350 - - 818 - - 815 - - 817 - - 816 - - 864 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12304 - components: - - type: Transform - pos: -7.5,10.5 - parent: 4812 - - type: DeviceList - devices: - - 877 - - 885 - - 12303 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12307 - components: - - type: Transform - pos: 6.5,10.5 - parent: 4812 - - type: DeviceList - devices: - - 847 - - 846 - - 12306 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12308 - components: - - type: Transform - pos: 4.5,1.5 - parent: 4812 - - type: DeviceList - devices: - - 12309 - - 782 - - 783 - - 784 - - 835 - - 814 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,14.5 - parent: 4812 - - type: DeviceList - devices: - - 12313 - - 1940 - - 1939 - - 1938 - - 710 - - 711 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12316 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 4812 - - type: DeviceList - devices: - - 5308 - - 4644 - - 4645 - - 4646 - - 4647 - - 5791 - - 5793 - - 12315 - - 6687 - - 6461 - - 8783 - - 8803 - - 8779 - - 8778 - - 8711 - - 8591 - - 8758 - - 8770 - - 5028 - - 328 - - 3582 - - 2759 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12319 - components: - - type: Transform - pos: -0.5,-33.5 - parent: 4812 - - type: DeviceList - devices: - - 12318 - - 5071 - - 5072 - - 6455 - - 3781 - - 8783 - - 8803 - - 8779 - - 8778 - - 8711 - - 8591 - - 8758 - - 8770 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-39.5 - parent: 4812 - - type: DeviceList - devices: - - 12321 - - 5072 - - 5071 - - 5223 - - 5222 - - 5224 - - 5225 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12325 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 4812 - - type: DeviceList - devices: - - 6842 - - 6839 - - 12326 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12327 - components: - - type: Transform - pos: -23.5,-34.5 - parent: 4812 - - type: DeviceList - devices: - - 6841 - - 6840 - - 12328 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-29.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12341 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 4812 - - type: DeviceList - devices: - - 6585 - - 6584 - - 12343 - - 7380 - - 7382 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12344 - components: - - type: Transform - pos: -29.5,-13.5 - parent: 4812 - - type: DeviceList - devices: - - 7088 - - 7087 - - 12345 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12346 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 4812 - - type: DeviceList - devices: - - 5700 - - 5697 - - 12347 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12350 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 4812 - - type: DeviceList - devices: - - 5699 - - 5698 - - 12349 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12352 - components: - - type: Transform - pos: 15.5,-22.5 - parent: 4812 - - type: DeviceList - devices: - - 5715 - - 5716 - - 12351 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12353 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 4812 - - type: DeviceList - devices: - - 5600 - - 5599 - - 12355 - - 5718 - - 5719 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-30.5 - parent: 4812 - - type: DeviceList - devices: - - 12357 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12358 - components: - - type: Transform - pos: 29.5,-21.5 - parent: 4812 - - type: DeviceList - devices: - - 5765 - - 5763 - - 12359 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12361 - components: - - type: Transform - pos: 31.5,-22.5 - parent: 4812 - - type: DeviceList - devices: - - 5766 - - 5764 - - 12360 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12362 - components: - - type: Transform - pos: -36.5,-32.5 - parent: 4812 - - type: DeviceList - devices: - - 12363 - - 9007 - - 8991 - - type: AtmosDevice - joinedGrid: 4812 -- proto: AirAlarmElectronics - entities: - - uid: 10719 - components: - - type: Transform - pos: -30.29477,5.0635805 - parent: 4812 - - uid: 10720 - components: - - type: Transform - pos: -30.216644,4.9385805 - parent: 4812 -- proto: AirCanister - entities: - - uid: 3842 - components: - - type: Transform - pos: 15.5,44.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9041 - components: - - type: Transform - pos: -34.5,-37.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9671 - components: - - type: Transform - pos: -31.5,4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9672 - components: - - type: Transform - pos: -31.5,5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12398 - components: - - type: Transform - pos: -34.5,-3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12399 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: Airlock - entities: - - uid: 1531 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,0.5 - parent: 4812 - - uid: 1534 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,3.5 - parent: 4812 - - uid: 4116 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,7.5 - parent: 4812 - - uid: 6694 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-34.5 - parent: 4812 - - uid: 7025 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-34.5 - parent: 4812 -- proto: AirlockArmoryGlassLocked - entities: - - uid: 7800 - components: - - type: Transform - pos: -34.5,18.5 - parent: 4812 - - uid: 7801 - components: - - type: Transform - pos: -32.5,17.5 - parent: 4812 - - uid: 7802 - components: - - type: Transform - pos: -34.5,13.5 - parent: 4812 -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 3444 - components: - - type: Transform - pos: -33.5,0.5 - parent: 4812 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 8862 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-36.5 - parent: 4812 - - uid: 9563 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-0.5 - parent: 4812 - - uid: 9566 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,2.5 - parent: 4812 -- proto: AirlockBarLocked - entities: - - uid: 325 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,7.5 - parent: 4812 -- proto: AirlockBrigGlassLocked - entities: - - uid: 906 - components: - - type: Transform - pos: -17.5,18.5 - parent: 4812 - - uid: 7788 - components: - - type: Transform - pos: -24.5,13.5 - parent: 4812 - - uid: 7789 - components: - - type: Transform - pos: -24.5,14.5 - parent: 4812 - - uid: 7790 - components: - - type: Transform - pos: -27.5,13.5 - parent: 4812 - - uid: 7791 - components: - - type: Transform - pos: -27.5,14.5 - parent: 4812 -- proto: AirlockCaptainGlassLocked - entities: - - uid: 2417 - components: - - type: Transform - pos: -9.5,23.5 - parent: 4812 -- proto: AirlockCaptainLocked - entities: - - uid: 2419 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,26.5 - parent: 4812 - - uid: 2463 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,28.5 - parent: 4812 -- proto: AirlockCargoGlassLocked - entities: - - uid: 2858 - components: - - type: Transform - pos: 19.5,16.5 - parent: 4812 - - uid: 2859 - components: - - type: Transform - pos: 16.5,22.5 - parent: 4812 - - uid: 2860 - components: - - type: Transform - pos: 15.5,22.5 - parent: 4812 - - uid: 4427 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 4812 - - uid: 4428 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 4812 -- proto: AirlockChapelLocked - entities: - - uid: 329 - components: - - type: MetaData - flags: PvsPriority - name: Chaplain's Room - - type: Transform - pos: -25.5,-36.5 - parent: 4812 - - uid: 6792 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-36.5 - parent: 4812 - - uid: 6793 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-34.5 - parent: 4812 -- proto: AirlockChemistryLocked - entities: - - uid: 6617 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-19.5 - parent: 4812 -- proto: AirlockChiefEngineerGlassLocked - entities: - - uid: 9887 - components: - - type: Transform - pos: -49.5,-10.5 - parent: 4812 -- proto: AirlockChiefMedicalOfficerGlassLocked - entities: - - uid: 7434 - components: - - type: Transform - pos: -25.5,-24.5 - parent: 4812 -- proto: AirlockCommandGlassLocked - entities: - - uid: 1855 - components: - - type: Transform - pos: 1.5,29.5 - parent: 4812 - - uid: 2449 - components: - - type: Transform - pos: -8.5,21.5 - parent: 4812 - - uid: 2450 - components: - - type: Transform - pos: -7.5,21.5 - parent: 4812 - - uid: 2451 - components: - - type: Transform - pos: 2.5,21.5 - parent: 4812 - - uid: 2452 - components: - - type: Transform - pos: 3.5,21.5 - parent: 4812 - - uid: 2454 - components: - - type: Transform - pos: 2.5,31.5 - parent: 4812 - - uid: 2455 - components: - - type: Transform - pos: 3.5,31.5 - parent: 4812 - - uid: 2456 - components: - - type: MetaData - name: AI Sat - - type: Transform - pos: 4.5,32.5 - parent: 4812 - - uid: 2458 - components: - - type: Transform - pos: -7.5,31.5 - parent: 4812 - - uid: 2459 - components: - - type: Transform - pos: -8.5,31.5 - parent: 4812 - - uid: 2643 - components: - - type: Transform - pos: -6.5,29.5 - parent: 4812 -- proto: AirlockCommandLocked - entities: - - uid: 5174 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,23.5 - parent: 4812 - - uid: 11928 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,18.5 - parent: 4812 -- proto: AirlockDetectiveLocked - entities: - - uid: 5358 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-13.5 - parent: 4812 - - uid: 5359 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-17.5 - parent: 4812 -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 9565 - components: - - type: Transform - pos: -43.5,-4.5 - parent: 4812 - - uid: 9662 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 4812 - - uid: 9892 - components: - - type: Transform - pos: -43.5,-12.5 - parent: 4812 - - uid: 9894 - components: - - type: Transform - pos: -40.5,-9.5 - parent: 4812 -- proto: AirlockEngineeringLocked - entities: - - uid: 901 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,9.5 - parent: 4812 - - uid: 3726 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,2.5 - parent: 4812 - - uid: 4370 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,0.5 - parent: 4812 - - uid: 4371 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,3.5 - parent: 4812 - - uid: 5912 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-32.5 - parent: 4812 - - uid: 6885 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-32.5 - parent: 4812 - - uid: 7956 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,7.5 - parent: 4812 - - uid: 9564 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-4.5 - parent: 4812 - - uid: 9663 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-8.5 - parent: 4812 - - uid: 9664 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-8.5 - parent: 4812 - - uid: 9888 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-12.5 - parent: 4812 - - uid: 9958 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-20.5 - parent: 4812 - - uid: 10165 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-23.5 - parent: 4812 - - uid: 11386 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-37.5 - parent: 4812 - - uid: 11688 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,4.5 - parent: 4812 -- proto: AirlockExternalGlass - entities: - - uid: 3761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-43.5 - parent: 4812 - - uid: 3763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-43.5 - parent: 4812 - - uid: 3764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-50.5 - parent: 4812 - - uid: 3765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-50.5 - parent: 4812 - - uid: 3777 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 4812 - - uid: 3778 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 4812 - - uid: 3779 - components: - - type: Transform - pos: 32.5,0.5 - parent: 4812 - - uid: 3780 - components: - - type: Transform - pos: 32.5,2.5 - parent: 4812 - - uid: 9614 - components: - - type: Transform - pos: -41.5,-27.5 - parent: 4812 - - uid: 9651 - components: - - type: Transform - pos: -11.5,-56.5 - parent: 4812 -- proto: AirlockExternalGlassAtmosphericsLocked - entities: - - uid: 6362 - components: - - type: Transform - pos: -47.5,-3.5 - parent: 4812 - - uid: 6363 - components: - - type: Transform - pos: -50.5,-4.5 - parent: 4812 -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 2919 - components: - - type: Transform - pos: 25.5,14.5 - parent: 4812 - - uid: 2920 - components: - - type: Transform - pos: 28.5,14.5 - parent: 4812 - - uid: 3040 - components: - - type: Transform - pos: 21.5,27.5 - parent: 4812 - - uid: 3041 - components: - - type: Transform - pos: 21.5,25.5 - parent: 4812 -- proto: AirlockExternalGlassLocked - entities: - - uid: 10406 - components: - - type: Transform - pos: -56.5,-22.5 - parent: 4812 - - uid: 11139 - components: - - type: Transform - pos: 38.5,-36.5 - parent: 4812 - - uid: 11141 - components: - - type: Transform - pos: 35.5,-36.5 - parent: 4812 -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 3760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-50.5 - parent: 4812 - - uid: 3762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-43.5 - parent: 4812 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 3190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,27.5 - parent: 4812 - - uid: 3191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,25.5 - parent: 4812 - - uid: 4134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 4812 - - uid: 4135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-7.5 - parent: 4812 - - uid: 4136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,0.5 - parent: 4812 - - uid: 4137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 4812 - - uid: 4736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-43.5 - parent: 4812 - - uid: 4737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-50.5 - parent: 4812 - - uid: 9656 - components: - - type: Transform - pos: -10.5,-59.5 - parent: 4812 - - uid: 12107 - components: - - type: Transform - pos: -11.5,-59.5 - parent: 4812 -- proto: AirlockExternalLocked - entities: - - uid: 2737 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,31.5 - parent: 4812 - - uid: 2814 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,33.5 - parent: 4812 - - uid: 3349 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,10.5 - parent: 4812 - - uid: 3350 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,10.5 - parent: 4812 - - uid: 3686 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,44.5 - parent: 4812 - - uid: 3687 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,45.5 - parent: 4812 - - uid: 10405 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,-22.5 - parent: 4812 -- proto: AirlockFreezer - entities: - - uid: 3119 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,35.5 - parent: 4812 -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 716 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-4.5 - parent: 4812 -- proto: AirlockGlass - entities: - - uid: 333 - components: - - type: Transform - pos: -3.5,15.5 - parent: 4812 - - uid: 334 - components: - - type: Transform - pos: -2.5,15.5 - parent: 4812 - - uid: 335 - components: - - type: Transform - pos: -1.5,15.5 - parent: 4812 - - uid: 905 - components: - - type: Transform - pos: -21.5,16.5 - parent: 4812 - - uid: 1079 - components: - - type: Transform - pos: -24.5,1.5 - parent: 4812 - - uid: 1080 - components: - - type: Transform - pos: -24.5,2.5 - parent: 4812 - - uid: 1081 - components: - - type: Transform - pos: -21.5,9.5 - parent: 4812 - - uid: 1082 - components: - - type: Transform - pos: -21.5,10.5 - parent: 4812 - - uid: 1098 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 4812 - - uid: 4378 - components: - - type: Transform - pos: 14.5,-3.5 - parent: 4812 - - uid: 4379 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 4812 - - uid: 4382 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 4812 - - uid: 4383 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 4812 - - uid: 4384 - components: - - type: Transform - pos: 26.5,-1.5 - parent: 4812 - - uid: 4714 - components: - - type: Transform - pos: 0.5,-33.5 - parent: 4812 - - uid: 4997 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 4812 - - uid: 4998 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 4812 - - uid: 5274 - components: - - type: Transform - pos: -6.5,-33.5 - parent: 4812 - - uid: 5275 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 4812 - - uid: 5276 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 4812 - - uid: 6673 - components: - - type: Transform - pos: -25.5,-13.5 - parent: 4812 - - uid: 6674 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 4812 - - uid: 7349 - components: - - type: Transform - pos: -1.5,12.5 - parent: 4812 - - uid: 7386 - components: - - type: Transform - pos: -3.5,12.5 - parent: 4812 - - uid: 7392 - components: - - type: Transform - pos: -2.5,12.5 - parent: 4812 - - uid: 8158 - components: - - type: Transform - pos: -30.5,28.5 - parent: 4812 - - uid: 8159 - components: - - type: Transform - pos: -26.5,28.5 - parent: 4812 - - uid: 9660 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 4812 - - uid: 9661 - components: - - type: Transform - pos: -28.5,-1.5 - parent: 4812 -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 723 - components: - - type: Transform - pos: 6.5,18.5 - parent: 4812 - - uid: 2460 - components: - - type: Transform - pos: 4.5,25.5 - parent: 4812 -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 2461 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,27.5 - parent: 4812 - - uid: 2462 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,28.5 - parent: 4812 -- proto: AirlockHeadOfSecurityGlassLocked - entities: - - uid: 7935 - components: - - type: Transform - pos: -22.5,26.5 - parent: 4812 -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 7934 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,25.5 - parent: 4812 - - uid: 7936 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,21.5 - parent: 4812 - - uid: 8242 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,27.5 - parent: 4812 -- proto: AirlockHydroGlassLocked - entities: - - uid: 307 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 4812 - - uid: 308 - components: - - type: Transform - pos: -17.5,-10.5 - parent: 4812 -- proto: AirlockJanitorLocked - entities: - - uid: 720 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-10.5 - parent: 4812 -- proto: AirlockKitchenGlassLocked - entities: - - uid: 715 - components: - - type: Transform - pos: 3.5,1.5 - parent: 4812 -- proto: AirlockMaintAtmoLocked - entities: - - uid: 7949 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,6.5 - parent: 4812 - - uid: 8686 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,0.5 - parent: 4812 -- proto: AirlockMaintBarLocked - entities: - - uid: 324 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,7.5 - parent: 4812 -- proto: AirlockMaintCaptainLocked - entities: - - uid: 2418 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,24.5 - parent: 4812 -- proto: AirlockMaintCargoLocked - entities: - - uid: 2741 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,24.5 - parent: 4812 -- proto: AirlockMaintChapelLocked - entities: - - uid: 6790 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-31.5 - parent: 4812 - - uid: 6791 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-31.5 - parent: 4812 -- proto: AirlockMaintCommandLocked - entities: - - uid: 7932 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,21.5 - parent: 4812 -- proto: AirlockMaintEngiLocked - entities: - - uid: 8683 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-10.5 - parent: 4812 - - uid: 8684 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,-10.5 - parent: 4812 - - uid: 8685 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,-6.5 - parent: 4812 - - uid: 9830 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,-15.5 - parent: 4812 -- proto: AirlockMaintGlassLocked - entities: - - uid: 1935 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 4812 - - uid: 1936 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 4812 -- proto: AirlockMaintHydroLocked - entities: - - uid: 309 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-4.5 - parent: 4812 -- proto: AirlockMaintJanitorLocked - entities: - - uid: 719 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-5.5 - parent: 4812 -- proto: AirlockMaintKitchenLocked - entities: - - uid: 717 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-1.5 - parent: 4812 - - uid: 718 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-6.5 - parent: 4812 -- proto: AirlockMaintLocked - entities: - - uid: 336 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-8.5 - parent: 4812 - - uid: 337 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-3.5 - parent: 4812 - - uid: 338 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,2.5 - parent: 4812 - - uid: 339 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,13.5 - parent: 4812 - - uid: 340 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,14.5 - parent: 4812 - - uid: 341 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,10.5 - parent: 4812 - - uid: 342 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-4.5 - parent: 4812 - - uid: 343 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-10.5 - parent: 4812 - - uid: 344 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,3.5 - parent: 4812 - - uid: 1252 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,2.5 - parent: 4812 - - uid: 2882 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,21.5 - parent: 4812 - - uid: 4372 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,3.5 - parent: 4812 - - uid: 4374 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,10.5 - parent: 4812 - - uid: 4375 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,0.5 - parent: 4812 - - uid: 4376 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-7.5 - parent: 4812 - - uid: 4377 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-7.5 - parent: 4812 - - uid: 5392 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,-13.5 - parent: 4812 - - uid: 5399 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,-27.5 - parent: 4812 - - uid: 5838 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-30.5 - parent: 4812 - - uid: 6982 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-33.5 - parent: 4812 - - uid: 7054 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-21.5 - parent: 4812 - - uid: 7954 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,8.5 - parent: 4812 - - uid: 8681 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-11.5 - parent: 4812 - - uid: 8848 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-31.5 - parent: 4812 - - uid: 8861 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-26.5 - parent: 4812 - - uid: 8866 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-34.5 - parent: 4812 - - uid: 8867 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-39.5 - parent: 4812 - - uid: 10157 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-22.5 - parent: 4812 - - uid: 10487 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-26.5 - parent: 4812 - - uid: 11300 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-35.5 - parent: 4812 - - uid: 11326 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-34.5 - parent: 4812 - - uid: 11350 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-34.5 - parent: 4812 - - uid: 11434 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-35.5 - parent: 4812 - - uid: 11676 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-37.5 - parent: 4812 - - uid: 11802 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-2.5 - parent: 4812 -- proto: AirlockMaintMedLocked - entities: - - uid: 6788 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-23.5 - parent: 4812 - - uid: 7336 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-29.5 - parent: 4812 -- proto: AirlockMaintRnDLocked - entities: - - uid: 5497 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-15.5 - parent: 4812 - - uid: 5498 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,-29.5 - parent: 4812 - - uid: 5499 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-29.5 - parent: 4812 - - uid: 5787 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-29.5 - parent: 4812 -- proto: AirlockMaintSecLocked - entities: - - uid: 7806 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,9.5 - parent: 4812 -- proto: AirlockMaintTheatreLocked - entities: - - uid: 714 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,10.5 - parent: 4812 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 1933 - components: - - type: Transform - pos: -7.5,-22.5 - parent: 4812 - - uid: 1934 - components: - - type: Transform - pos: -7.5,-21.5 - parent: 4812 - - uid: 7411 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 4812 - - uid: 7412 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 4812 - - uid: 7413 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 4812 - - uid: 7433 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 4812 -- proto: AirlockMedicalLocked - entities: - - uid: 7410 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-26.5 - parent: 4812 - - uid: 7414 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-17.5 - parent: 4812 - - uid: 7415 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-19.5 - parent: 4812 - - uid: 7416 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-13.5 - parent: 4812 -- proto: AirlockQuartermasterGlassLocked - entities: - - uid: 3015 - components: - - type: Transform - pos: 16.5,33.5 - parent: 4812 -- proto: AirlockQuartermasterLocked - entities: - - uid: 2817 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,28.5 - parent: 4812 -- proto: AirlockResearchDirectorGlassLocked - entities: - - uid: 5555 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 4812 - - uid: 5598 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 4812 -- proto: AirlockSalvageLocked - entities: - - uid: 2921 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,14.5 - parent: 4812 -- proto: AirlockScienceGlassLocked - entities: - - uid: 5488 - components: - - type: Transform - pos: 17.5,-24.5 - parent: 4812 - - uid: 5489 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 4812 - - uid: 5490 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 4812 - - uid: 5492 - components: - - type: Transform - pos: 10.5,-13.5 - parent: 4812 - - uid: 5493 - components: - - type: Transform - pos: 4.5,-19.5 - parent: 4812 - - uid: 5494 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 4812 - - uid: 5495 - components: - - type: Transform - pos: 7.5,-24.5 - parent: 4812 - - uid: 5496 - components: - - type: Transform - pos: 10.5,-25.5 - parent: 4812 - - uid: 5771 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 4812 - - uid: 5797 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 4812 - - uid: 5798 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 4812 -- proto: AirlockScienceLocked - entities: - - uid: 5396 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-20.5 - parent: 4812 - - uid: 5484 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-21.5 - parent: 4812 - - uid: 5485 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-21.5 - parent: 4812 - - uid: 5486 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-20.5 - parent: 4812 - - uid: 5487 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-24.5 - parent: 4812 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 4429 - components: - - type: Transform - pos: 30.5,1.5 - parent: 4812 - - uid: 5304 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 4812 - - uid: 5305 - components: - - type: Transform - pos: -4.5,-25.5 - parent: 4812 - - uid: 7792 - components: - - type: Transform - pos: -27.5,11.5 - parent: 4812 - - uid: 7793 - components: - - type: Transform - pos: -32.5,11.5 - parent: 4812 - - uid: 7794 - components: - - type: Transform - pos: -29.5,21.5 - parent: 4812 - - uid: 7795 - components: - - type: Transform - pos: -30.5,21.5 - parent: 4812 - - uid: 7798 - components: - - type: Transform - pos: -26.5,25.5 - parent: 4812 - - uid: 7799 - components: - - type: Transform - pos: -30.5,25.5 - parent: 4812 -- proto: AirlockServiceLocked - entities: - - uid: 6675 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-20.5 - parent: 4812 -- proto: AirlockTheatreLocked - entities: - - uid: 713 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-0.5 - parent: 4812 - - uid: 886 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,2.5 - parent: 4812 -- proto: AirlockVirologyGlassLocked - entities: - - uid: 3773 - components: - - type: Transform - pos: -36.5,-36.5 - parent: 4812 - - uid: 4007 - components: - - type: Transform - pos: -35.5,-33.5 - parent: 4812 -- proto: AirlockVirologyLocked - entities: - - uid: 3771 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-33.5 - parent: 4812 -- proto: AirSensor - entities: - - uid: 8805 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 4812 - - uid: 8806 - components: - - type: Transform - pos: -17.5,-21.5 - parent: 4812 - - uid: 12170 - components: - - type: Transform - pos: -42.5,-13.5 - parent: 4812 - - uid: 12172 - components: - - type: Transform - pos: -48.5,-11.5 - parent: 4812 - - uid: 12175 - components: - - type: Transform - pos: -54.5,-13.5 - parent: 4812 - - uid: 12177 - components: - - type: Transform - pos: -45.5,-7.5 - parent: 4812 - - uid: 12179 - components: - - type: Transform - pos: -40.5,3.5 - parent: 4812 - - uid: 12181 - components: - - type: Transform - pos: -44.5,16.5 - parent: 4812 - - uid: 12184 - components: - - type: Transform - pos: -34.5,2.5 - parent: 4812 - - uid: 12185 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 4812 - - uid: 12192 - components: - - type: Transform - pos: -29.5,-8.5 - parent: 4812 - - uid: 12195 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 4812 - - uid: 12200 - components: - - type: Transform - pos: -23.5,3.5 - parent: 4812 - - uid: 12201 - components: - - type: Transform - pos: -22.5,12.5 - parent: 4812 - - uid: 12208 - components: - - type: Transform - pos: -20.5,8.5 - parent: 4812 - - uid: 12211 - components: - - type: Transform - pos: -31.5,16.5 - parent: 4812 - - uid: 12214 - components: - - type: Transform - pos: -38.5,11.5 - parent: 4812 - - uid: 12216 - components: - - type: Transform - pos: -35.5,16.5 - parent: 4812 - - uid: 12218 - components: - - type: Transform - pos: -31.5,29.5 - parent: 4812 - - uid: 12222 - components: - - type: Transform - pos: -15.5,19.5 - parent: 4812 - - uid: 12225 - components: - - type: Transform - pos: -4.5,16.5 - parent: 4812 - - uid: 12226 - components: - - type: Transform - pos: -2.5,23.5 - parent: 4812 - - uid: 12230 - components: - - type: Transform - pos: -7.5,24.5 - parent: 4812 - - uid: 12231 - components: - - type: Transform - pos: 2.5,24.5 - parent: 4812 - - uid: 12237 - components: - - type: Transform - pos: -5.5,32.5 - parent: 4812 - - uid: 12239 - components: - - type: Transform - pos: 5.5,22.5 - parent: 4812 - - uid: 12242 - components: - - type: Transform - pos: 5.5,26.5 - parent: 4812 - - uid: 12243 - components: - - type: Transform - pos: 12.5,20.5 - parent: 4812 - - uid: 12247 - components: - - type: Transform - pos: 17.5,15.5 - parent: 4812 - - uid: 12251 - components: - - type: Transform - pos: 11.5,12.5 - parent: 4812 - - uid: 12254 - components: - - type: Transform - pos: 18.5,17.5 - parent: 4812 - - uid: 12257 - components: - - type: Transform - pos: 20.5,23.5 - parent: 4812 - - uid: 12259 - components: - - type: Transform - pos: 17.5,30.5 - parent: 4812 - - uid: 12261 - components: - - type: Transform - pos: 10.5,45.5 - parent: 4812 - - uid: 12263 - components: - - type: Transform - pos: 14.5,45.5 - parent: 4812 - - uid: 12264 - components: - - type: Transform - pos: 6.5,45.5 - parent: 4812 - - uid: 12267 - components: - - type: Transform - pos: 10.5,49.5 - parent: 4812 - - uid: 12274 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 4812 - - uid: 12277 - components: - - type: Transform - pos: 21.5,-2.5 - parent: 4812 - - uid: 12279 - components: - - type: Transform - pos: 25.5,0.5 - parent: 4812 - - uid: 12281 - components: - - type: Transform - pos: 23.5,5.5 - parent: 4812 - - uid: 12284 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 4812 - - uid: 12287 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 4812 - - uid: 12288 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 4812 - - uid: 12292 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 4812 - - uid: 12295 - components: - - type: Transform - pos: -18.5,-12.5 - parent: 4812 - - uid: 12297 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 4812 - - uid: 12298 - components: - - type: Transform - pos: -9.5,-7.5 - parent: 4812 - - uid: 12300 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 4812 - - uid: 12303 - components: - - type: Transform - pos: -7.5,6.5 - parent: 4812 - - uid: 12306 - components: - - type: Transform - pos: 2.5,5.5 - parent: 4812 - - uid: 12309 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 4812 - - uid: 12313 - components: - - type: Transform - pos: -0.5,13.5 - parent: 4812 - - uid: 12315 - components: - - type: Transform - pos: -2.5,-21.5 - parent: 4812 - - uid: 12318 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 4812 - - uid: 12321 - components: - - type: Transform - pos: -10.5,-40.5 - parent: 4812 - - uid: 12326 - components: - - type: Transform - pos: -19.5,-32.5 - parent: 4812 - - uid: 12328 - components: - - type: Transform - pos: -21.5,-35.5 - parent: 4812 - - uid: 12333 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 4812 - - uid: 12343 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 4812 - - uid: 12345 - components: - - type: Transform - pos: -26.5,-17.5 - parent: 4812 - - uid: 12347 - components: - - type: Transform - pos: 4.5,-16.5 - parent: 4812 - - uid: 12349 - components: - - type: Transform - pos: 4.5,-23.5 - parent: 4812 - - uid: 12351 - components: - - type: Transform - pos: 14.5,-25.5 - parent: 4812 - - uid: 12355 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 4812 - - uid: 12357 - components: - - type: Transform - pos: 22.5,-29.5 - parent: 4812 - - uid: 12359 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 4812 - - uid: 12360 - components: - - type: Transform - pos: 32.5,-26.5 - parent: 4812 - - uid: 12363 - components: - - type: Transform - pos: -37.5,-34.5 - parent: 4812 -- proto: AltarSpawner - entities: - - uid: 4008 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 4812 -- proto: AmeController - entities: - - uid: 10778 - components: - - type: Transform - pos: -42.5,-10.5 - parent: 4812 -- proto: AmeJar - entities: - - uid: 4233 - components: - - type: Transform - pos: -42.336273,-2.370503 - parent: 4812 -- proto: AnomalyScanner - entities: - - uid: 6357 - components: - - type: Transform - pos: 31.47904,-24.269451 - parent: 4812 - - uid: 6365 - components: - - type: Transform - pos: 31.63529,-24.472576 - parent: 4812 -- proto: APCBasic - entities: - - uid: 903 - components: - - type: MetaData - name: Hydroponics & Janitor Closet APC - - type: Transform - pos: -8.5,-2.5 - parent: 4812 - - uid: 904 - components: - - type: MetaData - name: Theater APC - - type: Transform - pos: -12.5,14.5 - parent: 4812 - - uid: 1022 - components: - - type: MetaData - name: Kitchen Freezer APC - - type: Transform - pos: 7.5,-8.5 - parent: 4812 - - uid: 1549 - components: - - type: MetaData - name: Bar APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,8.5 - parent: 4812 - - uid: 2077 - components: - - type: MetaData - name: Main Hall North APC - - type: Transform - pos: 0.5,21.5 - parent: 4812 - - uid: 2078 - components: - - type: MetaData - name: Bridge APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,31.5 - parent: 4812 - - uid: 2079 - components: - - type: MetaData - name: HoP Office APC - - type: Transform - pos: 9.5,27.5 - parent: 4812 - - uid: 2366 - components: - - type: MetaData - name: Captain's Lair APC - - type: Transform - pos: -14.5,25.5 - parent: 4812 - - uid: 2832 - components: - - type: MetaData - name: Maint North West APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 4812 - - uid: 3113 - components: - - type: MetaData - name: Cargo Bay APC - - type: Transform - pos: 17.5,22.5 - parent: 4812 - - uid: 3883 - components: - - type: MetaData - name: AI Core APC - - type: Transform - pos: 11.5,51.5 - parent: 4812 - - uid: 4246 - components: - - type: MetaData - name: Departures APC - - type: Transform - pos: 22.5,-1.5 - parent: 4812 - - uid: 4968 - components: - - type: MetaData - name: Morgue APC - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 4812 - - uid: 4969 - components: - - type: MetaData - name: Genetics APC - - type: Transform - pos: -15.5,-14.5 - parent: 4812 - - uid: 4970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-28.5 - parent: 4812 - - uid: 4971 - components: - - type: MetaData - name: Surgery APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-25.5 - parent: 4812 - - uid: 4972 - components: - - type: MetaData - name: Medical APC - - type: Transform - pos: -18.5,-19.5 - parent: 4812 - - uid: 5273 - components: - - type: MetaData - name: Arrivals APC - - type: Transform - pos: -8.5,-33.5 - parent: 4812 - - uid: 5970 - components: - - type: MetaData - name: RND APC - - type: Transform - pos: 6.5,-19.5 - parent: 4812 - - uid: 5971 - components: - - type: MetaData - name: Toxins APC - - type: Transform - pos: 28.5,-21.5 - parent: 4812 - - uid: 6064 - components: - - type: MetaData - name: Robotics APC - - type: Transform - pos: 13.5,-22.5 - parent: 4812 - - uid: 6118 - components: - - type: MetaData - name: Detective's Office APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-16.5 - parent: 4812 - - uid: 6149 - components: - - type: MetaData - name: Sci Server Room APC - - type: Transform - pos: 13.5,-16.5 - parent: 4812 - - uid: 6844 - components: - - type: MetaData - name: Chapel APC - - type: Transform - pos: -17.5,-31.5 - parent: 4812 - - uid: 6898 - components: - - type: MetaData - name: CMO Office APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-25.5 - parent: 4812 - - uid: 7090 - components: - - type: MetaData - name: Main Hall South West APC - - type: Transform - pos: -24.5,-10.5 - parent: 4812 - - uid: 7259 - components: - - type: MetaData - name: Medical Storage APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 4812 - - uid: 7466 - components: - - type: MetaData - name: Main Hall South APC - - type: Transform - pos: -1.5,-20.5 - parent: 4812 - - uid: 7985 - components: - - type: MetaData - name: Security Lockerroom APC - - type: Transform - pos: -36.5,13.5 - parent: 4812 - - uid: 8176 - components: - - type: MetaData - name: Main Hall North West APC - - type: Transform - pos: -19.5,21.5 - parent: 4812 - - uid: 8896 - components: - - type: MetaData - name: Library Maint APC - - type: Transform - pos: -33.5,-24.5 - parent: 4812 - - uid: 9290 - components: - - type: MetaData - name: Atmospherics APC - - type: Transform - pos: -38.5,6.5 - parent: 4812 - - uid: 9412 - components: - - type: MetaData - name: Anomaly Lab APC - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-29.5 - parent: 4812 - - uid: 9613 - components: - - type: MetaData - name: Security APC - - type: Transform - pos: -31.5,21.5 - parent: 4812 - - uid: 10021 - components: - - type: MetaData - name: Engineering APC - - type: Transform - pos: -41.5,-4.5 - parent: 4812 - - uid: 10069 - components: - - type: MetaData - name: Grav Gen APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-12.5 - parent: 4812 - - uid: 10183 - components: - - type: MetaData - name: Solar South West APC - - type: Transform - pos: -51.5,-21.5 - parent: 4812 - - uid: 11150 - components: - - type: MetaData - name: Disposals APC - - type: Transform - pos: 10.5,-35.5 - parent: 4812 - - uid: 11436 - components: - - type: MetaData - name: Solar South East APC - - type: Transform - pos: 30.5,-37.5 - parent: 4812 -- proto: AppleSeeds - entities: - - uid: 8397 - components: - - type: Transform - pos: -31.672361,31.435354 - parent: 4812 - - uid: 8398 - components: - - type: Transform - pos: -31.531736,31.32598 - parent: 4812 -- proto: AsteroidRock - entities: - - uid: 2840 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,34.5 - parent: 4812 - - uid: 3012 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,37.5 - parent: 4812 - - uid: 3044 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,38.5 - parent: 4812 - - uid: 3045 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,38.5 - parent: 4812 - - uid: 3295 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,36.5 - parent: 4812 - - uid: 3353 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,34.5 - parent: 4812 - - uid: 3372 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,33.5 - parent: 4812 - - uid: 3373 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,31.5 - parent: 4812 - - uid: 3374 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,37.5 - parent: 4812 - - uid: 3375 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,35.5 - parent: 4812 - - uid: 3376 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,33.5 - parent: 4812 - - uid: 3394 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,32.5 - parent: 4812 - - uid: 3395 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,32.5 - parent: 4812 - - uid: 3396 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,33.5 - parent: 4812 - - uid: 3397 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,35.5 - parent: 4812 - - uid: 3398 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,38.5 - parent: 4812 - - uid: 3399 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,36.5 - parent: 4812 - - uid: 3400 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,34.5 - parent: 4812 - - uid: 3427 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,32.5 - parent: 4812 - - uid: 3433 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,36.5 - parent: 4812 - - uid: 3440 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,32.5 - parent: 4812 - - uid: 3450 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,32.5 - parent: 4812 - - uid: 3459 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,37.5 - parent: 4812 - - uid: 3460 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,38.5 - parent: 4812 - - uid: 3461 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,35.5 - parent: 4812 - - uid: 3579 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,37.5 - parent: 4812 - - uid: 3583 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,42.5 - parent: 4812 - - uid: 3584 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,42.5 - parent: 4812 - - uid: 3585 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,42.5 - parent: 4812 - - uid: 3586 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,41.5 - parent: 4812 - - uid: 3587 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,42.5 - parent: 4812 - - uid: 3588 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,41.5 - parent: 4812 - - uid: 3589 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,42.5 - parent: 4812 - - uid: 3590 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,41.5 - parent: 4812 - - uid: 3591 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,41.5 - parent: 4812 - - uid: 3592 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,41.5 - parent: 4812 - - uid: 3593 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,41.5 - parent: 4812 - - uid: 3594 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,41.5 - parent: 4812 - - uid: 3595 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,40.5 - parent: 4812 - - uid: 3596 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,40.5 - parent: 4812 - - uid: 3597 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,40.5 - parent: 4812 - - uid: 3598 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,43.5 - parent: 4812 - - uid: 3599 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,44.5 - parent: 4812 - - uid: 3600 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,45.5 - parent: 4812 - - uid: 3601 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,47.5 - parent: 4812 - - uid: 3602 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,47.5 - parent: 4812 - - uid: 3603 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,48.5 - parent: 4812 - - uid: 3604 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,49.5 - parent: 4812 - - uid: 3605 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,49.5 - parent: 4812 - - uid: 3606 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,48.5 - parent: 4812 - - uid: 3607 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,48.5 - parent: 4812 - - uid: 3608 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,48.5 - parent: 4812 - - uid: 3609 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,49.5 - parent: 4812 - - uid: 3610 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,49.5 - parent: 4812 - - uid: 3612 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,49.5 - parent: 4812 - - uid: 3613 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,50.5 - parent: 4812 - - uid: 3614 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,50.5 - parent: 4812 - - uid: 3615 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,51.5 - parent: 4812 - - uid: 3616 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,50.5 - parent: 4812 - - uid: 3617 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,51.5 - parent: 4812 - - uid: 3618 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,51.5 - parent: 4812 - - uid: 3619 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,51.5 - parent: 4812 - - uid: 3620 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,53.5 - parent: 4812 - - uid: 3621 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,52.5 - parent: 4812 - - uid: 3622 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,52.5 - parent: 4812 - - uid: 3623 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,50.5 - parent: 4812 - - uid: 3624 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,53.5 - parent: 4812 - - uid: 3625 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,53.5 - parent: 4812 - - uid: 3626 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,54.5 - parent: 4812 - - uid: 3627 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,54.5 - parent: 4812 - - uid: 3628 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,55.5 - parent: 4812 - - uid: 3629 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,56.5 - parent: 4812 - - uid: 3630 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,57.5 - parent: 4812 - - uid: 3631 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,57.5 - parent: 4812 - - uid: 3632 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,56.5 - parent: 4812 - - uid: 3633 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,57.5 - parent: 4812 - - uid: 3634 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,58.5 - parent: 4812 - - uid: 3635 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,58.5 - parent: 4812 - - uid: 3636 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,59.5 - parent: 4812 - - uid: 3637 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,59.5 - parent: 4812 - - uid: 3638 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,60.5 - parent: 4812 - - uid: 3639 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,59.5 - parent: 4812 - - uid: 3640 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,60.5 - parent: 4812 - - uid: 3641 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,59.5 - parent: 4812 - - uid: 3642 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,60.5 - parent: 4812 - - uid: 3643 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,59.5 - parent: 4812 - - uid: 3644 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,60.5 - parent: 4812 - - uid: 3645 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,59.5 - parent: 4812 - - uid: 3646 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,58.5 - parent: 4812 - - uid: 3647 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,59.5 - parent: 4812 - - uid: 3648 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,58.5 - parent: 4812 - - uid: 3649 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,58.5 - parent: 4812 - - uid: 3650 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,57.5 - parent: 4812 - - uid: 3651 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,57.5 - parent: 4812 - - uid: 3652 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,56.5 - parent: 4812 - - uid: 3653 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,56.5 - parent: 4812 - - uid: 3654 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,55.5 - parent: 4812 - - uid: 3655 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,54.5 - parent: 4812 - - uid: 3656 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,54.5 - parent: 4812 - - uid: 3657 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,53.5 - parent: 4812 - - uid: 3658 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,52.5 - parent: 4812 - - uid: 3659 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,52.5 - parent: 4812 - - uid: 3660 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,51.5 - parent: 4812 - - uid: 3661 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,50.5 - parent: 4812 - - uid: 3662 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,50.5 - parent: 4812 - - uid: 3663 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,49.5 - parent: 4812 - - uid: 3664 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,49.5 - parent: 4812 - - uid: 3665 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,48.5 - parent: 4812 - - uid: 3666 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,47.5 - parent: 4812 - - uid: 3667 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,47.5 - parent: 4812 - - uid: 3668 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,46.5 - parent: 4812 - - uid: 3669 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,48.5 - parent: 4812 - - uid: 3670 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,48.5 - parent: 4812 - - uid: 3671 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,48.5 - parent: 4812 - - uid: 3672 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,49.5 - parent: 4812 - - uid: 3673 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,51.5 - parent: 4812 - - uid: 3676 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,49.5 - parent: 4812 - - uid: 3679 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,52.5 - parent: 4812 - - uid: 3680 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,53.5 - parent: 4812 - - uid: 3681 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,54.5 - parent: 4812 - - uid: 3682 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,55.5 - parent: 4812 - - uid: 3683 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,55.5 - parent: 4812 - - uid: 3684 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,56.5 - parent: 4812 - - uid: 3685 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,57.5 - parent: 4812 - - uid: 3976 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,27.5 - parent: 4812 - - uid: 5032 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,32.5 - parent: 4812 - - uid: 5625 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-18.5 - parent: 4812 - - uid: 5626 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-20.5 - parent: 4812 - - uid: 5627 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-19.5 - parent: 4812 - - uid: 5808 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-20.5 - parent: 4812 - - uid: 5809 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-21.5 - parent: 4812 - - uid: 5810 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-21.5 - parent: 4812 - - uid: 5811 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-20.5 - parent: 4812 - - uid: 5812 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-21.5 - parent: 4812 - - uid: 5813 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-22.5 - parent: 4812 - - uid: 5814 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-23.5 - parent: 4812 - - uid: 5815 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-23.5 - parent: 4812 - - uid: 5816 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-24.5 - parent: 4812 - - uid: 5817 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,-24.5 - parent: 4812 - - uid: 5818 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-24.5 - parent: 4812 - - uid: 5819 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-29.5 - parent: 4812 - - uid: 5820 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-28.5 - parent: 4812 - - uid: 5821 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-27.5 - parent: 4812 - - uid: 5822 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-26.5 - parent: 4812 - - uid: 5823 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-25.5 - parent: 4812 - - uid: 5824 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-28.5 - parent: 4812 - - uid: 5825 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-27.5 - parent: 4812 - - uid: 5827 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-25.5 - parent: 4812 - - uid: 5828 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,-25.5 - parent: 4812 - - uid: 5829 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,-26.5 - parent: 4812 - - uid: 5830 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 39.5,-27.5 - parent: 4812 - - uid: 5831 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,-27.5 - parent: 4812 - - uid: 5832 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,-26.5 - parent: 4812 - - uid: 5839 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-17.5 - parent: 4812 - - uid: 6332 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-21.5 - parent: 4812 - - uid: 8458 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,36.5 - parent: 4812 - - uid: 8459 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,35.5 - parent: 4812 - - uid: 8460 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,34.5 - parent: 4812 - - uid: 8461 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,33.5 - parent: 4812 - - uid: 8462 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,32.5 - parent: 4812 - - uid: 8463 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,30.5 - parent: 4812 - - uid: 8464 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,31.5 - parent: 4812 - - uid: 8465 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,31.5 - parent: 4812 - - uid: 8466 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,31.5 - parent: 4812 - - uid: 8467 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,31.5 - parent: 4812 - - uid: 8468 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,31.5 - parent: 4812 - - uid: 8469 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,31.5 - parent: 4812 - - uid: 8470 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,31.5 - parent: 4812 - - uid: 8471 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,31.5 - parent: 4812 - - uid: 8472 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,31.5 - parent: 4812 - - uid: 8473 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,32.5 - parent: 4812 - - uid: 8474 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,32.5 - parent: 4812 - - uid: 8475 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,32.5 - parent: 4812 - - uid: 8476 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,32.5 - parent: 4812 - - uid: 8479 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,32.5 - parent: 4812 - - uid: 8480 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,33.5 - parent: 4812 - - uid: 8483 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,33.5 - parent: 4812 - - uid: 8484 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,33.5 - parent: 4812 - - uid: 8485 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,34.5 - parent: 4812 - - uid: 8486 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,34.5 - parent: 4812 - - uid: 8487 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,34.5 - parent: 4812 - - uid: 8488 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,34.5 - parent: 4812 - - uid: 8489 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,34.5 - parent: 4812 - - uid: 8490 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,35.5 - parent: 4812 - - uid: 8491 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,35.5 - parent: 4812 - - uid: 8492 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,35.5 - parent: 4812 - - uid: 8493 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,36.5 - parent: 4812 - - uid: 8494 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,36.5 - parent: 4812 - - uid: 8495 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,37.5 - parent: 4812 - - uid: 8496 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,38.5 - parent: 4812 - - uid: 8497 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,38.5 - parent: 4812 - - uid: 8498 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,30.5 - parent: 4812 - - uid: 8499 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,33.5 - parent: 4812 - - uid: 8500 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,34.5 - parent: 4812 - - uid: 8501 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,34.5 - parent: 4812 - - uid: 8502 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,34.5 - parent: 4812 - - uid: 8503 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,34.5 - parent: 4812 - - uid: 8504 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,35.5 - parent: 4812 - - uid: 8505 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,35.5 - parent: 4812 - - uid: 8506 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,37.5 - parent: 4812 - - uid: 8507 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,37.5 - parent: 4812 - - uid: 8508 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,38.5 - parent: 4812 - - uid: 8509 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,38.5 - parent: 4812 - - uid: 8510 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,38.5 - parent: 4812 - - uid: 8511 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,38.5 - parent: 4812 - - uid: 8512 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,39.5 - parent: 4812 - - uid: 8513 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,39.5 - parent: 4812 - - uid: 8514 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,39.5 - parent: 4812 - - uid: 8515 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,39.5 - parent: 4812 - - uid: 8516 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,34.5 - parent: 4812 - - uid: 8517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,34.5 - parent: 4812 - - uid: 8518 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,34.5 - parent: 4812 - - uid: 8519 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,34.5 - parent: 4812 - - uid: 8520 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,34.5 - parent: 4812 - - uid: 8521 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,35.5 - parent: 4812 - - uid: 8522 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,36.5 - parent: 4812 - - uid: 8523 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,36.5 - parent: 4812 - - uid: 8524 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,35.5 - parent: 4812 - - uid: 8525 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,35.5 - parent: 4812 - - uid: 9621 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-34.5 - parent: 4812 - - uid: 9622 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-33.5 - parent: 4812 - - uid: 9623 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-33.5 - parent: 4812 - - uid: 9624 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-32.5 - parent: 4812 - - uid: 9630 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-29.5 - parent: 4812 - - uid: 9631 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-30.5 - parent: 4812 - - uid: 9632 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-29.5 - parent: 4812 - - uid: 9633 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-28.5 - parent: 4812 - - uid: 9637 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-26.5 - parent: 4812 - - uid: 9638 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-38.5 - parent: 4812 - - uid: 9639 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-39.5 - parent: 4812 - - uid: 9640 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-39.5 - parent: 4812 - - uid: 9641 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-39.5 - parent: 4812 - - uid: 9642 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-39.5 - parent: 4812 - - uid: 9643 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-40.5 - parent: 4812 - - uid: 10417 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,-20.5 - parent: 4812 - - uid: 10418 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,-20.5 - parent: 4812 - - uid: 10419 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-20.5 - parent: 4812 - - uid: 10420 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-20.5 - parent: 4812 - - uid: 10421 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,-19.5 - parent: 4812 - - uid: 10422 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,-19.5 - parent: 4812 - - uid: 10423 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-19.5 - parent: 4812 - - uid: 10424 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,-18.5 - parent: 4812 - - uid: 10425 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-18.5 - parent: 4812 - - uid: 10426 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-18.5 - parent: 4812 - - uid: 10427 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-17.5 - parent: 4812 - - uid: 10428 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-16.5 - parent: 4812 - - uid: 10429 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-15.5 - parent: 4812 - - uid: 10430 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-15.5 - parent: 4812 - - uid: 10431 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,-15.5 - parent: 4812 - - uid: 10432 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,-15.5 - parent: 4812 - - uid: 10433 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,-15.5 - parent: 4812 - - uid: 10434 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-15.5 - parent: 4812 - - uid: 10435 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-15.5 - parent: 4812 - - uid: 10436 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-15.5 - parent: 4812 - - uid: 10437 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,-15.5 - parent: 4812 - - uid: 10438 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-15.5 - parent: 4812 - - uid: 10439 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-16.5 - parent: 4812 - - uid: 10443 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-16.5 - parent: 4812 - - uid: 10444 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,-16.5 - parent: 4812 - - uid: 10447 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-16.5 - parent: 4812 - - uid: 10448 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-17.5 - parent: 4812 - - uid: 10449 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,-17.5 - parent: 4812 - - uid: 10452 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-17.5 - parent: 4812 - - uid: 10453 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-17.5 - parent: 4812 - - uid: 10454 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-17.5 - parent: 4812 - - uid: 10455 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,-17.5 - parent: 4812 - - uid: 10456 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-17.5 - parent: 4812 - - uid: 10457 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-18.5 - parent: 4812 - - uid: 10458 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-18.5 - parent: 4812 - - uid: 10460 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,29.5 - parent: 4812 - - uid: 10461 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-19.5 - parent: 4812 - - uid: 10462 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-19.5 - parent: 4812 - - uid: 10463 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,28.5 - parent: 4812 - - uid: 10464 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-14.5 - parent: 4812 - - uid: 10465 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-13.5 - parent: 4812 - - uid: 10466 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-12.5 - parent: 4812 - - uid: 10467 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-11.5 - parent: 4812 - - uid: 10468 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-10.5 - parent: 4812 - - uid: 10469 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-9.5 - parent: 4812 - - uid: 10470 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-8.5 - parent: 4812 - - uid: 10472 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -57.5,-10.5 - parent: 4812 - - uid: 10473 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -57.5,-11.5 - parent: 4812 - - uid: 10474 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,28.5 - parent: 4812 - - uid: 10475 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -57.5,-13.5 - parent: 4812 - - uid: 10476 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -57.5,-14.5 - parent: 4812 - - uid: 10477 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -57.5,-15.5 - parent: 4812 - - uid: 10478 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -58.5,-13.5 - parent: 4812 - - uid: 10479 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -58.5,-12.5 - parent: 4812 - - uid: 10480 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -58.5,-11.5 - parent: 4812 - - uid: 10481 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -58.5,-10.5 - parent: 4812 - - uid: 10482 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -58.5,-9.5 - parent: 4812 - - uid: 10483 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-7.5 - parent: 4812 - - uid: 10484 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -57.5,-8.5 - parent: 4812 - - uid: 10485 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -58.5,-8.5 - parent: 4812 - - uid: 10486 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-2.5 - parent: 4812 - - uid: 10926 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,14.5 - parent: 4812 - - uid: 10927 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,15.5 - parent: 4812 - - uid: 10928 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,16.5 - parent: 4812 - - uid: 10929 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,17.5 - parent: 4812 - - uid: 10941 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,24.5 - parent: 4812 - - uid: 10942 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,25.5 - parent: 4812 - - uid: 10943 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,26.5 - parent: 4812 - - uid: 10944 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,27.5 - parent: 4812 - - uid: 10945 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,24.5 - parent: 4812 - - uid: 10947 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,26.5 - parent: 4812 - - uid: 10948 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,27.5 - parent: 4812 - - uid: 10949 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,28.5 - parent: 4812 - - uid: 10950 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,29.5 - parent: 4812 - - uid: 10951 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,30.5 - parent: 4812 - - uid: 10952 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,31.5 - parent: 4812 - - uid: 10953 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,32.5 - parent: 4812 - - uid: 10954 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,33.5 - parent: 4812 - - uid: 10955 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,32.5 - parent: 4812 - - uid: 10956 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,31.5 - parent: 4812 - - uid: 10957 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,30.5 - parent: 4812 - - uid: 10963 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,24.5 - parent: 4812 - - uid: 10965 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,15.5 - parent: 4812 - - uid: 10966 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,16.5 - parent: 4812 - - uid: 10967 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,17.5 - parent: 4812 - - uid: 10969 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,19.5 - parent: 4812 - - uid: 10970 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,20.5 - parent: 4812 - - uid: 10971 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,21.5 - parent: 4812 - - uid: 10972 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,22.5 - parent: 4812 - - uid: 10973 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,23.5 - parent: 4812 - - uid: 10974 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,24.5 - parent: 4812 - - uid: 10975 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,24.5 - parent: 4812 - - uid: 10977 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,24.5 - parent: 4812 - - uid: 10982 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,23.5 - parent: 4812 - - uid: 10983 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,18.5 - parent: 4812 - - uid: 10984 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,31.5 - parent: 4812 - - uid: 10986 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,33.5 - parent: 4812 - - uid: 10987 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,33.5 - parent: 4812 - - uid: 10988 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,33.5 - parent: 4812 - - uid: 10990 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,32.5 - parent: 4812 - - uid: 10991 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,31.5 - parent: 4812 - - uid: 10992 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,30.5 - parent: 4812 - - uid: 10993 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,29.5 - parent: 4812 - - uid: 10994 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,28.5 - parent: 4812 - - uid: 10995 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,27.5 - parent: 4812 - - uid: 10999 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,26.5 - parent: 4812 - - uid: 11000 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,27.5 - parent: 4812 - - uid: 11001 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,28.5 - parent: 4812 - - uid: 11002 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,29.5 - parent: 4812 - - uid: 11003 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,30.5 - parent: 4812 - - uid: 11004 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,31.5 - parent: 4812 - - uid: 11005 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,32.5 - parent: 4812 - - uid: 11009 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,17.5 - parent: 4812 - - uid: 11010 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,18.5 - parent: 4812 - - uid: 11011 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,19.5 - parent: 4812 - - uid: 11012 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,20.5 - parent: 4812 - - uid: 11013 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,21.5 - parent: 4812 - - uid: 11014 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,24.5 - parent: 4812 - - uid: 11016 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,24.5 - parent: 4812 - - uid: 11017 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,25.5 - parent: 4812 - - uid: 11018 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,26.5 - parent: 4812 - - uid: 11019 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,21.5 - parent: 4812 - - uid: 11020 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,22.5 - parent: 4812 - - uid: 11021 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,23.5 - parent: 4812 - - uid: 11022 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,24.5 - parent: 4812 - - uid: 11023 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,25.5 - parent: 4812 - - uid: 11024 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,26.5 - parent: 4812 - - uid: 11025 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,25.5 - parent: 4812 - - uid: 11026 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,26.5 - parent: 4812 - - uid: 11027 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,27.5 - parent: 4812 - - uid: 11028 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,28.5 - parent: 4812 - - uid: 11029 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,29.5 - parent: 4812 - - uid: 11616 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-30.5 - parent: 4812 - - uid: 11621 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-39.5 - parent: 4812 - - uid: 11622 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-41.5 - parent: 4812 - - uid: 11623 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-41.5 - parent: 4812 - - uid: 11624 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-41.5 - parent: 4812 - - uid: 11625 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-41.5 - parent: 4812 - - uid: 11626 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-39.5 - parent: 4812 - - uid: 11627 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-39.5 - parent: 4812 - - uid: 11628 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-40.5 - parent: 4812 - - uid: 11629 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-40.5 - parent: 4812 - - uid: 11630 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-41.5 - parent: 4812 - - uid: 11631 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-42.5 - parent: 4812 - - uid: 11632 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-40.5 - parent: 4812 - - uid: 11633 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-41.5 - parent: 4812 - - uid: 11634 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-40.5 - parent: 4812 - - uid: 11635 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-42.5 - parent: 4812 - - uid: 11636 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-42.5 - parent: 4812 - - uid: 11637 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-43.5 - parent: 4812 - - uid: 11638 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-43.5 - parent: 4812 - - uid: 11639 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,-43.5 - parent: 4812 - - uid: 11640 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,-44.5 - parent: 4812 - - uid: 11641 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-44.5 - parent: 4812 - - uid: 11643 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-44.5 - parent: 4812 - - uid: 11644 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-44.5 - parent: 4812 - - uid: 11645 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-44.5 - parent: 4812 - - uid: 11647 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,-45.5 - parent: 4812 - - uid: 11648 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-45.5 - parent: 4812 - - uid: 11649 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-45.5 - parent: 4812 - - uid: 11650 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-45.5 - parent: 4812 - - uid: 11651 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-45.5 - parent: 4812 - - uid: 11652 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-45.5 - parent: 4812 - - uid: 11653 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,-46.5 - parent: 4812 - - uid: 11654 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-46.5 - parent: 4812 - - uid: 11655 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-46.5 - parent: 4812 - - uid: 11656 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-46.5 - parent: 4812 - - uid: 11657 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-46.5 - parent: 4812 - - uid: 11658 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-46.5 - parent: 4812 - - uid: 11659 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-44.5 - parent: 4812 - - uid: 11660 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-43.5 - parent: 4812 - - uid: 11663 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-38.5 - parent: 4812 - - uid: 11664 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-41.5 - parent: 4812 - - uid: 11665 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-42.5 - parent: 4812 - - uid: 11666 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-43.5 - parent: 4812 - - uid: 11667 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-44.5 - parent: 4812 - - uid: 11668 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-44.5 - parent: 4812 - - uid: 11669 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-43.5 - parent: 4812 - - uid: 11670 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-42.5 - parent: 4812 - - uid: 11679 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-38.5 - parent: 4812 - - uid: 11680 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-43.5 - parent: 4812 - - uid: 11681 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-44.5 - parent: 4812 - - uid: 11682 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-44.5 - parent: 4812 - - uid: 11683 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-43.5 - parent: 4812 - - uid: 11684 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-38.5 - parent: 4812 - - uid: 11686 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-38.5 - parent: 4812 - - uid: 11689 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-43.5 - parent: 4812 - - uid: 11690 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-42.5 - parent: 4812 - - uid: 11691 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-40.5 - parent: 4812 - - uid: 11695 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-42.5 - parent: 4812 - - uid: 11696 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-42.5 - parent: 4812 - - uid: 11697 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-43.5 - parent: 4812 - - uid: 11698 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-43.5 - parent: 4812 - - uid: 11699 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-42.5 - parent: 4812 - - uid: 11700 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-42.5 - parent: 4812 - - uid: 11701 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-42.5 - parent: 4812 - - uid: 11702 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-40.5 - parent: 4812 - - uid: 11703 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-39.5 - parent: 4812 - - uid: 11704 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-38.5 - parent: 4812 - - uid: 11705 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-41.5 - parent: 4812 - - uid: 12144 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,-25.5 - parent: 4812 -- proto: AsteroidRockMining - entities: - - uid: 12146 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,-3.5 - parent: 4812 -- proto: AtmosDeviceFanTiny - entities: - - uid: 2781 - components: - - type: Transform - pos: 23.5,25.5 - parent: 4812 - - uid: 2845 - components: - - type: Transform - pos: 23.5,27.5 - parent: 4812 - - uid: 3260 - components: - - type: Transform - pos: 34.5,-7.5 - parent: 4812 - - uid: 3263 - components: - - type: Transform - pos: 34.5,0.5 - parent: 4812 - - uid: 3423 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 4812 - - uid: 3424 - components: - - type: Transform - pos: 34.5,2.5 - parent: 4812 - - uid: 3455 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 4812 - - uid: 3456 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 4812 - - uid: 3766 - components: - - type: Transform - pos: -13.5,-50.5 - parent: 4812 - - uid: 3767 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 4812 - - uid: 3768 - components: - - type: Transform - pos: -8.5,-43.5 - parent: 4812 - - uid: 3769 - components: - - type: Transform - pos: -13.5,-43.5 - parent: 4812 -- proto: AtmosFixBlockerMarker - entities: - - uid: 11893 - components: - - type: Transform - pos: -51.5,5.5 - parent: 4812 - - uid: 11894 - components: - - type: Transform - pos: -52.5,5.5 - parent: 4812 - - uid: 11895 - components: - - type: Transform - pos: -53.5,5.5 - parent: 4812 - - uid: 11896 - components: - - type: Transform - pos: -53.5,7.5 - parent: 4812 - - uid: 11897 - components: - - type: Transform - pos: -52.5,7.5 - parent: 4812 - - uid: 11898 - components: - - type: Transform - pos: -51.5,7.5 - parent: 4812 - - uid: 11899 - components: - - type: Transform - pos: -51.5,11.5 - parent: 4812 - - uid: 11900 - components: - - type: Transform - pos: -52.5,11.5 - parent: 4812 - - uid: 11901 - components: - - type: Transform - pos: -53.5,11.5 - parent: 4812 - - uid: 11902 - components: - - type: Transform - pos: -45.5,16.5 - parent: 4812 - - uid: 11903 - components: - - type: Transform - pos: -45.5,17.5 - parent: 4812 - - uid: 11904 - components: - - type: Transform - pos: -44.5,17.5 - parent: 4812 - - uid: 11905 - components: - - type: Transform - pos: -44.5,16.5 - parent: 4812 - - uid: 11906 - components: - - type: Transform - pos: -43.5,16.5 - parent: 4812 - - uid: 11907 - components: - - type: Transform - pos: -43.5,17.5 - parent: 4812 -- proto: AtmosFixFreezerMarker - entities: - - uid: 1569 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 4812 - - uid: 3213 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 4812 - - uid: 3214 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 4812 - - uid: 3215 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 4812 - - uid: 3222 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 4812 - - uid: 3384 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 4812 - - uid: 3385 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 4812 - - uid: 3413 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 4812 - - uid: 3414 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 4812 - - uid: 3415 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 4812 - - uid: 3416 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 4812 - - uid: 3417 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 4812 - - uid: 3418 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 4812 - - uid: 3438 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 4812 - - uid: 3464 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 4812 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 11887 - components: - - type: Transform - pos: -51.5,1.5 - parent: 4812 - - uid: 11888 - components: - - type: Transform - pos: -52.5,1.5 - parent: 4812 - - uid: 11889 - components: - - type: Transform - pos: -53.5,1.5 - parent: 4812 -- proto: AtmosFixOxygenMarker - entities: - - uid: 11890 - components: - - type: Transform - pos: -51.5,3.5 - parent: 4812 - - uid: 11891 - components: - - type: Transform - pos: -52.5,3.5 - parent: 4812 - - uid: 11892 - components: - - type: Transform - pos: -53.5,3.5 - parent: 4812 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 11908 - components: - - type: Transform - pos: -51.5,9.5 - parent: 4812 - - uid: 11909 - components: - - type: Transform - pos: -52.5,9.5 - parent: 4812 - - uid: 11910 - components: - - type: Transform - pos: -53.5,9.5 - parent: 4812 -- proto: Autolathe - entities: - - uid: 3231 - components: - - type: Transform - pos: 20.5,18.5 - parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - - uid: 6183 - components: - - type: Transform - pos: 3.5,-16.5 - parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - - uid: 10700 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth -- proto: BananaPhoneInstrument - entities: - - uid: 12492 - components: - - type: Transform - pos: -10.731333,1.1743605 - parent: 4812 -- proto: BannerRevolution - entities: - - uid: 10459 - components: - - type: Transform - pos: -57.5,-12.5 - parent: 4812 -- proto: Barricade - entities: - - uid: 8482 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 4812 - - uid: 8860 - components: - - type: Transform - pos: -30.5,-26.5 - parent: 4812 - - uid: 10524 - components: - - type: Transform - pos: -38.5,-26.5 - parent: 4812 -- proto: BarSign - entities: - - uid: 326 - components: - - type: MetaData - desc: Drink till you puke and/or break the laws of reality! - name: The Loose Goose - - type: Transform - pos: 2.5,10.5 - parent: 4812 - - type: BarSign - current: Goose - - uid: 10522 - components: - - type: MetaData - desc: All right, buddy. I think you've had EI NATH. Time to get a cab. - name: The Ale' Nath - - type: Transform - pos: -32.5,-26.5 - parent: 4812 - - type: BarSign - current: TheAleNath -- proto: BaseGasCondenser - entities: - - uid: 3405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: Beaker - entities: - - uid: 9030 - components: - - type: Transform - pos: -40.278786,-34.952698 - parent: 4812 -- proto: Bed - entities: - - uid: 261 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 4812 - - uid: 744 - components: - - type: Transform - pos: -25.5,-28.5 - parent: 4812 - - uid: 1256 - components: - - type: Transform - pos: -17.5,4.5 - parent: 4812 - - uid: 1649 - components: - - type: Transform - pos: 7.5,9.5 - parent: 4812 - - uid: 2499 - components: - - type: Transform - pos: 6.5,29.5 - parent: 4812 - - uid: 2580 - components: - - type: Transform - pos: -11.5,29.5 - parent: 4812 - - uid: 3268 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 4812 - - uid: 3401 - components: - - type: Transform - pos: 17.5,34.5 - parent: 4812 - - uid: 7033 - components: - - type: Transform - pos: -27.5,-36.5 - parent: 4812 - - uid: 7128 - components: - - type: Transform - pos: -30.5,-21.5 - parent: 4812 - - uid: 7575 - components: - - type: Transform - pos: -20.5,-20.5 - parent: 4812 - - uid: 8249 - components: - - type: Transform - pos: -22.5,28.5 - parent: 4812 - - uid: 8350 - components: - - type: Transform - pos: -25.5,20.5 - parent: 4812 - - uid: 8351 - components: - - type: Transform - pos: -25.5,17.5 - parent: 4812 - - uid: 8360 - components: - - type: Transform - pos: -25.5,27.5 - parent: 4812 - - uid: 8361 - components: - - type: Transform - pos: -29.5,27.5 - parent: 4812 - - uid: 11358 - components: - - type: Transform - pos: 37.5,-34.5 - parent: 4812 - - uid: 12162 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 4812 -- proto: BedsheetCaptain - entities: - - uid: 2582 - components: - - type: Transform - pos: -11.5,29.5 - parent: 4812 -- proto: BedsheetCMO - entities: - - uid: 2501 - components: - - type: Transform - pos: -25.5,-28.5 - parent: 4812 -- proto: BedsheetCult - entities: - - uid: 7034 - components: - - type: Transform - pos: -27.5,-36.5 - parent: 4812 -- proto: BedsheetHOP - entities: - - uid: 2500 - components: - - type: Transform - pos: 6.5,29.5 - parent: 4812 -- proto: BedsheetHOS - entities: - - uid: 8250 - components: - - type: Transform - pos: -22.5,28.5 - parent: 4812 -- proto: BedsheetMedical - entities: - - uid: 3285 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 4812 - - uid: 7682 - components: - - type: Transform - pos: -14.5,-23.5 - parent: 4812 - - uid: 7683 - components: - - type: Transform - pos: -17.5,-23.5 - parent: 4812 - - uid: 7684 - components: - - type: Transform - pos: -20.5,-20.5 - parent: 4812 -- proto: BedsheetOrange - entities: - - uid: 8352 - components: - - type: Transform - pos: -25.5,17.5 - parent: 4812 - - uid: 8353 - components: - - type: Transform - pos: -25.5,20.5 - parent: 4812 - - uid: 8362 - components: - - type: Transform - pos: -29.5,27.5 - parent: 4812 - - uid: 8363 - components: - - type: Transform - pos: -25.5,27.5 - parent: 4812 -- proto: BedsheetQM - entities: - - uid: 3377 - components: - - type: Transform - pos: 17.5,34.5 - parent: 4812 -- proto: BedsheetSpawner - entities: - - uid: 260 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 4812 - - uid: 1255 - components: - - type: Transform - pos: -17.5,4.5 - parent: 4812 - - uid: 1650 - components: - - type: Transform - pos: 7.5,9.5 - parent: 4812 - - uid: 7129 - components: - - type: Transform - pos: -30.5,-21.5 - parent: 4812 - - uid: 11359 - components: - - type: Transform - pos: 37.5,-34.5 - parent: 4812 - - uid: 12163 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 4812 -- proto: BikeHorn - entities: - - uid: 1725 - components: - - type: Transform - pos: -10.612676,1.3979684 - parent: 4812 -- proto: BikeHornInstrument - entities: - - uid: 1726 - components: - - type: Transform - pos: -10.503301,0.7729684 - parent: 4812 -- proto: BlastDoor - entities: - - uid: 729 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,18.5 - parent: 4812 - - uid: 771 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,18.5 - parent: 4812 - - uid: 2864 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,24.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 2938 - - uid: 2866 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,28.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 2938 - - uid: 5573 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-30.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6690 - - uid: 5574 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-29.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6690 - - uid: 5575 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-28.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6690 - - uid: 5794 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-27.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6218 - - uid: 5795 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-26.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6218 - - uid: 5796 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-25.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6218 - - uid: 9496 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,18.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 9504 -- proto: BlockGameArcade - entities: - - uid: 4549 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 4812 - - uid: 5026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-47.5 - parent: 4812 - - uid: 8399 - components: - - type: Transform - pos: -26.5,32.5 - parent: 4812 - - uid: 10853 - components: - - type: Transform - pos: -22.5,5.5 - parent: 4812 -- proto: BookAtmosAirAlarms - entities: - - uid: 865 - components: - - type: Transform - pos: -22.624014,-17.30092 - parent: 4812 -- proto: BookAtmosDistro - entities: - - uid: 10450 - components: - - type: Transform - pos: -22.389639,-17.51967 - parent: 4812 -- proto: BookAtmosVentsMore - entities: - - uid: 12467 - components: - - type: Transform - pos: -25.608389,-18.347795 - parent: 4812 -- proto: BookAtmosWaste - entities: - - uid: 12468 - components: - - type: Transform - pos: -25.436514,-18.48842 - parent: 4812 -- proto: BookDetective - entities: - - uid: 5387 - components: - - type: Transform - pos: 17.568647,-11.417019 - parent: 4812 -- proto: BookEscalation - entities: - - uid: 12421 - components: - - type: Transform - pos: -30.59653,-19.308746 - parent: 4812 -- proto: BookEscalationSecurity - entities: - - uid: 10446 - components: - - type: Transform - pos: -30.424656,-19.480621 - parent: 4812 -- proto: BookRandom - entities: - - uid: 7161 - components: - - type: Transform - pos: -30.557493,-18.387486 - parent: 4812 -- proto: BooksBag - entities: - - uid: 12419 - components: - - type: Transform - pos: -31.928976,-23.436365 - parent: 4812 -- proto: Bookshelf - entities: - - uid: 1952 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,25.5 - parent: 4812 - - uid: 5374 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-18.5 - parent: 4812 - - uid: 7000 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-32.5 - parent: 4812 - - uid: 7001 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-36.5 - parent: 4812 - - uid: 7005 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-38.5 - parent: 4812 - - uid: 7130 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-22.5 - parent: 4812 - - uid: 7131 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-21.5 - parent: 4812 - - uid: 7172 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-39.5 - parent: 4812 - - uid: 8391 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,32.5 - parent: 4812 - - uid: 8392 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,29.5 - parent: 4812 - - uid: 11352 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-32.5 - parent: 4812 -- proto: BookshelfFilled - entities: - - uid: 4816 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-20.5 - parent: 4812 - - uid: 4817 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-18.5 - parent: 4812 - - uid: 4818 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-18.5 - parent: 4812 - - uid: 4819 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-20.5 - parent: 4812 - - uid: 4820 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-20.5 - parent: 4812 - - uid: 4821 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-20.5 - parent: 4812 - - uid: 4822 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-18.5 - parent: 4812 - - uid: 4823 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-20.5 - parent: 4812 - - uid: 4824 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-18.5 - parent: 4812 - - uid: 4825 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-18.5 - parent: 4812 - - uid: 4835 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-14.5 - parent: 4812 - - uid: 4836 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-14.5 - parent: 4812 - - uid: 4837 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-16.5 - parent: 4812 - - uid: 4839 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-19.5 - parent: 4812 - - uid: 4840 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-18.5 - parent: 4812 - - uid: 4841 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-17.5 - parent: 4812 -- proto: BoozeDispenser - entities: - - uid: 365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,9.5 - parent: 4812 - - uid: 10493 - components: - - type: Transform - pos: -36.5,-22.5 - parent: 4812 -- proto: BorgCharger - entities: - - uid: 1727 - components: - - type: Transform - pos: 5.5,47.5 - parent: 4812 - - uid: 2492 - components: - - type: Transform - pos: 6.5,47.5 - parent: 4812 - - uid: 6168 - components: - - type: Transform - pos: 3.5,-28.5 - parent: 4812 -- proto: BoxBeanbag - entities: - - uid: 1656 - components: - - type: Transform - pos: 7.497552,8.611126 - parent: 4812 -- proto: BoxBodyBag - entities: - - uid: 4927 - components: - - type: Transform - pos: -18.4054,-14.319918 - parent: 4812 -- proto: BoxFlashbang - entities: - - uid: 8368 - components: - - type: Transform - pos: -36.5,17.5 - parent: 4812 - - uid: 8430 - components: - - type: Transform - pos: -37.645676,12.776339 - parent: 4812 -- proto: BoxFolderBlack - entities: - - uid: 2519 - components: - - type: Transform - pos: 8.55219,26.460049 - parent: 4812 - - uid: 2724 - components: - - type: MetaData - name: secret documents - - type: Transform - pos: -5.51737,26.194775 - parent: 4812 -- proto: BoxFolderBlue - entities: - - uid: 2518 - components: - - type: Transform - pos: 8.45844,26.553799 - parent: 4812 - - uid: 2685 - components: - - type: Transform - pos: 1.5282507,34.656113 - parent: 4812 -- proto: BoxFolderGrey - entities: - - uid: 6411 - components: - - type: Transform - pos: -0.43434072,-19.465488 - parent: 4812 -- proto: BoxFolderRed - entities: - - uid: 2517 - components: - - type: Transform - pos: 8.33344,26.616299 - parent: 4812 - - uid: 4575 - components: - - type: Transform - pos: 28.5,1.5 - parent: 4812 - - uid: 8267 - components: - - type: Transform - pos: -21.5,23.5 - parent: 4812 - - uid: 8295 - components: - - type: Transform - pos: -19.475779,17.57452 - parent: 4812 -- proto: BoxFolderWhite - entities: - - uid: 6637 - components: - - type: Transform - pos: -11.521093,-19.541773 - parent: 4812 -- proto: BoxFolderYellow - entities: - - uid: 3276 - components: - - type: Transform - pos: 14.429598,18.642262 - parent: 4812 - - uid: 3705 - components: - - type: Transform - pos: 15.550373,35.549133 - parent: 4812 - - uid: 4576 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 4812 -- proto: BoxHandcuff - entities: - - uid: 8369 - components: - - type: Transform - pos: -36.509842,17.041077 - parent: 4812 - - uid: 8431 - components: - - type: Transform - pos: -37.489426,12.635714 - parent: 4812 -- proto: BoxLatexGloves - entities: - - uid: 9029 - components: - - type: Transform - pos: -40.466286,-35.483948 - parent: 4812 -- proto: BoxLightMixed - entities: - - uid: 1496 - components: - - type: Transform - pos: -23.513304,-6.9524465 - parent: 4812 - - uid: 1678 - components: - - type: Transform - pos: 3.4673066,14.577467 - parent: 4812 - - uid: 8599 - components: - - type: Transform - pos: -18.992748,10.00374 - parent: 4812 - - uid: 10528 - components: - - type: Transform - pos: -41.52028,-30.431274 - parent: 4812 - - uid: 10712 - components: - - type: Transform - pos: -31.22427,-7.3718886 - parent: 4812 - - uid: 11329 - components: - - type: Transform - pos: 24.509838,-35.436974 - parent: 4812 -- proto: BoxMouthSwab - entities: - - uid: 12518 - components: - - type: Transform - pos: -40.434937,-35.118546 - parent: 4812 -- proto: BoxShotgunIncendiary - entities: - - uid: 12055 - components: - - type: Transform - pos: -35.55101,19.647282 - parent: 4812 -- proto: BoxSterileMask - entities: - - uid: 9028 - components: - - type: Transform - pos: -40.66941,-35.374573 - parent: 4812 -- proto: BoxSyringe - entities: - - uid: 9031 - components: - - type: Transform - pos: -40.247536,-35.390198 - parent: 4812 -- proto: BoxZiptie - entities: - - uid: 8370 - components: - - type: Transform - pos: -36.494217,16.619202 - parent: 4812 - - uid: 8432 - components: - - type: Transform - pos: -37.301926,12.401339 - parent: 4812 -- proto: BrbSign - entities: - - uid: 9086 - components: - - type: Transform - pos: 5.1968718,29.290854 - parent: 4812 -- proto: BriefcaseBrownFilled - entities: - - uid: 5384 - components: - - type: Transform - pos: 19.508135,-18.292694 - parent: 4812 - - uid: 8277 - components: - - type: Transform - pos: -16.540533,16.683895 - parent: 4812 - - uid: 9079 - components: - - type: Transform - pos: -30.580097,-29.217686 - parent: 4812 -- proto: BrigTimer - entities: - - uid: 4810 - components: - - type: Transform - pos: -27.5,18.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 7786: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 4811 - components: - - type: Transform - pos: -27.5,15.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 7785: - - Start: Close - - Timer: AutoClose - - Timer: Open -- proto: Bucket - entities: - - uid: 1477 - components: - - type: Transform - pos: -16.468277,-7.2739778 - parent: 4812 - - uid: 1497 - components: - - type: Transform - pos: -23.720804,-7.615172 - parent: 4812 - - uid: 1499 - components: - - type: Transform - pos: -20.513304,-8.561821 - parent: 4812 - - uid: 8390 - components: - - type: Transform - pos: -30.607666,31.438156 - parent: 4812 - - uid: 9617 - components: - - type: Transform - pos: -43.435364,-28.50291 - parent: 4812 - - uid: 11958 - components: - - type: Transform - pos: -10.295721,17.222569 - parent: 4812 -- proto: CableApcExtension - entities: - - uid: 258 - components: - - type: Transform - pos: -13.5,2.5 - parent: 4812 - - uid: 916 - components: - - type: Transform - pos: 7.5,2.5 - parent: 4812 - - uid: 1125 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 4812 - - uid: 1126 - components: - - type: Transform - pos: -8.5,-3.5 - parent: 4812 - - uid: 1127 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 4812 - - uid: 1128 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 4812 - - uid: 1129 - components: - - type: Transform - pos: -10.5,-4.5 - parent: 4812 - - uid: 1130 - components: - - type: Transform - pos: -10.5,-5.5 - parent: 4812 - - uid: 1131 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 4812 - - uid: 1132 - components: - - type: Transform - pos: -10.5,-7.5 - parent: 4812 - - uid: 1133 - components: - - type: Transform - pos: -10.5,-8.5 - parent: 4812 - - uid: 1134 - components: - - type: Transform - pos: -10.5,-9.5 - parent: 4812 - - uid: 1135 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 4812 - - uid: 1136 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 4812 - - uid: 1137 - components: - - type: Transform - pos: -13.5,-6.5 - parent: 4812 - - uid: 1138 - components: - - type: Transform - pos: -14.5,-6.5 - parent: 4812 - - uid: 1139 - components: - - type: Transform - pos: -15.5,-6.5 - parent: 4812 - - uid: 1140 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 4812 - - uid: 1141 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 4812 - - uid: 1142 - components: - - type: Transform - pos: -17.5,-7.5 - parent: 4812 - - uid: 1143 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 4812 - - uid: 1144 - components: - - type: Transform - pos: -17.5,-9.5 - parent: 4812 - - uid: 1145 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 4812 - - uid: 1146 - components: - - type: Transform - pos: -12.5,-8.5 - parent: 4812 - - uid: 1147 - components: - - type: Transform - pos: -13.5,-8.5 - parent: 4812 - - uid: 1148 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 4812 - - uid: 1149 - components: - - type: Transform - pos: -15.5,-8.5 - parent: 4812 - - uid: 1150 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 4812 - - uid: 1151 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 4812 - - uid: 1152 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 4812 - - uid: 1153 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 4812 - - uid: 1154 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 4812 - - uid: 1155 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 4812 - - uid: 1156 - components: - - type: Transform - pos: -8.5,0.5 - parent: 4812 - - uid: 1157 - components: - - type: Transform - pos: -8.5,1.5 - parent: 4812 - - uid: 1158 - components: - - type: Transform - pos: -8.5,2.5 - parent: 4812 - - uid: 1159 - components: - - type: Transform - pos: -8.5,3.5 - parent: 4812 - - uid: 1160 - components: - - type: Transform - pos: -8.5,4.5 - parent: 4812 - - uid: 1161 - components: - - type: Transform - pos: -8.5,5.5 - parent: 4812 - - uid: 1162 - components: - - type: Transform - pos: -8.5,6.5 - parent: 4812 - - uid: 1163 - components: - - type: Transform - pos: -8.5,7.5 - parent: 4812 - - uid: 1164 - components: - - type: Transform - pos: -8.5,8.5 - parent: 4812 - - uid: 1165 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 4812 - - uid: 1166 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 4812 - - uid: 1167 - components: - - type: Transform - pos: -9.5,4.5 - parent: 4812 - - uid: 1168 - components: - - type: Transform - pos: -9.5,8.5 - parent: 4812 - - uid: 1169 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 4812 - - uid: 1170 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 4812 - - uid: 1171 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 4812 - - uid: 1172 - components: - - type: Transform - pos: -12.5,-1.5 - parent: 4812 - - uid: 1173 - components: - - type: Transform - pos: -12.5,1.5 - parent: 4812 - - uid: 1174 - components: - - type: Transform - pos: -12.5,2.5 - parent: 4812 - - uid: 1175 - components: - - type: Transform - pos: -12.5,3.5 - parent: 4812 - - uid: 1176 - components: - - type: Transform - pos: -12.5,4.5 - parent: 4812 - - uid: 1177 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 4812 - - uid: 1178 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 4812 - - uid: 1179 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 4812 - - uid: 1180 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 4812 - - uid: 1181 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 4812 - - uid: 1182 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 4812 - - uid: 1183 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 4812 - - uid: 1184 - components: - - type: Transform - pos: -20.5,-3.5 - parent: 4812 - - uid: 1185 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 4812 - - uid: 1186 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 4812 - - uid: 1187 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 4812 - - uid: 1188 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 4812 - - uid: 1189 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 4812 - - uid: 1190 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 4812 - - uid: 1191 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 4812 - - uid: 1192 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 4812 - - uid: 1193 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 4812 - - uid: 1194 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 4812 - - uid: 1195 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 4812 - - uid: 1196 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 4812 - - uid: 1197 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 4812 - - uid: 1198 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 4812 - - uid: 1199 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 4812 - - uid: 1200 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 4812 - - uid: 1201 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 4812 - - uid: 1202 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 4812 - - uid: 1203 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 4812 - - uid: 1204 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 4812 - - uid: 1205 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 4812 - - uid: 1206 - components: - - type: Transform - pos: -4.5,0.5 - parent: 4812 - - uid: 1207 - components: - - type: Transform - pos: -4.5,1.5 - parent: 4812 - - uid: 1208 - components: - - type: Transform - pos: -4.5,2.5 - parent: 4812 - - uid: 1209 - components: - - type: Transform - pos: -4.5,3.5 - parent: 4812 - - uid: 1210 - components: - - type: Transform - pos: -4.5,4.5 - parent: 4812 - - uid: 1211 - components: - - type: Transform - pos: -4.5,5.5 - parent: 4812 - - uid: 1212 - components: - - type: Transform - pos: -4.5,6.5 - parent: 4812 - - uid: 1213 - components: - - type: Transform - pos: -4.5,7.5 - parent: 4812 - - uid: 1214 - components: - - type: Transform - pos: -4.5,8.5 - parent: 4812 - - uid: 1215 - components: - - type: Transform - pos: -4.5,9.5 - parent: 4812 - - uid: 1216 - components: - - type: Transform - pos: -12.5,14.5 - parent: 4812 - - uid: 1217 - components: - - type: Transform - pos: -12.5,15.5 - parent: 4812 - - uid: 1218 - components: - - type: Transform - pos: -12.5,16.5 - parent: 4812 - - uid: 1219 - components: - - type: Transform - pos: -12.5,17.5 - parent: 4812 - - uid: 1220 - components: - - type: Transform - pos: -12.5,14.5 - parent: 4812 - - uid: 1221 - components: - - type: Transform - pos: -12.5,13.5 - parent: 4812 - - uid: 1222 - components: - - type: Transform - pos: -12.5,12.5 - parent: 4812 - - uid: 1223 - components: - - type: Transform - pos: -12.5,11.5 - parent: 4812 - - uid: 1224 - components: - - type: Transform - pos: -12.5,10.5 - parent: 4812 - - uid: 1225 - components: - - type: Transform - pos: -13.5,10.5 - parent: 4812 - - uid: 1226 - components: - - type: Transform - pos: -14.5,10.5 - parent: 4812 - - uid: 1227 - components: - - type: Transform - pos: -15.5,10.5 - parent: 4812 - - uid: 1228 - components: - - type: Transform - pos: -17.5,10.5 - parent: 4812 - - uid: 1229 - components: - - type: Transform - pos: -18.5,10.5 - parent: 4812 - - uid: 1230 - components: - - type: Transform - pos: -16.5,10.5 - parent: 4812 - - uid: 1231 - components: - - type: Transform - pos: -19.5,10.5 - parent: 4812 - - uid: 1232 - components: - - type: Transform - pos: -20.5,10.5 - parent: 4812 - - uid: 1233 - components: - - type: Transform - pos: -18.5,9.5 - parent: 4812 - - uid: 1234 - components: - - type: Transform - pos: -18.5,8.5 - parent: 4812 - - uid: 1235 - components: - - type: Transform - pos: -18.5,7.5 - parent: 4812 - - uid: 1236 - components: - - type: Transform - pos: -12.5,5.5 - parent: 4812 - - uid: 1237 - components: - - type: Transform - pos: -12.5,6.5 - parent: 4812 - - uid: 1238 - components: - - type: Transform - pos: -12.5,7.5 - parent: 4812 - - uid: 1239 - components: - - type: Transform - pos: -12.5,8.5 - parent: 4812 - - uid: 1240 - components: - - type: Transform - pos: -12.5,9.5 - parent: 4812 - - uid: 1241 - components: - - type: Transform - pos: -14.5,2.5 - parent: 4812 - - uid: 1242 - components: - - type: Transform - pos: -15.5,2.5 - parent: 4812 - - uid: 1243 - components: - - type: Transform - pos: -16.5,2.5 - parent: 4812 - - uid: 1244 - components: - - type: Transform - pos: -17.5,2.5 - parent: 4812 - - uid: 1245 - components: - - type: Transform - pos: -18.5,2.5 - parent: 4812 - - uid: 1246 - components: - - type: Transform - pos: -19.5,2.5 - parent: 4812 - - uid: 1247 - components: - - type: Transform - pos: -20.5,2.5 - parent: 4812 - - uid: 1248 - components: - - type: Transform - pos: -21.5,2.5 - parent: 4812 - - uid: 1249 - components: - - type: Transform - pos: -22.5,2.5 - parent: 4812 - - uid: 1250 - components: - - type: Transform - pos: -18.5,3.5 - parent: 4812 - - uid: 1251 - components: - - type: Transform - pos: -18.5,4.5 - parent: 4812 - - uid: 1257 - components: - - type: Transform - pos: -18.5,1.5 - parent: 4812 - - uid: 1258 - components: - - type: Transform - pos: -18.5,0.5 - parent: 4812 - - uid: 1259 - components: - - type: Transform - pos: -18.5,-0.5 - parent: 4812 - - uid: 1260 - components: - - type: Transform - pos: -21.5,10.5 - parent: 4812 - - uid: 1261 - components: - - type: Transform - pos: -22.5,10.5 - parent: 4812 - - uid: 1262 - components: - - type: Transform - pos: -22.5,11.5 - parent: 4812 - - uid: 1263 - components: - - type: Transform - pos: -22.5,12.5 - parent: 4812 - - uid: 1264 - components: - - type: Transform - pos: -22.5,13.5 - parent: 4812 - - uid: 1265 - components: - - type: Transform - pos: -22.5,14.5 - parent: 4812 - - uid: 1266 - components: - - type: Transform - pos: -22.5,15.5 - parent: 4812 - - uid: 1267 - components: - - type: Transform - pos: -22.5,16.5 - parent: 4812 - - uid: 1268 - components: - - type: Transform - pos: -21.5,16.5 - parent: 4812 - - uid: 1269 - components: - - type: Transform - pos: -20.5,16.5 - parent: 4812 - - uid: 1270 - components: - - type: Transform - pos: -18.5,16.5 - parent: 4812 - - uid: 1271 - components: - - type: Transform - pos: -19.5,16.5 - parent: 4812 - - uid: 1272 - components: - - type: Transform - pos: -17.5,16.5 - parent: 4812 - - uid: 1273 - components: - - type: Transform - pos: -17.5,15.5 - parent: 4812 - - uid: 1274 - components: - - type: Transform - pos: -17.5,14.5 - parent: 4812 - - uid: 1275 - components: - - type: Transform - pos: -11.5,13.5 - parent: 4812 - - uid: 1276 - components: - - type: Transform - pos: -10.5,13.5 - parent: 4812 - - uid: 1277 - components: - - type: Transform - pos: -9.5,13.5 - parent: 4812 - - uid: 1278 - components: - - type: Transform - pos: -8.5,13.5 - parent: 4812 - - uid: 1279 - components: - - type: Transform - pos: -7.5,13.5 - parent: 4812 - - uid: 1280 - components: - - type: Transform - pos: -6.5,13.5 - parent: 4812 - - uid: 1281 - components: - - type: Transform - pos: -5.5,13.5 - parent: 4812 - - uid: 1282 - components: - - type: Transform - pos: -4.5,13.5 - parent: 4812 - - uid: 1283 - components: - - type: Transform - pos: -3.5,13.5 - parent: 4812 - - uid: 1284 - components: - - type: Transform - pos: -2.5,13.5 - parent: 4812 - - uid: 1285 - components: - - type: Transform - pos: -1.5,13.5 - parent: 4812 - - uid: 1286 - components: - - type: Transform - pos: -2.5,14.5 - parent: 4812 - - uid: 1287 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 4812 - - uid: 1288 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 4812 - - uid: 1289 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 4812 - - uid: 1290 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 4812 - - uid: 1291 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 4812 - - uid: 1292 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 4812 - - uid: 1293 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 4812 - - uid: 1294 - components: - - type: Transform - pos: 2.5,-8.5 - parent: 4812 - - uid: 1295 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 4812 - - uid: 1296 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 4812 - - uid: 1297 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 4812 - - uid: 1298 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 4812 - - uid: 1299 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 4812 - - uid: 1300 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 4812 - - uid: 1301 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 4812 - - uid: 1302 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 4812 - - uid: 1303 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 4812 - - uid: 1304 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 4812 - - uid: 1305 - components: - - type: Transform - pos: 4.5,-0.5 - parent: 4812 - - uid: 1306 - components: - - type: Transform - pos: 4.5,0.5 - parent: 4812 - - uid: 1307 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 4812 - - uid: 1308 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 4812 - - uid: 1309 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 4812 - - uid: 1310 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 4812 - - uid: 1311 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 4812 - - uid: 1312 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 4812 - - uid: 1313 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 4812 - - uid: 1314 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 4812 - - uid: 1315 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 4812 - - uid: 1316 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 4812 - - uid: 1317 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 4812 - - uid: 1318 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 4812 - - uid: 1319 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 4812 - - uid: 1320 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 4812 - - uid: 1321 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 4812 - - uid: 1322 - components: - - type: Transform - pos: 0.5,0.5 - parent: 4812 - - uid: 1323 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 4812 - - uid: 1324 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 4812 - - uid: 1325 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 4812 - - uid: 1326 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 4812 - - uid: 1327 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 4812 - - uid: 1328 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 4812 - - uid: 1329 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 4812 - - uid: 1330 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 4812 - - uid: 1331 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 4812 - - uid: 1332 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 4812 - - uid: 1333 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 4812 - - uid: 1334 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 4812 - - uid: 1335 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 4812 - - uid: 1336 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 4812 - - uid: 1337 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 4812 - - uid: 1338 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 4812 - - uid: 1339 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 4812 - - uid: 1340 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 4812 - - uid: 1341 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 4812 - - uid: 1342 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 4812 - - uid: 1343 - components: - - type: Transform - pos: -1.5,-11.5 - parent: 4812 - - uid: 1344 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 4812 - - uid: 1345 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 4812 - - uid: 1346 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 4812 - - uid: 1347 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 4812 - - uid: 1348 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 4812 - - uid: 1349 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 4812 - - uid: 1350 - components: - - type: Transform - pos: 11.5,-9.5 - parent: 4812 - - uid: 1351 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 4812 - - uid: 1352 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 4812 - - uid: 1353 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 4812 - - uid: 1354 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 4812 - - uid: 1355 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 4812 - - uid: 1356 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 4812 - - uid: 1357 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 4812 - - uid: 1358 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 4812 - - uid: 1359 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 4812 - - uid: 1361 - components: - - type: Transform - pos: 7.5,3.5 - parent: 4812 - - uid: 1362 - components: - - type: Transform - pos: 8.5,3.5 - parent: 4812 - - uid: 1363 - components: - - type: Transform - pos: 11.5,3.5 - parent: 4812 - - uid: 1364 - components: - - type: Transform - pos: 10.5,3.5 - parent: 4812 - - uid: 1365 - components: - - type: Transform - pos: 9.5,3.5 - parent: 4812 - - uid: 1366 - components: - - type: Transform - pos: 9.5,2.5 - parent: 4812 - - uid: 1369 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 4812 - - uid: 1370 - components: - - type: Transform - pos: 11.5,4.5 - parent: 4812 - - uid: 1371 - components: - - type: Transform - pos: 11.5,5.5 - parent: 4812 - - uid: 1372 - components: - - type: Transform - pos: 11.5,6.5 - parent: 4812 - - uid: 1373 - components: - - type: Transform - pos: 11.5,7.5 - parent: 4812 - - uid: 1374 - components: - - type: Transform - pos: 11.5,8.5 - parent: 4812 - - uid: 1375 - components: - - type: Transform - pos: 11.5,9.5 - parent: 4812 - - uid: 1376 - components: - - type: Transform - pos: 11.5,10.5 - parent: 4812 - - uid: 1377 - components: - - type: Transform - pos: 11.5,11.5 - parent: 4812 - - uid: 1378 - components: - - type: Transform - pos: 11.5,12.5 - parent: 4812 - - uid: 1379 - components: - - type: Transform - pos: 11.5,13.5 - parent: 4812 - - uid: 1380 - components: - - type: Transform - pos: 11.5,14.5 - parent: 4812 - - uid: 1381 - components: - - type: Transform - pos: 11.5,15.5 - parent: 4812 - - uid: 1382 - components: - - type: Transform - pos: 11.5,16.5 - parent: 4812 - - uid: 1383 - components: - - type: Transform - pos: 9.5,4.5 - parent: 4812 - - uid: 1384 - components: - - type: Transform - pos: 9.5,5.5 - parent: 4812 - - uid: 1385 - components: - - type: Transform - pos: 9.5,6.5 - parent: 4812 - - uid: 1386 - components: - - type: Transform - pos: 9.5,7.5 - parent: 4812 - - uid: 1387 - components: - - type: Transform - pos: 9.5,8.5 - parent: 4812 - - uid: 1388 - components: - - type: Transform - pos: 9.5,9.5 - parent: 4812 - - uid: 1389 - components: - - type: Transform - pos: 9.5,10.5 - parent: 4812 - - uid: 1390 - components: - - type: Transform - pos: 9.5,11.5 - parent: 4812 - - uid: 1391 - components: - - type: Transform - pos: 8.5,11.5 - parent: 4812 - - uid: 1392 - components: - - type: Transform - pos: 7.5,11.5 - parent: 4812 - - uid: 1393 - components: - - type: Transform - pos: 6.5,11.5 - parent: 4812 - - uid: 1394 - components: - - type: Transform - pos: 5.5,11.5 - parent: 4812 - - uid: 1395 - components: - - type: Transform - pos: 4.5,11.5 - parent: 4812 - - uid: 1396 - components: - - type: Transform - pos: 3.5,11.5 - parent: 4812 - - uid: 1397 - components: - - type: Transform - pos: 3.5,12.5 - parent: 4812 - - uid: 1398 - components: - - type: Transform - pos: 3.5,13.5 - parent: 4812 - - uid: 1399 - components: - - type: Transform - pos: 3.5,14.5 - parent: 4812 - - uid: 1400 - components: - - type: Transform - pos: 2.5,14.5 - parent: 4812 - - uid: 1401 - components: - - type: Transform - pos: 1.5,14.5 - parent: 4812 - - uid: 1402 - components: - - type: Transform - pos: 11.5,17.5 - parent: 4812 - - uid: 1403 - components: - - type: Transform - pos: 11.5,18.5 - parent: 4812 - - uid: 1404 - components: - - type: Transform - pos: 11.5,19.5 - parent: 4812 - - uid: 1405 - components: - - type: Transform - pos: 10.5,19.5 - parent: 4812 - - uid: 1406 - components: - - type: Transform - pos: 9.5,19.5 - parent: 4812 - - uid: 1407 - components: - - type: Transform - pos: 8.5,19.5 - parent: 4812 - - uid: 1408 - components: - - type: Transform - pos: 7.5,19.5 - parent: 4812 - - uid: 1409 - components: - - type: Transform - pos: 6.5,19.5 - parent: 4812 - - uid: 1410 - components: - - type: Transform - pos: 6.5,18.5 - parent: 4812 - - uid: 1411 - components: - - type: Transform - pos: 6.5,17.5 - parent: 4812 - - uid: 1412 - components: - - type: Transform - pos: 6.5,16.5 - parent: 4812 - - uid: 1413 - components: - - type: Transform - pos: 6.5,15.5 - parent: 4812 - - uid: 1414 - components: - - type: Transform - pos: 6.5,14.5 - parent: 4812 - - uid: 1415 - components: - - type: Transform - pos: 7.5,14.5 - parent: 4812 - - uid: 1416 - components: - - type: Transform - pos: 8.5,14.5 - parent: 4812 - - uid: 1417 - components: - - type: Transform - pos: 7.5,17.5 - parent: 4812 - - uid: 1418 - components: - - type: Transform - pos: 8.5,17.5 - parent: 4812 - - uid: 1420 - components: - - type: Transform - pos: 6.5,7.5 - parent: 4812 - - uid: 1421 - components: - - type: Transform - pos: 6.5,8.5 - parent: 4812 - - uid: 1422 - components: - - type: Transform - pos: 6.5,9.5 - parent: 4812 - - uid: 1423 - components: - - type: Transform - pos: 5.5,7.5 - parent: 4812 - - uid: 1424 - components: - - type: Transform - pos: 4.5,7.5 - parent: 4812 - - uid: 1425 - components: - - type: Transform - pos: 3.5,7.5 - parent: 4812 - - uid: 1426 - components: - - type: Transform - pos: 2.5,7.5 - parent: 4812 - - uid: 1427 - components: - - type: Transform - pos: 2.5,8.5 - parent: 4812 - - uid: 1428 - components: - - type: Transform - pos: 2.5,9.5 - parent: 4812 - - uid: 1429 - components: - - type: Transform - pos: 2.5,6.5 - parent: 4812 - - uid: 1430 - components: - - type: Transform - pos: 2.5,5.5 - parent: 4812 - - uid: 1431 - components: - - type: Transform - pos: 6.5,2.5 - parent: 4812 - - uid: 1432 - components: - - type: Transform - pos: 5.5,2.5 - parent: 4812 - - uid: 1433 - components: - - type: Transform - pos: 4.5,2.5 - parent: 4812 - - uid: 1434 - components: - - type: Transform - pos: 3.5,2.5 - parent: 4812 - - uid: 1435 - components: - - type: Transform - pos: 2.5,2.5 - parent: 4812 - - uid: 1436 - components: - - type: Transform - pos: 1.5,2.5 - parent: 4812 - - uid: 1437 - components: - - type: Transform - pos: 0.5,2.5 - parent: 4812 - - uid: 1438 - components: - - type: Transform - pos: 0.5,3.5 - parent: 4812 - - uid: 1439 - components: - - type: Transform - pos: 0.5,4.5 - parent: 4812 - - uid: 1440 - components: - - type: Transform - pos: 0.5,5.5 - parent: 4812 - - uid: 1441 - components: - - type: Transform - pos: 0.5,6.5 - parent: 4812 - - uid: 1442 - components: - - type: Transform - pos: 0.5,7.5 - parent: 4812 - - uid: 1443 - components: - - type: Transform - pos: 0.5,8.5 - parent: 4812 - - uid: 1444 - components: - - type: Transform - pos: 0.5,9.5 - parent: 4812 - - uid: 1445 - components: - - type: Transform - pos: -0.5,9.5 - parent: 4812 - - uid: 1446 - components: - - type: Transform - pos: -0.5,10.5 - parent: 4812 - - uid: 1447 - components: - - type: Transform - pos: -0.5,4.5 - parent: 4812 - - uid: 1448 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 4812 - - uid: 1449 - components: - - type: Transform - pos: -3.5,1.5 - parent: 4812 - - uid: 1450 - components: - - type: Transform - pos: -3.5,7.5 - parent: 4812 - - uid: 1451 - components: - - type: Transform - pos: -5.5,9.5 - parent: 4812 - - uid: 1452 - components: - - type: Transform - pos: -5.5,10.5 - parent: 4812 - - uid: 1523 - components: - - type: Transform - pos: -22.5,3.5 - parent: 4812 - - uid: 1524 - components: - - type: Transform - pos: -22.5,4.5 - parent: 4812 - - uid: 1525 - components: - - type: Transform - pos: -22.5,5.5 - parent: 4812 - - uid: 1526 - components: - - type: Transform - pos: -22.5,1.5 - parent: 4812 - - uid: 1527 - components: - - type: Transform - pos: -22.5,0.5 - parent: 4812 - - uid: 1528 - components: - - type: Transform - pos: -22.5,-0.5 - parent: 4812 - - uid: 1529 - components: - - type: Transform - pos: -22.5,-1.5 - parent: 4812 - - uid: 1530 - components: - - type: Transform - pos: -23.5,1.5 - parent: 4812 - - uid: 1546 - components: - - type: Transform - pos: 8.5,8.5 - parent: 4812 - - uid: 1547 - components: - - type: Transform - pos: 7.5,8.5 - parent: 4812 - - uid: 2244 - components: - - type: Transform - pos: -6.5,31.5 - parent: 4812 - - uid: 2245 - components: - - type: Transform - pos: -5.5,31.5 - parent: 4812 - - uid: 2246 - components: - - type: Transform - pos: -4.5,31.5 - parent: 4812 - - uid: 2247 - components: - - type: Transform - pos: -3.5,31.5 - parent: 4812 - - uid: 2248 - components: - - type: Transform - pos: -2.5,31.5 - parent: 4812 - - uid: 2249 - components: - - type: Transform - pos: -2.5,30.5 - parent: 4812 - - uid: 2250 - components: - - type: Transform - pos: -2.5,29.5 - parent: 4812 - - uid: 2251 - components: - - type: Transform - pos: -2.5,28.5 - parent: 4812 - - uid: 2252 - components: - - type: Transform - pos: -3.5,28.5 - parent: 4812 - - uid: 2253 - components: - - type: Transform - pos: -4.5,28.5 - parent: 4812 - - uid: 2254 - components: - - type: Transform - pos: -5.5,28.5 - parent: 4812 - - uid: 2255 - components: - - type: Transform - pos: -1.5,28.5 - parent: 4812 - - uid: 2256 - components: - - type: Transform - pos: -0.5,28.5 - parent: 4812 - - uid: 2257 - components: - - type: Transform - pos: 0.5,28.5 - parent: 4812 - - uid: 2258 - components: - - type: Transform - pos: 1.5,28.5 - parent: 4812 - - uid: 2259 - components: - - type: Transform - pos: -7.5,31.5 - parent: 4812 - - uid: 2260 - components: - - type: Transform - pos: -8.5,31.5 - parent: 4812 - - uid: 2261 - components: - - type: Transform - pos: -7.5,30.5 - parent: 4812 - - uid: 2262 - components: - - type: Transform - pos: -7.5,29.5 - parent: 4812 - - uid: 2263 - components: - - type: Transform - pos: -7.5,28.5 - parent: 4812 - - uid: 2264 - components: - - type: Transform - pos: -7.5,27.5 - parent: 4812 - - uid: 2265 - components: - - type: Transform - pos: -7.5,26.5 - parent: 4812 - - uid: 2266 - components: - - type: Transform - pos: -7.5,25.5 - parent: 4812 - - uid: 2267 - components: - - type: Transform - pos: -7.5,24.5 - parent: 4812 - - uid: 2268 - components: - - type: Transform - pos: -7.5,23.5 - parent: 4812 - - uid: 2269 - components: - - type: Transform - pos: -7.5,22.5 - parent: 4812 - - uid: 2270 - components: - - type: Transform - pos: -7.5,32.5 - parent: 4812 - - uid: 2271 - components: - - type: Transform - pos: -7.5,33.5 - parent: 4812 - - uid: 2272 - components: - - type: Transform - pos: -7.5,34.5 - parent: 4812 - - uid: 2273 - components: - - type: Transform - pos: -2.5,32.5 - parent: 4812 - - uid: 2274 - components: - - type: Transform - pos: -2.5,33.5 - parent: 4812 - - uid: 2275 - components: - - type: Transform - pos: -2.5,34.5 - parent: 4812 - - uid: 2276 - components: - - type: Transform - pos: -3.5,34.5 - parent: 4812 - - uid: 2277 - components: - - type: Transform - pos: -5.5,34.5 - parent: 4812 - - uid: 2278 - components: - - type: Transform - pos: -4.5,34.5 - parent: 4812 - - uid: 2279 - components: - - type: Transform - pos: -1.5,34.5 - parent: 4812 - - uid: 2280 - components: - - type: Transform - pos: -0.5,34.5 - parent: 4812 - - uid: 2281 - components: - - type: Transform - pos: 0.5,34.5 - parent: 4812 - - uid: 2282 - components: - - type: Transform - pos: 1.5,34.5 - parent: 4812 - - uid: 2283 - components: - - type: Transform - pos: 2.5,34.5 - parent: 4812 - - uid: 2284 - components: - - type: Transform - pos: -1.5,32.5 - parent: 4812 - - uid: 2285 - components: - - type: Transform - pos: -0.5,32.5 - parent: 4812 - - uid: 2286 - components: - - type: Transform - pos: 0.5,32.5 - parent: 4812 - - uid: 2287 - components: - - type: Transform - pos: 1.5,32.5 - parent: 4812 - - uid: 2288 - components: - - type: Transform - pos: 2.5,32.5 - parent: 4812 - - uid: 2289 - components: - - type: Transform - pos: 3.5,32.5 - parent: 4812 - - uid: 2290 - components: - - type: Transform - pos: 4.5,32.5 - parent: 4812 - - uid: 2291 - components: - - type: Transform - pos: 5.5,32.5 - parent: 4812 - - uid: 2292 - components: - - type: Transform - pos: 6.5,32.5 - parent: 4812 - - uid: 2293 - components: - - type: Transform - pos: 2.5,31.5 - parent: 4812 - - uid: 2294 - components: - - type: Transform - pos: 2.5,30.5 - parent: 4812 - - uid: 2295 - components: - - type: Transform - pos: 2.5,29.5 - parent: 4812 - - uid: 2296 - components: - - type: Transform - pos: 9.5,27.5 - parent: 4812 - - uid: 2297 - components: - - type: Transform - pos: 9.5,26.5 - parent: 4812 - - uid: 2298 - components: - - type: Transform - pos: 9.5,25.5 - parent: 4812 - - uid: 2299 - components: - - type: Transform - pos: 9.5,24.5 - parent: 4812 - - uid: 2300 - components: - - type: Transform - pos: 9.5,23.5 - parent: 4812 - - uid: 2301 - components: - - type: Transform - pos: 9.5,22.5 - parent: 4812 - - uid: 2302 - components: - - type: Transform - pos: 9.5,21.5 - parent: 4812 - - uid: 2303 - components: - - type: Transform - pos: 8.5,22.5 - parent: 4812 - - uid: 2304 - components: - - type: Transform - pos: 6.5,22.5 - parent: 4812 - - uid: 2305 - components: - - type: Transform - pos: 5.5,22.5 - parent: 4812 - - uid: 2306 - components: - - type: Transform - pos: 7.5,22.5 - parent: 4812 - - uid: 2307 - components: - - type: Transform - pos: 10.5,22.5 - parent: 4812 - - uid: 2308 - components: - - type: Transform - pos: 8.5,25.5 - parent: 4812 - - uid: 2309 - components: - - type: Transform - pos: 7.5,25.5 - parent: 4812 - - uid: 2310 - components: - - type: Transform - pos: 6.5,25.5 - parent: 4812 - - uid: 2311 - components: - - type: Transform - pos: 6.5,26.5 - parent: 4812 - - uid: 2312 - components: - - type: Transform - pos: 6.5,27.5 - parent: 4812 - - uid: 2313 - components: - - type: Transform - pos: 6.5,28.5 - parent: 4812 - - uid: 2314 - components: - - type: Transform - pos: 6.5,29.5 - parent: 4812 - - uid: 2315 - components: - - type: Transform - pos: 7.5,28.5 - parent: 4812 - - uid: 2316 - components: - - type: Transform - pos: 8.5,28.5 - parent: 4812 - - uid: 2317 - components: - - type: Transform - pos: 9.5,28.5 - parent: 4812 - - uid: 2318 - components: - - type: Transform - pos: 10.5,28.5 - parent: 4812 - - uid: 2319 - components: - - type: Transform - pos: 10.5,29.5 - parent: 4812 - - uid: 2320 - components: - - type: Transform - pos: 10.5,30.5 - parent: 4812 - - uid: 2321 - components: - - type: Transform - pos: 5.5,25.5 - parent: 4812 - - uid: 2322 - components: - - type: Transform - pos: 4.5,25.5 - parent: 4812 - - uid: 2323 - components: - - type: Transform - pos: 3.5,25.5 - parent: 4812 - - uid: 2324 - components: - - type: Transform - pos: 3.5,24.5 - parent: 4812 - - uid: 2325 - components: - - type: Transform - pos: 3.5,23.5 - parent: 4812 - - uid: 2326 - components: - - type: Transform - pos: 3.5,22.5 - parent: 4812 - - uid: 2327 - components: - - type: Transform - pos: 3.5,21.5 - parent: 4812 - - uid: 2328 - components: - - type: Transform - pos: 0.5,21.5 - parent: 4812 - - uid: 2329 - components: - - type: Transform - pos: 0.5,20.5 - parent: 4812 - - uid: 2330 - components: - - type: Transform - pos: 0.5,19.5 - parent: 4812 - - uid: 2331 - components: - - type: Transform - pos: -0.5,19.5 - parent: 4812 - - uid: 2332 - components: - - type: Transform - pos: -1.5,19.5 - parent: 4812 - - uid: 2333 - components: - - type: Transform - pos: -2.5,19.5 - parent: 4812 - - uid: 2334 - components: - - type: Transform - pos: -3.5,19.5 - parent: 4812 - - uid: 2335 - components: - - type: Transform - pos: -4.5,19.5 - parent: 4812 - - uid: 2336 - components: - - type: Transform - pos: -5.5,19.5 - parent: 4812 - - uid: 2337 - components: - - type: Transform - pos: -6.5,19.5 - parent: 4812 - - uid: 2338 - components: - - type: Transform - pos: -7.5,19.5 - parent: 4812 - - uid: 2339 - components: - - type: Transform - pos: -8.5,19.5 - parent: 4812 - - uid: 2340 - components: - - type: Transform - pos: -9.5,19.5 - parent: 4812 - - uid: 2341 - components: - - type: Transform - pos: -10.5,19.5 - parent: 4812 - - uid: 2342 - components: - - type: Transform - pos: -11.5,19.5 - parent: 4812 - - uid: 2343 - components: - - type: Transform - pos: -12.5,19.5 - parent: 4812 - - uid: 2344 - components: - - type: Transform - pos: -13.5,19.5 - parent: 4812 - - uid: 2345 - components: - - type: Transform - pos: -14.5,19.5 - parent: 4812 - - uid: 2346 - components: - - type: Transform - pos: -15.5,19.5 - parent: 4812 - - uid: 2347 - components: - - type: Transform - pos: -16.5,19.5 - parent: 4812 - - uid: 2348 - components: - - type: Transform - pos: 1.5,19.5 - parent: 4812 - - uid: 2349 - components: - - type: Transform - pos: 2.5,19.5 - parent: 4812 - - uid: 2350 - components: - - type: Transform - pos: 3.5,19.5 - parent: 4812 - - uid: 2351 - components: - - type: Transform - pos: 4.5,19.5 - parent: 4812 - - uid: 2352 - components: - - type: Transform - pos: 0.5,22.5 - parent: 4812 - - uid: 2353 - components: - - type: Transform - pos: 0.5,23.5 - parent: 4812 - - uid: 2354 - components: - - type: Transform - pos: 0.5,24.5 - parent: 4812 - - uid: 2355 - components: - - type: Transform - pos: 0.5,25.5 - parent: 4812 - - uid: 2356 - components: - - type: Transform - pos: -0.5,25.5 - parent: 4812 - - uid: 2357 - components: - - type: Transform - pos: -1.5,25.5 - parent: 4812 - - uid: 2358 - components: - - type: Transform - pos: -2.5,25.5 - parent: 4812 - - uid: 2359 - components: - - type: Transform - pos: -3.5,25.5 - parent: 4812 - - uid: 2360 - components: - - type: Transform - pos: -4.5,25.5 - parent: 4812 - - uid: 2361 - components: - - type: Transform - pos: -0.5,23.5 - parent: 4812 - - uid: 2362 - components: - - type: Transform - pos: -1.5,23.5 - parent: 4812 - - uid: 2363 - components: - - type: Transform - pos: -2.5,23.5 - parent: 4812 - - uid: 2364 - components: - - type: Transform - pos: -3.5,23.5 - parent: 4812 - - uid: 2365 - components: - - type: Transform - pos: -4.5,23.5 - parent: 4812 - - uid: 2367 - components: - - type: Transform - pos: -14.5,25.5 - parent: 4812 - - uid: 2368 - components: - - type: Transform - pos: -14.5,24.5 - parent: 4812 - - uid: 2369 - components: - - type: Transform - pos: -14.5,23.5 - parent: 4812 - - uid: 2370 - components: - - type: Transform - pos: -14.5,22.5 - parent: 4812 - - uid: 2371 - components: - - type: Transform - pos: -15.5,24.5 - parent: 4812 - - uid: 2372 - components: - - type: Transform - pos: -13.5,24.5 - parent: 4812 - - uid: 2373 - components: - - type: Transform - pos: -12.5,24.5 - parent: 4812 - - uid: 2374 - components: - - type: Transform - pos: -11.5,24.5 - parent: 4812 - - uid: 2375 - components: - - type: Transform - pos: -11.5,25.5 - parent: 4812 - - uid: 2376 - components: - - type: Transform - pos: -11.5,26.5 - parent: 4812 - - uid: 2377 - components: - - type: Transform - pos: -11.5,27.5 - parent: 4812 - - uid: 2378 - components: - - type: Transform - pos: -11.5,28.5 - parent: 4812 - - uid: 2379 - components: - - type: Transform - pos: -12.5,28.5 - parent: 4812 - - uid: 2380 - components: - - type: Transform - pos: -13.5,28.5 - parent: 4812 - - uid: 2381 - components: - - type: Transform - pos: -14.5,28.5 - parent: 4812 - - uid: 2382 - components: - - type: Transform - pos: -15.5,28.5 - parent: 4812 - - uid: 2383 - components: - - type: Transform - pos: -11.5,23.5 - parent: 4812 - - uid: 2384 - components: - - type: Transform - pos: -11.5,22.5 - parent: 4812 - - uid: 2395 - components: - - type: Transform - pos: -10.5,23.5 - parent: 4812 - - uid: 2652 - components: - - type: Transform - pos: -11.5,-57.5 - parent: 4812 - - uid: 2815 - components: - - type: Transform - pos: 16.5,35.5 - parent: 4812 - - uid: 2816 - components: - - type: Transform - pos: 16.5,34.5 - parent: 4812 - - uid: 2823 - components: - - type: Transform - pos: 19.5,35.5 - parent: 4812 - - uid: 2826 - components: - - type: Transform - pos: 16.5,33.5 - parent: 4812 - - uid: 2827 - components: - - type: Transform - pos: 21.5,25.5 - parent: 4812 - - uid: 2833 - components: - - type: Transform - pos: 11.5,32.5 - parent: 4812 - - uid: 2846 - components: - - type: Transform - pos: 18.5,35.5 - parent: 4812 - - uid: 2847 - components: - - type: Transform - pos: 16.5,30.5 - parent: 4812 - - uid: 2848 - components: - - type: Transform - pos: 22.5,25.5 - parent: 4812 - - uid: 2865 - components: - - type: Transform - pos: 16.5,32.5 - parent: 4812 - - uid: 2867 - components: - - type: Transform - pos: 20.5,27.5 - parent: 4812 - - uid: 2868 - components: - - type: Transform - pos: 20.5,25.5 - parent: 4812 - - uid: 2869 - components: - - type: Transform - pos: 16.5,31.5 - parent: 4812 - - uid: 3038 - components: - - type: Transform - pos: 22.5,27.5 - parent: 4812 - - uid: 3039 - components: - - type: Transform - pos: 21.5,27.5 - parent: 4812 - - uid: 3136 - components: - - type: Transform - pos: 17.5,22.5 - parent: 4812 - - uid: 3137 - components: - - type: Transform - pos: 17.5,23.5 - parent: 4812 - - uid: 3138 - components: - - type: Transform - pos: 17.5,24.5 - parent: 4812 - - uid: 3139 - components: - - type: Transform - pos: 17.5,25.5 - parent: 4812 - - uid: 3140 - components: - - type: Transform - pos: 17.5,26.5 - parent: 4812 - - uid: 3141 - components: - - type: Transform - pos: 18.5,26.5 - parent: 4812 - - uid: 3142 - components: - - type: Transform - pos: 19.5,26.5 - parent: 4812 - - uid: 3143 - components: - - type: Transform - pos: 20.5,26.5 - parent: 4812 - - uid: 3146 - components: - - type: Transform - pos: 18.5,24.5 - parent: 4812 - - uid: 3147 - components: - - type: Transform - pos: 19.5,24.5 - parent: 4812 - - uid: 3148 - components: - - type: Transform - pos: 20.5,24.5 - parent: 4812 - - uid: 3151 - components: - - type: Transform - pos: 16.5,26.5 - parent: 4812 - - uid: 3152 - components: - - type: Transform - pos: 15.5,26.5 - parent: 4812 - - uid: 3153 - components: - - type: Transform - pos: 15.5,27.5 - parent: 4812 - - uid: 3154 - components: - - type: Transform - pos: 15.5,28.5 - parent: 4812 - - uid: 3155 - components: - - type: Transform - pos: 15.5,29.5 - parent: 4812 - - uid: 3156 - components: - - type: Transform - pos: 16.5,29.5 - parent: 4812 - - uid: 3157 - components: - - type: Transform - pos: 17.5,21.5 - parent: 4812 - - uid: 3158 - components: - - type: Transform - pos: 17.5,20.5 - parent: 4812 - - uid: 3159 - components: - - type: Transform - pos: 17.5,19.5 - parent: 4812 - - uid: 3160 - components: - - type: Transform - pos: 17.5,18.5 - parent: 4812 - - uid: 3161 - components: - - type: Transform - pos: 17.5,17.5 - parent: 4812 - - uid: 3162 - components: - - type: Transform - pos: 16.5,20.5 - parent: 4812 - - uid: 3163 - components: - - type: Transform - pos: 15.5,20.5 - parent: 4812 - - uid: 3164 - components: - - type: Transform - pos: 18.5,20.5 - parent: 4812 - - uid: 3165 - components: - - type: Transform - pos: 19.5,20.5 - parent: 4812 - - uid: 3166 - components: - - type: Transform - pos: 16.5,18.5 - parent: 4812 - - uid: 3167 - components: - - type: Transform - pos: 15.5,18.5 - parent: 4812 - - uid: 3168 - components: - - type: Transform - pos: 19.5,18.5 - parent: 4812 - - uid: 3169 - components: - - type: Transform - pos: 18.5,18.5 - parent: 4812 - - uid: 3170 - components: - - type: Transform - pos: 19.5,17.5 - parent: 4812 - - uid: 3171 - components: - - type: Transform - pos: 19.5,16.5 - parent: 4812 - - uid: 3172 - components: - - type: Transform - pos: 19.5,15.5 - parent: 4812 - - uid: 3173 - components: - - type: Transform - pos: 19.5,14.5 - parent: 4812 - - uid: 3174 - components: - - type: Transform - pos: 20.5,14.5 - parent: 4812 - - uid: 3175 - components: - - type: Transform - pos: 21.5,14.5 - parent: 4812 - - uid: 3176 - components: - - type: Transform - pos: 22.5,14.5 - parent: 4812 - - uid: 3177 - components: - - type: Transform - pos: 23.5,14.5 - parent: 4812 - - uid: 3178 - components: - - type: Transform - pos: 24.5,14.5 - parent: 4812 - - uid: 3179 - components: - - type: Transform - pos: 25.5,14.5 - parent: 4812 - - uid: 3180 - components: - - type: Transform - pos: 26.5,14.5 - parent: 4812 - - uid: 3181 - components: - - type: Transform - pos: 27.5,14.5 - parent: 4812 - - uid: 3182 - components: - - type: Transform - pos: 18.5,14.5 - parent: 4812 - - uid: 3183 - components: - - type: Transform - pos: 17.5,14.5 - parent: 4812 - - uid: 3184 - components: - - type: Transform - pos: 16.5,14.5 - parent: 4812 - - uid: 3185 - components: - - type: Transform - pos: 15.5,14.5 - parent: 4812 - - uid: 3186 - components: - - type: Transform - pos: 14.5,14.5 - parent: 4812 - - uid: 3192 - components: - - type: Transform - pos: 17.5,35.5 - parent: 4812 - - uid: 3195 - components: - - type: Transform - pos: 12.5,32.5 - parent: 4812 - - uid: 3196 - components: - - type: Transform - pos: 12.5,31.5 - parent: 4812 - - uid: 3197 - components: - - type: Transform - pos: 12.5,30.5 - parent: 4812 - - uid: 3198 - components: - - type: Transform - pos: 12.5,29.5 - parent: 4812 - - uid: 3199 - components: - - type: Transform - pos: 12.5,28.5 - parent: 4812 - - uid: 3200 - components: - - type: Transform - pos: 12.5,27.5 - parent: 4812 - - uid: 3201 - components: - - type: Transform - pos: 12.5,26.5 - parent: 4812 - - uid: 3202 - components: - - type: Transform - pos: 12.5,25.5 - parent: 4812 - - uid: 3203 - components: - - type: Transform - pos: 12.5,24.5 - parent: 4812 - - uid: 3204 - components: - - type: Transform - pos: 12.5,23.5 - parent: 4812 - - uid: 3205 - components: - - type: Transform - pos: 12.5,22.5 - parent: 4812 - - uid: 3897 - components: - - type: Transform - pos: 11.5,51.5 - parent: 4812 - - uid: 3898 - components: - - type: Transform - pos: 11.5,50.5 - parent: 4812 - - uid: 3899 - components: - - type: Transform - pos: 10.5,50.5 - parent: 4812 - - uid: 3900 - components: - - type: Transform - pos: 10.5,49.5 - parent: 4812 - - uid: 3901 - components: - - type: Transform - pos: 10.5,48.5 - parent: 4812 - - uid: 3902 - components: - - type: Transform - pos: 10.5,47.5 - parent: 4812 - - uid: 3903 - components: - - type: Transform - pos: 10.5,46.5 - parent: 4812 - - uid: 3904 - components: - - type: Transform - pos: 10.5,45.5 - parent: 4812 - - uid: 3905 - components: - - type: Transform - pos: 10.5,44.5 - parent: 4812 - - uid: 3906 - components: - - type: Transform - pos: 10.5,43.5 - parent: 4812 - - uid: 3907 - components: - - type: Transform - pos: 11.5,45.5 - parent: 4812 - - uid: 3908 - components: - - type: Transform - pos: 12.5,45.5 - parent: 4812 - - uid: 3909 - components: - - type: Transform - pos: 13.5,45.5 - parent: 4812 - - uid: 3910 - components: - - type: Transform - pos: 14.5,45.5 - parent: 4812 - - uid: 3911 - components: - - type: Transform - pos: 15.5,45.5 - parent: 4812 - - uid: 3912 - components: - - type: Transform - pos: 15.5,46.5 - parent: 4812 - - uid: 3913 - components: - - type: Transform - pos: 9.5,45.5 - parent: 4812 - - uid: 3914 - components: - - type: Transform - pos: 8.5,45.5 - parent: 4812 - - uid: 3915 - components: - - type: Transform - pos: 7.5,45.5 - parent: 4812 - - uid: 3916 - components: - - type: Transform - pos: 6.5,45.5 - parent: 4812 - - uid: 3917 - components: - - type: Transform - pos: 5.5,45.5 - parent: 4812 - - uid: 3918 - components: - - type: Transform - pos: 4.5,45.5 - parent: 4812 - - uid: 3919 - components: - - type: Transform - pos: 3.5,45.5 - parent: 4812 - - uid: 3920 - components: - - type: Transform - pos: 6.5,46.5 - parent: 4812 - - uid: 3921 - components: - - type: Transform - pos: 6.5,47.5 - parent: 4812 - - uid: 3922 - components: - - type: Transform - pos: 9.5,50.5 - parent: 4812 - - uid: 3923 - components: - - type: Transform - pos: 8.5,50.5 - parent: 4812 - - uid: 3924 - components: - - type: Transform - pos: 8.5,51.5 - parent: 4812 - - uid: 3925 - components: - - type: Transform - pos: 8.5,52.5 - parent: 4812 - - uid: 3926 - components: - - type: Transform - pos: 8.5,53.5 - parent: 4812 - - uid: 3927 - components: - - type: Transform - pos: 8.5,54.5 - parent: 4812 - - uid: 3928 - components: - - type: Transform - pos: 8.5,55.5 - parent: 4812 - - uid: 3929 - components: - - type: Transform - pos: 12.5,50.5 - parent: 4812 - - uid: 3930 - components: - - type: Transform - pos: 12.5,51.5 - parent: 4812 - - uid: 3931 - components: - - type: Transform - pos: 12.5,52.5 - parent: 4812 - - uid: 3932 - components: - - type: Transform - pos: 12.5,53.5 - parent: 4812 - - uid: 3933 - components: - - type: Transform - pos: 12.5,54.5 - parent: 4812 - - uid: 3934 - components: - - type: Transform - pos: 12.5,55.5 - parent: 4812 - - uid: 3935 - components: - - type: Transform - pos: 11.5,53.5 - parent: 4812 - - uid: 3936 - components: - - type: Transform - pos: 10.5,53.5 - parent: 4812 - - uid: 3937 - components: - - type: Transform - pos: 9.5,53.5 - parent: 4812 - - uid: 3938 - components: - - type: Transform - pos: 10.5,52.5 - parent: 4812 - - uid: 3939 - components: - - type: Transform - pos: 11.5,55.5 - parent: 4812 - - uid: 3940 - components: - - type: Transform - pos: 10.5,55.5 - parent: 4812 - - uid: 3941 - components: - - type: Transform - pos: 9.5,55.5 - parent: 4812 - - uid: 3942 - components: - - type: Transform - pos: 13.5,53.5 - parent: 4812 - - uid: 3943 - components: - - type: Transform - pos: 7.5,53.5 - parent: 4812 - - uid: 4010 - components: - - type: Transform - pos: -9.5,-23.5 - parent: 4812 - - uid: 4257 - components: - - type: Transform - pos: 22.5,-1.5 - parent: 4812 - - uid: 4258 - components: - - type: Transform - pos: 22.5,-2.5 - parent: 4812 - - uid: 4259 - components: - - type: Transform - pos: 21.5,-2.5 - parent: 4812 - - uid: 4260 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 4812 - - uid: 4261 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 4812 - - uid: 4262 - components: - - type: Transform - pos: 18.5,-2.5 - parent: 4812 - - uid: 4263 - components: - - type: Transform - pos: 17.5,-2.5 - parent: 4812 - - uid: 4264 - components: - - type: Transform - pos: 16.5,-2.5 - parent: 4812 - - uid: 4265 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 4812 - - uid: 4266 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 4812 - - uid: 4267 - components: - - type: Transform - pos: 12.5,7.5 - parent: 4812 - - uid: 4268 - components: - - type: Transform - pos: 13.5,7.5 - parent: 4812 - - uid: 4269 - components: - - type: Transform - pos: 14.5,7.5 - parent: 4812 - - uid: 4270 - components: - - type: Transform - pos: 15.5,7.5 - parent: 4812 - - uid: 4271 - components: - - type: Transform - pos: 16.5,7.5 - parent: 4812 - - uid: 4272 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 4812 - - uid: 4273 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 4812 - - uid: 4274 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 4812 - - uid: 4275 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 4812 - - uid: 4276 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 4812 - - uid: 4277 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 4812 - - uid: 4278 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 4812 - - uid: 4279 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 4812 - - uid: 4280 - components: - - type: Transform - pos: 15.5,0.5 - parent: 4812 - - uid: 4281 - components: - - type: Transform - pos: 15.5,1.5 - parent: 4812 - - uid: 4282 - components: - - type: Transform - pos: 15.5,2.5 - parent: 4812 - - uid: 4283 - components: - - type: Transform - pos: 15.5,3.5 - parent: 4812 - - uid: 4284 - components: - - type: Transform - pos: 15.5,4.5 - parent: 4812 - - uid: 4285 - components: - - type: Transform - pos: 16.5,4.5 - parent: 4812 - - uid: 4286 - components: - - type: Transform - pos: 17.5,4.5 - parent: 4812 - - uid: 4287 - components: - - type: Transform - pos: 18.5,4.5 - parent: 4812 - - uid: 4288 - components: - - type: Transform - pos: 18.5,5.5 - parent: 4812 - - uid: 4289 - components: - - type: Transform - pos: 18.5,6.5 - parent: 4812 - - uid: 4290 - components: - - type: Transform - pos: 18.5,7.5 - parent: 4812 - - uid: 4291 - components: - - type: Transform - pos: 18.5,8.5 - parent: 4812 - - uid: 4292 - components: - - type: Transform - pos: 18.5,9.5 - parent: 4812 - - uid: 4293 - components: - - type: Transform - pos: 18.5,10.5 - parent: 4812 - - uid: 4294 - components: - - type: Transform - pos: 17.5,10.5 - parent: 4812 - - uid: 4295 - components: - - type: Transform - pos: 16.5,10.5 - parent: 4812 - - uid: 4296 - components: - - type: Transform - pos: 15.5,10.5 - parent: 4812 - - uid: 4297 - components: - - type: Transform - pos: 14.5,10.5 - parent: 4812 - - uid: 4298 - components: - - type: Transform - pos: 19.5,10.5 - parent: 4812 - - uid: 4299 - components: - - type: Transform - pos: 20.5,10.5 - parent: 4812 - - uid: 4300 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 4812 - - uid: 4301 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 4812 - - uid: 4302 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 4812 - - uid: 4303 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 4812 - - uid: 4304 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 4812 - - uid: 4305 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 4812 - - uid: 4306 - components: - - type: Transform - pos: 29.5,-2.5 - parent: 4812 - - uid: 4307 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 4812 - - uid: 4308 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 4812 - - uid: 4309 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 4812 - - uid: 4310 - components: - - type: Transform - pos: 30.5,0.5 - parent: 4812 - - uid: 4311 - components: - - type: Transform - pos: 30.5,1.5 - parent: 4812 - - uid: 4312 - components: - - type: Transform - pos: 30.5,2.5 - parent: 4812 - - uid: 4313 - components: - - type: Transform - pos: 30.5,3.5 - parent: 4812 - - uid: 4314 - components: - - type: Transform - pos: 30.5,4.5 - parent: 4812 - - uid: 4315 - components: - - type: Transform - pos: 31.5,2.5 - parent: 4812 - - uid: 4316 - components: - - type: Transform - pos: 32.5,2.5 - parent: 4812 - - uid: 4317 - components: - - type: Transform - pos: 33.5,2.5 - parent: 4812 - - uid: 4318 - components: - - type: Transform - pos: 31.5,0.5 - parent: 4812 - - uid: 4319 - components: - - type: Transform - pos: 32.5,0.5 - parent: 4812 - - uid: 4320 - components: - - type: Transform - pos: 33.5,0.5 - parent: 4812 - - uid: 4321 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 4812 - - uid: 4322 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 4812 - - uid: 4323 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 4812 - - uid: 4324 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 4812 - - uid: 4325 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 4812 - - uid: 4326 - components: - - type: Transform - pos: 30.5,-8.5 - parent: 4812 - - uid: 4327 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 4812 - - uid: 4328 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 4812 - - uid: 4329 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 4812 - - uid: 4330 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 4812 - - uid: 4331 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 4812 - - uid: 4332 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 4812 - - uid: 4333 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 4812 - - uid: 4334 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 4812 - - uid: 4335 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 4812 - - uid: 4336 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 4812 - - uid: 4337 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 4812 - - uid: 4338 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 4812 - - uid: 4339 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 4812 - - uid: 4340 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 4812 - - uid: 4341 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 4812 - - uid: 4342 - components: - - type: Transform - pos: 24.5,-4.5 - parent: 4812 - - uid: 4343 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 4812 - - uid: 4344 - components: - - type: Transform - pos: 24.5,-1.5 - parent: 4812 - - uid: 4345 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 4812 - - uid: 4346 - components: - - type: Transform - pos: 24.5,0.5 - parent: 4812 - - uid: 4347 - components: - - type: Transform - pos: 24.5,1.5 - parent: 4812 - - uid: 4348 - components: - - type: Transform - pos: 24.5,2.5 - parent: 4812 - - uid: 4349 - components: - - type: Transform - pos: 24.5,3.5 - parent: 4812 - - uid: 4350 - components: - - type: Transform - pos: 24.5,4.5 - parent: 4812 - - uid: 4351 - components: - - type: Transform - pos: 23.5,4.5 - parent: 4812 - - uid: 4352 - components: - - type: Transform - pos: 22.5,4.5 - parent: 4812 - - uid: 4353 - components: - - type: Transform - pos: 22.5,5.5 - parent: 4812 - - uid: 4354 - components: - - type: Transform - pos: 22.5,6.5 - parent: 4812 - - uid: 4355 - components: - - type: Transform - pos: 22.5,7.5 - parent: 4812 - - uid: 4356 - components: - - type: Transform - pos: 22.5,8.5 - parent: 4812 - - uid: 4357 - components: - - type: Transform - pos: 19.5,4.5 - parent: 4812 - - uid: 4358 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 4812 - - uid: 4359 - components: - - type: Transform - pos: 22.5,-7.5 - parent: 4812 - - uid: 4360 - components: - - type: Transform - pos: 21.5,-7.5 - parent: 4812 - - uid: 4361 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 4812 - - uid: 4362 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 4812 - - uid: 4363 - components: - - type: Transform - pos: 18.5,-7.5 - parent: 4812 - - uid: 4364 - components: - - type: Transform - pos: 17.5,-7.5 - parent: 4812 - - uid: 4365 - components: - - type: Transform - pos: 16.5,-7.5 - parent: 4812 - - uid: 4366 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 4812 - - uid: 4367 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 4812 - - uid: 4368 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 4812 - - uid: 4369 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 4812 - - uid: 4660 - components: - - type: Transform - pos: -13.5,-50.5 - parent: 4812 - - uid: 4689 - components: - - type: Transform - pos: -11.5,-56.5 - parent: 4812 - - uid: 4690 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 4812 - - uid: 4724 - components: - - type: Transform - pos: -11.5,-54.5 - parent: 4812 - - uid: 4863 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 4812 - - uid: 4864 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 4812 - - uid: 4866 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 4812 - - uid: 4867 - components: - - type: Transform - pos: -16.5,-27.5 - parent: 4812 - - uid: 4868 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 4812 - - uid: 4869 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 4812 - - uid: 4894 - components: - - type: Transform - pos: -14.5,-27.5 - parent: 4812 - - uid: 4895 - components: - - type: Transform - pos: -27.5,-25.5 - parent: 4812 - - uid: 4896 - components: - - type: Transform - pos: -26.5,-25.5 - parent: 4812 - - uid: 4897 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 4812 - - uid: 4899 - components: - - type: Transform - pos: -25.5,-28.5 - parent: 4812 - - uid: 4900 - components: - - type: Transform - pos: -25.5,-24.5 - parent: 4812 - - uid: 4901 - components: - - type: Transform - pos: -25.5,-23.5 - parent: 4812 - - uid: 4902 - components: - - type: Transform - pos: -25.5,-25.5 - parent: 4812 - - uid: 4903 - components: - - type: Transform - pos: -25.5,-26.5 - parent: 4812 - - uid: 4904 - components: - - type: Transform - pos: -25.5,-22.5 - parent: 4812 - - uid: 4905 - components: - - type: Transform - pos: -26.5,-23.5 - parent: 4812 - - uid: 4906 - components: - - type: Transform - pos: -23.5,-22.5 - parent: 4812 - - uid: 4907 - components: - - type: Transform - pos: -24.5,-22.5 - parent: 4812 - - uid: 4908 - components: - - type: Transform - pos: -21.5,-27.5 - parent: 4812 - - uid: 4909 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 4812 - - uid: 4910 - components: - - type: Transform - pos: -20.5,-27.5 - parent: 4812 - - uid: 4911 - components: - - type: Transform - pos: -22.5,-22.5 - parent: 4812 - - uid: 4912 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 4812 - - uid: 4913 - components: - - type: Transform - pos: -18.5,-19.5 - parent: 4812 - - uid: 4930 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 4812 - - uid: 4946 - components: - - type: Transform - pos: -9.5,-22.5 - parent: 4812 - - uid: 4947 - components: - - type: Transform - pos: -17.5,-27.5 - parent: 4812 - - uid: 4948 - components: - - type: Transform - pos: -13.5,-26.5 - parent: 4812 - - uid: 4949 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 4812 - - uid: 5008 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 4812 - - uid: 5009 - components: - - type: Transform - pos: -22.5,-27.5 - parent: 4812 - - uid: 5017 - components: - - type: Transform - pos: -22.5,-25.5 - parent: 4812 - - uid: 5029 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 4812 - - uid: 5030 - components: - - type: Transform - pos: -19.5,-14.5 - parent: 4812 - - uid: 5031 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 4812 - - uid: 5034 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 4812 - - uid: 5035 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 4812 - - uid: 5036 - components: - - type: Transform - pos: -19.5,-16.5 - parent: 4812 - - uid: 5037 - components: - - type: Transform - pos: -15.5,-21.5 - parent: 4812 - - uid: 5038 - components: - - type: Transform - pos: -17.5,-15.5 - parent: 4812 - - uid: 5041 - components: - - type: Transform - pos: -11.5,-58.5 - parent: 4812 - - uid: 5044 - components: - - type: Transform - pos: -19.5,-20.5 - parent: 4812 - - uid: 5052 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 4812 - - uid: 5056 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 4812 - - uid: 5057 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 4812 - - uid: 5058 - components: - - type: Transform - pos: -20.5,-23.5 - parent: 4812 - - uid: 5229 - components: - - type: Transform - pos: -12.5,-50.5 - parent: 4812 - - uid: 5232 - components: - - type: Transform - pos: -11.5,-50.5 - parent: 4812 - - uid: 5233 - components: - - type: Transform - pos: -10.5,-50.5 - parent: 4812 - - uid: 5234 - components: - - type: Transform - pos: -9.5,-50.5 - parent: 4812 - - uid: 5235 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 4812 - - uid: 5236 - components: - - type: Transform - pos: -8.5,-43.5 - parent: 4812 - - uid: 5237 - components: - - type: Transform - pos: -9.5,-43.5 - parent: 4812 - - uid: 5238 - components: - - type: Transform - pos: -10.5,-43.5 - parent: 4812 - - uid: 5239 - components: - - type: Transform - pos: -11.5,-43.5 - parent: 4812 - - uid: 5240 - components: - - type: Transform - pos: -12.5,-43.5 - parent: 4812 - - uid: 5241 - components: - - type: Transform - pos: -13.5,-43.5 - parent: 4812 - - uid: 5242 - components: - - type: Transform - pos: -11.5,-53.5 - parent: 4812 - - uid: 5243 - components: - - type: Transform - pos: -11.5,-52.5 - parent: 4812 - - uid: 5244 - components: - - type: Transform - pos: -11.5,-51.5 - parent: 4812 - - uid: 5245 - components: - - type: Transform - pos: -11.5,-49.5 - parent: 4812 - - uid: 5246 - components: - - type: Transform - pos: -11.5,-48.5 - parent: 4812 - - uid: 5247 - components: - - type: Transform - pos: -11.5,-47.5 - parent: 4812 - - uid: 5248 - components: - - type: Transform - pos: -11.5,-46.5 - parent: 4812 - - uid: 5249 - components: - - type: Transform - pos: -11.5,-45.5 - parent: 4812 - - uid: 5250 - components: - - type: Transform - pos: -11.5,-44.5 - parent: 4812 - - uid: 5251 - components: - - type: Transform - pos: -11.5,-42.5 - parent: 4812 - - uid: 5252 - components: - - type: Transform - pos: -11.5,-41.5 - parent: 4812 - - uid: 5253 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 4812 - - uid: 5254 - components: - - type: Transform - pos: -11.5,-39.5 - parent: 4812 - - uid: 5255 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 4812 - - uid: 5256 - components: - - type: Transform - pos: -11.5,-37.5 - parent: 4812 - - uid: 5257 - components: - - type: Transform - pos: -11.5,-36.5 - parent: 4812 - - uid: 5258 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 4812 - - uid: 5259 - components: - - type: Transform - pos: -11.5,-34.5 - parent: 4812 - - uid: 5260 - components: - - type: Transform - pos: -10.5,-34.5 - parent: 4812 - - uid: 5261 - components: - - type: Transform - pos: -9.5,-34.5 - parent: 4812 - - uid: 5262 - components: - - type: Transform - pos: -8.5,-34.5 - parent: 4812 - - uid: 5263 - components: - - type: Transform - pos: -7.5,-34.5 - parent: 4812 - - uid: 5264 - components: - - type: Transform - pos: -6.5,-34.5 - parent: 4812 - - uid: 5265 - components: - - type: Transform - pos: -5.5,-34.5 - parent: 4812 - - uid: 5266 - components: - - type: Transform - pos: -4.5,-34.5 - parent: 4812 - - uid: 5267 - components: - - type: Transform - pos: -3.5,-34.5 - parent: 4812 - - uid: 5268 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 4812 - - uid: 5269 - components: - - type: Transform - pos: -1.5,-34.5 - parent: 4812 - - uid: 5270 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 4812 - - uid: 5271 - components: - - type: Transform - pos: 0.5,-34.5 - parent: 4812 - - uid: 5272 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 4812 - - uid: 5364 - components: - - type: Transform - pos: -14.5,-22.5 - parent: 4812 - - uid: 6022 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 4812 - - uid: 6023 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 4812 - - uid: 6024 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 4812 - - uid: 6025 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 4812 - - uid: 6026 - components: - - type: Transform - pos: 6.5,-15.5 - parent: 4812 - - uid: 6027 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 4812 - - uid: 6028 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 4812 - - uid: 6029 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 4812 - - uid: 6030 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 4812 - - uid: 6031 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 4812 - - uid: 6032 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 4812 - - uid: 6033 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 4812 - - uid: 6034 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 4812 - - uid: 6035 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 4812 - - uid: 6036 - components: - - type: Transform - pos: 5.5,-24.5 - parent: 4812 - - uid: 6037 - components: - - type: Transform - pos: 5.5,-25.5 - parent: 4812 - - uid: 6038 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 4812 - - uid: 6039 - components: - - type: Transform - pos: 5.5,-27.5 - parent: 4812 - - uid: 6040 - components: - - type: Transform - pos: 4.5,-27.5 - parent: 4812 - - uid: 6041 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 4812 - - uid: 6042 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 4812 - - uid: 6043 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 4812 - - uid: 6044 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 4812 - - uid: 6045 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 4812 - - uid: 6046 - components: - - type: Transform - pos: 10.5,-21.5 - parent: 4812 - - uid: 6047 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 4812 - - uid: 6048 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 4812 - - uid: 6049 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 4812 - - uid: 6050 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 4812 - - uid: 6052 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 4812 - - uid: 6053 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 4812 - - uid: 6054 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 4812 - - uid: 6055 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 4812 - - uid: 6056 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 4812 - - uid: 6057 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 4812 - - uid: 6058 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 4812 - - uid: 6059 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 4812 - - uid: 6060 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 4812 - - uid: 6061 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 4812 - - uid: 6062 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 4812 - - uid: 6063 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 4812 - - uid: 6066 - components: - - type: Transform - pos: 9.5,-22.5 - parent: 4812 - - uid: 6067 - components: - - type: Transform - pos: 9.5,-23.5 - parent: 4812 - - uid: 6068 - components: - - type: Transform - pos: 9.5,-24.5 - parent: 4812 - - uid: 6069 - components: - - type: Transform - pos: 9.5,-25.5 - parent: 4812 - - uid: 6070 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 4812 - - uid: 6071 - components: - - type: Transform - pos: 9.5,-27.5 - parent: 4812 - - uid: 6072 - components: - - type: Transform - pos: 9.5,-28.5 - parent: 4812 - - uid: 6073 - components: - - type: Transform - pos: 10.5,-25.5 - parent: 4812 - - uid: 6074 - components: - - type: Transform - pos: 11.5,-25.5 - parent: 4812 - - uid: 6075 - components: - - type: Transform - pos: 12.5,-25.5 - parent: 4812 - - uid: 6076 - components: - - type: Transform - pos: 13.5,-25.5 - parent: 4812 - - uid: 6077 - components: - - type: Transform - pos: 14.5,-25.5 - parent: 4812 - - uid: 6078 - components: - - type: Transform - pos: 15.5,-25.5 - parent: 4812 - - uid: 6079 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 4812 - - uid: 6080 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 4812 - - uid: 6081 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 4812 - - uid: 6082 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 4812 - - uid: 6083 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 4812 - - uid: 6084 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 4812 - - uid: 6085 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 4812 - - uid: 6086 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 4812 - - uid: 6087 - components: - - type: Transform - pos: 27.5,-22.5 - parent: 4812 - - uid: 6088 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 4812 - - uid: 6089 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 4812 - - uid: 6090 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 4812 - - uid: 6091 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 4812 - - uid: 6092 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 4812 - - uid: 6093 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 4812 - - uid: 6094 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 4812 - - uid: 6095 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 4812 - - uid: 6096 - components: - - type: Transform - pos: 19.5,-21.5 - parent: 4812 - - uid: 6097 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 4812 - - uid: 6098 - components: - - type: Transform - pos: 17.5,-21.5 - parent: 4812 - - uid: 6099 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 4812 - - uid: 6100 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 4812 - - uid: 6101 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 4812 - - uid: 6102 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 4812 - - uid: 6103 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 4812 - - uid: 6104 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 4812 - - uid: 6105 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 4812 - - uid: 6106 - components: - - type: Transform - pos: 19.5,-17.5 - parent: 4812 - - uid: 6107 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 4812 - - uid: 6108 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 4812 - - uid: 6109 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 4812 - - uid: 6110 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 4812 - - uid: 6111 - components: - - type: Transform - pos: 19.5,-12.5 - parent: 4812 - - uid: 6112 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 4812 - - uid: 6113 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 4812 - - uid: 6114 - components: - - type: Transform - pos: 18.5,-23.5 - parent: 4812 - - uid: 6115 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 4812 - - uid: 6116 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 4812 - - uid: 6117 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 4812 - - uid: 6119 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 4812 - - uid: 6120 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 4812 - - uid: 6121 - components: - - type: Transform - pos: 18.5,-30.5 - parent: 4812 - - uid: 6122 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 4812 - - uid: 6123 - components: - - type: Transform - pos: 18.5,-32.5 - parent: 4812 - - uid: 6124 - components: - - type: Transform - pos: 18.5,-33.5 - parent: 4812 - - uid: 6125 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 4812 - - uid: 6126 - components: - - type: Transform - pos: 16.5,-33.5 - parent: 4812 - - uid: 6127 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 4812 - - uid: 6128 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 4812 - - uid: 6129 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 4812 - - uid: 6130 - components: - - type: Transform - pos: 15.5,-24.5 - parent: 4812 - - uid: 6131 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 4812 - - uid: 6132 - components: - - type: Transform - pos: 15.5,-26.5 - parent: 4812 - - uid: 6133 - components: - - type: Transform - pos: 15.5,-27.5 - parent: 4812 - - uid: 6134 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 4812 - - uid: 6135 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 4812 - - uid: 6136 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 4812 - - uid: 6137 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 4812 - - uid: 6138 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 4812 - - uid: 6139 - components: - - type: Transform - pos: 28.5,-26.5 - parent: 4812 - - uid: 6140 - components: - - type: Transform - pos: 28.5,-27.5 - parent: 4812 - - uid: 6141 - components: - - type: Transform - pos: 28.5,-28.5 - parent: 4812 - - uid: 6142 - components: - - type: Transform - pos: 28.5,-29.5 - parent: 4812 - - uid: 6143 - components: - - type: Transform - pos: 27.5,-29.5 - parent: 4812 - - uid: 6144 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 4812 - - uid: 6145 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 4812 - - uid: 6146 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 4812 - - uid: 6147 - components: - - type: Transform - pos: 23.5,-29.5 - parent: 4812 - - uid: 6148 - components: - - type: Transform - pos: 22.5,-29.5 - parent: 4812 - - uid: 6150 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 4812 - - uid: 6151 - components: - - type: Transform - pos: 31.5,-25.5 - parent: 4812 - - uid: 6152 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 4812 - - uid: 6153 - components: - - type: Transform - pos: 33.5,-25.5 - parent: 4812 - - uid: 6154 - components: - - type: Transform - pos: 34.5,-25.5 - parent: 4812 - - uid: 6155 - components: - - type: Transform - pos: 33.5,-26.5 - parent: 4812 - - uid: 6156 - components: - - type: Transform - pos: 33.5,-27.5 - parent: 4812 - - uid: 6157 - components: - - type: Transform - pos: 33.5,-24.5 - parent: 4812 - - uid: 6158 - components: - - type: Transform - pos: 27.5,-25.5 - parent: 4812 - - uid: 6159 - components: - - type: Transform - pos: 26.5,-25.5 - parent: 4812 - - uid: 6160 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 4812 - - uid: 6161 - components: - - type: Transform - pos: 24.5,-25.5 - parent: 4812 - - uid: 6162 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 4812 - - uid: 6163 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 4812 - - uid: 6164 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 4812 - - uid: 6551 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 4812 - - uid: 6552 - components: - - type: Transform - pos: -19.5,-17.5 - parent: 4812 - - uid: 6555 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 4812 - - uid: 6557 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 4812 - - uid: 6610 - components: - - type: Transform - pos: -15.5,-16.5 - parent: 4812 - - uid: 6611 - components: - - type: Transform - pos: -15.5,-22.5 - parent: 4812 - - uid: 6616 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 4812 - - uid: 6626 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 4812 - - uid: 6627 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 4812 - - uid: 6630 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 4812 - - uid: 6681 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 4812 - - uid: 6845 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 4812 - - uid: 6846 - components: - - type: Transform - pos: -17.5,-32.5 - parent: 4812 - - uid: 6847 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 4812 - - uid: 6848 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 4812 - - uid: 6849 - components: - - type: Transform - pos: -17.5,-35.5 - parent: 4812 - - uid: 6850 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 4812 - - uid: 6851 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 4812 - - uid: 6852 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 4812 - - uid: 6853 - components: - - type: Transform - pos: -14.5,-34.5 - parent: 4812 - - uid: 6854 - components: - - type: Transform - pos: -14.5,-33.5 - parent: 4812 - - uid: 6855 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 4812 - - uid: 6856 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 4812 - - uid: 6857 - components: - - type: Transform - pos: -19.5,-35.5 - parent: 4812 - - uid: 6858 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 4812 - - uid: 6859 - components: - - type: Transform - pos: -19.5,-37.5 - parent: 4812 - - uid: 6860 - components: - - type: Transform - pos: -19.5,-39.5 - parent: 4812 - - uid: 6861 - components: - - type: Transform - pos: -19.5,-38.5 - parent: 4812 - - uid: 6862 - components: - - type: Transform - pos: -20.5,-36.5 - parent: 4812 - - uid: 6863 - components: - - type: Transform - pos: -21.5,-36.5 - parent: 4812 - - uid: 6864 - components: - - type: Transform - pos: -22.5,-36.5 - parent: 4812 - - uid: 6865 - components: - - type: Transform - pos: -23.5,-36.5 - parent: 4812 - - uid: 6866 - components: - - type: Transform - pos: -24.5,-36.5 - parent: 4812 - - uid: 6867 - components: - - type: Transform - pos: -25.5,-36.5 - parent: 4812 - - uid: 6868 - components: - - type: Transform - pos: -26.5,-36.5 - parent: 4812 - - uid: 6869 - components: - - type: Transform - pos: -26.5,-35.5 - parent: 4812 - - uid: 6870 - components: - - type: Transform - pos: -26.5,-34.5 - parent: 4812 - - uid: 6871 - components: - - type: Transform - pos: -26.5,-33.5 - parent: 4812 - - uid: 6872 - components: - - type: Transform - pos: -26.5,-32.5 - parent: 4812 - - uid: 6873 - components: - - type: Transform - pos: -21.5,-35.5 - parent: 4812 - - uid: 6874 - components: - - type: Transform - pos: -21.5,-34.5 - parent: 4812 - - uid: 6875 - components: - - type: Transform - pos: -21.5,-33.5 - parent: 4812 - - uid: 6876 - components: - - type: Transform - pos: -21.5,-32.5 - parent: 4812 - - uid: 6877 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 4812 - - uid: 6878 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 4812 - - uid: 6879 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 4812 - - uid: 6880 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 4812 - - uid: 6881 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 4812 - - uid: 6882 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 4812 - - uid: 6883 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 4812 - - uid: 6884 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 4812 - - uid: 6886 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 4812 - - uid: 6887 - components: - - type: Transform - pos: -10.5,-32.5 - parent: 4812 - - uid: 6888 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 4812 - - uid: 6889 - components: - - type: Transform - pos: -19.5,-30.5 - parent: 4812 - - uid: 6890 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 4812 - - uid: 6891 - components: - - type: Transform - pos: -21.5,-30.5 - parent: 4812 - - uid: 6892 - components: - - type: Transform - pos: -22.5,-30.5 - parent: 4812 - - uid: 6893 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 4812 - - uid: 6894 - components: - - type: Transform - pos: -24.5,-30.5 - parent: 4812 - - uid: 7091 - components: - - type: Transform - pos: -24.5,-10.5 - parent: 4812 - - uid: 7092 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 4812 - - uid: 7093 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 4812 - - uid: 7094 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 4812 - - uid: 7095 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 4812 - - uid: 7096 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 4812 - - uid: 7097 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 4812 - - uid: 7098 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 4812 - - uid: 7099 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 4812 - - uid: 7100 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 4812 - - uid: 7101 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 4812 - - uid: 7102 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 4812 - - uid: 7103 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 4812 - - uid: 7104 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 4812 - - uid: 7105 - components: - - type: Transform - pos: -32.5,-16.5 - parent: 4812 - - uid: 7106 - components: - - type: Transform - pos: -32.5,-17.5 - parent: 4812 - - uid: 7107 - components: - - type: Transform - pos: -32.5,-18.5 - parent: 4812 - - uid: 7108 - components: - - type: Transform - pos: -32.5,-19.5 - parent: 4812 - - uid: 7109 - components: - - type: Transform - pos: -31.5,-19.5 - parent: 4812 - - uid: 7110 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 4812 - - uid: 7111 - components: - - type: Transform - pos: -31.5,-21.5 - parent: 4812 - - uid: 7112 - components: - - type: Transform - pos: -31.5,-22.5 - parent: 4812 - - uid: 7113 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 4812 - - uid: 7114 - components: - - type: Transform - pos: -28.5,-18.5 - parent: 4812 - - uid: 7115 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 4812 - - uid: 7116 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 4812 - - uid: 7117 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 4812 - - uid: 7118 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 4812 - - uid: 7119 - components: - - type: Transform - pos: -25.5,-19.5 - parent: 4812 - - uid: 7120 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 4812 - - uid: 7121 - components: - - type: Transform - pos: -24.5,-19.5 - parent: 4812 - - uid: 7122 - components: - - type: Transform - pos: -23.5,-19.5 - parent: 4812 - - uid: 7123 - components: - - type: Transform - pos: -23.5,-16.5 - parent: 4812 - - uid: 7124 - components: - - type: Transform - pos: -31.5,-15.5 - parent: 4812 - - uid: 7182 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 4812 - - uid: 7232 - components: - - type: Transform - pos: -19.5,-23.5 - parent: 4812 - - uid: 7242 - components: - - type: Transform - pos: -9.5,-25.5 - parent: 4812 - - uid: 7243 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 4812 - - uid: 7390 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 4812 - - uid: 7420 - components: - - type: Transform - pos: -11.5,-22.5 - parent: 4812 - - uid: 7421 - components: - - type: Transform - pos: -11.5,-21.5 - parent: 4812 - - uid: 7422 - components: - - type: Transform - pos: -11.5,-20.5 - parent: 4812 - - uid: 7423 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 4812 - - uid: 7424 - components: - - type: Transform - pos: -9.5,-21.5 - parent: 4812 - - uid: 7425 - components: - - type: Transform - pos: -8.5,-21.5 - parent: 4812 - - uid: 7489 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 4812 - - uid: 7490 - components: - - type: Transform - pos: -1.5,-21.5 - parent: 4812 - - uid: 7491 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 4812 - - uid: 7492 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 4812 - - uid: 7493 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 4812 - - uid: 7494 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 4812 - - uid: 7495 - components: - - type: Transform - pos: -5.5,-22.5 - parent: 4812 - - uid: 7496 - components: - - type: Transform - pos: -5.5,-21.5 - parent: 4812 - - uid: 7497 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 4812 - - uid: 7498 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 4812 - - uid: 7499 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 4812 - - uid: 7500 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 4812 - - uid: 7501 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 4812 - - uid: 7502 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 4812 - - uid: 7503 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 4812 - - uid: 7504 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 4812 - - uid: 7505 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 4812 - - uid: 7506 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 4812 - - uid: 7507 - components: - - type: Transform - pos: 0.5,-21.5 - parent: 4812 - - uid: 7508 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 4812 - - uid: 7509 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 4812 - - uid: 7510 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 4812 - - uid: 7511 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 4812 - - uid: 7512 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 4812 - - uid: 7513 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 4812 - - uid: 7514 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 4812 - - uid: 7515 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 4812 - - uid: 7516 - components: - - type: Transform - pos: -1.5,-17.5 - parent: 4812 - - uid: 7517 - components: - - type: Transform - pos: -2.5,-17.5 - parent: 4812 - - uid: 7518 - components: - - type: Transform - pos: -2.5,-16.5 - parent: 4812 - - uid: 7519 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 4812 - - uid: 7520 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 4812 - - uid: 7521 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 4812 - - uid: 7522 - components: - - type: Transform - pos: -4.5,-13.5 - parent: 4812 - - uid: 7523 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 4812 - - uid: 7524 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 4812 - - uid: 7525 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 4812 - - uid: 7526 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 4812 - - uid: 7527 - components: - - type: Transform - pos: 0.5,-24.5 - parent: 4812 - - uid: 7528 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 4812 - - uid: 7529 - components: - - type: Transform - pos: 0.5,-26.5 - parent: 4812 - - uid: 7530 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 4812 - - uid: 7531 - components: - - type: Transform - pos: 0.5,-28.5 - parent: 4812 - - uid: 7532 - components: - - type: Transform - pos: 0.5,-29.5 - parent: 4812 - - uid: 7533 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 4812 - - uid: 7534 - components: - - type: Transform - pos: 0.5,-31.5 - parent: 4812 - - uid: 7535 - components: - - type: Transform - pos: -5.5,-23.5 - parent: 4812 - - uid: 7536 - components: - - type: Transform - pos: -5.5,-24.5 - parent: 4812 - - uid: 7537 - components: - - type: Transform - pos: -5.5,-25.5 - parent: 4812 - - uid: 7538 - components: - - type: Transform - pos: -5.5,-26.5 - parent: 4812 - - uid: 7539 - components: - - type: Transform - pos: -5.5,-27.5 - parent: 4812 - - uid: 7540 - components: - - type: Transform - pos: -5.5,-28.5 - parent: 4812 - - uid: 7541 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 4812 - - uid: 7542 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 4812 - - uid: 7543 - components: - - type: Transform - pos: -5.5,-31.5 - parent: 4812 - - uid: 7544 - components: - - type: Transform - pos: -4.5,-31.5 - parent: 4812 - - uid: 7545 - components: - - type: Transform - pos: -4.5,-25.5 - parent: 4812 - - uid: 7546 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 4812 - - uid: 7547 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 4812 - - uid: 7548 - components: - - type: Transform - pos: -2.5,-26.5 - parent: 4812 - - uid: 7549 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 4812 - - uid: 7550 - components: - - type: Transform - pos: -2.5,-28.5 - parent: 4812 - - uid: 7551 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 4812 - - uid: 7552 - components: - - type: Transform - pos: -0.5,-31.5 - parent: 4812 - - uid: 7553 - components: - - type: Transform - pos: -1.5,-31.5 - parent: 4812 - - uid: 7554 - components: - - type: Transform - pos: -2.5,-31.5 - parent: 4812 - - uid: 7555 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 4812 - - uid: 7557 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 4812 - - uid: 7558 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 4812 - - uid: 7559 - components: - - type: Transform - pos: -9.5,-12.5 - parent: 4812 - - uid: 7560 - components: - - type: Transform - pos: -10.5,-12.5 - parent: 4812 - - uid: 7561 - components: - - type: Transform - pos: -11.5,-12.5 - parent: 4812 - - uid: 7562 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 4812 - - uid: 7563 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 4812 - - uid: 7564 - components: - - type: Transform - pos: -14.5,-12.5 - parent: 4812 - - uid: 7565 - components: - - type: Transform - pos: -15.5,-12.5 - parent: 4812 - - uid: 7566 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 4812 - - uid: 7567 - components: - - type: Transform - pos: -17.5,-12.5 - parent: 4812 - - uid: 7568 - components: - - type: Transform - pos: -18.5,-12.5 - parent: 4812 - - uid: 7569 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 4812 - - uid: 7605 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 4812 - - uid: 7606 - components: - - type: Transform - pos: -9.5,-19.5 - parent: 4812 - - uid: 7607 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 4812 - - uid: 7608 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 4812 - - uid: 7609 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 4812 - - uid: 7610 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 4812 - - uid: 7611 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 4812 - - uid: 7612 - components: - - type: Transform - pos: -11.5,-17.5 - parent: 4812 - - uid: 7613 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 4812 - - uid: 7614 - components: - - type: Transform - pos: -11.5,-15.5 - parent: 4812 - - uid: 8061 - components: - - type: Transform - pos: -36.5,13.5 - parent: 4812 - - uid: 8062 - components: - - type: Transform - pos: -36.5,12.5 - parent: 4812 - - uid: 8063 - components: - - type: Transform - pos: -36.5,11.5 - parent: 4812 - - uid: 8064 - components: - - type: Transform - pos: -37.5,11.5 - parent: 4812 - - uid: 8065 - components: - - type: Transform - pos: -38.5,11.5 - parent: 4812 - - uid: 8066 - components: - - type: Transform - pos: -35.5,11.5 - parent: 4812 - - uid: 8067 - components: - - type: Transform - pos: -34.5,11.5 - parent: 4812 - - uid: 8068 - components: - - type: Transform - pos: -33.5,11.5 - parent: 4812 - - uid: 8070 - components: - - type: Transform - pos: -31.5,11.5 - parent: 4812 - - uid: 8071 - components: - - type: Transform - pos: -30.5,11.5 - parent: 4812 - - uid: 8072 - components: - - type: Transform - pos: -29.5,11.5 - parent: 4812 - - uid: 8073 - components: - - type: Transform - pos: -29.5,12.5 - parent: 4812 - - uid: 8074 - components: - - type: Transform - pos: -29.5,13.5 - parent: 4812 - - uid: 8075 - components: - - type: Transform - pos: -29.5,14.5 - parent: 4812 - - uid: 8076 - components: - - type: Transform - pos: -29.5,15.5 - parent: 4812 - - uid: 8077 - components: - - type: Transform - pos: -29.5,16.5 - parent: 4812 - - uid: 8078 - components: - - type: Transform - pos: -29.5,17.5 - parent: 4812 - - uid: 8079 - components: - - type: Transform - pos: -29.5,18.5 - parent: 4812 - - uid: 8080 - components: - - type: Transform - pos: -29.5,19.5 - parent: 4812 - - uid: 8081 - components: - - type: Transform - pos: -28.5,19.5 - parent: 4812 - - uid: 8082 - components: - - type: Transform - pos: -27.5,19.5 - parent: 4812 - - uid: 8083 - components: - - type: Transform - pos: -26.5,19.5 - parent: 4812 - - uid: 8084 - components: - - type: Transform - pos: -28.5,16.5 - parent: 4812 - - uid: 8085 - components: - - type: Transform - pos: -27.5,16.5 - parent: 4812 - - uid: 8086 - components: - - type: Transform - pos: -26.5,16.5 - parent: 4812 - - uid: 8087 - components: - - type: Transform - pos: -28.5,13.5 - parent: 4812 - - uid: 8088 - components: - - type: Transform - pos: -27.5,13.5 - parent: 4812 - - uid: 8089 - components: - - type: Transform - pos: -26.5,13.5 - parent: 4812 - - uid: 8090 - components: - - type: Transform - pos: -25.5,13.5 - parent: 4812 - - uid: 8091 - components: - - type: Transform - pos: -28.5,11.5 - parent: 4812 - - uid: 8092 - components: - - type: Transform - pos: -27.5,11.5 - parent: 4812 - - uid: 8093 - components: - - type: Transform - pos: -26.5,11.5 - parent: 4812 - - uid: 8094 - components: - - type: Transform - pos: -25.5,11.5 - parent: 4812 - - uid: 8095 - components: - - type: Transform - pos: -34.5,12.5 - parent: 4812 - - uid: 8096 - components: - - type: Transform - pos: -34.5,13.5 - parent: 4812 - - uid: 8097 - components: - - type: Transform - pos: -34.5,14.5 - parent: 4812 - - uid: 8098 - components: - - type: Transform - pos: -34.5,15.5 - parent: 4812 - - uid: 8099 - components: - - type: Transform - pos: -34.5,16.5 - parent: 4812 - - uid: 8100 - components: - - type: Transform - pos: -34.5,17.5 - parent: 4812 - - uid: 8101 - components: - - type: Transform - pos: -34.5,18.5 - parent: 4812 - - uid: 8102 - components: - - type: Transform - pos: -34.5,19.5 - parent: 4812 - - uid: 8103 - components: - - type: Transform - pos: -34.5,20.5 - parent: 4812 - - uid: 8104 - components: - - type: Transform - pos: -35.5,20.5 - parent: 4812 - - uid: 8105 - components: - - type: Transform - pos: -35.5,16.5 - parent: 4812 - - uid: 8106 - components: - - type: Transform - pos: -30.5,19.5 - parent: 4812 - - uid: 8107 - components: - - type: Transform - pos: -30.5,15.5 - parent: 4812 - - uid: 8108 - components: - - type: Transform - pos: -29.5,20.5 - parent: 4812 - - uid: 8109 - components: - - type: Transform - pos: -29.5,21.5 - parent: 4812 - - uid: 8110 - components: - - type: Transform - pos: -29.5,22.5 - parent: 4812 - - uid: 8111 - components: - - type: Transform - pos: -29.5,23.5 - parent: 4812 - - uid: 8112 - components: - - type: Transform - pos: -29.5,24.5 - parent: 4812 - - uid: 8113 - components: - - type: Transform - pos: -28.5,24.5 - parent: 4812 - - uid: 8114 - components: - - type: Transform - pos: -27.5,24.5 - parent: 4812 - - uid: 8115 - components: - - type: Transform - pos: -26.5,24.5 - parent: 4812 - - uid: 8116 - components: - - type: Transform - pos: -26.5,23.5 - parent: 4812 - - uid: 8117 - components: - - type: Transform - pos: -30.5,24.5 - parent: 4812 - - uid: 8118 - components: - - type: Transform - pos: -30.5,25.5 - parent: 4812 - - uid: 8119 - components: - - type: Transform - pos: -30.5,26.5 - parent: 4812 - - uid: 8120 - components: - - type: Transform - pos: -30.5,27.5 - parent: 4812 - - uid: 8121 - components: - - type: Transform - pos: -30.5,28.5 - parent: 4812 - - uid: 8122 - components: - - type: Transform - pos: -30.5,29.5 - parent: 4812 - - uid: 8123 - components: - - type: Transform - pos: -30.5,30.5 - parent: 4812 - - uid: 8124 - components: - - type: Transform - pos: -30.5,31.5 - parent: 4812 - - uid: 8125 - components: - - type: Transform - pos: -26.5,25.5 - parent: 4812 - - uid: 8126 - components: - - type: Transform - pos: -26.5,26.5 - parent: 4812 - - uid: 8127 - components: - - type: Transform - pos: -26.5,27.5 - parent: 4812 - - uid: 8128 - components: - - type: Transform - pos: -26.5,28.5 - parent: 4812 - - uid: 8129 - components: - - type: Transform - pos: -26.5,29.5 - parent: 4812 - - uid: 8130 - components: - - type: Transform - pos: -26.5,30.5 - parent: 4812 - - uid: 8131 - components: - - type: Transform - pos: -26.5,31.5 - parent: 4812 - - uid: 8132 - components: - - type: Transform - pos: -25.5,31.5 - parent: 4812 - - uid: 8133 - components: - - type: Transform - pos: -24.5,31.5 - parent: 4812 - - uid: 8134 - components: - - type: Transform - pos: -27.5,31.5 - parent: 4812 - - uid: 8135 - components: - - type: Transform - pos: -27.5,32.5 - parent: 4812 - - uid: 8136 - components: - - type: Transform - pos: -27.5,33.5 - parent: 4812 - - uid: 8137 - components: - - type: Transform - pos: -28.5,33.5 - parent: 4812 - - uid: 8138 - components: - - type: Transform - pos: -29.5,33.5 - parent: 4812 - - uid: 8139 - components: - - type: Transform - pos: -31.5,31.5 - parent: 4812 - - uid: 8140 - components: - - type: Transform - pos: -29.5,31.5 - parent: 4812 - - uid: 8197 - components: - - type: Transform - pos: -19.5,21.5 - parent: 4812 - - uid: 8198 - components: - - type: Transform - pos: -19.5,20.5 - parent: 4812 - - uid: 8199 - components: - - type: Transform - pos: -20.5,20.5 - parent: 4812 - - uid: 8200 - components: - - type: Transform - pos: -21.5,20.5 - parent: 4812 - - uid: 8201 - components: - - type: Transform - pos: -22.5,20.5 - parent: 4812 - - uid: 8202 - components: - - type: Transform - pos: -23.5,20.5 - parent: 4812 - - uid: 8203 - components: - - type: Transform - pos: -22.5,19.5 - parent: 4812 - - uid: 8204 - components: - - type: Transform - pos: -18.5,20.5 - parent: 4812 - - uid: 8205 - components: - - type: Transform - pos: -22.5,18.5 - parent: 4812 - - uid: 8206 - components: - - type: Transform - pos: -19.5,22.5 - parent: 4812 - - uid: 8207 - components: - - type: Transform - pos: -19.5,23.5 - parent: 4812 - - uid: 8208 - components: - - type: Transform - pos: -19.5,24.5 - parent: 4812 - - uid: 8209 - components: - - type: Transform - pos: -19.5,25.5 - parent: 4812 - - uid: 8210 - components: - - type: Transform - pos: -20.5,24.5 - parent: 4812 - - uid: 8211 - components: - - type: Transform - pos: -21.5,24.5 - parent: 4812 - - uid: 8212 - components: - - type: Transform - pos: -22.5,24.5 - parent: 4812 - - uid: 8213 - components: - - type: Transform - pos: -23.5,24.5 - parent: 4812 - - uid: 8214 - components: - - type: Transform - pos: -22.5,25.5 - parent: 4812 - - uid: 8215 - components: - - type: Transform - pos: -22.5,26.5 - parent: 4812 - - uid: 8216 - components: - - type: Transform - pos: -22.5,27.5 - parent: 4812 - - uid: 8217 - components: - - type: Transform - pos: -22.5,28.5 - parent: 4812 - - uid: 8218 - components: - - type: Transform - pos: -22.5,23.5 - parent: 4812 - - uid: 8219 - components: - - type: Transform - pos: -22.5,22.5 - parent: 4812 - - uid: 8220 - components: - - type: Transform - pos: -21.5,27.5 - parent: 4812 - - uid: 8221 - components: - - type: Transform - pos: -20.5,27.5 - parent: 4812 - - uid: 8222 - components: - - type: Transform - pos: -19.5,27.5 - parent: 4812 - - uid: 8223 - components: - - type: Transform - pos: -19.5,28.5 - parent: 4812 - - uid: 8224 - components: - - type: Transform - pos: -19.5,29.5 - parent: 4812 - - uid: 8319 - components: - - type: Transform - pos: -17.5,20.5 - parent: 4812 - - uid: 8320 - components: - - type: Transform - pos: -17.5,21.5 - parent: 4812 - - uid: 8321 - components: - - type: Transform - pos: -17.5,22.5 - parent: 4812 - - uid: 8322 - components: - - type: Transform - pos: -17.5,23.5 - parent: 4812 - - uid: 8323 - components: - - type: Transform - pos: -17.5,24.5 - parent: 4812 - - uid: 8324 - components: - - type: Transform - pos: -17.5,25.5 - parent: 4812 - - uid: 8325 - components: - - type: Transform - pos: -17.5,26.5 - parent: 4812 - - uid: 8326 - components: - - type: Transform - pos: -17.5,27.5 - parent: 4812 - - uid: 8327 - components: - - type: Transform - pos: -17.5,28.5 - parent: 4812 - - uid: 8908 - components: - - type: Transform - pos: -33.5,-24.5 - parent: 4812 - - uid: 8909 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 4812 - - uid: 8910 - components: - - type: Transform - pos: -32.5,-25.5 - parent: 4812 - - uid: 8911 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 4812 - - uid: 8912 - components: - - type: Transform - pos: -30.5,-25.5 - parent: 4812 - - uid: 8913 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 4812 - - uid: 8914 - components: - - type: Transform - pos: -29.5,-26.5 - parent: 4812 - - uid: 8915 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 4812 - - uid: 8916 - components: - - type: Transform - pos: -29.5,-28.5 - parent: 4812 - - uid: 8917 - components: - - type: Transform - pos: -29.5,-29.5 - parent: 4812 - - uid: 8918 - components: - - type: Transform - pos: -29.5,-30.5 - parent: 4812 - - uid: 8919 - components: - - type: Transform - pos: -29.5,-31.5 - parent: 4812 - - uid: 8920 - components: - - type: Transform - pos: -30.5,-31.5 - parent: 4812 - - uid: 8921 - components: - - type: Transform - pos: -30.5,-32.5 - parent: 4812 - - uid: 8922 - components: - - type: Transform - pos: -30.5,-33.5 - parent: 4812 - - uid: 8923 - components: - - type: Transform - pos: -30.5,-34.5 - parent: 4812 - - uid: 8924 - components: - - type: Transform - pos: -30.5,-35.5 - parent: 4812 - - uid: 8925 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 4812 - - uid: 8926 - components: - - type: Transform - pos: -30.5,-37.5 - parent: 4812 - - uid: 8927 - components: - - type: Transform - pos: -30.5,-38.5 - parent: 4812 - - uid: 8928 - components: - - type: Transform - pos: -30.5,-39.5 - parent: 4812 - - uid: 8929 - components: - - type: Transform - pos: -30.5,-40.5 - parent: 4812 - - uid: 8930 - components: - - type: Transform - pos: -29.5,-39.5 - parent: 4812 - - uid: 8931 - components: - - type: Transform - pos: -28.5,-39.5 - parent: 4812 - - uid: 8932 - components: - - type: Transform - pos: -27.5,-39.5 - parent: 4812 - - uid: 8933 - components: - - type: Transform - pos: -31.5,-36.5 - parent: 4812 - - uid: 8934 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 4812 - - uid: 8935 - components: - - type: Transform - pos: -33.5,-36.5 - parent: 4812 - - uid: 8936 - components: - - type: Transform - pos: -31.5,-33.5 - parent: 4812 - - uid: 8937 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 4812 - - uid: 8938 - components: - - type: Transform - pos: -33.5,-33.5 - parent: 4812 - - uid: 8939 - components: - - type: Transform - pos: -34.5,-33.5 - parent: 4812 - - uid: 8940 - components: - - type: Transform - pos: -35.5,-33.5 - parent: 4812 - - uid: 8941 - components: - - type: Transform - pos: -36.5,-33.5 - parent: 4812 - - uid: 8942 - components: - - type: Transform - pos: -36.5,-34.5 - parent: 4812 - - uid: 8943 - components: - - type: Transform - pos: -37.5,-34.5 - parent: 4812 - - uid: 8944 - components: - - type: Transform - pos: -38.5,-34.5 - parent: 4812 - - uid: 8945 - components: - - type: Transform - pos: -39.5,-34.5 - parent: 4812 - - uid: 8947 - components: - - type: Transform - pos: -36.5,-35.5 - parent: 4812 - - uid: 8948 - components: - - type: Transform - pos: -36.5,-36.5 - parent: 4812 - - uid: 8949 - components: - - type: Transform - pos: -36.5,-37.5 - parent: 4812 - - uid: 8968 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 4812 - - uid: 9050 - components: - - type: Transform - pos: -50.5,0.5 - parent: 4812 - - uid: 9090 - components: - - type: Transform - pos: 32.5,-29.5 - parent: 4812 - - uid: 9288 - components: - - type: Transform - pos: -38.5,6.5 - parent: 4812 - - uid: 9321 - components: - - type: Transform - pos: -38.5,5.5 - parent: 4812 - - uid: 9322 - components: - - type: Transform - pos: -38.5,4.5 - parent: 4812 - - uid: 9323 - components: - - type: Transform - pos: -38.5,3.5 - parent: 4812 - - uid: 9324 - components: - - type: Transform - pos: -38.5,2.5 - parent: 4812 - - uid: 9325 - components: - - type: Transform - pos: -38.5,1.5 - parent: 4812 - - uid: 9326 - components: - - type: Transform - pos: -38.5,0.5 - parent: 4812 - - uid: 9327 - components: - - type: Transform - pos: -39.5,0.5 - parent: 4812 - - uid: 9328 - components: - - type: Transform - pos: -40.5,0.5 - parent: 4812 - - uid: 9329 - components: - - type: Transform - pos: -41.5,0.5 - parent: 4812 - - uid: 9330 - components: - - type: Transform - pos: -42.5,0.5 - parent: 4812 - - uid: 9331 - components: - - type: Transform - pos: -43.5,0.5 - parent: 4812 - - uid: 9332 - components: - - type: Transform - pos: -44.5,0.5 - parent: 4812 - - uid: 9333 - components: - - type: Transform - pos: -45.5,0.5 - parent: 4812 - - uid: 9334 - components: - - type: Transform - pos: -46.5,0.5 - parent: 4812 - - uid: 9335 - components: - - type: Transform - pos: -47.5,0.5 - parent: 4812 - - uid: 9336 - components: - - type: Transform - pos: -48.5,0.5 - parent: 4812 - - uid: 9337 - components: - - type: Transform - pos: -49.5,0.5 - parent: 4812 - - uid: 9338 - components: - - type: Transform - pos: -51.5,0.5 - parent: 4812 - - uid: 9339 - components: - - type: Transform - pos: -52.5,0.5 - parent: 4812 - - uid: 9340 - components: - - type: Transform - pos: -53.5,0.5 - parent: 4812 - - uid: 9341 - components: - - type: Transform - pos: -54.5,0.5 - parent: 4812 - - uid: 9342 - components: - - type: Transform - pos: -54.5,1.5 - parent: 4812 - - uid: 9343 - components: - - type: Transform - pos: -54.5,2.5 - parent: 4812 - - uid: 9344 - components: - - type: Transform - pos: -54.5,3.5 - parent: 4812 - - uid: 9345 - components: - - type: Transform - pos: -54.5,4.5 - parent: 4812 - - uid: 9346 - components: - - type: Transform - pos: -54.5,5.5 - parent: 4812 - - uid: 9347 - components: - - type: Transform - pos: -54.5,6.5 - parent: 4812 - - uid: 9348 - components: - - type: Transform - pos: -54.5,7.5 - parent: 4812 - - uid: 9349 - components: - - type: Transform - pos: -54.5,8.5 - parent: 4812 - - uid: 9350 - components: - - type: Transform - pos: -54.5,9.5 - parent: 4812 - - uid: 9351 - components: - - type: Transform - pos: -54.5,10.5 - parent: 4812 - - uid: 9352 - components: - - type: Transform - pos: -54.5,11.5 - parent: 4812 - - uid: 9353 - components: - - type: Transform - pos: -54.5,12.5 - parent: 4812 - - uid: 9354 - components: - - type: Transform - pos: -53.5,12.5 - parent: 4812 - - uid: 9355 - components: - - type: Transform - pos: -52.5,12.5 - parent: 4812 - - uid: 9356 - components: - - type: Transform - pos: -51.5,12.5 - parent: 4812 - - uid: 9357 - components: - - type: Transform - pos: -50.5,12.5 - parent: 4812 - - uid: 9358 - components: - - type: Transform - pos: -49.5,12.5 - parent: 4812 - - uid: 9359 - components: - - type: Transform - pos: -48.5,13.5 - parent: 4812 - - uid: 9360 - components: - - type: Transform - pos: -48.5,12.5 - parent: 4812 - - uid: 9361 - components: - - type: Transform - pos: -48.5,11.5 - parent: 4812 - - uid: 9362 - components: - - type: Transform - pos: -48.5,10.5 - parent: 4812 - - uid: 9363 - components: - - type: Transform - pos: -48.5,9.5 - parent: 4812 - - uid: 9364 - components: - - type: Transform - pos: -48.5,8.5 - parent: 4812 - - uid: 9365 - components: - - type: Transform - pos: -48.5,7.5 - parent: 4812 - - uid: 9366 - components: - - type: Transform - pos: -48.5,6.5 - parent: 4812 - - uid: 9367 - components: - - type: Transform - pos: -48.5,5.5 - parent: 4812 - - uid: 9368 - components: - - type: Transform - pos: -48.5,4.5 - parent: 4812 - - uid: 9369 - components: - - type: Transform - pos: -48.5,3.5 - parent: 4812 - - uid: 9370 - components: - - type: Transform - pos: -48.5,2.5 - parent: 4812 - - uid: 9371 - components: - - type: Transform - pos: -48.5,1.5 - parent: 4812 - - uid: 9372 - components: - - type: Transform - pos: -48.5,-0.5 - parent: 4812 - - uid: 9373 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 4812 - - uid: 9374 - components: - - type: Transform - pos: -48.5,-2.5 - parent: 4812 - - uid: 9375 - components: - - type: Transform - pos: -47.5,13.5 - parent: 4812 - - uid: 9376 - components: - - type: Transform - pos: -46.5,13.5 - parent: 4812 - - uid: 9377 - components: - - type: Transform - pos: -45.5,13.5 - parent: 4812 - - uid: 9378 - components: - - type: Transform - pos: -44.5,13.5 - parent: 4812 - - uid: 9379 - components: - - type: Transform - pos: -43.5,13.5 - parent: 4812 - - uid: 9380 - components: - - type: Transform - pos: -42.5,13.5 - parent: 4812 - - uid: 9381 - components: - - type: Transform - pos: -41.5,13.5 - parent: 4812 - - uid: 9382 - components: - - type: Transform - pos: -44.5,1.5 - parent: 4812 - - uid: 9383 - components: - - type: Transform - pos: -44.5,2.5 - parent: 4812 - - uid: 9384 - components: - - type: Transform - pos: -44.5,3.5 - parent: 4812 - - uid: 9385 - components: - - type: Transform - pos: -44.5,4.5 - parent: 4812 - - uid: 9386 - components: - - type: Transform - pos: -44.5,5.5 - parent: 4812 - - uid: 9387 - components: - - type: Transform - pos: -44.5,6.5 - parent: 4812 - - uid: 9388 - components: - - type: Transform - pos: -44.5,7.5 - parent: 4812 - - uid: 9389 - components: - - type: Transform - pos: -44.5,8.5 - parent: 4812 - - uid: 9390 - components: - - type: Transform - pos: -44.5,10.5 - parent: 4812 - - uid: 9391 - components: - - type: Transform - pos: -44.5,9.5 - parent: 4812 - - uid: 9392 - components: - - type: Transform - pos: -44.5,11.5 - parent: 4812 - - uid: 9393 - components: - - type: Transform - pos: -37.5,2.5 - parent: 4812 - - uid: 9394 - components: - - type: Transform - pos: -36.5,2.5 - parent: 4812 - - uid: 9395 - components: - - type: Transform - pos: -35.5,2.5 - parent: 4812 - - uid: 9396 - components: - - type: Transform - pos: -34.5,2.5 - parent: 4812 - - uid: 9397 - components: - - type: Transform - pos: -33.5,2.5 - parent: 4812 - - uid: 9398 - components: - - type: Transform - pos: -32.5,2.5 - parent: 4812 - - uid: 9399 - components: - - type: Transform - pos: -31.5,2.5 - parent: 4812 - - uid: 9400 - components: - - type: Transform - pos: -30.5,2.5 - parent: 4812 - - uid: 9401 - components: - - type: Transform - pos: -29.5,2.5 - parent: 4812 - - uid: 9402 - components: - - type: Transform - pos: -33.5,3.5 - parent: 4812 - - uid: 9403 - components: - - type: Transform - pos: -33.5,4.5 - parent: 4812 - - uid: 9404 - components: - - type: Transform - pos: -29.5,3.5 - parent: 4812 - - uid: 9405 - components: - - type: Transform - pos: -29.5,4.5 - parent: 4812 - - uid: 9406 - components: - - type: Transform - pos: -39.5,5.5 - parent: 4812 - - uid: 9407 - components: - - type: Transform - pos: -40.5,5.5 - parent: 4812 - - uid: 9408 - components: - - type: Transform - pos: -41.5,5.5 - parent: 4812 - - uid: 9409 - components: - - type: Transform - pos: -42.5,5.5 - parent: 4812 - - uid: 9410 - components: - - type: Transform - pos: -43.5,11.5 - parent: 4812 - - uid: 9411 - components: - - type: Transform - pos: -42.5,11.5 - parent: 4812 - - uid: 9456 - components: - - type: Transform - pos: -31.5,21.5 - parent: 4812 - - uid: 9458 - components: - - type: Transform - pos: -50.5,11.5 - parent: 4812 - - uid: 9459 - components: - - type: Transform - pos: -50.5,10.5 - parent: 4812 - - uid: 9460 - components: - - type: Transform - pos: -50.5,9.5 - parent: 4812 - - uid: 9461 - components: - - type: Transform - pos: -50.5,8.5 - parent: 4812 - - uid: 9462 - components: - - type: Transform - pos: -50.5,7.5 - parent: 4812 - - uid: 9463 - components: - - type: Transform - pos: -50.5,6.5 - parent: 4812 - - uid: 9464 - components: - - type: Transform - pos: -50.5,5.5 - parent: 4812 - - uid: 9465 - components: - - type: Transform - pos: -50.5,4.5 - parent: 4812 - - uid: 9466 - components: - - type: Transform - pos: -50.5,3.5 - parent: 4812 - - uid: 9467 - components: - - type: Transform - pos: -50.5,2.5 - parent: 4812 - - uid: 9468 - components: - - type: Transform - pos: -50.5,1.5 - parent: 4812 - - uid: 9512 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 4812 - - uid: 9523 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 4812 - - uid: 9525 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 4812 - - uid: 9526 - components: - - type: Transform - pos: -47.5,-2.5 - parent: 4812 - - uid: 9527 - components: - - type: Transform - pos: -47.5,-3.5 - parent: 4812 - - uid: 9528 - components: - - type: Transform - pos: -47.5,-4.5 - parent: 4812 - - uid: 9529 - components: - - type: Transform - pos: -48.5,-4.5 - parent: 4812 - - uid: 9530 - components: - - type: Transform - pos: -49.5,-4.5 - parent: 4812 - - uid: 9540 - components: - - type: Transform - pos: -36.5,1.5 - parent: 4812 - - uid: 9542 - components: - - type: Transform - pos: -36.5,0.5 - parent: 4812 - - uid: 9547 - components: - - type: Transform - pos: -36.5,-0.5 - parent: 4812 - - uid: 9559 - components: - - type: Transform - pos: -39.5,-0.5 - parent: 4812 - - uid: 9560 - components: - - type: Transform - pos: -39.5,-1.5 - parent: 4812 - - uid: 9561 - components: - - type: Transform - pos: -39.5,-2.5 - parent: 4812 - - uid: 9562 - components: - - type: Transform - pos: -39.5,-3.5 - parent: 4812 - - uid: 9574 - components: - - type: Transform - pos: -31.5,20.5 - parent: 4812 - - uid: 9589 - components: - - type: Transform - pos: -31.5,19.5 - parent: 4812 - - uid: 9694 - components: - - type: Transform - pos: -36.5,-2.5 - parent: 4812 - - uid: 9695 - components: - - type: Transform - pos: -36.5,-3.5 - parent: 4812 - - uid: 9696 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 4812 - - uid: 9697 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 4812 - - uid: 9708 - components: - - type: Transform - pos: -42.5,14.5 - parent: 4812 - - uid: 9709 - components: - - type: Transform - pos: -42.5,15.5 - parent: 4812 - - uid: 9710 - components: - - type: Transform - pos: -42.5,16.5 - parent: 4812 - - uid: 9711 - components: - - type: Transform - pos: -42.5,17.5 - parent: 4812 - - uid: 9712 - components: - - type: Transform - pos: -43.5,15.5 - parent: 4812 - - uid: 9713 - components: - - type: Transform - pos: -44.5,15.5 - parent: 4812 - - uid: 9714 - components: - - type: Transform - pos: -45.5,15.5 - parent: 4812 - - uid: 9715 - components: - - type: Transform - pos: -46.5,15.5 - parent: 4812 - - uid: 9716 - components: - - type: Transform - pos: -46.5,16.5 - parent: 4812 - - uid: 9717 - components: - - type: Transform - pos: -46.5,17.5 - parent: 4812 - - uid: 9718 - components: - - type: Transform - pos: -46.5,18.5 - parent: 4812 - - uid: 10041 - components: - - type: Transform - pos: -41.5,-4.5 - parent: 4812 - - uid: 10042 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 4812 - - uid: 10043 - components: - - type: Transform - pos: -41.5,-6.5 - parent: 4812 - - uid: 10044 - components: - - type: Transform - pos: -41.5,-7.5 - parent: 4812 - - uid: 10045 - components: - - type: Transform - pos: -41.5,-8.5 - parent: 4812 - - uid: 10046 - components: - - type: Transform - pos: -42.5,-8.5 - parent: 4812 - - uid: 10047 - components: - - type: Transform - pos: -43.5,-8.5 - parent: 4812 - - uid: 10048 - components: - - type: Transform - pos: -44.5,-8.5 - parent: 4812 - - uid: 10049 - components: - - type: Transform - pos: -44.5,-9.5 - parent: 4812 - - uid: 10050 - components: - - type: Transform - pos: -44.5,-10.5 - parent: 4812 - - uid: 10051 - components: - - type: Transform - pos: -44.5,-11.5 - parent: 4812 - - uid: 10052 - components: - - type: Transform - pos: -44.5,-12.5 - parent: 4812 - - uid: 10053 - components: - - type: Transform - pos: -44.5,-13.5 - parent: 4812 - - uid: 10054 - components: - - type: Transform - pos: -44.5,-14.5 - parent: 4812 - - uid: 10055 - components: - - type: Transform - pos: -44.5,-15.5 - parent: 4812 - - uid: 10056 - components: - - type: Transform - pos: -44.5,-16.5 - parent: 4812 - - uid: 10057 - components: - - type: Transform - pos: -44.5,-17.5 - parent: 4812 - - uid: 10058 - components: - - type: Transform - pos: -44.5,-18.5 - parent: 4812 - - uid: 10059 - components: - - type: Transform - pos: -45.5,-21.5 - parent: 4812 - - uid: 10060 - components: - - type: Transform - pos: -45.5,-20.5 - parent: 4812 - - uid: 10061 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 4812 - - uid: 10062 - components: - - type: Transform - pos: -46.5,-20.5 - parent: 4812 - - uid: 10063 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 4812 - - uid: 10064 - components: - - type: Transform - pos: -45.5,-12.5 - parent: 4812 - - uid: 10065 - components: - - type: Transform - pos: -46.5,-12.5 - parent: 4812 - - uid: 10066 - components: - - type: Transform - pos: -47.5,-12.5 - parent: 4812 - - uid: 10067 - components: - - type: Transform - pos: -48.5,-12.5 - parent: 4812 - - uid: 10068 - components: - - type: Transform - pos: -49.5,-12.5 - parent: 4812 - - uid: 10070 - components: - - type: Transform - pos: -51.5,-12.5 - parent: 4812 - - uid: 10071 - components: - - type: Transform - pos: -52.5,-12.5 - parent: 4812 - - uid: 10072 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 4812 - - uid: 10073 - components: - - type: Transform - pos: -53.5,-11.5 - parent: 4812 - - uid: 10074 - components: - - type: Transform - pos: -53.5,-10.5 - parent: 4812 - - uid: 10075 - components: - - type: Transform - pos: -53.5,-9.5 - parent: 4812 - - uid: 10076 - components: - - type: Transform - pos: -53.5,-8.5 - parent: 4812 - - uid: 10077 - components: - - type: Transform - pos: -49.5,-11.5 - parent: 4812 - - uid: 10078 - components: - - type: Transform - pos: -49.5,-10.5 - parent: 4812 - - uid: 10079 - components: - - type: Transform - pos: -49.5,-9.5 - parent: 4812 - - uid: 10080 - components: - - type: Transform - pos: -49.5,-8.5 - parent: 4812 - - uid: 10081 - components: - - type: Transform - pos: -49.5,-7.5 - parent: 4812 - - uid: 10082 - components: - - type: Transform - pos: -40.5,-8.5 - parent: 4812 - - uid: 10083 - components: - - type: Transform - pos: -40.5,-9.5 - parent: 4812 - - uid: 10084 - components: - - type: Transform - pos: -40.5,-10.5 - parent: 4812 - - uid: 10085 - components: - - type: Transform - pos: -40.5,-11.5 - parent: 4812 - - uid: 10086 - components: - - type: Transform - pos: -40.5,-12.5 - parent: 4812 - - uid: 10087 - components: - - type: Transform - pos: -40.5,-13.5 - parent: 4812 - - uid: 10088 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 4812 - - uid: 10089 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 4812 - - uid: 10090 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 4812 - - uid: 10091 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 4812 - - uid: 10092 - components: - - type: Transform - pos: -39.5,-8.5 - parent: 4812 - - uid: 10093 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 4812 - - uid: 10094 - components: - - type: Transform - pos: -37.5,-8.5 - parent: 4812 - - uid: 10095 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 4812 - - uid: 10096 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 4812 - - uid: 10097 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 4812 - - uid: 10098 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 4812 - - uid: 10099 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 4812 - - uid: 10100 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 4812 - - uid: 10101 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 4812 - - uid: 10102 - components: - - type: Transform - pos: -29.5,-8.5 - parent: 4812 - - uid: 10103 - components: - - type: Transform - pos: -33.5,-7.5 - parent: 4812 - - uid: 10104 - components: - - type: Transform - pos: -33.5,-6.5 - parent: 4812 - - uid: 10105 - components: - - type: Transform - pos: -33.5,-5.5 - parent: 4812 - - uid: 10106 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 4812 - - uid: 10107 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 4812 - - uid: 10108 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 4812 - - uid: 10109 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 4812 - - uid: 10110 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 4812 - - uid: 10111 - components: - - type: Transform - pos: -31.5,-6.5 - parent: 4812 - - uid: 10112 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 4812 - - uid: 10113 - components: - - type: Transform - pos: -29.5,-6.5 - parent: 4812 - - uid: 10114 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 4812 - - uid: 10115 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 4812 - - uid: 10116 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 4812 - - uid: 10117 - components: - - type: Transform - pos: -29.5,-2.5 - parent: 4812 - - uid: 10118 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 4812 - - uid: 10119 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 4812 - - uid: 10120 - components: - - type: Transform - pos: -26.5,-2.5 - parent: 4812 - - uid: 10121 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 4812 - - uid: 10122 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 4812 - - uid: 10123 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 4812 - - uid: 10124 - components: - - type: Transform - pos: -26.5,0.5 - parent: 4812 - - uid: 10125 - components: - - type: Transform - pos: -26.5,1.5 - parent: 4812 - - uid: 10126 - components: - - type: Transform - pos: -26.5,2.5 - parent: 4812 - - uid: 10127 - components: - - type: Transform - pos: -26.5,3.5 - parent: 4812 - - uid: 10128 - components: - - type: Transform - pos: -26.5,4.5 - parent: 4812 - - uid: 10129 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 4812 - - uid: 10130 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 4812 - - uid: 10131 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 4812 - - uid: 10132 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 4812 - - uid: 10133 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 4812 - - uid: 10134 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 4812 - - uid: 10135 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 4812 - - uid: 10136 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 4812 - - uid: 10137 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 4812 - - uid: 10138 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 4812 - - uid: 10139 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 4812 - - uid: 10140 - components: - - type: Transform - pos: -36.5,-13.5 - parent: 4812 - - uid: 10141 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 4812 - - uid: 10142 - components: - - type: Transform - pos: -36.5,-15.5 - parent: 4812 - - uid: 10143 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 4812 - - uid: 10144 - components: - - type: Transform - pos: -36.5,-17.5 - parent: 4812 - - uid: 10145 - components: - - type: Transform - pos: -36.5,-18.5 - parent: 4812 - - uid: 10146 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 4812 - - uid: 10147 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 4812 - - uid: 10148 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 4812 - - uid: 10149 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 4812 - - uid: 10150 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 4812 - - uid: 10151 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 4812 - - uid: 10152 - components: - - type: Transform - pos: -29.5,-11.5 - parent: 4812 - - uid: 10190 - components: - - type: Transform - pos: -51.5,-21.5 - parent: 4812 - - uid: 10191 - components: - - type: Transform - pos: -51.5,-22.5 - parent: 4812 - - uid: 10192 - components: - - type: Transform - pos: -52.5,-22.5 - parent: 4812 - - uid: 10193 - components: - - type: Transform - pos: -53.5,-22.5 - parent: 4812 - - uid: 10194 - components: - - type: Transform - pos: -54.5,-22.5 - parent: 4812 - - uid: 10195 - components: - - type: Transform - pos: -55.5,-22.5 - parent: 4812 - - uid: 10196 - components: - - type: Transform - pos: -51.5,-23.5 - parent: 4812 - - uid: 10197 - components: - - type: Transform - pos: -51.5,-24.5 - parent: 4812 - - uid: 10198 - components: - - type: Transform - pos: -51.5,-25.5 - parent: 4812 - - uid: 10199 - components: - - type: Transform - pos: -50.5,-22.5 - parent: 4812 - - uid: 10200 - components: - - type: Transform - pos: -49.5,-22.5 - parent: 4812 - - uid: 10201 - components: - - type: Transform - pos: -48.5,-22.5 - parent: 4812 - - uid: 10202 - components: - - type: Transform - pos: -47.5,-22.5 - parent: 4812 - - uid: 10203 - components: - - type: Transform - pos: -46.5,-22.5 - parent: 4812 - - uid: 10204 - components: - - type: Transform - pos: -45.5,-22.5 - parent: 4812 - - uid: 10205 - components: - - type: Transform - pos: -34.5,-31.5 - parent: 4812 - - uid: 10206 - components: - - type: Transform - pos: -35.5,-31.5 - parent: 4812 - - uid: 10207 - components: - - type: Transform - pos: -36.5,-31.5 - parent: 4812 - - uid: 10208 - components: - - type: Transform - pos: -37.5,-31.5 - parent: 4812 - - uid: 10209 - components: - - type: Transform - pos: -38.5,-31.5 - parent: 4812 - - uid: 10210 - components: - - type: Transform - pos: -39.5,-31.5 - parent: 4812 - - uid: 10211 - components: - - type: Transform - pos: -40.5,-31.5 - parent: 4812 - - uid: 10212 - components: - - type: Transform - pos: -40.5,-30.5 - parent: 4812 - - uid: 10213 - components: - - type: Transform - pos: -40.5,-29.5 - parent: 4812 - - uid: 10214 - components: - - type: Transform - pos: -40.5,-28.5 - parent: 4812 - - uid: 10215 - components: - - type: Transform - pos: -40.5,-27.5 - parent: 4812 - - uid: 10216 - components: - - type: Transform - pos: -40.5,-26.5 - parent: 4812 - - uid: 10217 - components: - - type: Transform - pos: -40.5,-25.5 - parent: 4812 - - uid: 10218 - components: - - type: Transform - pos: -40.5,-24.5 - parent: 4812 - - uid: 10219 - components: - - type: Transform - pos: -40.5,-23.5 - parent: 4812 - - uid: 10220 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 4812 - - uid: 10221 - components: - - type: Transform - pos: -40.5,-21.5 - parent: 4812 - - uid: 10222 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 4812 - - uid: 10223 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 4812 - - uid: 10508 - components: - - type: Transform - pos: -34.5,-25.5 - parent: 4812 - - uid: 10509 - components: - - type: Transform - pos: -34.5,-26.5 - parent: 4812 - - uid: 10510 - components: - - type: Transform - pos: -34.5,-27.5 - parent: 4812 - - uid: 10511 - components: - - type: Transform - pos: -34.5,-28.5 - parent: 4812 - - uid: 10512 - components: - - type: Transform - pos: -35.5,-28.5 - parent: 4812 - - uid: 10513 - components: - - type: Transform - pos: -36.5,-28.5 - parent: 4812 - - uid: 10514 - components: - - type: Transform - pos: -37.5,-28.5 - parent: 4812 - - uid: 10515 - components: - - type: Transform - pos: -37.5,-27.5 - parent: 4812 - - uid: 10516 - components: - - type: Transform - pos: -37.5,-26.5 - parent: 4812 - - uid: 10517 - components: - - type: Transform - pos: -37.5,-25.5 - parent: 4812 - - uid: 10518 - components: - - type: Transform - pos: -37.5,-24.5 - parent: 4812 - - uid: 10519 - components: - - type: Transform - pos: -37.5,-23.5 - parent: 4812 - - uid: 10599 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 4812 - - uid: 10615 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 4812 - - uid: 10656 - components: - - type: Transform - pos: -54.5,-12.5 - parent: 4812 - - uid: 10657 - components: - - type: Transform - pos: -55.5,-12.5 - parent: 4812 - - uid: 10665 - components: - - type: Transform - pos: -48.5,-7.5 - parent: 4812 - - uid: 10882 - components: - - type: Transform - pos: -38.5,7.5 - parent: 4812 - - uid: 10883 - components: - - type: Transform - pos: -37.5,7.5 - parent: 4812 - - uid: 10884 - components: - - type: Transform - pos: -36.5,7.5 - parent: 4812 - - uid: 10885 - components: - - type: Transform - pos: -35.5,7.5 - parent: 4812 - - uid: 10886 - components: - - type: Transform - pos: -34.5,7.5 - parent: 4812 - - uid: 10887 - components: - - type: Transform - pos: -33.5,7.5 - parent: 4812 - - uid: 10888 - components: - - type: Transform - pos: -32.5,7.5 - parent: 4812 - - uid: 10889 - components: - - type: Transform - pos: -31.5,7.5 - parent: 4812 - - uid: 10890 - components: - - type: Transform - pos: -30.5,7.5 - parent: 4812 - - uid: 10891 - components: - - type: Transform - pos: -26.5,5.5 - parent: 4812 - - uid: 10892 - components: - - type: Transform - pos: -26.5,6.5 - parent: 4812 - - uid: 10893 - components: - - type: Transform - pos: -26.5,7.5 - parent: 4812 - - uid: 10894 - components: - - type: Transform - pos: -26.5,8.5 - parent: 4812 - - uid: 10895 - components: - - type: Transform - pos: -25.5,8.5 - parent: 4812 - - uid: 10896 - components: - - type: Transform - pos: -22.5,9.5 - parent: 4812 - - uid: 10897 - components: - - type: Transform - pos: -22.5,8.5 - parent: 4812 - - uid: 11168 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 4812 - - uid: 11169 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 4812 - - uid: 11170 - components: - - type: Transform - pos: 9.5,-36.5 - parent: 4812 - - uid: 11171 - components: - - type: Transform - pos: 9.5,-37.5 - parent: 4812 - - uid: 11172 - components: - - type: Transform - pos: 9.5,-38.5 - parent: 4812 - - uid: 11173 - components: - - type: Transform - pos: 9.5,-39.5 - parent: 4812 - - uid: 11174 - components: - - type: Transform - pos: 9.5,-40.5 - parent: 4812 - - uid: 11175 - components: - - type: Transform - pos: 9.5,-41.5 - parent: 4812 - - uid: 11176 - components: - - type: Transform - pos: 9.5,-42.5 - parent: 4812 - - uid: 11177 - components: - - type: Transform - pos: 10.5,-41.5 - parent: 4812 - - uid: 11178 - components: - - type: Transform - pos: 11.5,-41.5 - parent: 4812 - - uid: 11179 - components: - - type: Transform - pos: 12.5,-41.5 - parent: 4812 - - uid: 11180 - components: - - type: Transform - pos: 13.5,-41.5 - parent: 4812 - - uid: 11181 - components: - - type: Transform - pos: 8.5,-41.5 - parent: 4812 - - uid: 11182 - components: - - type: Transform - pos: 7.5,-41.5 - parent: 4812 - - uid: 11183 - components: - - type: Transform - pos: 6.5,-41.5 - parent: 4812 - - uid: 11184 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 4812 - - uid: 11185 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 4812 - - uid: 11186 - components: - - type: Transform - pos: 11.5,-37.5 - parent: 4812 - - uid: 11187 - components: - - type: Transform - pos: 12.5,-37.5 - parent: 4812 - - uid: 11188 - components: - - type: Transform - pos: 13.5,-37.5 - parent: 4812 - - uid: 11189 - components: - - type: Transform - pos: 8.5,-37.5 - parent: 4812 - - uid: 11190 - components: - - type: Transform - pos: 7.5,-37.5 - parent: 4812 - - uid: 11191 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 4812 - - uid: 11192 - components: - - type: Transform - pos: 5.5,-37.5 - parent: 4812 - - uid: 11193 - components: - - type: Transform - pos: 9.5,-34.5 - parent: 4812 - - uid: 11194 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 4812 - - uid: 11195 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 4812 - - uid: 11196 - components: - - type: Transform - pos: 9.5,-31.5 - parent: 4812 - - uid: 11197 - components: - - type: Transform - pos: 8.5,-33.5 - parent: 4812 - - uid: 11198 - components: - - type: Transform - pos: 7.5,-33.5 - parent: 4812 - - uid: 11199 - components: - - type: Transform - pos: 6.5,-33.5 - parent: 4812 - - uid: 11200 - components: - - type: Transform - pos: 5.5,-33.5 - parent: 4812 - - uid: 11201 - components: - - type: Transform - pos: 10.5,-33.5 - parent: 4812 - - uid: 11202 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 4812 - - uid: 11203 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 4812 - - uid: 11204 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 4812 - - uid: 11205 - components: - - type: Transform - pos: 6.5,-30.5 - parent: 4812 - - uid: 11206 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 4812 - - uid: 11207 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 4812 - - uid: 11208 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 4812 - - uid: 11209 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 4812 - - uid: 11210 - components: - - type: Transform - pos: 11.5,-30.5 - parent: 4812 - - uid: 11211 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 4812 - - uid: 11212 - components: - - type: Transform - pos: 12.5,-31.5 - parent: 4812 - - uid: 11213 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 4812 - - uid: 11214 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 4812 - - uid: 11215 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 4812 - - uid: 11274 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 4812 - - uid: 11276 - components: - - type: Transform - pos: 19.5,-35.5 - parent: 4812 - - uid: 11277 - components: - - type: Transform - pos: 19.5,-36.5 - parent: 4812 - - uid: 11278 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 4812 - - uid: 11279 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 4812 - - uid: 11280 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 4812 - - uid: 11281 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 4812 - - uid: 11282 - components: - - type: Transform - pos: 18.5,-37.5 - parent: 4812 - - uid: 11283 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 4812 - - uid: 11310 - components: - - type: Transform - pos: 33.5,-37.5 - parent: 4812 - - uid: 11311 - components: - - type: Transform - pos: 33.5,-28.5 - parent: 4812 - - uid: 11312 - components: - - type: Transform - pos: 33.5,-29.5 - parent: 4812 - - uid: 11313 - components: - - type: Transform - pos: 33.5,-31.5 - parent: 4812 - - uid: 11314 - components: - - type: Transform - pos: 33.5,-32.5 - parent: 4812 - - uid: 11315 - components: - - type: Transform - pos: 33.5,-33.5 - parent: 4812 - - uid: 11316 - components: - - type: Transform - pos: 32.5,-33.5 - parent: 4812 - - uid: 11317 - components: - - type: Transform - pos: 31.5,-33.5 - parent: 4812 - - uid: 11318 - components: - - type: Transform - pos: 30.5,-33.5 - parent: 4812 - - uid: 11319 - components: - - type: Transform - pos: 29.5,-33.5 - parent: 4812 - - uid: 11320 - components: - - type: Transform - pos: 28.5,-33.5 - parent: 4812 - - uid: 11321 - components: - - type: Transform - pos: 27.5,-33.5 - parent: 4812 - - uid: 11322 - components: - - type: Transform - pos: 26.5,-33.5 - parent: 4812 - - uid: 11323 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 4812 - - uid: 11324 - components: - - type: Transform - pos: 25.5,-34.5 - parent: 4812 - - uid: 11325 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 4812 - - uid: 11441 - components: - - type: Transform - pos: 30.5,-37.5 - parent: 4812 - - uid: 11442 - components: - - type: Transform - pos: 30.5,-38.5 - parent: 4812 - - uid: 11443 - components: - - type: Transform - pos: 32.5,-38.5 - parent: 4812 - - uid: 11444 - components: - - type: Transform - pos: 31.5,-38.5 - parent: 4812 - - uid: 11445 - components: - - type: Transform - pos: 33.5,-38.5 - parent: 4812 - - uid: 11446 - components: - - type: Transform - pos: 34.5,-38.5 - parent: 4812 - - uid: 11447 - components: - - type: Transform - pos: 33.5,-36.5 - parent: 4812 - - uid: 11448 - components: - - type: Transform - pos: 34.5,-36.5 - parent: 4812 - - uid: 11449 - components: - - type: Transform - pos: 35.5,-36.5 - parent: 4812 - - uid: 11450 - components: - - type: Transform - pos: 36.5,-36.5 - parent: 4812 - - uid: 11451 - components: - - type: Transform - pos: 37.5,-36.5 - parent: 4812 - - uid: 11452 - components: - - type: Transform - pos: 32.5,-36.5 - parent: 4812 - - uid: 11453 - components: - - type: Transform - pos: 31.5,-36.5 - parent: 4812 - - uid: 11454 - components: - - type: Transform - pos: 31.5,-35.5 - parent: 4812 - - uid: 11455 - components: - - type: Transform - pos: 31.5,-34.5 - parent: 4812 - - uid: 11456 - components: - - type: Transform - pos: 33.5,-34.5 - parent: 4812 - - uid: 11457 - components: - - type: Transform - pos: 34.5,-34.5 - parent: 4812 - - uid: 11458 - components: - - type: Transform - pos: 35.5,-34.5 - parent: 4812 - - uid: 11459 - components: - - type: Transform - pos: 36.5,-34.5 - parent: 4812 - - uid: 11460 - components: - - type: Transform - pos: 36.5,-33.5 - parent: 4812 - - uid: 11919 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 4812 - - uid: 12048 - components: - - type: Transform - pos: -27.5,-23.5 - parent: 4812 - - uid: 12049 - components: - - type: Transform - pos: -28.5,-22.5 - parent: 4812 - - uid: 12050 - components: - - type: Transform - pos: -28.5,-24.5 - parent: 4812 - - uid: 12051 - components: - - type: Transform - pos: -28.5,-23.5 - parent: 4812 -- proto: CableApcStack - entities: - - uid: 6196 - components: - - type: Transform - pos: 7.451914,-16.53358 - parent: 4812 - - uid: 6249 - components: - - type: Transform - pos: 13.4315815,-23.512243 - parent: 4812 - - uid: 8585 - components: - - type: Transform - pos: -16.671284,7.8180285 - parent: 4812 - - uid: 11952 - components: - - type: Transform - pos: -10.655096,15.8788185 - parent: 4812 - - uid: 11953 - components: - - type: Transform - pos: -10.655096,15.8788185 - parent: 4812 -- proto: CableHV - entities: - - uid: 902 - components: - - type: Transform - pos: 8.5,4.5 - parent: 4812 - - uid: 943 - components: - - type: Transform - pos: -14.5,7.5 - parent: 4812 - - uid: 944 - components: - - type: Transform - pos: -14.5,8.5 - parent: 4812 - - uid: 945 - components: - - type: Transform - pos: -14.5,9.5 - parent: 4812 - - uid: 946 - components: - - type: Transform - pos: -14.5,10.5 - parent: 4812 - - uid: 947 - components: - - type: Transform - pos: -14.5,11.5 - parent: 4812 - - uid: 948 - components: - - type: Transform - pos: -14.5,12.5 - parent: 4812 - - uid: 949 - components: - - type: Transform - pos: -14.5,13.5 - parent: 4812 - - uid: 950 - components: - - type: Transform - pos: -13.5,13.5 - parent: 4812 - - uid: 951 - components: - - type: Transform - pos: -12.5,13.5 - parent: 4812 - - uid: 952 - components: - - type: Transform - pos: -11.5,13.5 - parent: 4812 - - uid: 953 - components: - - type: Transform - pos: -10.5,13.5 - parent: 4812 - - uid: 954 - components: - - type: Transform - pos: -9.5,13.5 - parent: 4812 - - uid: 955 - components: - - type: Transform - pos: -8.5,13.5 - parent: 4812 - - uid: 956 - components: - - type: Transform - pos: -7.5,13.5 - parent: 4812 - - uid: 957 - components: - - type: Transform - pos: -6.5,13.5 - parent: 4812 - - uid: 958 - components: - - type: Transform - pos: -5.5,13.5 - parent: 4812 - - uid: 959 - components: - - type: Transform - pos: -4.5,13.5 - parent: 4812 - - uid: 960 - components: - - type: Transform - pos: -3.5,13.5 - parent: 4812 - - uid: 961 - components: - - type: Transform - pos: -2.5,13.5 - parent: 4812 - - uid: 962 - components: - - type: Transform - pos: -1.5,13.5 - parent: 4812 - - uid: 964 - components: - - type: Transform - pos: -0.5,14.5 - parent: 4812 - - uid: 965 - components: - - type: Transform - pos: 0.5,14.5 - parent: 4812 - - uid: 966 - components: - - type: Transform - pos: 1.5,14.5 - parent: 4812 - - uid: 967 - components: - - type: Transform - pos: 2.5,14.5 - parent: 4812 - - uid: 968 - components: - - type: Transform - pos: 2.5,13.5 - parent: 4812 - - uid: 969 - components: - - type: Transform - pos: 2.5,12.5 - parent: 4812 - - uid: 970 - components: - - type: Transform - pos: 2.5,11.5 - parent: 4812 - - uid: 1003 - components: - - type: Transform - pos: 7.5,4.5 - parent: 4812 - - uid: 1367 - components: - - type: Transform - pos: 6.5,4.5 - parent: 4812 - - uid: 1368 - components: - - type: Transform - pos: 5.5,4.5 - parent: 4812 - - uid: 2080 - components: - - type: Transform - pos: 6.5,31.5 - parent: 4812 - - uid: 2081 - components: - - type: Transform - pos: 6.5,32.5 - parent: 4812 - - uid: 2082 - components: - - type: Transform - pos: 5.5,32.5 - parent: 4812 - - uid: 2083 - components: - - type: Transform - pos: 4.5,32.5 - parent: 4812 - - uid: 2084 - components: - - type: Transform - pos: 3.5,32.5 - parent: 4812 - - uid: 2085 - components: - - type: Transform - pos: 3.5,31.5 - parent: 4812 - - uid: 2086 - components: - - type: Transform - pos: 3.5,30.5 - parent: 4812 - - uid: 2087 - components: - - type: Transform - pos: 3.5,29.5 - parent: 4812 - - uid: 2088 - components: - - type: Transform - pos: 3.5,28.5 - parent: 4812 - - uid: 2089 - components: - - type: Transform - pos: 3.5,27.5 - parent: 4812 - - uid: 2090 - components: - - type: Transform - pos: 3.5,26.5 - parent: 4812 - - uid: 2091 - components: - - type: Transform - pos: 3.5,25.5 - parent: 4812 - - uid: 2092 - components: - - type: Transform - pos: 3.5,24.5 - parent: 4812 - - uid: 2093 - components: - - type: Transform - pos: 3.5,23.5 - parent: 4812 - - uid: 2094 - components: - - type: Transform - pos: 3.5,22.5 - parent: 4812 - - uid: 2095 - components: - - type: Transform - pos: 3.5,21.5 - parent: 4812 - - uid: 2096 - components: - - type: Transform - pos: 3.5,20.5 - parent: 4812 - - uid: 2097 - components: - - type: Transform - pos: 3.5,19.5 - parent: 4812 - - uid: 2098 - components: - - type: Transform - pos: 2.5,19.5 - parent: 4812 - - uid: 2099 - components: - - type: Transform - pos: 1.5,19.5 - parent: 4812 - - uid: 2100 - components: - - type: Transform - pos: 0.5,19.5 - parent: 4812 - - uid: 2101 - components: - - type: Transform - pos: -0.5,19.5 - parent: 4812 - - uid: 2102 - components: - - type: Transform - pos: -1.5,19.5 - parent: 4812 - - uid: 2103 - components: - - type: Transform - pos: -1.5,18.5 - parent: 4812 - - uid: 2104 - components: - - type: Transform - pos: -1.5,17.5 - parent: 4812 - - uid: 2105 - components: - - type: Transform - pos: -1.5,16.5 - parent: 4812 - - uid: 2106 - components: - - type: Transform - pos: -1.5,15.5 - parent: 4812 - - uid: 2107 - components: - - type: Transform - pos: -1.5,14.5 - parent: 4812 - - uid: 2108 - components: - - type: Transform - pos: 3.5,33.5 - parent: 4812 - - uid: 2109 - components: - - type: Transform - pos: 3.5,34.5 - parent: 4812 - - uid: 2110 - components: - - type: Transform - pos: 3.5,35.5 - parent: 4812 - - uid: 2111 - components: - - type: Transform - pos: 4.5,35.5 - parent: 4812 - - uid: 2112 - components: - - type: Transform - pos: 4.5,34.5 - parent: 4812 - - uid: 2113 - components: - - type: Transform - pos: 2.5,34.5 - parent: 4812 - - uid: 2114 - components: - - type: Transform - pos: 1.5,34.5 - parent: 4812 - - uid: 2115 - components: - - type: Transform - pos: 1.5,35.5 - parent: 4812 - - uid: 2116 - components: - - type: Transform - pos: 1.5,36.5 - parent: 4812 - - uid: 2117 - components: - - type: Transform - pos: 0.5,36.5 - parent: 4812 - - uid: 2118 - components: - - type: Transform - pos: 0.5,35.5 - parent: 4812 - - uid: 2119 - components: - - type: Transform - pos: -0.5,35.5 - parent: 4812 - - uid: 2120 - components: - - type: Transform - pos: -1.5,35.5 - parent: 4812 - - uid: 2121 - components: - - type: Transform - pos: -2.5,35.5 - parent: 4812 - - uid: 2122 - components: - - type: Transform - pos: -3.5,35.5 - parent: 4812 - - uid: 2123 - components: - - type: Transform - pos: -4.5,35.5 - parent: 4812 - - uid: 2124 - components: - - type: Transform - pos: -5.5,35.5 - parent: 4812 - - uid: 2125 - components: - - type: Transform - pos: -3.5,36.5 - parent: 4812 - - uid: 2126 - components: - - type: Transform - pos: -2.5,36.5 - parent: 4812 - - uid: 2127 - components: - - type: Transform - pos: -1.5,36.5 - parent: 4812 - - uid: 2128 - components: - - type: Transform - pos: -5.5,36.5 - parent: 4812 - - uid: 2129 - components: - - type: Transform - pos: -6.5,36.5 - parent: 4812 - - uid: 2130 - components: - - type: Transform - pos: -6.5,35.5 - parent: 4812 - - uid: 2131 - components: - - type: Transform - pos: 6.5,33.5 - parent: 4812 - - uid: 2132 - components: - - type: Transform - pos: -6.5,34.5 - parent: 4812 - - uid: 2133 - components: - - type: Transform - pos: -7.5,34.5 - parent: 4812 - - uid: 2134 - components: - - type: Transform - pos: -8.5,34.5 - parent: 4812 - - uid: 2135 - components: - - type: Transform - pos: -9.5,34.5 - parent: 4812 - - uid: 2136 - components: - - type: Transform - pos: -9.5,35.5 - parent: 4812 - - uid: 2137 - components: - - type: Transform - pos: -8.5,35.5 - parent: 4812 - - uid: 2138 - components: - - type: Transform - pos: -8.5,33.5 - parent: 4812 - - uid: 2139 - components: - - type: Transform - pos: -8.5,32.5 - parent: 4812 - - uid: 2140 - components: - - type: Transform - pos: -9.5,32.5 - parent: 4812 - - uid: 2839 - components: - - type: Transform - pos: 13.5,32.5 - parent: 4812 - - uid: 3047 - components: - - type: Transform - pos: 12.5,32.5 - parent: 4812 - - uid: 3048 - components: - - type: Transform - pos: 12.5,31.5 - parent: 4812 - - uid: 3049 - components: - - type: Transform - pos: 12.5,30.5 - parent: 4812 - - uid: 3050 - components: - - type: Transform - pos: 12.5,29.5 - parent: 4812 - - uid: 3051 - components: - - type: Transform - pos: 12.5,28.5 - parent: 4812 - - uid: 3052 - components: - - type: Transform - pos: 12.5,27.5 - parent: 4812 - - uid: 3053 - components: - - type: Transform - pos: 12.5,26.5 - parent: 4812 - - uid: 3054 - components: - - type: Transform - pos: 12.5,25.5 - parent: 4812 - - uid: 3055 - components: - - type: Transform - pos: 12.5,24.5 - parent: 4812 - - uid: 3056 - components: - - type: Transform - pos: 12.5,23.5 - parent: 4812 - - uid: 3057 - components: - - type: Transform - pos: 12.5,22.5 - parent: 4812 - - uid: 3058 - components: - - type: Transform - pos: 12.5,21.5 - parent: 4812 - - uid: 3059 - components: - - type: Transform - pos: 12.5,20.5 - parent: 4812 - - uid: 3060 - components: - - type: Transform - pos: 12.5,19.5 - parent: 4812 - - uid: 3061 - components: - - type: Transform - pos: 4.5,19.5 - parent: 4812 - - uid: 3062 - components: - - type: Transform - pos: 5.5,19.5 - parent: 4812 - - uid: 3063 - components: - - type: Transform - pos: 6.5,19.5 - parent: 4812 - - uid: 3064 - components: - - type: Transform - pos: 7.5,19.5 - parent: 4812 - - uid: 3065 - components: - - type: Transform - pos: 8.5,19.5 - parent: 4812 - - uid: 3066 - components: - - type: Transform - pos: 9.5,19.5 - parent: 4812 - - uid: 3067 - components: - - type: Transform - pos: 10.5,19.5 - parent: 4812 - - uid: 3068 - components: - - type: Transform - pos: 11.5,19.5 - parent: 4812 - - uid: 3069 - components: - - type: Transform - pos: 3.5,11.5 - parent: 4812 - - uid: 3070 - components: - - type: Transform - pos: 4.5,11.5 - parent: 4812 - - uid: 3071 - components: - - type: Transform - pos: 5.5,11.5 - parent: 4812 - - uid: 3072 - components: - - type: Transform - pos: 6.5,11.5 - parent: 4812 - - uid: 3073 - components: - - type: Transform - pos: 7.5,11.5 - parent: 4812 - - uid: 3074 - components: - - type: Transform - pos: 8.5,11.5 - parent: 4812 - - uid: 3075 - components: - - type: Transform - pos: 9.5,11.5 - parent: 4812 - - uid: 3076 - components: - - type: Transform - pos: 9.5,10.5 - parent: 4812 - - uid: 3077 - components: - - type: Transform - pos: 9.5,9.5 - parent: 4812 - - uid: 3078 - components: - - type: Transform - pos: 9.5,8.5 - parent: 4812 - - uid: 3079 - components: - - type: Transform - pos: 9.5,7.5 - parent: 4812 - - uid: 3080 - components: - - type: Transform - pos: 9.5,6.5 - parent: 4812 - - uid: 3081 - components: - - type: Transform - pos: 9.5,5.5 - parent: 4812 - - uid: 3082 - components: - - type: Transform - pos: 9.5,4.5 - parent: 4812 - - uid: 3083 - components: - - type: Transform - pos: 9.5,3.5 - parent: 4812 - - uid: 3084 - components: - - type: Transform - pos: 10.5,3.5 - parent: 4812 - - uid: 3085 - components: - - type: Transform - pos: 11.5,3.5 - parent: 4812 - - uid: 3086 - components: - - type: Transform - pos: 11.5,4.5 - parent: 4812 - - uid: 3087 - components: - - type: Transform - pos: 11.5,5.5 - parent: 4812 - - uid: 3088 - components: - - type: Transform - pos: 11.5,6.5 - parent: 4812 - - uid: 3089 - components: - - type: Transform - pos: 11.5,7.5 - parent: 4812 - - uid: 3090 - components: - - type: Transform - pos: 11.5,8.5 - parent: 4812 - - uid: 3091 - components: - - type: Transform - pos: 11.5,9.5 - parent: 4812 - - uid: 3092 - components: - - type: Transform - pos: 11.5,10.5 - parent: 4812 - - uid: 3093 - components: - - type: Transform - pos: 11.5,11.5 - parent: 4812 - - uid: 3094 - components: - - type: Transform - pos: 11.5,12.5 - parent: 4812 - - uid: 3095 - components: - - type: Transform - pos: 11.5,13.5 - parent: 4812 - - uid: 3096 - components: - - type: Transform - pos: 11.5,14.5 - parent: 4812 - - uid: 3097 - components: - - type: Transform - pos: 11.5,15.5 - parent: 4812 - - uid: 3098 - components: - - type: Transform - pos: 11.5,16.5 - parent: 4812 - - uid: 3099 - components: - - type: Transform - pos: 11.5,17.5 - parent: 4812 - - uid: 3100 - components: - - type: Transform - pos: 11.5,18.5 - parent: 4812 - - uid: 3789 - components: - - type: Transform - pos: 14.5,46.5 - parent: 4812 - - uid: 3790 - components: - - type: Transform - pos: 14.5,45.5 - parent: 4812 - - uid: 3791 - components: - - type: Transform - pos: 14.5,44.5 - parent: 4812 - - uid: 3792 - components: - - type: Transform - pos: 14.5,47.5 - parent: 4812 - - uid: 3793 - components: - - type: Transform - pos: 13.5,47.5 - parent: 4812 - - uid: 3853 - components: - - type: Transform - pos: 13.5,45.5 - parent: 4812 - - uid: 3854 - components: - - type: Transform - pos: 12.5,45.5 - parent: 4812 - - uid: 3855 - components: - - type: Transform - pos: 11.5,45.5 - parent: 4812 - - uid: 3856 - components: - - type: Transform - pos: 10.5,45.5 - parent: 4812 - - uid: 3857 - components: - - type: Transform - pos: 10.5,46.5 - parent: 4812 - - uid: 3858 - components: - - type: Transform - pos: 10.5,47.5 - parent: 4812 - - uid: 3859 - components: - - type: Transform - pos: 10.5,48.5 - parent: 4812 - - uid: 3860 - components: - - type: Transform - pos: 10.5,49.5 - parent: 4812 - - uid: 3861 - components: - - type: Transform - pos: 10.5,50.5 - parent: 4812 - - uid: 3862 - components: - - type: Transform - pos: 11.5,50.5 - parent: 4812 - - uid: 3863 - components: - - type: Transform - pos: 12.5,50.5 - parent: 4812 - - uid: 3864 - components: - - type: Transform - pos: 12.5,51.5 - parent: 4812 - - uid: 3865 - components: - - type: Transform - pos: 12.5,52.5 - parent: 4812 - - uid: 3866 - components: - - type: Transform - pos: 12.5,53.5 - parent: 4812 - - uid: 3867 - components: - - type: Transform - pos: 12.5,54.5 - parent: 4812 - - uid: 3868 - components: - - type: Transform - pos: 12.5,55.5 - parent: 4812 - - uid: 3869 - components: - - type: Transform - pos: 9.5,50.5 - parent: 4812 - - uid: 3870 - components: - - type: Transform - pos: 8.5,50.5 - parent: 4812 - - uid: 3871 - components: - - type: Transform - pos: 8.5,51.5 - parent: 4812 - - uid: 3872 - components: - - type: Transform - pos: 8.5,52.5 - parent: 4812 - - uid: 3873 - components: - - type: Transform - pos: 8.5,53.5 - parent: 4812 - - uid: 3874 - components: - - type: Transform - pos: 8.5,54.5 - parent: 4812 - - uid: 3875 - components: - - type: Transform - pos: 8.5,55.5 - parent: 4812 - - uid: 3876 - components: - - type: Transform - pos: 9.5,55.5 - parent: 4812 - - uid: 3877 - components: - - type: Transform - pos: 11.5,55.5 - parent: 4812 - - uid: 3878 - components: - - type: Transform - pos: 10.5,55.5 - parent: 4812 - - uid: 3879 - components: - - type: Transform - pos: 10.5,56.5 - parent: 4812 - - uid: 4235 - components: - - type: Transform - pos: 12.5,3.5 - parent: 4812 - - uid: 4236 - components: - - type: Transform - pos: 13.5,3.5 - parent: 4812 - - uid: 4237 - components: - - type: Transform - pos: 14.5,3.5 - parent: 4812 - - uid: 4238 - components: - - type: Transform - pos: 15.5,3.5 - parent: 4812 - - uid: 4239 - components: - - type: Transform - pos: 15.5,4.5 - parent: 4812 - - uid: 4240 - components: - - type: Transform - pos: 17.5,4.5 - parent: 4812 - - uid: 4241 - components: - - type: Transform - pos: 16.5,4.5 - parent: 4812 - - uid: 4242 - components: - - type: Transform - pos: 18.5,4.5 - parent: 4812 - - uid: 4243 - components: - - type: Transform - pos: 18.5,3.5 - parent: 4812 - - uid: 4244 - components: - - type: Transform - pos: 18.5,2.5 - parent: 4812 - - uid: 4245 - components: - - type: Transform - pos: 17.5,2.5 - parent: 4812 - - uid: 5014 - components: - - type: Transform - pos: -26.5,-30.5 - parent: 4812 - - uid: 5914 - components: - - type: Transform - pos: 16.5,-30.5 - parent: 4812 - - uid: 5915 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 4812 - - uid: 5916 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 4812 - - uid: 5917 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 4812 - - uid: 5918 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 4812 - - uid: 5919 - components: - - type: Transform - pos: 16.5,-33.5 - parent: 4812 - - uid: 5920 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 4812 - - uid: 5921 - components: - - type: Transform - pos: 18.5,-33.5 - parent: 4812 - - uid: 5922 - components: - - type: Transform - pos: 18.5,-32.5 - parent: 4812 - - uid: 5923 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 4812 - - uid: 5924 - components: - - type: Transform - pos: 18.5,-30.5 - parent: 4812 - - uid: 5925 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 4812 - - uid: 5926 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 4812 - - uid: 5927 - components: - - type: Transform - pos: 18.5,-27.5 - parent: 4812 - - uid: 5928 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 4812 - - uid: 5929 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 4812 - - uid: 5930 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 4812 - - uid: 5931 - components: - - type: Transform - pos: 18.5,-23.5 - parent: 4812 - - uid: 5932 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 4812 - - uid: 5933 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 4812 - - uid: 5934 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 4812 - - uid: 5935 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 4812 - - uid: 5936 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 4812 - - uid: 5937 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 4812 - - uid: 5938 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 4812 - - uid: 5939 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 4812 - - uid: 5940 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 4812 - - uid: 5941 - components: - - type: Transform - pos: 16.5,-15.5 - parent: 4812 - - uid: 5942 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 4812 - - uid: 5943 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 4812 - - uid: 5944 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 4812 - - uid: 5945 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 4812 - - uid: 5946 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 4812 - - uid: 5947 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 4812 - - uid: 5948 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 4812 - - uid: 5949 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 4812 - - uid: 5950 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 4812 - - uid: 5951 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 4812 - - uid: 5952 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 4812 - - uid: 5953 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 4812 - - uid: 5954 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 4812 - - uid: 5955 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 4812 - - uid: 5956 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 4812 - - uid: 5957 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 4812 - - uid: 5958 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 4812 - - uid: 5959 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 4812 - - uid: 5960 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 4812 - - uid: 5961 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 4812 - - uid: 5962 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 4812 - - uid: 5963 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 4812 - - uid: 5964 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 4812 - - uid: 5965 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 4812 - - uid: 5966 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 4812 - - uid: 5967 - components: - - type: Transform - pos: 9.5,0.5 - parent: 4812 - - uid: 5968 - components: - - type: Transform - pos: 9.5,1.5 - parent: 4812 - - uid: 5969 - components: - - type: Transform - pos: 9.5,2.5 - parent: 4812 - - uid: 6020 - components: - - type: Transform - pos: 16.5,-31.5 - parent: 4812 - - uid: 6519 - components: - - type: Transform - pos: -25.5,-30.5 - parent: 4812 - - uid: 6918 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 4812 - - uid: 6919 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 4812 - - uid: 6920 - components: - - type: Transform - pos: -8.5,-32.5 - parent: 4812 - - uid: 6921 - components: - - type: Transform - pos: -10.5,-32.5 - parent: 4812 - - uid: 6922 - components: - - type: Transform - pos: -9.5,-32.5 - parent: 4812 - - uid: 6923 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 4812 - - uid: 6924 - components: - - type: Transform - pos: -10.5,-34.5 - parent: 4812 - - uid: 6925 - components: - - type: Transform - pos: -9.5,-34.5 - parent: 4812 - - uid: 6926 - components: - - type: Transform - pos: -8.5,-34.5 - parent: 4812 - - uid: 6927 - components: - - type: Transform - pos: -7.5,-34.5 - parent: 4812 - - uid: 6928 - components: - - type: Transform - pos: -6.5,-34.5 - parent: 4812 - - uid: 6929 - components: - - type: Transform - pos: -5.5,-34.5 - parent: 4812 - - uid: 6930 - components: - - type: Transform - pos: -4.5,-34.5 - parent: 4812 - - uid: 6931 - components: - - type: Transform - pos: -3.5,-34.5 - parent: 4812 - - uid: 6932 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 4812 - - uid: 6933 - components: - - type: Transform - pos: -1.5,-34.5 - parent: 4812 - - uid: 6934 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 4812 - - uid: 6935 - components: - - type: Transform - pos: 0.5,-34.5 - parent: 4812 - - uid: 6936 - components: - - type: Transform - pos: 1.5,-34.5 - parent: 4812 - - uid: 6937 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 4812 - - uid: 6938 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 4812 - - uid: 6939 - components: - - type: Transform - pos: 1.5,-31.5 - parent: 4812 - - uid: 6940 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 4812 - - uid: 6941 - components: - - type: Transform - pos: 2.5,-30.5 - parent: 4812 - - uid: 6942 - components: - - type: Transform - pos: 3.5,-30.5 - parent: 4812 - - uid: 6943 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 4812 - - uid: 6944 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 4812 - - uid: 6945 - components: - - type: Transform - pos: 6.5,-30.5 - parent: 4812 - - uid: 6946 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 4812 - - uid: 6947 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 4812 - - uid: 6948 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 4812 - - uid: 6949 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 4812 - - uid: 6950 - components: - - type: Transform - pos: 11.5,-30.5 - parent: 4812 - - uid: 6951 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 4812 - - uid: 6952 - components: - - type: Transform - pos: 12.5,-31.5 - parent: 4812 - - uid: 6953 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 4812 - - uid: 6954 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 4812 - - uid: 6955 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 4812 - - uid: 6956 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 4812 - - uid: 6957 - components: - - type: Transform - pos: 1.5,-29.5 - parent: 4812 - - uid: 6958 - components: - - type: Transform - pos: 1.5,-28.5 - parent: 4812 - - uid: 6959 - components: - - type: Transform - pos: 1.5,-27.5 - parent: 4812 - - uid: 6960 - components: - - type: Transform - pos: 1.5,-26.5 - parent: 4812 - - uid: 6961 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 4812 - - uid: 6962 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 4812 - - uid: 6963 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 4812 - - uid: 6964 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 4812 - - uid: 6965 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 4812 - - uid: 6966 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 4812 - - uid: 6967 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 4812 - - uid: 6968 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 4812 - - uid: 6969 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 4812 - - uid: 6970 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 4812 - - uid: 6971 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 4812 - - uid: 6972 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 4812 - - uid: 6973 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 4812 - - uid: 6974 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 4812 - - uid: 6975 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 4812 - - uid: 6976 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 4812 - - uid: 6977 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 4812 - - uid: 6978 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 4812 - - uid: 6979 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 4812 - - uid: 6980 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 4812 - - uid: 6981 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 4812 - - uid: 7280 - components: - - type: Transform - pos: -27.5,-30.5 - parent: 4812 - - uid: 7282 - components: - - type: Transform - pos: -28.5,-30.5 - parent: 4812 - - uid: 7283 - components: - - type: Transform - pos: -29.5,-30.5 - parent: 4812 - - uid: 7958 - components: - - type: Transform - pos: -37.5,8.5 - parent: 4812 - - uid: 7959 - components: - - type: Transform - pos: -37.5,7.5 - parent: 4812 - - uid: 7960 - components: - - type: Transform - pos: -36.5,7.5 - parent: 4812 - - uid: 7961 - components: - - type: Transform - pos: -35.5,7.5 - parent: 4812 - - uid: 7962 - components: - - type: Transform - pos: -34.5,7.5 - parent: 4812 - - uid: 7963 - components: - - type: Transform - pos: -33.5,7.5 - parent: 4812 - - uid: 7964 - components: - - type: Transform - pos: -32.5,7.5 - parent: 4812 - - uid: 7965 - components: - - type: Transform - pos: -31.5,7.5 - parent: 4812 - - uid: 7966 - components: - - type: Transform - pos: -30.5,7.5 - parent: 4812 - - uid: 7967 - components: - - type: Transform - pos: -29.5,7.5 - parent: 4812 - - uid: 7968 - components: - - type: Transform - pos: -29.5,8.5 - parent: 4812 - - uid: 7969 - components: - - type: Transform - pos: -28.5,8.5 - parent: 4812 - - uid: 7970 - components: - - type: Transform - pos: -27.5,8.5 - parent: 4812 - - uid: 7971 - components: - - type: Transform - pos: -26.5,8.5 - parent: 4812 - - uid: 7972 - components: - - type: Transform - pos: -25.5,8.5 - parent: 4812 - - uid: 7973 - components: - - type: Transform - pos: -24.5,8.5 - parent: 4812 - - uid: 7974 - components: - - type: Transform - pos: -23.5,8.5 - parent: 4812 - - uid: 7975 - components: - - type: Transform - pos: -22.5,8.5 - parent: 4812 - - uid: 7976 - components: - - type: Transform - pos: -22.5,9.5 - parent: 4812 - - uid: 7977 - components: - - type: Transform - pos: -22.5,10.5 - parent: 4812 - - uid: 7978 - components: - - type: Transform - pos: -21.5,10.5 - parent: 4812 - - uid: 7979 - components: - - type: Transform - pos: -20.5,10.5 - parent: 4812 - - uid: 7980 - components: - - type: Transform - pos: -19.5,10.5 - parent: 4812 - - uid: 7981 - components: - - type: Transform - pos: -18.5,10.5 - parent: 4812 - - uid: 7982 - components: - - type: Transform - pos: -17.5,10.5 - parent: 4812 - - uid: 7983 - components: - - type: Transform - pos: -16.5,10.5 - parent: 4812 - - uid: 7984 - components: - - type: Transform - pos: -15.5,10.5 - parent: 4812 - - uid: 8725 - components: - - type: Transform - pos: -45.5,-2.5 - parent: 4812 - - uid: 8738 - components: - - type: Transform - pos: -45.5,-3.5 - parent: 4812 - - uid: 8739 - components: - - type: Transform - pos: -44.5,-3.5 - parent: 4812 - - uid: 8740 - components: - - type: Transform - pos: -44.5,-2.5 - parent: 4812 - - uid: 8741 - components: - - type: Transform - pos: -45.5,-1.5 - parent: 4812 - - uid: 8742 - components: - - type: Transform - pos: -44.5,-1.5 - parent: 4812 - - uid: 8743 - components: - - type: Transform - pos: -43.5,-1.5 - parent: 4812 - - uid: 8744 - components: - - type: Transform - pos: -42.5,-1.5 - parent: 4812 - - uid: 8745 - components: - - type: Transform - pos: -42.5,-2.5 - parent: 4812 - - uid: 8746 - components: - - type: Transform - pos: -42.5,-3.5 - parent: 4812 - - uid: 8747 - components: - - type: Transform - pos: -42.5,-4.5 - parent: 4812 - - uid: 8748 - components: - - type: Transform - pos: -44.5,-4.5 - parent: 4812 - - uid: 8749 - components: - - type: Transform - pos: -44.5,-5.5 - parent: 4812 - - uid: 8750 - components: - - type: Transform - pos: -42.5,-5.5 - parent: 4812 - - uid: 8755 - components: - - type: Transform - pos: -43.5,-2.5 - parent: 4812 - - uid: 9732 - components: - - type: Transform - pos: -42.5,-6.5 - parent: 4812 - - uid: 9733 - components: - - type: Transform - pos: -42.5,-7.5 - parent: 4812 - - uid: 9734 - components: - - type: Transform - pos: -42.5,-8.5 - parent: 4812 - - uid: 9735 - components: - - type: Transform - pos: -41.5,-8.5 - parent: 4812 - - uid: 9736 - components: - - type: Transform - pos: -40.5,-8.5 - parent: 4812 - - uid: 9737 - components: - - type: Transform - pos: -39.5,-8.5 - parent: 4812 - - uid: 9738 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 4812 - - uid: 9739 - components: - - type: Transform - pos: -37.5,-8.5 - parent: 4812 - - uid: 9740 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 4812 - - uid: 9741 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 4812 - - uid: 9742 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 4812 - - uid: 9743 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 4812 - - uid: 9744 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 4812 - - uid: 9745 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 4812 - - uid: 9746 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 4812 - - uid: 9747 - components: - - type: Transform - pos: -29.5,-8.5 - parent: 4812 - - uid: 9748 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 4812 - - uid: 9749 - components: - - type: Transform - pos: -29.5,-6.5 - parent: 4812 - - uid: 9750 - components: - - type: Transform - pos: -29.5,-5.5 - parent: 4812 - - uid: 9751 - components: - - type: Transform - pos: -38.5,7.5 - parent: 4812 - - uid: 9752 - components: - - type: Transform - pos: -39.5,7.5 - parent: 4812 - - uid: 9753 - components: - - type: Transform - pos: -39.5,5.5 - parent: 4812 - - uid: 9754 - components: - - type: Transform - pos: -38.5,5.5 - parent: 4812 - - uid: 9755 - components: - - type: Transform - pos: -39.5,6.5 - parent: 4812 - - uid: 9756 - components: - - type: Transform - pos: -37.5,5.5 - parent: 4812 - - uid: 9757 - components: - - type: Transform - pos: -36.5,5.5 - parent: 4812 - - uid: 9758 - components: - - type: Transform - pos: -36.5,4.5 - parent: 4812 - - uid: 9759 - components: - - type: Transform - pos: -36.5,3.5 - parent: 4812 - - uid: 9760 - components: - - type: Transform - pos: -36.5,2.5 - parent: 4812 - - uid: 9761 - components: - - type: Transform - pos: -36.5,1.5 - parent: 4812 - - uid: 9762 - components: - - type: Transform - pos: -36.5,0.5 - parent: 4812 - - uid: 9763 - components: - - type: Transform - pos: -36.5,-0.5 - parent: 4812 - - uid: 9764 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 4812 - - uid: 9765 - components: - - type: Transform - pos: -36.5,-2.5 - parent: 4812 - - uid: 9766 - components: - - type: Transform - pos: -36.5,-3.5 - parent: 4812 - - uid: 9767 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 4812 - - uid: 9768 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 4812 - - uid: 9769 - components: - - type: Transform - pos: -36.5,-6.5 - parent: 4812 - - uid: 9770 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 4812 - - uid: 9771 - components: - - type: Transform - pos: -33.5,-7.5 - parent: 4812 - - uid: 9772 - components: - - type: Transform - pos: -33.5,-6.5 - parent: 4812 - - uid: 9773 - components: - - type: Transform - pos: -33.5,-5.5 - parent: 4812 - - uid: 9774 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 4812 - - uid: 9775 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 4812 - - uid: 9776 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 4812 - - uid: 9777 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 4812 - - uid: 9778 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 4812 - - uid: 9779 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 4812 - - uid: 9780 - components: - - type: Transform - pos: -29.5,-2.5 - parent: 4812 - - uid: 9781 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 4812 - - uid: 9782 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 4812 - - uid: 9783 - components: - - type: Transform - pos: -26.5,-2.5 - parent: 4812 - - uid: 9784 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 4812 - - uid: 9785 - components: - - type: Transform - pos: -25.5,-3.5 - parent: 4812 - - uid: 9786 - components: - - type: Transform - pos: -25.5,-4.5 - parent: 4812 - - uid: 9787 - components: - - type: Transform - pos: -24.5,-4.5 - parent: 4812 - - uid: 9788 - components: - - type: Transform - pos: -23.5,-4.5 - parent: 4812 - - uid: 9789 - components: - - type: Transform - pos: -22.5,-4.5 - parent: 4812 - - uid: 9790 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 4812 - - uid: 9791 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 4812 - - uid: 9792 - components: - - type: Transform - pos: -20.5,-3.5 - parent: 4812 - - uid: 9793 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 4812 - - uid: 9794 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 4812 - - uid: 9795 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 4812 - - uid: 9796 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 4812 - - uid: 9797 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 4812 - - uid: 9798 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 4812 - - uid: 9799 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 4812 - - uid: 9800 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 4812 - - uid: 9801 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 4812 - - uid: 9802 - components: - - type: Transform - pos: -12.5,-1.5 - parent: 4812 - - uid: 9803 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 4812 - - uid: 9804 - components: - - type: Transform - pos: -12.5,0.5 - parent: 4812 - - uid: 9805 - components: - - type: Transform - pos: -12.5,1.5 - parent: 4812 - - uid: 9806 - components: - - type: Transform - pos: -12.5,2.5 - parent: 4812 - - uid: 9807 - components: - - type: Transform - pos: -12.5,3.5 - parent: 4812 - - uid: 9808 - components: - - type: Transform - pos: -12.5,4.5 - parent: 4812 - - uid: 9809 - components: - - type: Transform - pos: -12.5,5.5 - parent: 4812 - - uid: 9810 - components: - - type: Transform - pos: -12.5,6.5 - parent: 4812 - - uid: 9811 - components: - - type: Transform - pos: -12.5,7.5 - parent: 4812 - - uid: 9812 - components: - - type: Transform - pos: -12.5,8.5 - parent: 4812 - - uid: 9813 - components: - - type: Transform - pos: -12.5,9.5 - parent: 4812 - - uid: 9814 - components: - - type: Transform - pos: -12.5,10.5 - parent: 4812 - - uid: 9815 - components: - - type: Transform - pos: -12.5,11.5 - parent: 4812 - - uid: 9816 - components: - - type: Transform - pos: -12.5,12.5 - parent: 4812 - - uid: 9913 - components: - - type: Transform - pos: -44.5,-6.5 - parent: 4812 - - uid: 9914 - components: - - type: Transform - pos: -44.5,-7.5 - parent: 4812 - - uid: 9915 - components: - - type: Transform - pos: -44.5,-8.5 - parent: 4812 - - uid: 9916 - components: - - type: Transform - pos: -44.5,-9.5 - parent: 4812 - - uid: 9917 - components: - - type: Transform - pos: -44.5,-10.5 - parent: 4812 - - uid: 9918 - components: - - type: Transform - pos: -44.5,-11.5 - parent: 4812 - - uid: 9919 - components: - - type: Transform - pos: -44.5,-12.5 - parent: 4812 - - uid: 9920 - components: - - type: Transform - pos: -43.5,-12.5 - parent: 4812 - - uid: 9921 - components: - - type: Transform - pos: -42.5,-12.5 - parent: 4812 - - uid: 9922 - components: - - type: Transform - pos: -41.5,-12.5 - parent: 4812 - - uid: 9923 - components: - - type: Transform - pos: -40.5,-12.5 - parent: 4812 - - uid: 9924 - components: - - type: Transform - pos: -40.5,-10.5 - parent: 4812 - - uid: 9925 - components: - - type: Transform - pos: -40.5,-11.5 - parent: 4812 - - uid: 9926 - components: - - type: Transform - pos: -40.5,-13.5 - parent: 4812 - - uid: 9927 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 4812 - - uid: 9928 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 4812 - - uid: 9929 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 4812 - - uid: 9930 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 4812 - - uid: 9931 - components: - - type: Transform - pos: -40.5,-18.5 - parent: 4812 - - uid: 9960 - components: - - type: Transform - pos: -48.5,-19.5 - parent: 4812 - - uid: 9961 - components: - - type: Transform - pos: -48.5,-20.5 - parent: 4812 - - uid: 9962 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 4812 - - uid: 9963 - components: - - type: Transform - pos: -46.5,-20.5 - parent: 4812 - - uid: 9964 - components: - - type: Transform - pos: -45.5,-20.5 - parent: 4812 - - uid: 9965 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 4812 - - uid: 9966 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 4812 - - uid: 9967 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 4812 - - uid: 9974 - components: - - type: Transform - pos: -36.5,-19.5 - parent: 4812 - - uid: 9975 - components: - - type: Transform - pos: -36.5,-18.5 - parent: 4812 - - uid: 9976 - components: - - type: Transform - pos: -36.5,-17.5 - parent: 4812 - - uid: 9977 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 4812 - - uid: 9978 - components: - - type: Transform - pos: -36.5,-15.5 - parent: 4812 - - uid: 9979 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 4812 - - uid: 9980 - components: - - type: Transform - pos: -36.5,-13.5 - parent: 4812 - - uid: 9981 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 4812 - - uid: 9982 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 4812 - - uid: 9983 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 4812 - - uid: 9984 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 4812 - - uid: 9995 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 4812 - - uid: 9996 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 4812 - - uid: 9997 - components: - - type: Transform - pos: -39.5,-20.5 - parent: 4812 - - uid: 9998 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 4812 - - uid: 9999 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 4812 - - uid: 10000 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 4812 - - uid: 10159 - components: - - type: Transform - pos: -56.5,-22.5 - parent: 4812 - - uid: 10160 - components: - - type: Transform - pos: -55.5,-22.5 - parent: 4812 - - uid: 10161 - components: - - type: Transform - pos: -54.5,-22.5 - parent: 4812 - - uid: 10162 - components: - - type: Transform - pos: -53.5,-22.5 - parent: 4812 - - uid: 10163 - components: - - type: Transform - pos: -53.5,-23.5 - parent: 4812 - - uid: 10164 - components: - - type: Transform - pos: -53.5,-24.5 - parent: 4812 - - uid: 10168 - components: - - type: Transform - pos: -53.5,-25.5 - parent: 4812 - - uid: 10169 - components: - - type: Transform - pos: -52.5,-25.5 - parent: 4812 - - uid: 10170 - components: - - type: Transform - pos: -51.5,-25.5 - parent: 4812 - - uid: 10171 - components: - - type: Transform - pos: -51.5,-24.5 - parent: 4812 - - uid: 10172 - components: - - type: Transform - pos: -51.5,-23.5 - parent: 4812 - - uid: 10173 - components: - - type: Transform - pos: -51.5,-22.5 - parent: 4812 - - uid: 10174 - components: - - type: Transform - pos: -50.5,-22.5 - parent: 4812 - - uid: 10175 - components: - - type: Transform - pos: -49.5,-22.5 - parent: 4812 - - uid: 10176 - components: - - type: Transform - pos: -48.5,-22.5 - parent: 4812 - - uid: 10177 - components: - - type: Transform - pos: -47.5,-22.5 - parent: 4812 - - uid: 10178 - components: - - type: Transform - pos: -46.5,-22.5 - parent: 4812 - - uid: 10179 - components: - - type: Transform - pos: -45.5,-22.5 - parent: 4812 - - uid: 10180 - components: - - type: Transform - pos: -45.5,-21.5 - parent: 4812 - - uid: 10181 - components: - - type: Transform - pos: -50.5,-25.5 - parent: 4812 - - uid: 10225 - components: - - type: Transform - pos: -57.5,-22.5 - parent: 4812 - - uid: 10226 - components: - - type: Transform - pos: -59.5,-26.5 - parent: 4812 - - uid: 10227 - components: - - type: Transform - pos: -59.5,-25.5 - parent: 4812 - - uid: 10228 - components: - - type: Transform - pos: -59.5,-24.5 - parent: 4812 - - uid: 10229 - components: - - type: Transform - pos: -59.5,-23.5 - parent: 4812 - - uid: 10230 - components: - - type: Transform - pos: -59.5,-21.5 - parent: 4812 - - uid: 10231 - components: - - type: Transform - pos: -59.5,-20.5 - parent: 4812 - - uid: 10232 - components: - - type: Transform - pos: -59.5,-19.5 - parent: 4812 - - uid: 10233 - components: - - type: Transform - pos: -59.5,-18.5 - parent: 4812 - - uid: 10234 - components: - - type: Transform - pos: -61.5,-18.5 - parent: 4812 - - uid: 10235 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 4812 - - uid: 10236 - components: - - type: Transform - pos: -61.5,-20.5 - parent: 4812 - - uid: 10237 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 4812 - - uid: 10238 - components: - - type: Transform - pos: -61.5,-23.5 - parent: 4812 - - uid: 10239 - components: - - type: Transform - pos: -61.5,-24.5 - parent: 4812 - - uid: 10240 - components: - - type: Transform - pos: -61.5,-25.5 - parent: 4812 - - uid: 10241 - components: - - type: Transform - pos: -61.5,-26.5 - parent: 4812 - - uid: 10242 - components: - - type: Transform - pos: -63.5,-26.5 - parent: 4812 - - uid: 10243 - components: - - type: Transform - pos: -63.5,-25.5 - parent: 4812 - - uid: 10244 - components: - - type: Transform - pos: -63.5,-24.5 - parent: 4812 - - uid: 10245 - components: - - type: Transform - pos: -63.5,-23.5 - parent: 4812 - - uid: 10246 - components: - - type: Transform - pos: -65.5,-26.5 - parent: 4812 - - uid: 10247 - components: - - type: Transform - pos: -65.5,-25.5 - parent: 4812 - - uid: 10248 - components: - - type: Transform - pos: -65.5,-24.5 - parent: 4812 - - uid: 10249 - components: - - type: Transform - pos: -65.5,-23.5 - parent: 4812 - - uid: 10250 - components: - - type: Transform - pos: -69.5,-26.5 - parent: 4812 - - uid: 10251 - components: - - type: Transform - pos: -69.5,-25.5 - parent: 4812 - - uid: 10252 - components: - - type: Transform - pos: -69.5,-24.5 - parent: 4812 - - uid: 10253 - components: - - type: Transform - pos: -69.5,-23.5 - parent: 4812 - - uid: 10254 - components: - - type: Transform - pos: -67.5,-26.5 - parent: 4812 - - uid: 10255 - components: - - type: Transform - pos: -67.5,-25.5 - parent: 4812 - - uid: 10256 - components: - - type: Transform - pos: -67.5,-24.5 - parent: 4812 - - uid: 10257 - components: - - type: Transform - pos: -67.5,-23.5 - parent: 4812 - - uid: 10258 - components: - - type: Transform - pos: -69.5,-21.5 - parent: 4812 - - uid: 10259 - components: - - type: Transform - pos: -69.5,-20.5 - parent: 4812 - - uid: 10260 - components: - - type: Transform - pos: -69.5,-19.5 - parent: 4812 - - uid: 10261 - components: - - type: Transform - pos: -69.5,-18.5 - parent: 4812 - - uid: 10262 - components: - - type: Transform - pos: -67.5,-18.5 - parent: 4812 - - uid: 10263 - components: - - type: Transform - pos: -67.5,-19.5 - parent: 4812 - - uid: 10264 - components: - - type: Transform - pos: -67.5,-20.5 - parent: 4812 - - uid: 10265 - components: - - type: Transform - pos: -67.5,-21.5 - parent: 4812 - - uid: 10266 - components: - - type: Transform - pos: -65.5,-21.5 - parent: 4812 - - uid: 10267 - components: - - type: Transform - pos: -65.5,-20.5 - parent: 4812 - - uid: 10268 - components: - - type: Transform - pos: -65.5,-19.5 - parent: 4812 - - uid: 10269 - components: - - type: Transform - pos: -65.5,-18.5 - parent: 4812 - - uid: 10270 - components: - - type: Transform - pos: -63.5,-18.5 - parent: 4812 - - uid: 10271 - components: - - type: Transform - pos: -63.5,-19.5 - parent: 4812 - - uid: 10272 - components: - - type: Transform - pos: -63.5,-20.5 - parent: 4812 - - uid: 10273 - components: - - type: Transform - pos: -63.5,-21.5 - parent: 4812 - - uid: 10275 - components: - - type: Transform - pos: -71.5,-22.5 - parent: 4812 - - uid: 10276 - components: - - type: Transform - pos: -70.5,-22.5 - parent: 4812 - - uid: 10529 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 4812 - - uid: 10530 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 4812 - - uid: 10531 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 4812 - - uid: 10532 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 4812 - - uid: 10533 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 4812 - - uid: 10534 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 4812 - - uid: 10535 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 4812 - - uid: 10536 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 4812 - - uid: 10537 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 4812 - - uid: 10538 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 4812 - - uid: 10539 - components: - - type: Transform - pos: -19.5,-30.5 - parent: 4812 - - uid: 10540 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 4812 - - uid: 10541 - components: - - type: Transform - pos: -21.5,-30.5 - parent: 4812 - - uid: 10542 - components: - - type: Transform - pos: -22.5,-30.5 - parent: 4812 - - uid: 10543 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 4812 - - uid: 10544 - components: - - type: Transform - pos: -24.5,-30.5 - parent: 4812 - - uid: 10550 - components: - - type: Transform - pos: -29.5,-29.5 - parent: 4812 - - uid: 10551 - components: - - type: Transform - pos: -29.5,-28.5 - parent: 4812 - - uid: 10552 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 4812 - - uid: 10553 - components: - - type: Transform - pos: -29.5,-26.5 - parent: 4812 - - uid: 10554 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 4812 - - uid: 10555 - components: - - type: Transform - pos: -30.5,-25.5 - parent: 4812 - - uid: 10556 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 4812 - - uid: 10557 - components: - - type: Transform - pos: -32.5,-25.5 - parent: 4812 - - uid: 10558 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 4812 - - uid: 10559 - components: - - type: Transform - pos: -34.5,-25.5 - parent: 4812 - - uid: 10560 - components: - - type: Transform - pos: -34.5,-24.5 - parent: 4812 - - uid: 10561 - components: - - type: Transform - pos: -34.5,-23.5 - parent: 4812 - - uid: 10562 - components: - - type: Transform - pos: -34.5,-22.5 - parent: 4812 - - uid: 10563 - components: - - type: Transform - pos: -34.5,-21.5 - parent: 4812 - - uid: 10564 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 4812 - - uid: 10565 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 4812 - - uid: 10638 - components: - - type: Transform - pos: -45.5,-12.5 - parent: 4812 - - uid: 10639 - components: - - type: Transform - pos: -46.5,-12.5 - parent: 4812 - - uid: 10640 - components: - - type: Transform - pos: -47.5,-12.5 - parent: 4812 - - uid: 10641 - components: - - type: Transform - pos: -47.5,-11.5 - parent: 4812 - - uid: 10642 - components: - - type: Transform - pos: -48.5,-11.5 - parent: 4812 - - uid: 10643 - components: - - type: Transform - pos: -49.5,-11.5 - parent: 4812 - - uid: 10644 - components: - - type: Transform - pos: -50.5,-11.5 - parent: 4812 - - uid: 10645 - components: - - type: Transform - pos: -51.5,-11.5 - parent: 4812 - - uid: 10646 - components: - - type: Transform - pos: -52.5,-11.5 - parent: 4812 - - uid: 10647 - components: - - type: Transform - pos: -53.5,-11.5 - parent: 4812 - - uid: 10650 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 4812 - - uid: 10651 - components: - - type: Transform - pos: -53.5,-13.5 - parent: 4812 - - uid: 10662 - components: - - type: Transform - pos: -51.5,-12.5 - parent: 4812 - - uid: 10663 - components: - - type: Transform - pos: -51.5,-13.5 - parent: 4812 - - uid: 10669 - components: - - type: Transform - pos: -45.5,-6.5 - parent: 4812 - - uid: 10670 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 4812 - - uid: 10671 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 4812 - - uid: 10672 - components: - - type: Transform - pos: -48.5,-6.5 - parent: 4812 - - uid: 11394 - components: - - type: Transform - pos: 33.5,-39.5 - parent: 4812 - - uid: 11395 - components: - - type: Transform - pos: 32.5,-39.5 - parent: 4812 - - uid: 11396 - components: - - type: Transform - pos: 31.5,-39.5 - parent: 4812 - - uid: 11397 - components: - - type: Transform - pos: 33.5,-38.5 - parent: 4812 - - uid: 11398 - components: - - type: Transform - pos: 33.5,-37.5 - parent: 4812 - - uid: 11399 - components: - - type: Transform - pos: 33.5,-36.5 - parent: 4812 - - uid: 11400 - components: - - type: Transform - pos: 34.5,-36.5 - parent: 4812 - - uid: 11401 - components: - - type: Transform - pos: 35.5,-36.5 - parent: 4812 - - uid: 11402 - components: - - type: Transform - pos: 36.5,-36.5 - parent: 4812 - - uid: 11403 - components: - - type: Transform - pos: 37.5,-36.5 - parent: 4812 - - uid: 11404 - components: - - type: Transform - pos: 38.5,-36.5 - parent: 4812 - - uid: 11405 - components: - - type: Transform - pos: 31.5,-38.5 - parent: 4812 - - uid: 11406 - components: - - type: Transform - pos: 31.5,-37.5 - parent: 4812 - - uid: 11407 - components: - - type: Transform - pos: 31.5,-36.5 - parent: 4812 - - uid: 11408 - components: - - type: Transform - pos: 31.5,-35.5 - parent: 4812 - - uid: 11409 - components: - - type: Transform - pos: 31.5,-34.5 - parent: 4812 - - uid: 11410 - components: - - type: Transform - pos: 31.5,-33.5 - parent: 4812 - - uid: 11411 - components: - - type: Transform - pos: 30.5,-33.5 - parent: 4812 - - uid: 11412 - components: - - type: Transform - pos: 29.5,-33.5 - parent: 4812 - - uid: 11413 - components: - - type: Transform - pos: 28.5,-33.5 - parent: 4812 - - uid: 11414 - components: - - type: Transform - pos: 27.5,-33.5 - parent: 4812 - - uid: 11415 - components: - - type: Transform - pos: 26.5,-33.5 - parent: 4812 - - uid: 11416 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 4812 - - uid: 11417 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 4812 - - uid: 11418 - components: - - type: Transform - pos: 23.5,-33.5 - parent: 4812 - - uid: 11419 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 4812 - - uid: 11420 - components: - - type: Transform - pos: 21.5,-33.5 - parent: 4812 - - uid: 11421 - components: - - type: Transform - pos: 20.5,-33.5 - parent: 4812 - - uid: 11422 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 4812 - - uid: 11437 - components: - - type: Transform - pos: 30.5,-39.5 - parent: 4812 - - uid: 11477 - components: - - type: Transform - pos: 53.5,-36.5 - parent: 4812 - - uid: 11478 - components: - - type: Transform - pos: 52.5,-36.5 - parent: 4812 - - uid: 11479 - components: - - type: Transform - pos: 39.5,-36.5 - parent: 4812 - - uid: 11480 - components: - - type: Transform - pos: 40.5,-36.5 - parent: 4812 - - uid: 11481 - components: - - type: Transform - pos: 41.5,-35.5 - parent: 4812 - - uid: 11482 - components: - - type: Transform - pos: 41.5,-34.5 - parent: 4812 - - uid: 11483 - components: - - type: Transform - pos: 41.5,-33.5 - parent: 4812 - - uid: 11484 - components: - - type: Transform - pos: 41.5,-32.5 - parent: 4812 - - uid: 11485 - components: - - type: Transform - pos: 43.5,-35.5 - parent: 4812 - - uid: 11486 - components: - - type: Transform - pos: 43.5,-34.5 - parent: 4812 - - uid: 11487 - components: - - type: Transform - pos: 43.5,-33.5 - parent: 4812 - - uid: 11488 - components: - - type: Transform - pos: 43.5,-32.5 - parent: 4812 - - uid: 11489 - components: - - type: Transform - pos: 45.5,-34.5 - parent: 4812 - - uid: 11490 - components: - - type: Transform - pos: 45.5,-33.5 - parent: 4812 - - uid: 11491 - components: - - type: Transform - pos: 45.5,-32.5 - parent: 4812 - - uid: 11492 - components: - - type: Transform - pos: 45.5,-35.5 - parent: 4812 - - uid: 11493 - components: - - type: Transform - pos: 47.5,-35.5 - parent: 4812 - - uid: 11494 - components: - - type: Transform - pos: 47.5,-34.5 - parent: 4812 - - uid: 11495 - components: - - type: Transform - pos: 47.5,-33.5 - parent: 4812 - - uid: 11496 - components: - - type: Transform - pos: 47.5,-32.5 - parent: 4812 - - uid: 11497 - components: - - type: Transform - pos: 49.5,-35.5 - parent: 4812 - - uid: 11498 - components: - - type: Transform - pos: 49.5,-34.5 - parent: 4812 - - uid: 11499 - components: - - type: Transform - pos: 49.5,-33.5 - parent: 4812 - - uid: 11500 - components: - - type: Transform - pos: 49.5,-32.5 - parent: 4812 - - uid: 11501 - components: - - type: Transform - pos: 51.5,-35.5 - parent: 4812 - - uid: 11502 - components: - - type: Transform - pos: 51.5,-34.5 - parent: 4812 - - uid: 11503 - components: - - type: Transform - pos: 51.5,-33.5 - parent: 4812 - - uid: 11504 - components: - - type: Transform - pos: 51.5,-32.5 - parent: 4812 - - uid: 11505 - components: - - type: Transform - pos: 51.5,-40.5 - parent: 4812 - - uid: 11506 - components: - - type: Transform - pos: 51.5,-39.5 - parent: 4812 - - uid: 11507 - components: - - type: Transform - pos: 51.5,-38.5 - parent: 4812 - - uid: 11508 - components: - - type: Transform - pos: 51.5,-37.5 - parent: 4812 - - uid: 11509 - components: - - type: Transform - pos: 49.5,-40.5 - parent: 4812 - - uid: 11510 - components: - - type: Transform - pos: 49.5,-39.5 - parent: 4812 - - uid: 11511 - components: - - type: Transform - pos: 49.5,-38.5 - parent: 4812 - - uid: 11512 - components: - - type: Transform - pos: 49.5,-37.5 - parent: 4812 - - uid: 11513 - components: - - type: Transform - pos: 47.5,-40.5 - parent: 4812 - - uid: 11514 - components: - - type: Transform - pos: 47.5,-39.5 - parent: 4812 - - uid: 11515 - components: - - type: Transform - pos: 47.5,-38.5 - parent: 4812 - - uid: 11516 - components: - - type: Transform - pos: 47.5,-37.5 - parent: 4812 - - uid: 11517 - components: - - type: Transform - pos: 45.5,-40.5 - parent: 4812 - - uid: 11518 - components: - - type: Transform - pos: 45.5,-39.5 - parent: 4812 - - uid: 11519 - components: - - type: Transform - pos: 45.5,-38.5 - parent: 4812 - - uid: 11520 - components: - - type: Transform - pos: 45.5,-37.5 - parent: 4812 - - uid: 11521 - components: - - type: Transform - pos: 43.5,-40.5 - parent: 4812 - - uid: 11522 - components: - - type: Transform - pos: 43.5,-39.5 - parent: 4812 - - uid: 11523 - components: - - type: Transform - pos: 43.5,-38.5 - parent: 4812 - - uid: 11524 - components: - - type: Transform - pos: 43.5,-37.5 - parent: 4812 - - uid: 11525 - components: - - type: Transform - pos: 41.5,-40.5 - parent: 4812 - - uid: 11526 - components: - - type: Transform - pos: 41.5,-39.5 - parent: 4812 - - uid: 11527 - components: - - type: Transform - pos: 41.5,-38.5 - parent: 4812 - - uid: 11528 - components: - - type: Transform - pos: 41.5,-37.5 - parent: 4812 -- proto: CableHVStack - entities: - - uid: 8587 - components: - - type: Transform - pos: -16.483784,7.5211535 - parent: 4812 - - uid: 11956 - components: - - type: Transform - pos: -10.405096,15.5663185 - parent: 4812 - - uid: 11957 - components: - - type: Transform - pos: -10.405096,15.5663185 - parent: 4812 -- proto: CableMV - entities: - - uid: 327 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 4812 - - uid: 971 - components: - - type: Transform - pos: -14.5,7.5 - parent: 4812 - - uid: 972 - components: - - type: Transform - pos: -14.5,8.5 - parent: 4812 - - uid: 973 - components: - - type: Transform - pos: -14.5,9.5 - parent: 4812 - - uid: 974 - components: - - type: Transform - pos: -14.5,10.5 - parent: 4812 - - uid: 975 - components: - - type: Transform - pos: -14.5,11.5 - parent: 4812 - - uid: 976 - components: - - type: Transform - pos: -14.5,12.5 - parent: 4812 - - uid: 977 - components: - - type: Transform - pos: -14.5,13.5 - parent: 4812 - - uid: 978 - components: - - type: Transform - pos: -13.5,13.5 - parent: 4812 - - uid: 979 - components: - - type: Transform - pos: -12.5,13.5 - parent: 4812 - - uid: 980 - components: - - type: Transform - pos: -12.5,14.5 - parent: 4812 - - uid: 981 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 4812 - - uid: 982 - components: - - type: Transform - pos: -8.5,-3.5 - parent: 4812 - - uid: 983 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 4812 - - uid: 984 - components: - - type: Transform - pos: -10.5,-3.5 - parent: 4812 - - uid: 985 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 4812 - - uid: 986 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 4812 - - uid: 987 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 4812 - - uid: 988 - components: - - type: Transform - pos: -12.5,-1.5 - parent: 4812 - - uid: 989 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 4812 - - uid: 990 - components: - - type: Transform - pos: -12.5,0.5 - parent: 4812 - - uid: 991 - components: - - type: Transform - pos: -12.5,1.5 - parent: 4812 - - uid: 992 - components: - - type: Transform - pos: -12.5,2.5 - parent: 4812 - - uid: 993 - components: - - type: Transform - pos: -12.5,3.5 - parent: 4812 - - uid: 994 - components: - - type: Transform - pos: -12.5,4.5 - parent: 4812 - - uid: 995 - components: - - type: Transform - pos: -12.5,5.5 - parent: 4812 - - uid: 996 - components: - - type: Transform - pos: -12.5,6.5 - parent: 4812 - - uid: 997 - components: - - type: Transform - pos: -12.5,7.5 - parent: 4812 - - uid: 998 - components: - - type: Transform - pos: -12.5,8.5 - parent: 4812 - - uid: 999 - components: - - type: Transform - pos: -12.5,9.5 - parent: 4812 - - uid: 1000 - components: - - type: Transform - pos: -12.5,10.5 - parent: 4812 - - uid: 1001 - components: - - type: Transform - pos: -12.5,11.5 - parent: 4812 - - uid: 1002 - components: - - type: Transform - pos: -12.5,12.5 - parent: 4812 - - uid: 1004 - components: - - type: Transform - pos: 6.5,4.5 - parent: 4812 - - uid: 1005 - components: - - type: Transform - pos: 7.5,4.5 - parent: 4812 - - uid: 1006 - components: - - type: Transform - pos: 8.5,4.5 - parent: 4812 - - uid: 1007 - components: - - type: Transform - pos: 9.5,4.5 - parent: 4812 - - uid: 1008 - components: - - type: Transform - pos: 9.5,5.5 - parent: 4812 - - uid: 1009 - components: - - type: Transform - pos: 9.5,6.5 - parent: 4812 - - uid: 1010 - components: - - type: Transform - pos: 9.5,7.5 - parent: 4812 - - uid: 1011 - components: - - type: Transform - pos: 9.5,8.5 - parent: 4812 - - uid: 1012 - components: - - type: Transform - pos: 9.5,9.5 - parent: 4812 - - uid: 1013 - components: - - type: Transform - pos: 9.5,10.5 - parent: 4812 - - uid: 1014 - components: - - type: Transform - pos: 9.5,11.5 - parent: 4812 - - uid: 1015 - components: - - type: Transform - pos: 8.5,11.5 - parent: 4812 - - uid: 1016 - components: - - type: Transform - pos: 7.5,11.5 - parent: 4812 - - uid: 1017 - components: - - type: Transform - pos: 6.5,11.5 - parent: 4812 - - uid: 1018 - components: - - type: Transform - pos: 5.5,11.5 - parent: 4812 - - uid: 1019 - components: - - type: Transform - pos: 4.5,11.5 - parent: 4812 - - uid: 1020 - components: - - type: Transform - pos: 3.5,11.5 - parent: 4812 - - uid: 1021 - components: - - type: Transform - pos: 2.5,11.5 - parent: 4812 - - uid: 1023 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 4812 - - uid: 1024 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 4812 - - uid: 1025 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 4812 - - uid: 1026 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 4812 - - uid: 1027 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 4812 - - uid: 1028 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 4812 - - uid: 1029 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 4812 - - uid: 1030 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 4812 - - uid: 1031 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 4812 - - uid: 1032 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 4812 - - uid: 1033 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 4812 - - uid: 1034 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 4812 - - uid: 1035 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 4812 - - uid: 1036 - components: - - type: Transform - pos: 9.5,0.5 - parent: 4812 - - uid: 1037 - components: - - type: Transform - pos: 9.5,1.5 - parent: 4812 - - uid: 1038 - components: - - type: Transform - pos: 9.5,2.5 - parent: 4812 - - uid: 1039 - components: - - type: Transform - pos: 9.5,3.5 - parent: 4812 - - uid: 1419 - components: - - type: Transform - pos: 8.5,8.5 - parent: 4812 - - uid: 1543 - components: - - type: Transform - pos: 5.5,4.5 - parent: 4812 - - uid: 1858 - components: - - type: Transform - pos: 0.5,28.5 - parent: 4812 - - uid: 1860 - components: - - type: Transform - pos: -6.5,30.5 - parent: 4812 - - uid: 2141 - components: - - type: Transform - pos: 6.5,31.5 - parent: 4812 - - uid: 2142 - components: - - type: Transform - pos: 6.5,32.5 - parent: 4812 - - uid: 2143 - components: - - type: Transform - pos: 5.5,32.5 - parent: 4812 - - uid: 2144 - components: - - type: Transform - pos: 4.5,32.5 - parent: 4812 - - uid: 2145 - components: - - type: Transform - pos: 3.5,32.5 - parent: 4812 - - uid: 2146 - components: - - type: Transform - pos: 2.5,32.5 - parent: 4812 - - uid: 2147 - components: - - type: Transform - pos: 1.5,32.5 - parent: 4812 - - uid: 2148 - components: - - type: Transform - pos: 0.5,32.5 - parent: 4812 - - uid: 2149 - components: - - type: Transform - pos: -0.5,32.5 - parent: 4812 - - uid: 2150 - components: - - type: Transform - pos: -1.5,32.5 - parent: 4812 - - uid: 2151 - components: - - type: Transform - pos: -2.5,32.5 - parent: 4812 - - uid: 2152 - components: - - type: Transform - pos: -3.5,32.5 - parent: 4812 - - uid: 2153 - components: - - type: Transform - pos: -4.5,32.5 - parent: 4812 - - uid: 2154 - components: - - type: Transform - pos: -5.5,32.5 - parent: 4812 - - uid: 2155 - components: - - type: Transform - pos: -6.5,32.5 - parent: 4812 - - uid: 2156 - components: - - type: Transform - pos: -6.5,31.5 - parent: 4812 - - uid: 2157 - components: - - type: Transform - pos: 2.5,31.5 - parent: 4812 - - uid: 2158 - components: - - type: Transform - pos: 2.5,30.5 - parent: 4812 - - uid: 2159 - components: - - type: Transform - pos: 2.5,29.5 - parent: 4812 - - uid: 2160 - components: - - type: Transform - pos: 2.5,28.5 - parent: 4812 - - uid: 2161 - components: - - type: Transform - pos: 2.5,27.5 - parent: 4812 - - uid: 2162 - components: - - type: Transform - pos: 2.5,26.5 - parent: 4812 - - uid: 2163 - components: - - type: Transform - pos: 2.5,25.5 - parent: 4812 - - uid: 2164 - components: - - type: Transform - pos: 2.5,24.5 - parent: 4812 - - uid: 2165 - components: - - type: Transform - pos: 2.5,23.5 - parent: 4812 - - uid: 2166 - components: - - type: Transform - pos: 2.5,22.5 - parent: 4812 - - uid: 2167 - components: - - type: Transform - pos: 2.5,21.5 - parent: 4812 - - uid: 2168 - components: - - type: Transform - pos: 2.5,20.5 - parent: 4812 - - uid: 2169 - components: - - type: Transform - pos: 1.5,20.5 - parent: 4812 - - uid: 2170 - components: - - type: Transform - pos: 0.5,20.5 - parent: 4812 - - uid: 2171 - components: - - type: Transform - pos: 0.5,21.5 - parent: 4812 - - uid: 2172 - components: - - type: Transform - pos: 3.5,25.5 - parent: 4812 - - uid: 2173 - components: - - type: Transform - pos: 4.5,25.5 - parent: 4812 - - uid: 2174 - components: - - type: Transform - pos: 5.5,25.5 - parent: 4812 - - uid: 2175 - components: - - type: Transform - pos: 6.5,25.5 - parent: 4812 - - uid: 2176 - components: - - type: Transform - pos: 7.5,25.5 - parent: 4812 - - uid: 2177 - components: - - type: Transform - pos: 8.5,25.5 - parent: 4812 - - uid: 2178 - components: - - type: Transform - pos: 9.5,25.5 - parent: 4812 - - uid: 2179 - components: - - type: Transform - pos: 9.5,26.5 - parent: 4812 - - uid: 2180 - components: - - type: Transform - pos: 9.5,27.5 - parent: 4812 - - uid: 2181 - components: - - type: Transform - pos: 8.5,24.5 - parent: 4812 - - uid: 2182 - components: - - type: Transform - pos: 8.5,23.5 - parent: 4812 - - uid: 2183 - components: - - type: Transform - pos: 6.5,24.5 - parent: 4812 - - uid: 2184 - components: - - type: Transform - pos: 6.5,23.5 - parent: 4812 - - uid: 2185 - components: - - type: Transform - pos: -2.5,31.5 - parent: 4812 - - uid: 2186 - components: - - type: Transform - pos: 4.5,24.5 - parent: 4812 - - uid: 2187 - components: - - type: Transform - pos: 4.5,26.5 - parent: 4812 - - uid: 2188 - components: - - type: Transform - pos: -2.5,30.5 - parent: 4812 - - uid: 2189 - components: - - type: Transform - pos: -2.5,29.5 - parent: 4812 - - uid: 2190 - components: - - type: Transform - pos: -2.5,28.5 - parent: 4812 - - uid: 2191 - components: - - type: Transform - pos: -2.5,28.5 - parent: 4812 - - uid: 2192 - components: - - type: Transform - pos: -2.5,27.5 - parent: 4812 - - uid: 2193 - components: - - type: Transform - pos: -3.5,28.5 - parent: 4812 - - uid: 2194 - components: - - type: Transform - pos: -4.5,28.5 - parent: 4812 - - uid: 2195 - components: - - type: Transform - pos: -4.5,27.5 - parent: 4812 - - uid: 2196 - components: - - type: Transform - pos: -1.5,28.5 - parent: 4812 - - uid: 2197 - components: - - type: Transform - pos: -0.5,28.5 - parent: 4812 - - uid: 2198 - components: - - type: Transform - pos: -0.5,27.5 - parent: 4812 - - uid: 2200 - components: - - type: Transform - pos: 0.5,29.5 - parent: 4812 - - uid: 2203 - components: - - type: Transform - pos: -5.5,29.5 - parent: 4812 - - uid: 2208 - components: - - type: Transform - pos: -5.5,30.5 - parent: 4812 - - uid: 2385 - components: - - type: Transform - pos: -7.5,32.5 - parent: 4812 - - uid: 2386 - components: - - type: Transform - pos: -8.5,32.5 - parent: 4812 - - uid: 2387 - components: - - type: Transform - pos: -8.5,31.5 - parent: 4812 - - uid: 2388 - components: - - type: Transform - pos: -8.5,30.5 - parent: 4812 - - uid: 2389 - components: - - type: Transform - pos: -8.5,29.5 - parent: 4812 - - uid: 2390 - components: - - type: Transform - pos: -8.5,28.5 - parent: 4812 - - uid: 2391 - components: - - type: Transform - pos: -8.5,27.5 - parent: 4812 - - uid: 2392 - components: - - type: Transform - pos: -8.5,26.5 - parent: 4812 - - uid: 2393 - components: - - type: Transform - pos: -8.5,25.5 - parent: 4812 - - uid: 2394 - components: - - type: Transform - pos: -8.5,24.5 - parent: 4812 - - uid: 2396 - components: - - type: Transform - pos: -9.5,23.5 - parent: 4812 - - uid: 2397 - components: - - type: Transform - pos: -10.5,23.5 - parent: 4812 - - uid: 2398 - components: - - type: Transform - pos: -11.5,23.5 - parent: 4812 - - uid: 2399 - components: - - type: Transform - pos: -12.5,23.5 - parent: 4812 - - uid: 2400 - components: - - type: Transform - pos: -13.5,23.5 - parent: 4812 - - uid: 2401 - components: - - type: Transform - pos: -14.5,23.5 - parent: 4812 - - uid: 2402 - components: - - type: Transform - pos: -14.5,24.5 - parent: 4812 - - uid: 2403 - components: - - type: Transform - pos: -14.5,25.5 - parent: 4812 - - uid: 2404 - components: - - type: Transform - pos: -11.5,24.5 - parent: 4812 - - uid: 2405 - components: - - type: Transform - pos: -11.5,25.5 - parent: 4812 - - uid: 2406 - components: - - type: Transform - pos: -11.5,26.5 - parent: 4812 - - uid: 2407 - components: - - type: Transform - pos: -11.5,27.5 - parent: 4812 - - uid: 2408 - components: - - type: Transform - pos: -11.5,28.5 - parent: 4812 - - uid: 2409 - components: - - type: Transform - pos: -11.5,29.5 - parent: 4812 - - uid: 2410 - components: - - type: Transform - pos: -11.5,30.5 - parent: 4812 - - uid: 2411 - components: - - type: Transform - pos: -12.5,30.5 - parent: 4812 - - uid: 2412 - components: - - type: Transform - pos: -12.5,26.5 - parent: 4812 - - uid: 2413 - components: - - type: Transform - pos: -13.5,26.5 - parent: 4812 - - uid: 2414 - components: - - type: Transform - pos: -10.5,26.5 - parent: 4812 - - uid: 2415 - components: - - type: Transform - pos: -9.5,24.5 - parent: 4812 - - uid: 2416 - components: - - type: Transform - pos: -9.5,22.5 - parent: 4812 - - uid: 2453 - components: - - type: Transform - pos: -6.5,28.5 - parent: 4812 - - uid: 2457 - components: - - type: Transform - pos: -5.5,28.5 - parent: 4812 - - uid: 2632 - components: - - type: Transform - pos: 1.5,28.5 - parent: 4812 - - uid: 2633 - components: - - type: Transform - pos: 0.5,30.5 - parent: 4812 - - uid: 2644 - components: - - type: Transform - pos: 1.5,30.5 - parent: 4812 - - uid: 2834 - components: - - type: Transform - pos: 11.5,32.5 - parent: 4812 - - uid: 2838 - components: - - type: Transform - pos: 13.5,32.5 - parent: 4812 - - uid: 3120 - components: - - type: Transform - pos: 12.5,32.5 - parent: 4812 - - uid: 3121 - components: - - type: Transform - pos: 12.5,31.5 - parent: 4812 - - uid: 3122 - components: - - type: Transform - pos: 12.5,30.5 - parent: 4812 - - uid: 3123 - components: - - type: Transform - pos: 12.5,29.5 - parent: 4812 - - uid: 3124 - components: - - type: Transform - pos: 12.5,28.5 - parent: 4812 - - uid: 3125 - components: - - type: Transform - pos: 12.5,27.5 - parent: 4812 - - uid: 3126 - components: - - type: Transform - pos: 12.5,26.5 - parent: 4812 - - uid: 3127 - components: - - type: Transform - pos: 12.5,25.5 - parent: 4812 - - uid: 3128 - components: - - type: Transform - pos: 12.5,24.5 - parent: 4812 - - uid: 3129 - components: - - type: Transform - pos: 13.5,24.5 - parent: 4812 - - uid: 3130 - components: - - type: Transform - pos: 14.5,24.5 - parent: 4812 - - uid: 3131 - components: - - type: Transform - pos: 15.5,24.5 - parent: 4812 - - uid: 3132 - components: - - type: Transform - pos: 16.5,24.5 - parent: 4812 - - uid: 3133 - components: - - type: Transform - pos: 17.5,24.5 - parent: 4812 - - uid: 3134 - components: - - type: Transform - pos: 17.5,23.5 - parent: 4812 - - uid: 3135 - components: - - type: Transform - pos: 17.5,22.5 - parent: 4812 - - uid: 3265 - components: - - type: Transform - pos: -24.5,-25.5 - parent: 4812 - - uid: 3734 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 4812 - - uid: 3735 - components: - - type: Transform - pos: -25.5,-25.5 - parent: 4812 - - uid: 3884 - components: - - type: Transform - pos: 13.5,47.5 - parent: 4812 - - uid: 3885 - components: - - type: Transform - pos: 13.5,46.5 - parent: 4812 - - uid: 3886 - components: - - type: Transform - pos: 13.5,45.5 - parent: 4812 - - uid: 3887 - components: - - type: Transform - pos: 12.5,45.5 - parent: 4812 - - uid: 3888 - components: - - type: Transform - pos: 11.5,45.5 - parent: 4812 - - uid: 3889 - components: - - type: Transform - pos: 10.5,45.5 - parent: 4812 - - uid: 3890 - components: - - type: Transform - pos: 10.5,46.5 - parent: 4812 - - uid: 3891 - components: - - type: Transform - pos: 10.5,47.5 - parent: 4812 - - uid: 3892 - components: - - type: Transform - pos: 10.5,48.5 - parent: 4812 - - uid: 3893 - components: - - type: Transform - pos: 10.5,49.5 - parent: 4812 - - uid: 3894 - components: - - type: Transform - pos: 10.5,50.5 - parent: 4812 - - uid: 3895 - components: - - type: Transform - pos: 11.5,50.5 - parent: 4812 - - uid: 3896 - components: - - type: Transform - pos: 11.5,51.5 - parent: 4812 - - uid: 4012 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 4812 - - uid: 4247 - components: - - type: Transform - pos: 17.5,2.5 - parent: 4812 - - uid: 4248 - components: - - type: Transform - pos: 18.5,2.5 - parent: 4812 - - uid: 4249 - components: - - type: Transform - pos: 19.5,2.5 - parent: 4812 - - uid: 4250 - components: - - type: Transform - pos: 19.5,1.5 - parent: 4812 - - uid: 4251 - components: - - type: Transform - pos: 19.5,0.5 - parent: 4812 - - uid: 4252 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 4812 - - uid: 4253 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 4812 - - uid: 4254 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 4812 - - uid: 4255 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 4812 - - uid: 4256 - components: - - type: Transform - pos: 22.5,-1.5 - parent: 4812 - - uid: 4806 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 4812 - - uid: 4813 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 4812 - - uid: 4870 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 4812 - - uid: 4914 - components: - - type: Transform - pos: -17.5,-20.5 - parent: 4812 - - uid: 4915 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 4812 - - uid: 4945 - components: - - type: Transform - pos: -18.5,-19.5 - parent: 4812 - - uid: 4956 - components: - - type: Transform - pos: -20.5,-26.5 - parent: 4812 - - uid: 4957 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 4812 - - uid: 4959 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 4812 - - uid: 4960 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 4812 - - uid: 4965 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 4812 - - uid: 4967 - components: - - type: Transform - pos: -16.5,-25.5 - parent: 4812 - - uid: 4974 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 4812 - - uid: 4975 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 4812 - - uid: 4995 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 4812 - - uid: 5972 - components: - - type: Transform - pos: 16.5,-30.5 - parent: 4812 - - uid: 5973 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 4812 - - uid: 5974 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 4812 - - uid: 5975 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 4812 - - uid: 5976 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 4812 - - uid: 5977 - components: - - type: Transform - pos: 16.5,-33.5 - parent: 4812 - - uid: 5978 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 4812 - - uid: 5979 - components: - - type: Transform - pos: 18.5,-33.5 - parent: 4812 - - uid: 5980 - components: - - type: Transform - pos: 18.5,-32.5 - parent: 4812 - - uid: 5981 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 4812 - - uid: 5982 - components: - - type: Transform - pos: 18.5,-30.5 - parent: 4812 - - uid: 5983 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 4812 - - uid: 5984 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 4812 - - uid: 5985 - components: - - type: Transform - pos: 18.5,-27.5 - parent: 4812 - - uid: 5986 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 4812 - - uid: 5987 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 4812 - - uid: 5988 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 4812 - - uid: 5989 - components: - - type: Transform - pos: 18.5,-23.5 - parent: 4812 - - uid: 5990 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 4812 - - uid: 5991 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 4812 - - uid: 5992 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 4812 - - uid: 5993 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 4812 - - uid: 5994 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 4812 - - uid: 5995 - components: - - type: Transform - pos: 15.5,-20.5 - parent: 4812 - - uid: 5996 - components: - - type: Transform - pos: 14.5,-20.5 - parent: 4812 - - uid: 5997 - components: - - type: Transform - pos: 13.5,-20.5 - parent: 4812 - - uid: 5998 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 4812 - - uid: 5999 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 4812 - - uid: 6000 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 4812 - - uid: 6001 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 4812 - - uid: 6002 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 4812 - - uid: 6003 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 4812 - - uid: 6004 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 4812 - - uid: 6005 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 4812 - - uid: 6006 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 4812 - - uid: 6007 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 4812 - - uid: 6008 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 4812 - - uid: 6009 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 4812 - - uid: 6010 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 4812 - - uid: 6011 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 4812 - - uid: 6012 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 4812 - - uid: 6013 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 4812 - - uid: 6014 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 4812 - - uid: 6015 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 4812 - - uid: 6016 - components: - - type: Transform - pos: 27.5,-22.5 - parent: 4812 - - uid: 6017 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 4812 - - uid: 6018 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 4812 - - uid: 6051 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 4812 - - uid: 6065 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 4812 - - uid: 6635 - components: - - type: Transform - pos: -30.5,19.5 - parent: 4812 - - uid: 6636 - components: - - type: Transform - pos: -31.5,21.5 - parent: 4812 - - uid: 6639 - components: - - type: Transform - pos: -31.5,20.5 - parent: 4812 - - uid: 6640 - components: - - type: Transform - pos: -26.5,-25.5 - parent: 4812 - - uid: 6641 - components: - - type: Transform - pos: -27.5,-25.5 - parent: 4812 - - uid: 6660 - components: - - type: Transform - pos: -25.5,-23.5 - parent: 4812 - - uid: 6661 - components: - - type: Transform - pos: -24.5,-22.5 - parent: 4812 - - uid: 6664 - components: - - type: Transform - pos: -20.5,-22.5 - parent: 4812 - - uid: 6666 - components: - - type: Transform - pos: -25.5,-24.5 - parent: 4812 - - uid: 6668 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 4812 - - uid: 6780 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 4812 - - uid: 6782 - components: - - type: Transform - pos: -19.5,-22.5 - parent: 4812 - - uid: 6787 - components: - - type: Transform - pos: -16.5,-21.5 - parent: 4812 - - uid: 6902 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 4812 - - uid: 6903 - components: - - type: Transform - pos: -8.5,-32.5 - parent: 4812 - - uid: 6904 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 4812 - - uid: 6905 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 4812 - - uid: 6906 - components: - - type: Transform - pos: -9.5,-32.5 - parent: 4812 - - uid: 6907 - components: - - type: Transform - pos: -10.5,-32.5 - parent: 4812 - - uid: 6908 - components: - - type: Transform - pos: -11.5,-32.5 - parent: 4812 - - uid: 6909 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 4812 - - uid: 6910 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 4812 - - uid: 6911 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 4812 - - uid: 6912 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 4812 - - uid: 6913 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 4812 - - uid: 6914 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 4812 - - uid: 6915 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 4812 - - uid: 6916 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 4812 - - uid: 6917 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 4812 - - uid: 7029 - components: - - type: Transform - pos: -22.5,-25.5 - parent: 4812 - - uid: 7062 - components: - - type: Transform - pos: -17.5,-15.5 - parent: 4812 - - uid: 7065 - components: - - type: Transform - pos: -15.5,-16.5 - parent: 4812 - - uid: 7183 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 4812 - - uid: 7237 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 4812 - - uid: 7238 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 4812 - - uid: 7239 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 4812 - - uid: 7257 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 4812 - - uid: 7261 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 4812 - - uid: 7263 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 4812 - - uid: 7264 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 4812 - - uid: 7265 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 4812 - - uid: 7266 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 4812 - - uid: 7270 - components: - - type: Transform - pos: -23.5,-22.5 - parent: 4812 - - uid: 7271 - components: - - type: Transform - pos: -25.5,-22.5 - parent: 4812 - - uid: 7274 - components: - - type: Transform - pos: -14.5,-26.5 - parent: 4812 - - uid: 7275 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 4812 - - uid: 7277 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 4812 - - uid: 7286 - components: - - type: Transform - pos: -22.5,-22.5 - parent: 4812 - - uid: 7338 - components: - - type: Transform - pos: -13.5,-26.5 - parent: 4812 - - uid: 7339 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 4812 - - uid: 7341 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 4812 - - uid: 7342 - components: - - type: Transform - pos: -10.5,-28.5 - parent: 4812 - - uid: 7345 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 4812 - - uid: 7348 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 4812 - - uid: 7384 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 4812 - - uid: 7387 - components: - - type: Transform - pos: -21.5,-22.5 - parent: 4812 - - uid: 7467 - components: - - type: Transform - pos: -8.5,-34.5 - parent: 4812 - - uid: 7468 - components: - - type: Transform - pos: -7.5,-34.5 - parent: 4812 - - uid: 7469 - components: - - type: Transform - pos: -6.5,-34.5 - parent: 4812 - - uid: 7470 - components: - - type: Transform - pos: -5.5,-34.5 - parent: 4812 - - uid: 7471 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 4812 - - uid: 7472 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 4812 - - uid: 7473 - components: - - type: Transform - pos: -5.5,-31.5 - parent: 4812 - - uid: 7474 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 4812 - - uid: 7475 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 4812 - - uid: 7476 - components: - - type: Transform - pos: -5.5,-28.5 - parent: 4812 - - uid: 7477 - components: - - type: Transform - pos: -5.5,-27.5 - parent: 4812 - - uid: 7478 - components: - - type: Transform - pos: -5.5,-26.5 - parent: 4812 - - uid: 7479 - components: - - type: Transform - pos: -5.5,-25.5 - parent: 4812 - - uid: 7480 - components: - - type: Transform - pos: -5.5,-24.5 - parent: 4812 - - uid: 7481 - components: - - type: Transform - pos: -5.5,-23.5 - parent: 4812 - - uid: 7482 - components: - - type: Transform - pos: -5.5,-22.5 - parent: 4812 - - uid: 7483 - components: - - type: Transform - pos: -5.5,-21.5 - parent: 4812 - - uid: 7484 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 4812 - - uid: 7485 - components: - - type: Transform - pos: -3.5,-21.5 - parent: 4812 - - uid: 7486 - components: - - type: Transform - pos: -2.5,-21.5 - parent: 4812 - - uid: 7487 - components: - - type: Transform - pos: -1.5,-21.5 - parent: 4812 - - uid: 7488 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 4812 - - uid: 7986 - components: - - type: Transform - pos: -36.5,13.5 - parent: 4812 - - uid: 7987 - components: - - type: Transform - pos: -36.5,12.5 - parent: 4812 - - uid: 7988 - components: - - type: Transform - pos: -36.5,11.5 - parent: 4812 - - uid: 7989 - components: - - type: Transform - pos: -35.5,11.5 - parent: 4812 - - uid: 7990 - components: - - type: Transform - pos: -34.5,11.5 - parent: 4812 - - uid: 7991 - components: - - type: Transform - pos: -33.5,11.5 - parent: 4812 - - uid: 7992 - components: - - type: Transform - pos: -32.5,11.5 - parent: 4812 - - uid: 7993 - components: - - type: Transform - pos: -31.5,11.5 - parent: 4812 - - uid: 7994 - components: - - type: Transform - pos: -31.5,10.5 - parent: 4812 - - uid: 7995 - components: - - type: Transform - pos: -31.5,9.5 - parent: 4812 - - uid: 7996 - components: - - type: Transform - pos: -31.5,8.5 - parent: 4812 - - uid: 7997 - components: - - type: Transform - pos: -31.5,7.5 - parent: 4812 - - uid: 7998 - components: - - type: Transform - pos: -32.5,7.5 - parent: 4812 - - uid: 7999 - components: - - type: Transform - pos: -33.5,7.5 - parent: 4812 - - uid: 8000 - components: - - type: Transform - pos: -34.5,7.5 - parent: 4812 - - uid: 8001 - components: - - type: Transform - pos: -35.5,7.5 - parent: 4812 - - uid: 8002 - components: - - type: Transform - pos: -36.5,7.5 - parent: 4812 - - uid: 8003 - components: - - type: Transform - pos: -37.5,7.5 - parent: 4812 - - uid: 8004 - components: - - type: Transform - pos: -37.5,8.5 - parent: 4812 - - uid: 8005 - components: - - type: Transform - pos: -30.5,11.5 - parent: 4812 - - uid: 8006 - components: - - type: Transform - pos: -29.5,11.5 - parent: 4812 - - uid: 8007 - components: - - type: Transform - pos: -29.5,12.5 - parent: 4812 - - uid: 8008 - components: - - type: Transform - pos: -29.5,13.5 - parent: 4812 - - uid: 8009 - components: - - type: Transform - pos: -29.5,14.5 - parent: 4812 - - uid: 8010 - components: - - type: Transform - pos: -29.5,15.5 - parent: 4812 - - uid: 8011 - components: - - type: Transform - pos: -29.5,16.5 - parent: 4812 - - uid: 8012 - components: - - type: Transform - pos: -29.5,17.5 - parent: 4812 - - uid: 8013 - components: - - type: Transform - pos: -29.5,18.5 - parent: 4812 - - uid: 8014 - components: - - type: Transform - pos: -29.5,19.5 - parent: 4812 - - uid: 8015 - components: - - type: Transform - pos: -28.5,19.5 - parent: 4812 - - uid: 8016 - components: - - type: Transform - pos: -27.5,19.5 - parent: 4812 - - uid: 8017 - components: - - type: Transform - pos: -26.5,19.5 - parent: 4812 - - uid: 8018 - components: - - type: Transform - pos: -25.5,19.5 - parent: 4812 - - uid: 8019 - components: - - type: Transform - pos: -24.5,19.5 - parent: 4812 - - uid: 8020 - components: - - type: Transform - pos: -24.5,20.5 - parent: 4812 - - uid: 8021 - components: - - type: Transform - pos: -28.5,16.5 - parent: 4812 - - uid: 8022 - components: - - type: Transform - pos: -27.5,16.5 - parent: 4812 - - uid: 8023 - components: - - type: Transform - pos: -26.5,16.5 - parent: 4812 - - uid: 8024 - components: - - type: Transform - pos: -25.5,16.5 - parent: 4812 - - uid: 8025 - components: - - type: Transform - pos: -24.5,16.5 - parent: 4812 - - uid: 8026 - components: - - type: Transform - pos: -24.5,17.5 - parent: 4812 - - uid: 8027 - components: - - type: Transform - pos: -27.5,17.5 - parent: 4812 - - uid: 8028 - components: - - type: Transform - pos: -27.5,20.5 - parent: 4812 - - uid: 8029 - components: - - type: Transform - pos: -29.5,10.5 - parent: 4812 - - uid: 8030 - components: - - type: Transform - pos: -28.5,10.5 - parent: 4812 - - uid: 8031 - components: - - type: Transform - pos: -27.5,10.5 - parent: 4812 - - uid: 8032 - components: - - type: Transform - pos: -26.5,10.5 - parent: 4812 - - uid: 8033 - components: - - type: Transform - pos: -25.5,10.5 - parent: 4812 - - uid: 8034 - components: - - type: Transform - pos: -24.5,10.5 - parent: 4812 - - uid: 8035 - components: - - type: Transform - pos: -32.5,10.5 - parent: 4812 - - uid: 8036 - components: - - type: Transform - pos: -32.5,12.5 - parent: 4812 - - uid: 8037 - components: - - type: Transform - pos: -30.5,14.5 - parent: 4812 - - uid: 8038 - components: - - type: Transform - pos: -31.5,14.5 - parent: 4812 - - uid: 8039 - components: - - type: Transform - pos: -32.5,14.5 - parent: 4812 - - uid: 8040 - components: - - type: Transform - pos: -33.5,14.5 - parent: 4812 - - uid: 8041 - components: - - type: Transform - pos: -33.5,13.5 - parent: 4812 - - uid: 8042 - components: - - type: Transform - pos: -34.5,14.5 - parent: 4812 - - uid: 8043 - components: - - type: Transform - pos: -35.5,14.5 - parent: 4812 - - uid: 8044 - components: - - type: Transform - pos: -35.5,13.5 - parent: 4812 - - uid: 8045 - components: - - type: Transform - pos: -35.5,15.5 - parent: 4812 - - uid: 8046 - components: - - type: Transform - pos: -35.5,16.5 - parent: 4812 - - uid: 8047 - components: - - type: Transform - pos: -35.5,17.5 - parent: 4812 - - uid: 8048 - components: - - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 8049 - components: - - type: Transform - pos: -33.5,15.5 - parent: 4812 - - uid: 8050 - components: - - type: Transform - pos: -33.5,16.5 - parent: 4812 - - uid: 8051 - components: - - type: Transform - pos: -33.5,17.5 - parent: 4812 - - uid: 8052 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - - uid: 8053 - components: - - type: Transform - pos: -33.5,19.5 - parent: 4812 - - uid: 8054 - components: - - type: Transform - pos: -33.5,20.5 - parent: 4812 - - uid: 8055 - components: - - type: Transform - pos: -32.5,19.5 - parent: 4812 - - uid: 8056 - components: - - type: Transform - pos: -32.5,20.5 - parent: 4812 - - uid: 8069 - components: - - type: Transform - pos: -31.5,19.5 - parent: 4812 - - uid: 8177 - components: - - type: Transform - pos: -23.5,20.5 - parent: 4812 - - uid: 8178 - components: - - type: Transform - pos: -23.5,21.5 - parent: 4812 - - uid: 8179 - components: - - type: Transform - pos: -22.5,20.5 - parent: 4812 - - uid: 8180 - components: - - type: Transform - pos: -21.5,20.5 - parent: 4812 - - uid: 8181 - components: - - type: Transform - pos: -20.5,20.5 - parent: 4812 - - uid: 8182 - components: - - type: Transform - pos: -19.5,20.5 - parent: 4812 - - uid: 8183 - components: - - type: Transform - pos: -19.5,21.5 - parent: 4812 - - uid: 8184 - components: - - type: Transform - pos: -20.5,21.5 - parent: 4812 - - uid: 8185 - components: - - type: Transform - pos: -21.5,21.5 - parent: 4812 - - uid: 8186 - components: - - type: Transform - pos: -21.5,22.5 - parent: 4812 - - uid: 8187 - components: - - type: Transform - pos: -21.5,23.5 - parent: 4812 - - uid: 8188 - components: - - type: Transform - pos: -21.5,24.5 - parent: 4812 - - uid: 8189 - components: - - type: Transform - pos: -21.5,25.5 - parent: 4812 - - uid: 8190 - components: - - type: Transform - pos: -21.5,26.5 - parent: 4812 - - uid: 8191 - components: - - type: Transform - pos: -21.5,27.5 - parent: 4812 - - uid: 8192 - components: - - type: Transform - pos: -21.5,28.5 - parent: 4812 - - uid: 8193 - components: - - type: Transform - pos: -22.5,28.5 - parent: 4812 - - uid: 8194 - components: - - type: Transform - pos: -22.5,29.5 - parent: 4812 - - uid: 8195 - components: - - type: Transform - pos: -22.5,26.5 - parent: 4812 - - uid: 8196 - components: - - type: Transform - pos: -23.5,26.5 - parent: 4812 - - uid: 8853 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 4812 - - uid: 8858 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 4812 - - uid: 8878 - components: - - type: Transform - pos: -24.5,-10.5 - parent: 4812 - - uid: 8879 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 4812 - - uid: 8880 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 4812 - - uid: 8881 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 4812 - - uid: 8882 - components: - - type: Transform - pos: -27.5,-11.5 - parent: 4812 - - uid: 8883 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 4812 - - uid: 8884 - components: - - type: Transform - pos: -29.5,-11.5 - parent: 4812 - - uid: 8885 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 4812 - - uid: 8886 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 4812 - - uid: 8887 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 4812 - - uid: 8888 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 4812 - - uid: 8889 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 4812 - - uid: 8890 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 4812 - - uid: 8891 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 4812 - - uid: 8892 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 4812 - - uid: 8893 - components: - - type: Transform - pos: -36.5,-13.5 - parent: 4812 - - uid: 8894 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 4812 - - uid: 8895 - components: - - type: Transform - pos: -36.5,-15.5 - parent: 4812 - - uid: 8897 - components: - - type: Transform - pos: -33.5,-24.5 - parent: 4812 - - uid: 8898 - components: - - type: Transform - pos: -34.5,-24.5 - parent: 4812 - - uid: 8899 - components: - - type: Transform - pos: -34.5,-23.5 - parent: 4812 - - uid: 8900 - components: - - type: Transform - pos: -34.5,-22.5 - parent: 4812 - - uid: 8901 - components: - - type: Transform - pos: -34.5,-21.5 - parent: 4812 - - uid: 8902 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 4812 - - uid: 8906 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 4812 - - uid: 8967 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 4812 - - uid: 8969 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 4812 - - uid: 8971 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 4812 - - uid: 8972 - components: - - type: Transform - pos: 29.5,-25.5 - parent: 4812 - - uid: 8973 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 4812 - - uid: 8974 - components: - - type: Transform - pos: 31.5,-25.5 - parent: 4812 - - uid: 8975 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 4812 - - uid: 8976 - components: - - type: Transform - pos: 32.5,-26.5 - parent: 4812 - - uid: 9014 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 4812 - - uid: 9074 - components: - - type: Transform - pos: 32.5,-28.5 - parent: 4812 - - uid: 9089 - components: - - type: Transform - pos: 32.5,-29.5 - parent: 4812 - - uid: 9287 - components: - - type: Transform - pos: -38.5,7.5 - parent: 4812 - - uid: 9289 - components: - - type: Transform - pos: -38.5,6.5 - parent: 4812 - - uid: 9524 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 4812 - - uid: 9580 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 4812 - - uid: 9581 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 4812 - - uid: 9582 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 4812 - - uid: 9583 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 4812 - - uid: 10001 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 4812 - - uid: 10002 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 4812 - - uid: 10003 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 4812 - - uid: 10004 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 4812 - - uid: 10005 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 4812 - - uid: 10006 - components: - - type: Transform - pos: -39.5,-20.5 - parent: 4812 - - uid: 10007 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 4812 - - uid: 10008 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 4812 - - uid: 10009 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 4812 - - uid: 10010 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 4812 - - uid: 10011 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 4812 - - uid: 10012 - components: - - type: Transform - pos: -45.5,-20.5 - parent: 4812 - - uid: 10013 - components: - - type: Transform - pos: -46.5,-20.5 - parent: 4812 - - uid: 10014 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 4812 - - uid: 10015 - components: - - type: Transform - pos: -48.5,-20.5 - parent: 4812 - - uid: 10016 - components: - - type: Transform - pos: -48.5,-19.5 - parent: 4812 - - uid: 10017 - components: - - type: Transform - pos: -36.5,-19.5 - parent: 4812 - - uid: 10018 - components: - - type: Transform - pos: -36.5,-18.5 - parent: 4812 - - uid: 10019 - components: - - type: Transform - pos: -36.5,-17.5 - parent: 4812 - - uid: 10020 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 4812 - - uid: 10022 - components: - - type: Transform - pos: -44.5,-19.5 - parent: 4812 - - uid: 10023 - components: - - type: Transform - pos: -44.5,-18.5 - parent: 4812 - - uid: 10024 - components: - - type: Transform - pos: -44.5,-17.5 - parent: 4812 - - uid: 10025 - components: - - type: Transform - pos: -44.5,-16.5 - parent: 4812 - - uid: 10026 - components: - - type: Transform - pos: -44.5,-15.5 - parent: 4812 - - uid: 10027 - components: - - type: Transform - pos: -44.5,-14.5 - parent: 4812 - - uid: 10028 - components: - - type: Transform - pos: -44.5,-13.5 - parent: 4812 - - uid: 10029 - components: - - type: Transform - pos: -44.5,-12.5 - parent: 4812 - - uid: 10030 - components: - - type: Transform - pos: -44.5,-11.5 - parent: 4812 - - uid: 10031 - components: - - type: Transform - pos: -44.5,-10.5 - parent: 4812 - - uid: 10032 - components: - - type: Transform - pos: -44.5,-9.5 - parent: 4812 - - uid: 10033 - components: - - type: Transform - pos: -44.5,-8.5 - parent: 4812 - - uid: 10034 - components: - - type: Transform - pos: -44.5,-7.5 - parent: 4812 - - uid: 10035 - components: - - type: Transform - pos: -44.5,-6.5 - parent: 4812 - - uid: 10036 - components: - - type: Transform - pos: -43.5,-6.5 - parent: 4812 - - uid: 10037 - components: - - type: Transform - pos: -42.5,-6.5 - parent: 4812 - - uid: 10038 - components: - - type: Transform - pos: -41.5,-6.5 - parent: 4812 - - uid: 10039 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 4812 - - uid: 10040 - components: - - type: Transform - pos: -41.5,-4.5 - parent: 4812 - - uid: 10184 - components: - - type: Transform - pos: -50.5,-25.5 - parent: 4812 - - uid: 10185 - components: - - type: Transform - pos: -50.5,-24.5 - parent: 4812 - - uid: 10186 - components: - - type: Transform - pos: -51.5,-24.5 - parent: 4812 - - uid: 10187 - components: - - type: Transform - pos: -51.5,-23.5 - parent: 4812 - - uid: 10188 - components: - - type: Transform - pos: -51.5,-22.5 - parent: 4812 - - uid: 10189 - components: - - type: Transform - pos: -51.5,-21.5 - parent: 4812 - - uid: 10652 - components: - - type: Transform - pos: -53.5,-13.5 - parent: 4812 - - uid: 10653 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 4812 - - uid: 10654 - components: - - type: Transform - pos: -54.5,-12.5 - parent: 4812 - - uid: 10655 - components: - - type: Transform - pos: -55.5,-12.5 - parent: 4812 - - uid: 11151 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 4812 - - uid: 11152 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 4812 - - uid: 11153 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 4812 - - uid: 11154 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 4812 - - uid: 11155 - components: - - type: Transform - pos: 12.5,-31.5 - parent: 4812 - - uid: 11156 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 4812 - - uid: 11157 - components: - - type: Transform - pos: 11.5,-30.5 - parent: 4812 - - uid: 11158 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 4812 - - uid: 11159 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 4812 - - uid: 11160 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 4812 - - uid: 11161 - components: - - type: Transform - pos: 8.5,-31.5 - parent: 4812 - - uid: 11162 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 4812 - - uid: 11163 - components: - - type: Transform - pos: 8.5,-33.5 - parent: 4812 - - uid: 11164 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 4812 - - uid: 11165 - components: - - type: Transform - pos: 8.5,-35.5 - parent: 4812 - - uid: 11166 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 4812 - - uid: 11167 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 4812 - - uid: 11438 - components: - - type: Transform - pos: 30.5,-39.5 - parent: 4812 - - uid: 11439 - components: - - type: Transform - pos: 30.5,-38.5 - parent: 4812 - - uid: 11440 - components: - - type: Transform - pos: 30.5,-37.5 - parent: 4812 -- proto: CableMVStack - entities: - - uid: 8586 - components: - - type: Transform - pos: -16.577534,7.6930285 - parent: 4812 - - uid: 11954 - components: - - type: Transform - pos: -10.530096,15.7538185 - parent: 4812 - - uid: 11955 - components: - - type: Transform - pos: -10.530096,15.7538185 - parent: 4812 -- proto: CableTerminal - entities: - - uid: 3794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,46.5 - parent: 4812 - - uid: 8736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-3.5 - parent: 4812 - - uid: 8737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-3.5 - parent: 4812 - - uid: 10167 - components: - - type: Transform - pos: -53.5,-24.5 - parent: 4812 - - uid: 10648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-12.5 - parent: 4812 - - uid: 11393 - components: - - type: Transform - pos: 33.5,-38.5 - parent: 4812 -- proto: CandyBowl - entities: - - uid: 10667 - components: - - type: Transform - pos: -9.517075,-13.504629 - parent: 4812 -- proto: CaptainIDCard - entities: - - uid: 2588 - components: - - type: Transform - pos: -12.545029,27.590694 - parent: 4812 -- proto: CarbonDioxideCanister - entities: - - uid: 9453 - components: - - type: Transform - pos: -53.5,5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: Carpet - entities: - - uid: 1739 - components: - - type: Transform - pos: -9.5,8.5 - parent: 4812 - - uid: 1740 - components: - - type: Transform - pos: -9.5,7.5 - parent: 4812 - - uid: 1741 - components: - - type: Transform - pos: -9.5,6.5 - parent: 4812 - - uid: 1742 - components: - - type: Transform - pos: -9.5,5.5 - parent: 4812 - - uid: 1743 - components: - - type: Transform - pos: -9.5,4.5 - parent: 4812 - - uid: 1744 - components: - - type: Transform - pos: -8.5,8.5 - parent: 4812 - - uid: 1745 - components: - - type: Transform - pos: -8.5,7.5 - parent: 4812 - - uid: 1746 - components: - - type: Transform - pos: -8.5,6.5 - parent: 4812 - - uid: 1747 - components: - - type: Transform - pos: -8.5,5.5 - parent: 4812 - - uid: 1748 - components: - - type: Transform - pos: -8.5,4.5 - parent: 4812 - - uid: 5377 - components: - - type: Transform - pos: 19.5,-17.5 - parent: 4812 - - uid: 5378 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 4812 - - uid: 5379 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 4812 - - uid: 5380 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 4812 - - uid: 5381 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 4812 - - uid: 5382 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 4812 - - uid: 6400 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 4812 - - uid: 6401 - components: - - type: Transform - pos: -3.5,-17.5 - parent: 4812 - - uid: 6402 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 4812 - - uid: 6403 - components: - - type: Transform - pos: -2.5,-18.5 - parent: 4812 - - uid: 6404 - components: - - type: Transform - pos: -2.5,-17.5 - parent: 4812 - - uid: 6405 - components: - - type: Transform - pos: -2.5,-16.5 - parent: 4812 - - uid: 6406 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 4812 - - uid: 6407 - components: - - type: Transform - pos: -1.5,-17.5 - parent: 4812 - - uid: 6408 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 4812 - - uid: 7162 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 4812 - - uid: 7163 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 4812 - - uid: 7164 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 4812 - - uid: 7165 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 4812 - - uid: 7166 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 4812 - - uid: 7167 - components: - - type: Transform - pos: -23.5,-16.5 - parent: 4812 - - uid: 9062 - components: - - type: Transform - pos: -30.5,-39.5 - parent: 4812 - - uid: 9063 - components: - - type: Transform - pos: -29.5,-39.5 - parent: 4812 -- proto: CarpetBlack - entities: - - uid: 11360 - components: - - type: Transform - pos: 36.5,-34.5 - parent: 4812 - - uid: 11361 - components: - - type: Transform - pos: 36.5,-33.5 - parent: 4812 - - uid: 11362 - components: - - type: Transform - pos: 37.5,-33.5 - parent: 4812 - - uid: 11363 - components: - - type: Transform - pos: 37.5,-34.5 - parent: 4812 -- proto: CarpetBlue - entities: - - uid: 2591 - components: - - type: Transform - pos: -12.5,28.5 - parent: 4812 - - uid: 2592 - components: - - type: Transform - pos: -12.5,29.5 - parent: 4812 - - uid: 2593 - components: - - type: Transform - pos: -11.5,29.5 - parent: 4812 - - uid: 2594 - components: - - type: Transform - pos: -11.5,28.5 - parent: 4812 - - uid: 2611 - components: - - type: Transform - pos: -13.5,22.5 - parent: 4812 - - uid: 2613 - components: - - type: Transform - pos: -13.5,23.5 - parent: 4812 - - uid: 2614 - components: - - type: Transform - pos: -13.5,24.5 - parent: 4812 - - uid: 2615 - components: - - type: Transform - pos: -12.5,22.5 - parent: 4812 - - uid: 2616 - components: - - type: Transform - pos: -12.5,23.5 - parent: 4812 - - uid: 2617 - components: - - type: Transform - pos: -12.5,24.5 - parent: 4812 - - uid: 2618 - components: - - type: Transform - pos: -11.5,22.5 - parent: 4812 - - uid: 2619 - components: - - type: Transform - pos: -11.5,23.5 - parent: 4812 - - uid: 2620 - components: - - type: Transform - pos: -11.5,24.5 - parent: 4812 -- proto: CarpetChapel - entities: - - uid: 6984 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 4812 - - uid: 6985 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 4812 - - uid: 6986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 4812 - - uid: 6987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 4812 - - uid: 6988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-35.5 - parent: 4812 - - uid: 6989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 4812 - - uid: 6990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-35.5 - parent: 4812 - - uid: 6991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-35.5 - parent: 4812 - - uid: 6992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-32.5 - parent: 4812 - - uid: 6993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-32.5 - parent: 4812 - - uid: 6994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 4812 - - uid: 6995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 4812 - - uid: 6996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 4812 - - uid: 6997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-36.5 - parent: 4812 - - uid: 6998 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 4812 - - uid: 6999 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 4812 -- proto: CarpetGreen - entities: - - uid: 7156 - components: - - type: Transform - pos: -31.5,-17.5 - parent: 4812 - - uid: 7157 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 4812 - - uid: 7158 - components: - - type: Transform - pos: -30.5,-17.5 - parent: 4812 - - uid: 7159 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 4812 - - uid: 8279 - components: - - type: Transform - pos: -18.5,14.5 - parent: 4812 - - uid: 8280 - components: - - type: Transform - pos: -18.5,15.5 - parent: 4812 - - uid: 8281 - components: - - type: Transform - pos: -17.5,15.5 - parent: 4812 - - uid: 8282 - components: - - type: Transform - pos: -17.5,14.5 - parent: 4812 - - uid: 9082 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 4812 - - uid: 9083 - components: - - type: Transform - pos: -30.5,-37.5 - parent: 4812 - - uid: 9084 - components: - - type: Transform - pos: -31.5,-37.5 - parent: 4812 - - uid: 9085 - components: - - type: Transform - pos: -31.5,-36.5 - parent: 4812 -- proto: CarpetOrange - entities: - - uid: 1657 - components: - - type: Transform - pos: 6.5,8.5 - parent: 4812 - - uid: 1661 - components: - - type: Transform - pos: 6.5,9.5 - parent: 4812 - - uid: 1662 - components: - - type: Transform - pos: 7.5,9.5 - parent: 4812 - - uid: 1663 - components: - - type: Transform - pos: 7.5,8.5 - parent: 4812 -- proto: CarpetPurple - entities: - - uid: 277 - components: - - type: Transform - pos: -18.5,-0.5 - parent: 4812 - - uid: 2635 - components: - - type: Transform - pos: -3.5,28.5 - parent: 4812 - - uid: 2636 - components: - - type: Transform - pos: -3.5,29.5 - parent: 4812 - - uid: 2637 - components: - - type: Transform - pos: -2.5,29.5 - parent: 4812 - - uid: 2638 - components: - - type: Transform - pos: -2.5,28.5 - parent: 4812 - - uid: 2639 - components: - - type: Transform - pos: -1.5,28.5 - parent: 4812 - - uid: 2640 - components: - - type: Transform - pos: -1.5,29.5 - parent: 4812 - - uid: 6294 - components: - - type: Transform - pos: 25.5,-20.5 - parent: 4812 - - uid: 6295 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 4812 - - uid: 6296 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 4812 - - uid: 6297 - components: - - type: Transform - pos: 26.5,-20.5 - parent: 4812 - - uid: 6298 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 4812 - - uid: 6299 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 4812 - - uid: 6300 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 4812 - - uid: 6301 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 4812 - - uid: 6302 - components: - - type: Transform - pos: 27.5,-18.5 - parent: 4812 -- proto: CarpetSBlue - entities: - - uid: 2546 - components: - - type: Transform - pos: 6.5,28.5 - parent: 4812 - - uid: 2547 - components: - - type: Transform - pos: 6.5,29.5 - parent: 4812 - - uid: 2548 - components: - - type: Transform - pos: 7.5,29.5 - parent: 4812 - - uid: 2549 - components: - - type: Transform - pos: 7.5,28.5 - parent: 4812 - - uid: 2550 - components: - - type: Transform - pos: 9.5,24.5 - parent: 4812 - - uid: 2551 - components: - - type: Transform - pos: 8.5,24.5 - parent: 4812 - - uid: 2552 - components: - - type: Transform - pos: 7.5,24.5 - parent: 4812 - - uid: 2553 - components: - - type: Transform - pos: 7.5,25.5 - parent: 4812 - - uid: 2554 - components: - - type: Transform - pos: 8.5,25.5 - parent: 4812 - - uid: 2555 - components: - - type: Transform - pos: 9.5,25.5 - parent: 4812 -- proto: Catwalk - entities: - - uid: 1542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,4.5 - parent: 4812 - - uid: 1545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,4.5 - parent: 4812 - - uid: 1548 - components: - - type: Transform - pos: 2.5,11.5 - parent: 4812 - - uid: 1550 - components: - - type: Transform - pos: 2.5,12.5 - parent: 4812 - - uid: 1551 - components: - - type: Transform - pos: 2.5,13.5 - parent: 4812 - - uid: 1553 - components: - - type: Transform - pos: 1.5,14.5 - parent: 4812 - - uid: 3101 - components: - - type: Transform - pos: 3.5,11.5 - parent: 4812 - - uid: 3102 - components: - - type: Transform - pos: 4.5,11.5 - parent: 4812 - - uid: 3103 - components: - - type: Transform - pos: 5.5,11.5 - parent: 4812 - - uid: 3104 - components: - - type: Transform - pos: 6.5,11.5 - parent: 4812 - - uid: 3105 - components: - - type: Transform - pos: 7.5,11.5 - parent: 4812 - - uid: 3106 - components: - - type: Transform - pos: 8.5,11.5 - parent: 4812 - - uid: 3107 - components: - - type: Transform - pos: 9.5,10.5 - parent: 4812 - - uid: 3108 - components: - - type: Transform - pos: 9.5,9.5 - parent: 4812 - - uid: 3109 - components: - - type: Transform - pos: 9.5,8.5 - parent: 4812 - - uid: 3110 - components: - - type: Transform - pos: 9.5,7.5 - parent: 4812 - - uid: 3111 - components: - - type: Transform - pos: 9.5,6.5 - parent: 4812 - - uid: 3112 - components: - - type: Transform - pos: 9.5,4.5 - parent: 4812 - - uid: 3362 - components: - - type: Transform - pos: 12.5,22.5 - parent: 4812 - - uid: 3363 - components: - - type: Transform - pos: 12.5,23.5 - parent: 4812 - - uid: 3364 - components: - - type: Transform - pos: 12.5,26.5 - parent: 4812 - - uid: 3365 - components: - - type: Transform - pos: 12.5,27.5 - parent: 4812 - - uid: 3366 - components: - - type: Transform - pos: 12.5,28.5 - parent: 4812 - - uid: 3367 - components: - - type: Transform - pos: 12.5,29.5 - parent: 4812 - - uid: 3368 - components: - - type: Transform - pos: 12.5,30.5 - parent: 4812 - - uid: 3471 - components: - - type: Transform - pos: 3.5,41.5 - parent: 4812 - - uid: 3472 - components: - - type: Transform - pos: 3.5,42.5 - parent: 4812 - - uid: 3473 - components: - - type: Transform - pos: 3.5,43.5 - parent: 4812 - - uid: 3477 - components: - - type: Transform - pos: 6.5,42.5 - parent: 4812 - - uid: 3478 - components: - - type: Transform - pos: 6.5,41.5 - parent: 4812 - - uid: 3479 - components: - - type: Transform - pos: 6.5,40.5 - parent: 4812 - - uid: 3480 - components: - - type: Transform - pos: 6.5,39.5 - parent: 4812 - - uid: 3481 - components: - - type: Transform - pos: 6.5,38.5 - parent: 4812 - - uid: 3482 - components: - - type: Transform - pos: 6.5,37.5 - parent: 4812 - - uid: 3483 - components: - - type: Transform - pos: 6.5,36.5 - parent: 4812 - - uid: 3484 - components: - - type: Transform - pos: 6.5,35.5 - parent: 4812 - - uid: 3485 - components: - - type: Transform - pos: 6.5,34.5 - parent: 4812 - - uid: 4487 - components: - - type: Transform - pos: 17.5,4.5 - parent: 4812 - - uid: 4488 - components: - - type: Transform - pos: 16.5,4.5 - parent: 4812 - - uid: 4591 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 4812 - - uid: 4592 - components: - - type: Transform - pos: 18.5,-7.5 - parent: 4812 - - uid: 4593 - components: - - type: Transform - pos: 17.5,-7.5 - parent: 4812 - - uid: 4860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-30.5 - parent: 4812 - - uid: 4931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 4812 - - uid: 4932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-30.5 - parent: 4812 - - uid: 4950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 4812 - - uid: 4951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 - parent: 4812 - - uid: 6170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 4812 - - uid: 6368 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 4812 - - uid: 6369 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 4812 - - uid: 6370 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 4812 - - uid: 6371 - components: - - type: Transform - pos: 16.5,-15.5 - parent: 4812 - - uid: 6372 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 4812 - - uid: 6373 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 4812 - - uid: 6374 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 4812 - - uid: 6375 - components: - - type: Transform - pos: 18.5,-32.5 - parent: 4812 - - uid: 6376 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 4812 - - uid: 6377 - components: - - type: Transform - pos: 18.5,-30.5 - parent: 4812 - - uid: 6378 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 4812 - - uid: 6379 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 4812 - - uid: 6380 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 4812 - - uid: 6381 - components: - - type: Transform - pos: 16.5,-33.5 - parent: 4812 - - uid: 6383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 - parent: 4812 - - uid: 8610 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 4812 - - uid: 8611 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 4812 - - uid: 8612 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 4812 - - uid: 8613 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 4812 - - uid: 8614 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 4812 - - uid: 8615 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 4812 - - uid: 8616 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 4812 - - uid: 8617 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 4812 - - uid: 8618 - components: - - type: Transform - pos: 9.5,0.5 - parent: 4812 - - uid: 8619 - components: - - type: Transform - pos: 9.5,1.5 - parent: 4812 - - uid: 8620 - components: - - type: Transform - pos: 9.5,2.5 - parent: 4812 - - uid: 9429 - components: - - type: Transform - pos: -49.5,0.5 - parent: 4812 - - uid: 9430 - components: - - type: Transform - pos: -49.5,1.5 - parent: 4812 - - uid: 9431 - components: - - type: Transform - pos: -49.5,2.5 - parent: 4812 - - uid: 9432 - components: - - type: Transform - pos: -49.5,3.5 - parent: 4812 - - uid: 9433 - components: - - type: Transform - pos: -49.5,4.5 - parent: 4812 - - uid: 9434 - components: - - type: Transform - pos: -49.5,5.5 - parent: 4812 - - uid: 9435 - components: - - type: Transform - pos: -49.5,6.5 - parent: 4812 - - uid: 9436 - components: - - type: Transform - pos: -49.5,7.5 - parent: 4812 - - uid: 9437 - components: - - type: Transform - pos: -49.5,8.5 - parent: 4812 - - uid: 9438 - components: - - type: Transform - pos: -49.5,9.5 - parent: 4812 - - uid: 9439 - components: - - type: Transform - pos: -49.5,10.5 - parent: 4812 - - uid: 9440 - components: - - type: Transform - pos: -49.5,11.5 - parent: 4812 - - uid: 9441 - components: - - type: Transform - pos: -49.5,12.5 - parent: 4812 - - uid: 9532 - components: - - type: Transform - pos: -49.5,-4.5 - parent: 4812 - - uid: 9533 - components: - - type: Transform - pos: -48.5,-4.5 - parent: 4812 - - uid: 9534 - components: - - type: Transform - pos: -47.5,-4.5 - parent: 4812 - - uid: 9556 - components: - - type: Transform - pos: -45.5,14.5 - parent: 4812 - - uid: 9557 - components: - - type: Transform - pos: -44.5,14.5 - parent: 4812 - - uid: 9558 - components: - - type: Transform - pos: -43.5,14.5 - parent: 4812 - - uid: 9700 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 4812 - - uid: 9701 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 4812 - - uid: 9702 - components: - - type: Transform - pos: -36.5,-3.5 - parent: 4812 - - uid: 9703 - components: - - type: Transform - pos: -36.5,-2.5 - parent: 4812 - - uid: 9704 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 4812 - - uid: 9705 - components: - - type: Transform - pos: -36.5,-0.5 - parent: 4812 - - uid: 9932 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 4812 - - uid: 9933 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 4812 - - uid: 9934 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 4812 - - uid: 9935 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 4812 - - uid: 9936 - components: - - type: Transform - pos: -40.5,-13.5 - parent: 4812 - - uid: 9937 - components: - - type: Transform - pos: -40.5,-12.5 - parent: 4812 - - uid: 9938 - components: - - type: Transform - pos: -40.5,-11.5 - parent: 4812 - - uid: 10277 - components: - - type: Transform - pos: -70.5,-22.5 - parent: 4812 - - uid: 10278 - components: - - type: Transform - pos: -69.5,-22.5 - parent: 4812 - - uid: 10279 - components: - - type: Transform - pos: -68.5,-22.5 - parent: 4812 - - uid: 10280 - components: - - type: Transform - pos: -67.5,-22.5 - parent: 4812 - - uid: 10281 - components: - - type: Transform - pos: -66.5,-22.5 - parent: 4812 - - uid: 10282 - components: - - type: Transform - pos: -65.5,-22.5 - parent: 4812 - - uid: 10283 - components: - - type: Transform - pos: -64.5,-22.5 - parent: 4812 - - uid: 10284 - components: - - type: Transform - pos: -63.5,-22.5 - parent: 4812 - - uid: 10285 - components: - - type: Transform - pos: -62.5,-22.5 - parent: 4812 - - uid: 10286 - components: - - type: Transform - pos: -61.5,-22.5 - parent: 4812 - - uid: 10287 - components: - - type: Transform - pos: -60.5,-22.5 - parent: 4812 - - uid: 10288 - components: - - type: Transform - pos: -59.5,-22.5 - parent: 4812 - - uid: 10289 - components: - - type: Transform - pos: -58.5,-22.5 - parent: 4812 - - uid: 10290 - components: - - type: Transform - pos: -57.5,-22.5 - parent: 4812 - - uid: 10291 - components: - - type: Transform - pos: -60.5,-21.5 - parent: 4812 - - uid: 10292 - components: - - type: Transform - pos: -60.5,-20.5 - parent: 4812 - - uid: 10293 - components: - - type: Transform - pos: -60.5,-19.5 - parent: 4812 - - uid: 10294 - components: - - type: Transform - pos: -60.5,-18.5 - parent: 4812 - - uid: 10295 - components: - - type: Transform - pos: -64.5,-18.5 - parent: 4812 - - uid: 10296 - components: - - type: Transform - pos: -64.5,-19.5 - parent: 4812 - - uid: 10297 - components: - - type: Transform - pos: -64.5,-20.5 - parent: 4812 - - uid: 10298 - components: - - type: Transform - pos: -64.5,-21.5 - parent: 4812 - - uid: 10299 - components: - - type: Transform - pos: -68.5,-21.5 - parent: 4812 - - uid: 10300 - components: - - type: Transform - pos: -68.5,-20.5 - parent: 4812 - - uid: 10301 - components: - - type: Transform - pos: -68.5,-19.5 - parent: 4812 - - uid: 10302 - components: - - type: Transform - pos: -68.5,-18.5 - parent: 4812 - - uid: 10303 - components: - - type: Transform - pos: -68.5,-23.5 - parent: 4812 - - uid: 10304 - components: - - type: Transform - pos: -68.5,-24.5 - parent: 4812 - - uid: 10305 - components: - - type: Transform - pos: -68.5,-25.5 - parent: 4812 - - uid: 10306 - components: - - type: Transform - pos: -68.5,-26.5 - parent: 4812 - - uid: 10307 - components: - - type: Transform - pos: -64.5,-26.5 - parent: 4812 - - uid: 10308 - components: - - type: Transform - pos: -64.5,-25.5 - parent: 4812 - - uid: 10309 - components: - - type: Transform - pos: -64.5,-24.5 - parent: 4812 - - uid: 10310 - components: - - type: Transform - pos: -64.5,-23.5 - parent: 4812 - - uid: 10311 - components: - - type: Transform - pos: -60.5,-26.5 - parent: 4812 - - uid: 10312 - components: - - type: Transform - pos: -60.5,-25.5 - parent: 4812 - - uid: 10313 - components: - - type: Transform - pos: -60.5,-24.5 - parent: 4812 - - uid: 10314 - components: - - type: Transform - pos: -60.5,-23.5 - parent: 4812 - - uid: 10566 - components: - - type: Transform - pos: -30.5,-25.5 - parent: 4812 - - uid: 10567 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 4812 - - uid: 10568 - components: - - type: Transform - pos: -32.5,-25.5 - parent: 4812 - - uid: 10569 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 4812 - - uid: 10570 - components: - - type: Transform - pos: -10.5,-32.5 - parent: 4812 - - uid: 10571 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 4812 - - uid: 10572 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 4812 - - uid: 10573 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 4812 - - uid: 10574 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 4812 - - uid: 10575 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 4812 - - uid: 10576 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 4812 - - uid: 10577 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 4812 - - uid: 10578 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 4812 - - uid: 10579 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 4812 - - uid: 10580 - components: - - type: Transform - pos: -19.5,-30.5 - parent: 4812 - - uid: 10582 - components: - - type: Transform - pos: -21.5,-30.5 - parent: 4812 - - uid: 10583 - components: - - type: Transform - pos: -22.5,-30.5 - parent: 4812 - - uid: 10584 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 4812 - - uid: 10587 - components: - - type: Transform - pos: -34.5,-24.5 - parent: 4812 - - uid: 10588 - components: - - type: Transform - pos: -34.5,-23.5 - parent: 4812 - - uid: 10589 - components: - - type: Transform - pos: -34.5,-22.5 - parent: 4812 - - uid: 10590 - components: - - type: Transform - pos: -34.5,-21.5 - parent: 4812 - - uid: 10593 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 4812 - - uid: 10594 - components: - - type: Transform - pos: -39.5,-20.5 - parent: 4812 - - uid: 10595 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 4812 - - uid: 10596 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 4812 - - uid: 10597 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 4812 - - uid: 10598 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 4812 - - uid: 10618 - components: - - type: Transform - pos: -36.5,-19.5 - parent: 4812 - - uid: 10619 - components: - - type: Transform - pos: -36.5,-18.5 - parent: 4812 - - uid: 10620 - components: - - type: Transform - pos: -36.5,-17.5 - parent: 4812 - - uid: 10621 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 4812 - - uid: 10622 - components: - - type: Transform - pos: -36.5,-15.5 - parent: 4812 - - uid: 10623 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 4812 - - uid: 10624 - components: - - type: Transform - pos: -36.5,-13.5 - parent: 4812 - - uid: 10625 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 4812 - - uid: 10626 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 4812 - - uid: 10627 - components: - - type: Transform - pos: -48.5,-22.5 - parent: 4812 - - uid: 10628 - components: - - type: Transform - pos: -47.5,-22.5 - parent: 4812 - - uid: 10629 - components: - - type: Transform - pos: -46.5,-22.5 - parent: 4812 - - uid: 10630 - components: - - type: Transform - pos: -45.5,-21.5 - parent: 4812 - - uid: 10631 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 4812 - - uid: 10870 - components: - - type: Transform - pos: -30.5,7.5 - parent: 4812 - - uid: 10871 - components: - - type: Transform - pos: -31.5,7.5 - parent: 4812 - - uid: 10872 - components: - - type: Transform - pos: -32.5,7.5 - parent: 4812 - - uid: 10874 - components: - - type: Transform - pos: -33.5,7.5 - parent: 4812 - - uid: 10875 - components: - - type: Transform - pos: -34.5,7.5 - parent: 4812 - - uid: 11252 - components: - - type: Transform - pos: 9.5,-36.5 - parent: 4812 - - uid: 11253 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 4812 - - uid: 11254 - components: - - type: Transform - pos: 9.5,-34.5 - parent: 4812 - - uid: 11255 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 4812 - - uid: 11257 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 4812 - - uid: 11258 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 4812 - - uid: 11423 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 4812 - - uid: 11424 - components: - - type: Transform - pos: 21.5,-33.5 - parent: 4812 - - uid: 11425 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 4812 - - uid: 11426 - components: - - type: Transform - pos: 20.5,-33.5 - parent: 4812 - - uid: 11427 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 4812 - - uid: 11428 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 4812 - - uid: 11429 - components: - - type: Transform - pos: 26.5,-33.5 - parent: 4812 - - uid: 11430 - components: - - type: Transform - pos: 27.5,-33.5 - parent: 4812 - - uid: 11431 - components: - - type: Transform - pos: 28.5,-33.5 - parent: 4812 - - uid: 11432 - components: - - type: Transform - pos: 29.5,-33.5 - parent: 4812 - - uid: 11433 - components: - - type: Transform - pos: 30.5,-33.5 - parent: 4812 - - uid: 11578 - components: - - type: Transform - pos: 39.5,-36.5 - parent: 4812 - - uid: 11579 - components: - - type: Transform - pos: 40.5,-36.5 - parent: 4812 - - uid: 11580 - components: - - type: Transform - pos: 41.5,-36.5 - parent: 4812 - - uid: 11581 - components: - - type: Transform - pos: 42.5,-36.5 - parent: 4812 - - uid: 11582 - components: - - type: Transform - pos: 43.5,-36.5 - parent: 4812 - - uid: 11583 - components: - - type: Transform - pos: 44.5,-36.5 - parent: 4812 - - uid: 11584 - components: - - type: Transform - pos: 45.5,-36.5 - parent: 4812 - - uid: 11585 - components: - - type: Transform - pos: 46.5,-36.5 - parent: 4812 - - uid: 11586 - components: - - type: Transform - pos: 47.5,-36.5 - parent: 4812 - - uid: 11587 - components: - - type: Transform - pos: 48.5,-36.5 - parent: 4812 - - uid: 11588 - components: - - type: Transform - pos: 49.5,-36.5 - parent: 4812 - - uid: 11589 - components: - - type: Transform - pos: 50.5,-36.5 - parent: 4812 - - uid: 11590 - components: - - type: Transform - pos: 51.5,-36.5 - parent: 4812 - - uid: 11591 - components: - - type: Transform - pos: 52.5,-36.5 - parent: 4812 - - uid: 11592 - components: - - type: Transform - pos: 50.5,-35.5 - parent: 4812 - - uid: 11593 - components: - - type: Transform - pos: 50.5,-34.5 - parent: 4812 - - uid: 11594 - components: - - type: Transform - pos: 50.5,-33.5 - parent: 4812 - - uid: 11595 - components: - - type: Transform - pos: 50.5,-32.5 - parent: 4812 - - uid: 11596 - components: - - type: Transform - pos: 46.5,-35.5 - parent: 4812 - - uid: 11597 - components: - - type: Transform - pos: 46.5,-34.5 - parent: 4812 - - uid: 11598 - components: - - type: Transform - pos: 46.5,-33.5 - parent: 4812 - - uid: 11599 - components: - - type: Transform - pos: 46.5,-32.5 - parent: 4812 - - uid: 11600 - components: - - type: Transform - pos: 42.5,-35.5 - parent: 4812 - - uid: 11601 - components: - - type: Transform - pos: 42.5,-34.5 - parent: 4812 - - uid: 11602 - components: - - type: Transform - pos: 42.5,-33.5 - parent: 4812 - - uid: 11603 - components: - - type: Transform - pos: 42.5,-32.5 - parent: 4812 - - uid: 11604 - components: - - type: Transform - pos: 42.5,-40.5 - parent: 4812 - - uid: 11605 - components: - - type: Transform - pos: 42.5,-39.5 - parent: 4812 - - uid: 11606 - components: - - type: Transform - pos: 42.5,-38.5 - parent: 4812 - - uid: 11607 - components: - - type: Transform - pos: 42.5,-37.5 - parent: 4812 - - uid: 11608 - components: - - type: Transform - pos: 46.5,-40.5 - parent: 4812 - - uid: 11609 - components: - - type: Transform - pos: 46.5,-39.5 - parent: 4812 - - uid: 11610 - components: - - type: Transform - pos: 46.5,-38.5 - parent: 4812 - - uid: 11611 - components: - - type: Transform - pos: 46.5,-37.5 - parent: 4812 - - uid: 11612 - components: - - type: Transform - pos: 50.5,-40.5 - parent: 4812 - - uid: 11613 - components: - - type: Transform - pos: 50.5,-39.5 - parent: 4812 - - uid: 11614 - components: - - type: Transform - pos: 50.5,-38.5 - parent: 4812 - - uid: 11615 - components: - - type: Transform - pos: 50.5,-37.5 - parent: 4812 - - uid: 11619 - components: - - type: Transform - pos: 37.5,-36.5 - parent: 4812 - - uid: 11620 - components: - - type: Transform - pos: 36.5,-36.5 - parent: 4812 - - uid: 11814 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 4812 - - uid: 11815 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 4812 - - uid: 11816 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 4812 - - uid: 11817 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 4812 - - uid: 11818 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 4812 - - uid: 11819 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 4812 - - uid: 11820 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 4812 - - uid: 11821 - components: - - type: Transform - pos: -12.5,-1.5 - parent: 4812 - - uid: 11822 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 4812 - - uid: 11823 - components: - - type: Transform - pos: -12.5,0.5 - parent: 4812 - - uid: 11824 - components: - - type: Transform - pos: -12.5,1.5 - parent: 4812 - - uid: 11825 - components: - - type: Transform - pos: -12.5,2.5 - parent: 4812 - - uid: 11826 - components: - - type: Transform - pos: -12.5,3.5 - parent: 4812 - - uid: 11827 - components: - - type: Transform - pos: -12.5,4.5 - parent: 4812 - - uid: 11828 - components: - - type: Transform - pos: -12.5,5.5 - parent: 4812 - - uid: 11829 - components: - - type: Transform - pos: -12.5,6.5 - parent: 4812 - - uid: 11830 - components: - - type: Transform - pos: -12.5,7.5 - parent: 4812 - - uid: 11831 - components: - - type: Transform - pos: -12.5,8.5 - parent: 4812 - - uid: 11832 - components: - - type: Transform - pos: -6.5,13.5 - parent: 4812 - - uid: 11833 - components: - - type: Transform - pos: -7.5,13.5 - parent: 4812 - - uid: 11834 - components: - - type: Transform - pos: -8.5,13.5 - parent: 4812 - - uid: 11835 - components: - - type: Transform - pos: -9.5,13.5 - parent: 4812 - - uid: 11836 - components: - - type: Transform - pos: -10.5,13.5 - parent: 4812 - - uid: 11837 - components: - - type: Transform - pos: -11.5,13.5 - parent: 4812 -- proto: Chair - entities: - - uid: 3239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 4812 - - uid: 3240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 4812 - - uid: 3241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,13.5 - parent: 4812 - - uid: 3242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 4812 - - uid: 3243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,13.5 - parent: 4812 - - uid: 4551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-4.5 - parent: 4812 - - uid: 4552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 4812 - - uid: 4553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 4812 - - uid: 4554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 4812 - - uid: 4555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 4812 - - uid: 4556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 4812 - - uid: 4557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-3.5 - parent: 4812 - - uid: 4558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 4812 - - uid: 4559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 4812 - - uid: 4560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 - parent: 4812 - - uid: 4565 - components: - - type: Transform - pos: 29.5,4.5 - parent: 4812 - - uid: 4566 - components: - - type: Transform - pos: 30.5,4.5 - parent: 4812 - - uid: 4567 - components: - - type: Transform - pos: 31.5,4.5 - parent: 4812 - - uid: 4568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 4812 - - uid: 5065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 4812 - - uid: 5066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-46.5 - parent: 4812 - - uid: 5375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-17.5 - parent: 4812 - - uid: 7214 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 4812 - - uid: 7439 - components: - - type: Transform - pos: -24.5,-22.5 - parent: 4812 - - uid: 7440 - components: - - type: Transform - pos: -25.5,-22.5 - parent: 4812 - - uid: 8289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,14.5 - parent: 4812 - - uid: 8290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,14.5 - parent: 4812 - - uid: 8291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,15.5 - parent: 4812 - - uid: 8292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,15.5 - parent: 4812 - - uid: 8293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,17.5 - parent: 4812 - - uid: 8302 - components: - - type: Transform - pos: -19.5,19.5 - parent: 4812 - - uid: 8303 - components: - - type: Transform - pos: -18.5,19.5 - parent: 4812 - - uid: 8418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-23.5 - parent: 4812 - - uid: 8437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,10.5 - parent: 4812 - - uid: 8438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,10.5 - parent: 4812 - - uid: 8445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,17.5 - parent: 4812 - - uid: 8446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,18.5 - parent: 4812 - - uid: 8851 - components: - - type: Transform - pos: 23.5,13.5 - parent: 4812 - - uid: 10732 - components: - - type: Transform - pos: -43.5,-6.5 - parent: 4812 - - uid: 10733 - components: - - type: Transform - pos: -42.5,-6.5 - parent: 4812 - - uid: 10734 - components: - - type: Transform - pos: -41.5,-6.5 - parent: 4812 - - uid: 10735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-8.5 - parent: 4812 - - uid: 10736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-8.5 - parent: 4812 - - uid: 10737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-8.5 - parent: 4812 - - uid: 10909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-24.5 - parent: 4812 - - uid: 10910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-23.5 - parent: 4812 - - uid: 10911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-24.5 - parent: 4812 - - uid: 11773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-15.5 - parent: 4812 - - uid: 11774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 4812 - - uid: 11841 - components: - - type: Transform - pos: -8.5,14.5 - parent: 4812 - - uid: 11846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 4812 - - uid: 11877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 - parent: 4812 - - uid: 11878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 4812 - - uid: 11885 - components: - - type: Transform - pos: 6.5,12.5 - parent: 4812 - - uid: 11886 - components: - - type: Transform - pos: 5.5,12.5 - parent: 4812 -- proto: ChairOfficeDark - entities: - - uid: 310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 4812 - - uid: 2508 - components: - - type: Transform - pos: 9.5,24.5 - parent: 4812 - - uid: 2665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,34.5 - parent: 4812 - - uid: 2666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,34.5 - parent: 4812 - - uid: 2667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,33.5 - parent: 4812 - - uid: 2686 - components: - - type: Transform - pos: -7.5,33.5 - parent: 4812 - - uid: 3237 - components: - - type: Transform - pos: 15.5,17.5 - parent: 4812 - - uid: 3238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,20.5 - parent: 4812 - - uid: 3704 - components: - - type: Transform - pos: 17.5,30.5 - parent: 4812 - - uid: 4569 - components: - - type: Transform - pos: 28.5,2.5 - parent: 4812 - - uid: 5371 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 4812 - - uid: 6288 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 4812 - - uid: 6320 - components: - - type: Transform - pos: 23.5,-26.5 - parent: 4812 - - uid: 6475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 4812 - - uid: 7037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-39.5 - parent: 4812 - - uid: 7038 - components: - - type: Transform - pos: -23.5,-37.5 - parent: 4812 - - uid: 7071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-15.5 - parent: 4812 - - uid: 7072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 4812 - - uid: 7073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 4812 - - uid: 7074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-14.5 - parent: 4812 - - uid: 7075 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-19.5 - parent: 4812 - - uid: 7076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 4812 - - uid: 8278 - components: - - type: Transform - pos: -17.5,15.5 - parent: 4812 - - uid: 8338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 4812 - - uid: 8366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,11.5 - parent: 4812 - - uid: 9575 - components: - - type: Transform - pos: -30.5,1.5 - parent: 4812 - - uid: 9878 - components: - - type: Transform - pos: -49.5,-7.5 - parent: 4812 - - uid: 10666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-9.5 - parent: 4812 - - uid: 10698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-5.5 - parent: 4812 - - uid: 11869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,11.5 - parent: 4812 - - uid: 11870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,11.5 - parent: 4812 - - uid: 11871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,11.5 - parent: 4812 - - uid: 12112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 4812 -- proto: ChairOfficeLight - entities: - - uid: 4595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-26.5 - parent: 4812 - - uid: 4973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-21.5 - parent: 4812 - - uid: 6179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 4812 - - uid: 6180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-14.5 - parent: 4812 - - uid: 6216 - components: - - type: Transform - pos: 3.5,-23.5 - parent: 4812 - - uid: 6344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-25.5 - parent: 4812 - - uid: 6619 - components: - - type: Transform - pos: -11.5,-18.5 - parent: 4812 - - uid: 6620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-14.5 - parent: 4812 - - uid: 8444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-26.5 - parent: 4812 - - uid: 11148 - components: - - type: Transform - pos: 9.5,-43.5 - parent: 4812 -- proto: ChairWood - entities: - - uid: 1052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 4812 - - uid: 1053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 4812 - - uid: 1054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 4812 - - uid: 1055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 4812 - - uid: 1056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 4812 - - uid: 1057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 4812 - - uid: 1058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,6.5 - parent: 4812 - - uid: 1059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,7.5 - parent: 4812 - - uid: 1060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 4812 - - uid: 1061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 4812 - - uid: 1062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,8.5 - parent: 4812 - - uid: 1626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 4812 - - uid: 4659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 4812 - - uid: 5226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 4812 - - uid: 5227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 4812 - - uid: 5228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 4812 - - uid: 5230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 4812 - - uid: 5231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 4812 - - uid: 6797 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 4812 - - uid: 6798 - components: - - type: Transform - pos: -19.5,-38.5 - parent: 4812 - - uid: 7007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 4812 - - uid: 7008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 4812 - - uid: 7009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 4812 - - uid: 7010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 4812 - - uid: 7011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 4812 - - uid: 7012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 4812 - - uid: 7013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-36.5 - parent: 4812 - - uid: 7014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-36.5 - parent: 4812 - - uid: 7015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-35.5 - parent: 4812 - - uid: 7016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 4812 - - uid: 7160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 4812 - - uid: 7168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-15.5 - parent: 4812 - - uid: 10502 - components: - - type: Transform - pos: -33.5,-27.5 - parent: 4812 - - uid: 10503 - components: - - type: Transform - pos: -32.5,-27.5 - parent: 4812 - - uid: 10504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-29.5 - parent: 4812 - - uid: 10505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-29.5 - parent: 4812 - - uid: 10506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-28.5 - parent: 4812 - - uid: 10507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-28.5 - parent: 4812 -- proto: ChanterelleSeeds - entities: - - uid: 1522 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 4812 - - uid: 11296 - components: - - type: Transform - pos: 16.50683,-36.589657 - parent: 4812 -- proto: CheapRollerBed - entities: - - uid: 7588 - components: - - type: Transform - pos: -19.499699,-23.348194 - parent: 4812 - - uid: 7655 - components: - - type: Transform - pos: -20.546574,-23.33257 - parent: 4812 -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 3226 - components: - - type: Transform - pos: -17.562876,-25.168678 - parent: 4812 - - uid: 8850 - components: - - type: Transform - pos: -17.5785,-25.512428 - parent: 4812 -- proto: chem_master - entities: - - uid: 6606 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 4812 - - uid: 6607 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 4812 -- proto: ChemDispenser - entities: - - uid: 6604 - components: - - type: Transform - pos: -12.5,-18.5 - parent: 4812 - - uid: 6605 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 4812 -- proto: ChemistryEmptyBottle01 - entities: - - uid: 7581 - components: - - type: Transform - pos: -15.593227,-23.348886 - parent: 4812 - - uid: 7584 - components: - - type: Transform - pos: -15.530727,-23.473886 - parent: 4812 -- proto: ChemistryHotplate - entities: - - uid: 12473 - components: - - type: Transform - pos: -10.5,-18.5 - parent: 4812 -- proto: ChessBoard - entities: - - uid: 11880 - components: - - type: Transform - pos: -2.493187,-34.40246 - parent: 4812 -- proto: Cigar - entities: - - uid: 5385 - components: - - type: Transform - pos: 18.601286,-15.579714 - parent: 4812 - - uid: 5386 - components: - - type: Transform - pos: 18.601286,-15.439089 - parent: 4812 -- proto: CigarCase - entities: - - uid: 1758 - components: - - type: Transform - pos: -6.558632,4.639101 - parent: 4812 - - uid: 6413 - components: - - type: Transform - pos: -0.43434072,-15.356113 - parent: 4812 -- proto: Cigarette - entities: - - uid: 12373 - components: - - type: Transform - pos: 4.34406,-34.161045 - parent: 4812 -- proto: CigarGold - entities: - - uid: 2674 - components: - - type: Transform - pos: -2.4733105,29.66387 - parent: 4812 - - uid: 2675 - components: - - type: Transform - pos: -2.4108105,29.491995 - parent: 4812 -- proto: CigarGoldCase - entities: - - uid: 2719 - components: - - type: Transform - pos: -5.477762,22.691704 - parent: 4812 -- proto: CigCartonRed - entities: - - uid: 11843 - components: - - type: Transform - pos: -7.4943094,12.705126 - parent: 4812 -- proto: CircuitImprinter - entities: - - uid: 6184 - components: - - type: Transform - pos: 5.5,-17.5 - parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Gold - - uid: 6233 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Gold -- proto: ClosetBase - entities: - - uid: 11811 - components: - - type: Transform - pos: -15.5,0.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: - - 11812 - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetBombFilled - entities: - - uid: 6331 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetChefFilled - entities: - - uid: 1568 - components: - - type: Transform - pos: 4.5,0.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1676 - components: - - type: Transform - pos: 3.5,13.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 1795 - components: - - type: Transform - pos: 0.5,17.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 2677 - components: - - type: Transform - pos: -8.5,33.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 3786 - components: - - type: Transform - pos: 3.5,46.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 4484 - components: - - type: Transform - pos: 20.5,11.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 4522 - components: - - type: Transform - pos: 13.5,4.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 4540 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 4599 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 4725 - components: - - type: Transform - pos: -10.5,-55.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6421 - components: - - type: Transform - pos: 2.5,-31.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 7616 - components: - - type: Transform - pos: -15.5,-13.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10407 - components: - - type: Transform - pos: -55.5,-23.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10602 - components: - - type: Transform - pos: -45.5,-16.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10876 - components: - - type: Transform - pos: -32.5,8.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11461 - components: - - type: Transform - pos: 36.5,-37.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetFireFilled - entities: - - uid: 1514 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 1796 - components: - - type: Transform - pos: 0.5,16.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 3674 - components: - - type: Transform - pos: 3.5,49.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 4483 - components: - - type: Transform - pos: 22.5,1.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 7615 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8328 - components: - - type: Transform - pos: -17.5,29.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9688 - components: - - type: Transform - pos: -38.5,-2.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9690 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 12474 - components: - - type: Transform - pos: -10.5,-54.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetJanitorFilled - entities: - - uid: 1486 - components: - - type: Transform - pos: -23.5,-8.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetL3JanitorFilled - entities: - - uid: 1479 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetL3ScienceFilled - entities: - - uid: 6310 - components: - - type: Transform - pos: 21.5,-26.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11149 - components: - - type: Transform - pos: 7.5,-43.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetL3SecurityFilled - entities: - - uid: 8423 - components: - - type: Transform - pos: -33.5,10.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetL3VirologyFilled - entities: - - uid: 8869 - components: - - type: Transform - pos: -34.5,-34.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetLegalFilled - entities: - - uid: 8477 - components: - - type: Transform - pos: -16.5,15.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 9068 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10527 - components: - - type: Transform - pos: -41.5,-31.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10900 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11309 - components: - - type: Transform - pos: 26.5,-36.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11618 - components: - - type: Transform - pos: 30.5,-36.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11882 - components: - - type: Transform - pos: 9.5,12.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetRadiationSuitFilled - entities: - - uid: 6358 - components: - - type: Transform - pos: 27.5,-22.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9686 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9687 - components: - - type: Transform - pos: -40.5,-2.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11775 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetWallAtmospherics - entities: - - uid: 9099 - components: - - type: Transform - pos: -55.5,5.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12381 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 12374 - components: - - type: Transform - pos: 22.5,17.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.3546504 - - 5.096066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12375 - components: - - type: Transform - pos: 21.5,-1.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 11745 - components: - - type: Transform - pos: 5.5,3.5 - parent: 4812 - - uid: 12376 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetWallOrange - entities: - - uid: 12377 - components: - - type: Transform - pos: -25.5,21.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12378 - components: - - type: Transform - pos: -25.5,18.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12379 - components: - - type: Transform - pos: -31.5,28.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12380 - components: - - type: Transform - pos: -27.5,28.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClothingBackpackClown - entities: - - uid: 9198 - components: - - type: Transform - pos: -10.304824,1.6229031 - parent: 4812 -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 7428 - components: - - type: Transform - pos: -22.535873,-28.341772 - parent: 4812 -- proto: ClothingBeltChampion - entities: - - uid: 2715 - components: - - type: Transform - pos: -5.571512,24.066704 - parent: 4812 -- proto: ClothingBeltMilitaryWebbing - entities: - - uid: 9061 - components: - - type: Transform - pos: -28.553808,-33.515636 - parent: 4812 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 3371 - components: - - type: Transform - pos: 19.574245,21.55511 - parent: 4812 - - uid: 10714 - components: - - type: Transform - pos: -31.802395,-7.4187636 - parent: 4812 - - uid: 12498 - components: - - type: Transform - pos: 5.5994864,-28.47739 - parent: 4812 -- proto: ClothingEyesEyepatch - entities: - - uid: 8481 - components: - - type: Transform - pos: -16.839548,32.557995 - parent: 4812 - - uid: 9657 - components: - - type: Transform - pos: 25.533524,-9.424093 - parent: 4812 -- proto: ClothingEyesGlasses - entities: - - uid: 6205 - components: - - type: Transform - pos: 3.4675388,-14.361706 - parent: 4812 - - uid: 6337 - components: - - type: Transform - pos: 25.449461,-19.268694 - parent: 4812 - - uid: 11851 - components: - - type: Transform - pos: 10.561617,-44.322975 - parent: 4812 - - uid: 12497 - components: - - type: Transform - pos: 9.501655,-16.456053 - parent: 4812 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 1655 - components: - - type: Transform - pos: 5.544427,8.548626 - parent: 4812 - - uid: 5383 - components: - - type: Transform - pos: 19.570036,-18.407839 - parent: 4812 -- proto: ClothingEyesHudBeer - entities: - - uid: 10683 - components: - - type: Transform - pos: -9.466419,-48.16831 - parent: 4812 -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 10769 - components: - - type: Transform - pos: -43.49446,-7.521168 - parent: 4812 -- proto: ClothingEyesHudMedical - entities: - - uid: 7586 - components: - - type: Transform - pos: -10.686977,-25.567636 - parent: 4812 - - uid: 7587 - components: - - type: Transform - pos: -10.671352,-25.395761 - parent: 4812 -- proto: ClothingEyesHudSecurity - entities: - - uid: 8443 - components: - - type: Transform - pos: -36.423813,15.378265 - parent: 4812 -- proto: ClothingHandsGlovesColorGray - entities: - - uid: 11853 - components: - - type: Transform - pos: 12.884244,-36.874004 - parent: 4812 -- proto: ClothingHandsGlovesColorOrange - entities: - - uid: 1495 - components: - - type: Transform - pos: -23.466429,-7.3899465 - parent: 4812 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 8601 - components: - - type: Transform - pos: -18.453629,9.613115 - parent: 4812 - - uid: 10706 - components: - - type: Transform - pos: -32.450558,-7.5008273 - parent: 4812 -- proto: ClothingHandsGlovesLeather - entities: - - uid: 1461 - components: - - type: Transform - pos: -18.506594,-9.370907 - parent: 4812 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 8419 - components: - - type: Transform - pos: -19.480015,-25.463383 - parent: 4812 - - uid: 9033 - components: - - type: Transform - pos: -39.79441,-35.343323 - parent: 4812 -- proto: ClothingHandsGlovesRobohands - entities: - - uid: 6349 - components: - - type: Transform - pos: 5.5434675,-25.370066 - parent: 4812 -- proto: ClothingHeadFishCap - entities: - - uid: 9567 - components: - - type: Transform - pos: 13.508905,-4.30057 - parent: 4812 -- proto: ClothingHeadHatAnimalHeadslime - entities: - - uid: 9195 - components: - - type: Transform - pos: -33.510674,-34.64361 - parent: 4812 - - uid: 11099 - components: - - type: Transform - pos: 7.610162,-44.413692 - parent: 4812 -- proto: ClothingHeadHatBeaverHat - entities: - - uid: 6385 - components: - - type: Transform - pos: 13.532155,-11.236504 - parent: 4812 -- proto: ClothingHeadHatBeretWarden - entities: - - uid: 12145 - components: - - type: Transform - pos: -35.744057,17.561283 - parent: 4812 -- proto: ClothingHeadHatCone - entities: - - uid: 11339 - components: - - type: Transform - pos: 8.449844,17.514982 - parent: 4812 -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 10608 - components: - - type: Transform - pos: -36.481308,-25.464363 - parent: 4812 - - uid: 11809 - components: - - type: Transform - pos: -14.4824505,-0.22820306 - parent: 4812 -- proto: ClothingHeadHatFedoraGrey - entities: - - uid: 1757 - components: - - type: Transform - pos: -6.558632,8.592226 - parent: 4812 -- proto: ClothingHeadHatFez - entities: - - uid: 10914 - components: - - type: Transform - pos: -44.596,-23.407698 - parent: 4812 - - uid: 10915 - components: - - type: Transform - pos: -44.4085,-23.673323 - parent: 4812 -- proto: ClothingHeadHatFlowerCrown - entities: - - uid: 7254 - components: - - type: Transform - pos: -24.594517,-34.532703 - parent: 4812 -- proto: ClothingHeadHatHairflower - entities: - - uid: 2716 - components: - - type: Transform - pos: -5.180887,24.379204 - parent: 4812 - - uid: 12475 - components: - - type: Transform - pos: -24.401733,-34.40146 - parent: 4812 -- proto: ClothingHeadHatHardhatOrange - entities: - - uid: 12119 - components: - - type: Transform - pos: -42.44835,-1.0036435 - parent: 4812 -- proto: ClothingHeadHatHardhatYellow - entities: - - uid: 12120 - components: - - type: Transform - pos: -41.401306,-7.235723 - parent: 4812 -- proto: ClothingHeadHatPaper - entities: - - uid: 11856 - components: - - type: Transform - pos: -27.456482,29.23433 - parent: 4812 -- proto: ClothingHeadHatPirate - entities: - - uid: 11675 - components: - - type: Transform - pos: -17.677834,32.905758 - parent: 4812 -- proto: ClothingHeadHatPumpkin - entities: - - uid: 11858 - components: - - type: Transform - pos: -18.486109,-5.5083795 - parent: 4812 -- proto: ClothingHeadHatTophat - entities: - - uid: 10924 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 10921 - - type: Physics - canCollide: False -- proto: ClothingHeadHatTrucker - entities: - - uid: 1460 - components: - - type: Transform - pos: -18.506594,-5.4646573 - parent: 4812 -- proto: ClothingHeadHatUshanka - entities: - - uid: 11778 - components: - - type: Transform - pos: 30.766603,-32.390636 - parent: 4812 - - uid: 11779 - components: - - type: Transform - pos: 30.360353,-32.65626 - parent: 4812 -- proto: ClothingHeadHatWelding - entities: - - uid: 6238 - components: - - type: Transform - pos: 15.515093,-23.391537 - parent: 4812 - - uid: 8600 - components: - - type: Transform - pos: -20.141129,12.59749 - parent: 4812 -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 10726 - components: - - type: Transform - pos: -24.496122,-31.384293 - parent: 4812 - - uid: 11469 - components: - - type: Transform - pos: 28.533575,-35.71058 - parent: 4812 -- proto: ClothingHeadHatWeldingMaskFlameBlue - entities: - - uid: 10725 - components: - - type: Transform - pos: -36.26352,8.306009 - parent: 4812 -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 10727 - components: - - type: Transform - pos: 15.568787,-6.463143 - parent: 4812 -- proto: ClothingHeadHatWitch1 - entities: - - uid: 1753 - components: - - type: Transform - pos: -10.496132,3.670351 - parent: 4812 -- proto: ClothingHeadHelmetSyndicate - entities: - - uid: 11672 - components: - - type: Transform - pos: 28.730742,-41.454163 - parent: 4812 -- proto: ClothingHeadHelmetTemplar - entities: - - uid: 11881 - components: - - type: Transform - pos: -1.477562,-34.543083 - parent: 4812 -- proto: ClothingHeadsetEngineering - entities: - - uid: 10764 - components: - - type: Transform - pos: -43.456604,-7.425037 - parent: 4812 -- proto: ClothingHeadsetMining - entities: - - uid: 8788 - components: - - type: Transform - pos: -35.24849,-39.264732 - parent: 4812 -- proto: ClothingMaskBreath - entities: - - uid: 11789 - components: - - type: Transform - pos: 22.374546,-32.47262 - parent: 4812 -- proto: ClothingMaskBreathMedical - entities: - - uid: 8863 - components: - - type: Transform - pos: 14.451679,-40.556843 - parent: 4812 -- proto: ClothingMaskGas - entities: - - uid: 4496 - components: - - type: Transform - pos: 19.554443,6.484804 - parent: 4812 - - uid: 4542 - components: - - type: Transform - pos: 21.65161,-6.5808167 - parent: 4812 - - uid: 11790 - components: - - type: Transform - pos: 22.624546,-32.62887 - parent: 4812 -- proto: ClothingMaskGasCentcom - entities: - - uid: 11677 - components: - - type: Transform - pos: 25.527617,-40.28087 - parent: 4812 -- proto: ClothingMaskGasExplorer - entities: - - uid: 11015 - components: - - type: Transform - pos: 35.488716,-30.534061 - parent: 4812 -- proto: ClothingNeckBling - entities: - - uid: 2717 - components: - - type: Transform - pos: -5.415262,24.019829 - parent: 4812 -- proto: ClothingNeckCloakMiner - entities: - - uid: 12429 - components: - - type: Transform - pos: -48.41308,-16.456617 - parent: 4812 -- proto: ClothingNeckCloakTrans - entities: - - uid: 4827 - components: - - type: Transform - pos: 38.546867,-26.403046 - parent: 4812 -- proto: ClothingNeckHeadphones - entities: - - uid: 9196 - components: - - type: Transform - pos: -22.35473,0.53885174 - parent: 4812 - - uid: 11854 - components: - - type: Transform - pos: -0.5106895,-15.532991 - parent: 4812 -- proto: ClothingNeckIntersexPin - entities: - - uid: 12511 - components: - - type: Transform - pos: 19.693497,8.613337 - parent: 4812 -- proto: ClothingNeckMantleHOS - entities: - - uid: 9197 - components: - - type: Transform - pos: -21.425161,22.675072 - parent: 4812 -- proto: ClothingNeckNonBinaryPin - entities: - - uid: 12513 - components: - - type: Transform - pos: 8.410957,-44.59256 - parent: 4812 -- proto: ClothingNeckScarfStripedBlue - entities: - - uid: 8417 - components: - - type: Transform - pos: -14.544858,-25.307133 - parent: 4812 - - uid: 11338 - components: - - type: Transform - pos: -33.593323,-36.57982 - parent: 4812 -- proto: ClothingNeckScarfStripedGreen - entities: - - uid: 7133 - components: - - type: Transform - pos: -30.568611,-23.475061 - parent: 4812 - - uid: 11337 - components: - - type: Transform - pos: -20.480177,5.5451813 - parent: 4812 -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 11335 - components: - - type: Transform - pos: -1.4543457,-27.446754 - parent: 4812 - - uid: 12365 - components: - - type: Transform - pos: -68.52162,-28.692625 - parent: 4812 -- proto: ClothingNeckStethoscope - entities: - - uid: 7580 - components: - - type: Transform - pos: -18.561977,-20.380136 - parent: 4812 -- proto: ClothingNeckTieRed - entities: - - uid: 10922 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 10921 - - type: Physics - canCollide: False - - uid: 11808 - components: - - type: Transform - pos: -14.6855755,-0.43132806 - parent: 4812 -- proto: ClothingNeckTransPin - entities: - - uid: 12515 - components: - - type: Transform - pos: -14.357392,4.331708 - parent: 4812 -- proto: ClothingOuterApron - entities: - - uid: 10913 - components: - - type: Transform - pos: -43.53869,-26.441507 - parent: 4812 -- proto: ClothingOuterArmorBasic - entities: - - uid: 9636 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 - - uid: 9658 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 - - uid: 9971 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 9972 - components: - - type: Transform - pos: -35.562195,19.41048 - parent: 4812 - - uid: 9990 - components: - - type: Transform - pos: -35.562195,19.41048 - parent: 4812 - - uid: 9992 - components: - - type: Transform - pos: -35.562195,19.41048 - parent: 4812 -- proto: ClothingOuterArmorReflective - entities: - - uid: 10685 - components: - - type: Transform - pos: -33.364815,20.521324 - parent: 4812 -- proto: ClothingOuterArmorRiot - entities: - - uid: 10958 - components: - - type: Transform - pos: -33.39286,20.650888 - parent: 4812 - - uid: 10976 - components: - - type: Transform - pos: -33.627235,20.729013 - parent: 4812 -- proto: ClothingOuterCoatBomber - entities: - - uid: 10905 - components: - - type: Transform - pos: -30.486824,-12.450464 - parent: 4812 -- proto: ClothingOuterCoatGentle - entities: - - uid: 6193 - components: - - type: Transform - pos: 13.531586,-11.381834 - parent: 4812 -- proto: ClothingOuterCoatInspector - entities: - - uid: 11805 - components: - - type: Transform - pos: -14.486766,-0.42116833 - parent: 4812 -- proto: ClothingOuterCoatJensen - entities: - - uid: 9193 - components: - - type: Transform - pos: -13.455734,5.5269423 - parent: 4812 -- proto: ClothingOuterCoatPirate - entities: - - uid: 8478 - components: - - type: Transform - pos: -17.511423,32.47987 - parent: 4812 -- proto: ClothingOuterGhostSheet - entities: - - uid: 11262 - components: - - type: Transform - pos: 37.373894,-34.471485 - parent: 4812 -- proto: ClothingOuterHardsuitSalvage - entities: - - uid: 6765 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 3441 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSpatio - entities: - - uid: 12424 - components: - - type: Transform - pos: -52.87503,-18.445377 - parent: 4812 -- proto: ClothingOuterHoodieBlack - entities: - - uid: 11468 - components: - - type: Transform - pos: 37.580452,-32.58558 - parent: 4812 -- proto: ClothingOuterSuitEmergency - entities: - - uid: 11671 - components: - - type: Transform - pos: 28.696922,-41.322342 - parent: 4812 -- proto: ClothingOuterVestHazard - entities: - - uid: 12117 - components: - - type: Transform - pos: -42.4796,-1.4880185 - parent: 4812 - - uid: 12118 - components: - - type: Transform - pos: -42.370224,-1.6130185 - parent: 4812 -- proto: ClothingShoesBootsJack - entities: - - uid: 9194 - components: - - type: Transform - pos: 15.452381,-15.575151 - parent: 4812 - - uid: 12364 - components: - - type: Transform - pos: 2.5661945,-37.272846 - parent: 4812 -- proto: ClothingShoesBootsMag - entities: - - uid: 1688 - components: - - type: Transform - pos: 5.3844786,14.708496 - parent: 4812 - - uid: 1689 - components: - - type: Transform - pos: 5.5251036,14.520996 - parent: 4812 - - uid: 10772 - components: - - type: Transform - pos: -30.706427,-9.213518 - parent: 4812 - - uid: 10773 - components: - - type: Transform - pos: -30.264002,-9.749746 - parent: 4812 -- proto: ClothingShoesBootsWork - entities: - - uid: 8784 - components: - - type: MetaData - desc: These look like workboots but... they feel expensive. - name: Nimbs - - type: Transform - pos: -34.496048,-16.64644 - parent: 4812 -- proto: ClothingShoesFlippers - entities: - - uid: 11850 - components: - - type: Transform - pos: 4.561617,-41.479225 - parent: 4812 -- proto: ClothingShoesLeather - entities: - - uid: 8864 - components: - - type: Transform - pos: 35.476944,-33.759735 - parent: 4812 - - uid: 12465 - components: - - type: Transform - pos: -36.627586,29.207901 - parent: 4812 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 11810 - components: - - type: Transform - pos: -14.4668255,-1.6813283 - parent: 4812 -- proto: ClothingShoesTourist - entities: - - uid: 1555 - components: - - type: Transform - pos: -9.419544,-48.840183 - parent: 4812 -- proto: ClothingUnderSocksBee - entities: - - uid: 11333 - components: - - type: Transform - pos: 22.487274,-37.39112 - parent: 4812 -- proto: ClothingUnderSocksCoder - entities: - - uid: 11332 - components: - - type: Transform - pos: 14.5012665,-31.61288 - parent: 4812 -- proto: ClothingUniformColorRainbow - entities: - - uid: 1570 - components: - - type: Transform - pos: 14.528925,6.523329 - parent: 4812 -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 10607 - components: - - type: Transform - pos: -36.403183,-24.261238 - parent: 4812 -- proto: ClothingUniformJumpskirtJanimaid - entities: - - uid: 9040 - components: - - type: Transform - pos: 10.492298,52.554813 - parent: 4812 -- proto: ClothingUniformJumpskirtOperative - entities: - - uid: 9053 - components: - - type: Transform - pos: -28.506933,-33.546886 - parent: 4812 -- proto: ClothingUniformJumpskirtTacticalMaid - entities: - - uid: 8379 - components: - - type: Transform - pos: 12.547598,-44.418983 - parent: 4812 -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 10606 - components: - - type: Transform - pos: -36.543808,-24.229988 - parent: 4812 -- proto: ClothingUniformJumpsuitHawaiBlack - entities: - - uid: 1564 - components: - - type: Transform - pos: -9.44705,-48.485367 - parent: 4812 -- proto: ClothingUniformJumpsuitOperative - entities: - - uid: 9060 - components: - - type: Transform - pos: -28.538183,-33.56251 - parent: 4812 -- proto: ClothingUniformJumpsuitPsychologist - entities: - - uid: 10968 - components: - - type: Transform - pos: -36.533836,29.489151 - parent: 4812 -- proto: ClothingUniformJumpsuitSecBlue - entities: - - uid: 10923 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 10921 - - type: Physics - canCollide: False -- proto: ClothingUniformOveralls - entities: - - uid: 11855 - components: - - type: Transform - pos: 17.403048,-37.515766 - parent: 4812 -- proto: ComfyChair - entities: - - uid: 940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 4812 - - uid: 941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,6.5 - parent: 4812 - - uid: 942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,7.5 - parent: 4812 - - uid: 1533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 4812 - - uid: 1750 - components: - - type: Transform - pos: -8.5,7.5 - parent: 4812 - - uid: 1751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,5.5 - parent: 4812 - - uid: 2507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,24.5 - parent: 4812 - - uid: 2587 - components: - - type: Transform - pos: -12.5,28.5 - parent: 4812 - - uid: 2603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,23.5 - parent: 4812 - - uid: 2604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,22.5 - parent: 4812 - - uid: 2605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 4812 - - uid: 2641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,28.5 - parent: 4812 - - uid: 2642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,28.5 - parent: 4812 - - uid: 2646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,29.5 - parent: 4812 - - uid: 2647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,29.5 - parent: 4812 - - uid: 2648 - components: - - type: Transform - pos: -2.5,30.5 - parent: 4812 - - uid: 2664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,34.5 - parent: 4812 - - uid: 5366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 4812 - - uid: 6289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 4812 - - uid: 6351 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 4812 - - uid: 6352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 4812 - - uid: 6392 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 4812 - - uid: 6393 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 4812 - - uid: 6394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 4812 - - uid: 6395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 - parent: 4812 - - uid: 6396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 4812 - - uid: 6397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 4812 - - uid: 6398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-19.5 - parent: 4812 - - uid: 6399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-19.5 - parent: 4812 - - uid: 7044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-34.5 - parent: 4812 - - uid: 7089 - components: - - type: Transform - pos: -31.5,-22.5 - parent: 4812 - - uid: 8254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,27.5 - parent: 4812 - - uid: 8260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 4812 - - uid: 8261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,23.5 - parent: 4812 - - uid: 8262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,24.5 - parent: 4812 - - uid: 8393 - components: - - type: Transform - pos: -25.5,31.5 - parent: 4812 - - uid: 9047 - components: - - type: Transform - pos: -27.5,-40.5 - parent: 4812 - - uid: 9057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-39.5 - parent: 4812 - - uid: 9058 - components: - - type: Transform - pos: -31.5,-37.5 - parent: 4812 - - uid: 9059 - components: - - type: Transform - pos: -30.5,-37.5 - parent: 4812 - - uid: 10854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,4.5 - parent: 4812 - - uid: 10855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,3.5 - parent: 4812 - - uid: 11353 - components: - - type: Transform - pos: 37.5,-32.5 - parent: 4812 - - uid: 11464 - components: - - type: Transform - pos: 32.5,-30.5 - parent: 4812 - - uid: 11465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-31.5 - parent: 4812 - - uid: 11784 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 4812 - - uid: 11804 - components: - - type: Transform - pos: -14.5,0.5 - parent: 4812 -- proto: ComputerAlert - entities: - - uid: 2708 - components: - - type: Transform - pos: -2.5,24.5 - parent: 4812 -- proto: ComputerAnalysisConsole - entities: - - uid: 6313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 6319: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: computerBodyScanner - entities: - - uid: 4921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-28.5 - parent: 4812 - - uid: 6166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-28.5 - parent: 4812 - - uid: 6682 - components: - - type: Transform - pos: -21.5,-25.5 - parent: 4812 - - uid: 7445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 4812 -- proto: ComputerCargoBounty - entities: - - uid: 9587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,17.5 - parent: 4812 -- proto: ComputerCargoOrders - entities: - - uid: 2752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,17.5 - parent: 4812 - - uid: 3757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,29.5 - parent: 4812 -- proto: ComputerCargoShuttle - entities: - - uid: 2760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 4812 -- proto: ComputerComms - entities: - - uid: 2601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,22.5 - parent: 4812 - - uid: 2649 - components: - - type: Transform - pos: -2.5,35.5 - parent: 4812 -- proto: ComputerCrewMonitoring - entities: - - uid: 2505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 4812 - - uid: 2656 - components: - - type: Transform - pos: -4.5,35.5 - parent: 4812 - - uid: 4571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,2.5 - parent: 4812 - - uid: 6474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-28.5 - parent: 4812 - - uid: 7447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-26.5 - parent: 4812 - - uid: 7571 - components: - - type: Transform - pos: -14.5,-20.5 - parent: 4812 - - uid: 8264 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,24.5 - parent: 4812 -- proto: ComputerCriminalRecords - entities: - - uid: 2659 - components: - - type: Transform - pos: 0.5,35.5 - parent: 4812 - - uid: 4570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 4812 - - uid: 6473 - components: - - type: Transform - pos: -3.5,-26.5 - parent: 4812 - - uid: 8263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,23.5 - parent: 4812 - - uid: 8331 - components: - - type: Transform - pos: -33.5,16.5 - parent: 4812 - - uid: 8365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,10.5 - parent: 4812 -- proto: ComputerFrame - entities: - - uid: 3951 - components: - - type: Transform - pos: 7.5,47.5 - parent: 4812 - - uid: 6653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 4812 - - uid: 11147 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-44.5 - parent: 4812 -- proto: ComputerId - entities: - - uid: 2504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,24.5 - parent: 4812 - - uid: 2602 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,22.5 - parent: 4812 - - uid: 2658 - components: - - type: Transform - pos: -0.5,35.5 - parent: 4812 -- proto: ComputerMedicalRecords - entities: - - uid: 2657 - components: - - type: Transform - pos: -5.5,35.5 - parent: 4812 - - uid: 7454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-27.5 - parent: 4812 -- proto: ComputerPowerMonitoring - entities: - - uid: 2654 - components: - - type: Transform - pos: 3.5,34.5 - parent: 4812 - - uid: 6021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-31.5 - parent: 4812 - - uid: 8756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 - parent: 4812 - - uid: 10697 - components: - - type: Transform - pos: -29.5,-5.5 - parent: 4812 -- proto: ComputerRadar - entities: - - uid: 3225 - components: - - type: Transform - pos: 27.5,15.5 - parent: 4812 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 6185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 - parent: 4812 - - uid: 6215 - components: - - type: Transform - pos: 4.5,-25.5 - parent: 4812 - - uid: 6232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 4812 - - uid: 6287 - components: - - type: Transform - pos: 26.5,-17.5 - parent: 4812 -- proto: ComputerSalvageExpedition - entities: - - uid: 7830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 4812 -- proto: ComputerShuttleCargo - entities: - - uid: 2754 - components: - - type: Transform - pos: 17.5,27.5 - parent: 4812 - - uid: 3758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,29.5 - parent: 4812 -- proto: ComputerShuttleSalvage - entities: - - uid: 7463 - components: - - type: Transform - pos: 26.5,15.5 - parent: 4812 -- proto: ComputerSolarControl - entities: - - uid: 2655 - components: - - type: Transform - pos: 2.5,34.5 - parent: 4812 - - uid: 10322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-25.5 - parent: 4812 -- proto: ComputerStationRecords - entities: - - uid: 1077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,10.5 - parent: 4812 - - uid: 4799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 4812 - - uid: 7199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-28.5 - parent: 4812 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 2662 - components: - - type: Transform - pos: -7.5,34.5 - parent: 4812 - - uid: 4955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 4812 - - uid: 8332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,14.5 - parent: 4812 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 12323 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 4812 -- proto: ComputerTelevision - entities: - - uid: 5370 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 4812 -- proto: ConveyorBelt - entities: - - uid: 2765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,28.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 3188 - - uid: 2771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,28.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 3188 - - uid: 2863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,28.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 3188 - - uid: 3013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,24.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 3034 - - uid: 3014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,24.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 3034 - - uid: 3028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,24.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 3034 - - uid: 3029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,24.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 3034 - - uid: 3033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,24.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 3034 - - uid: 3043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,28.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 3188 - - uid: 3046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,28.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 3188 - - uid: 11235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 11245 -- proto: CornSeeds - entities: - - uid: 9618 - components: - - type: Transform - pos: -42.51349,-28.44041 - parent: 4812 -- proto: CrateArtifactContainer - entities: - - uid: 7366 - components: - - type: Transform - pos: 19.5,-26.5 - parent: 4812 -- proto: CrateCoffin - entities: - - uid: 9993 - components: - - type: Transform - pos: -23.5,-35.5 - parent: 4812 -- proto: CrateEmergencyInternals - entities: - - uid: 8580 - components: - - type: Transform - pos: -16.5,9.5 - parent: 4812 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEmptySpawner - entities: - - uid: 3448 - components: - - type: Transform - pos: 14.5,23.5 - parent: 4812 - - uid: 4606 - components: - - type: Transform - pos: 18.5,11.5 - parent: 4812 -- proto: CrateEngineeringAMEJar - entities: - - uid: 10776 - components: - - type: Transform - pos: -38.5,-10.5 - parent: 4812 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringAMEShielding - entities: - - uid: 10777 - components: - - type: Transform - pos: -38.5,-11.5 - parent: 4812 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10779 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 4812 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringCableBulk - entities: - - uid: 4489 - components: - - type: Transform - pos: 19.5,2.5 - parent: 4812 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10705 - components: - - type: Transform - pos: -29.5,-9.5 - parent: 4812 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10723 - components: - - type: Transform - pos: -39.5,8.5 - parent: 4812 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringCableHV - entities: - - uid: 10925 - components: - - type: Transform - pos: -50.5,-24.5 - parent: 4812 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateFilledSpawner - entities: - - uid: 3713 - components: - - type: Transform - pos: 14.5,27.5 - parent: 4812 - - uid: 3714 - components: - - type: Transform - pos: 14.5,26.5 - parent: 4812 - - uid: 3715 - components: - - type: Transform - pos: 14.5,25.5 - parent: 4812 -- proto: CrateFreezer - entities: - - uid: 1728 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 4812 - - uid: 4925 - components: - - type: Transform - pos: -19.5,-28.5 - parent: 4812 -- proto: CrateMedicalSurgery - entities: - - uid: 4926 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 4812 -- proto: CrateNPCHamlet - entities: - - uid: 12427 - components: - - type: Transform - pos: -1.5,34.5 - parent: 4812 -- proto: CrateSalvageEquipment - entities: - - uid: 3262 - components: - - type: Transform - pos: 27.5,13.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage -- proto: CrateScience - entities: - - uid: 12463 - components: - - type: Transform - pos: -35.5,25.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateScienceSecure - entities: - - uid: 6250 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 4812 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6251 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 4812 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateTrashCart - entities: - - uid: 6171 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 4812 - - uid: 6172 - components: - - type: Transform - pos: -34.5,-12.5 - parent: 4812 - - uid: 6173 - components: - - type: Transform - pos: -29.413927,7.5544257 - parent: 4812 - - uid: 6174 - components: - - type: Transform - pos: 19.5,4.5 - parent: 4812 - - uid: 11472 - components: - - type: Transform - pos: 8.5,2.5 - parent: 4812 -- proto: CrateTrashCartJani - entities: - - uid: 6169 - components: - - type: Transform - pos: -22.5,-3.5 - parent: 4812 -- proto: CrayonBox - entities: - - uid: 1718 - components: - - type: Transform - pos: -10.378301,0.0073432922 - parent: 4812 - - uid: 8405 - components: - - type: Transform - pos: -28.516111,30.589315 - parent: 4812 -- proto: Crematorium - entities: - - uid: 7228 - components: - - type: Transform - pos: -22.5,-32.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrewMonitoringServer - entities: - - uid: 4984 - components: - - type: Transform - pos: -3.5,26.5 - parent: 4812 -- proto: Crowbar - entities: - - uid: 3469 - components: - - type: Transform - pos: 22.493902,3.436778 - parent: 4812 -- proto: CrowbarRed - entities: - - uid: 4573 - components: - - type: Transform - pos: 27.5,4.5 - parent: 4812 - - uid: 6350 - components: - - type: Transform - pos: 5.526539,-28.44819 - parent: 4812 - - uid: 6480 - components: - - type: Transform - pos: -2.4305947,-24.470394 - parent: 4812 - - uid: 8588 - components: - - type: Transform - pos: -18.483784,12.505529 - parent: 4812 - - uid: 11330 - components: - - type: Transform - pos: 26.509838,-35.582523 - parent: 4812 -- proto: CryoPod - entities: - - uid: 1937 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 7219 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 3269 - components: - - type: Transform - pos: -14.53001,-25.469097 - parent: 4812 - - uid: 7151 - components: - - type: Transform - pos: -14.264385,-25.312847 - parent: 4812 -- proto: CultAltarSpawner - entities: - - uid: 10980 - components: - - type: Transform - pos: -36.5,30.5 - parent: 4812 -- proto: DawInstrumentMachineCircuitboard - entities: - - uid: 1723 - components: - - type: Transform - pos: -9.581426,-1.3989067 - parent: 4812 -- proto: DefaultStationBeaconAICore - entities: - - uid: 12477 - components: - - type: Transform - pos: 10.5,53.5 - parent: 4812 -- proto: DefaultStationBeaconAISatellite - entities: - - uid: 12478 - components: - - type: Transform - pos: 6.5,46.5 - parent: 4812 -- proto: DefaultStationBeaconAME - entities: - - uid: 12503 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 4812 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 12505 - components: - - type: Transform - pos: 33.5,-25.5 - parent: 4812 -- proto: DefaultStationBeaconArmory - entities: - - uid: 9626 - components: - - type: Transform - pos: -34.5,20.5 - parent: 4812 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 10545 - components: - - type: Transform - pos: -11.5,-46.5 - parent: 4812 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 12336 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 4812 -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 12335 - components: - - type: Transform - pos: -31.5,2.5 - parent: 4812 - - uid: 12582 - components: - - type: Transform - pos: -41.5,4.5 - parent: 4812 -- proto: DefaultStationBeaconBar - entities: - - uid: 12514 - components: - - type: Transform - pos: 3.5,7.5 - parent: 4812 -- proto: DefaultStationBeaconBotany - entities: - - uid: 12109 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 4812 -- proto: DefaultStationBeaconBridge - entities: - - uid: 12071 - components: - - type: Transform - pos: -2.5,33.5 - parent: 4812 -- proto: DefaultStationBeaconBrig - entities: - - uid: 12073 - components: - - type: Transform - pos: -27.5,18.5 - parent: 4812 -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 12484 - components: - - type: Transform - pos: -12.5,25.5 - parent: 4812 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 12338 - components: - - type: Transform - pos: 18.5,25.5 - parent: 4812 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 12083 - components: - - type: Transform - pos: 16.5,17.5 - parent: 4812 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 9615 - components: - - type: Transform - pos: -49.5,-8.5 - parent: 4812 -- proto: DefaultStationBeaconChapel - entities: - - uid: 12578 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 4812 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 12469 - components: - - type: Transform - pos: -10.5,-16.5 - parent: 4812 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 12106 - components: - - type: Transform - pos: -25.5,-26.5 - parent: 4812 -- proto: DefaultStationBeaconCourtroom - entities: - - uid: 12111 - components: - - type: Transform - pos: -18.5,16.5 - parent: 4812 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 9625 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 4812 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 12110 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 4812 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 12332 - components: - - type: Transform - pos: 9.5,-37.5 - parent: 4812 -- proto: DefaultStationBeaconDorms - entities: - - uid: 12329 - components: - - type: Transform - pos: -19.5,2.5 - parent: 4812 -- proto: DefaultStationBeaconEngineering - entities: - - uid: 12581 - components: - - type: Transform - pos: -31.5,-6.5 - parent: 4812 -- proto: DefaultStationBeaconEvac - entities: - - uid: 12480 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 4812 -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 12509 - components: - - type: Transform - pos: 7.5,15.5 - parent: 4812 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 12101 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 4812 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 12545 - components: - - type: Transform - pos: 7.5,25.5 - parent: 4812 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 12337 - components: - - type: Transform - pos: -21.5,25.5 - parent: 4812 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 10664 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 4812 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 10548 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 4812 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 12340 - components: - - type: Transform - pos: -27.5,-17.5 - parent: 4812 -- proto: DefaultStationBeaconMedbay - entities: - - uid: 12580 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 4812 -- proto: DefaultStationBeaconMedical - entities: - - uid: 12577 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 4812 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 12388 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 4812 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 12331 - components: - - type: Transform - pos: -28.5,28.5 - parent: 4812 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 12339 - components: - - type: Transform - pos: -43.5,-2.5 - parent: 4812 -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 12504 - components: - - type: Transform - pos: 16.5,31.5 - parent: 4812 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 12415 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 4812 -- proto: DefaultStationBeaconRND - entities: - - uid: 12507 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 4812 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 10546 - components: - - type: Transform - pos: 4.5,-25.5 - parent: 4812 - - uid: 12508 - components: - - type: Transform - pos: 14.5,-26.5 - parent: 4812 - - uid: 12579 - components: - - type: Transform - pos: 4.5,-25.5 - parent: 4812 -- proto: DefaultStationBeaconSalvage - entities: - - uid: 12099 - components: - - type: Transform - pos: 24.5,14.5 - parent: 4812 -- proto: DefaultStationBeaconSecurity - entities: - - uid: 10547 - components: - - type: Transform - pos: -36.5,11.5 - parent: 4812 - - uid: 12517 - components: - - type: Transform - pos: -27.5,12.5 - parent: 4812 -- proto: DefaultStationBeaconSecurityCheckpoint - entities: - - uid: 12482 - components: - - type: Transform - pos: 31.5,2.5 - parent: 4812 - - uid: 12486 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 4812 -- proto: DefaultStationBeaconServerRoom - entities: - - uid: 12512 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 4812 -- proto: DefaultStationBeaconSolars - entities: - - uid: 12558 - components: - - type: Transform - pos: -52.5,-24.5 - parent: 4812 - - uid: 12559 - components: - - type: Transform - pos: 32.5,-38.5 - parent: 4812 -- proto: DefaultStationBeaconTechVault - entities: - - uid: 12483 - components: - - type: Transform - pos: 23.5,4.5 - parent: 4812 -- proto: DefaultStationBeaconTheater - entities: - - uid: 12481 - components: - - type: Transform - pos: -8.5,6.5 - parent: 4812 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 12334 - components: - - type: Transform - pos: -18.5,9.5 - parent: 4812 -- proto: DefaultStationBeaconVault - entities: - - uid: 12074 - components: - - type: Transform - pos: -2.5,24.5 - parent: 4812 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 12557 - components: - - type: Transform - pos: -34.5,16.5 - parent: 4812 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 4815 - components: - - type: Transform - pos: -5.5,12.5 - parent: 4812 - - uid: 4996 - components: - - type: Transform - pos: -17.5,-19.5 - parent: 4812 - - uid: 8376 - components: - - type: Transform - pos: -24.5,-21.5 - parent: 4812 - - uid: 8378 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 4812 - - uid: 8414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 4812 -- proto: DeskBell - entities: - - uid: 4800 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 4812 - - type: Physics - canCollide: False - bodyType: Static - - uid: 4801 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 4812 - - type: Physics - canCollide: False - bodyType: Static - - uid: 4802 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 4812 - - type: Physics - canCollide: False - bodyType: Static - - uid: 4803 - components: - - type: Transform - pos: 15.5,16.5 - parent: 4812 - - type: Physics - canCollide: False - bodyType: Static - - uid: 4804 - components: - - type: Transform - pos: 10.5,22.5 - parent: 4812 - - type: Physics - canCollide: False - bodyType: Static - - uid: 4805 - components: - - type: Transform - pos: -24.5,11.5 - parent: 4812 - - type: Physics - canCollide: False - bodyType: Static -- proto: DiceBag - entities: - - uid: 4561 - components: - - type: Transform - pos: 27.529026,-5.5177865 - parent: 4812 - - uid: 7137 - components: - - type: Transform - pos: -27.959236,-14.350061 - parent: 4812 -- proto: DiseaseDiagnoser - entities: - - uid: 9018 - components: - - type: Transform - pos: -38.5,-35.5 - parent: 4812 -- proto: DisposalBend - entities: - - uid: 1105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 4812 - - uid: 1119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 4812 - - uid: 1120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 4812 - - uid: 1575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 4812 - - uid: 1576 - components: - - type: Transform - pos: 3.5,2.5 - parent: 4812 - - uid: 1602 - components: - - type: Transform - pos: -2.5,11.5 - parent: 4812 - - uid: 1607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 4812 - - uid: 1636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 4812 - - uid: 1705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 4812 - - uid: 3292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,19.5 - parent: 4812 - - uid: 3343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 4812 - - uid: 3387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-8.5 - parent: 4812 - - uid: 3409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 4812 - - uid: 4505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 4812 - - uid: 5862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-24.5 - parent: 4812 - - uid: 5883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-24.5 - parent: 4812 - - uid: 5887 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 4812 - - uid: 5896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 4812 - - uid: 6432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-35.5 - parent: 4812 - - uid: 7590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-16.5 - parent: 4812 - - uid: 7591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-21.5 - parent: 4812 - - uid: 9012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-37.5 - parent: 4812 - - uid: 10781 - components: - - type: Transform - pos: -33.5,1.5 - parent: 4812 - - uid: 10804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-11.5 - parent: 4812 - - uid: 10811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,14.5 - parent: 4812 - - uid: 10816 - components: - - type: Transform - pos: -23.5,14.5 - parent: 4812 - - uid: 10817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 4812 - - uid: 10818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 4812 - - uid: 10843 - components: - - type: Transform - pos: -20.5,1.5 - parent: 4812 - - uid: 11224 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 4812 -- proto: DisposalJunction - entities: - - uid: 1700 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 4812 - - uid: 3211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 4812 - - uid: 3299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-11.5 - parent: 4812 - - uid: 5849 - components: - - type: Transform - pos: 0.5,-21.5 - parent: 4812 - - uid: 5891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 4812 - - uid: 10795 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 4812 -- proto: DisposalJunctionFlipped - entities: - - uid: 1585 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 4812 - - uid: 1586 - components: - - type: Transform - pos: -2.5,2.5 - parent: 4812 - - uid: 1614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 4812 - - uid: 1615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-11.5 - parent: 4812 - - uid: 1634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-11.5 - parent: 4812 - - uid: 3982 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 4812 - - uid: 5848 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 4812 - - uid: 10831 - components: - - type: Transform - pos: -25.5,1.5 - parent: 4812 -- proto: DisposalPipe - entities: - - uid: 1106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-6.5 - parent: 4812 - - uid: 1107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 4812 - - uid: 1108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 4812 - - uid: 1109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 4812 - - uid: 1110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 4812 - - uid: 1111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 4812 - - uid: 1112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 4812 - - uid: 1113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 4812 - - uid: 1114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 4812 - - uid: 1115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 4812 - - uid: 1116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 4812 - - uid: 1117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 4812 - - uid: 1118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 4812 - - uid: 1122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 4812 - - uid: 1123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 4812 - - uid: 1577 - components: - - type: Transform - pos: 3.5,1.5 - parent: 4812 - - uid: 1578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 4812 - - uid: 1579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 4812 - - uid: 1580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 4812 - - uid: 1581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 4812 - - uid: 1582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 4812 - - uid: 1583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 4812 - - uid: 1584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 4812 - - uid: 1587 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 4812 - - uid: 1588 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 4812 - - uid: 1589 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 4812 - - uid: 1590 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 4812 - - uid: 1592 - components: - - type: Transform - pos: -2.5,0.5 - parent: 4812 - - uid: 1593 - components: - - type: Transform - pos: -2.5,1.5 - parent: 4812 - - uid: 1594 - components: - - type: Transform - pos: -2.5,3.5 - parent: 4812 - - uid: 1595 - components: - - type: Transform - pos: -2.5,4.5 - parent: 4812 - - uid: 1596 - components: - - type: Transform - pos: -2.5,5.5 - parent: 4812 - - uid: 1597 - components: - - type: Transform - pos: -2.5,6.5 - parent: 4812 - - uid: 1598 - components: - - type: Transform - pos: -2.5,7.5 - parent: 4812 - - uid: 1599 - components: - - type: Transform - pos: -2.5,8.5 - parent: 4812 - - uid: 1600 - components: - - type: Transform - pos: -2.5,9.5 - parent: 4812 - - uid: 1601 - components: - - type: Transform - pos: -2.5,10.5 - parent: 4812 - - uid: 1603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 4812 - - uid: 1604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,11.5 - parent: 4812 - - uid: 1608 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 4812 - - uid: 1609 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 4812 - - uid: 1610 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 4812 - - uid: 1611 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 4812 - - uid: 1612 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 4812 - - uid: 1613 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 4812 - - uid: 1616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 4812 - - uid: 1617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 4812 - - uid: 1618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 4812 - - uid: 1619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 4812 - - uid: 1620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 4812 - - uid: 1621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 4812 - - uid: 1622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 4812 - - uid: 1623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 4812 - - uid: 1624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 4812 - - uid: 1625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 4812 - - uid: 1627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 4812 - - uid: 1628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-11.5 - parent: 4812 - - uid: 1629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 4812 - - uid: 1630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 4812 - - uid: 1631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 4812 - - uid: 1632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 4812 - - uid: 1633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 - parent: 4812 - - uid: 1637 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 4812 - - uid: 1638 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 4812 - - uid: 1639 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 4812 - - uid: 1640 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 4812 - - uid: 1641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 4812 - - uid: 1701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 4812 - - uid: 1702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 4812 - - uid: 1703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 4812 - - uid: 1704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 4812 - - uid: 2941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 4812 - - uid: 3007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,28.5 - parent: 4812 - - uid: 3030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,24.5 - parent: 4812 - - uid: 3145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,26.5 - parent: 4812 - - uid: 3194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,25.5 - parent: 4812 - - uid: 3207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,23.5 - parent: 4812 - - uid: 3208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,20.5 - parent: 4812 - - uid: 3209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 4812 - - uid: 3210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 4812 - - uid: 3223 - components: - - type: Transform - pos: -33.5,-6.5 - parent: 4812 - - uid: 3227 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 4812 - - uid: 3293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,20.5 - parent: 4812 - - uid: 3294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,19.5 - parent: 4812 - - uid: 3296 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,19.5 - parent: 4812 - - uid: 3297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 4812 - - uid: 3298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,19.5 - parent: 4812 - - uid: 3300 - components: - - type: Transform - pos: 11.5,18.5 - parent: 4812 - - uid: 3301 - components: - - type: Transform - pos: 11.5,17.5 - parent: 4812 - - uid: 3302 - components: - - type: Transform - pos: 11.5,16.5 - parent: 4812 - - uid: 3303 - components: - - type: Transform - pos: 11.5,15.5 - parent: 4812 - - uid: 3304 - components: - - type: Transform - pos: 11.5,14.5 - parent: 4812 - - uid: 3305 - components: - - type: Transform - pos: 11.5,13.5 - parent: 4812 - - uid: 3306 - components: - - type: Transform - pos: 11.5,12.5 - parent: 4812 - - uid: 3307 - components: - - type: Transform - pos: 11.5,11.5 - parent: 4812 - - uid: 3308 - components: - - type: Transform - pos: 11.5,10.5 - parent: 4812 - - uid: 3309 - components: - - type: Transform - pos: 11.5,9.5 - parent: 4812 - - uid: 3310 - components: - - type: Transform - pos: 11.5,8.5 - parent: 4812 - - uid: 3311 - components: - - type: Transform - pos: 11.5,7.5 - parent: 4812 - - uid: 3312 - components: - - type: Transform - pos: 11.5,6.5 - parent: 4812 - - uid: 3313 - components: - - type: Transform - pos: 11.5,5.5 - parent: 4812 - - uid: 3314 - components: - - type: Transform - pos: 11.5,4.5 - parent: 4812 - - uid: 3315 - components: - - type: Transform - pos: 11.5,3.5 - parent: 4812 - - uid: 3316 - components: - - type: Transform - pos: 11.5,2.5 - parent: 4812 - - uid: 3317 - components: - - type: Transform - pos: 11.5,1.5 - parent: 4812 - - uid: 3318 - components: - - type: Transform - pos: 11.5,0.5 - parent: 4812 - - uid: 3319 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 4812 - - uid: 3321 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 4812 - - uid: 3322 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 4812 - - uid: 3323 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 4812 - - uid: 3324 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 4812 - - uid: 3325 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 4812 - - uid: 3326 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 4812 - - uid: 3327 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 4812 - - uid: 3328 - components: - - type: Transform - pos: 11.5,-9.5 - parent: 4812 - - uid: 3329 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 4812 - - uid: 3330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 4812 - - uid: 3331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 4812 - - uid: 3332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 4812 - - uid: 3333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 4812 - - uid: 3334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 4812 - - uid: 3335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 4812 - - uid: 3336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 4812 - - uid: 3337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 4812 - - uid: 3338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 4812 - - uid: 3339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 4812 - - uid: 3340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 4812 - - uid: 3341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 4812 - - uid: 3386 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 4812 - - uid: 3388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 4812 - - uid: 3389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-8.5 - parent: 4812 - - uid: 3410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 4812 - - uid: 3411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 4812 - - uid: 3419 - components: - - type: Transform - pos: -33.5,-5.5 - parent: 4812 - - uid: 3420 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 4812 - - uid: 3457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 4812 - - uid: 3458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,29.5 - parent: 4812 - - uid: 3466 - components: - - type: Transform - pos: -33.5,-7.5 - parent: 4812 - - uid: 4502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 4812 - - uid: 4504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,18.5 - parent: 4812 - - uid: 4506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,19.5 - parent: 4812 - - uid: 4507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 4812 - - uid: 4508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 4812 - - uid: 4509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,19.5 - parent: 4812 - - uid: 4510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 4812 - - uid: 4511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,19.5 - parent: 4812 - - uid: 4512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,19.5 - parent: 4812 - - uid: 4513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,19.5 - parent: 4812 - - uid: 4514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,19.5 - parent: 4812 - - uid: 4515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 4812 - - uid: 4516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,19.5 - parent: 4812 - - uid: 4517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,19.5 - parent: 4812 - - uid: 4518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,19.5 - parent: 4812 - - uid: 4519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,19.5 - parent: 4812 - - uid: 4520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,19.5 - parent: 4812 - - uid: 4521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,19.5 - parent: 4812 - - uid: 5840 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 4812 - - uid: 5841 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 4812 - - uid: 5842 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 4812 - - uid: 5843 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 4812 - - uid: 5844 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 4812 - - uid: 5845 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 4812 - - uid: 5846 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 4812 - - uid: 5847 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 4812 - - uid: 5850 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 4812 - - uid: 5851 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 4812 - - uid: 5852 - components: - - type: Transform - pos: 0.5,-24.5 - parent: 4812 - - uid: 5853 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 4812 - - uid: 5854 - components: - - type: Transform - pos: 0.5,-26.5 - parent: 4812 - - uid: 5855 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 4812 - - uid: 5856 - components: - - type: Transform - pos: 0.5,-28.5 - parent: 4812 - - uid: 5857 - components: - - type: Transform - pos: 0.5,-29.5 - parent: 4812 - - uid: 5861 - components: - - type: Transform - pos: 29.5,-23.5 - parent: 4812 - - uid: 5863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-24.5 - parent: 4812 - - uid: 5864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 4812 - - uid: 5865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 4812 - - uid: 5866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-24.5 - parent: 4812 - - uid: 5867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 4812 - - uid: 5868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 4812 - - uid: 5869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 4812 - - uid: 5870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 4812 - - uid: 5871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-24.5 - parent: 4812 - - uid: 5872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-24.5 - parent: 4812 - - uid: 5873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-24.5 - parent: 4812 - - uid: 5874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-24.5 - parent: 4812 - - uid: 5875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 4812 - - uid: 5876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-24.5 - parent: 4812 - - uid: 5877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 4812 - - uid: 5878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-24.5 - parent: 4812 - - uid: 5879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 - parent: 4812 - - uid: 5880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 4812 - - uid: 5881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 4812 - - uid: 5882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 4812 - - uid: 5884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-23.5 - parent: 4812 - - uid: 5885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-22.5 - parent: 4812 - - uid: 5886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-21.5 - parent: 4812 - - uid: 5888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 4812 - - uid: 5889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 4812 - - uid: 5890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 4812 - - uid: 5892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 4812 - - uid: 5893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 4812 - - uid: 5894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 4812 - - uid: 5897 - components: - - type: Transform - pos: 4.5,-19.5 - parent: 4812 - - uid: 5898 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 4812 - - uid: 5899 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 4812 - - uid: 5900 - components: - - type: Transform - pos: 4.5,-16.5 - parent: 4812 - - uid: 5901 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 4812 - - uid: 5902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-14.5 - parent: 4812 - - uid: 5903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 4812 - - uid: 6424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-30.5 - parent: 4812 - - uid: 6425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 4812 - - uid: 6426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-30.5 - parent: 4812 - - uid: 6427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-30.5 - parent: 4812 - - uid: 6428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-30.5 - parent: 4812 - - uid: 6429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-30.5 - parent: 4812 - - uid: 6433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-35.5 - parent: 4812 - - uid: 6434 - components: - - type: Transform - pos: 0.5,-34.5 - parent: 4812 - - uid: 6435 - components: - - type: Transform - pos: 0.5,-33.5 - parent: 4812 - - uid: 6436 - components: - - type: Transform - pos: 0.5,-32.5 - parent: 4812 - - uid: 6437 - components: - - type: Transform - pos: 0.5,-31.5 - parent: 4812 - - uid: 7592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-20.5 - parent: 4812 - - uid: 7593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-19.5 - parent: 4812 - - uid: 7594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-18.5 - parent: 4812 - - uid: 7595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-17.5 - parent: 4812 - - uid: 7596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 4812 - - uid: 7597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 4812 - - uid: 7598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 4812 - - uid: 7599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-21.5 - parent: 4812 - - uid: 7600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 4812 - - uid: 7601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 4812 - - uid: 7602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 4812 - - uid: 7603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 4812 - - uid: 7604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 4812 - - uid: 7619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 4812 - - uid: 9010 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 4812 - - uid: 9011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-37.5 - parent: 4812 - - uid: 10782 - components: - - type: Transform - pos: -33.5,0.5 - parent: 4812 - - uid: 10783 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 4812 - - uid: 10784 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 4812 - - uid: 10786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 4812 - - uid: 10787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 4812 - - uid: 10788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 4812 - - uid: 10789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 4812 - - uid: 10790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 4812 - - uid: 10791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 4812 - - uid: 10792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 - parent: 4812 - - uid: 10793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-11.5 - parent: 4812 - - uid: 10794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 4812 - - uid: 10796 - components: - - type: Transform - pos: -25.5,-10.5 - parent: 4812 - - uid: 10797 - components: - - type: Transform - pos: -25.5,-9.5 - parent: 4812 - - uid: 10798 - components: - - type: Transform - pos: -25.5,-8.5 - parent: 4812 - - uid: 10799 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 4812 - - uid: 10800 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 4812 - - uid: 10801 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 4812 - - uid: 10802 - components: - - type: Transform - pos: -25.5,-4.5 - parent: 4812 - - uid: 10803 - components: - - type: Transform - pos: -25.5,-3.5 - parent: 4812 - - uid: 10806 - components: - - type: Transform - pos: -28.5,19.5 - parent: 4812 - - uid: 10807 - components: - - type: Transform - pos: -28.5,18.5 - parent: 4812 - - uid: 10808 - components: - - type: Transform - pos: -28.5,17.5 - parent: 4812 - - uid: 10809 - components: - - type: Transform - pos: -28.5,16.5 - parent: 4812 - - uid: 10810 - components: - - type: Transform - pos: -28.5,15.5 - parent: 4812 - - uid: 10812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,14.5 - parent: 4812 - - uid: 10813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 4812 - - uid: 10814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,14.5 - parent: 4812 - - uid: 10815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,14.5 - parent: 4812 - - uid: 10819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,7.5 - parent: 4812 - - uid: 10820 - components: - - type: Transform - pos: -23.5,8.5 - parent: 4812 - - uid: 10821 - components: - - type: Transform - pos: -23.5,9.5 - parent: 4812 - - uid: 10822 - components: - - type: Transform - pos: -23.5,10.5 - parent: 4812 - - uid: 10823 - components: - - type: Transform - pos: -23.5,11.5 - parent: 4812 - - uid: 10824 - components: - - type: Transform - pos: -23.5,12.5 - parent: 4812 - - uid: 10825 - components: - - type: Transform - pos: -23.5,13.5 - parent: 4812 - - uid: 10826 - components: - - type: Transform - pos: -25.5,6.5 - parent: 4812 - - uid: 10827 - components: - - type: Transform - pos: -25.5,5.5 - parent: 4812 - - uid: 10828 - components: - - type: Transform - pos: -25.5,4.5 - parent: 4812 - - uid: 10829 - components: - - type: Transform - pos: -25.5,3.5 - parent: 4812 - - uid: 10830 - components: - - type: Transform - pos: -25.5,2.5 - parent: 4812 - - uid: 10832 - components: - - type: Transform - pos: -25.5,0.5 - parent: 4812 - - uid: 10833 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 4812 - - uid: 10834 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 4812 - - uid: 10837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,1.5 - parent: 4812 - - uid: 10838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,1.5 - parent: 4812 - - uid: 10839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,1.5 - parent: 4812 - - uid: 10840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,1.5 - parent: 4812 - - uid: 10841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-0.5 - parent: 4812 - - uid: 10842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 4812 - - uid: 11094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-42.5 - parent: 4812 - - uid: 11095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-42.5 - parent: 4812 - - uid: 11096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 4812 - - uid: 11097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 4812 - - uid: 11098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-38.5 - parent: 4812 - - uid: 11225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-30.5 - parent: 4812 - - uid: 11226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-30.5 - parent: 4812 - - uid: 11227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-31.5 - parent: 4812 - - uid: 11228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-32.5 - parent: 4812 - - uid: 11229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-33.5 - parent: 4812 - - uid: 11230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-34.5 - parent: 4812 - - uid: 11231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-35.5 - parent: 4812 - - uid: 11232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-36.5 - parent: 4812 - - uid: 11233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-37.5 - parent: 4812 - - uid: 12401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,33.5 - parent: 4812 - - uid: 12405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,34.5 - parent: 4812 - - uid: 12406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,35.5 - parent: 4812 - - uid: 12407 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,36.5 - parent: 4812 - - uid: 12408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,37.5 - parent: 4812 - - uid: 12409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,38.5 - parent: 4812 - - uid: 12410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,39.5 - parent: 4812 - - uid: 12411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,40.5 - parent: 4812 - - uid: 12412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,41.5 - parent: 4812 - - uid: 12413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,42.5 - parent: 4812 - - uid: 12414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,43.5 - parent: 4812 -- proto: DisposalTrunk - entities: - - uid: 1104 - components: - - type: Transform - pos: -9.5,-5.5 - parent: 4812 - - uid: 1121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 4812 - - uid: 1573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 4812 - - uid: 1574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 4812 - - uid: 1591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 4812 - - uid: 1605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 - parent: 4812 - - uid: 1606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 4812 - - uid: 1635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 4812 - - uid: 3144 - components: - - type: Transform - pos: 15.5,31.5 - parent: 4812 - - uid: 3291 - components: - - type: Transform - pos: 17.5,21.5 - parent: 4812 - - uid: 3408 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 4812 - - uid: 4501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 4812 - - uid: 4503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 4812 - - uid: 5860 - components: - - type: Transform - pos: 29.5,-22.5 - parent: 4812 - - uid: 5895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 4812 - - uid: 6431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-35.5 - parent: 4812 - - uid: 7589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 4812 - - uid: 7617 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-13.5 - parent: 4812 - - uid: 9009 - components: - - type: Transform - pos: -37.5,-35.5 - parent: 4812 - - uid: 9013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-37.5 - parent: 4812 - - uid: 10780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,1.5 - parent: 4812 - - uid: 10805 - components: - - type: Transform - pos: -28.5,20.5 - parent: 4812 - - uid: 10836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-1.5 - parent: 4812 - - uid: 11084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-42.5 - parent: 4812 - - uid: 11085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-38.5 - parent: 4812 - - uid: 11086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-34.5 - parent: 4812 - - uid: 11087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 4812 - - uid: 11088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-42.5 - parent: 4812 - - uid: 11089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 4812 - - uid: 11090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 4812 - - uid: 11091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 4812 - - uid: 11092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-38.5 - parent: 4812 - - uid: 11093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-42.5 - parent: 4812 - - uid: 11234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-38.5 - parent: 4812 - - uid: 12403 - components: - - type: Transform - pos: 6.5,44.5 - parent: 4812 - - uid: 12404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,32.5 - parent: 4812 -- proto: DisposalUnit - entities: - - uid: 921 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 4812 - - uid: 922 - components: - - type: Transform - pos: -5.5,11.5 - parent: 4812 - - uid: 1083 - components: - - type: Transform - pos: -9.5,-9.5 - parent: 4812 - - uid: 1084 - components: - - type: MetaData - desc: Sends stuff to kitchen. - name: kitchen mail tube - - type: Transform - pos: -9.5,-5.5 - parent: 4812 - - uid: 1483 - components: - - type: Transform - pos: -20.5,-6.5 - parent: 4812 - - uid: 1556 - components: - - type: Transform - pos: 2.5,0.5 - parent: 4812 - - uid: 1699 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 4812 - - uid: 1798 - components: - - type: Transform - pos: -5.5,17.5 - parent: 4812 - - uid: 3187 - components: - - type: Transform - pos: 15.5,31.5 - parent: 4812 - - uid: 3290 - components: - - type: Transform - pos: 17.5,21.5 - parent: 4812 - - uid: 3445 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 4812 - - uid: 4500 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 4812 - - uid: 5858 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 4812 - - uid: 5859 - components: - - type: Transform - pos: 29.5,-22.5 - parent: 4812 - - uid: 6430 - components: - - type: Transform - pos: 2.5,-35.5 - parent: 4812 - - uid: 6615 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 4812 - - uid: 7556 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 4812 - - uid: 7618 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 4812 - - uid: 8695 - components: - - type: Transform - pos: -28.5,20.5 - parent: 4812 - - uid: 9008 - components: - - type: Transform - pos: -37.5,-35.5 - parent: 4812 - - uid: 9578 - components: - - type: Transform - pos: -34.5,1.5 - parent: 4812 - - uid: 10835 - components: - - type: Transform - pos: -20.5,-1.5 - parent: 4812 - - uid: 11079 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 4812 - - uid: 11080 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 4812 - - uid: 11082 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 4812 - - uid: 11083 - components: - - type: Transform - pos: 7.5,-34.5 - parent: 4812 - - uid: 11925 - components: - - type: Transform - pos: 6.5,32.5 - parent: 4812 - - uid: 12402 - components: - - type: Transform - pos: 6.5,44.5 - parent: 4812 -- proto: DisposalYJunction - entities: - - uid: 3320 - components: - - type: Transform - pos: 11.5,19.5 - parent: 4812 - - uid: 3342 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 4812 - - uid: 3747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 4812 - - uid: 6423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 4812 -- proto: DogBed - entities: - - uid: 2511 - components: - - type: Transform - pos: 5.5,26.5 - parent: 4812 - - uid: 2610 - components: - - type: MetaData - name: fox bed - - type: Transform - pos: -15.5,22.5 - parent: 4812 - - uid: 6646 - components: - - type: Transform - pos: -11.5,-14.5 - parent: 4812 - - uid: 7449 - components: - - type: MetaData - name: cat bed - - type: Transform - pos: -26.5,-25.5 - parent: 4812 - - uid: 8339 - components: - - type: Transform - pos: -35.5,17.5 - parent: 4812 -- proto: DonkpocketBoxSpawner - entities: - - uid: 1571 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 4812 - - uid: 6339 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 4812 - - uid: 8429 - components: - - type: Transform - pos: -39.5,11.5 - parent: 4812 -- proto: DoorElectronics - entities: - - uid: 10716 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 4812 - - uid: 10717 - components: - - type: Transform - pos: -35.344994,-7.7000136 - parent: 4812 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 12116 - components: - - type: Transform - pos: -42.432724,-2.3473935 - parent: 4812 -- proto: Dresser - entities: - - uid: 1254 - components: - - type: Transform - pos: -17.5,5.5 - parent: 4812 - - uid: 1693 - components: - - type: Transform - pos: -7.5,0.5 - parent: 4812 - - uid: 5363 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 4812 - - uid: 7035 - components: - - type: Transform - pos: -27.5,-37.5 - parent: 4812 - - uid: 9046 - components: - - type: Transform - pos: -26.5,-40.5 - parent: 4812 -- proto: DresserCaptainFilled - entities: - - uid: 7064 - components: - - type: Transform - pos: -12.5,29.5 - parent: 4812 -- proto: DresserChiefEngineerFilled - entities: - - uid: 12479 - components: - - type: Transform - pos: -48.5,-7.5 - parent: 4812 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 7461 - components: - - type: Transform - pos: -24.5,-28.5 - parent: 4812 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 7455 - components: - - type: Transform - pos: 7.5,29.5 - parent: 4812 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 7456 - components: - - type: Transform - pos: -23.5,28.5 - parent: 4812 -- proto: DresserQuarterMasterFilled - entities: - - uid: 12476 - components: - - type: Transform - pos: 16.5,35.5 - parent: 4812 -- proto: DrinkBottleOfNothingFull - entities: - - uid: 1717 - components: - - type: Transform - pos: -10.737676,0.038593292 - parent: 4812 -- proto: DrinkBottleVodka - entities: - - uid: 11783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.922853,-32.796886 - parent: 4812 -- proto: DrinkCoffee - entities: - - uid: 1777 - components: - - type: Transform - pos: -2.4777098,-4.2682357 - parent: 4812 -- proto: DrinkColaBottleFull - entities: - - uid: 1780 - components: - - type: Transform - pos: -2.3527098,-2.4557357 - parent: 4812 -- proto: DrinkDetFlask - entities: - - uid: 11806 - components: - - type: Transform - pos: -14.221141,-0.49929333 - parent: 4812 - - uid: 11807 - components: - - type: Transform - pos: 18.44514,-15.833292 - parent: 4812 -- proto: DrinkFlask - entities: - - uid: 2590 - components: - - type: Transform - pos: -13.404404,27.48132 - parent: 4812 -- proto: DrinkFlaskOld - entities: - - uid: 2536 - components: - - type: Transform - pos: 5.505315,29.475674 - parent: 4812 -- proto: DrinkGoldenCup - entities: - - uid: 2713 - components: - - type: Transform - pos: -5.608521,24.832329 - parent: 4812 -- proto: DrinkGoldschlagerBottleFull - entities: - - uid: 2714 - components: - - type: Transform - pos: -5.405396,24.535454 - parent: 4812 -- proto: DrinkHotCoffee - entities: - - uid: 6308 - components: - - type: Transform - pos: 25.471973,-18.414967 - parent: 4812 -- proto: DrinkIcedTeaCan - entities: - - uid: 12372 - components: - - type: Transform - pos: 4.93781,-34.192295 - parent: 4812 -- proto: DrinkLemonLimeCan - entities: - - uid: 1768 - components: - - type: Transform - pos: -2.4722648,6.6801405 - parent: 4812 -- proto: DrinkLithiumFlask - entities: - - uid: 3611 - components: - - type: Transform - pos: -18.350801,33.411205 - parent: 4812 - - uid: 12466 - components: - - type: Transform - pos: -18.56759,33.562008 - parent: 4812 -- proto: DrinkMugBlack - entities: - - uid: 10761 - components: - - type: Transform - pos: -42.456604,-7.331287 - parent: 4812 -- proto: DrinkMugDog - entities: - - uid: 1771 - components: - - type: Transform - pos: -2.4722648,3.4643836 - parent: 4812 -- proto: DrinkMugHeart - entities: - - uid: 10763 - components: - - type: Transform - pos: -41.78473,-7.362537 - parent: 4812 -- proto: DrinkMugMetal - entities: - - uid: 3278 - components: - - type: Transform - pos: 22.59246,12.58923 - parent: 4812 - - uid: 8435 - components: - - type: Transform - pos: -38.614426,12.463839 - parent: 4812 - - uid: 10760 - components: - - type: Transform - pos: -42.56598,-7.518787 - parent: 4812 -- proto: DrinkMugOne - entities: - - uid: 10762 - components: - - type: Transform - pos: -42.25348,-7.487537 - parent: 4812 -- proto: DrinkMugRed - entities: - - uid: 8434 - components: - - type: Transform - pos: -38.3488,12.713839 - parent: 4812 -- proto: DrinkShaker - entities: - - uid: 1654 - components: - - type: Transform - pos: 5.357094,8.658001 - parent: 4812 -- proto: DrinkShinyFlask - entities: - - uid: 8436 - components: - - type: Transform - pos: -36.520676,15.807589 - parent: 4812 -- proto: DrinkVodkaBottleFull - entities: - - uid: 11781 - components: - - type: Transform - pos: 28.500978,-32.265636 - parent: 4812 - - uid: 11782 - components: - - type: Transform - pos: 28.688478,-32.453136 - parent: 4812 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 11845 - components: - - type: Transform - pos: -7.6193094,12.673876 - parent: 4812 -- proto: DrinkWineBottleFull - entities: - - uid: 7041 - components: - - type: Transform - pos: -13.459903,-33.042583 - parent: 4812 -- proto: ElectricGuitarInstrument - entities: - - uid: 1720 - components: - - type: Transform - pos: -10.472051,-1.3051567 - parent: 4812 -- proto: EmergencyLight - entities: - - uid: 8416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-23.5 - parent: 4812 - - uid: 12093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,2.5 - parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,33.5 - parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12095 - components: - - type: Transform - pos: 10.5,50.5 - parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 - parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,18.5 - parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12104 - components: - - type: Transform - pos: -30.5,32.5 - parent: 4812 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight -- proto: EncryptionKeyCargo - entities: - - uid: 4992 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 4991 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 6663 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 6662 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 7268 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 7267 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 7291 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 7290 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedicalScience - entities: - - uid: 331 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 330 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 7248 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 7247 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 7269 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 7267 - - type: Physics - canCollide: False -- proto: ExosuitFabricator - entities: - - uid: 12387 - components: - - type: Transform - pos: 4.5,-28.5 - parent: 4812 -- proto: ExplosivesSignMed - entities: - - uid: 10749 - components: - - type: Transform - pos: -33.5,6.5 - parent: 4812 -- proto: ExtendedEmergencyOxygenTankFilled - entities: - - uid: 11839 - components: - - type: Transform - pos: -6.4474344,14.517626 - parent: 4812 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 1513 - components: - - type: Transform - pos: -6.5,-2.5 - parent: 4812 - - uid: 3270 - components: - - type: Transform - pos: 24.5,17.5 - parent: 4812 - - uid: 4499 - components: - - type: Transform - pos: 10.5,13.5 - parent: 4812 - - uid: 4523 - components: - - type: Transform - pos: 4.5,23.5 - parent: 4812 - - uid: 4524 - components: - - type: Transform - pos: 4.5,30.5 - parent: 4812 - - uid: 4584 - components: - - type: Transform - pos: 20.5,-4.5 - parent: 4812 - - uid: 6485 - components: - - type: Transform - pos: -0.5,-26.5 - parent: 4812 - - uid: 7032 - components: - - type: Transform - pos: -23.5,-32.5 - parent: 4812 - - uid: 7417 - components: - - type: Transform - pos: -7.5,-24.5 - parent: 4812 - - uid: 7418 - components: - - type: Transform - pos: -17.5,-14.5 - parent: 4812 - - uid: 7429 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 4812 - - uid: 8330 - components: - - type: Transform - pos: -21.5,17.5 - parent: 4812 - - uid: 8602 - components: - - type: Transform - pos: -18.5,13.5 - parent: 4812 - - uid: 10710 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 4812 - - uid: 10711 - components: - - type: Transform - pos: -40.5,7.5 - parent: 4812 -- proto: FaxMachineBase - entities: - - uid: 2493 - components: - - type: Transform - pos: 20.5,21.5 - parent: 4812 - - type: FaxMachine - name: Cargo - - uid: 3736 - components: - - type: Transform - pos: -19.5,22.5 - parent: 4812 - - type: FaxMachine - name: HoS Office - - uid: 4856 - components: - - type: Transform - pos: 17.5,31.5 - parent: 4812 - - type: FaxMachine - name: QM's Office - - uid: 4990 - components: - - type: Transform - pos: -6.5,34.5 - parent: 4812 - - type: FaxMachine - name: Bridge - - uid: 7216 - components: - - type: Transform - pos: -1.5,-24.5 - parent: 4812 - - type: FaxMachine - name: Arrivals Secpost - - uid: 7230 - components: - - type: Transform - pos: 6.5,24.5 - parent: 4812 - - type: FaxMachine - name: HoP Office - - uid: 7458 - components: - - type: Transform - pos: -24.5,-25.5 - parent: 4812 - - type: FaxMachine - name: CMO's Office - - uid: 12428 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 4812 - - type: FaxMachine - name: Library -- proto: FaxMachineCaptain - entities: - - uid: 7298 - components: - - type: Transform - pos: -12.5,22.5 - parent: 4812 -- proto: FigureSpawner - entities: - - uid: 7145 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 4812 - - uid: 7146 - components: - - type: Transform - pos: -28.5,-15.5 - parent: 4812 - - uid: 7147 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 4812 - - uid: 7148 - components: - - type: Transform - pos: -27.5,-14.5 - parent: 4812 -- proto: filingCabinet - entities: - - uid: 6441 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 4812 - - uid: 8272 - components: - - type: Transform - pos: -16.5,14.5 - parent: 4812 - - uid: 11840 - components: - - type: Transform - pos: -7.5,14.5 - parent: 4812 -- proto: filingCabinetDrawer - entities: - - uid: 2514 - components: - - type: Transform - pos: 7.5,26.5 - parent: 4812 -- proto: filingCabinetTall - entities: - - uid: 3236 - components: - - type: Transform - pos: 14.5,21.5 - parent: 4812 -- proto: FireAlarm - entities: - - uid: 4961 - components: - - type: Transform - pos: -14.5,-14.5 - parent: 4812 - - type: DeviceList - devices: - - 5039 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 4979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 4812 - - type: DeviceList - devices: - - 6621 - - 5047 - - 6553 - - 8806 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 6781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 8804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 4812 - - type: DeviceList - devices: - - 8805 - - 6621 - - 4920 - - 8838 - - 8836 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 10750 - components: - - type: Transform - pos: -29.5,6.5 - parent: 4812 - - type: DeviceList - devices: - - 12184 - - 8690 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,0.5 - parent: 4812 - - type: DeviceList - devices: - - 12179 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 4812 - - type: DeviceList - devices: - - 8691 - - 8690 - - 12189 - - 12188 - - 12185 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-7.5 - parent: 4812 - - type: DeviceList - devices: - - 12192 - - 8691 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,1.5 - parent: 4812 - - type: DeviceList - devices: - - 6494 - - 6495 - - 12195 - - 8156 - - 8157 - - 12188 - - 12189 - - 12197 - - 12196 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 4812 - - type: DeviceList - devices: - - 12200 - - 12196 - - 12197 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,13.5 - parent: 4812 - - type: DeviceList - devices: - - 12201 - - 8156 - - 8157 - - 7784 - - 8154 - - 8155 - - 12205 - - 12204 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12207 - components: - - type: Transform - pos: -19.5,13.5 - parent: 4812 - - type: DeviceList - devices: - - 12208 - - 12204 - - 12205 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,16.5 - parent: 4812 - - type: DeviceList - devices: - - 12211 - - 12212 - - 7782 - - 7783 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,16.5 - parent: 4812 - - type: DeviceList - devices: - - 12216 - - 12212 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12221 - components: - - type: Transform - pos: -16.5,21.5 - parent: 4812 - - type: DeviceList - devices: - - 8155 - - 8154 - - 2693 - - 2695 - - 12222 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12224 - components: - - type: Transform - pos: -0.5,21.5 - parent: 4812 - - type: DeviceList - devices: - - 2693 - - 2695 - - 2782 - - 2783 - - 12225 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,25.5 - parent: 4812 - - type: DeviceList - devices: - - 12230 - - 2231 - - 1928 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 4812 - - type: DeviceList - devices: - - 12231 - - 2473 - - 2472 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,29.5 - parent: 4812 - - type: DeviceList - devices: - - 12237 - - 2473 - - 2472 - - 2231 - - 1928 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,29.5 - parent: 4812 - - type: DeviceList - devices: - - 12237 - - 2473 - - 2472 - - 2231 - - 1928 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12238 - components: - - type: Transform - pos: 7.5,23.5 - parent: 4812 - - type: DeviceList - devices: - - 1927 - - 2476 - - 963 - - 12239 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12241 - components: - - type: Transform - pos: 10.5,27.5 - parent: 4812 - - type: DeviceList - devices: - - 12242 - - 1927 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12244 - components: - - type: Transform - pos: 10.5,21.5 - parent: 4812 - - type: DeviceList - devices: - - 12243 - - 2787 - - 2786 - - 2476 - - 963 - - 2783 - - 2782 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12246 - components: - - type: Transform - pos: 17.5,16.5 - parent: 4812 - - type: DeviceList - devices: - - 2922 - - 2852 - - 2853 - - 12247 - - 3257 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,5.5 - parent: 4812 - - type: DeviceList - devices: - - 4122 - - 4117 - - 12251 - - 2852 - - 2853 - - 2787 - - 2786 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 4812 - - type: DeviceList - devices: - - 3257 - - 12254 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 4812 - - type: DeviceList - devices: - - 4426 - - 4423 - - 12274 - - 4122 - - 4117 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12276 - components: - - type: Transform - pos: 20.5,-1.5 - parent: 4812 - - type: DeviceList - devices: - - 12277 - - 4424 - - 4425 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 4812 - - type: DeviceList - devices: - - 12279 - - 4425 - - 4424 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-13.5 - parent: 4812 - - type: DeviceList - devices: - - 12287 - - 4423 - - 4426 - - 6415 - - 6414 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12290 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 4812 - - type: DeviceList - devices: - - 4645 - - 4644 - - 6500 - - 6499 - - 4646 - - 4647 - - 5792 - - 6414 - - 6415 - - 12288 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12291 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 4812 - - type: DeviceList - devices: - - 6497 - - 6496 - - 12292 - - 6494 - - 6495 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-13.5 - parent: 4812 - - type: DeviceList - devices: - - 6497 - - 6496 - - 6500 - - 6499 - - 12295 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12301 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 4812 - - type: DeviceList - devices: - - 931 - - 932 - - 12300 - - 782 - - 783 - - 784 - - 349 - - 351 - - 361 - - 354 - - 353 - - 352 - - 350 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 4812 - - type: DeviceList - devices: - - 349 - - 351 - - 361 - - 354 - - 353 - - 352 - - 350 - - 12306 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12310 - components: - - type: Transform - pos: 6.5,1.5 - parent: 4812 - - type: DeviceList - devices: - - 12309 - - 782 - - 783 - - 784 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,13.5 - parent: 4812 - - type: DeviceList - devices: - - 12313 - - 1940 - - 1939 - - 1938 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12314 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 4812 - - type: DeviceList - devices: - - 5308 - - 4644 - - 4645 - - 4646 - - 4647 - - 5791 - - 5793 - - 12315 - - 8783 - - 8803 - - 8779 - - 8778 - - 8711 - - 8591 - - 8758 - - 8770 - - 5028 - - 328 - - 3582 - - 2759 - - 3264 - - 6655 - - 4980 - - 7198 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12317 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 4812 - - type: DeviceList - devices: - - 12318 - - 5071 - - 5072 - - 8783 - - 8803 - - 8779 - - 8778 - - 8711 - - 8591 - - 8758 - - 8770 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 4812 - - type: DeviceList - devices: - - 12321 - - 5072 - - 5071 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 4812 - - type: DeviceList - devices: - - 6585 - - 6584 - - 12343 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 4812 - - type: DeviceList - devices: - - 12347 - - 5791 - - 5792 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 4812 - - type: DeviceList - devices: - - 5600 - - 5599 - - 12355 - - type: AtmosDevice - joinedGrid: 4812 -- proto: FireAxeCabinetFilled - entities: - - uid: 6784 - components: - - type: Transform - pos: -40.5,6.5 - parent: 4812 -- proto: FireExtinguisher - entities: - - uid: 3677 - components: - - type: Transform - pos: 3.3851929,50.52095 - parent: 4812 - - uid: 3975 - components: - - type: Transform - pos: 3.6195679,50.3647 - parent: 4812 -- proto: Firelock - entities: - - uid: 1658 - components: - - type: Transform - pos: 4.5,6.5 - parent: 4812 -- proto: FirelockEdge - entities: - - uid: 328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-22.5 - parent: 4812 - - uid: 332 - components: - - type: Transform - pos: -3.5,-8.5 - parent: 4812 - - uid: 361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 4812 - - uid: 1097 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 4812 - - uid: 1099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,11.5 - parent: 4812 - - uid: 1100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,11.5 - parent: 4812 - - uid: 1932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,11.5 - parent: 4812 - - uid: 2759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 4812 - - uid: 3264 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-21.5 - parent: 4812 - - uid: 3582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-22.5 - parent: 4812 - - uid: 4980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 4812 - - uid: 4983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 4812 - - uid: 4999 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 4812 - - uid: 5000 - components: - - type: Transform - pos: -1.5,13.5 - parent: 4812 - - uid: 5001 - components: - - type: Transform - pos: -2.5,13.5 - parent: 4812 - - uid: 5002 - components: - - type: Transform - pos: -3.5,13.5 - parent: 4812 - - uid: 5028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 4812 - - uid: 6655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 4812 - - uid: 6667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-10.5 - parent: 4812 - - uid: 6684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 4812 - - uid: 7191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 4812 - - uid: 7198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 4812 - - uid: 7287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 4812 - - uid: 7388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 4812 - - uid: 7391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-10.5 - parent: 4812 - - uid: 8591 - components: - - type: Transform - pos: -6.5,-32.5 - parent: 4812 - - uid: 8711 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 4812 - - uid: 8758 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 4812 - - uid: 8770 - components: - - type: Transform - pos: 0.5,-32.5 - parent: 4812 - - uid: 8778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-34.5 - parent: 4812 - - uid: 8779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-34.5 - parent: 4812 - - uid: 8783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 4812 - - uid: 8803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-34.5 - parent: 4812 -- proto: FirelockElectronics - entities: - - uid: 10718 - components: - - type: Transform - pos: -30.464754,-7.2781386 - parent: 4812 -- proto: FirelockGlass - entities: - - uid: 349 - components: - - type: Transform - pos: 2.5,4.5 - parent: 4812 - - uid: 350 - components: - - type: Transform - pos: 1.5,9.5 - parent: 4812 - - uid: 351 - components: - - type: Transform - pos: 3.5,4.5 - parent: 4812 - - uid: 352 - components: - - type: Transform - pos: 1.5,8.5 - parent: 4812 - - uid: 353 - components: - - type: Transform - pos: 1.5,7.5 - parent: 4812 - - uid: 354 - components: - - type: Transform - pos: 1.5,6.5 - parent: 4812 - - uid: 782 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 4812 - - uid: 783 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 4812 - - uid: 784 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 4812 - - uid: 930 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 4812 - - uid: 931 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 4812 - - uid: 932 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 4812 - - uid: 963 - components: - - type: Transform - pos: 5.5,21.5 - parent: 4812 - - uid: 1927 - components: - - type: Transform - pos: 9.5,23.5 - parent: 4812 - - uid: 1928 - components: - - type: Transform - pos: -8.5,27.5 - parent: 4812 - - uid: 1938 - components: - - type: Transform - pos: -3.5,15.5 - parent: 4812 - - uid: 1939 - components: - - type: Transform - pos: -2.5,15.5 - parent: 4812 - - uid: 1940 - components: - - type: Transform - pos: -1.5,15.5 - parent: 4812 - - uid: 1941 - components: - - type: Transform - pos: 9.5,5.5 - parent: 4812 - - uid: 1942 - components: - - type: Transform - pos: -12.5,9.5 - parent: 4812 - - uid: 1943 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 4812 - - uid: 2231 - components: - - type: Transform - pos: -7.5,27.5 - parent: 4812 - - uid: 2472 - components: - - type: Transform - pos: 3.5,27.5 - parent: 4812 - - uid: 2473 - components: - - type: Transform - pos: 2.5,27.5 - parent: 4812 - - uid: 2476 - components: - - type: Transform - pos: 9.5,21.5 - parent: 4812 - - uid: 2693 - components: - - type: Transform - pos: -9.5,19.5 - parent: 4812 - - uid: 2695 - components: - - type: Transform - pos: -9.5,20.5 - parent: 4812 - - uid: 2782 - components: - - type: Transform - pos: 4.5,19.5 - parent: 4812 - - uid: 2783 - components: - - type: Transform - pos: 4.5,20.5 - parent: 4812 - - uid: 2786 - components: - - type: Transform - pos: 11.5,16.5 - parent: 4812 - - uid: 2787 - components: - - type: Transform - pos: 12.5,16.5 - parent: 4812 - - uid: 2852 - components: - - type: Transform - pos: 13.5,14.5 - parent: 4812 - - uid: 2853 - components: - - type: Transform - pos: 13.5,15.5 - parent: 4812 - - uid: 2922 - components: - - type: Transform - pos: 21.5,15.5 - parent: 4812 - - uid: 3257 - components: - - type: Transform - pos: 15.5,16.5 - parent: 4812 - - uid: 3361 - components: - - type: Transform - pos: 12.5,25.5 - parent: 4812 - - uid: 4117 - components: - - type: Transform - pos: 12.5,0.5 - parent: 4812 - - uid: 4122 - components: - - type: Transform - pos: 11.5,0.5 - parent: 4812 - - uid: 4423 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 4812 - - uid: 4424 - components: - - type: Transform - pos: 23.5,-3.5 - parent: 4812 - - uid: 4425 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 4812 - - uid: 4426 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 4812 - - uid: 4435 - components: - - type: Transform - pos: 28.5,1.5 - parent: 4812 - - uid: 4436 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 4812 - - uid: 4525 - components: - - type: Transform - pos: 18.5,5.5 - parent: 4812 - - uid: 4543 - components: - - type: Transform - pos: 16.5,-7.5 - parent: 4812 - - uid: 4544 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 4812 - - uid: 4644 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 4812 - - uid: 4645 - components: - - type: Transform - pos: -6.5,-14.5 - parent: 4812 - - uid: 4646 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 4812 - - uid: 4647 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 4812 - - uid: 4920 - components: - - type: Transform - pos: -12.5,-24.5 - parent: 4812 - - uid: 5039 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 4812 - - uid: 5045 - components: - - type: Transform - pos: -19.5,-19.5 - parent: 4812 - - uid: 5047 - components: - - type: Transform - pos: -13.5,-22.5 - parent: 4812 - - uid: 5071 - components: - - type: Transform - pos: -11.5,-36.5 - parent: 4812 - - uid: 5072 - components: - - type: Transform - pos: -10.5,-36.5 - parent: 4812 - - uid: 5308 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 4812 - - uid: 5599 - components: - - type: Transform - pos: 9.5,-22.5 - parent: 4812 - - uid: 5600 - components: - - type: Transform - pos: 8.5,-22.5 - parent: 4812 - - uid: 5791 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 4812 - - uid: 5792 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 4812 - - uid: 5793 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 4812 - - uid: 6414 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 4812 - - uid: 6415 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 4812 - - uid: 6494 - components: - - type: Transform - pos: -25.5,-10.5 - parent: 4812 - - uid: 6495 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 4812 - - uid: 6496 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 4812 - - uid: 6497 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 4812 - - uid: 6499 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 4812 - - uid: 6500 - components: - - type: Transform - pos: -11.5,-12.5 - parent: 4812 - - uid: 6553 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 4812 - - uid: 6584 - components: - - type: Transform - pos: -9.5,-13.5 - parent: 4812 - - uid: 6585 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 4812 - - uid: 6621 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 4812 - - uid: 6629 - components: - - type: Transform - pos: -19.5,-13.5 - parent: 4812 - - uid: 6676 - components: - - type: Transform - pos: -7.5,31.5 - parent: 4812 - - uid: 6764 - components: - - type: Transform - pos: -8.5,31.5 - parent: 4812 - - uid: 7343 - components: - - type: Transform - pos: 1.5,29.5 - parent: 4812 - - uid: 7344 - components: - - type: Transform - pos: 2.5,31.5 - parent: 4812 - - uid: 7346 - components: - - type: Transform - pos: 3.5,31.5 - parent: 4812 - - uid: 7347 - components: - - type: Transform - pos: -6.5,29.5 - parent: 4812 - - uid: 7782 - components: - - type: Transform - pos: -26.5,12.5 - parent: 4812 - - uid: 7783 - components: - - type: Transform - pos: -25.5,12.5 - parent: 4812 - - uid: 7784 - components: - - type: Transform - pos: -24.5,11.5 - parent: 4812 - - uid: 8154 - components: - - type: Transform - pos: -23.5,15.5 - parent: 4812 - - uid: 8155 - components: - - type: Transform - pos: -22.5,15.5 - parent: 4812 - - uid: 8156 - components: - - type: Transform - pos: -26.5,6.5 - parent: 4812 - - uid: 8157 - components: - - type: Transform - pos: -25.5,6.5 - parent: 4812 - - uid: 8690 - components: - - type: Transform - pos: -30.5,0.5 - parent: 4812 - - uid: 8691 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 4812 - - uid: 10581 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 4812 - - uid: 10591 - components: - - type: Transform - pos: -39.5,-31.5 - parent: 4812 - - uid: 10592 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 4812 - - uid: 10616 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 4812 - - uid: 10617 - components: - - type: Transform - pos: -41.5,-22.5 - parent: 4812 - - uid: 10752 - components: - - type: Transform - pos: -37.5,1.5 - parent: 4812 - - uid: 10753 - components: - - type: Transform - pos: -37.5,2.5 - parent: 4812 - - uid: 10754 - components: - - type: Transform - pos: -37.5,3.5 - parent: 4812 - - uid: 10755 - components: - - type: Transform - pos: -37.5,4.5 - parent: 4812 - - uid: 10756 - components: - - type: Transform - pos: -37.5,5.5 - parent: 4812 - - uid: 10901 - components: - - type: Transform - pos: -33.5,-12.5 - parent: 4812 - - uid: 10902 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 4812 - - uid: 11259 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 4812 - - uid: 11364 - components: - - type: Transform - pos: 23.5,-33.5 - parent: 4812 - - uid: 11365 - components: - - type: Transform - pos: 23.5,-32.5 - parent: 4812 - - uid: 11793 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 4812 - - uid: 12188 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 4812 - - uid: 12189 - components: - - type: Transform - pos: -28.5,-1.5 - parent: 4812 - - uid: 12196 - components: - - type: Transform - pos: -24.5,1.5 - parent: 4812 - - uid: 12197 - components: - - type: Transform - pos: -24.5,2.5 - parent: 4812 - - uid: 12204 - components: - - type: Transform - pos: -21.5,9.5 - parent: 4812 - - uid: 12205 - components: - - type: Transform - pos: -21.5,10.5 - parent: 4812 - - uid: 12212 - components: - - type: Transform - pos: -32.5,15.5 - parent: 4812 -- proto: Fireplace - entities: - - uid: 2581 - components: - - type: Transform - pos: -13.5,29.5 - parent: 4812 -- proto: Flash - entities: - - uid: 2679 - components: - - type: Transform - pos: -1.4420605,35.49948 - parent: 4812 - - uid: 3964 - components: - - type: Transform - pos: 11.496426,48.542255 - parent: 4812 - - uid: 6247 - components: - - type: Transform - pos: 16.572206,-27.496618 - parent: 4812 - - uid: 8451 - components: - - type: Transform - pos: -30.484182,10.599279 - parent: 4812 -- proto: FlashlightLantern - entities: - - uid: 6364 - components: - - type: Transform - pos: -42.568504,-1.8948193 - parent: 4812 - - uid: 8597 - components: - - type: Transform - pos: -19.531754,10.050615 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8598 - components: - - type: Transform - pos: -18.563004,10.206865 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11673 - components: - - type: Transform - pos: 25.480742,-40.49962 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 12487 - components: - - type: Transform - pos: -42.55288,-2.0198193 - parent: 4812 - - uid: 12488 - components: - - type: Transform - pos: -32.540565,-7.207951 - parent: 4812 - - uid: 12489 - components: - - type: Transform - pos: -32.540565,-7.411076 - parent: 4812 - - uid: 12490 - components: - - type: Transform - pos: -19.610077,12.664663 - parent: 4812 - - uid: 12491 - components: - - type: Transform - pos: -19.516327,12.555288 - parent: 4812 -- proto: FlashlightSeclite - entities: - - uid: 8450 - components: - - type: Transform - pos: -28.562307,10.614904 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: Floodlight - entities: - - uid: 11744 - components: - - type: Transform - pos: 19.532274,-41.53536 - parent: 4812 - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: FloorDrain - entities: - - uid: 2490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,29.5 - parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 2491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,30.5 - parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 3383 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 3465 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 4458 - components: - - type: Transform - pos: 16.5,6.5 - parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 7383 - components: - - type: Transform - pos: -10.5,-16.5 - parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 7446 - components: - - type: Transform - pos: -19.5,-17.5 - parent: 4812 - - type: Fixtures - fixtures: {} - - uid: 8245 - components: - - type: Transform - pos: -19.5,29.5 - parent: 4812 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemGold - entities: - - uid: 10471 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11746 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11747 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11748 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11749 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11750 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11751 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11752 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11753 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11754 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11755 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11756 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11757 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11758 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11759 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11760 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11761 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11762 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11763 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11764 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11765 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11766 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11767 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11768 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11769 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11770 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11771 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 - - uid: 11772 - components: - - type: Transform - pos: -57.41745,-9.4886875 - parent: 4812 -- proto: FloorTileItemShuttleWhite - entities: - - uid: 10961 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 10962 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 10981 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12430 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12431 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12432 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12433 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12434 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12435 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12436 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12437 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12438 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12439 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12440 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12441 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12442 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12443 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12444 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12445 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12446 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12447 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12448 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12449 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12450 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12451 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12452 - components: - - type: Transform - pos: -35.581154,26.501883 - parent: 4812 - - uid: 12453 - components: - - type: Transform - pos: -35.581154,26.517508 - parent: 4812 - - uid: 12454 - components: - - type: Transform - pos: -35.581154,26.517508 - parent: 4812 - - uid: 12455 - components: - - type: Transform - pos: -35.581154,26.517508 - parent: 4812 - - uid: 12456 - components: - - type: Transform - pos: -35.581154,26.517508 - parent: 4812 -- proto: FlyAmanitaSeeds - entities: - - uid: 9620 - components: - - type: Transform - pos: -43.497864,-29.674786 - parent: 4812 -- proto: FoodBanana - entities: - - uid: 1708 - components: - - type: Transform - pos: -10.643926,0.9448434 - parent: 4812 - - uid: 1709 - components: - - type: Transform - pos: -10.425176,0.9292184 - parent: 4812 - - uid: 1710 - components: - - type: Transform - pos: -10.253301,0.8979684 - parent: 4812 -- proto: FoodBowlBigTrash - entities: - - uid: 11242 - components: - - type: Transform - pos: 10.485162,-37.493214 - parent: 4812 - - uid: 11243 - components: - - type: Transform - pos: 10.469537,-36.29009 - parent: 4812 -- proto: FoodBoxDonut - entities: - - uid: 8367 - components: - - type: Transform - pos: -26.5,10.5 - parent: 4812 -- proto: FoodBreadBaguette - entities: - - uid: 1716 - components: - - type: Transform - pos: -10.518926,-0.4614067 - parent: 4812 -- proto: FoodBreadMoldySlice - entities: - - uid: 7042 - components: - - type: Transform - pos: -18.50604,-35.186176 - parent: 4812 -- proto: FoodBurgerMime - entities: - - uid: 1721 - components: - - type: Transform - pos: -10.581426,-0.9614067 - parent: 4812 -- proto: FoodBurgerRobot - entities: - - uid: 3675 - components: - - type: Transform - pos: 5.460861,44.505184 - parent: 4812 - - uid: 11960 - components: - - type: Transform - pos: -14.514471,15.4569435 - parent: 4812 -- proto: FoodCakeSuppermatterSlice - entities: - - uid: 10997 - components: - - type: Transform - pos: 8.455962,31.413256 - parent: 4812 -- proto: FoodCartCold - entities: - - uid: 1572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 4812 -- proto: FoodCartHot - entities: - - uid: 3952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 4812 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 1643 - components: - - type: Transform - pos: 7.2863007,0.7877493 - parent: 4812 - - uid: 1644 - components: - - type: Transform - pos: 7.4581757,0.6939993 - parent: 4812 -- proto: FoodCondimentPacketPepper - entities: - - uid: 1773 - components: - - type: Transform - pos: -2.6753898,2.5728736 - parent: 4812 - - type: RefillableSolution - solution: food - - uid: 1779 - components: - - type: Transform - pos: -2.3370848,-3.5807357 - parent: 4812 - - type: RefillableSolution - solution: food -- proto: FoodCondimentPacketSalt - entities: - - uid: 1772 - components: - - type: Transform - pos: -2.3003898,9.296319 - parent: 4812 - - type: RefillableSolution - solution: food -- proto: FoodMeatCrab - entities: - - uid: 12371 - components: - - type: MetaData - desc: name's fokkin JOE RIPPA YA DOG - name: joe rippa - - type: Transform - pos: 4.56281,-34.161045 - parent: 4812 -- proto: FoodPieBananaCream - entities: - - uid: 1711 - components: - - type: Transform - pos: -10.659551,0.5229684 - parent: 4812 - - uid: 1712 - components: - - type: Transform - pos: -10.409551,0.5073434 - parent: 4812 -- proto: FoodPizzaSassysageSlice - entities: - - uid: 10765 - components: - - type: Transform - pos: -43.00348,-7.268787 - parent: 4812 -- proto: FoodPlateTrash - entities: - - uid: 11241 - components: - - type: Transform - pos: 9.469537,-39.368214 - parent: 4812 -- proto: FoodSnackCheesie - entities: - - uid: 1775 - components: - - type: Transform - pos: -2.4566398,1.6822487 - parent: 4812 -- proto: FoodSnackChips - entities: - - uid: 1776 - components: - - type: Transform - pos: -2.4620848,-1.5182357 - parent: 4812 - - uid: 6410 - components: - - type: Transform - pos: -4.4655905,-19.449863 - parent: 4812 -- proto: FoodTartGapple - entities: - - uid: 2735 - components: - - type: Transform - pos: 0.5300851,22.660454 - parent: 4812 -- proto: Fork - entities: - - uid: 1769 - components: - - type: Transform - pos: -2.5347648,9.4457655 - parent: 4812 - - uid: 1778 - components: - - type: Transform - pos: -2.6495848,-3.5494857 - parent: 4812 -- proto: GasAnalyzer - entities: - - uid: 6318 - components: - - type: Transform - pos: 24.527384,-25.4941 - parent: 4812 - - uid: 6322 - components: - - type: Transform - pos: 24.418009,-25.447226 - parent: 4812 -- proto: GasFilter - entities: - - uid: 3737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-27.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasFilterFlipped - entities: - - uid: 9169 - components: - - type: Transform - pos: -47.5,1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9170 - components: - - type: Transform - pos: -47.5,3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9171 - components: - - type: Transform - pos: -47.5,5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9172 - components: - - type: Transform - pos: -47.5,7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9173 - components: - - type: Transform - pos: -47.5,9.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9174 - components: - - type: Transform - pos: -47.5,11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: GasMinerCarbonDioxide - entities: - - uid: 9452 - components: - - type: Transform - pos: -52.5,5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: GasMinerNitrogen - entities: - - uid: 9449 - components: - - type: Transform - pos: -52.5,1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: GasMinerOxygen - entities: - - uid: 9451 - components: - - type: Transform - pos: -52.5,3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: GasMinerWaterVapor - entities: - - uid: 9454 - components: - - type: Transform - pos: -52.5,7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: GasMixerFlipped - entities: - - uid: 8550 - components: - - type: Transform - pos: -45.5,5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 8552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,2.5 - parent: 4812 - - type: GasMixer - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9236 - components: - - type: Transform - pos: -45.5,8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9237 - components: - - type: Transform - pos: -45.5,10.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9247 - components: - - type: Transform - pos: -45.5,6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9261 - components: - - type: Transform - pos: -45.5,12.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: GasOutletInjector - entities: - - uid: 4002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 4445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 4446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 4478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 4479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 4497 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,9.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 4826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: GasPassiveGate - entities: - - uid: 5801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-33.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasPassiveVent - entities: - - uid: 862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 3817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,46.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 5596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-37.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9168 - components: - - type: Transform - pos: -49.5,-0.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,9.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9264 - components: - - type: Transform - pos: -47.5,14.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9494 - components: - - type: Transform - pos: -45.5,16.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9495 - components: - - type: Transform - pos: -43.5,16.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: GasPipeBend - entities: - - uid: 560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 563 - components: - - type: Transform - pos: 11.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 709 - components: - - type: Transform - pos: 12.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 856 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 4812 - - uid: 876 - components: - - type: Transform - pos: -8.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1508 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1684 - components: - - type: Transform - pos: -21.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2009 - components: - - type: Transform - pos: 3.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2055 - components: - - type: Transform - pos: 2.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2967 - components: - - type: Transform - pos: 24.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3746 - components: - - type: Transform - pos: -32.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,46.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,50.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,50.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3836 - components: - - type: Transform - pos: 9.5,50.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,50.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,45.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4204 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4213 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4227 - components: - - type: Transform - pos: 25.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5725 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5804 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-26.5 - parent: 4812 - - uid: 6783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-36.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8561 - components: - - type: Transform - pos: -18.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8953 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-33.5 - parent: 4812 - - uid: 9004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-35.5 - parent: 4812 - - uid: 9038 - components: - - type: Transform - pos: -33.5,-36.5 - parent: 4812 - - uid: 9117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,6.5 - parent: 4812 - - uid: 9120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,8.5 - parent: 4812 - - uid: 9121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,12.5 - parent: 4812 - - uid: 9125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,10.5 - parent: 4812 - - uid: 9128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,2.5 - parent: 4812 - - uid: 9133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,4.5 - parent: 4812 - - uid: 9155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,5.5 - parent: 4812 - - uid: 9535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPipeFourway - entities: - - uid: 402 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 428 - components: - - type: Transform - pos: -3.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 431 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 445 - components: - - type: Transform - pos: -5.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 566 - components: - - type: Transform - pos: -1.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 583 - components: - - type: Transform - pos: -1.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 664 - components: - - type: Transform - pos: -25.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2945 - components: - - type: Transform - pos: 19.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2960 - components: - - type: Transform - pos: 15.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2978 - components: - - type: Transform - pos: 15.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3804 - components: - - type: Transform - pos: 11.5,46.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4156 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5086 - components: - - type: Transform - pos: 0.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5111 - components: - - type: Transform - pos: -6.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5189 - components: - - type: Transform - pos: -10.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5565 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7276 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8764 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12010 - components: - - type: Transform - pos: -49.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12011 - components: - - type: Transform - pos: -48.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPipeStraight - entities: - - uid: 251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 368 - components: - - type: Transform - pos: -3.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 369 - components: - - type: Transform - pos: -3.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 370 - components: - - type: Transform - pos: -3.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 371 - components: - - type: Transform - pos: -3.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 372 - components: - - type: Transform - pos: -3.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 374 - components: - - type: Transform - pos: -3.5,12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 375 - components: - - type: Transform - pos: -3.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 377 - components: - - type: Transform - pos: -3.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 378 - components: - - type: Transform - pos: -3.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 379 - components: - - type: Transform - pos: -3.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 380 - components: - - type: Transform - pos: -3.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 381 - components: - - type: Transform - pos: -3.5,5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 382 - components: - - type: Transform - pos: -3.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 383 - components: - - type: Transform - pos: -3.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 385 - components: - - type: Transform - pos: -3.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 386 - components: - - type: Transform - pos: -3.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 388 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 389 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 390 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 391 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 392 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 393 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 395 - components: - - type: Transform - pos: -3.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 396 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 397 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 398 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 399 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 400 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 401 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 403 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 404 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 405 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 406 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 408 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 409 - components: - - type: Transform - pos: -1.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 410 - components: - - type: Transform - pos: -1.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 411 - components: - - type: Transform - pos: -1.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 412 - components: - - type: Transform - pos: -1.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 414 - components: - - type: Transform - pos: -1.5,5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 415 - components: - - type: Transform - pos: -1.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 416 - components: - - type: Transform - pos: -1.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 419 - components: - - type: Transform - pos: -1.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 420 - components: - - type: Transform - pos: -1.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 421 - components: - - type: Transform - pos: -1.5,12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 422 - components: - - type: Transform - pos: -1.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 424 - components: - - type: Transform - pos: -1.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 425 - components: - - type: Transform - pos: -1.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 426 - components: - - type: Transform - pos: -1.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 427 - components: - - type: Transform - pos: -1.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 465 - components: - - type: Transform - pos: -25.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 466 - components: - - type: Transform - pos: -25.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 467 - components: - - type: Transform - pos: -25.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 468 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 469 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 470 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 472 - components: - - type: Transform - pos: -25.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 474 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 475 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 476 - components: - - type: Transform - pos: -25.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 478 - components: - - type: Transform - pos: -25.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 479 - components: - - type: Transform - pos: -25.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 480 - components: - - type: Transform - pos: -25.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 481 - components: - - type: Transform - pos: -25.5,5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 482 - components: - - type: Transform - pos: -25.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 497 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 528 - components: - - type: Transform - pos: 11.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 529 - components: - - type: Transform - pos: 11.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 530 - components: - - type: Transform - pos: 11.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 531 - components: - - type: Transform - pos: 11.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 533 - components: - - type: Transform - pos: 11.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 534 - components: - - type: Transform - pos: 11.5,12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 535 - components: - - type: Transform - pos: 11.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 536 - components: - - type: Transform - pos: 11.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 537 - components: - - type: Transform - pos: 11.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 538 - components: - - type: Transform - pos: 11.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 541 - components: - - type: Transform - pos: 11.5,5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 542 - components: - - type: Transform - pos: 11.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 543 - components: - - type: Transform - pos: 11.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 544 - components: - - type: Transform - pos: 11.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 545 - components: - - type: Transform - pos: 11.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 546 - components: - - type: Transform - pos: 11.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 547 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 549 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 551 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 552 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 553 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 554 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 555 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 556 - components: - - type: Transform - pos: 11.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 557 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 567 - components: - - type: Transform - pos: -3.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 602 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 652 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 653 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 654 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 655 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 656 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 657 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 658 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 659 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 660 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 661 - components: - - type: Transform - pos: -26.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 663 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 665 - components: - - type: Transform - pos: -26.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 667 - components: - - type: Transform - pos: -26.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 668 - components: - - type: Transform - pos: -26.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 669 - components: - - type: Transform - pos: -26.5,5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 670 - components: - - type: Transform - pos: -26.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 671 - components: - - type: Transform - pos: -26.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 687 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 804 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 836 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 837 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1509 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1510 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1808 - components: - - type: Transform - pos: 6.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1809 - components: - - type: Transform - pos: 6.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1810 - components: - - type: Transform - pos: 8.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1811 - components: - - type: Transform - pos: 8.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1812 - components: - - type: Transform - pos: 8.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1815 - components: - - type: Transform - pos: -0.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1847 - components: - - type: Transform - pos: -1.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1848 - components: - - type: Transform - pos: -1.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1849 - components: - - type: Transform - pos: -1.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1850 - components: - - type: Transform - pos: -3.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1851 - components: - - type: Transform - pos: -3.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1988 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,29.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,29.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2436 - components: - - type: Transform - pos: -12.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2437 - components: - - type: Transform - pos: -12.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2438 - components: - - type: Transform - pos: -12.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2950 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2985 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2988 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2998 - components: - - type: Transform - pos: 16.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2999 - components: - - type: Transform - pos: 16.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3000 - components: - - type: Transform - pos: 16.5,28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3025 - components: - - type: Transform - pos: 15.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3743 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,46.5 - parent: 4812 - - uid: 3797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,46.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,46.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,46.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,46.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,46.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3805 - components: - - type: Transform - pos: 11.5,47.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3806 - components: - - type: Transform - pos: 11.5,48.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3807 - components: - - type: Transform - pos: 11.5,49.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,45.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,45.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,44.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,44.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,44.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,44.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,44.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,46.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,47.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,48.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,49.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,45.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,45.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,45.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,45.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4009 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4187 - components: - - type: Transform - pos: 30.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4188 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4189 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4191 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4192 - components: - - type: Transform - pos: 30.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4207 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4208 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4228 - components: - - type: Transform - pos: 25.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4648 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4842 - components: - - type: Transform - pos: -16.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4877 - components: - - type: Transform - pos: -19.5,-14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4962 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4964 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4966 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4993 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5020 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5022 - components: - - type: Transform - pos: -24.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5023 - components: - - type: Transform - pos: -26.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5077 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5078 - components: - - type: Transform - pos: -6.5,-14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5079 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5080 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5081 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5082 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5083 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5084 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5085 - components: - - type: Transform - pos: -6.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5087 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5088 - components: - - type: Transform - pos: -6.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5089 - components: - - type: Transform - pos: -6.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5090 - components: - - type: Transform - pos: -6.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5091 - components: - - type: Transform - pos: -6.5,-27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5092 - components: - - type: Transform - pos: -6.5,-28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5093 - components: - - type: Transform - pos: -6.5,-29.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5094 - components: - - type: Transform - pos: -6.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5095 - components: - - type: Transform - pos: -6.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5097 - components: - - type: Transform - pos: -6.5,-33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5098 - components: - - type: Transform - pos: -6.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5099 - components: - - type: Transform - pos: 1.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5100 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5102 - components: - - type: Transform - pos: 1.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5103 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5104 - components: - - type: Transform - pos: 1.5,-29.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5105 - components: - - type: Transform - pos: 1.5,-28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5106 - components: - - type: Transform - pos: 1.5,-27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5107 - components: - - type: Transform - pos: 1.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5108 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5109 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5110 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5112 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5114 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5115 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5116 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5117 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5118 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5119 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5120 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5130 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5131 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5132 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5133 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5134 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5135 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5136 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5137 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5139 - components: - - type: Transform - pos: -5.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5140 - components: - - type: Transform - pos: -5.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5141 - components: - - type: Transform - pos: -5.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5143 - components: - - type: Transform - pos: -5.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5144 - components: - - type: Transform - pos: -5.5,-27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5145 - components: - - type: Transform - pos: -5.5,-28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5146 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5147 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5149 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5150 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5151 - components: - - type: Transform - pos: 0.5,-33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5152 - components: - - type: Transform - pos: 0.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5154 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5155 - components: - - type: Transform - pos: 0.5,-29.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5156 - components: - - type: Transform - pos: 0.5,-28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5157 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5158 - components: - - type: Transform - pos: 0.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5159 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5160 - components: - - type: Transform - pos: 0.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5161 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5162 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5164 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5165 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5166 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5167 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5168 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5169 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5170 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5171 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5172 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5190 - components: - - type: Transform - pos: -10.5,-36.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5191 - components: - - type: Transform - pos: -10.5,-37.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5192 - components: - - type: Transform - pos: -10.5,-38.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5193 - components: - - type: Transform - pos: -10.5,-39.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5194 - components: - - type: Transform - pos: -10.5,-40.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5196 - components: - - type: Transform - pos: -10.5,-42.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5197 - components: - - type: Transform - pos: -10.5,-43.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5198 - components: - - type: Transform - pos: -10.5,-44.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5199 - components: - - type: Transform - pos: -10.5,-45.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5200 - components: - - type: Transform - pos: -10.5,-46.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5201 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5202 - components: - - type: Transform - pos: -10.5,-48.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5203 - components: - - type: Transform - pos: -10.5,-49.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5204 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5205 - components: - - type: Transform - pos: -11.5,-36.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5206 - components: - - type: Transform - pos: -11.5,-37.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5207 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5208 - components: - - type: Transform - pos: -11.5,-39.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5209 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5210 - components: - - type: Transform - pos: -11.5,-41.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5212 - components: - - type: Transform - pos: -11.5,-43.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5213 - components: - - type: Transform - pos: -11.5,-44.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5214 - components: - - type: Transform - pos: -11.5,-45.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5215 - components: - - type: Transform - pos: -11.5,-46.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5216 - components: - - type: Transform - pos: -11.5,-47.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5217 - components: - - type: Transform - pos: -11.5,-48.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5218 - components: - - type: Transform - pos: -11.5,-49.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5219 - components: - - type: Transform - pos: -11.5,-50.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5220 - components: - - type: Transform - pos: -10.5,-50.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5221 - components: - - type: Transform - pos: -10.5,-51.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 4812 - - uid: 5586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 4812 - - uid: 5587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-30.5 - parent: 4812 - - uid: 5588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-28.5 - parent: 4812 - - uid: 5589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-28.5 - parent: 4812 - - uid: 5590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-30.5 - parent: 4812 - - uid: 5628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5636 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5637 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5638 - components: - - type: Transform - pos: 9.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5639 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5640 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5641 - components: - - type: Transform - pos: 9.5,-13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5688 - components: - - type: Transform - pos: 4.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5689 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5690 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5691 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5692 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5701 - components: - - type: Transform - pos: 3.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5702 - components: - - type: Transform - pos: 8.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5703 - components: - - type: Transform - pos: 8.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5704 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5705 - components: - - type: Transform - pos: 8.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5713 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5722 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5749 - components: - - type: Transform - pos: 21.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5750 - components: - - type: Transform - pos: 21.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5751 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6468 - components: - - type: Transform - pos: -2.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6469 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6470 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6548 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6550 - components: - - type: Transform - pos: -26.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6558 - components: - - type: Transform - pos: -17.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6571 - components: - - type: Transform - pos: -29.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6623 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6631 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6632 - components: - - type: Transform - pos: -30.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6691 - components: - - type: Transform - pos: -19.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-36.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-36.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-36.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-36.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-36.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6837 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-36.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6843 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6896 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6897 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7059 - components: - - type: Transform - pos: -19.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7078 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7079 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7080 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7081 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7082 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7083 - components: - - type: Transform - pos: -25.5,-13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7084 - components: - - type: Transform - pos: -25.5,-14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7085 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7086 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7190 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7233 - components: - - type: Transform - pos: -19.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7262 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7324 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7326 - components: - - type: Transform - pos: -8.5,-23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7327 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7329 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,29.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,28.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,29.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7898 - components: - - type: Transform - pos: -35.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7899 - components: - - type: Transform - pos: -34.5,12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7900 - components: - - type: Transform - pos: -35.5,12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7901 - components: - - type: Transform - pos: -35.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7902 - components: - - type: Transform - pos: -35.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7903 - components: - - type: Transform - pos: -34.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7904 - components: - - type: Transform - pos: -34.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8225 - components: - - type: Transform - pos: -22.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8226 - components: - - type: Transform - pos: -22.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8228 - components: - - type: Transform - pos: -22.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8229 - components: - - type: Transform - pos: -22.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8230 - components: - - type: Transform - pos: -22.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8231 - components: - - type: Transform - pos: -22.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8232 - components: - - type: Transform - pos: -23.5,21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8233 - components: - - type: Transform - pos: -23.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8234 - components: - - type: Transform - pos: -23.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8235 - components: - - type: Transform - pos: -23.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8237 - components: - - type: Transform - pos: -23.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8312 - components: - - type: Transform - pos: -13.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8313 - components: - - type: Transform - pos: -13.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8314 - components: - - type: Transform - pos: -13.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8315 - components: - - type: Transform - pos: -11.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8316 - components: - - type: Transform - pos: -11.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8551 - components: - - type: Transform - pos: -45.5,11.5 - parent: 4812 - - uid: 8553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8769 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8771 - components: - - type: Transform - pos: -30.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8774 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8775 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8776 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8780 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8781 - components: - - type: Transform - pos: -33.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8782 - components: - - type: Transform - pos: -33.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8785 - components: - - type: Transform - pos: -33.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-36.5 - parent: 4812 - - uid: 8946 - components: - - type: Transform - pos: -10.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8950 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8951 - components: - - type: Transform - pos: -10.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8952 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-30.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-33.5 - parent: 4812 - - uid: 8981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-33.5 - parent: 4812 - - uid: 8983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-33.5 - parent: 4812 - - uid: 8985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-33.5 - parent: 4812 - - uid: 8986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-33.5 - parent: 4812 - - uid: 8988 - components: - - type: Transform - pos: -36.5,-34.5 - parent: 4812 - - uid: 8989 - components: - - type: Transform - pos: -36.5,-35.5 - parent: 4812 - - uid: 8995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 4812 - - uid: 8996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-34.5 - parent: 4812 - - uid: 8997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 4812 - - uid: 9000 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 4812 - - uid: 9001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-35.5 - parent: 4812 - - uid: 9002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-35.5 - parent: 4812 - - uid: 9003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-36.5 - parent: 4812 - - uid: 9036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,11.5 - parent: 4812 - - uid: 9075 - components: - - type: Transform - pos: -45.5,13.5 - parent: 4812 - - uid: 9116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,12.5 - parent: 4812 - - uid: 9118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,12.5 - parent: 4812 - - uid: 9123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,12.5 - parent: 4812 - - uid: 9127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,12.5 - parent: 4812 - - uid: 9129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,12.5 - parent: 4812 - - uid: 9135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,10.5 - parent: 4812 - - uid: 9136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,10.5 - parent: 4812 - - uid: 9137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,10.5 - parent: 4812 - - uid: 9138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,10.5 - parent: 4812 - - uid: 9146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,1.5 - parent: 4812 - - uid: 9177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,1.5 - parent: 4812 - - uid: 9178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,3.5 - parent: 4812 - - uid: 9179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,1.5 - parent: 4812 - - uid: 9180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,3.5 - parent: 4812 - - uid: 9181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,5.5 - parent: 4812 - - uid: 9182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,3.5 - parent: 4812 - - uid: 9183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,5.5 - parent: 4812 - - uid: 9184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,7.5 - parent: 4812 - - uid: 9185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,5.5 - parent: 4812 - - uid: 9186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,7.5 - parent: 4812 - - uid: 9187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,9.5 - parent: 4812 - - uid: 9188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,7.5 - parent: 4812 - - uid: 9189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,9.5 - parent: 4812 - - uid: 9190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,11.5 - parent: 4812 - - uid: 9191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,9.5 - parent: 4812 - - uid: 9192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,11.5 - parent: 4812 - - uid: 9205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,10.5 - parent: 4812 - - uid: 9207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,8.5 - parent: 4812 - - uid: 9208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,8.5 - parent: 4812 - - uid: 9209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,8.5 - parent: 4812 - - uid: 9210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,8.5 - parent: 4812 - - uid: 9211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,8.5 - parent: 4812 - - uid: 9213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,6.5 - parent: 4812 - - uid: 9214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,6.5 - parent: 4812 - - uid: 9215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,6.5 - parent: 4812 - - uid: 9216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,6.5 - parent: 4812 - - uid: 9217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,6.5 - parent: 4812 - - uid: 9219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,4.5 - parent: 4812 - - uid: 9220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,4.5 - parent: 4812 - - uid: 9221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,4.5 - parent: 4812 - - uid: 9222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,4.5 - parent: 4812 - - uid: 9223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,4.5 - parent: 4812 - - uid: 9225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,2.5 - parent: 4812 - - uid: 9226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,2.5 - parent: 4812 - - uid: 9227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,2.5 - parent: 4812 - - uid: 9228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,2.5 - parent: 4812 - - uid: 9229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,2.5 - parent: 4812 - - uid: 9231 - components: - - type: Transform - pos: -47.5,2.5 - parent: 4812 - - uid: 9232 - components: - - type: Transform - pos: -47.5,4.5 - parent: 4812 - - uid: 9233 - components: - - type: Transform - pos: -47.5,6.5 - parent: 4812 - - uid: 9234 - components: - - type: Transform - pos: -47.5,8.5 - parent: 4812 - - uid: 9235 - components: - - type: Transform - pos: -47.5,10.5 - parent: 4812 - - uid: 9238 - components: - - type: Transform - pos: -45.5,7.5 - parent: 4812 - - uid: 9241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,6.5 - parent: 4812 - - uid: 9246 - components: - - type: Transform - pos: -45.5,9.5 - parent: 4812 - - uid: 9249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,8.5 - parent: 4812 - - uid: 9250 - components: - - type: Transform - pos: -46.5,3.5 - parent: 4812 - - uid: 9252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,3.5 - parent: 4812 - - uid: 9253 - components: - - type: Transform - pos: -46.5,4.5 - parent: 4812 - - uid: 9255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,4.5 - parent: 4812 - - uid: 9257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,12.5 - parent: 4812 - - uid: 9259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,10.5 - parent: 4812 - - uid: 9262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,12.5 - parent: 4812 - - uid: 9263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,13.5 - parent: 4812 - - uid: 9489 - components: - - type: Transform - pos: -45.5,14.5 - parent: 4812 - - uid: 9490 - components: - - type: Transform - pos: -45.5,15.5 - parent: 4812 - - uid: 9491 - components: - - type: Transform - pos: -43.5,14.5 - parent: 4812 - - uid: 9492 - components: - - type: Transform - pos: -43.5,15.5 - parent: 4812 - - uid: 9493 - components: - - type: Transform - pos: -43.5,13.5 - parent: 4812 - - uid: 9514 - components: - - type: Transform - pos: -43.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9515 - components: - - type: Transform - pos: -43.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9516 - components: - - type: Transform - pos: -43.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9539 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#03FDC3FF' - - uid: 9545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11964 - components: - - type: Transform - pos: -36.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11965 - components: - - type: Transform - pos: -36.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11966 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11967 - components: - - type: Transform - pos: -36.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11968 - components: - - type: Transform - pos: -36.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11969 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11970 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11971 - components: - - type: Transform - pos: -36.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11993 - components: - - type: Transform - pos: -45.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11994 - components: - - type: Transform - pos: -45.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11995 - components: - - type: Transform - pos: -45.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11996 - components: - - type: Transform - pos: -44.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11997 - components: - - type: Transform - pos: -44.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11998 - components: - - type: Transform - pos: -44.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12019 - components: - - type: Transform - pos: -49.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12020 - components: - - type: Transform - pos: -49.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12021 - components: - - type: Transform - pos: -48.5,-10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12022 - components: - - type: Transform - pos: -48.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12031 - components: - - type: Transform - pos: -44.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasPipeTJunction - entities: - - uid: 373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 384 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 441 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 464 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 490 - components: - - type: Transform - pos: -25.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 510 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 513 - components: - - type: Transform - pos: -0.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 523 - components: - - type: Transform - pos: 8.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 527 - components: - - type: Transform - pos: -13.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 570 - components: - - type: Transform - pos: -4.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 579 - components: - - type: Transform - pos: 6.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 625 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 632 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 642 - components: - - type: Transform - pos: -14.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 645 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 651 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 679 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 704 - components: - - type: Transform - pos: -11.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 820 - components: - - type: Transform - pos: -2.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 843 - components: - - type: Transform - pos: 3.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 4812 - - uid: 870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,29.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2012 - components: - - type: Transform - pos: -5.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2018 - components: - - type: Transform - pos: 0.5,32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2035 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2048 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,29.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,23.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2994 - components: - - type: Transform - pos: 19.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3011 - components: - - type: Transform - pos: 19.5,26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3406 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3741 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3783 - components: - - type: Transform - pos: -3.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3798 - components: - - type: Transform - pos: 13.5,46.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,44.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,44.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,45.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3832 - components: - - type: Transform - pos: 5.5,45.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4003 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4004 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-3.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4164 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4958 - components: - - type: Transform - pos: -17.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-27.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5006 - components: - - type: Transform - pos: -18.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5012 - components: - - type: Transform - pos: -12.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5018 - components: - - type: Transform - pos: -8.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5019 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5051 - components: - - type: Transform - pos: -14.5,-26.5 - parent: 4812 - - uid: 5096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5113 - components: - - type: Transform - pos: 9.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-32.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5163 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5188 - components: - - type: Transform - pos: -11.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-42.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-41.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 4812 - - uid: 5629 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5630 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5665 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5687 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5757 - components: - - type: Transform - pos: 27.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-26.5 - parent: 4812 - - uid: 6785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-26.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6818 - components: - - type: Transform - pos: -22.5,-36.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-34.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6834 - components: - - type: Transform - pos: -23.5,-35.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 4812 - - uid: 7061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-27.5 - parent: 4812 - - uid: 7255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 4812 - - uid: 7308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-21.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,14.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,13.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,16.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,20.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,17.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,19.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,24.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,18.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7895 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,10.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,22.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,25.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,4.5 - parent: 4812 - - uid: 8757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8786 - components: - - type: Transform - pos: -36.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8982 - components: - - type: Transform - pos: -34.5,-33.5 - parent: 4812 - - uid: 8984 - components: - - type: Transform - pos: -36.5,-33.5 - parent: 4812 - - uid: 8990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-36.5 - parent: 4812 - - uid: 8998 - components: - - type: Transform - pos: -37.5,-34.5 - parent: 4812 - - uid: 8999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-35.5 - parent: 4812 - - uid: 9130 - components: - - type: Transform - pos: -38.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9152 - components: - - type: Transform - pos: -33.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,2.5 - parent: 4812 - - uid: 9536 - components: - - type: Transform - pos: -42.5,8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11988 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-7.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-12.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-11.5 - parent: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPort - entities: - - uid: 3443 - components: - - type: Transform - pos: -29.5,2.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 3467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,44.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 5594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-30.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 8839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-37.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#947507FF' -- proto: GasPressurePump - entities: - - uid: 3795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,46.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4929 - components: - - type: MetaData - name: Distro Pump - - type: Transform - pos: -12.5,-25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 5584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 8773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,2.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,2.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,10.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,12.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9513 - components: - - type: Transform - pos: -43.5,12.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9543 - components: - - type: Transform - pos: -42.5,4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasThermoMachineFreezer - entities: - - uid: 859 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 5803 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 7245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9551 - components: - - type: Transform - pos: -41.5,12.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: GasThermoMachineHeater - entities: - - uid: 9552 - components: - - type: Transform - pos: -41.5,11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: GasValve - entities: - - uid: 5591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-30.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 5592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-36.5 - parent: 4812 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-0.5 - parent: 4812 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,5.5 - parent: 4812 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#947507FF' -- proto: GasVentPump - entities: - - uid: 559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 835 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 848 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 849 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1511 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1685 - components: - - type: Transform - pos: -21.5,3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,19.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,16.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,18.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1852 - components: - - type: Transform - pos: -3.5,23.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2072 - components: - - type: Transform - pos: 8.5,29.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,23.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2430 - components: - - type: Transform - pos: -13.5,28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,29.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,29.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2445 - components: - - type: Transform - pos: -5.5,34.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2446 - components: - - type: Transform - pos: 0.5,34.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,22.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,22.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,27.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,14.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2983 - components: - - type: Transform - pos: 15.5,29.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,18.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,20.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3781 - components: - - type: Transform - pos: -1.5,-34.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,45.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3838 - components: - - type: Transform - pos: 8.5,51.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,45.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,43.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4196 - components: - - type: Transform - pos: 30.5,3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,2.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,0.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-18.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-52.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-41.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5697 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-24.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-27.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5763 - components: - - type: Transform - pos: 27.5,-24.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5764 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 6416 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6461 - components: - - type: Transform - pos: -1.5,-31.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6471 - components: - - type: Transform - pos: -2.5,-28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6554 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-27.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-35.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-36.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6842 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-26.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7379 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-20.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7380 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7856 - components: - - type: Transform - pos: -26.5,30.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,23.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,20.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,10.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7906 - components: - - type: Transform - pos: -35.5,15.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,15.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,12.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,18.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8238 - components: - - type: Transform - pos: -23.5,27.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,16.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,16.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8562 - components: - - type: Transform - pos: -18.5,11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-34.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 8992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-37.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 8993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-34.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 10757 - components: - - type: Transform - pos: -38.5,3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-12.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-13.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-12.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12030 - components: - - type: Transform - pos: -49.5,-9.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12032 - components: - - type: Transform - pos: -44.5,-6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,2.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12037 - components: - - type: Transform - pos: -16.5,-11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,0.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasVentScrubber - entities: - - uid: 711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,9.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 858 - components: - - type: Transform - pos: -10.5,-8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,0.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,16.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,18.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1853 - components: - - type: Transform - pos: -1.5,23.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2073 - components: - - type: Transform - pos: 6.5,29.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,24.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,23.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2440 - components: - - type: Transform - pos: -12.5,28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,26.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,31.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,31.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,14.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3001 - components: - - type: Transform - pos: 16.5,29.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3782 - components: - - type: Transform - pos: 10.5,20.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,44.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,43.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3815 - components: - - type: Transform - pos: 12.5,51.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,45.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4226 - components: - - type: Transform - pos: 24.5,3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4381 - components: - - type: Transform - pos: 17.5,-2.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4875 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-16.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5025 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-51.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-42.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-24.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5700 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-26.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-27.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5735 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-27.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-26.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-26.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-12.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-35.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6687 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-32.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-36.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6839 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-37.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-26.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-26.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-20.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7382 - components: - - type: Transform - pos: -11.5,-17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7858 - components: - - type: Transform - pos: -30.5,30.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,16.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,19.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7908 - components: - - type: Transform - pos: -34.5,15.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,15.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,18.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,12.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8239 - components: - - type: Transform - pos: -22.5,27.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,22.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8307 - components: - - type: Transform - pos: -21.5,20.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,16.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-34.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-37.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-34.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 10758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12023 - components: - - type: Transform - pos: -48.5,-9.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12025 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-13.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12033 - components: - - type: Transform - pos: -40.5,-6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12036 - components: - - type: Transform - pos: -30.5,2.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12040 - components: - - type: Transform - pos: -24.5,8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GeneratorBasic15kW - entities: - - uid: 1729 - components: - - type: Transform - pos: 14.5,44.5 - parent: 4812 -- proto: GeneratorRTG - entities: - - uid: 10946 - components: - - type: Transform - pos: -40.5,22.5 - parent: 4812 -- proto: Girder - entities: - - uid: 4142 - components: - - type: Transform - pos: 21.5,0.5 - parent: 4812 - - uid: 4143 - components: - - type: Transform - pos: 16.5,3.5 - parent: 4812 - - uid: 6634 - components: - - type: Transform - pos: -43.5,-30.5 - parent: 4812 - - uid: 7260 - components: - - type: Transform - pos: -44.5,-26.5 - parent: 4812 - - uid: 8872 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 4812 - - uid: 9991 - components: - - type: Transform - pos: -35.5,-21.5 - parent: 4812 - - uid: 11065 - components: - - type: Transform - pos: 14.5,-35.5 - parent: 4812 - - uid: 11106 - components: - - type: Transform - pos: 11.5,-31.5 - parent: 4812 - - uid: 11107 - components: - - type: Transform - pos: 10.5,-31.5 - parent: 4812 - - uid: 11685 - components: - - type: Transform - pos: 27.5,-38.5 - parent: 4812 - - uid: 11687 - components: - - type: Transform - pos: 26.5,-42.5 - parent: 4812 - - uid: 11692 - components: - - type: Transform - pos: 30.5,-41.5 - parent: 4812 - - uid: 11847 - components: - - type: Transform - pos: -13.5,11.5 - parent: 4812 -- proto: GravityGenerator - entities: - - uid: 9889 - components: - - type: Transform - pos: -53.5,-9.5 - parent: 4812 -- proto: Grille - entities: - - uid: 748 - components: - - type: Transform - pos: 9.5,18.5 - parent: 4812 - - uid: 749 - components: - - type: Transform - pos: 7.5,18.5 - parent: 4812 - - uid: 750 - components: - - type: Transform - pos: 5.5,18.5 - parent: 4812 - - uid: 751 - components: - - type: Transform - pos: 3.5,18.5 - parent: 4812 - - uid: 752 - components: - - type: Transform - pos: 2.5,18.5 - parent: 4812 - - uid: 753 - components: - - type: Transform - pos: 4.5,17.5 - parent: 4812 - - uid: 754 - components: - - type: Transform - pos: 4.5,16.5 - parent: 4812 - - uid: 755 - components: - - type: Transform - pos: 3.5,15.5 - parent: 4812 - - uid: 756 - components: - - type: Transform - pos: 2.5,15.5 - parent: 4812 - - uid: 757 - components: - - type: Transform - pos: 1.5,16.5 - parent: 4812 - - uid: 758 - components: - - type: Transform - pos: 1.5,17.5 - parent: 4812 - - uid: 759 - components: - - type: Transform - pos: -0.5,12.5 - parent: 4812 - - uid: 760 - components: - - type: Transform - pos: -4.5,12.5 - parent: 4812 - - uid: 761 - components: - - type: Transform - pos: -4.5,15.5 - parent: 4812 - - uid: 762 - components: - - type: Transform - pos: -0.5,15.5 - parent: 4812 - - uid: 763 - components: - - type: Transform - pos: -7.5,15.5 - parent: 4812 - - uid: 764 - components: - - type: Transform - pos: -8.5,15.5 - parent: 4812 - - uid: 765 - components: - - type: Transform - pos: -9.5,16.5 - parent: 4812 - - uid: 766 - components: - - type: Transform - pos: -9.5,17.5 - parent: 4812 - - uid: 767 - components: - - type: Transform - pos: -8.5,18.5 - parent: 4812 - - uid: 768 - components: - - type: Transform - pos: -7.5,18.5 - parent: 4812 - - uid: 769 - components: - - type: Transform - pos: -6.5,17.5 - parent: 4812 - - uid: 770 - components: - - type: Transform - pos: -6.5,16.5 - parent: 4812 - - uid: 774 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 4812 - - uid: 775 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 4812 - - uid: 776 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 4812 - - uid: 777 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 4812 - - uid: 778 - components: - - type: Transform - pos: -9.5,-10.5 - parent: 4812 - - uid: 779 - components: - - type: Transform - pos: -12.5,-10.5 - parent: 4812 - - uid: 780 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 4812 - - uid: 781 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 4812 - - uid: 788 - components: - - type: Transform - pos: 2.5,1.5 - parent: 4812 - - uid: 907 - components: - - type: Transform - pos: -18.5,18.5 - parent: 4812 - - uid: 908 - components: - - type: Transform - pos: -19.5,18.5 - parent: 4812 - - uid: 909 - components: - - type: Transform - pos: -21.5,14.5 - parent: 4812 - - uid: 910 - components: - - type: Transform - pos: -21.5,11.5 - parent: 4812 - - uid: 911 - components: - - type: Transform - pos: -21.5,8.5 - parent: 4812 - - uid: 912 - components: - - type: Transform - pos: -24.5,3.5 - parent: 4812 - - uid: 913 - components: - - type: Transform - pos: -24.5,4.5 - parent: 4812 - - uid: 914 - components: - - type: Transform - pos: -24.5,-0.5 - parent: 4812 - - uid: 915 - components: - - type: Transform - pos: -24.5,0.5 - parent: 4812 - - uid: 1964 - components: - - type: Transform - pos: -10.5,26.5 - parent: 4812 - - uid: 1966 - components: - - type: Transform - pos: 7.5,27.5 - parent: 4812 - - uid: 2199 - components: - - type: Transform - pos: -6.5,30.5 - parent: 4812 - - uid: 2202 - components: - - type: Transform - pos: -6.5,28.5 - parent: 4812 - - uid: 2205 - components: - - type: Transform - pos: -4.5,27.5 - parent: 4812 - - uid: 2206 - components: - - type: Transform - pos: -2.5,27.5 - parent: 4812 - - uid: 2207 - components: - - type: Transform - pos: -0.5,27.5 - parent: 4812 - - uid: 2210 - components: - - type: Transform - pos: -9.5,32.5 - parent: 4812 - - uid: 2211 - components: - - type: Transform - pos: -9.5,34.5 - parent: 4812 - - uid: 2212 - components: - - type: Transform - pos: -9.5,35.5 - parent: 4812 - - uid: 2213 - components: - - type: Transform - pos: -8.5,35.5 - parent: 4812 - - uid: 2214 - components: - - type: Transform - pos: -6.5,35.5 - parent: 4812 - - uid: 2215 - components: - - type: Transform - pos: -6.5,36.5 - parent: 4812 - - uid: 2216 - components: - - type: Transform - pos: -5.5,36.5 - parent: 4812 - - uid: 2217 - components: - - type: Transform - pos: -3.5,36.5 - parent: 4812 - - uid: 2218 - components: - - type: Transform - pos: -2.5,36.5 - parent: 4812 - - uid: 2219 - components: - - type: Transform - pos: -1.5,36.5 - parent: 4812 - - uid: 2220 - components: - - type: Transform - pos: 0.5,36.5 - parent: 4812 - - uid: 2221 - components: - - type: Transform - pos: 1.5,36.5 - parent: 4812 - - uid: 2222 - components: - - type: Transform - pos: 1.5,35.5 - parent: 4812 - - uid: 2223 - components: - - type: Transform - pos: 3.5,35.5 - parent: 4812 - - uid: 2224 - components: - - type: Transform - pos: 4.5,35.5 - parent: 4812 - - uid: 2225 - components: - - type: Transform - pos: 4.5,34.5 - parent: 4812 - - uid: 2226 - components: - - type: Transform - pos: 6.5,33.5 - parent: 4812 - - uid: 2227 - components: - - type: Transform - pos: 6.5,23.5 - parent: 4812 - - uid: 2228 - components: - - type: Transform - pos: 8.5,23.5 - parent: 4812 - - uid: 2232 - components: - - type: Transform - pos: 4.5,24.5 - parent: 4812 - - uid: 2233 - components: - - type: Transform - pos: 4.5,26.5 - parent: 4812 - - uid: 2237 - components: - - type: Transform - pos: -9.5,22.5 - parent: 4812 - - uid: 2238 - components: - - type: Transform - pos: -9.5,24.5 - parent: 4812 - - uid: 2239 - components: - - type: Transform - pos: 8.5,27.5 - parent: 4812 - - uid: 2240 - components: - - type: Transform - pos: 5.5,27.5 - parent: 4812 - - uid: 2242 - components: - - type: Transform - pos: -12.5,30.5 - parent: 4812 - - uid: 2243 - components: - - type: Transform - pos: -11.5,30.5 - parent: 4812 - - uid: 2464 - components: - - type: Transform - pos: -12.5,26.5 - parent: 4812 - - uid: 2465 - components: - - type: Transform - pos: -13.5,26.5 - parent: 4812 - - uid: 2669 - components: - - type: Transform - pos: 1.5,30.5 - parent: 4812 - - uid: 2670 - components: - - type: Transform - pos: 1.5,28.5 - parent: 4812 - - uid: 2770 - components: - - type: Transform - pos: 18.5,31.5 - parent: 4812 - - uid: 2818 - components: - - type: Transform - pos: 16.5,36.5 - parent: 4812 - - uid: 2862 - components: - - type: Transform - pos: 16.5,28.5 - parent: 4812 - - uid: 2871 - components: - - type: Transform - pos: 19.5,22.5 - parent: 4812 - - uid: 2872 - components: - - type: Transform - pos: 21.5,21.5 - parent: 4812 - - uid: 2873 - components: - - type: Transform - pos: 21.5,19.5 - parent: 4812 - - uid: 2874 - components: - - type: Transform - pos: 14.5,22.5 - parent: 4812 - - uid: 2875 - components: - - type: Transform - pos: 13.5,17.5 - parent: 4812 - - uid: 2876 - components: - - type: Transform - pos: 13.5,19.5 - parent: 4812 - - uid: 2877 - components: - - type: Transform - pos: 13.5,13.5 - parent: 4812 - - uid: 2878 - components: - - type: Transform - pos: 14.5,16.5 - parent: 4812 - - uid: 2879 - components: - - type: Transform - pos: 16.5,16.5 - parent: 4812 - - uid: 2880 - components: - - type: Transform - pos: 18.5,16.5 - parent: 4812 - - uid: 2881 - components: - - type: Transform - pos: 20.5,16.5 - parent: 4812 - - uid: 2907 - components: - - type: Transform - pos: 25.5,13.5 - parent: 4812 - - uid: 2908 - components: - - type: Transform - pos: 25.5,15.5 - parent: 4812 - - uid: 2909 - components: - - type: Transform - pos: 21.5,13.5 - parent: 4812 - - uid: 2910 - components: - - type: Transform - pos: 23.5,17.5 - parent: 4812 - - uid: 2911 - components: - - type: Transform - pos: 26.5,16.5 - parent: 4812 - - uid: 2912 - components: - - type: Transform - pos: 27.5,16.5 - parent: 4812 - - uid: 2913 - components: - - type: Transform - pos: 28.5,16.5 - parent: 4812 - - uid: 2914 - components: - - type: Transform - pos: 28.5,15.5 - parent: 4812 - - uid: 2915 - components: - - type: Transform - pos: 28.5,13.5 - parent: 4812 - - uid: 2916 - components: - - type: Transform - pos: 28.5,12.5 - parent: 4812 - - uid: 2917 - components: - - type: Transform - pos: 27.5,12.5 - parent: 4812 - - uid: 2918 - components: - - type: Transform - pos: 26.5,12.5 - parent: 4812 - - uid: 3031 - components: - - type: Transform - pos: 18.5,30.5 - parent: 4812 - - uid: 3032 - components: - - type: Transform - pos: 19.5,29.5 - parent: 4812 - - uid: 3035 - components: - - type: Transform - pos: 22.5,23.5 - parent: 4812 - - uid: 3036 - components: - - type: Transform - pos: 22.5,26.5 - parent: 4812 - - uid: 3037 - components: - - type: Transform - pos: 20.5,29.5 - parent: 4812 - - uid: 3114 - components: - - type: Transform - pos: 21.5,26.5 - parent: 4812 - - uid: 3115 - components: - - type: Transform - pos: 23.5,26.5 - parent: 4812 - - uid: 3116 - components: - - type: Transform - pos: 22.5,29.5 - parent: 4812 - - uid: 3701 - components: - - type: Transform - pos: 10.5,54.5 - parent: 4812 - - uid: 4385 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 4812 - - uid: 4386 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 4812 - - uid: 4387 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 4812 - - uid: 4388 - components: - - type: Transform - pos: 18.5,-4.5 - parent: 4812 - - uid: 4389 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 4812 - - uid: 4390 - components: - - type: Transform - pos: 18.5,-8.5 - parent: 4812 - - uid: 4391 - components: - - type: Transform - pos: 19.5,-8.5 - parent: 4812 - - uid: 4392 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 4812 - - uid: 4393 - components: - - type: Transform - pos: 26.5,-4.5 - parent: 4812 - - uid: 4394 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 4812 - - uid: 4395 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 4812 - - uid: 4396 - components: - - type: Transform - pos: 27.5,1.5 - parent: 4812 - - uid: 4397 - components: - - type: Transform - pos: 29.5,1.5 - parent: 4812 - - uid: 4398 - components: - - type: Transform - pos: 32.5,4.5 - parent: 4812 - - uid: 4399 - components: - - type: Transform - pos: 32.5,3.5 - parent: 4812 - - uid: 4400 - components: - - type: Transform - pos: 33.5,3.5 - parent: 4812 - - uid: 4401 - components: - - type: Transform - pos: 34.5,3.5 - parent: 4812 - - uid: 4402 - components: - - type: Transform - pos: 34.5,1.5 - parent: 4812 - - uid: 4403 - components: - - type: Transform - pos: 33.5,1.5 - parent: 4812 - - uid: 4404 - components: - - type: Transform - pos: 32.5,1.5 - parent: 4812 - - uid: 4405 - components: - - type: Transform - pos: 31.5,1.5 - parent: 4812 - - uid: 4406 - components: - - type: Transform - pos: 34.5,-0.5 - parent: 4812 - - uid: 4407 - components: - - type: Transform - pos: 33.5,-0.5 - parent: 4812 - - uid: 4408 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 4812 - - uid: 4409 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 4812 - - uid: 4410 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 4812 - - uid: 4411 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 4812 - - uid: 4412 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 4812 - - uid: 4413 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 4812 - - uid: 4414 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 4812 - - uid: 4415 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 4812 - - uid: 4416 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 4812 - - uid: 4417 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 4812 - - uid: 4418 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 4812 - - uid: 4419 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 4812 - - uid: 4420 - components: - - type: Transform - pos: 32.5,-8.5 - parent: 4812 - - uid: 4421 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 4812 - - uid: 4422 - components: - - type: Transform - pos: 34.5,-8.5 - parent: 4812 - - uid: 4437 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 4812 - - uid: 4438 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 4812 - - uid: 4610 - components: - - type: Transform - pos: 28.5,7.5 - parent: 4812 - - uid: 4611 - components: - - type: Transform - pos: 29.5,7.5 - parent: 4812 - - uid: 4612 - components: - - type: Transform - pos: 30.5,7.5 - parent: 4812 - - uid: 4613 - components: - - type: Transform - pos: 32.5,7.5 - parent: 4812 - - uid: 4614 - components: - - type: Transform - pos: 33.5,7.5 - parent: 4812 - - uid: 4615 - components: - - type: Transform - pos: 26.5,9.5 - parent: 4812 - - uid: 4616 - components: - - type: Transform - pos: 26.5,8.5 - parent: 4812 - - uid: 4617 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 4812 - - uid: 4618 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 4812 - - uid: 4619 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 4812 - - uid: 4620 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 4812 - - uid: 4621 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 4812 - - uid: 4622 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 4812 - - uid: 4623 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 4812 - - uid: 4624 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 4812 - - uid: 4625 - components: - - type: Transform - pos: 31.5,-12.5 - parent: 4812 - - uid: 4626 - components: - - type: Transform - pos: 32.5,-12.5 - parent: 4812 - - uid: 4722 - components: - - type: Transform - pos: -12.5,-54.5 - parent: 4812 - - uid: 4723 - components: - - type: Transform - pos: -12.5,-55.5 - parent: 4812 - - uid: 4726 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 4812 - - uid: 4727 - components: - - type: Transform - pos: -9.5,-54.5 - parent: 4812 - - uid: 4728 - components: - - type: Transform - pos: -9.5,-52.5 - parent: 4812 - - uid: 4729 - components: - - type: Transform - pos: -9.5,-51.5 - parent: 4812 - - uid: 4730 - components: - - type: Transform - pos: -8.5,-51.5 - parent: 4812 - - uid: 4731 - components: - - type: Transform - pos: -7.5,-51.5 - parent: 4812 - - uid: 4732 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 4812 - - uid: 4733 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 4812 - - uid: 4734 - components: - - type: Transform - pos: -8.5,-49.5 - parent: 4812 - - uid: 4735 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 4812 - - uid: 4740 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 4812 - - uid: 4741 - components: - - type: Transform - pos: -9.5,-44.5 - parent: 4812 - - uid: 4742 - components: - - type: Transform - pos: -8.5,-44.5 - parent: 4812 - - uid: 4743 - components: - - type: Transform - pos: -7.5,-42.5 - parent: 4812 - - uid: 4744 - components: - - type: Transform - pos: -8.5,-42.5 - parent: 4812 - - uid: 4745 - components: - - type: Transform - pos: -9.5,-42.5 - parent: 4812 - - uid: 4746 - components: - - type: Transform - pos: -9.5,-41.5 - parent: 4812 - - uid: 4747 - components: - - type: Transform - pos: -12.5,-41.5 - parent: 4812 - - uid: 4748 - components: - - type: Transform - pos: -12.5,-42.5 - parent: 4812 - - uid: 4749 - components: - - type: Transform - pos: -13.5,-42.5 - parent: 4812 - - uid: 4750 - components: - - type: Transform - pos: -14.5,-42.5 - parent: 4812 - - uid: 4751 - components: - - type: Transform - pos: -12.5,-44.5 - parent: 4812 - - uid: 4752 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 4812 - - uid: 4753 - components: - - type: Transform - pos: -14.5,-44.5 - parent: 4812 - - uid: 4758 - components: - - type: Transform - pos: -14.5,-49.5 - parent: 4812 - - uid: 4759 - components: - - type: Transform - pos: -13.5,-49.5 - parent: 4812 - - uid: 4760 - components: - - type: Transform - pos: -12.5,-49.5 - parent: 4812 - - uid: 4761 - components: - - type: Transform - pos: -12.5,-52.5 - parent: 4812 - - uid: 4762 - components: - - type: Transform - pos: -12.5,-51.5 - parent: 4812 - - uid: 4763 - components: - - type: Transform - pos: -13.5,-51.5 - parent: 4812 - - uid: 4764 - components: - - type: Transform - pos: -14.5,-51.5 - parent: 4812 - - uid: 4765 - components: - - type: Transform - pos: -9.5,-39.5 - parent: 4812 - - uid: 4766 - components: - - type: Transform - pos: -9.5,-38.5 - parent: 4812 - - uid: 4767 - components: - - type: Transform - pos: -9.5,-37.5 - parent: 4812 - - uid: 4768 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 4812 - - uid: 4769 - components: - - type: Transform - pos: -8.5,-36.5 - parent: 4812 - - uid: 4770 - components: - - type: Transform - pos: -5.5,-36.5 - parent: 4812 - - uid: 4771 - components: - - type: Transform - pos: -4.5,-36.5 - parent: 4812 - - uid: 4772 - components: - - type: Transform - pos: -3.5,-36.5 - parent: 4812 - - uid: 4773 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 4812 - - uid: 4774 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 4812 - - uid: 4775 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 4812 - - uid: 4776 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 4812 - - uid: 4777 - components: - - type: Transform - pos: -1.5,-33.5 - parent: 4812 - - uid: 4778 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 4812 - - uid: 4779 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 4812 - - uid: 4780 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 4812 - - uid: 4781 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 4812 - - uid: 4782 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 4812 - - uid: 4796 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 4812 - - uid: 4978 - components: - - type: Transform - pos: -45.5,-27.5 - parent: 4812 - - uid: 5054 - components: - - type: Transform - pos: -14.5,-19.5 - parent: 4812 - - uid: 5055 - components: - - type: Transform - pos: -16.5,-19.5 - parent: 4812 - - uid: 5309 - components: - - type: Transform - pos: -4.5,-26.5 - parent: 4812 - - uid: 5310 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 4812 - - uid: 5311 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 4812 - - uid: 5343 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 4812 - - uid: 5344 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 4812 - - uid: 5345 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 4812 - - uid: 5346 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 4812 - - uid: 5347 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 4812 - - uid: 5348 - components: - - type: Transform - pos: 18.5,-10.5 - parent: 4812 - - uid: 5349 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 4812 - - uid: 5350 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 4812 - - uid: 5351 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 4812 - - uid: 5352 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 4812 - - uid: 5353 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 4812 - - uid: 5354 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 4812 - - uid: 5355 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 4812 - - uid: 5356 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 4812 - - uid: 5357 - components: - - type: Transform - pos: 21.5,-14.5 - parent: 4812 - - uid: 5423 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 4812 - - uid: 5424 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 4812 - - uid: 5544 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 4812 - - uid: 5545 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 4812 - - uid: 5546 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 4812 - - uid: 5547 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 4812 - - uid: 5548 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 4812 - - uid: 5549 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 4812 - - uid: 5550 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 4812 - - uid: 5551 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 4812 - - uid: 5552 - components: - - type: Transform - pos: 28.5,-17.5 - parent: 4812 - - uid: 5553 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 4812 - - uid: 5554 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 4812 - - uid: 5570 - components: - - type: Transform - pos: 19.5,-30.5 - parent: 4812 - - uid: 5571 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 4812 - - uid: 5572 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 4812 - - uid: 5577 - components: - - type: Transform - pos: 27.5,-21.5 - parent: 4812 - - uid: 5578 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 4812 - - uid: 5579 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 4812 - - uid: 5601 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 4812 - - uid: 5602 - components: - - type: Transform - pos: 7.5,-25.5 - parent: 4812 - - uid: 5603 - components: - - type: Transform - pos: 7.5,-28.5 - parent: 4812 - - uid: 5604 - components: - - type: Transform - pos: 7.5,-23.5 - parent: 4812 - - uid: 5605 - components: - - type: Transform - pos: 6.5,-22.5 - parent: 4812 - - uid: 5606 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 4812 - - uid: 5607 - components: - - type: Transform - pos: 10.5,-28.5 - parent: 4812 - - uid: 5608 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 4812 - - uid: 5609 - components: - - type: Transform - pos: 10.5,-24.5 - parent: 4812 - - uid: 5610 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 4812 - - uid: 5611 - components: - - type: Transform - pos: 3.5,-19.5 - parent: 4812 - - uid: 5612 - components: - - type: Transform - pos: 5.5,-19.5 - parent: 4812 - - uid: 5613 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 4812 - - uid: 5614 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 4812 - - uid: 5615 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 4812 - - uid: 5616 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 4812 - - uid: 5617 - components: - - type: Transform - pos: 5.5,-13.5 - parent: 4812 - - uid: 5618 - components: - - type: Transform - pos: 7.5,-13.5 - parent: 4812 - - uid: 5622 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 4812 - - uid: 5623 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 4812 - - uid: 5624 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 4812 - - uid: 5767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 4812 - - uid: 5768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-24.5 - parent: 4812 - - uid: 5806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 4812 - - uid: 5833 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 4812 - - uid: 5834 - components: - - type: Transform - pos: 33.5,-22.5 - parent: 4812 - - uid: 5835 - components: - - type: Transform - pos: 34.5,-22.5 - parent: 4812 - - uid: 6315 - components: - - type: Transform - pos: 23.5,-27.5 - parent: 4812 - - uid: 6316 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 4812 - - uid: 6354 - components: - - type: Transform - pos: 9.5,-13.5 - parent: 4812 - - uid: 6594 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 4812 - - uid: 6595 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 4812 - - uid: 6596 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 4812 - - uid: 6597 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 4812 - - uid: 6598 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 4812 - - uid: 6599 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 4812 - - uid: 6600 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 4812 - - uid: 6601 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 4812 - - uid: 6602 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 4812 - - uid: 6603 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 4812 - - uid: 6633 - components: - - type: Transform - pos: -44.5,-30.5 - parent: 4812 - - uid: 6658 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 4812 - - uid: 6671 - components: - - type: Transform - pos: -26.5,-13.5 - parent: 4812 - - uid: 6672 - components: - - type: Transform - pos: -23.5,-13.5 - parent: 4812 - - uid: 6678 - components: - - type: Transform - pos: -17.5,-16.5 - parent: 4812 - - uid: 6799 - components: - - type: Transform - pos: -15.5,-37.5 - parent: 4812 - - uid: 6800 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 4812 - - uid: 6801 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 4812 - - uid: 6802 - components: - - type: Transform - pos: -19.5,-40.5 - parent: 4812 - - uid: 6803 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 4812 - - uid: 6804 - components: - - type: Transform - pos: -25.5,-37.5 - parent: 4812 - - uid: 6805 - components: - - type: Transform - pos: -25.5,-35.5 - parent: 4812 - - uid: 6983 - components: - - type: Transform - pos: -12.5,-35.5 - parent: 4812 - - uid: 7208 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 4812 - - uid: 7220 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 4812 - - uid: 7221 - components: - - type: Transform - pos: -14.5,-24.5 - parent: 4812 - - uid: 7222 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 4812 - - uid: 7223 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 4812 - - uid: 7224 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 4812 - - uid: 7251 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 4812 - - uid: 7258 - components: - - type: Transform - pos: -7.5,-25.5 - parent: 4812 - - uid: 7301 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 4812 - - uid: 7330 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 4812 - - uid: 7332 - components: - - type: Transform - pos: -20.5,-13.5 - parent: 4812 - - uid: 7340 - components: - - type: Transform - pos: -7.5,-26.5 - parent: 4812 - - uid: 7352 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 4812 - - uid: 7404 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 4812 - - uid: 7405 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 4812 - - uid: 7432 - components: - - type: Transform - pos: -23.5,-22.5 - parent: 4812 - - uid: 7437 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 4812 - - uid: 7438 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 4812 - - uid: 7620 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 4812 - - uid: 7915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,10.5 - parent: 4812 - - uid: 7916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,12.5 - parent: 4812 - - uid: 7917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,10.5 - parent: 4812 - - uid: 7918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 4812 - - uid: 7919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 4812 - - uid: 7920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,13.5 - parent: 4812 - - uid: 7921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,14.5 - parent: 4812 - - uid: 7922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,17.5 - parent: 4812 - - uid: 7923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,17.5 - parent: 4812 - - uid: 7924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,16.5 - parent: 4812 - - uid: 7925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,19.5 - parent: 4812 - - uid: 7926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,20.5 - parent: 4812 - - uid: 7927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,20.5 - parent: 4812 - - uid: 7928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,29.5 - parent: 4812 - - uid: 7929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,31.5 - parent: 4812 - - uid: 7930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,33.5 - parent: 4812 - - uid: 7931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,33.5 - parent: 4812 - - uid: 7933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,33.5 - parent: 4812 - - uid: 8057 - components: - - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 8058 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - - uid: 8059 - components: - - type: Transform - pos: -32.5,19.5 - parent: 4812 - - uid: 8060 - components: - - type: Transform - pos: -32.5,20.5 - parent: 4812 - - uid: 8166 - components: - - type: Transform - pos: -20.5,21.5 - parent: 4812 - - uid: 8167 - components: - - type: Transform - pos: -21.5,21.5 - parent: 4812 - - uid: 8168 - components: - - type: Transform - pos: -23.5,21.5 - parent: 4812 - - uid: 8174 - components: - - type: Transform - pos: -21.5,26.5 - parent: 4812 - - uid: 8175 - components: - - type: Transform - pos: -23.5,26.5 - parent: 4812 - - uid: 8526 - components: - - type: Transform - pos: -23.5,37.5 - parent: 4812 - - uid: 8527 - components: - - type: Transform - pos: -22.5,37.5 - parent: 4812 - - uid: 8528 - components: - - type: Transform - pos: -11.5,32.5 - parent: 4812 - - uid: 8529 - components: - - type: Transform - pos: -11.5,33.5 - parent: 4812 - - uid: 8530 - components: - - type: Transform - pos: -15.5,37.5 - parent: 4812 - - uid: 8531 - components: - - type: Transform - pos: -14.5,37.5 - parent: 4812 - - uid: 8532 - components: - - type: Transform - pos: -11.5,35.5 - parent: 4812 - - uid: 8533 - components: - - type: Transform - pos: -11.5,36.5 - parent: 4812 - - uid: 8534 - components: - - type: Transform - pos: -12.5,37.5 - parent: 4812 - - uid: 8535 - components: - - type: Transform - pos: -11.5,37.5 - parent: 4812 - - uid: 8536 - components: - - type: Transform - pos: -10.5,37.5 - parent: 4812 - - uid: 8537 - components: - - type: Transform - pos: -9.5,37.5 - parent: 4812 - - uid: 8538 - components: - - type: Transform - pos: -6.5,38.5 - parent: 4812 - - uid: 8539 - components: - - type: Transform - pos: -5.5,38.5 - parent: 4812 - - uid: 8540 - components: - - type: Transform - pos: -0.5,38.5 - parent: 4812 - - uid: 8541 - components: - - type: Transform - pos: 0.5,38.5 - parent: 4812 - - uid: 8542 - components: - - type: Transform - pos: 1.5,38.5 - parent: 4812 - - uid: 8543 - components: - - type: Transform - pos: 2.5,38.5 - parent: 4812 - - uid: 8544 - components: - - type: Transform - pos: 0.5,43.5 - parent: 4812 - - uid: 8545 - components: - - type: Transform - pos: 0.5,42.5 - parent: 4812 - - uid: 8546 - components: - - type: Transform - pos: 0.5,41.5 - parent: 4812 - - uid: 8547 - components: - - type: Transform - pos: 10.5,37.5 - parent: 4812 - - uid: 8548 - components: - - type: Transform - pos: 8.5,33.5 - parent: 4812 - - uid: 8696 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 4812 - - uid: 8697 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 4812 - - uid: 8698 - components: - - type: Transform - pos: -27.5,-6.5 - parent: 4812 - - uid: 8699 - components: - - type: Transform - pos: -29.5,-4.5 - parent: 4812 - - uid: 8700 - components: - - type: Transform - pos: -31.5,-4.5 - parent: 4812 - - uid: 8701 - components: - - type: Transform - pos: -28.5,-3.5 - parent: 4812 - - uid: 8702 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 4812 - - uid: 8703 - components: - - type: Transform - pos: -29.5,0.5 - parent: 4812 - - uid: 8704 - components: - - type: Transform - pos: -31.5,0.5 - parent: 4812 - - uid: 8705 - components: - - type: Transform - pos: -27.5,2.5 - parent: 4812 - - uid: 8706 - components: - - type: Transform - pos: -27.5,3.5 - parent: 4812 - - uid: 8707 - components: - - type: Transform - pos: -27.5,4.5 - parent: 4812 - - uid: 8708 - components: - - type: Transform - pos: -35.5,1.5 - parent: 4812 - - uid: 8709 - components: - - type: Transform - pos: -35.5,3.5 - parent: 4812 - - uid: 8710 - components: - - type: Transform - pos: -35.5,5.5 - parent: 4812 - - uid: 8752 - components: - - type: Transform - pos: -44.5,-4.5 - parent: 4812 - - uid: 8753 - components: - - type: Transform - pos: -42.5,-4.5 - parent: 4812 - - uid: 8841 - components: - - type: Transform - pos: -27.5,-41.5 - parent: 4812 - - uid: 8842 - components: - - type: Transform - pos: -37.5,-38.5 - parent: 4812 - - uid: 8843 - components: - - type: Transform - pos: -36.5,-38.5 - parent: 4812 - - uid: 8844 - components: - - type: Transform - pos: -39.5,-36.5 - parent: 4812 - - uid: 8845 - components: - - type: Transform - pos: -40.5,-36.5 - parent: 4812 - - uid: 8846 - components: - - type: Transform - pos: -41.5,-36.5 - parent: 4812 - - uid: 8847 - components: - - type: Transform - pos: -41.5,-35.5 - parent: 4812 - - uid: 9087 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 4812 - - uid: 9413 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 4812 - - uid: 9414 - components: - - type: Transform - pos: -48.5,-0.5 - parent: 4812 - - uid: 9415 - components: - - type: Transform - pos: -48.5,0.5 - parent: 4812 - - uid: 9416 - components: - - type: Transform - pos: -48.5,1.5 - parent: 4812 - - uid: 9417 - components: - - type: Transform - pos: -48.5,2.5 - parent: 4812 - - uid: 9418 - components: - - type: Transform - pos: -48.5,3.5 - parent: 4812 - - uid: 9419 - components: - - type: Transform - pos: -48.5,4.5 - parent: 4812 - - uid: 9420 - components: - - type: Transform - pos: -48.5,5.5 - parent: 4812 - - uid: 9421 - components: - - type: Transform - pos: -48.5,6.5 - parent: 4812 - - uid: 9422 - components: - - type: Transform - pos: -48.5,7.5 - parent: 4812 - - uid: 9423 - components: - - type: Transform - pos: -48.5,8.5 - parent: 4812 - - uid: 9424 - components: - - type: Transform - pos: -48.5,9.5 - parent: 4812 - - uid: 9425 - components: - - type: Transform - pos: -48.5,10.5 - parent: 4812 - - uid: 9426 - components: - - type: Transform - pos: -48.5,11.5 - parent: 4812 - - uid: 9427 - components: - - type: Transform - pos: -48.5,12.5 - parent: 4812 - - uid: 9428 - components: - - type: Transform - pos: -48.5,13.5 - parent: 4812 - - uid: 9442 - components: - - type: Transform - pos: -50.5,11.5 - parent: 4812 - - uid: 9443 - components: - - type: Transform - pos: -50.5,9.5 - parent: 4812 - - uid: 9444 - components: - - type: Transform - pos: -50.5,7.5 - parent: 4812 - - uid: 9445 - components: - - type: Transform - pos: -50.5,5.5 - parent: 4812 - - uid: 9446 - components: - - type: Transform - pos: -50.5,3.5 - parent: 4812 - - uid: 9447 - components: - - type: Transform - pos: -50.5,1.5 - parent: 4812 - - uid: 9482 - components: - - type: Transform - pos: -46.5,16.5 - parent: 4812 - - uid: 9483 - components: - - type: Transform - pos: -46.5,17.5 - parent: 4812 - - uid: 9484 - components: - - type: Transform - pos: -45.5,15.5 - parent: 4812 - - uid: 9485 - components: - - type: Transform - pos: -44.5,15.5 - parent: 4812 - - uid: 9486 - components: - - type: Transform - pos: -43.5,15.5 - parent: 4812 - - uid: 9487 - components: - - type: Transform - pos: -42.5,16.5 - parent: 4812 - - uid: 9488 - components: - - type: Transform - pos: -42.5,17.5 - parent: 4812 - - uid: 9505 - components: - - type: Transform - pos: -47.5,13.5 - parent: 4812 - - uid: 9506 - components: - - type: Transform - pos: -46.5,13.5 - parent: 4812 - - uid: 9507 - components: - - type: Transform - pos: -45.5,13.5 - parent: 4812 - - uid: 9508 - components: - - type: Transform - pos: -44.5,13.5 - parent: 4812 - - uid: 9509 - components: - - type: Transform - pos: -43.5,13.5 - parent: 4812 - - uid: 9510 - components: - - type: Transform - pos: -42.5,13.5 - parent: 4812 - - uid: 9609 - components: - - type: Transform - pos: -41.5,-28.5 - parent: 4812 - - uid: 9649 - components: - - type: Transform - pos: -12.5,-58.5 - parent: 4812 - - uid: 9650 - components: - - type: Transform - pos: -12.5,-57.5 - parent: 4812 - - uid: 9653 - components: - - type: Transform - pos: -9.5,-58.5 - parent: 4812 - - uid: 9654 - components: - - type: Transform - pos: -9.5,-57.5 - parent: 4812 - - uid: 9832 - components: - - type: Transform - pos: -47.5,-7.5 - parent: 4812 - - uid: 9835 - components: - - type: Transform - pos: -47.5,-8.5 - parent: 4812 - - uid: 9861 - components: - - type: Transform - pos: -46.5,-11.5 - parent: 4812 - - uid: 9862 - components: - - type: Transform - pos: -46.5,-13.5 - parent: 4812 - - uid: 9871 - components: - - type: Transform - pos: -51.5,-11.5 - parent: 4812 - - uid: 9877 - components: - - type: Transform - pos: -51.5,-13.5 - parent: 4812 - - uid: 9909 - components: - - type: Transform - pos: -43.5,-13.5 - parent: 4812 - - uid: 9910 - components: - - type: Transform - pos: -43.5,-11.5 - parent: 4812 - - uid: 9911 - components: - - type: Transform - pos: -41.5,-9.5 - parent: 4812 - - uid: 9912 - components: - - type: Transform - pos: -39.5,-9.5 - parent: 4812 - - uid: 10315 - components: - - type: Transform - pos: -56.5,-23.5 - parent: 4812 - - uid: 10316 - components: - - type: Transform - pos: -53.5,-23.5 - parent: 4812 - - uid: 10317 - components: - - type: Transform - pos: -52.5,-23.5 - parent: 4812 - - uid: 10318 - components: - - type: Transform - pos: -52.5,-26.5 - parent: 4812 - - uid: 10319 - components: - - type: Transform - pos: -53.5,-26.5 - parent: 4812 - - uid: 10320 - components: - - type: Transform - pos: -54.5,-26.5 - parent: 4812 - - uid: 10321 - components: - - type: Transform - pos: -54.5,-25.5 - parent: 4812 - - uid: 10371 - components: - - type: Transform - pos: -71.5,-24.5 - parent: 4812 - - uid: 10372 - components: - - type: Transform - pos: -71.5,-25.5 - parent: 4812 - - uid: 10373 - components: - - type: Transform - pos: -71.5,-26.5 - parent: 4812 - - uid: 10374 - components: - - type: Transform - pos: -69.5,-28.5 - parent: 4812 - - uid: 10375 - components: - - type: Transform - pos: -70.5,-28.5 - parent: 4812 - - uid: 10376 - components: - - type: Transform - pos: -71.5,-28.5 - parent: 4812 - - uid: 10377 - components: - - type: Transform - pos: -71.5,-20.5 - parent: 4812 - - uid: 10378 - components: - - type: Transform - pos: -71.5,-19.5 - parent: 4812 - - uid: 10379 - components: - - type: Transform - pos: -71.5,-18.5 - parent: 4812 - - uid: 10380 - components: - - type: Transform - pos: -71.5,-16.5 - parent: 4812 - - uid: 10381 - components: - - type: Transform - pos: -70.5,-16.5 - parent: 4812 - - uid: 10382 - components: - - type: Transform - pos: -69.5,-16.5 - parent: 4812 - - uid: 10383 - components: - - type: Transform - pos: -67.5,-16.5 - parent: 4812 - - uid: 10384 - components: - - type: Transform - pos: -66.5,-16.5 - parent: 4812 - - uid: 10385 - components: - - type: Transform - pos: -65.5,-16.5 - parent: 4812 - - uid: 10386 - components: - - type: Transform - pos: -63.5,-16.5 - parent: 4812 - - uid: 10387 - components: - - type: Transform - pos: -62.5,-16.5 - parent: 4812 - - uid: 10388 - components: - - type: Transform - pos: -61.5,-16.5 - parent: 4812 - - uid: 10389 - components: - - type: Transform - pos: -67.5,-28.5 - parent: 4812 - - uid: 10390 - components: - - type: Transform - pos: -66.5,-28.5 - parent: 4812 - - uid: 10391 - components: - - type: Transform - pos: -65.5,-28.5 - parent: 4812 - - uid: 10392 - components: - - type: Transform - pos: -62.5,-28.5 - parent: 4812 - - uid: 10393 - components: - - type: Transform - pos: -61.5,-28.5 - parent: 4812 - - uid: 10394 - components: - - type: Transform - pos: -63.5,-28.5 - parent: 4812 - - uid: 10395 - components: - - type: Transform - pos: -59.5,-28.5 - parent: 4812 - - uid: 10396 - components: - - type: Transform - pos: -58.5,-28.5 - parent: 4812 - - uid: 10397 - components: - - type: Transform - pos: -57.5,-28.5 - parent: 4812 - - uid: 10398 - components: - - type: Transform - pos: -55.5,-28.5 - parent: 4812 - - uid: 10399 - components: - - type: Transform - pos: -54.5,-28.5 - parent: 4812 - - uid: 10400 - components: - - type: Transform - pos: -53.5,-28.5 - parent: 4812 - - uid: 10401 - components: - - type: Transform - pos: -51.5,-28.5 - parent: 4812 - - uid: 10402 - components: - - type: Transform - pos: -50.5,-28.5 - parent: 4812 - - uid: 10403 - components: - - type: Transform - pos: -49.5,-28.5 - parent: 4812 - - uid: 10411 - components: - - type: Transform - pos: -52.5,-7.5 - parent: 4812 - - uid: 10412 - components: - - type: Transform - pos: -53.5,-7.5 - parent: 4812 - - uid: 10413 - components: - - type: Transform - pos: -54.5,-7.5 - parent: 4812 - - uid: 10414 - components: - - type: Transform - pos: -54.5,-5.5 - parent: 4812 - - uid: 10415 - components: - - type: Transform - pos: -53.5,-5.5 - parent: 4812 - - uid: 10416 - components: - - type: Transform - pos: -52.5,-5.5 - parent: 4812 - - uid: 10440 - components: - - type: Transform - pos: -13.5,-59.5 - parent: 4812 - - uid: 10441 - components: - - type: Transform - pos: -14.5,-59.5 - parent: 4812 - - uid: 10609 - components: - - type: Transform - pos: -47.5,-24.5 - parent: 4812 - - uid: 10632 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 4812 - - uid: 10636 - components: - - type: Transform - pos: -48.5,-10.5 - parent: 4812 - - uid: 11216 - components: - - type: Transform - pos: 6.5,-34.5 - parent: 4812 - - uid: 11217 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 4812 - - uid: 11218 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 4812 - - uid: 11219 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 4812 - - uid: 11220 - components: - - type: Transform - pos: 11.5,-42.5 - parent: 4812 - - uid: 11354 - components: - - type: Transform - pos: 37.5,-31.5 - parent: 4812 - - uid: 11355 - components: - - type: Transform - pos: 38.5,-31.5 - parent: 4812 - - uid: 11356 - components: - - type: Transform - pos: 38.5,-32.5 - parent: 4812 - - uid: 11390 - components: - - type: Transform - pos: 32.5,-37.5 - parent: 4812 - - uid: 11391 - components: - - type: Transform - pos: 31.5,-37.5 - parent: 4812 - - uid: 11708 - components: - - type: Transform - pos: 53.5,-33.5 - parent: 4812 - - uid: 11709 - components: - - type: Transform - pos: 53.5,-32.5 - parent: 4812 - - uid: 11710 - components: - - type: Transform - pos: 53.5,-40.5 - parent: 4812 - - uid: 11711 - components: - - type: Transform - pos: 53.5,-39.5 - parent: 4812 - - uid: 11712 - components: - - type: Transform - pos: 53.5,-38.5 - parent: 4812 - - uid: 11713 - components: - - type: Transform - pos: 52.5,-42.5 - parent: 4812 - - uid: 11714 - components: - - type: Transform - pos: 51.5,-42.5 - parent: 4812 - - uid: 11715 - components: - - type: Transform - pos: 50.5,-42.5 - parent: 4812 - - uid: 11718 - components: - - type: Transform - pos: 46.5,-42.5 - parent: 4812 - - uid: 11719 - components: - - type: Transform - pos: 44.5,-42.5 - parent: 4812 - - uid: 11720 - components: - - type: Transform - pos: 43.5,-42.5 - parent: 4812 - - uid: 11721 - components: - - type: Transform - pos: 42.5,-42.5 - parent: 4812 - - uid: 11723 - components: - - type: Transform - pos: 39.5,-42.5 - parent: 4812 - - uid: 11724 - components: - - type: Transform - pos: 38.5,-42.5 - parent: 4812 - - uid: 11725 - components: - - type: Transform - pos: 52.5,-30.5 - parent: 4812 - - uid: 11726 - components: - - type: Transform - pos: 51.5,-30.5 - parent: 4812 - - uid: 11727 - components: - - type: Transform - pos: 50.5,-30.5 - parent: 4812 - - uid: 11728 - components: - - type: Transform - pos: 48.5,-30.5 - parent: 4812 - - uid: 11729 - components: - - type: Transform - pos: 47.5,-30.5 - parent: 4812 - - uid: 11730 - components: - - type: Transform - pos: 46.5,-30.5 - parent: 4812 - - uid: 11731 - components: - - type: Transform - pos: 44.5,-30.5 - parent: 4812 - - uid: 11732 - components: - - type: Transform - pos: 43.5,-30.5 - parent: 4812 - - uid: 11734 - components: - - type: Transform - pos: 40.5,-30.5 - parent: 4812 - - uid: 11740 - components: - - type: Transform - pos: 18.5,-39.5 - parent: 4812 - - uid: 11741 - components: - - type: Transform - pos: 17.5,-39.5 - parent: 4812 - - uid: 11742 - components: - - type: Transform - pos: 21.5,-39.5 - parent: 4812 - - uid: 11743 - components: - - type: Transform - pos: 20.5,-39.5 - parent: 4812 - - uid: 12108 - components: - - type: Transform - pos: -10.5,-56.5 - parent: 4812 - - uid: 12121 - components: - - type: Transform - pos: -53.5,17.5 - parent: 4812 - - uid: 12122 - components: - - type: Transform - pos: -52.5,17.5 - parent: 4812 - - uid: 12123 - components: - - type: Transform - pos: -51.5,17.5 - parent: 4812 - - uid: 12124 - components: - - type: Transform - pos: -50.5,17.5 - parent: 4812 - - uid: 12125 - components: - - type: Transform - pos: -49.5,17.5 - parent: 4812 - - uid: 12126 - components: - - type: Transform - pos: -49.5,15.5 - parent: 4812 - - uid: 12127 - components: - - type: Transform - pos: -50.5,15.5 - parent: 4812 - - uid: 12128 - components: - - type: Transform - pos: -51.5,15.5 - parent: 4812 - - uid: 12129 - components: - - type: Transform - pos: -52.5,15.5 - parent: 4812 - - uid: 12130 - components: - - type: Transform - pos: -53.5,15.5 - parent: 4812 - - uid: 12131 - components: - - type: Transform - pos: -57.5,12.5 - parent: 4812 - - uid: 12132 - components: - - type: Transform - pos: -57.5,11.5 - parent: 4812 - - uid: 12133 - components: - - type: Transform - pos: -57.5,10.5 - parent: 4812 - - uid: 12134 - components: - - type: Transform - pos: -57.5,9.5 - parent: 4812 - - uid: 12135 - components: - - type: Transform - pos: -57.5,8.5 - parent: 4812 - - uid: 12136 - components: - - type: Transform - pos: -57.5,7.5 - parent: 4812 - - uid: 12137 - components: - - type: Transform - pos: -57.5,6.5 - parent: 4812 - - uid: 12138 - components: - - type: Transform - pos: -57.5,5.5 - parent: 4812 - - uid: 12139 - components: - - type: Transform - pos: -57.5,4.5 - parent: 4812 - - uid: 12140 - components: - - type: Transform - pos: -57.5,3.5 - parent: 4812 - - uid: 12141 - components: - - type: Transform - pos: -57.5,2.5 - parent: 4812 - - uid: 12142 - components: - - type: Transform - pos: -57.5,1.5 - parent: 4812 - - uid: 12143 - components: - - type: Transform - pos: -57.5,0.5 - parent: 4812 - - uid: 12416 - components: - - type: Transform - pos: -8.5,-59.5 - parent: 4812 - - uid: 12417 - components: - - type: Transform - pos: -7.5,-59.5 - parent: 4812 -- proto: GrilleBroken - entities: - - uid: 1544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 4812 - - uid: 9088 - components: - - type: Transform - pos: -30.5,-26.5 - parent: 4812 - - uid: 11073 - components: - - type: Transform - pos: 11.5,-36.5 - parent: 4812 - - uid: 11081 - components: - - type: Transform - pos: 11.5,-38.5 - parent: 4812 - - uid: 11108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-32.5 - parent: 4812 - - uid: 11109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-31.5 - parent: 4812 - - uid: 11221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-36.5 - parent: 4812 - - uid: 11222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-32.5 - parent: 4812 - - uid: 11223 - components: - - type: Transform - pos: 11.5,-40.5 - parent: 4812 - - uid: 11707 - components: - - type: Transform - pos: 53.5,-34.5 - parent: 4812 - - uid: 11716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 4812 - - uid: 11717 - components: - - type: Transform - pos: 45.5,-30.5 - parent: 4812 - - uid: 11722 - components: - - type: Transform - pos: 42.5,-30.5 - parent: 4812 - - uid: 11733 - components: - - type: Transform - pos: 47.5,-42.5 - parent: 4812 - - uid: 11735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 4812 - - uid: 11736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 4812 - - uid: 11737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-42.5 - parent: 4812 - - uid: 11738 - components: - - type: Transform - pos: 40.5,-42.5 - parent: 4812 - - uid: 11849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,10.5 - parent: 4812 - - uid: 11859 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 4812 -- proto: GunSafeRifleLecter - entities: - - uid: 4809 - components: - - type: Transform - pos: -36.5,19.5 - parent: 4812 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 10442 - components: - - type: Transform - pos: -33.5,19.5 - parent: 4812 -- proto: Handcuffs - entities: - - uid: 4865 - components: - - type: Transform - pos: 17.570036,-11.532839 - parent: 4812 - - uid: 6479 - components: - - type: Transform - pos: -2.4305947,-24.439144 - parent: 4812 - - uid: 8452 - components: - - type: Transform - pos: -30.406057,10.489904 - parent: 4812 -- proto: HandheldGPSBasic - entities: - - uid: 8590 - components: - - type: Transform - pos: -18.546284,12.521154 - parent: 4812 -- proto: HandheldHealthAnalyzer - entities: - - uid: 6246 - components: - - type: Transform - pos: 13.5409565,-28.418493 - parent: 4812 - - uid: 9027 - components: - - type: Transform - pos: -39.497536,-35.530823 - parent: 4812 -- proto: HandheldHealthAnalyzerEmpty - entities: - - uid: 3390 - components: - - type: Transform - pos: 22.465052,3.7311544 - parent: 4812 -- proto: HandheldStationMap - entities: - - uid: 7295 - components: - - type: Transform - pos: -5.5136886,26.677116 - parent: 4812 -- proto: HandLabeler - entities: - - uid: 1802 - components: - - type: Transform - pos: -4.4966984,14.507313 - parent: 4812 - - uid: 2534 - components: - - type: Transform - pos: 9.005315,26.569424 - parent: 4812 - - uid: 3369 - components: - - type: Transform - pos: 20.465384,17.498707 - parent: 4812 - - uid: 6348 - components: - - type: Transform - pos: 6.3559675,-25.44819 - parent: 4812 - - uid: 8594 - components: - - type: Transform - pos: -19.500504,10.456865 - parent: 4812 -- proto: HarmonicaInstrument - entities: - - uid: 11857 - components: - - type: Transform - pos: -29.373522,30.531204 - parent: 4812 -- proto: Hemostat - entities: - - uid: 6244 - components: - - type: Transform - pos: 13.5565815,-27.824743 - parent: 4812 -- proto: HighSecCommandLocked - entities: - - uid: 1846 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,21.5 - parent: 4812 - - uid: 3287 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,6.5 - parent: 4812 - - uid: 3688 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,45.5 - parent: 4812 - - uid: 3689 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,45.5 - parent: 4812 - - uid: 3690 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,47.5 - parent: 4812 - - uid: 9886 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-12.5 - parent: 4812 -- proto: HospitalCurtainsOpen - entities: - - uid: 3228 - components: - - type: Transform - pos: 10.5,30.5 - parent: 4812 - - uid: 3229 - components: - - type: Transform - pos: -15.5,29.5 - parent: 4812 - - uid: 3421 - components: - - type: Transform - pos: -19.5,29.5 - parent: 4812 - - uid: 3451 - components: - - type: Transform - pos: 19.5,36.5 - parent: 4812 -- proto: hydroponicsSoil - entities: - - uid: 8385 - components: - - type: Transform - pos: -32.5,29.5 - parent: 4812 - - uid: 8386 - components: - - type: Transform - pos: -32.5,30.5 - parent: 4812 - - uid: 8387 - components: - - type: Transform - pos: -32.5,31.5 - parent: 4812 - - uid: 9610 - components: - - type: Transform - pos: -42.5,-28.5 - parent: 4812 - - uid: 9611 - components: - - type: Transform - pos: -44.5,-28.5 - parent: 4812 - - uid: 9612 - components: - - type: Transform - pos: -43.5,-29.5 - parent: 4812 - - uid: 11285 - components: - - type: Transform - pos: 16.5,-36.5 - parent: 4812 - - uid: 11286 - components: - - type: Transform - pos: 16.5,-38.5 - parent: 4812 - - uid: 11287 - components: - - type: Transform - pos: 18.5,-38.5 - parent: 4812 - - uid: 11288 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 4812 - - uid: 11289 - components: - - type: Transform - pos: 22.5,-38.5 - parent: 4812 -- proto: HydroponicsToolClippers - entities: - - uid: 1457 - components: - - type: Transform - pos: -12.442752,-7.42547 - parent: 4812 -- proto: HydroponicsToolHatchet - entities: - - uid: 1459 - components: - - type: Transform - pos: -12.505252,-7.378595 - parent: 4812 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 1455 - components: - - type: Transform - pos: -11.520877,-7.441095 - parent: 4812 - - uid: 8407 - components: - - type: Transform - pos: -31.533045,30.44869 - parent: 4812 - - uid: 11299 - components: - - type: Transform - pos: 16.50683,-37.620907 - parent: 4812 -- proto: HydroponicsToolScythe - entities: - - uid: 1458 - components: - - type: Transform - pos: -12.458377,-7.42547 - parent: 4812 -- proto: HydroponicsToolSpade - entities: - - uid: 1456 - components: - - type: Transform - pos: -11.489627,-7.378595 - parent: 4812 - - uid: 8408 - components: - - type: Transform - pos: -31.45492,30.47994 - parent: 4812 - - uid: 9619 - components: - - type: Transform - pos: -44.466614,-28.47166 - parent: 4812 - - uid: 11298 - components: - - type: Transform - pos: 20.50683,-38.495907 - parent: 4812 -- proto: hydroponicsTray - entities: - - uid: 1063 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 4812 - - uid: 1064 - components: - - type: Transform - pos: -15.5,-9.5 - parent: 4812 - - uid: 1065 - components: - - type: Transform - pos: -14.5,-9.5 - parent: 4812 - - uid: 1066 - components: - - type: Transform - pos: -13.5,-9.5 - parent: 4812 - - uid: 1067 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 4812 - - uid: 1068 - components: - - type: Transform - pos: -11.5,-9.5 - parent: 4812 - - uid: 1069 - components: - - type: Transform - pos: -11.5,-5.5 - parent: 4812 - - uid: 1070 - components: - - type: Transform - pos: -12.5,-5.5 - parent: 4812 - - uid: 1071 - components: - - type: Transform - pos: -13.5,-5.5 - parent: 4812 - - uid: 1072 - components: - - type: Transform - pos: -14.5,-5.5 - parent: 4812 - - uid: 1073 - components: - - type: Transform - pos: -15.5,-5.5 - parent: 4812 - - uid: 1074 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 4812 -- proto: InflatableDoorStack - entities: - - uid: 9679 - components: - - type: Transform - pos: -30.41609,4.5644865 - parent: 4812 - - uid: 9680 - components: - - type: Transform - pos: -30.41609,4.5644865 - parent: 4812 -- proto: InflatableWallStack - entities: - - uid: 9677 - components: - - type: Transform - pos: -30.681715,4.7676115 - parent: 4812 - - uid: 9678 - components: - - type: Transform - pos: -30.681715,4.7676115 - parent: 4812 -- proto: IngotGold - entities: - - uid: 2712 - components: - - type: Transform - pos: -5.483521,25.426079 - parent: 4812 -- proto: IngotGold1 - entities: - - uid: 12458 - components: - - type: Transform - pos: -38.5391,25.681717 - parent: 4812 - - uid: 12459 - components: - - type: Transform - pos: -38.5391,25.681717 - parent: 4812 - - uid: 12460 - components: - - type: Transform - pos: -38.38285,25.619217 - parent: 4812 - - uid: 12461 - components: - - type: Transform - pos: -38.2891,25.541092 - parent: 4812 -- proto: IngotSilver - entities: - - uid: 2718 - components: - - type: Transform - pos: -5.446512,23.457329 - parent: 4812 -- proto: IntercomAll - entities: - - uid: 4850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,31.5 - parent: 4812 - - uid: 4851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,23.5 - parent: 4812 -- proto: IntercomCommand - entities: - - uid: 4834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 4812 - - uid: 4847 - components: - - type: Transform - pos: 6.5,30.5 - parent: 4812 - - uid: 4848 - components: - - type: Transform - pos: 17.5,36.5 - parent: 4812 - - uid: 4853 - components: - - type: Transform - pos: -19.5,26.5 - parent: 4812 - - uid: 12324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-8.5 - parent: 4812 - - uid: 12400 - components: - - type: Transform - pos: 11.5,54.5 - parent: 4812 -- proto: IntercomCommon - entities: - - uid: 4935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 4812 - - uid: 12391 - components: - - type: Transform - pos: -17.5,3.5 - parent: 4812 - - uid: 12392 - components: - - type: Transform - pos: 5.5,23.5 - parent: 4812 - - uid: 12393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 4812 - - uid: 12396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 4812 - - uid: 12397 - components: - - type: Transform - pos: -4.5,21.5 - parent: 4812 -- proto: IntercomEngineering - entities: - - uid: 12389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-9.5 - parent: 4812 - - uid: 12390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-0.5 - parent: 4812 -- proto: IntercomMedical - entities: - - uid: 4852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-35.5 - parent: 4812 -- proto: IntercomScience - entities: - - uid: 12394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 4812 - - uid: 12395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 4812 -- proto: IntercomSecurity - entities: - - uid: 4854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,9.5 - parent: 4812 -- proto: IntercomService - entities: - - uid: 3977 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 4812 - - uid: 4232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 4812 - - uid: 4673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 4812 - - uid: 4674 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 4812 -- proto: IntercomSupply - entities: - - uid: 4849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,20.5 - parent: 4812 -- proto: JanitorialTrolley - entities: - - uid: 1489 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 4812 -- proto: JetpackMini - entities: - - uid: 3412 - components: - - type: Transform - pos: 17.49418,49.5522 - parent: 4812 -- proto: KitchenKnife - entities: - - uid: 1642 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 4812 - - uid: 10998 - components: - - type: Transform - pos: -36.20571,29.520401 - parent: 4812 -- proto: KitchenMicrowave - entities: - - uid: 1561 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 4812 - - uid: 8428 - components: - - type: Transform - pos: -39.5,12.5 - parent: 4812 - - uid: 12494 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 4812 -- proto: KitchenReagentGrinder - entities: - - uid: 1454 - components: - - type: Transform - pos: -18.5,-8.5 - parent: 4812 - - uid: 1562 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 4812 - - uid: 6346 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 4812 - - uid: 6688 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 4812 - - uid: 9026 - components: - - type: Transform - pos: -40.5,-34.5 - parent: 4812 -- proto: KitchenSpike - entities: - - uid: 1536 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 4812 -- proto: Lamp - entities: - - uid: 1520 - components: - - type: Transform - pos: -17.392416,-1.3091464 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 2502 - components: - - type: Transform - pos: 5.335086,29.824064 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Physics - canCollide: True - - uid: 2535 - components: - - type: Transform - pos: 8.536261,24.755358 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Physics - canCollide: True - - uid: 2585 - components: - - type: Transform - pos: -10.435654,29.715694 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 2723 - components: - - type: Transform - pos: -3.451921,24.866032 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Physics - canCollide: True - - uid: 5376 - components: - - type: Transform - pos: 18.64816,-16.251589 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6291 - components: - - type: Transform - pos: 25.537617,-17.441427 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6409 - components: - - type: Transform - pos: -4.3562155,-15.356113 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 7077 - components: - - type: Transform - pos: -32.443592,-14.338358 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 7136 - components: - - type: Transform - pos: -31.474861,-18.271936 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8265 - components: - - type: Transform - pos: -21.463991,24.553658 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9576 - components: - - type: Transform - pos: -28.432161,1.6425915 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10704 - components: - - type: Transform - pos: -28.442137,-5.370996 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LampBanana - entities: - - uid: 1706 - components: - - type: Transform - pos: -10.503301,1.611648 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LampGold - entities: - - uid: 1762 - components: - - type: Transform - pos: -10.47069,9.477556 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 2589 - components: - - type: Transform - pos: -13.466904,27.76257 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8296 - components: - - type: Transform - pos: -18.397654,15.527645 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9064 - components: - - type: Transform - pos: -31.475683,-40.265636 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: Lantern - entities: - - uid: 7043 - components: - - type: Transform - pos: -18.349216,-33.27696 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 7149 - components: - - type: Transform - pos: -31.078482,-23.278105 - parent: 4812 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LeavesCannabis - entities: - - uid: 11295 - components: - - type: Transform - pos: 22.50683,-38.57403 - parent: 4812 -- proto: Lighter - entities: - - uid: 1759 - components: - - type: Transform - pos: -6.168007,4.498476 - parent: 4812 - - uid: 1760 - components: - - type: Transform - pos: 1.2657695,9.574495 - parent: 4812 - - uid: 11844 - components: - - type: Transform - pos: -7.3849344,12.439501 - parent: 4812 -- proto: LightReplacer - entities: - - uid: 1490 - components: - - type: Transform - pos: -23.51768,-6.333922 - parent: 4812 -- proto: LockerAtmosphericsFilled - entities: - - uid: 9570 - components: - - type: Transform - pos: -29.5,5.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9571 - components: - - type: Transform - pos: -28.5,5.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerBoozeFilled - entities: - - uid: 1648 - components: - - type: Transform - pos: 5.5,9.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerBotanistFilled - entities: - - uid: 1103 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerCaptainFilled - entities: - - uid: 2595 - components: - - type: Transform - pos: -10.5,28.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerChemistryFilled - entities: - - uid: 6609 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerChiefEngineerFilled - entities: - - uid: 9879 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 7453 - components: - - type: Transform - pos: -26.5,-28.5 - parent: 4812 -- proto: LockerDetectiveFilled - entities: - - uid: 5362 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 2578 - components: - - type: Transform - pos: 5.5,31.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 4491 - components: - - type: Transform - pos: 20.5,1.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10600 - components: - - type: Transform - pos: -47.5,-19.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 10722 - components: - - type: Transform - pos: -38.5,8.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerEngineerFilled - entities: - - uid: 9719 - components: - - type: Transform - pos: -33.5,-9.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9720 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9721 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerEvidence - entities: - - uid: 4977 - components: - - type: Transform - pos: -29.5,24.5 - parent: 4812 - - uid: 6735 - components: - - type: Transform - pos: -27.5,24.5 - parent: 4812 - - uid: 6736 - components: - - type: Transform - pos: -28.5,24.5 - parent: 4812 - - uid: 8359 - components: - - type: Transform - pos: -31.5,18.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerFreezer - entities: - - uid: 1538 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 234.99966 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 1563 - components: - - type: Transform - pos: 5.5,0.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 7394 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 4812 -- proto: LockerFreezerVaultFilled - entities: - - uid: 3454 - components: - - type: Transform - pos: -4.5,26.5 - parent: 4812 -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 2497 - components: - - type: Transform - pos: 5.5,28.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 8252 - components: - - type: Transform - pos: -21.5,28.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedical - entities: - - uid: 7328 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 4812 -- proto: LockerMedicalFilled - entities: - - uid: 7400 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 4812 - - uid: 7401 - components: - - type: Transform - pos: -8.5,-26.5 - parent: 4812 -- proto: LockerMedicineFilled - entities: - - uid: 7427 - components: - - type: Transform - pos: -22.5,-25.5 - parent: 4812 - - uid: 7579 - components: - - type: Transform - pos: -16.5,-20.5 - parent: 4812 - - uid: 9021 - components: - - type: Transform - pos: -39.5,-33.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerQuarterMasterFilled - entities: - - uid: 3441 - components: - - type: Transform - pos: 15.5,34.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6765 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerResearchDirectorFilled - entities: - - uid: 6286 - components: - - type: Transform - pos: 28.5,-18.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 6777 - components: - - type: Transform - pos: 22.5,16.5 - parent: 4812 - - uid: 6778 - components: - - type: Transform - pos: 24.5,16.5 - parent: 4812 -- proto: LockerScienceFilled - entities: - - uid: 12495 - components: - - type: Transform - pos: 9.5,-27.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12496 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerSecurityFilled - entities: - - uid: 6440 - components: - - type: Transform - pos: -1.5,-29.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8421 - components: - - type: Transform - pos: -33.5,12.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8422 - components: - - type: Transform - pos: -35.5,12.5 - parent: 4812 - - type: Lock - locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerWallMedicalFilled - entities: - - uid: 7430 - components: - - type: Transform - pos: -22.5,-21.5 - parent: 4812 -- proto: LockerWardenFilled - entities: - - uid: 8337 - components: - - type: Transform - pos: -36.5,14.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 9681 - components: - - type: Transform - pos: -28.5,3.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: MachineAnomalyGenerator - entities: - - uid: 6341 - components: - - type: Transform - pos: 33.5,-24.5 - parent: 4812 -- proto: MachineAnomalyVessel - entities: - - uid: 6360 - components: - - type: Transform - pos: 31.5,-28.5 - parent: 4812 -- proto: MachineAPE - entities: - - uid: 6338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-28.5 - parent: 4812 - - uid: 6359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-28.5 - parent: 4812 -- proto: MachineArtifactAnalyzer - entities: - - uid: 6319 - components: - - type: Transform - pos: 22.5,-29.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6313 -- proto: MachineCentrifuge - entities: - - uid: 3403 - components: - - type: Transform - pos: -12.5,-16.5 - parent: 4812 -- proto: MachineElectrolysisUnit - entities: - - uid: 2710 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 4812 -- proto: MachineFrame - entities: - - uid: 5048 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 4812 - - uid: 7197 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 4812 -- proto: MachineFrameDestroyed - entities: - - uid: 11661 - components: - - type: Transform - pos: 4.5,-40.5 - parent: 4812 -- proto: MaintenanceFluffSpawner - entities: - - uid: 278 - components: - - type: Transform - pos: -18.5,-1.5 - parent: 4812 - - uid: 1532 - components: - - type: Transform - pos: -18.5,5.5 - parent: 4812 - - uid: 4601 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 4812 - - uid: 4607 - components: - - type: Transform - pos: 16.5,11.5 - parent: 4812 - - uid: 7132 - components: - - type: Transform - pos: -32.5,-23.5 - parent: 4812 - - uid: 9065 - components: - - type: Transform - pos: -29.5,-35.5 - parent: 4812 - - uid: 10604 - components: - - type: Transform - pos: -45.5,-17.5 - parent: 4812 - - uid: 10605 - components: - - type: Transform - pos: -32.5,-28.5 - parent: 4812 - - uid: 10879 - components: - - type: Transform - pos: -33.5,8.5 - parent: 4812 - - uid: 11467 - components: - - type: Transform - pos: 31.5,-30.5 - parent: 4812 - - uid: 11914 - components: - - type: Transform - pos: 4.5,12.5 - parent: 4812 -- proto: MaintenancePlantSpawner - entities: - - uid: 10549 - components: - - type: Transform - pos: -13.5,13.5 - parent: 4812 - - uid: 10585 - components: - - type: Transform - pos: -29.5,-31.5 - parent: 4812 - - uid: 10586 - components: - - type: Transform - pos: 22.5,-34.5 - parent: 4812 -- proto: MaintenanceToolSpawner - entities: - - uid: 4608 - components: - - type: Transform - pos: 17.5,11.5 - parent: 4812 - - uid: 10904 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 4812 - - uid: 12464 - components: - - type: Transform - pos: -37.5,25.5 - parent: 4812 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 4609 - components: - - type: Transform - pos: 19.5,7.5 - parent: 4812 - - uid: 9081 - components: - - type: Transform - pos: -28.5,-27.5 - parent: 4812 - - uid: 12425 - components: - - type: Transform - pos: -53.5,-18.5 - parent: 4812 -- proto: Matchbox - entities: - - uid: 1761 - components: - - type: Transform - pos: 1.5470195,6.5276203 - parent: 4812 - - uid: 2736 - components: - - type: Transform - pos: -2.4627259,28.584373 - parent: 4812 -- proto: MaterialCloth - entities: - - uid: 2538 - components: - - type: Transform - pos: 8.4956045,29.699007 - parent: 4812 -- proto: MaterialDiamond1 - entities: - - uid: 2731 - components: - - type: Transform - pos: 0.5144601,26.613579 - parent: 4812 -- proto: MaterialDurathread - entities: - - uid: 2539 - components: - - type: Transform - pos: 8.48969,29.428799 - parent: 4812 -- proto: MaterialReclaimer - entities: - - uid: 4807 - components: - - type: Transform - pos: 20.5,19.5 - parent: 4812 -- proto: MaterialWoodPlank - entities: - - uid: 8415 - components: - - type: Transform - pos: -49.460716,-16.464205 - parent: 4812 -- proto: MedicalBed - entities: - - uid: 7572 - components: - - type: Transform - pos: -14.5,-23.5 - parent: 4812 - - uid: 7573 - components: - - type: Transform - pos: -17.5,-23.5 - parent: 4812 - - uid: 9034 - components: - - type: Transform - pos: -37.5,-37.5 - parent: 4812 -- proto: MedicalTechFab - entities: - - uid: 7398 - components: - - type: Transform - pos: -9.5,-28.5 - parent: 4812 -- proto: MedkitAdvancedFilled - entities: - - uid: 7460 - components: - - type: Transform - pos: -24.550219,-27.2501 - parent: 4812 -- proto: MedkitBruteFilled - entities: - - uid: 7407 - components: - - type: Transform - pos: -10.646522,-25.180182 - parent: 4812 -- proto: MedkitBurnFilled - entities: - - uid: 4535 - components: - - type: Transform - pos: 13.526362,-0.44057345 - parent: 4812 - - uid: 7408 - components: - - type: Transform - pos: -10.521522,-25.336432 - parent: 4812 -- proto: MedkitCombatFilled - entities: - - uid: 7459 - components: - - type: Transform - pos: -24.393969,-27.453224 - parent: 4812 -- proto: MedkitFilled - entities: - - uid: 2678 - components: - - type: Transform - pos: -8.488935,34.56198 - parent: 4812 -- proto: MedkitToxinFilled - entities: - - uid: 7409 - components: - - type: Transform - pos: -10.318397,-25.523932 - parent: 4812 -- proto: MicrophoneInstrument - entities: - - uid: 12381 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 9099 - - type: Physics - canCollide: False -- proto: MinimoogInstrument - entities: - - uid: 9054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-39.5 - parent: 4812 -- proto: Mirror - entities: - - uid: 3716 - components: - - type: Transform - pos: 20.5,35.5 - parent: 4812 - - uid: 3788 - components: - - type: Transform - pos: 14.5,9.5 - parent: 4812 - - uid: 7031 - components: - - type: Transform - pos: -25.5,-33.5 - parent: 4812 -- proto: MonkeyCubeWrapped - entities: - - uid: 8341 - components: - - type: Transform - pos: 6.243659,6.255819 - parent: 4812 -- proto: MopBucket - entities: - - uid: 1478 - components: - - type: Transform - pos: -20.532074,-3.4493594 - parent: 4812 - - uid: 11938 - components: - - type: Transform - pos: -11.467581,17.581944 - parent: 4812 -- proto: MopItem - entities: - - uid: 1498 - components: - - type: Transform - pos: -20.685179,-8.436821 - parent: 4812 - - uid: 1519 - components: - - type: Transform - pos: -20.529812,-3.4716563 - parent: 4812 - - uid: 11939 - components: - - type: Transform - pos: -10.498831,17.519444 - parent: 4812 - - uid: 11940 - components: - - type: Transform - pos: -10.498831,17.300694 - parent: 4812 -- proto: Morgue - entities: - - uid: 5011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 4812 - - uid: 7333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-17.5 - parent: 4812 - - uid: 7334 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-16.5 - parent: 4812 - - uid: 7368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 4812 -- proto: Multitool - entities: - - uid: 2680 - components: - - type: Transform - pos: -3.5045605,34.68698 - parent: 4812 - - uid: 3370 - components: - - type: Transform - pos: 14.511745,18.570736 - parent: 4812 - - uid: 6197 - components: - - type: Transform - pos: 7.576914,-16.642956 - parent: 4812 - - uid: 8593 - components: - - type: Transform - pos: -19.531754,12.581865 - parent: 4812 - - uid: 10707 - components: - - type: Transform - pos: -32.481808,-7.2820773 - parent: 4812 -- proto: NanoManipulatorStockPart - entities: - - uid: 6202 - components: - - type: Transform - pos: 7.436289,-15.783581 - parent: 4812 - - uid: 6203 - components: - - type: Transform - pos: 7.623789,-15.783581 - parent: 4812 - - uid: 6204 - components: - - type: Transform - pos: 7.811289,-15.783581 - parent: 4812 -- proto: NitrogenCanister - entities: - - uid: 4604 - components: - - type: Transform - pos: 15.5,11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 6327 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9448 - components: - - type: Transform - pos: -53.5,1.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9667 - components: - - type: Transform - pos: -33.5,4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9668 - components: - - type: Transform - pos: -33.5,5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 11786 - components: - - type: Transform - pos: 21.5,-32.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: NuclearBomb - entities: - - uid: 1854 - components: - - type: Transform - pos: -2.5,26.5 - parent: 4812 -- proto: NuclearBombKeg - entities: - - uid: 11642 - components: - - type: Transform - pos: 16.5,-44.5 - parent: 4812 -- proto: OperatingTable - entities: - - uid: 6167 - components: - - type: Transform - pos: 15.5,-28.5 - parent: 4812 - - uid: 7067 - components: - - type: Transform - pos: -20.5,-25.5 - parent: 4812 - - uid: 7244 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 4812 - - uid: 7444 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 4812 -- proto: OreProcessor - entities: - - uid: 2902 - components: - - type: Transform - pos: 21.5,15.5 - parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Plasma - - Uranium - - Gold - - Silver -- proto: OrganHumanAppendix - entities: - - uid: 4596 - components: - - type: Transform - pos: -53.373444,-16.451925 - parent: 4812 -- proto: OxygenCanister - entities: - - uid: 733 - components: - - type: Transform - pos: 9.5,17.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 4603 - components: - - type: Transform - pos: 14.5,11.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 6328 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 8849 - components: - - type: Transform - pos: -13.5,-28.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9450 - components: - - type: Transform - pos: -53.5,3.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9669 - components: - - type: Transform - pos: -32.5,4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9670 - components: - - type: Transform - pos: -32.5,5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 10740 - components: - - type: Transform - pos: -46.5,-9.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 10878 - components: - - type: Transform - pos: -34.5,8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 10917 - components: - - type: Transform - pos: -47.5,-23.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 11787 - components: - - type: Transform - pos: 20.5,-32.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: OxygenTankFilled - entities: - - uid: 11792 - components: - - type: Transform - pos: 19.577671,-32.613243 - parent: 4812 -- proto: PaintingAmogusTriptych - entities: - - uid: 7003 - components: - - type: Transform - pos: -21.5,6.5 - parent: 4812 -- proto: PaintingMonkey - entities: - - uid: 1659 - components: - - type: Transform - pos: 4.5,9.5 - parent: 4812 -- proto: PaintingNightHawks - entities: - - uid: 1674 - components: - - type: Transform - pos: 1.5,4.5 - parent: 4812 -- proto: PaintingOlympia - entities: - - uid: 7741 - components: - - type: Transform - pos: -28.5,-35.5 - parent: 4812 -- proto: PaintingRedBlueYellow - entities: - - uid: 8380 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 4812 -- proto: PaintingSadClown - entities: - - uid: 9634 - components: - - type: Transform - pos: -7.5,2.5 - parent: 4812 -- proto: PaintingSleepingGypsy - entities: - - uid: 7742 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 4812 -- proto: Paper - entities: - - uid: 2520 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2521 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2522 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2523 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2524 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2525 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2526 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2527 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2528 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2529 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2530 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2531 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2532 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2533 - components: - - type: Transform - pos: 8.567815,26.553799 - parent: 4812 - - uid: 2556 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2557 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2558 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2559 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2560 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2561 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2562 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2563 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2564 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2565 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2566 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2567 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2568 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2569 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2570 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2571 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2572 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2573 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2574 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 2575 - components: - - type: Transform - pos: 10.478969,22.565956 - parent: 4812 - - uid: 3246 - components: - - type: Transform - pos: 17.509274,13.545517 - parent: 4812 - - uid: 3247 - components: - - type: Transform - pos: 17.509274,13.545517 - parent: 4812 - - uid: 3248 - components: - - type: Transform - pos: 17.509274,13.545517 - parent: 4812 - - uid: 3249 - components: - - type: Transform - pos: 17.509274,13.545517 - parent: 4812 - - uid: 3250 - components: - - type: Transform - pos: 17.509274,13.545517 - parent: 4812 - - uid: 3251 - components: - - type: Transform - pos: 17.509274,13.545517 - parent: 4812 - - uid: 3252 - components: - - type: Transform - pos: 17.509274,13.545517 - parent: 4812 - - uid: 3253 - components: - - type: Transform - pos: 17.509274,13.545517 - parent: 4812 - - uid: 3254 - components: - - type: Transform - pos: 17.509274,13.545517 - parent: 4812 - - uid: 3255 - components: - - type: Transform - pos: 17.509274,13.545517 - parent: 4812 - - uid: 3881 - components: - - type: Transform - pos: 11.504802,56.565136 - parent: 4812 - - uid: 7006 - components: - - type: Transform - pos: -31.49619,-23.373245 - parent: 4812 - - uid: 7138 - components: - - type: Transform - pos: -28.318611,-14.584436 - parent: 4812 - - uid: 7139 - components: - - type: Transform - pos: -28.537361,-15.271936 - parent: 4812 - - uid: 7140 - components: - - type: Transform - pos: -27.677986,-15.271936 - parent: 4812 - - uid: 7141 - components: - - type: Transform - pos: -27.427986,-14.693811 - parent: 4812 - - uid: 7173 - components: - - type: Transform - pos: -31.49619,-23.373245 - parent: 4812 - - uid: 7174 - components: - - type: Transform - pos: -31.49619,-23.373245 - parent: 4812 - - uid: 7175 - components: - - type: Transform - pos: -31.49619,-23.373245 - parent: 4812 - - uid: 7176 - components: - - type: Transform - pos: -31.49619,-23.373245 - parent: 4812 - - uid: 7177 - components: - - type: Transform - pos: -31.49619,-23.373245 - parent: 4812 - - uid: 7178 - components: - - type: Transform - pos: -31.49619,-23.373245 - parent: 4812 - - uid: 7179 - components: - - type: Transform - pos: -31.49619,-23.373245 - parent: 4812 - - uid: 7180 - components: - - type: Transform - pos: -31.49619,-23.373245 - parent: 4812 - - uid: 7181 - components: - - type: Transform - pos: -31.49619,-23.373245 - parent: 4812 - - uid: 8395 - components: - - type: Transform - pos: -25.484861,30.57598 - parent: 4812 -- proto: ParchisBoard - entities: - - uid: 10866 - components: - - type: Transform - pos: -21.575394,0.5961678 - parent: 4812 -- proto: PartRodMetal - entities: - - uid: 1677 - components: - - type: Transform - pos: 3.5454316,14.514967 - parent: 4812 - - uid: 8583 - components: - - type: Transform - pos: -16.530659,7.5992785 - parent: 4812 - - uid: 9675 - components: - - type: Transform - pos: -30.275465,5.5801115 - parent: 4812 - - uid: 9676 - components: - - type: Transform - pos: -30.275465,5.5801115 - parent: 4812 - - uid: 11950 - components: - - type: Transform - pos: -14.576956,16.050694 - parent: 4812 - - uid: 11951 - components: - - type: Transform - pos: -14.389456,16.019444 - parent: 4812 -- proto: Pen - entities: - - uid: 2576 - components: - - type: Transform - pos: 10.697719,22.769081 - parent: 4812 - - uid: 3256 - components: - - type: Transform - pos: 17.728024,13.748642 - parent: 4812 - - uid: 3277 - components: - - type: Transform - pos: 22.826836,12.68298 - parent: 4812 - - uid: 3882 - components: - - type: Transform - pos: 11.754802,56.73701 - parent: 4812 - - uid: 6412 - components: - - type: Transform - pos: -0.24684072,-19.262363 - parent: 4812 - - uid: 7143 - components: - - type: Transform - pos: -28.256111,-15.131311 - parent: 4812 - - uid: 7144 - components: - - type: Transform - pos: -27.318611,-14.334436 - parent: 4812 - - uid: 8396 - components: - - type: Transform - pos: -25.234861,30.76348 - parent: 4812 -- proto: PersonalAI - entities: - - uid: 1767 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -2.5035148,7.4145155 - parent: 4812 - - uid: 3963 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 9.496426,48.542255 - parent: 4812 - - uid: 6307 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 26.432638,-19.383717 - parent: 4812 - - uid: 7142 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -28.490486,-14.614019 - parent: 4812 - - uid: 10864 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -22.475502,3.5391276 - parent: 4812 - - uid: 10865 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 6.426591,-28.501112 - parent: 4812 -- proto: PestSpray - entities: - - uid: 1475 - components: - - type: Transform - pos: -8.549381,-7.3677278 - parent: 4812 -- proto: PhoneInstrument - entities: - - uid: 1953 - components: - - type: Transform - pos: -12.499591,23.511097 - parent: 4812 - - uid: 3581 - components: - - type: Transform - pos: 15.253733,35.810513 - parent: 4812 -- proto: PianoInstrument - entities: - - uid: 1749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,9.5 - parent: 4812 -- proto: Pickaxe - entities: - - uid: 3273 - components: - - type: Transform - pos: 22.483086,13.573605 - parent: 4812 - - uid: 3274 - components: - - type: Transform - pos: 22.576836,13.43298 - parent: 4812 - - uid: 3785 - components: - - type: Transform - pos: 17.50081,55.46929 - parent: 4812 - - uid: 10610 - components: - - type: Transform - pos: -48.49922,-23.375322 - parent: 4812 - - uid: 10611 - components: - - type: Transform - pos: -48.358597,-23.531572 - parent: 4812 - - uid: 11617 - components: - - type: Transform - pos: 37.304466,-40.56443 - parent: 4812 - - uid: 11678 - components: - - type: Transform - pos: 28.462547,-39.447342 - parent: 4812 -- proto: PinpointerNuclear - entities: - - uid: 2722 - components: - - type: Transform - pos: -1.524637,24.582329 - parent: 4812 -- proto: PlantBGoneSpray - entities: - - uid: 1474 - components: - - type: Transform - pos: -7.4868813,-7.4614778 - parent: 4812 -- proto: PlaqueAtmos - entities: - - uid: 11861 - components: - - type: Transform - pos: -30.5,6.5 - parent: 4812 -- proto: PlasmaCanister - entities: - - uid: 9457 - components: - - type: Transform - pos: -53.5,9.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 2779 - components: - - type: Transform - pos: 21.5,28.5 - parent: 4812 - - uid: 2780 - components: - - type: Transform - pos: 23.5,24.5 - parent: 4812 - - uid: 2843 - components: - - type: Transform - pos: 21.5,24.5 - parent: 4812 - - uid: 2856 - components: - - type: Transform - pos: 13.5,20.5 - parent: 4812 - - uid: 2857 - components: - - type: Transform - pos: 18.5,22.5 - parent: 4812 - - uid: 2940 - components: - - type: Transform - pos: 23.5,28.5 - parent: 4812 - - uid: 4432 - components: - - type: Transform - pos: 29.5,-6.5 - parent: 4812 - - uid: 8622 - components: - - type: Transform - pos: -32.5,0.5 - parent: 4812 -- proto: PlushieBee - entities: - - uid: 11334 - components: - - type: Transform - pos: 22.549774,-36.48487 - parent: 4812 -- proto: PlushieLizard - entities: - - uid: 10916 - components: - - type: Transform - pos: -44.486626,-24.313948 - parent: 4812 -- proto: PortableFlasher - entities: - - uid: 12520 - components: - - type: Transform - pos: -36.5,20.5 - parent: 4812 -- proto: PortableGeneratorJrPacman - entities: - - uid: 3359 - components: - - type: Transform - pos: -30.5,7.5 - parent: 4812 - - uid: 3360 - components: - - type: Transform - pos: 13.5,29.5 - parent: 4812 - - uid: 12056 - components: - - type: Transform - pos: -45.5,-14.5 - parent: 4812 - - uid: 12057 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 4812 - - uid: 12069 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 4812 - - uid: 12070 - components: - - type: Transform - pos: 3.5,12.5 - parent: 4812 -- proto: PortableGeneratorPacman - entities: - - uid: 10728 - components: - - type: Transform - pos: -50.5,-11.5 - parent: 4812 -- proto: PortableGeneratorPacmanMachineCircuitboard - entities: - - uid: 4494 - components: - - type: Transform - pos: 17.411211,1.6407971 - parent: 4812 -- proto: PortableGeneratorSuperPacman - entities: - - uid: 3426 - components: - - type: Transform - pos: -48.5,-11.5 - parent: 4812 -- proto: PortableScrubber - entities: - - uid: 3446 - components: - - type: Transform - pos: -34.5,-0.5 - parent: 4812 - - uid: 3709 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 4812 - - uid: 8406 - components: - - type: Transform - pos: -13.5,15.5 - parent: 4812 - - uid: 9032 - components: - - type: Transform - pos: -12.5,15.5 - parent: 4812 -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 11860 - components: - - type: Transform - pos: -36.5,6.5 - parent: 4812 -- proto: PosterContrabandClown - entities: - - uid: 1714 - components: - - type: Transform - pos: -6.5,0.5 - parent: 4812 -- proto: PosterContrabandEAT - entities: - - uid: 1782 - components: - - type: Transform - pos: 5.5,1.5 - parent: 4812 -- proto: PosterContrabandFreeDrone - entities: - - uid: 11936 - components: - - type: Transform - pos: -11.5,14.5 - parent: 4812 -- proto: PosterContrabandHackingGuide - entities: - - uid: 8605 - components: - - type: Transform - pos: -15.5,8.5 - parent: 4812 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 10774 - components: - - type: Transform - pos: -35.5,-6.5 - parent: 4812 -- proto: PosterContrabandLamarr - entities: - - uid: 6292 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 4812 -- proto: PosterContrabandMissingGloves - entities: - - uid: 8606 - components: - - type: Transform - pos: -15.5,12.5 - parent: 4812 -- proto: PosterContrabandNuclearDeviceInformational - entities: - - uid: 12151 - components: - - type: Transform - pos: -1.5,27.5 - parent: 4812 -- proto: PosterContrabandSpaceCola - entities: - - uid: 1781 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 4812 -- proto: PosterContrabandTools - entities: - - uid: 8608 - components: - - type: Transform - pos: -21.5,7.5 - parent: 4812 -- proto: PosterContrabandVoteWeh - entities: - - uid: 10912 - components: - - type: Transform - pos: -42.5,-22.5 - parent: 4812 -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 6366 - components: - - type: Transform - pos: 36.5,-24.5 - parent: 4812 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 9627 - components: - - type: Transform - pos: -23.5,-21.5 - parent: 4812 - - uid: 9628 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 4812 -- proto: PosterLegitCarpMount - entities: - - uid: 9635 - components: - - type: Transform - pos: 21.5,17.5 - parent: 4812 -- proto: PosterLegitCleanliness - entities: - - uid: 4586 - components: - - type: Transform - pos: 14.5,5.5 - parent: 4812 - - uid: 7046 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 4812 -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 5360 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 4812 - - uid: 6488 - components: - - type: Transform - pos: -2.5,-20.5 - parent: 4812 -- proto: PosterLegitIan - entities: - - uid: 4527 - components: - - type: Transform - pos: 10.5,23.5 - parent: 4812 -- proto: PosterLegitLoveIan - entities: - - uid: 4528 - components: - - type: Transform - pos: 8.5,30.5 - parent: 4812 -- proto: PosterLegitMime - entities: - - uid: 9629 - components: - - type: Transform - pos: -9.5,2.5 - parent: 4812 -- proto: PosterLegitNanomichiAd - entities: - - uid: 4529 - components: - - type: Transform - pos: 11.5,25.5 - parent: 4812 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 1463 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 4812 - - uid: 1793 - components: - - type: Transform - pos: -5.5,15.5 - parent: 4812 - - uid: 1794 - components: - - type: Transform - pos: 0.5,15.5 - parent: 4812 - - uid: 2933 - components: - - type: Transform - pos: -9.5,21.5 - parent: 4812 - - uid: 2934 - components: - - type: Transform - pos: -9.5,33.5 - parent: 4812 - - uid: 2935 - components: - - type: Transform - pos: 4.5,33.5 - parent: 4812 - - uid: 2936 - components: - - type: Transform - pos: -15.5,26.5 - parent: 4812 - - uid: 3425 - components: - - type: Transform - pos: 26.5,3.5 - parent: 4812 - - uid: 4526 - components: - - type: Transform - pos: 13.5,11.5 - parent: 4812 - - uid: 4531 - components: - - type: Transform - pos: 1.5,27.5 - parent: 4812 - - uid: 4532 - components: - - type: Transform - pos: -6.5,27.5 - parent: 4812 - - uid: 4583 - components: - - type: Transform - pos: 23.5,-4.5 - parent: 4812 - - uid: 6486 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 4812 - - uid: 6487 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 4812 - - uid: 8301 - components: - - type: Transform - pos: -21.5,18.5 - parent: 4812 -- proto: PosterLegitNoERP - entities: - - uid: 4587 - components: - - type: Transform - pos: 17.5,6.5 - parent: 4812 - - uid: 7450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-27.5 - parent: 4812 -- proto: PosterLegitNTTGC - entities: - - uid: 11336 - components: - - type: Transform - pos: -30.5,-13.5 - parent: 4812 -- proto: PosterLegitPeriodicTable - entities: - - uid: 10738 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 4812 -- proto: PosterLegitRenault - entities: - - uid: 11275 - components: - - type: Transform - pos: -13.5,21.5 - parent: 4812 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 10996 - components: - - type: Transform - pos: -37.5,-9.5 - parent: 4812 -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 10747 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 4812 -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 10918 - components: - - type: Transform - pos: -27.5,-5.5 - parent: 4812 -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 10739 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 4812 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 10906 - components: - - type: Transform - pos: -44.5,-0.5 - parent: 4812 -- proto: PosterLegitScience - entities: - - uid: 6367 - components: - - type: Transform - pos: 30.5,-28.5 - parent: 4812 -- proto: PosterLegitVacation - entities: - - uid: 10766 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 4812 -- proto: PottedPlant0 - entities: - - uid: 6625 - components: - - type: Transform - pos: -31.5,22.5 - parent: 4812 - - uid: 6738 - components: - - type: Transform - pos: -25.5,22.5 - parent: 4812 -- proto: PottedPlant1 - entities: - - uid: 6333 - components: - - type: Transform - pos: 31.5,-23.5 - parent: 4812 - - uid: 6334 - components: - - type: Transform - pos: 35.5,-23.5 - parent: 4812 -- proto: PottedPlant10 - entities: - - uid: 7441 - components: - - type: Transform - pos: -26.5,-22.5 - parent: 4812 -- proto: PottedPlantBioluminscent - entities: - - uid: 6355 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 4812 -- proto: PottedPlantRandom - entities: - - uid: 924 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 925 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 926 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 927 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 928 - components: - - type: Transform - pos: -0.5,11.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 929 - components: - - type: Transform - pos: -4.5,11.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 937 - components: - - type: Transform - pos: 0.5,1.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 938 - components: - - type: Transform - pos: -5.5,-2.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 1730 - components: - - type: Transform - pos: -7.5,9.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 1731 - components: - - type: Transform - pos: -7.5,8.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 1799 - components: - - type: Transform - pos: -5.5,18.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 1800 - components: - - type: Transform - pos: 0.5,18.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 2598 - components: - - type: Transform - pos: -12.5,25.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 2600 - components: - - type: Transform - pos: -10.5,22.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 2681 - components: - - type: Transform - pos: -6.5,33.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 2682 - components: - - type: Transform - pos: 1.5,33.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 2683 - components: - - type: Transform - pos: -5.5,30.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 2684 - components: - - type: Transform - pos: 0.5,30.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 3258 - components: - - type: Transform - pos: 17.5,17.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 4550 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 4577 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 4600 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5062 - components: - - type: Transform - pos: -9.5,-48.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5063 - components: - - type: Transform - pos: -12.5,-48.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5064 - components: - - type: Transform - pos: -12.5,-45.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 6191 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 6390 - components: - - type: Transform - pos: -2.5,-19.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 6391 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 6438 - components: - - type: Transform - pos: 2.5,-34.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 7045 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 4812 - - uid: 8288 - components: - - type: Transform - pos: -20.5,17.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 9683 - components: - - type: Transform - pos: -36.5,4.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 9684 - components: - - type: Transform - pos: -29.5,-0.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 9685 - components: - - type: Transform - pos: -29.5,-3.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 9834 - components: - - type: Transform - pos: -48.5,-9.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 10860 - components: - - type: Transform - pos: -22.5,-1.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 11290 - components: - - type: Transform - pos: 17.5,-38.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 11291 - components: - - type: Transform - pos: 20.5,-36.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 11292 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 11293 - components: - - type: Transform - pos: 17.5,-36.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} -- proto: PottedPlantRD - entities: - - uid: 6290 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 4812 -- proto: PowerCellRecharger - entities: - - uid: 1687 - components: - - type: Transform - pos: 7.5,16.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 2668 - components: - - type: Transform - pos: 1.5,34.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 3880 - components: - - type: Transform - pos: 9.5,56.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 6194 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 6229 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 8579 - components: - - type: Transform - pos: -20.5,7.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 10713 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 10849 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 4812 - - type: Physics - canCollide: False -- proto: PowerDrill - entities: - - uid: 6309 - components: - - type: Transform - pos: 28.456348,-20.243092 - parent: 4812 -- proto: Poweredlight - entities: - - uid: 1515 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1516 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1518 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1665 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1666 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1667 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1668 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1669 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1670 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1671 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,9.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1672 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1673 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1975 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,15.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1983 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,15.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2541 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2542 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2543 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,27.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2544 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,22.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2545 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,26.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2622 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,28.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2623 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,24.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2624 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2625 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,28.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2626 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,23.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2627 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2628 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,34.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2629 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,34.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2630 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,35.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2631 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,35.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2687 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,31.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2688 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,31.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2689 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2690 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,18.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2691 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,13.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2692 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2694 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,20.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2696 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,20.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2733 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,24.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2734 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,24.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2776 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,31.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2784 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,20.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2785 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,20.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3216 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,17.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3217 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3218 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3219 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,21.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3220 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,27.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3221 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,23.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3965 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,56.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3966 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,50.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3967 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,54.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3968 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,50.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3969 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,50.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3970 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,54.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3971 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,43.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3972 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,47.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3973 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,47.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4468 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4469 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4470 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4471 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-2.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4472 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4473 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,4.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4474 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4475 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,0.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4476 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-7.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4952 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-25.5 - parent: 4812 - - uid: 4953 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-23.5 - parent: 4812 - - uid: 4954 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-27.5 - parent: 4812 - - uid: 4986 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-27.5 - parent: 4812 - - uid: 5067 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-53.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5068 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5069 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-45.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5070 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-45.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5283 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-34.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5284 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-34.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6258 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6259 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6260 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-17.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6261 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-28.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6262 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-23.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6263 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6264 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6265 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6266 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-20.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6267 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-20.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6268 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-16.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6269 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6270 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-30.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6271 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-22.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6272 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-26.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6273 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6274 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6275 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6276 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-23.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6277 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-28.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6478 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7019 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-34.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7024 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7028 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-15.5 - parent: 4812 - - uid: 7053 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-28.5 - parent: 4812 - - uid: 7288 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-20.5 - parent: 4812 - - uid: 7367 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 4812 - - uid: 7397 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-22.5 - parent: 4812 - - uid: 7582 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-20.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7583 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-18.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7621 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-21.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7622 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-19.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7623 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,-11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7624 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7625 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7626 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7627 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7628 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-23.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7629 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7630 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7631 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7632 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8141 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8142 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,16.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8143 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,16.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8144 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8145 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8247 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,28.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8251 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-27.5 - parent: 4812 - - uid: 8269 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,25.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8304 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,18.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8305 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,15.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8603 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8604 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,7.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9017 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-33.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9311 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9312 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,3.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9313 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9314 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,7.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9315 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,9.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9316 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9317 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,0.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9318 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,4.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9319 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,8.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9320 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9706 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9707 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9819 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9820 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,10.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9821 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,0.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9822 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9823 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10660 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10661 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-10.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10680 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-6.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10681 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10682 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-10.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10684 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-18.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10686 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10687 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10688 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10689 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-0.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10690 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,8.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10691 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,13.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10692 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10693 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10694 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-6.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10695 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10920 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-9.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11246 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-37.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11247 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-41.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11248 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-37.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11916 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11917 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11918 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11920 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-35.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11921 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11923 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11924 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11926 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-7.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11961 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,17.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredlightEmpty - entities: - - uid: 11249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-41.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-33.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredSmallLight - entities: - - uid: 255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 256 - components: - - type: Transform - pos: -18.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1664 - components: - - type: Transform - pos: 6.5,9.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1724 - components: - - type: Transform - pos: -9.5,1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,8.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,7.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1803 - components: - - type: Transform - pos: 4.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1804 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1805 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1806 - components: - - type: Transform - pos: -20.5,-3.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1807 - components: - - type: Transform - pos: -9.5,13.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,31.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,34.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,24.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2777 - components: - - type: Transform - pos: 22.5,28.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,35.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3224 - components: - - type: Transform - pos: 27.5,15.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3280 - components: - - type: Transform - pos: 22.5,8.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3733 - components: - - type: Transform - pos: 24.5,4.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3770 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3974 - components: - - type: Transform - pos: 3.5,46.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4466 - components: - - type: Transform - pos: 15.5,8.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4467 - components: - - type: Transform - pos: 20.5,11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4480 - components: - - type: Transform - pos: 19.5,2.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4481 - components: - - type: Transform - pos: 22.5,1.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4482 - components: - - type: Transform - pos: 16.5,11.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4545 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4546 - components: - - type: Transform - pos: 21.5,-6.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-16.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6278 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6279 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,24.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6281 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-39.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7022 - components: - - type: Transform - pos: -23.5,-35.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-36.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 4812 - - uid: 7069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 4812 - - uid: 7150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-22.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7152 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 4812 - - uid: 7796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-19.5 - parent: 4812 - - uid: 8146 - components: - - type: Transform - pos: -26.5,20.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8147 - components: - - type: Transform - pos: -26.5,17.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,10.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,27.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,27.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,30.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,31.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,28.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,26.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8454 - components: - - type: Transform - pos: -25.5,14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-37.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9016 - components: - - type: Transform - pos: -33.5,-33.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9042 - components: - - type: Transform - pos: -34.5,-36.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9048 - components: - - type: Transform - pos: -27.5,-39.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-40.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-40.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-40.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-31.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9073 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9531 - components: - - type: Transform - pos: -48.5,-4.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9659 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-3.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10408 - components: - - type: Transform - pos: -55.5,-22.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10409 - components: - - type: Transform - pos: -52.5,-22.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10410 - components: - - type: Transform - pos: -47.5,-19.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10520 - components: - - type: Transform - pos: -37.5,-22.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-28.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-30.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10696 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10880 - components: - - type: Transform - pos: -30.5,8.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10881 - components: - - type: Transform - pos: -38.5,8.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10919 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11256 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-38.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-33.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11462 - components: - - type: Transform - pos: 32.5,-36.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11474 - components: - - type: Transform - pos: 36.5,-36.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11476 - components: - - type: Transform - pos: 18.5,-36.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,24.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11813 - components: - - type: Transform - pos: -14.5,0.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11868 - components: - - type: Transform - pos: -14.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: Protolathe - entities: - - uid: 6182 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - - uid: 10699 - components: - - type: Transform - pos: -28.5,-6.5 - parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold -- proto: ProtolatheMachineCircuitboard - entities: - - uid: 4495 - components: - - type: Transform - pos: 17.598711,1.4220471 - parent: 4812 -- proto: Rack - entities: - - uid: 1652 - components: - - type: Transform - pos: 5.5,8.5 - parent: 4812 - - uid: 1675 - components: - - type: Transform - pos: 3.5,14.5 - parent: 4812 - - uid: 2699 - components: - - type: Transform - pos: 0.5,23.5 - parent: 4812 - - uid: 2700 - components: - - type: Transform - pos: 0.5,24.5 - parent: 4812 - - uid: 2701 - components: - - type: Transform - pos: 0.5,25.5 - parent: 4812 - - uid: 3267 - components: - - type: Transform - pos: 22.5,13.5 - parent: 4812 - - uid: 3289 - components: - - type: Transform - pos: 23.5,7.5 - parent: 4812 - - uid: 3392 - components: - - type: Transform - pos: 23.5,8.5 - parent: 4812 - - uid: 3393 - components: - - type: Transform - pos: 21.5,8.5 - parent: 4812 - - uid: 3404 - components: - - type: Transform - pos: -47.5,-13.5 - parent: 4812 - - uid: 3442 - components: - - type: Transform - pos: 21.5,7.5 - parent: 4812 - - uid: 3748 - components: - - type: Transform - pos: 21.5,5.5 - parent: 4812 - - uid: 3750 - components: - - type: Transform - pos: 25.5,3.5 - parent: 4812 - - uid: 3751 - components: - - type: Transform - pos: 25.5,4.5 - parent: 4812 - - uid: 3752 - components: - - type: Transform - pos: 21.5,4.5 - parent: 4812 - - uid: 4485 - components: - - type: Transform - pos: 19.5,6.5 - parent: 4812 - - uid: 4486 - components: - - type: Transform - pos: 19.5,8.5 - parent: 4812 - - uid: 4493 - components: - - type: Transform - pos: 17.5,1.5 - parent: 4812 - - uid: 4539 - components: - - type: Transform - pos: 21.5,-6.5 - parent: 4812 - - uid: 4605 - components: - - type: Transform - pos: 16.5,11.5 - parent: 4812 - - uid: 6226 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 4812 - - uid: 6227 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 4812 - - uid: 8276 - components: - - type: Transform - pos: -16.5,16.5 - parent: 4812 - - uid: 8377 - components: - - type: Transform - pos: -35.5,19.5 - parent: 4812 - - uid: 8424 - components: - - type: Transform - pos: -37.5,12.5 - parent: 4812 - - uid: 10526 - components: - - type: Transform - pos: -41.5,-30.5 - parent: 4812 - - uid: 10603 - components: - - type: Transform - pos: -45.5,-17.5 - parent: 4812 - - uid: 10612 - components: - - type: Transform - pos: -48.5,-23.5 - parent: 4812 - - uid: 10721 - components: - - type: Transform - pos: -36.5,8.5 - parent: 4812 - - uid: 10877 - components: - - type: Transform - pos: -33.5,8.5 - parent: 4812 - - uid: 10898 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 4812 - - uid: 10899 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 4812 - - uid: 10979 - components: - - type: Transform - pos: -37.5,26.5 - parent: 4812 - - uid: 11306 - components: - - type: Transform - pos: 26.5,-35.5 - parent: 4812 - - uid: 11307 - components: - - type: Transform - pos: 24.5,-35.5 - parent: 4812 - - uid: 11308 - components: - - type: Transform - pos: 24.5,-36.5 - parent: 4812 - - uid: 11471 - components: - - type: Transform - pos: 28.5,-35.5 - parent: 4812 - - uid: 11776 - components: - - type: Transform - pos: -34.5,-18.5 - parent: 4812 - - uid: 11788 - components: - - type: Transform - pos: 22.5,-32.5 - parent: 4812 - - uid: 11838 - components: - - type: Transform - pos: -6.5,14.5 - parent: 4812 - - uid: 11884 - components: - - type: Transform - pos: 4.5,12.5 - parent: 4812 -- proto: RadioHandheld - entities: - - uid: 4582 - components: - - type: Transform - pos: 27.5,4.5 - parent: 4812 - - uid: 6481 - components: - - type: Transform - pos: -2.7355957,-24.240028 - parent: 4812 - - uid: 8453 - components: - - type: Transform - pos: -29.452932,10.599279 - parent: 4812 -- proto: Railing - entities: - - uid: 7370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-8.5 - parent: 4812 - - uid: 7395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 4812 -- proto: RailingCorner - entities: - - uid: 7393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 4812 -- proto: RandomArcade - entities: - - uid: 10851 - components: - - type: Transform - pos: -23.5,5.5 - parent: 4812 -- proto: RandomArtifactSpawner - entities: - - uid: 6324 - components: - - type: Transform - pos: 22.5,-30.5 - parent: 4812 - - uid: 10445 - components: - - type: Transform - pos: -52.5,-17.5 - parent: 4812 - - uid: 12472 - components: - - type: Transform - pos: 5.5,-40.5 - parent: 4812 -- proto: RandomBoard - entities: - - uid: 2709 - components: - - type: Transform - pos: 22.5,3.5 - parent: 4812 - - uid: 2725 - components: - - type: Transform - pos: 21.5,5.5 - parent: 4812 - - uid: 2726 - components: - - type: Transform - pos: 25.5,4.5 - parent: 4812 - - uid: 2727 - components: - - type: Transform - pos: 21.5,7.5 - parent: 4812 - - uid: 2728 - components: - - type: Transform - pos: 23.5,7.5 - parent: 4812 - - uid: 2729 - components: - - type: Transform - pos: 23.5,8.5 - parent: 4812 - - uid: 2730 - components: - - type: Transform - pos: 21.5,8.5 - parent: 4812 - - uid: 3286 - components: - - type: Transform - pos: 21.5,4.5 - parent: 4812 - - uid: 3378 - components: - - type: Transform - pos: 25.5,3.5 - parent: 4812 - - uid: 3379 - components: - - type: Transform - pos: 0.5,24.5 - parent: 4812 - - uid: 3380 - components: - - type: Transform - pos: 0.5,23.5 - parent: 4812 - - uid: 3381 - components: - - type: Transform - pos: 0.5,25.5 - parent: 4812 -- proto: RandomDrinkBottle - entities: - - uid: 10931 - components: - - type: Transform - pos: 3.5,4.5 - parent: 4812 -- proto: RandomDrinkGlass - entities: - - uid: 10785 - components: - - type: Transform - pos: 1.5,8.5 - parent: 4812 - - uid: 10930 - components: - - type: Transform - pos: 1.5,7.5 - parent: 4812 -- proto: RandomFoodMeal - entities: - - uid: 3776 - components: - - type: Transform - pos: -2.5,8.5 - parent: 4812 - - uid: 10933 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 4812 -- proto: RandomInstruments - entities: - - uid: 4456 - components: - - type: Transform - pos: 14.5,6.5 - parent: 4812 -- proto: RandomPainting - entities: - - uid: 12164 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 4812 - - uid: 12165 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 4812 - - uid: 12166 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 4812 - - uid: 12167 - components: - - type: Transform - pos: -33.5,-18.5 - parent: 4812 -- proto: RandomPosterAny - entities: - - uid: 1788 - components: - - type: Transform - pos: -10.5,2.5 - parent: 4812 - - uid: 3279 - components: - - type: Transform - pos: 13.5,27.5 - parent: 4812 - - uid: 9067 - components: - - type: Transform - pos: -32.5,-35.5 - parent: 4812 - - uid: 10862 - components: - - type: Transform - pos: -19.5,5.5 - parent: 4812 - - uid: 10863 - components: - - type: Transform - pos: -16.5,-1.5 - parent: 4812 - - uid: 11874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-32.5 - parent: 4812 - - uid: 11875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-31.5 - parent: 4812 - - uid: 11876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-31.5 - parent: 4812 -- proto: RandomPosterContraband - entities: - - uid: 4585 - components: - - type: Transform - pos: 17.5,0.5 - parent: 4812 - - uid: 6492 - components: - - type: Transform - pos: 15.5,9.5 - parent: 4812 - - uid: 6493 - components: - - type: Transform - pos: 17.5,-30.5 - parent: 4812 - - uid: 9066 - components: - - type: Transform - pos: -28.5,-40.5 - parent: 4812 -- proto: RandomPosterLegit - entities: - - uid: 1470 - components: - - type: Transform - pos: -17.5,-4.5 - parent: 4812 - - uid: 1471 - components: - - type: Transform - pos: -15.5,-4.5 - parent: 4812 - - uid: 1789 - components: - - type: Transform - pos: -9.5,-2.5 - parent: 4812 - - uid: 1790 - components: - - type: Transform - pos: 8.5,0.5 - parent: 4812 - - uid: 1791 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 4812 - - uid: 1792 - components: - - type: Transform - pos: -16.5,5.5 - parent: 4812 - - uid: 1818 - components: - - type: Transform - pos: -6.5,11.5 - parent: 4812 - - uid: 4588 - components: - - type: Transform - pos: 15.5,12.5 - parent: 4812 - - uid: 4589 - components: - - type: Transform - pos: 22.5,-6.5 - parent: 4812 - - uid: 4590 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 4812 - - uid: 6489 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 4812 - - uid: 6490 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 4812 - - uid: 6491 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 4812 - - uid: 11872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 4812 - - uid: 11873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-1.5 - parent: 4812 -- proto: RandomSoap - entities: - - uid: 1754 - components: - - type: Transform - pos: -10.5,6.5 - parent: 4812 - - uid: 3439 - components: - - type: Transform - pos: 19.5,36.5 - parent: 4812 - - uid: 4457 - components: - - type: Transform - pos: 16.5,6.5 - parent: 4812 - - uid: 8248 - components: - - type: Transform - pos: -19.5,29.5 - parent: 4812 -- proto: RandomSpawner - entities: - - uid: 10934 - components: - - type: Transform - pos: -1.5,17.5 - parent: 4812 - - uid: 10935 - components: - - type: Transform - pos: -14.5,20.5 - parent: 4812 - - uid: 10936 - components: - - type: Transform - pos: -23.5,18.5 - parent: 4812 - - uid: 10937 - components: - - type: Transform - pos: -26.5,3.5 - parent: 4812 - - uid: 10938 - components: - - type: Transform - pos: -20.5,2.5 - parent: 4812 - - uid: 10939 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 4812 - - uid: 10940 - components: - - type: Transform - pos: -25.5,-8.5 - parent: 4812 - - uid: 10985 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 4812 - - uid: 11236 - components: - - type: Transform - pos: 12.5,-36.5 - parent: 4812 - - uid: 11237 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 4812 - - uid: 11238 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 4812 - - uid: 11239 - components: - - type: Transform - pos: 10.5,-40.5 - parent: 4812 - - uid: 11739 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 4812 - - uid: 11911 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 4812 - - uid: 11912 - components: - - type: Transform - pos: -6.5,-34.5 - parent: 4812 - - uid: 11913 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 4812 - - uid: 11915 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 4812 - - uid: 12047 - components: - - type: Transform - pos: 21.5,-24.5 - parent: 4812 - - uid: 12147 - components: - - type: Transform - pos: 31.5,-33.5 - parent: 4812 - - uid: 12149 - components: - - type: Transform - pos: 15.5,-34.5 - parent: 4812 - - uid: 12152 - components: - - type: Transform - pos: 7.5,-37.5 - parent: 4812 - - uid: 12153 - components: - - type: Transform - pos: 8.5,-36.5 - parent: 4812 - - uid: 12154 - components: - - type: Transform - pos: 12.5,-38.5 - parent: 4812 - - uid: 12155 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 4812 - - uid: 12156 - components: - - type: Transform - pos: 12.5,-31.5 - parent: 4812 - - uid: 12157 - components: - - type: Transform - pos: 27.5,-1.5 - parent: 4812 - - uid: 12158 - components: - - type: Transform - pos: 16.5,-3.5 - parent: 4812 - - uid: 12159 - components: - - type: Transform - pos: 12.5,4.5 - parent: 4812 - - uid: 12160 - components: - - type: Transform - pos: 19.5,14.5 - parent: 4812 - - uid: 12161 - components: - - type: Transform - pos: -30.5,17.5 - parent: 4812 -- proto: RCD - entities: - - uid: 10767 - components: - - type: Transform - pos: -48.51471,-8.421415 - parent: 4812 -- proto: RCDAmmo - entities: - - uid: 10768 - components: - - type: Transform - pos: -48.249084,-8.265165 - parent: 4812 -- proto: ReagentContainerFlour - entities: - - uid: 1645 - components: - - type: Transform - pos: 7.6925507,0.6939993 - parent: 4812 -- proto: Recycler - entities: - - uid: 11244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 11245 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 4138 - components: - - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 4139 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - - uid: 4140 - components: - - type: Transform - pos: -32.5,19.5 - parent: 4812 - - uid: 4141 - components: - - type: Transform - pos: -32.5,20.5 - parent: 4812 - - uid: 9035 - components: - - type: Transform - pos: -50.5,11.5 - parent: 4812 - - uid: 9176 - components: - - type: Transform - pos: -50.5,1.5 - parent: 4812 - - uid: 9307 - components: - - type: Transform - pos: -50.5,9.5 - parent: 4812 - - uid: 9308 - components: - - type: Transform - pos: -50.5,7.5 - parent: 4812 - - uid: 9309 - components: - - type: Transform - pos: -50.5,5.5 - parent: 4812 - - uid: 9310 - components: - - type: Transform - pos: -50.5,3.5 - parent: 4812 - - uid: 9475 - components: - - type: Transform - pos: -43.5,15.5 - parent: 4812 - - uid: 9476 - components: - - type: Transform - pos: -44.5,15.5 - parent: 4812 - - uid: 9477 - components: - - type: Transform - pos: -45.5,15.5 - parent: 4812 - - uid: 9478 - components: - - type: Transform - pos: -46.5,16.5 - parent: 4812 - - uid: 9479 - components: - - type: Transform - pos: -46.5,17.5 - parent: 4812 - - uid: 9480 - components: - - type: Transform - pos: -42.5,16.5 - parent: 4812 - - uid: 9481 - components: - - type: Transform - pos: -42.5,17.5 - parent: 4812 - - uid: 9863 - components: - - type: Transform - pos: -46.5,-13.5 - parent: 4812 - - uid: 9875 - components: - - type: Transform - pos: -46.5,-11.5 - parent: 4812 -- proto: ReinforcedWindow - entities: - - uid: 106 - components: - - type: Transform - pos: -7.5,15.5 - parent: 4812 - - uid: 107 - components: - - type: Transform - pos: -8.5,15.5 - parent: 4812 - - uid: 108 - components: - - type: Transform - pos: -9.5,16.5 - parent: 4812 - - uid: 109 - components: - - type: Transform - pos: -9.5,17.5 - parent: 4812 - - uid: 110 - components: - - type: Transform - pos: -8.5,18.5 - parent: 4812 - - uid: 111 - components: - - type: Transform - pos: -7.5,18.5 - parent: 4812 - - uid: 112 - components: - - type: Transform - pos: -6.5,17.5 - parent: 4812 - - uid: 113 - components: - - type: Transform - pos: -6.5,16.5 - parent: 4812 - - uid: 114 - components: - - type: Transform - pos: 3.5,15.5 - parent: 4812 - - uid: 115 - components: - - type: Transform - pos: 2.5,15.5 - parent: 4812 - - uid: 116 - components: - - type: Transform - pos: 1.5,16.5 - parent: 4812 - - uid: 117 - components: - - type: Transform - pos: 1.5,17.5 - parent: 4812 - - uid: 118 - components: - - type: Transform - pos: 2.5,18.5 - parent: 4812 - - uid: 119 - components: - - type: Transform - pos: 3.5,18.5 - parent: 4812 - - uid: 120 - components: - - type: Transform - pos: 4.5,17.5 - parent: 4812 - - uid: 121 - components: - - type: Transform - pos: 4.5,16.5 - parent: 4812 - - uid: 128 - components: - - type: Transform - pos: -4.5,15.5 - parent: 4812 - - uid: 129 - components: - - type: Transform - pos: -4.5,12.5 - parent: 4812 - - uid: 130 - components: - - type: Transform - pos: -0.5,12.5 - parent: 4812 - - uid: 131 - components: - - type: Transform - pos: -0.5,15.5 - parent: 4812 - - uid: 132 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 4812 - - uid: 133 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 4812 - - uid: 134 - components: - - type: Transform - pos: 2.5,1.5 - parent: 4812 - - uid: 135 - components: - - type: Transform - pos: 5.5,18.5 - parent: 4812 - - uid: 136 - components: - - type: Transform - pos: 7.5,18.5 - parent: 4812 - - uid: 137 - components: - - type: Transform - pos: 9.5,18.5 - parent: 4812 - - uid: 178 - components: - - type: Transform - pos: -18.5,18.5 - parent: 4812 - - uid: 179 - components: - - type: Transform - pos: -19.5,18.5 - parent: 4812 - - uid: 184 - components: - - type: Transform - pos: -21.5,14.5 - parent: 4812 - - uid: 215 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 4812 - - uid: 216 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 4812 - - uid: 217 - components: - - type: Transform - pos: -9.5,-10.5 - parent: 4812 - - uid: 218 - components: - - type: Transform - pos: -12.5,-10.5 - parent: 4812 - - uid: 219 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 4812 - - uid: 220 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 4812 - - uid: 1784 - components: - - type: Transform - pos: 18.5,31.5 - parent: 4812 - - uid: 1843 - components: - - type: Transform - pos: -4.5,27.5 - parent: 4812 - - uid: 1844 - components: - - type: Transform - pos: -2.5,27.5 - parent: 4812 - - uid: 1845 - components: - - type: Transform - pos: -0.5,27.5 - parent: 4812 - - uid: 1856 - components: - - type: Transform - pos: 1.5,30.5 - parent: 4812 - - uid: 1869 - components: - - type: Transform - pos: -9.5,32.5 - parent: 4812 - - uid: 1870 - components: - - type: Transform - pos: -9.5,34.5 - parent: 4812 - - uid: 1871 - components: - - type: Transform - pos: -9.5,35.5 - parent: 4812 - - uid: 1872 - components: - - type: Transform - pos: -8.5,35.5 - parent: 4812 - - uid: 1873 - components: - - type: Transform - pos: -6.5,35.5 - parent: 4812 - - uid: 1874 - components: - - type: Transform - pos: -6.5,36.5 - parent: 4812 - - uid: 1875 - components: - - type: Transform - pos: -5.5,36.5 - parent: 4812 - - uid: 1876 - components: - - type: Transform - pos: 1.5,35.5 - parent: 4812 - - uid: 1877 - components: - - type: Transform - pos: 1.5,36.5 - parent: 4812 - - uid: 1878 - components: - - type: Transform - pos: 0.5,36.5 - parent: 4812 - - uid: 1879 - components: - - type: Transform - pos: 4.5,34.5 - parent: 4812 - - uid: 1880 - components: - - type: Transform - pos: 4.5,35.5 - parent: 4812 - - uid: 1881 - components: - - type: Transform - pos: 3.5,35.5 - parent: 4812 - - uid: 1882 - components: - - type: Transform - pos: -1.5,36.5 - parent: 4812 - - uid: 1883 - components: - - type: Transform - pos: -2.5,36.5 - parent: 4812 - - uid: 1884 - components: - - type: Transform - pos: -3.5,36.5 - parent: 4812 - - uid: 1897 - components: - - type: Transform - pos: 4.5,26.5 - parent: 4812 - - uid: 1898 - components: - - type: Transform - pos: 4.5,24.5 - parent: 4812 - - uid: 1902 - components: - - type: Transform - pos: 6.5,33.5 - parent: 4812 - - uid: 1924 - components: - - type: Transform - pos: 6.5,23.5 - parent: 4812 - - uid: 1925 - components: - - type: Transform - pos: 8.5,23.5 - parent: 4812 - - uid: 1944 - components: - - type: Transform - pos: -9.5,22.5 - parent: 4812 - - uid: 1945 - components: - - type: Transform - pos: -9.5,24.5 - parent: 4812 - - uid: 1962 - components: - - type: Transform - pos: -12.5,30.5 - parent: 4812 - - uid: 1963 - components: - - type: Transform - pos: -11.5,30.5 - parent: 4812 - - uid: 2201 - components: - - type: Transform - pos: -6.5,28.5 - parent: 4812 - - uid: 2204 - components: - - type: Transform - pos: -6.5,30.5 - parent: 4812 - - uid: 2209 - components: - - type: Transform - pos: 1.5,28.5 - parent: 4812 - - uid: 2466 - components: - - type: Transform - pos: -10.5,26.5 - parent: 4812 - - uid: 2467 - components: - - type: Transform - pos: -12.5,26.5 - parent: 4812 - - uid: 2468 - components: - - type: Transform - pos: -13.5,26.5 - parent: 4812 - - uid: 2469 - components: - - type: Transform - pos: 5.5,27.5 - parent: 4812 - - uid: 2470 - components: - - type: Transform - pos: 7.5,27.5 - parent: 4812 - - uid: 2471 - components: - - type: Transform - pos: 8.5,27.5 - parent: 4812 - - uid: 2761 - components: - - type: Transform - pos: 21.5,26.5 - parent: 4812 - - uid: 2762 - components: - - type: Transform - pos: 23.5,26.5 - parent: 4812 - - uid: 2763 - components: - - type: Transform - pos: 22.5,29.5 - parent: 4812 - - uid: 2764 - components: - - type: Transform - pos: 19.5,29.5 - parent: 4812 - - uid: 2772 - components: - - type: Transform - pos: 22.5,26.5 - parent: 4812 - - uid: 2773 - components: - - type: Transform - pos: 22.5,23.5 - parent: 4812 - - uid: 2775 - components: - - type: Transform - pos: 20.5,29.5 - parent: 4812 - - uid: 2801 - components: - - type: Transform - pos: 13.5,17.5 - parent: 4812 - - uid: 2802 - components: - - type: Transform - pos: 13.5,19.5 - parent: 4812 - - uid: 2803 - components: - - type: Transform - pos: 14.5,16.5 - parent: 4812 - - uid: 2804 - components: - - type: Transform - pos: 16.5,16.5 - parent: 4812 - - uid: 2805 - components: - - type: Transform - pos: 18.5,16.5 - parent: 4812 - - uid: 2806 - components: - - type: Transform - pos: 20.5,16.5 - parent: 4812 - - uid: 2807 - components: - - type: Transform - pos: 21.5,21.5 - parent: 4812 - - uid: 2808 - components: - - type: Transform - pos: 21.5,19.5 - parent: 4812 - - uid: 2809 - components: - - type: Transform - pos: 19.5,22.5 - parent: 4812 - - uid: 2810 - components: - - type: Transform - pos: 13.5,13.5 - parent: 4812 - - uid: 2811 - components: - - type: Transform - pos: 14.5,22.5 - parent: 4812 - - uid: 2812 - components: - - type: Transform - pos: 16.5,28.5 - parent: 4812 - - uid: 2819 - components: - - type: Transform - pos: 18.5,30.5 - parent: 4812 - - uid: 2884 - components: - - type: Transform - pos: 23.5,17.5 - parent: 4812 - - uid: 2885 - components: - - type: Transform - pos: 21.5,13.5 - parent: 4812 - - uid: 2886 - components: - - type: Transform - pos: 25.5,15.5 - parent: 4812 - - uid: 2887 - components: - - type: Transform - pos: 25.5,13.5 - parent: 4812 - - uid: 2888 - components: - - type: Transform - pos: 26.5,16.5 - parent: 4812 - - uid: 2889 - components: - - type: Transform - pos: 27.5,16.5 - parent: 4812 - - uid: 2890 - components: - - type: Transform - pos: 28.5,16.5 - parent: 4812 - - uid: 2891 - components: - - type: Transform - pos: 28.5,15.5 - parent: 4812 - - uid: 2892 - components: - - type: Transform - pos: 28.5,13.5 - parent: 4812 - - uid: 2893 - components: - - type: Transform - pos: 28.5,12.5 - parent: 4812 - - uid: 2894 - components: - - type: Transform - pos: 27.5,12.5 - parent: 4812 - - uid: 2895 - components: - - type: Transform - pos: 26.5,12.5 - parent: 4812 - - uid: 3117 - components: - - type: Transform - pos: 16.5,36.5 - parent: 4812 - - uid: 3503 - components: - - type: Transform - pos: 6.5,43.5 - parent: 4812 - - uid: 3698 - components: - - type: Transform - pos: 10.5,54.5 - parent: 4812 - - uid: 4048 - components: - - type: Transform - pos: 34.5,-8.5 - parent: 4812 - - uid: 4050 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 4812 - - uid: 4051 - components: - - type: Transform - pos: 32.5,-8.5 - parent: 4812 - - uid: 4052 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 4812 - - uid: 4053 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 4812 - - uid: 4054 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 4812 - - uid: 4055 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 4812 - - uid: 4056 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 4812 - - uid: 4057 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 4812 - - uid: 4058 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 4812 - - uid: 4059 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 4812 - - uid: 4060 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 4812 - - uid: 4061 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 4812 - - uid: 4062 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 4812 - - uid: 4063 - components: - - type: Transform - pos: 33.5,-0.5 - parent: 4812 - - uid: 4064 - components: - - type: Transform - pos: 34.5,-0.5 - parent: 4812 - - uid: 4065 - components: - - type: Transform - pos: 34.5,1.5 - parent: 4812 - - uid: 4066 - components: - - type: Transform - pos: 33.5,1.5 - parent: 4812 - - uid: 4067 - components: - - type: Transform - pos: 32.5,1.5 - parent: 4812 - - uid: 4068 - components: - - type: Transform - pos: 31.5,1.5 - parent: 4812 - - uid: 4069 - components: - - type: Transform - pos: 32.5,3.5 - parent: 4812 - - uid: 4070 - components: - - type: Transform - pos: 33.5,3.5 - parent: 4812 - - uid: 4071 - components: - - type: Transform - pos: 34.5,3.5 - parent: 4812 - - uid: 4072 - components: - - type: Transform - pos: 32.5,4.5 - parent: 4812 - - uid: 4073 - components: - - type: Transform - pos: 29.5,1.5 - parent: 4812 - - uid: 4074 - components: - - type: Transform - pos: 27.5,1.5 - parent: 4812 - - uid: 4075 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 4812 - - uid: 4076 - components: - - type: Transform - pos: 26.5,-4.5 - parent: 4812 - - uid: 4077 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 4812 - - uid: 4078 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 4812 - - uid: 4079 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 4812 - - uid: 4080 - components: - - type: Transform - pos: 18.5,-4.5 - parent: 4812 - - uid: 4099 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 4812 - - uid: 4100 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 4812 - - uid: 4110 - components: - - type: Transform - pos: 19.5,-8.5 - parent: 4812 - - uid: 4111 - components: - - type: Transform - pos: 18.5,-8.5 - parent: 4812 - - uid: 4112 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 4812 - - uid: 4113 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 4812 - - uid: 4114 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 4812 - - uid: 4115 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 4812 - - uid: 4627 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 4812 - - uid: 4628 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 4812 - - uid: 4629 - components: - - type: Transform - pos: -1.5,-33.5 - parent: 4812 - - uid: 4630 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 4812 - - uid: 4631 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 4812 - - uid: 4632 - components: - - type: Transform - pos: -3.5,-36.5 - parent: 4812 - - uid: 4633 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 4812 - - uid: 4634 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 4812 - - uid: 4635 - components: - - type: Transform - pos: -4.5,-36.5 - parent: 4812 - - uid: 4636 - components: - - type: Transform - pos: -5.5,-36.5 - parent: 4812 - - uid: 4637 - components: - - type: Transform - pos: -8.5,-36.5 - parent: 4812 - - uid: 4661 - components: - - type: Transform - pos: -9.5,-37.5 - parent: 4812 - - uid: 4662 - components: - - type: Transform - pos: -9.5,-38.5 - parent: 4812 - - uid: 4663 - components: - - type: Transform - pos: -9.5,-39.5 - parent: 4812 - - uid: 4664 - components: - - type: Transform - pos: -9.5,-41.5 - parent: 4812 - - uid: 4665 - components: - - type: Transform - pos: -9.5,-42.5 - parent: 4812 - - uid: 4666 - components: - - type: Transform - pos: -9.5,-44.5 - parent: 4812 - - uid: 4667 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 4812 - - uid: 4668 - components: - - type: Transform - pos: -9.5,-51.5 - parent: 4812 - - uid: 4669 - components: - - type: Transform - pos: -8.5,-51.5 - parent: 4812 - - uid: 4670 - components: - - type: Transform - pos: -7.5,-51.5 - parent: 4812 - - uid: 4671 - components: - - type: Transform - pos: -8.5,-49.5 - parent: 4812 - - uid: 4672 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 4812 - - uid: 4677 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 4812 - - uid: 4678 - components: - - type: Transform - pos: -8.5,-44.5 - parent: 4812 - - uid: 4679 - components: - - type: Transform - pos: -8.5,-42.5 - parent: 4812 - - uid: 4680 - components: - - type: Transform - pos: -7.5,-42.5 - parent: 4812 - - uid: 4682 - components: - - type: Transform - pos: -9.5,-52.5 - parent: 4812 - - uid: 4683 - components: - - type: Transform - pos: -12.5,-52.5 - parent: 4812 - - uid: 4684 - components: - - type: Transform - pos: -12.5,-51.5 - parent: 4812 - - uid: 4687 - components: - - type: Transform - pos: -12.5,-54.5 - parent: 4812 - - uid: 4688 - components: - - type: Transform - pos: -12.5,-55.5 - parent: 4812 - - uid: 4691 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 4812 - - uid: 4692 - components: - - type: Transform - pos: -9.5,-54.5 - parent: 4812 - - uid: 4695 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 4812 - - uid: 4697 - components: - - type: Transform - pos: -12.5,-41.5 - parent: 4812 - - uid: 4698 - components: - - type: Transform - pos: -12.5,-42.5 - parent: 4812 - - uid: 4699 - components: - - type: Transform - pos: -12.5,-44.5 - parent: 4812 - - uid: 4700 - components: - - type: Transform - pos: -12.5,-49.5 - parent: 4812 - - uid: 4701 - components: - - type: Transform - pos: -13.5,-51.5 - parent: 4812 - - uid: 4702 - components: - - type: Transform - pos: -14.5,-51.5 - parent: 4812 - - uid: 4703 - components: - - type: Transform - pos: -13.5,-49.5 - parent: 4812 - - uid: 4704 - components: - - type: Transform - pos: -14.5,-49.5 - parent: 4812 - - uid: 4709 - components: - - type: Transform - pos: -14.5,-44.5 - parent: 4812 - - uid: 4710 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 4812 - - uid: 4711 - components: - - type: Transform - pos: -13.5,-42.5 - parent: 4812 - - uid: 4712 - components: - - type: Transform - pos: -14.5,-42.5 - parent: 4812 - - uid: 4719 - components: - - type: Transform - pos: -44.5,-30.5 - parent: 4812 - - uid: 4798 - components: - - type: Transform - pos: -45.5,-27.5 - parent: 4812 - - uid: 4923 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 4812 - - uid: 4924 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 4812 - - uid: 4988 - components: - - type: Transform - pos: -14.5,-24.5 - parent: 4812 - - uid: 4994 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 4812 - - uid: 5004 - components: - - type: Transform - pos: -7.5,-25.5 - parent: 4812 - - uid: 5040 - components: - - type: Transform - pos: -16.5,-19.5 - parent: 4812 - - uid: 5049 - components: - - type: Transform - pos: -14.5,-19.5 - parent: 4812 - - uid: 5300 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 4812 - - uid: 5301 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 4812 - - uid: 5302 - components: - - type: Transform - pos: -4.5,-26.5 - parent: 4812 - - uid: 5303 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 4812 - - uid: 5313 - components: - - type: Transform - pos: 21.5,-14.5 - parent: 4812 - - uid: 5315 - components: - - type: Transform - pos: 18.5,-10.5 - parent: 4812 - - uid: 5317 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 4812 - - uid: 5318 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 4812 - - uid: 5319 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 4812 - - uid: 5320 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 4812 - - uid: 5321 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 4812 - - uid: 5322 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 4812 - - uid: 5323 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 4812 - - uid: 5324 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 4812 - - uid: 5325 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 4812 - - uid: 5326 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 4812 - - uid: 5327 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 4812 - - uid: 5328 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 4812 - - uid: 5329 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 4812 - - uid: 5393 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 4812 - - uid: 5415 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 4812 - - uid: 5416 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 4812 - - uid: 5417 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 4812 - - uid: 5418 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 4812 - - uid: 5419 - components: - - type: Transform - pos: 5.5,-13.5 - parent: 4812 - - uid: 5420 - components: - - type: Transform - pos: 7.5,-13.5 - parent: 4812 - - uid: 5421 - components: - - type: Transform - pos: 3.5,-19.5 - parent: 4812 - - uid: 5422 - components: - - type: Transform - pos: 5.5,-19.5 - parent: 4812 - - uid: 5428 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 4812 - - uid: 5429 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 4812 - - uid: 5458 - components: - - type: Transform - pos: 10.5,-28.5 - parent: 4812 - - uid: 5459 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 4812 - - uid: 5460 - components: - - type: Transform - pos: 10.5,-24.5 - parent: 4812 - - uid: 5461 - components: - - type: Transform - pos: 7.5,-28.5 - parent: 4812 - - uid: 5462 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 4812 - - uid: 5463 - components: - - type: Transform - pos: 7.5,-25.5 - parent: 4812 - - uid: 5464 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 4812 - - uid: 5472 - components: - - type: Transform - pos: 6.5,-22.5 - parent: 4812 - - uid: 5474 - components: - - type: Transform - pos: 7.5,-23.5 - parent: 4812 - - uid: 5475 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 4812 - - uid: 5477 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 4812 - - uid: 5478 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 4812 - - uid: 5481 - components: - - type: Transform - pos: 19.5,-30.5 - parent: 4812 - - uid: 5482 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 4812 - - uid: 5483 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 4812 - - uid: 5491 - components: - - type: Transform - pos: 9.5,-13.5 - parent: 4812 - - uid: 5533 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 4812 - - uid: 5534 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 4812 - - uid: 5535 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 4812 - - uid: 5536 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 4812 - - uid: 5537 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 4812 - - uid: 5538 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 4812 - - uid: 5539 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 4812 - - uid: 5540 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 4812 - - uid: 5541 - components: - - type: Transform - pos: 28.5,-17.5 - parent: 4812 - - uid: 5542 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 4812 - - uid: 5543 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 4812 - - uid: 5580 - components: - - type: Transform - pos: 27.5,-21.5 - parent: 4812 - - uid: 5581 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 4812 - - uid: 5582 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 4812 - - uid: 5597 - components: - - type: Transform - pos: 23.5,-27.5 - parent: 4812 - - uid: 5782 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 4812 - - uid: 5783 - components: - - type: Transform - pos: 33.5,-22.5 - parent: 4812 - - uid: 5784 - components: - - type: Transform - pos: 34.5,-22.5 - parent: 4812 - - uid: 5807 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 4812 - - uid: 6311 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 4812 - - uid: 6573 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 4812 - - uid: 6579 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 4812 - - uid: 6588 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 4812 - - uid: 6589 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 4812 - - uid: 6590 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 4812 - - uid: 6591 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 4812 - - uid: 6592 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 4812 - - uid: 6593 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 4812 - - uid: 6703 - components: - - type: Transform - pos: -19.5,-40.5 - parent: 4812 - - uid: 6710 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 4812 - - uid: 6754 - components: - - type: Transform - pos: -15.5,-37.5 - parent: 4812 - - uid: 6755 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 4812 - - uid: 6756 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 4812 - - uid: 7196 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 4812 - - uid: 7203 - components: - - type: Transform - pos: -36.5,-38.5 - parent: 4812 - - uid: 7204 - components: - - type: Transform - pos: -37.5,-38.5 - parent: 4812 - - uid: 7205 - components: - - type: Transform - pos: -41.5,-35.5 - parent: 4812 - - uid: 7206 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 4812 - - uid: 7207 - components: - - type: Transform - pos: -39.5,-36.5 - parent: 4812 - - uid: 7209 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 4812 - - uid: 7210 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 4812 - - uid: 7211 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 4812 - - uid: 7229 - components: - - type: Transform - pos: -40.5,-36.5 - parent: 4812 - - uid: 7300 - components: - - type: Transform - pos: -41.5,-36.5 - parent: 4812 - - uid: 7331 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 4812 - - uid: 7371 - components: - - type: Transform - pos: -7.5,-26.5 - parent: 4812 - - uid: 7385 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 4812 - - uid: 7402 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 4812 - - uid: 7403 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 4812 - - uid: 7435 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 4812 - - uid: 7436 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 4812 - - uid: 7665 - components: - - type: Transform - pos: -22.5,29.5 - parent: 4812 - - uid: 7666 - components: - - type: Transform - pos: -24.5,31.5 - parent: 4812 - - uid: 7667 - components: - - type: Transform - pos: -27.5,33.5 - parent: 4812 - - uid: 7668 - components: - - type: Transform - pos: -28.5,33.5 - parent: 4812 - - uid: 7669 - components: - - type: Transform - pos: -29.5,33.5 - parent: 4812 - - uid: 7708 - components: - - type: Transform - pos: -24.5,20.5 - parent: 4812 - - uid: 7709 - components: - - type: Transform - pos: -24.5,19.5 - parent: 4812 - - uid: 7710 - components: - - type: Transform - pos: -24.5,17.5 - parent: 4812 - - uid: 7711 - components: - - type: Transform - pos: -24.5,16.5 - parent: 4812 - - uid: 7716 - components: - - type: Transform - pos: -27.5,20.5 - parent: 4812 - - uid: 7717 - components: - - type: Transform - pos: -27.5,17.5 - parent: 4812 - - uid: 7725 - components: - - type: Transform - pos: -24.5,10.5 - parent: 4812 - - uid: 7726 - components: - - type: Transform - pos: -27.5,10.5 - parent: 4812 - - uid: 7745 - components: - - type: Transform - pos: -32.5,12.5 - parent: 4812 - - uid: 7746 - components: - - type: Transform - pos: -33.5,13.5 - parent: 4812 - - uid: 7747 - components: - - type: Transform - pos: -32.5,14.5 - parent: 4812 - - uid: 7748 - components: - - type: Transform - pos: -32.5,10.5 - parent: 4812 - - uid: 7764 - components: - - type: Transform - pos: -35.5,13.5 - parent: 4812 - - uid: 8169 - components: - - type: Transform - pos: -21.5,21.5 - parent: 4812 - - uid: 8170 - components: - - type: Transform - pos: -20.5,21.5 - parent: 4812 - - uid: 8171 - components: - - type: Transform - pos: -23.5,21.5 - parent: 4812 - - uid: 8172 - components: - - type: Transform - pos: -23.5,26.5 - parent: 4812 - - uid: 8173 - components: - - type: Transform - pos: -21.5,26.5 - parent: 4812 - - uid: 8627 - components: - - type: Transform - pos: -31.5,0.5 - parent: 4812 - - uid: 8629 - components: - - type: Transform - pos: -29.5,0.5 - parent: 4812 - - uid: 8630 - components: - - type: Transform - pos: -27.5,2.5 - parent: 4812 - - uid: 8631 - components: - - type: Transform - pos: -27.5,3.5 - parent: 4812 - - uid: 8632 - components: - - type: Transform - pos: -27.5,4.5 - parent: 4812 - - uid: 8633 - components: - - type: Transform - pos: -28.5,-3.5 - parent: 4812 - - uid: 8634 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 4812 - - uid: 8636 - components: - - type: Transform - pos: -35.5,1.5 - parent: 4812 - - uid: 8637 - components: - - type: Transform - pos: -35.5,3.5 - parent: 4812 - - uid: 8638 - components: - - type: Transform - pos: -35.5,5.5 - parent: 4812 - - uid: 8676 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 4812 - - uid: 8677 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 4812 - - uid: 8678 - components: - - type: Transform - pos: -27.5,-6.5 - parent: 4812 - - uid: 8679 - components: - - type: Transform - pos: -29.5,-4.5 - parent: 4812 - - uid: 8680 - components: - - type: Transform - pos: -31.5,-4.5 - parent: 4812 - - uid: 8734 - components: - - type: Transform - pos: -44.5,-4.5 - parent: 4812 - - uid: 8735 - components: - - type: Transform - pos: -42.5,-4.5 - parent: 4812 - - uid: 8792 - components: - - type: Transform - pos: -27.5,-41.5 - parent: 4812 - - uid: 9291 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 4812 - - uid: 9292 - components: - - type: Transform - pos: -48.5,-0.5 - parent: 4812 - - uid: 9293 - components: - - type: Transform - pos: -48.5,0.5 - parent: 4812 - - uid: 9294 - components: - - type: Transform - pos: -48.5,1.5 - parent: 4812 - - uid: 9295 - components: - - type: Transform - pos: -48.5,2.5 - parent: 4812 - - uid: 9296 - components: - - type: Transform - pos: -48.5,3.5 - parent: 4812 - - uid: 9297 - components: - - type: Transform - pos: -48.5,4.5 - parent: 4812 - - uid: 9298 - components: - - type: Transform - pos: -48.5,5.5 - parent: 4812 - - uid: 9299 - components: - - type: Transform - pos: -48.5,6.5 - parent: 4812 - - uid: 9300 - components: - - type: Transform - pos: -48.5,7.5 - parent: 4812 - - uid: 9301 - components: - - type: Transform - pos: -48.5,8.5 - parent: 4812 - - uid: 9302 - components: - - type: Transform - pos: -48.5,9.5 - parent: 4812 - - uid: 9303 - components: - - type: Transform - pos: -48.5,10.5 - parent: 4812 - - uid: 9304 - components: - - type: Transform - pos: -48.5,11.5 - parent: 4812 - - uid: 9305 - components: - - type: Transform - pos: -48.5,12.5 - parent: 4812 - - uid: 9306 - components: - - type: Transform - pos: -48.5,13.5 - parent: 4812 - - uid: 9498 - components: - - type: Transform - pos: -47.5,13.5 - parent: 4812 - - uid: 9499 - components: - - type: Transform - pos: -46.5,13.5 - parent: 4812 - - uid: 9500 - components: - - type: Transform - pos: -45.5,13.5 - parent: 4812 - - uid: 9501 - components: - - type: Transform - pos: -44.5,13.5 - parent: 4812 - - uid: 9502 - components: - - type: Transform - pos: -43.5,13.5 - parent: 4812 - - uid: 9503 - components: - - type: Transform - pos: -42.5,13.5 - parent: 4812 - - uid: 9588 - components: - - type: Transform - pos: -43.5,-25.5 - parent: 4812 - - uid: 9593 - components: - - type: Transform - pos: -47.5,-24.5 - parent: 4812 - - uid: 9599 - components: - - type: Transform - pos: -52.5,-26.5 - parent: 4812 - - uid: 9600 - components: - - type: Transform - pos: -53.5,-26.5 - parent: 4812 - - uid: 9601 - components: - - type: Transform - pos: -54.5,-26.5 - parent: 4812 - - uid: 9602 - components: - - type: Transform - pos: -54.5,-25.5 - parent: 4812 - - uid: 9603 - components: - - type: Transform - pos: -56.5,-23.5 - parent: 4812 - - uid: 9608 - components: - - type: Transform - pos: -41.5,-28.5 - parent: 4812 - - uid: 9646 - components: - - type: Transform - pos: -12.5,-58.5 - parent: 4812 - - uid: 9647 - components: - - type: Transform - pos: -12.5,-57.5 - parent: 4812 - - uid: 9648 - components: - - type: Transform - pos: -9.5,-57.5 - parent: 4812 - - uid: 9652 - components: - - type: Transform - pos: -10.5,-56.5 - parent: 4812 - - uid: 9655 - components: - - type: Transform - pos: -9.5,-58.5 - parent: 4812 - - uid: 9838 - components: - - type: Transform - pos: -53.5,-7.5 - parent: 4812 - - uid: 9839 - components: - - type: Transform - pos: -52.5,-7.5 - parent: 4812 - - uid: 9843 - components: - - type: Transform - pos: -54.5,-7.5 - parent: 4812 - - uid: 9869 - components: - - type: Transform - pos: -52.5,-5.5 - parent: 4812 - - uid: 9870 - components: - - type: Transform - pos: -54.5,-5.5 - parent: 4812 - - uid: 9872 - components: - - type: Transform - pos: -53.5,-5.5 - parent: 4812 - - uid: 9874 - components: - - type: Transform - pos: -48.5,-10.5 - parent: 4812 - - uid: 9893 - components: - - type: Transform - pos: -43.5,-13.5 - parent: 4812 - - uid: 9897 - components: - - type: Transform - pos: -43.5,-11.5 - parent: 4812 - - uid: 9898 - components: - - type: Transform - pos: -39.5,-9.5 - parent: 4812 - - uid: 9899 - components: - - type: Transform - pos: -41.5,-9.5 - parent: 4812 - - uid: 10154 - components: - - type: Transform - pos: -53.5,-23.5 - parent: 4812 - - uid: 10158 - components: - - type: Transform - pos: -52.5,-23.5 - parent: 4812 - - uid: 10677 - components: - - type: Transform - pos: -47.5,-8.5 - parent: 4812 - - uid: 10678 - components: - - type: Transform - pos: -47.5,-7.5 - parent: 4812 - - uid: 10679 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 4812 - - uid: 11047 - components: - - type: Transform - pos: 6.5,-32.5 - parent: 4812 - - uid: 11048 - components: - - type: Transform - pos: 6.5,-34.5 - parent: 4812 - - uid: 11071 - components: - - type: Transform - pos: 6.5,-36.5 - parent: 4812 - - uid: 11072 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 4812 - - uid: 11074 - components: - - type: Transform - pos: 11.5,-38.5 - parent: 4812 - - uid: 11075 - components: - - type: Transform - pos: 11.5,-40.5 - parent: 4812 - - uid: 11076 - components: - - type: Transform - pos: 11.5,-42.5 - parent: 4812 - - uid: 11077 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 4812 - - uid: 11078 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 4812 - - uid: 11104 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 4812 - - uid: 11126 - components: - - type: Transform - pos: 18.5,-39.5 - parent: 4812 - - uid: 11127 - components: - - type: Transform - pos: 17.5,-39.5 - parent: 4812 - - uid: 11129 - components: - - type: Transform - pos: 21.5,-39.5 - parent: 4812 - - uid: 11130 - components: - - type: Transform - pos: 20.5,-39.5 - parent: 4812 - - uid: 11343 - components: - - type: Transform - pos: 38.5,-32.5 - parent: 4812 - - uid: 11346 - components: - - type: Transform - pos: 38.5,-31.5 - parent: 4812 - - uid: 11347 - components: - - type: Transform - pos: 37.5,-31.5 - parent: 4812 - - uid: 11387 - components: - - type: Transform - pos: 31.5,-37.5 - parent: 4812 - - uid: 11388 - components: - - type: Transform - pos: 32.5,-37.5 - parent: 4812 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 6252 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 4812 -- proto: ResearchDisk - entities: - - uid: 12457 - components: - - type: Transform - pos: -35.5391,27.461937 - parent: 4812 -- proto: Retractor - entities: - - uid: 6242 - components: - - type: Transform - pos: 13.5722065,-27.387243 - parent: 4812 -- proto: RevolverCapGun - entities: - - uid: 11863 - components: - - type: Transform - pos: -14.491153,4.5839243 - parent: 4812 -- proto: RockGuitarInstrument - entities: - - uid: 12366 - components: - - type: Transform - pos: -10.362962,-1.5182831 - parent: 4812 -- proto: RollerBedSpawnFolded - entities: - - uid: 6622 - components: - - type: Transform - pos: -20.448778,-14.242132 - parent: 4812 -- proto: SalvageMagnet - entities: - - uid: 2923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 4812 -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 10451 - components: - - type: Transform - pos: -52.5,-19.5 - parent: 4812 - - uid: 11693 - components: - - type: Transform - pos: 26.5,-39.5 - parent: 4812 -- proto: SawElectric - entities: - - uid: 6243 - components: - - type: Transform - pos: 16.478456,-28.465368 - parent: 4812 -- proto: Scalpel - entities: - - uid: 6245 - components: - - type: Transform - pos: 16.525331,-28.059118 - parent: 4812 -- proto: Screen - entities: - - uid: 12560 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 4812 - - uid: 12561 - components: - - type: Transform - pos: -0.5,-30.5 - parent: 4812 - - uid: 12562 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 4812 - - uid: 12563 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 4812 - - uid: 12564 - components: - - type: Transform - pos: 1.5,1.5 - parent: 4812 - - uid: 12565 - components: - - type: Transform - pos: -6.5,10.5 - parent: 4812 - - uid: 12566 - components: - - type: Transform - pos: -1.5,21.5 - parent: 4812 - - uid: 12567 - components: - - type: Transform - pos: -21.5,15.5 - parent: 4812 - - uid: 12568 - components: - - type: Transform - pos: -27.5,6.5 - parent: 4812 - - uid: 12569 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 4812 - - uid: 12570 - components: - - type: Transform - pos: 10.5,4.5 - parent: 4812 - - uid: 12571 - components: - - type: Transform - pos: 10.5,16.5 - parent: 4812 - - uid: 12572 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 4812 - - uid: 12573 - components: - - type: Transform - pos: -12.5,-37.5 - parent: 4812 - - uid: 12574 - components: - - type: Transform - pos: 19.5,-1.5 - parent: 4812 - - uid: 12575 - components: - - type: Transform - pos: 26.5,1.5 - parent: 4812 - - uid: 12576 - components: - - type: Transform - pos: 26.5,-6.5 - parent: 4812 -- proto: SecurityTechFab - entities: - - uid: 8371 - components: - - type: Transform - pos: -34.5,21.5 - parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Glass - - Plastic - - Steel -- proto: SeedExtractor - entities: - - uid: 1086 - components: - - type: Transform - pos: -15.5,-7.5 - parent: 4812 - - uid: 8388 - components: - - type: Transform - pos: -30.5,32.5 - parent: 4812 - - uid: 9616 - components: - - type: Transform - pos: -42.5,-26.5 - parent: 4812 - - uid: 11284 - components: - - type: Transform - pos: 21.5,-36.5 - parent: 4812 -- proto: ShardGlass - entities: - - uid: 9076 - components: - - type: Transform - pos: -30.439472,-27.54581 - parent: 4812 -- proto: ShardGlassReinforced - entities: - - uid: 11105 - components: - - type: Transform - pos: 11.590929,-33.611034 - parent: 4812 -- proto: SheetGlass - entities: - - uid: 1690 - components: - - type: Transform - pos: 5.600872,17.54953 - parent: 4812 - - uid: 3848 - components: - - type: Transform - pos: 13.673708,44.533413 - parent: 4812 - - uid: 3949 - components: - - type: Transform - pos: 10.555219,43.506973 - parent: 4812 - - uid: 6199 - components: - - type: Transform - pos: 3.6706638,-18.424206 - parent: 4812 - - uid: 6209 - components: - - type: Transform - pos: 3.6706638,-18.455456 - parent: 4812 - - uid: 8582 - components: - - type: Transform - pos: -17.233784,7.5055285 - parent: 4812 - - uid: 9726 - components: - - type: Transform - pos: -34.372757,-5.49447 - parent: 4812 - - uid: 9727 - components: - - type: Transform - pos: -34.372757,-5.49447 - parent: 4812 - - uid: 11327 - components: - - type: Transform - pos: 24.525463,-36.5151 - parent: 4812 - - uid: 11946 - components: - - type: Transform - pos: -14.576956,17.019444 - parent: 4812 - - uid: 11947 - components: - - type: Transform - pos: -14.436331,17.019444 - parent: 4812 -- proto: SheetPlasma - entities: - - uid: 3470 - components: - - type: Transform - pos: -47.48832,-13.469177 - parent: 4812 - - uid: 3849 - components: - - type: Transform - pos: 13.533083,44.486538 - parent: 4812 - - uid: 6361 - components: - - type: Transform - pos: 35.463417,-24.535076 - parent: 4812 - - uid: 11812 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 11811 - - type: Physics - canCollide: False -- proto: SheetPlasteel - entities: - - uid: 6236 - components: - - type: Transform - pos: 16.561968,-23.469662 - parent: 4812 - - uid: 10770 - components: - - type: Transform - pos: -34.51854,-5.508734 - parent: 4812 - - uid: 10771 - components: - - type: Transform - pos: -34.51854,-5.508734 - parent: 4812 - - uid: 11948 - components: - - type: Transform - pos: -14.576956,16.535069 - parent: 4812 - - uid: 11949 - components: - - type: Transform - pos: -14.420706,16.535069 - parent: 4812 -- proto: SheetPlastic - entities: - - uid: 6206 - components: - - type: Transform - pos: 3.551526,-18.367922 - parent: 4812 - - uid: 6207 - components: - - type: Transform - pos: 3.562368,-18.383547 - parent: 4812 -- proto: SheetSteel - entities: - - uid: 1691 - components: - - type: Transform - pos: 5.397747,17.54953 - parent: 4812 - - uid: 3847 - components: - - type: Transform - pos: 13.454958,44.549038 - parent: 4812 - - uid: 3950 - components: - - type: Transform - pos: 10.352094,43.506973 - parent: 4812 - - uid: 6198 - components: - - type: Transform - pos: 3.4362888,-18.40858 - parent: 4812 - - uid: 6208 - components: - - type: Transform - pos: 3.4206638,-18.40858 - parent: 4812 - - uid: 8581 - components: - - type: Transform - pos: -17.5,7.5 - parent: 4812 - - uid: 9673 - components: - - type: Transform - pos: -30.650465,5.5347195 - parent: 4812 - - uid: 9674 - components: - - type: Transform - pos: -30.650465,5.5347195 - parent: 4812 - - uid: 9725 - components: - - type: Transform - pos: -34.591507,-5.478845 - parent: 4812 - - uid: 9728 - components: - - type: Transform - pos: -34.607132,-5.478845 - parent: 4812 - - uid: 11328 - components: - - type: Transform - pos: 24.400463,-36.530724 - parent: 4812 - - uid: 11944 - components: - - type: Transform - pos: -14.514456,17.535069 - parent: 4812 - - uid: 11945 - components: - - type: Transform - pos: -14.436331,17.503819 - parent: 4812 -- proto: SheetUranium - entities: - - uid: 3749 - components: - - type: Transform - pos: -47.503944,-13.422302 - parent: 4812 -- proto: Shovel - entities: - - uid: 3275 - components: - - type: Transform - pos: 22.483086,13.479855 - parent: 4812 -- proto: ShuttersNormalOpen - entities: - - uid: 355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 712 - - uid: 356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 712 - - uid: 357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 712 - - uid: 358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 712 - - uid: 359 - components: - - type: Transform - pos: 2.5,4.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 712 - - uid: 360 - components: - - type: Transform - pos: 3.5,4.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 712 - - uid: 785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 1646 - - uid: 786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 1646 - - uid: 787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 1646 - - uid: 1929 - components: - - type: Transform - pos: -13.5,26.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 2241 - - uid: 1930 - components: - - type: Transform - pos: 5.5,27.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 1965 - - uid: 1931 - components: - - type: Transform - pos: -10.5,26.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 2241 - - uid: 2234 - components: - - type: Transform - pos: -12.5,26.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 2241 - - uid: 2235 - components: - - type: Transform - pos: 8.5,27.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 1965 - - uid: 2236 - components: - - type: Transform - pos: 7.5,27.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 1965 - - uid: 2835 - components: - - type: Transform - pos: 16.5,28.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 2844 - - uid: 2836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,30.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 2844 - - uid: 2837 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,31.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 2844 - - uid: 2870 - components: - - type: Transform - pos: 16.5,36.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 2844 - - uid: 3945 - components: - - type: Transform - pos: 10.5,47.5 - parent: 4812 - - uid: 3948 - components: - - type: Transform - pos: 10.5,54.5 - parent: 4812 - - uid: 5507 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 5576 - - uid: 5508 - components: - - type: Transform - pos: 27.5,-21.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 5576 - - uid: 5509 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 5576 - - uid: 6570 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6587 - - uid: 6574 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6587 - - uid: 6575 - components: - - type: Transform - pos: -9.5,-13.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6587 - - uid: 6576 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6587 - - uid: 6577 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6587 - - uid: 6578 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6587 - - uid: 6586 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 6587 - - uid: 8153 - components: - - type: Transform - pos: -21.5,21.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 8165 - - uid: 8160 - components: - - type: Transform - pos: -20.5,21.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 8165 - - uid: 8161 - components: - - type: Transform - pos: -23.5,21.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 8165 - - uid: 10673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-8.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 10676 - - uid: 10674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-7.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 10676 - - uid: 10675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-6.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 10676 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 10959 - components: - - type: Transform - pos: -34.25,25.263674 - parent: 4812 -- proto: SignAi - entities: - - uid: 3961 - components: - - type: Transform - pos: 11.5,47.5 - parent: 4812 -- proto: SignalButton - entities: - - uid: 712 - components: - - type: Transform - pos: 4.5,5.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 360: - - Pressed: Toggle - 359: - - Pressed: Toggle - 358: - - Pressed: Toggle - 357: - - Pressed: Toggle - 356: - - Pressed: Toggle - 355: - - Pressed: Toggle - - uid: 1646 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 785: - - Pressed: Toggle - 787: - - Pressed: Toggle - 786: - - Pressed: Toggle - - uid: 1965 - components: - - type: Transform - pos: 9.5,29.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 2235: - - Pressed: Toggle - 2236: - - Pressed: Toggle - 1930: - - Pressed: Toggle - - uid: 2241 - components: - - type: Transform - pos: -14.5,27.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 1929: - - Pressed: Toggle - 2234: - - Pressed: Toggle - 1931: - - Pressed: Toggle - - uid: 2844 - components: - - type: Transform - pos: 17.5,33.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 2835: - - Pressed: Toggle - 2870: - - Pressed: Toggle - 2837: - - Pressed: Toggle - 2836: - - Pressed: Toggle - - uid: 2938 - components: - - type: Transform - pos: 21.5,26.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 2864: - - Pressed: Toggle - 2866: - - Pressed: Toggle - - uid: 5576 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 5509: - - Pressed: Toggle - 5507: - - Pressed: Toggle - 5508: - - Pressed: Toggle - - uid: 6218 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 5794: - - Pressed: Toggle - 5795: - - Pressed: Toggle - 5796: - - Pressed: Toggle - - uid: 6587 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 6574: - - Pressed: Toggle - 6576: - - Pressed: Toggle - 6575: - - Pressed: Toggle - 6577: - - Pressed: Toggle - 6578: - - Pressed: Toggle - 6570: - - Pressed: Toggle - 6586: - - Pressed: Toggle - - uid: 6690 - components: - - type: Transform - pos: 26.5,-28.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 5575: - - Pressed: Toggle - 5574: - - Pressed: Toggle - 5573: - - Pressed: Toggle - - uid: 8165 - components: - - type: Transform - pos: -20.5,26.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 8160: - - Pressed: Toggle - 8153: - - Pressed: Toggle - 8161: - - Pressed: Toggle - - uid: 9497 - components: - - type: Transform - pos: -45.5,18.5 - parent: 4812 - - uid: 9504 - components: - - type: Transform - pos: -41.5,13.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 9496: - - Pressed: Toggle - - uid: 10676 - components: - - type: Transform - pos: -51.5,-7.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 10675: - - Pressed: Toggle - 10674: - - Pressed: Toggle - 10673: - - Pressed: Toggle -- proto: SignAnomaly2 - entities: - - uid: 6342 - components: - - type: Transform - pos: 30.5,-27.5 - parent: 4812 -- proto: SignArmory - entities: - - uid: 7803 - components: - - type: Transform - pos: -36.5,18.5 - parent: 4812 -- proto: SignAtmos - entities: - - uid: 8640 - components: - - type: Transform - pos: -34.5,0.5 - parent: 4812 -- proto: SignAtmosMinsky - entities: - - uid: 8721 - components: - - type: Transform - pos: -35.5,4.5 - parent: 4812 -- proto: SignBio - entities: - - uid: 11260 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 4812 - - uid: 11261 - components: - - type: Transform - pos: 7.5,-39.5 - parent: 4812 -- proto: SignBiohazardMed - entities: - - uid: 8868 - components: - - type: Transform - pos: -35.5,-34.5 - parent: 4812 -- proto: SignBridge - entities: - - uid: 2930 - components: - - type: Transform - pos: 1.5,21.5 - parent: 4812 -- proto: SignCargo - entities: - - uid: 2883 - components: - - type: Transform - pos: 13.5,16.5 - parent: 4812 -- proto: SignChapel - entities: - - uid: 6695 - components: - - type: Transform - pos: -12.5,-36.5 - parent: 4812 -- proto: SignChem - entities: - - uid: 6618 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 4812 -- proto: SignChemistry1 - entities: - - uid: 6642 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 4812 -- proto: SignCloning - entities: - - uid: 8382 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 4812 -- proto: SignCryogenicsMed - entities: - - uid: 4928 - components: - - type: Transform - pos: -11.5,-24.5 - parent: 4812 -- proto: SignDirectionalBridge - entities: - - uid: 2928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.4962993,18.70066 - parent: 4812 - - uid: 3346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.507049,12.716366 - parent: 4812 - - uid: 8310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.498999,15.711071 - parent: 4812 -- proto: SignDirectionalEng - entities: - - uid: 1467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.4997582,-10.299582 - parent: 4812 - - uid: 2926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.493349,18.685036 - parent: 4812 - - uid: 5279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.504691,-33.300663 - parent: 4812 - - uid: 8311 - components: - - type: Transform - pos: -24.498999,15.273571 - parent: 4812 - - uid: 8694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.507013,-4.2984185 - parent: 4812 -- proto: SignDirectionalEvac - entities: - - uid: 1468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.49738908,-10.299582 - parent: 4812 - - uid: 5281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5034294,-33.300663 - parent: 4812 -- proto: SignDirectionalHop - entities: - - uid: 12369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-10.5 - parent: 4812 - - uid: 12370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 4812 -- proto: SignDirectionalJanitor - entities: - - uid: 12368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-10.5 - parent: 4812 -- proto: SignDirectionalMed - entities: - - uid: 1466 - components: - - type: Transform - pos: -5.504419,-10.705832 - parent: 4812 - - uid: 2927 - components: - - type: Transform - pos: -6.493349,18.29441 - parent: 4812 - - uid: 5280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.4988046,-33.706913 - parent: 4812 - - uid: 8693 - components: - - type: Transform - pos: -27.507013,-4.7046685 - parent: 4812 -- proto: SignDirectionalSci - entities: - - uid: 1469 - components: - - type: Transform - pos: 0.49738908,-10.690207 - parent: 4812 - - uid: 2929 - components: - - type: Transform - pos: 1.4962993,18.278786 - parent: 4812 - - uid: 3347 - components: - - type: Transform - pos: 13.507049,12.2966175 - parent: 4812 - - uid: 5282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5034294,-33.706913 - parent: 4812 -- proto: SignDirectionalSec - entities: - - uid: 1464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 4812 - - uid: 2924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 4812 - - uid: 5277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-33.5 - parent: 4812 - - uid: 8309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,15.5 - parent: 4812 - - uid: 8692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-4.5 - parent: 4812 -- proto: SignDirectionalSupply - entities: - - uid: 1465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 4812 - - uid: 2925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,18.5 - parent: 4812 - - uid: 3345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 4812 - - uid: 5278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-33.5 - parent: 4812 -- proto: SignDisposalSpace - entities: - - uid: 6779 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 4812 - - uid: 11251 - components: - - type: Transform - pos: 3.5,-31.5 - parent: 4812 -- proto: SignDoors - entities: - - uid: 1462 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 4812 - - uid: 2813 - components: - - type: Transform - pos: 18.5,28.5 - parent: 4812 - - uid: 2932 - components: - - type: Transform - pos: 4.5,21.5 - parent: 4812 - - uid: 4579 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 4812 - - uid: 5073 - components: - - type: Transform - pos: -9.5,-52.5 - parent: 4812 - - uid: 5074 - components: - - type: Transform - pos: -12.5,-41.5 - parent: 4812 -- proto: SignDrones - entities: - - uid: 11937 - components: - - type: Transform - pos: -12.5,18.5 - parent: 4812 -- proto: SignElectricalMed - entities: - - uid: 3978 - components: - - type: Transform - pos: 15.5,48.5 - parent: 4812 - - uid: 3979 - components: - - type: Transform - pos: 10.5,57.5 - parent: 4812 - - uid: 6019 - components: - - type: Transform - pos: 16.5,-32.5 - parent: 4812 - - uid: 7171 - components: - - type: Transform - pos: -9.5,-31.5 - parent: 4812 - - uid: 8754 - components: - - type: Transform - pos: -45.5,-4.5 - parent: 4812 - - uid: 10601 - components: - - type: Transform - pos: -46.5,-19.5 - parent: 4812 - - uid: 10742 - components: - - type: Transform - pos: -38.5,-9.5 - parent: 4812 -- proto: SignEngine - entities: - - uid: 10775 - components: - - type: Transform - pos: -43.5,-10.5 - parent: 4812 -- proto: SignEngineering - entities: - - uid: 8687 - components: - - type: Transform - pos: -34.5,-4.5 - parent: 4812 -- proto: SignExamroom - entities: - - uid: 6659 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 4812 -- proto: SignFire - entities: - - uid: 9043 - components: - - type: Transform - pos: -32.5,-37.5 - parent: 4812 - - uid: 9689 - components: - - type: Transform - pos: -40.5,-0.5 - parent: 4812 - - uid: 9691 - components: - - type: Transform - pos: -38.5,-4.5 - parent: 4812 -- proto: SignFlammableMed - entities: - - uid: 10748 - components: - - type: Transform - pos: -32.5,6.5 - parent: 4812 -- proto: SignGravity - entities: - - uid: 10743 - components: - - type: Transform - pos: -51.5,-10.5 - parent: 4812 -- proto: SignHydro1 - entities: - - uid: 1076 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 4812 -- proto: SignHydro2 - entities: - - uid: 1075 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 4812 -- proto: SignHydro3 - entities: - - uid: 6685 - components: - - type: Transform - pos: -18.5,-10.5 - parent: 4812 -- proto: SignKiddiePlaque - entities: - - uid: 7730 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 4812 - - uid: 12227 - components: - - type: Transform - pos: -6.5,25.5 - parent: 4812 -- proto: SignLibrary - entities: - - uid: 6680 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 4812 -- proto: SignMedical - entities: - - uid: 7299 - components: - - type: Transform - pos: -7.5,-23.5 - parent: 4812 -- proto: SignMinerDock - entities: - - uid: 3344 - components: - - type: Transform - pos: 21.5,16.5 - parent: 4812 -- proto: SignMorgue - entities: - - uid: 5046 - components: - - type: Transform - pos: -17.5,-13.5 - parent: 4812 - - uid: 6556 - components: - - type: Transform - pos: -20.5,-19.5 - parent: 4812 -- proto: SignNosmoking - entities: - - uid: 6195 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 4812 - - uid: 7451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 4812 - - uid: 7452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-29.5 - parent: 4812 - - uid: 10861 - components: - - type: Transform - pos: -19.5,3.5 - parent: 4812 -- proto: SignPlaque - entities: - - uid: 7570 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 4812 - - uid: 8381 - components: - - type: Transform - pos: -14.5,26.5 - parent: 4812 -- proto: SignPrison - entities: - - uid: 8356 - components: - - type: Transform - pos: -28.5,21.5 - parent: 4812 -- proto: SignRadiationMed - entities: - - uid: 9692 - components: - - type: Transform - pos: -40.5,-4.5 - parent: 4812 - - uid: 10744 - components: - - type: Transform - pos: -51.5,-14.5 - parent: 4812 -- proto: SignRND - entities: - - uid: 6644 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 4812 -- proto: SignRobo - entities: - - uid: 6178 - components: - - type: Transform - pos: 10.5,-22.5 - parent: 4812 - - uid: 6217 - components: - - type: Transform - pos: 2.5,-24.5 - parent: 4812 -- proto: SignScience - entities: - - uid: 6176 - components: - - type: Transform - pos: 2.5,-19.5 - parent: 4812 -- proto: SignScience1 - entities: - - uid: 6175 - components: - - type: Transform - pos: 8.5,-13.5 - parent: 4812 -- proto: SignScience2 - entities: - - uid: 6177 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 4812 - - uid: 6643 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 4812 -- proto: SignSecureMed - entities: - - uid: 2937 - components: - - type: Transform - pos: 4.5,27.5 - parent: 4812 - - uid: 3953 - components: - - type: Transform - pos: 6.5,49.5 - parent: 4812 - - uid: 3954 - components: - - type: Transform - pos: 14.5,49.5 - parent: 4812 - - uid: 3955 - components: - - type: Transform - pos: 14.5,55.5 - parent: 4812 - - uid: 3956 - components: - - type: Transform - pos: 6.5,55.5 - parent: 4812 - - uid: 3957 - components: - - type: Transform - pos: 8.5,46.5 - parent: 4812 - - uid: 3958 - components: - - type: Transform - pos: 12.5,46.5 - parent: 4812 - - uid: 3960 - components: - - type: Transform - pos: 2.5,44.5 - parent: 4812 - - uid: 9693 - components: - - type: Transform - pos: -38.5,-0.5 - parent: 4812 - - uid: 10745 - components: - - type: Transform - pos: -42.5,-9.5 - parent: 4812 -- proto: SignSecureSmall - entities: - - uid: 2931 - components: - - type: Transform - pos: -6.5,21.5 - parent: 4812 -- proto: SignSecureSmallRed - entities: - - uid: 10746 - components: - - type: Transform - pos: -37.5,6.5 - parent: 4812 -- proto: SignSecurity - entities: - - uid: 7231 - components: - - type: Transform - pos: -24.5,12.5 - parent: 4812 - - uid: 7442 - components: - - type: Transform - pos: -1.5,-30.5 - parent: 4812 -- proto: SignSmoking - entities: - - uid: 8607 - components: - - type: Transform - pos: -15.5,11.5 - parent: 4812 - - uid: 9044 - components: - - type: Transform - pos: -33.5,-38.5 - parent: 4812 - - uid: 10751 - components: - - type: Transform - pos: -40.5,11.5 - parent: 4812 -- proto: SignSpace - entities: - - uid: 2939 - components: - - type: Transform - pos: 22.5,26.5 - parent: 4812 - - uid: 3959 - components: - - type: Transform - pos: 4.5,46.5 - parent: 4812 - - uid: 4580 - components: - - type: Transform - pos: 32.5,1.5 - parent: 4812 - - uid: 4581 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 4812 - - uid: 4602 - components: - - type: Transform - pos: 19.5,11.5 - parent: 4812 - - uid: 5075 - components: - - type: Transform - pos: -9.5,-41.5 - parent: 4812 - - uid: 5076 - components: - - type: Transform - pos: -12.5,-52.5 - parent: 4812 - - uid: 5514 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 4812 - - uid: 11694 - components: - - type: Transform - pos: 26.5,-37.5 - parent: 4812 -- proto: SignSurgery - entities: - - uid: 5010 - components: - - type: Transform - pos: -18.5,-24.5 - parent: 4812 -- proto: SignTelecomms - entities: - - uid: 7202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-10.5 - parent: 4812 -- proto: SignToolStorage - entities: - - uid: 8609 - components: - - type: Transform - pos: -21.5,12.5 - parent: 4812 -- proto: SignToxins2 - entities: - - uid: 6645 - components: - - type: Transform - pos: 26.5,-27.5 - parent: 4812 -- proto: SignVirology - entities: - - uid: 8870 - components: - - type: Transform - pos: -32.5,-32.5 - parent: 4812 -- proto: SignXenolab - entities: - - uid: 11143 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 4812 -- proto: Sink - entities: - - uid: 1485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 4812 - - uid: 1660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 4812 - - uid: 2486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,28.5 - parent: 4812 - - uid: 2487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 4812 - - uid: 3402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 4812 - - uid: 4454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 4812 - - uid: 7026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-33.5 - parent: 4812 - - uid: 8243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,27.5 - parent: 4812 - - uid: 9817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 4812 -- proto: SinkEmpty - entities: - - uid: 3580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,35.5 - parent: 4812 -- proto: SinkWide - entities: - - uid: 1078 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 4812 - - uid: 1537 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 4812 - - uid: 1653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 4812 - - uid: 1679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 4812 - - uid: 8389 - components: - - type: Transform - pos: -31.5,32.5 - parent: 4812 -- proto: SmartFridge - entities: - - uid: 933 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -6.5,-7.5 - parent: 4812 - - uid: 7186 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -18.5,-26.5 - parent: 4812 - - uid: 9020 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -40.5,-33.5 - parent: 4812 - - uid: 11100 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 10.5,-43.5 - parent: 4812 -- proto: SMESBasic - entities: - - uid: 3699 - components: - - type: MetaData - name: AI satellite Backup SMES - - type: Transform - pos: 10.5,56.5 - parent: 4812 - - uid: 3700 - components: - - type: MetaData - name: AI satellite SMES - - type: Transform - pos: 14.5,47.5 - parent: 4812 - - uid: 8722 - components: - - type: MetaData - name: SMES Bank 2 - - type: Transform - pos: -44.5,-2.5 - parent: 4812 - - uid: 8723 - components: - - type: MetaData - name: SMES Bank 1 - - type: Transform - pos: -45.5,-2.5 - parent: 4812 - - uid: 10166 - components: - - type: MetaData - name: South West Solar SMES - - type: Transform - pos: -53.5,-25.5 - parent: 4812 - - uid: 10637 - components: - - type: MetaData - name: Grav SMES - - type: Transform - pos: -47.5,-11.5 - parent: 4812 - - uid: 11392 - components: - - type: MetaData - name: South East Solar SMES - - type: Transform - pos: 33.5,-39.5 - parent: 4812 -- proto: SoapDeluxe - entities: - - uid: 2494 - components: - - type: Transform - pos: 10.47866,30.543114 - parent: 4812 -- proto: SoapNT - entities: - - uid: 2495 - components: - - type: Transform - pos: -15.503267,29.527489 - parent: 4812 -- proto: soda_dispenser - entities: - - uid: 364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,8.5 - parent: 4812 - - uid: 10492 - components: - - type: Transform - pos: -37.5,-22.5 - parent: 4812 -- proto: SolarPanel - entities: - - uid: 10323 - components: - - type: Transform - pos: -69.5,-21.5 - parent: 4812 - - uid: 10324 - components: - - type: Transform - pos: -69.5,-20.5 - parent: 4812 - - uid: 10325 - components: - - type: Transform - pos: -69.5,-19.5 - parent: 4812 - - uid: 10326 - components: - - type: Transform - pos: -69.5,-18.5 - parent: 4812 - - uid: 10327 - components: - - type: Transform - pos: -67.5,-21.5 - parent: 4812 - - uid: 10328 - components: - - type: Transform - pos: -67.5,-20.5 - parent: 4812 - - uid: 10329 - components: - - type: Transform - pos: -67.5,-19.5 - parent: 4812 - - uid: 10330 - components: - - type: Transform - pos: -67.5,-18.5 - parent: 4812 - - uid: 10331 - components: - - type: Transform - pos: -69.5,-26.5 - parent: 4812 - - uid: 10332 - components: - - type: Transform - pos: -69.5,-25.5 - parent: 4812 - - uid: 10333 - components: - - type: Transform - pos: -69.5,-24.5 - parent: 4812 - - uid: 10334 - components: - - type: Transform - pos: -69.5,-23.5 - parent: 4812 - - uid: 10335 - components: - - type: Transform - pos: -67.5,-26.5 - parent: 4812 - - uid: 10336 - components: - - type: Transform - pos: -67.5,-25.5 - parent: 4812 - - uid: 10337 - components: - - type: Transform - pos: -67.5,-24.5 - parent: 4812 - - uid: 10338 - components: - - type: Transform - pos: -67.5,-23.5 - parent: 4812 - - uid: 10339 - components: - - type: Transform - pos: -65.5,-26.5 - parent: 4812 - - uid: 10340 - components: - - type: Transform - pos: -65.5,-25.5 - parent: 4812 - - uid: 10341 - components: - - type: Transform - pos: -65.5,-24.5 - parent: 4812 - - uid: 10342 - components: - - type: Transform - pos: -65.5,-23.5 - parent: 4812 - - uid: 10343 - components: - - type: Transform - pos: -63.5,-26.5 - parent: 4812 - - uid: 10344 - components: - - type: Transform - pos: -63.5,-25.5 - parent: 4812 - - uid: 10345 - components: - - type: Transform - pos: -63.5,-24.5 - parent: 4812 - - uid: 10346 - components: - - type: Transform - pos: -63.5,-23.5 - parent: 4812 - - uid: 10347 - components: - - type: Transform - pos: -61.5,-26.5 - parent: 4812 - - uid: 10348 - components: - - type: Transform - pos: -61.5,-25.5 - parent: 4812 - - uid: 10349 - components: - - type: Transform - pos: -61.5,-24.5 - parent: 4812 - - uid: 10350 - components: - - type: Transform - pos: -61.5,-23.5 - parent: 4812 - - uid: 10351 - components: - - type: Transform - pos: -59.5,-26.5 - parent: 4812 - - uid: 10352 - components: - - type: Transform - pos: -59.5,-25.5 - parent: 4812 - - uid: 10353 - components: - - type: Transform - pos: -59.5,-24.5 - parent: 4812 - - uid: 10354 - components: - - type: Transform - pos: -59.5,-23.5 - parent: 4812 - - uid: 10355 - components: - - type: Transform - pos: -59.5,-21.5 - parent: 4812 - - uid: 10356 - components: - - type: Transform - pos: -59.5,-20.5 - parent: 4812 - - uid: 10357 - components: - - type: Transform - pos: -59.5,-19.5 - parent: 4812 - - uid: 10358 - components: - - type: Transform - pos: -59.5,-18.5 - parent: 4812 - - uid: 10359 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 4812 - - uid: 10360 - components: - - type: Transform - pos: -61.5,-20.5 - parent: 4812 - - uid: 10361 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 4812 - - uid: 10362 - components: - - type: Transform - pos: -61.5,-18.5 - parent: 4812 - - uid: 10363 - components: - - type: Transform - pos: -63.5,-21.5 - parent: 4812 - - uid: 10364 - components: - - type: Transform - pos: -63.5,-20.5 - parent: 4812 - - uid: 10365 - components: - - type: Transform - pos: -63.5,-19.5 - parent: 4812 - - uid: 10366 - components: - - type: Transform - pos: -63.5,-18.5 - parent: 4812 - - uid: 10367 - components: - - type: Transform - pos: -65.5,-21.5 - parent: 4812 - - uid: 10368 - components: - - type: Transform - pos: -65.5,-20.5 - parent: 4812 - - uid: 10369 - components: - - type: Transform - pos: -65.5,-19.5 - parent: 4812 - - uid: 10370 - components: - - type: Transform - pos: -65.5,-18.5 - parent: 4812 - - uid: 11530 - components: - - type: Transform - pos: 41.5,-35.5 - parent: 4812 - - uid: 11531 - components: - - type: Transform - pos: 41.5,-34.5 - parent: 4812 - - uid: 11532 - components: - - type: Transform - pos: 41.5,-33.5 - parent: 4812 - - uid: 11533 - components: - - type: Transform - pos: 41.5,-32.5 - parent: 4812 - - uid: 11534 - components: - - type: Transform - pos: 43.5,-35.5 - parent: 4812 - - uid: 11535 - components: - - type: Transform - pos: 43.5,-34.5 - parent: 4812 - - uid: 11536 - components: - - type: Transform - pos: 43.5,-33.5 - parent: 4812 - - uid: 11537 - components: - - type: Transform - pos: 43.5,-32.5 - parent: 4812 - - uid: 11538 - components: - - type: Transform - pos: 45.5,-35.5 - parent: 4812 - - uid: 11539 - components: - - type: Transform - pos: 45.5,-34.5 - parent: 4812 - - uid: 11540 - components: - - type: Transform - pos: 45.5,-33.5 - parent: 4812 - - uid: 11541 - components: - - type: Transform - pos: 45.5,-32.5 - parent: 4812 - - uid: 11542 - components: - - type: Transform - pos: 47.5,-35.5 - parent: 4812 - - uid: 11543 - components: - - type: Transform - pos: 47.5,-34.5 - parent: 4812 - - uid: 11544 - components: - - type: Transform - pos: 47.5,-33.5 - parent: 4812 - - uid: 11545 - components: - - type: Transform - pos: 47.5,-32.5 - parent: 4812 - - uid: 11546 - components: - - type: Transform - pos: 49.5,-35.5 - parent: 4812 - - uid: 11547 - components: - - type: Transform - pos: 49.5,-34.5 - parent: 4812 - - uid: 11548 - components: - - type: Transform - pos: 49.5,-33.5 - parent: 4812 - - uid: 11549 - components: - - type: Transform - pos: 49.5,-32.5 - parent: 4812 - - uid: 11550 - components: - - type: Transform - pos: 51.5,-35.5 - parent: 4812 - - uid: 11551 - components: - - type: Transform - pos: 51.5,-34.5 - parent: 4812 - - uid: 11552 - components: - - type: Transform - pos: 51.5,-33.5 - parent: 4812 - - uid: 11553 - components: - - type: Transform - pos: 51.5,-32.5 - parent: 4812 - - uid: 11554 - components: - - type: Transform - pos: 51.5,-40.5 - parent: 4812 - - uid: 11555 - components: - - type: Transform - pos: 51.5,-39.5 - parent: 4812 - - uid: 11556 - components: - - type: Transform - pos: 51.5,-38.5 - parent: 4812 - - uid: 11557 - components: - - type: Transform - pos: 51.5,-37.5 - parent: 4812 - - uid: 11558 - components: - - type: Transform - pos: 49.5,-40.5 - parent: 4812 - - uid: 11559 - components: - - type: Transform - pos: 49.5,-39.5 - parent: 4812 - - uid: 11560 - components: - - type: Transform - pos: 49.5,-38.5 - parent: 4812 - - uid: 11561 - components: - - type: Transform - pos: 49.5,-37.5 - parent: 4812 - - uid: 11562 - components: - - type: Transform - pos: 47.5,-40.5 - parent: 4812 - - uid: 11563 - components: - - type: Transform - pos: 47.5,-39.5 - parent: 4812 - - uid: 11564 - components: - - type: Transform - pos: 47.5,-38.5 - parent: 4812 - - uid: 11565 - components: - - type: Transform - pos: 47.5,-37.5 - parent: 4812 - - uid: 11566 - components: - - type: Transform - pos: 45.5,-40.5 - parent: 4812 - - uid: 11567 - components: - - type: Transform - pos: 45.5,-39.5 - parent: 4812 - - uid: 11568 - components: - - type: Transform - pos: 45.5,-38.5 - parent: 4812 - - uid: 11569 - components: - - type: Transform - pos: 45.5,-37.5 - parent: 4812 - - uid: 11570 - components: - - type: Transform - pos: 43.5,-40.5 - parent: 4812 - - uid: 11571 - components: - - type: Transform - pos: 43.5,-39.5 - parent: 4812 - - uid: 11572 - components: - - type: Transform - pos: 43.5,-38.5 - parent: 4812 - - uid: 11573 - components: - - type: Transform - pos: 43.5,-37.5 - parent: 4812 - - uid: 11574 - components: - - type: Transform - pos: 41.5,-40.5 - parent: 4812 - - uid: 11575 - components: - - type: Transform - pos: 41.5,-39.5 - parent: 4812 - - uid: 11576 - components: - - type: Transform - pos: 41.5,-38.5 - parent: 4812 - - uid: 11577 - components: - - type: Transform - pos: 41.5,-37.5 - parent: 4812 -- proto: SolarTracker - entities: - - uid: 10274 - components: - - type: Transform - pos: -71.5,-22.5 - parent: 4812 - - uid: 11529 - components: - - type: Transform - pos: 53.5,-36.5 - parent: 4812 -- proto: SpaceVillainArcadeFilled - entities: - - uid: 3774 - components: - - type: Transform - pos: -21.5,5.5 - parent: 4812 -- proto: SpawnMobAlexander - entities: - - uid: 12426 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 4812 -- proto: SpawnMobBandito - entities: - - uid: 6340 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 4812 -- proto: SpawnMobCat - entities: - - uid: 8375 - components: - - type: Transform - pos: -26.5,-25.5 - parent: 4812 -- proto: SpawnMobCorgi - entities: - - uid: 2512 - components: - - type: Transform - pos: 5.5,26.5 - parent: 4812 -- proto: SpawnMobCow - entities: - - uid: 1566 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 4812 -- proto: SpawnMobCrabAtmos - entities: - - uid: 6638 - components: - - type: Transform - pos: -43.5,6.5 - parent: 4812 -- proto: SpawnMobDrone - entities: - - uid: 11933 - components: - - type: Transform - pos: -13.5,16.5 - parent: 4812 - - uid: 11934 - components: - - type: Transform - pos: -12.5,16.5 - parent: 4812 - - uid: 11935 - components: - - type: Transform - pos: -11.5,16.5 - parent: 4812 -- proto: SpawnMobFoxRenault - entities: - - uid: 2621 - components: - - type: Transform - pos: -15.5,22.5 - parent: 4812 -- proto: SpawnMobMcGriff - entities: - - uid: 8340 - components: - - type: Transform - pos: -35.5,17.5 - parent: 4812 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 4838 - components: - - type: Transform - pos: 2.5,7.5 - parent: 4812 -- proto: SpawnMobMouse - entities: - - uid: 4594 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 4812 - - uid: 7169 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 4812 -- proto: SpawnMobPossumMorty - entities: - - uid: 5053 - components: - - type: Transform - pos: -19.5,-16.5 - parent: 4812 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 3281 - components: - - type: Transform - pos: 17.5,19.5 - parent: 4812 -- proto: SpawnMobShiva - entities: - - uid: 4808 - components: - - type: Transform - pos: -23.5,24.5 - parent: 4812 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 7155 - components: - - type: Transform - pos: -23.5,-19.5 - parent: 4812 -- proto: SpawnMobSmile - entities: - - uid: 9586 - components: - - type: Transform - pos: 26.5,-24.5 - parent: 4812 -- proto: SpawnMobWalter - entities: - - uid: 6647 - components: - - type: Transform - pos: -11.5,-14.5 - parent: 4812 -- proto: SpawnPointAtmos - entities: - - uid: 3259 - components: - - type: Transform - pos: -31.5,2.5 - parent: 4812 - - uid: 3468 - components: - - type: Transform - pos: -30.5,3.5 - parent: 4812 -- proto: SpawnPointBartender - entities: - - uid: 1783 - components: - - type: Transform - pos: 6.5,7.5 - parent: 4812 -- proto: SpawnPointBorg - entities: - - uid: 11922 - components: - - type: Transform - pos: 4.5,-26.5 - parent: 4812 - - uid: 12046 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 4812 -- proto: SpawnPointBotanist - entities: - - uid: 1472 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 4812 - - uid: 1473 - components: - - type: Transform - pos: -13.5,-6.5 - parent: 4812 -- proto: SpawnPointCaptain - entities: - - uid: 2697 - components: - - type: Transform - pos: -11.5,28.5 - parent: 4812 -- proto: SpawnPointCargoTechnician - entities: - - uid: 3282 - components: - - type: Transform - pos: 15.5,18.5 - parent: 4812 - - uid: 3283 - components: - - type: Transform - pos: 19.5,19.5 - parent: 4812 -- proto: SpawnPointChaplain - entities: - - uid: 7633 - components: - - type: Transform - pos: -26.5,-36.5 - parent: 4812 -- proto: SpawnPointChef - entities: - - uid: 1567 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 4812 -- proto: SpawnPointChemist - entities: - - uid: 6648 - components: - - type: Transform - pos: -11.5,-16.5 - parent: 4812 - - uid: 6649 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 4812 -- proto: SpawnPointChiefEngineer - entities: - - uid: 9833 - components: - - type: Transform - pos: -50.5,-8.5 - parent: 4812 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 7859 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 4812 -- proto: SpawnPointClown - entities: - - uid: 1713 - components: - - type: Transform - pos: -9.5,1.5 - parent: 4812 -- proto: SpawnPointDetective - entities: - - uid: 12168 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 4812 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 2540 - components: - - type: Transform - pos: 7.5,28.5 - parent: 4812 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 8253 - components: - - type: Transform - pos: -22.5,27.5 - parent: 4812 -- proto: SpawnPointJanitor - entities: - - uid: 1535 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 4812 -- proto: SpawnPointLatejoin - entities: - - uid: 4707 - components: - - type: Transform - pos: -11.5,-48.5 - parent: 4812 - - uid: 4708 - components: - - type: Transform - pos: -11.5,-47.5 - parent: 4812 - - uid: 4713 - components: - - type: Transform - pos: -11.5,-46.5 - parent: 4812 - - uid: 4715 - components: - - type: Transform - pos: -11.5,-45.5 - parent: 4812 - - uid: 4716 - components: - - type: Transform - pos: -10.5,-48.5 - parent: 4812 - - uid: 4718 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 4812 - - uid: 4720 - components: - - type: Transform - pos: -10.5,-46.5 - parent: 4812 - - uid: 4721 - components: - - type: Transform - pos: -10.5,-45.5 - parent: 4812 -- proto: SpawnPointLawyer - entities: - - uid: 8308 - components: - - type: Transform - pos: -17.5,16.5 - parent: 4812 -- proto: SpawnPointLibrarian - entities: - - uid: 7634 - components: - - type: Transform - pos: -31.5,-22.5 - parent: 4812 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 8358 - components: - - type: Transform - pos: -9.5,-27.5 - parent: 4812 - - uid: 8373 - components: - - type: Transform - pos: -9.5,-26.5 - parent: 4812 - - uid: 8374 - components: - - type: Transform - pos: -19.5,-22.5 - parent: 4812 -- proto: SpawnPointMedicalIntern - entities: - - uid: 7860 - components: - - type: Transform - pos: -15.5,-22.5 - parent: 4812 - - uid: 8357 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 4812 -- proto: SpawnPointMime - entities: - - uid: 1715 - components: - - type: Transform - pos: -9.5,0.5 - parent: 4812 -- proto: SpawnPointMusician - entities: - - uid: 1722 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 4812 -- proto: SpawnPointObserver - entities: - - uid: 5059 - components: - - type: Transform - pos: -2.5,2.5 - parent: 4812 -- proto: SpawnPointPassenger - entities: - - uid: 12382 - components: - - type: Transform - pos: -19.5,8.5 - parent: 4812 - - uid: 12383 - components: - - type: Transform - pos: -18.5,11.5 - parent: 4812 - - uid: 12384 - components: - - type: Transform - pos: -17.5,9.5 - parent: 4812 - - uid: 12385 - components: - - type: Transform - pos: -20.5,10.5 - parent: 4812 -- proto: SpawnPointQuartermaster - entities: - - uid: 3449 - components: - - type: Transform - pos: 16.5,34.5 - parent: 4812 -- proto: SpawnPointResearchAssistant - entities: - - uid: 12519 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 4812 -- proto: SpawnPointResearchDirector - entities: - - uid: 6305 - components: - - type: Transform - pos: 27.5,-18.5 - parent: 4812 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 3284 - components: - - type: Transform - pos: 23.5,15.5 - parent: 4812 - - uid: 7465 - components: - - type: Transform - pos: 23.5,14.5 - parent: 4812 -- proto: SpawnPointScientist - entities: - - uid: 12499 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 4812 - - uid: 12500 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 4812 - - uid: 12501 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 4812 - - uid: 12502 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 4812 -- proto: SpawnPointSecurityCadet - entities: - - uid: 8440 - components: - - type: Transform - pos: -34.5,11.5 - parent: 4812 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 8441 - components: - - type: Transform - pos: -35.5,11.5 - parent: 4812 - - uid: 8442 - components: - - type: Transform - pos: -36.5,11.5 - parent: 4812 -- proto: SpawnPointServiceWorker - entities: - - uid: 12386 - components: - - type: Transform - pos: 4.5,-0.5 - parent: 4812 -- proto: SpawnPointStationEngineer - entities: - - uid: 10844 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 4812 - - uid: 10845 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 4812 - - uid: 10846 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 4812 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 10903 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 4812 -- proto: SpawnPointWarden - entities: - - uid: 8336 - components: - - type: Transform - pos: -34.5,15.5 - parent: 4812 -- proto: SpawnVehicleJanicart - entities: - - uid: 1481 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 4812 -- proto: SpawnVehicleSecway - entities: - - uid: 8348 - components: - - type: Transform - pos: -31.5,19.5 - parent: 4812 -- proto: Spoon - entities: - - uid: 1774 - components: - - type: Transform - pos: -2.3316398,2.6041236 - parent: 4812 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 1491 - components: - - type: Transform - pos: -23.528929,-7.7805715 - parent: 4812 - - uid: 1492 - components: - - type: Transform - pos: -23.435179,-7.6711965 - parent: 4812 -- proto: StasisBed - entities: - - uid: 7574 - components: - - type: Transform - pos: -17.5,-20.5 - parent: 4812 -- proto: StationMap - entities: - - uid: 3772 - components: - - type: Transform - pos: 18.5,-1.5 - parent: 4812 - - uid: 4005 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 4812 - - uid: 6689 - components: - - type: Transform - pos: -12.5,21.5 - parent: 4812 - - uid: 7296 - components: - - type: Transform - pos: -31.5,-13.5 - parent: 4812 - - uid: 7297 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 4812 -- proto: Stool - entities: - - uid: 1752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 4812 - - uid: 8402 - components: - - type: Transform - pos: -29.5,31.5 - parent: 4812 - - uid: 8403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,29.5 - parent: 4812 - - uid: 8404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,30.5 - parent: 4812 - - uid: 8412 - components: - - type: Transform - pos: -31.5,27.5 - parent: 4812 - - uid: 8413 - components: - - type: Transform - pos: -27.5,27.5 - parent: 4812 - - uid: 10497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-29.5 - parent: 4812 - - uid: 10867 - components: - - type: Transform - pos: -22.5,1.5 - parent: 4812 - - uid: 10868 - components: - - type: Transform - pos: -21.5,1.5 - parent: 4812 - - uid: 10869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-0.5 - parent: 4812 - - uid: 12148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,4.5 - parent: 4812 -- proto: StoolBar - entities: - - uid: 345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,9.5 - parent: 4812 - - uid: 346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,8.5 - parent: 4812 - - uid: 347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 4812 - - uid: 348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 4812 - - uid: 366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 4812 - - uid: 367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 4812 - - uid: 887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 4812 - - uid: 888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 4812 - - uid: 889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 4812 - - uid: 10495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-26.5 - parent: 4812 - - uid: 10496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-26.5 - parent: 4812 -- proto: StorageCanister - entities: - - uid: 6325 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 6326 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9553 - components: - - type: Transform - pos: -41.5,6.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9554 - components: - - type: Transform - pos: -41.5,7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9555 - components: - - type: Transform - pos: -41.5,8.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9665 - components: - - type: Transform - pos: -34.5,4.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 9666 - components: - - type: Transform - pos: -34.5,5.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 - - uid: 12462 - components: - - type: Transform - pos: -36.5,26.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: SubstationBasic - entities: - - uid: 897 - components: - - type: MetaData - name: Dorm Substation - - type: Transform - pos: -14.5,7.5 - parent: 4812 - - uid: 1360 - components: - - type: MetaData - name: Bar Substation - - type: Transform - pos: 5.5,4.5 - parent: 4812 - - uid: 2076 - components: - - type: MetaData - name: Bridge Substation - - type: Transform - pos: 6.5,31.5 - parent: 4812 - - uid: 2821 - components: - - type: MetaData - name: Cargo Substation - - type: Transform - pos: 13.5,32.5 - parent: 4812 - - uid: 3787 - components: - - type: MetaData - name: AI satellite Substation - - type: Transform - pos: 13.5,47.5 - parent: 4812 - - uid: 4234 - components: - - type: MetaData - name: Evac Substation - - type: Transform - pos: 17.5,2.5 - parent: 4812 - - uid: 5913 - components: - - type: MetaData - name: South Science Substation - - type: Transform - pos: 16.5,-30.5 - parent: 4812 - - uid: 6899 - components: - - type: MetaData - name: Arrivals Substation - - type: Transform - pos: -8.5,-30.5 - parent: 4812 - - uid: 7957 - components: - - type: MetaData - name: Atmos Substation - - type: Transform - pos: -37.5,8.5 - parent: 4812 - - uid: 9959 - components: - - type: MetaData - name: Engi Substation - - type: Transform - pos: -48.5,-19.5 - parent: 4812 - - uid: 10182 - components: - - type: MetaData - name: South West Solar Substation - - type: Transform - pos: -50.5,-25.5 - parent: 4812 - - uid: 10649 - components: - - type: MetaData - name: Grav Substation - - type: Transform - pos: -53.5,-13.5 - parent: 4812 - - uid: 11435 - components: - - type: MetaData - name: South East Solar Substation - - type: Transform - pos: 30.5,-39.5 - parent: 4812 -- proto: SuitStorageAtmos - entities: - - uid: 742 - components: - - type: Transform - pos: -41.5,9.5 - parent: 4812 - - uid: 4846 - components: - - type: Transform - pos: -41.5,10.5 - parent: 4812 -- proto: SuitStorageCaptain - entities: - - uid: 746 - components: - - type: Transform - pos: -10.5,27.5 - parent: 4812 -- proto: SuitStorageCE - entities: - - uid: 747 - components: - - type: Transform - pos: -49.5,-6.5 - parent: 4812 -- proto: SuitStorageEngi - entities: - - uid: 2584 - components: - - type: Transform - pos: -46.5,-7.5 - parent: 4812 - - uid: 4843 - components: - - type: Transform - pos: -46.5,-8.5 - parent: 4812 - - uid: 4855 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 4812 -- proto: SuitStorageEVA - entities: - - uid: 738 - components: - - type: Transform - pos: 9.5,16.5 - parent: 4812 - - uid: 743 - components: - - type: Transform - pos: 5.5,15.5 - parent: 4812 - - uid: 4844 - components: - - type: Transform - pos: 5.5,16.5 - parent: 4812 - - uid: 4845 - components: - - type: Transform - pos: 9.5,15.5 - parent: 4812 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 6572 - components: - - type: Transform - pos: -31.5,24.5 - parent: 4812 - - uid: 7058 - components: - - type: Transform - pos: -25.5,24.5 - parent: 4812 -- proto: SuitStorageHOS - entities: - - uid: 740 - components: - - type: Transform - pos: -23.5,22.5 - parent: 4812 -- proto: SuitStorageRD - entities: - - uid: 735 - components: - - type: Transform - pos: 27.5,-17.5 - parent: 4812 -- proto: SuitStorageSec - entities: - - uid: 736 - components: - - type: Transform - pos: -35.5,21.5 - parent: 4812 -- proto: SuitStorageWarden - entities: - - uid: 745 - components: - - type: Transform - pos: -36.5,21.5 - parent: 4812 -- proto: SuperCapacitorStockPart - entities: - - uid: 6210 - components: - - type: Transform - pos: 7.701914,-18.299206 - parent: 4812 - - uid: 6211 - components: - - type: Transform - pos: 7.451914,-18.299206 - parent: 4812 - - uid: 6212 - components: - - type: Transform - pos: 7.5679626,-16.149172 - parent: 4812 -- proto: SurveillanceCameraCommand - entities: - - uid: 12081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,29.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - - uid: 12082 - components: - - type: Transform - pos: -12.5,22.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - - uid: 12084 - components: - - type: Transform - pos: 1.5,32.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge - - uid: 12085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Room - - uid: 12086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,26.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Office - - uid: 12087 - components: - - type: Transform - pos: -1.5,22.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - - uid: 12090 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,55.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core 2 - - uid: 12091 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,50.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core 1 - - uid: 12092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,46.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance - - uid: 12522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,24.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoS office - - uid: 12523 - components: - - type: Transform - pos: -12.5,15.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Drone bay - - uid: 12524 - components: - - type: Transform - pos: 7.5,14.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EvA Storage -- proto: SurveillanceCameraEngineering - entities: - - uid: 12064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-12.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Gen - - uid: 12065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-8.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer Room - - uid: 12066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-14.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - - uid: 12067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Lobby - - uid: 12068 - components: - - type: Transform - pos: -42.5,0.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics -- proto: SurveillanceCameraGeneral - entities: - - uid: 12060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security Hallway - - uid: 12528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of engineering - - uid: 12529 - components: - - type: Transform - pos: -17.5,-12.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hydro and medbay - - uid: 12530 - components: - - type: Transform - pos: 11.5,-12.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Science and detective - - uid: 12531 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of service - - uid: 12532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of medbay - - uid: 12533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-22.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of science - - uid: 12534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-31.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance 3 - - uid: 12535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-39.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance 2 - - uid: 12536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-53.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance 1 - - uid: 12537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,14.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of cargo - - uid: 12538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service and evac - - uid: 12539 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of evac - - uid: 12540 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evacuation 1 - - uid: 12541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,4.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evacuation 2 - - uid: 12542 - components: - - type: Transform - pos: 1.5,19.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of bridge - - uid: 12543 - components: - - type: Transform - pos: -16.5,19.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security and drones - - uid: 12544 - components: - - type: Transform - pos: -19.5,1.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dormitory -- proto: SurveillanceCameraMedical - entities: - - uid: 12072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-16.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - - uid: 12105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-33.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 2732 - components: - - type: Transform - pos: -0.5,26.5 - parent: 4812 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 10668 - components: - - type: Transform - pos: -48.5,-6.5 - parent: 4812 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 7396 - components: - - type: Transform - pos: -54.5,-13.5 - parent: 4812 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 7448 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 4812 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 12045 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 4812 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 8372 - components: - - type: Transform - pos: -33.5,21.5 - parent: 4812 -- proto: SurveillanceCameraRouterService - entities: - - uid: 10658 - components: - - type: Transform - pos: -52.5,-13.5 - parent: 4812 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 3578 - components: - - type: Transform - pos: 15.5,32.5 - parent: 4812 -- proto: SurveillanceCameraScience - entities: - - uid: 12075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Toxins - - uid: 12076 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Server Room - - uid: 12077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-14.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Research and Development - - uid: 12078 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - - uid: 12079 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Research Director's Room -- proto: SurveillanceCameraSecurity - entities: - - uid: 12058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,20.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 12059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,15.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security - - uid: 12061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,15.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Office - - uid: 12062 - components: - - type: Transform - pos: -35.5,10.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Break Room - - uid: 12063 - components: - - type: Transform - pos: -28.5,29.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig - - uid: 12080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Checkpoint - - uid: 12521 - components: - - type: Transform - pos: -17.5,14.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer office - - uid: 12527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective office -- proto: SurveillanceCameraService - entities: - - uid: 12546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-5.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - - uid: 12547 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-14.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library - - uid: 12548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - - uid: 12549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 12550 - components: - - type: Transform - pos: 6.5,6.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bartenders room - - uid: 12551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Service 2 - - uid: 12552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Service 1 - - uid: 12553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,1.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Clowns room - - uid: 12554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Theater - - uid: 12555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-6.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitors room - - uid: 12556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel 1 -- proto: SurveillanceCameraSupply - entities: - - uid: 12088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,27.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - - uid: 12089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,18.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Lobby - - uid: 12525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,35.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: QM Room - - uid: 12526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,12.5 - parent: 4812 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvagers -- proto: Syringe - entities: - - uid: 6248 - components: - - type: Transform - pos: 16.462831,-27.480993 - parent: 4812 - - uid: 7685 - components: - - type: Transform - pos: -14.597183,-25.438694 - parent: 4812 -- proto: SyringeInaprovaline - entities: - - uid: 7585 - components: - - type: Transform - pos: -15.483852,-23.427011 - parent: 4812 -- proto: Table - entities: - - uid: 1095 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 4812 - - uid: 1096 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 4812 - - uid: 1101 - components: - - type: Transform - pos: -7.5,-7.5 - parent: 4812 - - uid: 1102 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 4812 - - uid: 1453 - components: - - type: Transform - pos: -18.5,-8.5 - parent: 4812 - - uid: 1554 - components: - - type: Transform - pos: 7.5,0.5 - parent: 4812 - - uid: 1651 - components: - - type: Transform - pos: 7.5,8.5 - parent: 4812 - - uid: 1801 - components: - - type: Transform - pos: -4.5,14.5 - parent: 4812 - - uid: 2485 - components: - - type: Transform - pos: 10.5,22.5 - parent: 4812 - - uid: 2720 - components: - - type: Transform - pos: -1.5,24.5 - parent: 4812 - - uid: 2721 - components: - - type: Transform - pos: -3.5,24.5 - parent: 4812 - - uid: 3234 - components: - - type: Transform - pos: 20.5,17.5 - parent: 4812 - - uid: 3235 - components: - - type: Transform - pos: 14.5,18.5 - parent: 4812 - - uid: 3244 - components: - - type: Transform - pos: 17.5,13.5 - parent: 4812 - - uid: 3266 - components: - - type: Transform - pos: 22.5,12.5 - parent: 4812 - - uid: 3447 - components: - - type: Transform - pos: 22.5,3.5 - parent: 4812 - - uid: 3755 - components: - - type: Transform - pos: 15.5,35.5 - parent: 4812 - - uid: 3756 - components: - - type: Transform - pos: 17.5,31.5 - parent: 4812 - - uid: 3843 - components: - - type: Transform - pos: 13.5,44.5 - parent: 4812 - - uid: 3844 - components: - - type: Transform - pos: 15.5,47.5 - parent: 4812 - - uid: 3850 - components: - - type: Transform - pos: 10.5,43.5 - parent: 4812 - - uid: 3851 - components: - - type: Transform - pos: 9.5,56.5 - parent: 4812 - - uid: 3852 - components: - - type: Transform - pos: 11.5,56.5 - parent: 4812 - - uid: 3946 - components: - - type: Transform - pos: 9.5,48.5 - parent: 4812 - - uid: 3947 - components: - - type: Transform - pos: 11.5,48.5 - parent: 4812 - - uid: 4455 - components: - - type: Transform - pos: 14.5,6.5 - parent: 4812 - - uid: 4490 - components: - - type: Transform - pos: 20.5,2.5 - parent: 4812 - - uid: 4534 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 4812 - - uid: 4547 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 4812 - - uid: 4548 - components: - - type: Transform - pos: 27.5,0.5 - parent: 4812 - - uid: 4597 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 4812 - - uid: 4598 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 4812 - - uid: 4985 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 4812 - - uid: 6181 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 4812 - - uid: 6190 - components: - - type: Transform - pos: 3.5,-18.5 - parent: 4812 - - uid: 6192 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 4812 - - uid: 6228 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 4812 - - uid: 6254 - components: - - type: Transform - pos: 5.5,-25.5 - parent: 4812 - - uid: 6255 - components: - - type: Transform - pos: 6.5,-25.5 - parent: 4812 - - uid: 6256 - components: - - type: Transform - pos: 6.5,-28.5 - parent: 4812 - - uid: 6257 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 4812 - - uid: 6314 - components: - - type: Transform - pos: 24.5,-26.5 - parent: 4812 - - uid: 6323 - components: - - type: Transform - pos: 24.5,-25.5 - parent: 4812 - - uid: 6343 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 4812 - - uid: 6353 - components: - - type: Transform - pos: 9.5,-16.5 - parent: 4812 - - uid: 6482 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 4812 - - uid: 7189 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 4812 - - uid: 7406 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 4812 - - uid: 8364 - components: - - type: Transform - pos: -26.5,10.5 - parent: 4812 - - uid: 8400 - components: - - type: Transform - pos: -28.5,30.5 - parent: 4812 - - uid: 8401 - components: - - type: Transform - pos: -29.5,30.5 - parent: 4812 - - uid: 8410 - components: - - type: Transform - pos: -31.5,26.5 - parent: 4812 - - uid: 8411 - components: - - type: Transform - pos: -27.5,26.5 - parent: 4812 - - uid: 8425 - components: - - type: Transform - pos: -38.5,12.5 - parent: 4812 - - uid: 8426 - components: - - type: Transform - pos: -39.5,12.5 - parent: 4812 - - uid: 8427 - components: - - type: Transform - pos: -39.5,11.5 - parent: 4812 - - uid: 8439 - components: - - type: Transform - pos: -37.5,10.5 - parent: 4812 - - uid: 9585 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 4812 - - uid: 10488 - components: - - type: Transform - pos: -37.5,-25.5 - parent: 4812 - - uid: 10489 - components: - - type: Transform - pos: -36.5,-25.5 - parent: 4812 - - uid: 10490 - components: - - type: Transform - pos: -36.5,-22.5 - parent: 4812 - - uid: 10491 - components: - - type: Transform - pos: -37.5,-22.5 - parent: 4812 - - uid: 10709 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 4812 - - uid: 10729 - components: - - type: Transform - pos: -41.5,-7.5 - parent: 4812 - - uid: 10730 - components: - - type: Transform - pos: -42.5,-7.5 - parent: 4812 - - uid: 10731 - components: - - type: Transform - pos: -43.5,-7.5 - parent: 4812 - - uid: 10856 - components: - - type: Transform - pos: -20.5,5.5 - parent: 4812 - - uid: 10857 - components: - - type: Transform - pos: -22.5,3.5 - parent: 4812 - - uid: 10858 - components: - - type: Transform - pos: -22.5,0.5 - parent: 4812 - - uid: 10859 - components: - - type: Transform - pos: -21.5,0.5 - parent: 4812 - - uid: 10907 - components: - - type: Transform - pos: -44.5,-24.5 - parent: 4812 - - uid: 10908 - components: - - type: Transform - pos: -44.5,-23.5 - parent: 4812 - - uid: 11466 - components: - - type: Transform - pos: 31.5,-30.5 - parent: 4812 - - uid: 11662 - components: - - type: Transform - pos: 25.5,-40.5 - parent: 4812 - - uid: 11842 - components: - - type: Transform - pos: -7.5,12.5 - parent: 4812 - - uid: 11879 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 4812 - - uid: 12114 - components: - - type: Transform - pos: -42.5,-2.5 - parent: 4812 - - uid: 12115 - components: - - type: Transform - pos: -42.5,-1.5 - parent: 4812 - - uid: 12493 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 4812 -- proto: TableCarpet - entities: - - uid: 257 - components: - - type: Transform - pos: -18.5,5.5 - parent: 4812 - - uid: 7047 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 4812 - - uid: 7048 - components: - - type: Transform - pos: -27.5,-14.5 - parent: 4812 - - uid: 7049 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 4812 - - uid: 7050 - components: - - type: Transform - pos: -28.5,-15.5 - parent: 4812 - - uid: 10499 - components: - - type: Transform - pos: -32.5,-28.5 - parent: 4812 - - uid: 10500 - components: - - type: Transform - pos: -33.5,-28.5 - parent: 4812 - - uid: 10501 - components: - - type: Transform - pos: -37.5,-28.5 - parent: 4812 -- proto: TableGlass - entities: - - uid: 1085 - components: - - type: Transform - pos: -16.5,-7.5 - parent: 4812 - - uid: 1087 - components: - - type: Transform - pos: -14.5,-7.5 - parent: 4812 - - uid: 1088 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 4812 - - uid: 1089 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 4812 - - uid: 1090 - components: - - type: Transform - pos: -11.5,-7.5 - parent: 4812 - - uid: 6612 - components: - - type: Transform - pos: -10.5,-18.5 - parent: 4812 - - uid: 6613 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 4812 - - uid: 6614 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 4812 - - uid: 6652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-18.5 - parent: 4812 - - uid: 7426 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 4812 - - uid: 7443 - components: - - type: Transform - pos: -24.5,-25.5 - parent: 4812 - - uid: 7457 - components: - - type: Transform - pos: -24.5,-27.5 - parent: 4812 - - uid: 7576 - components: - - type: Transform - pos: -15.5,-23.5 - parent: 4812 - - uid: 7577 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 4812 - - uid: 7578 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 4812 - - uid: 9023 - components: - - type: Transform - pos: -39.5,-35.5 - parent: 4812 - - uid: 9024 - components: - - type: Transform - pos: -40.5,-35.5 - parent: 4812 - - uid: 9025 - components: - - type: Transform - pos: -40.5,-34.5 - parent: 4812 - - uid: 10659 - components: - - type: Transform - pos: -12.5,-16.5 - parent: 4812 -- proto: TableReinforced - entities: - - uid: 144 - components: - - type: Transform - pos: -14.5,17.5 - parent: 4812 - - uid: 175 - components: - - type: Transform - pos: -14.5,16.5 - parent: 4812 - - uid: 311 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 4812 - - uid: 312 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 4812 - - uid: 313 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 4812 - - uid: 314 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 4812 - - uid: 315 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 4812 - - uid: 316 - components: - - type: Transform - pos: 3.5,4.5 - parent: 4812 - - uid: 317 - components: - - type: Transform - pos: 2.5,4.5 - parent: 4812 - - uid: 320 - components: - - type: Transform - pos: 1.5,6.5 - parent: 4812 - - uid: 321 - components: - - type: Transform - pos: 1.5,7.5 - parent: 4812 - - uid: 322 - components: - - type: Transform - pos: 1.5,8.5 - parent: 4812 - - uid: 323 - components: - - type: Transform - pos: 1.5,9.5 - parent: 4812 - - uid: 730 - components: - - type: Transform - pos: 5.5,17.5 - parent: 4812 - - uid: 731 - components: - - type: Transform - pos: 5.5,14.5 - parent: 4812 - - uid: 734 - components: - - type: Transform - pos: 7.5,16.5 - parent: 4812 - - uid: 1487 - components: - - type: Transform - pos: -23.5,-7.5 - parent: 4812 - - uid: 1488 - components: - - type: Transform - pos: -23.5,-6.5 - parent: 4812 - - uid: 1557 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 4812 - - uid: 1558 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 4812 - - uid: 1559 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 4812 - - uid: 1560 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 4812 - - uid: 2229 - components: - - type: Transform - pos: 9.5,23.5 - parent: 4812 - - uid: 2650 - components: - - type: Transform - pos: -3.5,34.5 - parent: 4812 - - uid: 2651 - components: - - type: Transform - pos: -3.5,35.5 - parent: 4812 - - uid: 2653 - components: - - type: Transform - pos: -1.5,35.5 - parent: 4812 - - uid: 2660 - components: - - type: Transform - pos: 1.5,34.5 - parent: 4812 - - uid: 2661 - components: - - type: Transform - pos: -6.5,34.5 - parent: 4812 - - uid: 2663 - components: - - type: Transform - pos: -8.5,34.5 - parent: 4812 - - uid: 2698 - components: - - type: Transform - pos: 0.5,26.5 - parent: 4812 - - uid: 2702 - components: - - type: Transform - pos: 0.5,22.5 - parent: 4812 - - uid: 2703 - components: - - type: Transform - pos: -5.5,22.5 - parent: 4812 - - uid: 2704 - components: - - type: Transform - pos: -5.5,23.5 - parent: 4812 - - uid: 2705 - components: - - type: Transform - pos: -5.5,24.5 - parent: 4812 - - uid: 2706 - components: - - type: Transform - pos: -5.5,25.5 - parent: 4812 - - uid: 2707 - components: - - type: Transform - pos: -5.5,26.5 - parent: 4812 - - uid: 2854 - components: - - type: Transform - pos: 15.5,16.5 - parent: 4812 - - uid: 3232 - components: - - type: Transform - pos: 19.5,21.5 - parent: 4812 - - uid: 3233 - components: - - type: Transform - pos: 20.5,21.5 - parent: 4812 - - uid: 4430 - components: - - type: Transform - pos: 28.5,1.5 - parent: 4812 - - uid: 4431 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 4812 - - uid: 4562 - components: - - type: Transform - pos: 27.5,3.5 - parent: 4812 - - uid: 4563 - components: - - type: Transform - pos: 27.5,4.5 - parent: 4812 - - uid: 4564 - components: - - type: Transform - pos: 28.5,4.5 - parent: 4812 - - uid: 4578 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 4812 - - uid: 5306 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 4812 - - uid: 5431 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 4812 - - uid: 5503 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 4812 - - uid: 5504 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 4812 - - uid: 6186 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 4812 - - uid: 6187 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 4812 - - uid: 6188 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 4812 - - uid: 6189 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 4812 - - uid: 6219 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 4812 - - uid: 6220 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 4812 - - uid: 6221 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 4812 - - uid: 6222 - components: - - type: Transform - pos: 16.5,-27.5 - parent: 4812 - - uid: 6224 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 4812 - - uid: 6225 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 4812 - - uid: 6335 - components: - - type: Transform - pos: 35.5,-24.5 - parent: 4812 - - uid: 6345 - components: - - type: Transform - pos: 35.5,-26.5 - parent: 4812 - - uid: 6347 - components: - - type: Transform - pos: 35.5,-25.5 - parent: 4812 - - uid: 6382 - components: - - type: Transform - pos: 31.5,-24.5 - parent: 4812 - - uid: 6476 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 4812 - - uid: 6477 - components: - - type: Transform - pos: -1.5,-24.5 - parent: 4812 - - uid: 6580 - components: - - type: Transform - pos: -9.5,-13.5 - parent: 4812 - - uid: 6581 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 4812 - - uid: 6737 - components: - - type: Transform - pos: -26.5,22.5 - parent: 4812 - - uid: 7030 - components: - - type: Transform - pos: -28.5,22.5 - parent: 4812 - - uid: 7066 - components: - - type: Transform - pos: -27.5,22.5 - parent: 4812 - - uid: 7419 - components: - - type: Transform - pos: -19.5,-25.5 - parent: 4812 - - uid: 7462 - components: - - type: Transform - pos: -14.5,-25.5 - parent: 4812 - - uid: 7752 - components: - - type: Transform - pos: -24.5,11.5 - parent: 4812 - - uid: 7777 - components: - - type: Transform - pos: -25.5,12.5 - parent: 4812 - - uid: 7778 - components: - - type: Transform - pos: -26.5,12.5 - parent: 4812 - - uid: 7787 - components: - - type: Transform - pos: -32.5,15.5 - parent: 4812 - - uid: 8333 - components: - - type: Transform - pos: -36.5,15.5 - parent: 4812 - - uid: 8334 - components: - - type: Transform - pos: -36.5,16.5 - parent: 4812 - - uid: 8335 - components: - - type: Transform - pos: -36.5,17.5 - parent: 4812 - - uid: 8343 - components: - - type: Transform - pos: -31.5,12.5 - parent: 4812 - - uid: 8344 - components: - - type: Transform - pos: -31.5,14.5 - parent: 4812 - - uid: 8347 - components: - - type: Transform - pos: -31.5,20.5 - parent: 4812 - - uid: 8447 - components: - - type: Transform - pos: -28.5,10.5 - parent: 4812 - - uid: 8448 - components: - - type: Transform - pos: -29.5,10.5 - parent: 4812 - - uid: 8449 - components: - - type: Transform - pos: -30.5,10.5 - parent: 4812 - - uid: 8564 - components: - - type: Transform - pos: -19.5,9.5 - parent: 4812 - - uid: 8565 - components: - - type: Transform - pos: -19.5,10.5 - parent: 4812 - - uid: 8566 - components: - - type: Transform - pos: -18.5,10.5 - parent: 4812 - - uid: 8567 - components: - - type: Transform - pos: -18.5,9.5 - parent: 4812 - - uid: 8568 - components: - - type: Transform - pos: -18.5,12.5 - parent: 4812 - - uid: 8569 - components: - - type: Transform - pos: -19.5,12.5 - parent: 4812 - - uid: 8570 - components: - - type: Transform - pos: -20.5,12.5 - parent: 4812 - - uid: 8571 - components: - - type: Transform - pos: -20.5,7.5 - parent: 4812 - - uid: 8572 - components: - - type: Transform - pos: -17.5,7.5 - parent: 4812 - - uid: 8573 - components: - - type: Transform - pos: -16.5,7.5 - parent: 4812 - - uid: 8574 - components: - - type: Transform - pos: -16.5,8.5 - parent: 4812 - - uid: 8628 - components: - - type: Transform - pos: -30.5,0.5 - parent: 4812 - - uid: 8682 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 4812 - - uid: 9568 - components: - - type: Transform - pos: -30.5,4.5 - parent: 4812 - - uid: 9569 - components: - - type: Transform - pos: -30.5,5.5 - parent: 4812 - - uid: 9573 - components: - - type: Transform - pos: -28.5,1.5 - parent: 4812 - - uid: 9724 - components: - - type: Transform - pos: -34.5,-5.5 - parent: 4812 - - uid: 9729 - components: - - type: Transform - pos: -31.5,-7.5 - parent: 4812 - - uid: 9730 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 4812 - - uid: 9731 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 4812 - - uid: 10633 - components: - - type: Transform - pos: -49.5,-8.5 - parent: 4812 - - uid: 10634 - components: - - type: Transform - pos: -48.5,-8.5 - parent: 4812 - - uid: 10703 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 4812 - - uid: 10847 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 4812 - - uid: 10848 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 4812 - - uid: 11144 - components: - - type: Transform - pos: 8.5,-44.5 - parent: 4812 - - uid: 11145 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 4812 - - uid: 11146 - components: - - type: Transform - pos: 10.5,-44.5 - parent: 4812 - - uid: 11862 - components: - - type: Transform - pos: -14.5,4.5 - parent: 4812 - - uid: 11929 - components: - - type: Transform - pos: -14.5,15.5 - parent: 4812 - - uid: 11930 - components: - - type: Transform - pos: -10.5,15.5 - parent: 4812 - - uid: 11931 - components: - - type: Transform - pos: -10.5,16.5 - parent: 4812 - - uid: 11932 - components: - - type: Transform - pos: -10.5,17.5 - parent: 4812 - - uid: 12054 - components: - - type: Transform - pos: -33.5,20.5 - parent: 4812 -- proto: TableReinforcedGlass - entities: - - uid: 6303 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 4812 - - uid: 6304 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 4812 -- proto: TableWood - entities: - - uid: 259 - components: - - type: Transform - pos: -17.5,-1.5 - parent: 4812 - - uid: 362 - components: - - type: Transform - pos: 3.5,8.5 - parent: 4812 - - uid: 363 - components: - - type: Transform - pos: 3.5,9.5 - parent: 4812 - - uid: 936 - components: - - type: Transform - pos: -6.5,8.5 - parent: 4812 - - uid: 939 - components: - - type: Transform - pos: -6.5,4.5 - parent: 4812 - - uid: 1040 - components: - - type: Transform - pos: -2.5,9.5 - parent: 4812 - - uid: 1041 - components: - - type: Transform - pos: -2.5,8.5 - parent: 4812 - - uid: 1042 - components: - - type: Transform - pos: -2.5,7.5 - parent: 4812 - - uid: 1043 - components: - - type: Transform - pos: -2.5,6.5 - parent: 4812 - - uid: 1044 - components: - - type: Transform - pos: -2.5,3.5 - parent: 4812 - - uid: 1045 - components: - - type: Transform - pos: -2.5,2.5 - parent: 4812 - - uid: 1046 - components: - - type: Transform - pos: -2.5,1.5 - parent: 4812 - - uid: 1047 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 4812 - - uid: 1048 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 4812 - - uid: 1049 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 4812 - - uid: 1050 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 4812 - - uid: 1694 - components: - - type: Transform - pos: -10.5,1.5 - parent: 4812 - - uid: 1695 - components: - - type: Transform - pos: -10.5,0.5 - parent: 4812 - - uid: 1696 - components: - - type: Transform - pos: -10.5,-0.5 - parent: 4812 - - uid: 1697 - components: - - type: Transform - pos: -10.5,-1.5 - parent: 4812 - - uid: 1698 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 4812 - - uid: 1732 - components: - - type: Transform - pos: -10.5,3.5 - parent: 4812 - - uid: 1733 - components: - - type: Transform - pos: -10.5,4.5 - parent: 4812 - - uid: 1734 - components: - - type: Transform - pos: -10.5,5.5 - parent: 4812 - - uid: 1735 - components: - - type: Transform - pos: -10.5,6.5 - parent: 4812 - - uid: 1736 - components: - - type: Transform - pos: -10.5,7.5 - parent: 4812 - - uid: 1737 - components: - - type: Transform - pos: -10.5,8.5 - parent: 4812 - - uid: 1738 - components: - - type: Transform - pos: -10.5,9.5 - parent: 4812 - - uid: 2498 - components: - - type: Transform - pos: 5.5,29.5 - parent: 4812 - - uid: 2506 - components: - - type: Transform - pos: 8.5,24.5 - parent: 4812 - - uid: 2509 - components: - - type: Transform - pos: 9.5,26.5 - parent: 4812 - - uid: 2516 - components: - - type: Transform - pos: 8.5,26.5 - parent: 4812 - - uid: 2537 - components: - - type: Transform - pos: 8.5,29.5 - parent: 4812 - - uid: 2579 - components: - - type: Transform - pos: -13.5,27.5 - parent: 4812 - - uid: 2583 - components: - - type: Transform - pos: -10.5,29.5 - parent: 4812 - - uid: 2586 - components: - - type: Transform - pos: -12.5,27.5 - parent: 4812 - - uid: 2596 - components: - - type: Transform - pos: -12.5,22.5 - parent: 4812 - - uid: 2597 - components: - - type: Transform - pos: -12.5,23.5 - parent: 4812 - - uid: 2599 - components: - - type: Transform - pos: -10.5,25.5 - parent: 4812 - - uid: 2634 - components: - - type: Transform - pos: -2.5,28.5 - parent: 4812 - - uid: 2645 - components: - - type: Transform - pos: -2.5,29.5 - parent: 4812 - - uid: 5043 - components: - - type: Transform - pos: 6.5,24.5 - parent: 4812 - - uid: 5365 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 4812 - - uid: 5367 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 4812 - - uid: 5368 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 4812 - - uid: 5369 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 4812 - - uid: 5373 - components: - - type: Transform - pos: 19.5,-18.5 - parent: 4812 - - uid: 6282 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 4812 - - uid: 6283 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 4812 - - uid: 6284 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 4812 - - uid: 6285 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 4812 - - uid: 6386 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 4812 - - uid: 6387 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 4812 - - uid: 6388 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 4812 - - uid: 6389 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 4812 - - uid: 7002 - components: - - type: Transform - pos: -18.5,-35.5 - parent: 4812 - - uid: 7004 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 4812 - - uid: 7017 - components: - - type: Transform - pos: -13.5,-33.5 - parent: 4812 - - uid: 7018 - components: - - type: Transform - pos: -13.5,-35.5 - parent: 4812 - - uid: 7039 - components: - - type: Transform - pos: -23.5,-38.5 - parent: 4812 - - uid: 7040 - components: - - type: Transform - pos: -24.5,-34.5 - parent: 4812 - - uid: 7051 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 4812 - - uid: 7052 - components: - - type: Transform - pos: -32.5,-14.5 - parent: 4812 - - uid: 7055 - components: - - type: Transform - pos: -30.5,-19.5 - parent: 4812 - - uid: 7056 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 4812 - - uid: 7057 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 4812 - - uid: 7125 - components: - - type: Transform - pos: -32.5,-23.5 - parent: 4812 - - uid: 7126 - components: - - type: Transform - pos: -31.5,-23.5 - parent: 4812 - - uid: 7127 - components: - - type: Transform - pos: -30.5,-23.5 - parent: 4812 - - uid: 8246 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 4812 - - uid: 8255 - components: - - type: Transform - pos: -19.5,22.5 - parent: 4812 - - uid: 8256 - components: - - type: Transform - pos: -20.5,22.5 - parent: 4812 - - uid: 8257 - components: - - type: Transform - pos: -21.5,22.5 - parent: 4812 - - uid: 8258 - components: - - type: Transform - pos: -21.5,23.5 - parent: 4812 - - uid: 8259 - components: - - type: Transform - pos: -21.5,24.5 - parent: 4812 - - uid: 8271 - components: - - type: Transform - pos: -17.5,14.5 - parent: 4812 - - uid: 8273 - components: - - type: Transform - pos: -18.5,15.5 - parent: 4812 - - uid: 8274 - components: - - type: Transform - pos: -18.5,14.5 - parent: 4812 - - uid: 8294 - components: - - type: Transform - pos: -19.5,17.5 - parent: 4812 - - uid: 8394 - components: - - type: Transform - pos: -25.5,30.5 - parent: 4812 - - uid: 9051 - components: - - type: Transform - pos: -31.5,-40.5 - parent: 4812 - - uid: 9052 - components: - - type: Transform - pos: -29.5,-35.5 - parent: 4812 - - uid: 9078 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 4812 - - uid: 11803 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 4812 - - uid: 12420 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 4812 -- proto: TaikoInstrument - entities: - - uid: 4373 - components: - - type: Transform - pos: -27.5,32.5 - parent: 4812 -- proto: TargetHuman - entities: - - uid: 12422 - components: - - type: Transform - pos: -54.5,-16.5 - parent: 4812 -- proto: TelecomServer - entities: - - uid: 330 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 4812 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 331 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 4991 - components: - - type: Transform - pos: 17.5,32.5 - parent: 4812 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 4992 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 6662 - components: - - type: Transform - pos: -49.5,-13.5 - parent: 4812 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 6663 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7247 - components: - - type: Transform - pos: -50.5,-13.5 - parent: 4812 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7248 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7267 - components: - - type: Transform - pos: -1.5,26.5 - parent: 4812 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7268 - - 7269 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7290 - components: - - type: Transform - pos: -48.5,-13.5 - parent: 4812 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7291 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: TintedWindow - entities: - - uid: 4859 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-13.5 - parent: 4812 - - uid: 5015 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-13.5 - parent: 4812 - - uid: 6679 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-16.5 - parent: 4812 - - uid: 6693 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-35.5 - parent: 4812 - - uid: 6757 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-37.5 - parent: 4812 - - uid: 6758 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-35.5 - parent: 4812 - - uid: 7192 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-17.5 - parent: 4812 - - uid: 7193 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-15.5 - parent: 4812 -- proto: ToiletDirtyWater - entities: - - uid: 7027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 - parent: 4812 -- proto: ToiletEmpty - entities: - - uid: 2488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 4812 - - uid: 2489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,27.5 - parent: 4812 - - uid: 3452 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,34.5 - parent: 4812 - - uid: 4447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 4812 - - uid: 4448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,7.5 - parent: 4812 - - uid: 8244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,28.5 - parent: 4812 -- proto: TomatoSeeds - entities: - - uid: 11297 - components: - - type: Transform - pos: 16.522455,-38.60528 - parent: 4812 -- proto: TomDrumsInstrument - entities: - - uid: 12367 - components: - - type: Transform - pos: -9.5,3.5 - parent: 4812 -- proto: ToolboxElectricalFilled - entities: - - uid: 3846 - components: - - type: Transform - pos: 15.560463,47.548717 - parent: 4812 - - uid: 6235 - components: - - type: Transform - pos: 11.595695,-23.434612 - parent: 4812 - - uid: 8584 - components: - - type: Transform - pos: -16.515034,8.474278 - parent: 4812 -- proto: ToolboxEmergencyFilled - entities: - - uid: 3271 - components: - - type: Transform - pos: 22.451836,13.667355 - parent: 4812 - - uid: 3272 - components: - - type: Transform - pos: 22.62371,13.52673 - parent: 4812 - - uid: 4541 - components: - - type: Transform - pos: 21.46411,-6.3464417 - parent: 4812 - - uid: 8596 - components: - - type: Transform - pos: -18.547379,10.53499 - parent: 4812 - - uid: 11777 - components: - - type: Transform - pos: -34.527054,-18.337584 - parent: 4812 -- proto: ToolboxGoldFilled - entities: - - uid: 2711 - components: - - type: Transform - pos: -5.514771,25.816704 - parent: 4812 -- proto: ToolboxMechanicalFilled - entities: - - uid: 2676 - components: - - type: Transform - pos: -3.4889355,35.56198 - parent: 4812 - - uid: 3845 - components: - - type: Transform - pos: 15.388588,47.767467 - parent: 4812 - - uid: 6234 - components: - - type: Transform - pos: 11.42382,-23.262737 - parent: 4812 - - uid: 8595 - components: - - type: Transform - pos: -19.484879,9.65999 - parent: 4812 -- proto: TorsoHuman - entities: - - uid: 12423 - components: - - type: Transform - pos: -53.589386,-16.742252 - parent: 4812 -- proto: ToyAi - entities: - - uid: 3962 - components: - - type: Transform - pos: 10.469682,53.04013 - parent: 4812 -- proto: ToyIan - entities: - - uid: 2503 - components: - - type: Transform - pos: 5.719586,29.52392 - parent: 4812 -- proto: ToyMouse - entities: - - uid: 7170 - components: - - type: Transform - pos: -23.706095,-17.394772 - parent: 4812 -- proto: ToyRubberDuck - entities: - - uid: 2496 - components: - - type: Transform - pos: -15.456392,28.433739 - parent: 4812 -- proto: ToySpawner - entities: - - uid: 10932 - components: - - type: Transform - pos: -10.5,11.5 - parent: 4812 -- proto: TrashBag - entities: - - uid: 1493 - components: - - type: Transform - pos: -23.716429,-6.4211965 - parent: 4812 - - uid: 1494 - components: - - type: Transform - pos: -23.466429,-6.4368215 - parent: 4812 - - uid: 11941 - components: - - type: Transform - pos: -10.701956,16.566319 - parent: 4812 - - uid: 11942 - components: - - type: Transform - pos: -10.498831,16.566319 - parent: 4812 - - uid: 11943 - components: - - type: Transform - pos: -10.280081,16.566319 - parent: 4812 -- proto: TrashBananaPeel - entities: - - uid: 1707 - components: - - type: Transform - pos: -9.550176,1.455398 - parent: 4812 - - uid: 11240 - components: - - type: Transform - pos: 8.641412,-38.54009 - parent: 4812 -- proto: trayScanner - entities: - - uid: 4492 - components: - - type: Transform - pos: 20.567461,2.6407971 - parent: 4812 - - uid: 11959 - components: - - type: Transform - pos: -10.545721,17.660069 - parent: 4812 -- proto: TubaInstrument - entities: - - uid: 1719 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 4812 -- proto: TwoWayLever - entities: - - uid: 3034 - components: - - type: Transform - pos: 19.5,23.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 3013: - - Left: Forward - - Right: Reverse - - Middle: Off - 3014: - - Left: Forward - - Right: Reverse - - Middle: Off - 3033: - - Left: Forward - - Right: Reverse - - Middle: Off - 3028: - - Left: Forward - - Right: Reverse - - Middle: Off - 3029: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 3188 - components: - - type: Transform - pos: 18.5,27.5 - parent: 4812 - - type: TwoWayLever - nextSignalLeft: True - - type: DeviceLinkSource - linkedPorts: - 2863: - - Left: Forward - - Right: Reverse - - Middle: Off - 3043: - - Left: Forward - - Right: Reverse - - Middle: Off - 3046: - - Left: Forward - - Right: Reverse - - Middle: Off - 2765: - - Left: Forward - - Right: Reverse - - Middle: Off - 2771: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 11245 - components: - - type: Transform - pos: 8.5,-37.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 11235: - - Left: Forward - - Right: Reverse - - Middle: Off - 11244: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UniformPrinter - entities: - - uid: 2513 - components: - - type: Transform - pos: 5.5,24.5 - parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Cloth - - Durathread -- proto: UprightPianoInstrument - entities: - - uid: 10498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-29.5 - parent: 4812 -- proto: Vaccinator - entities: - - uid: 9019 - components: - - type: Transform - pos: -38.5,-33.5 - parent: 4812 -- proto: VehicleKeyJanicart - entities: - - uid: 1482 - components: - - type: Transform - pos: -22.528929,-6.6977267 - parent: 4812 -- proto: VehicleKeySecway - entities: - - uid: 8349 - components: - - type: Transform - pos: -31.5,20.5 - parent: 4812 -- proto: VendingBarDrobe - entities: - - uid: 1647 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 5.5,6.5 - parent: 4812 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 9572 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -28.5,2.5 - parent: 4812 -- proto: VendingMachineBooze - entities: - - uid: 12 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 4.5,6.5 - parent: 4812 - - uid: 2606 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -15.5,25.5 - parent: 4812 - - uid: 10494 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -38.5,-22.5 - parent: 4812 -- proto: VendingMachineCargoDrobe - entities: - - uid: 3230 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 14.5,19.5 - parent: 4812 -- proto: VendingMachineCart - entities: - - uid: 2510 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 10.5,26.5 - parent: 4812 -- proto: VendingMachineChang - entities: - - uid: 923 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 0.5,-6.5 - parent: 4812 - - uid: 4538 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 23.5,-6.5 - parent: 4812 - - uid: 6422 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 2.5,-32.5 - parent: 4812 -- proto: VendingMachineChapel - entities: - - uid: 7036 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -27.5,-35.5 - parent: 4812 -- proto: VendingMachineChefDrobe - entities: - - uid: 1539 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 7.5,-3.5 - parent: 4812 -- proto: VendingMachineChefvend - entities: - - uid: 1124 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 3.5,-3.5 - parent: 4812 -- proto: VendingMachineChemDrobe - entities: - - uid: 6608 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -12.5,-15.5 - parent: 4812 -- proto: VendingMachineChemicals - entities: - - uid: 741 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -10.5,-14.5 - parent: 4812 -- proto: VendingMachineCigs - entities: - - uid: 917 - components: - - type: MetaData - flags: SessionSpecific - name: cigarette machine - - type: Transform - pos: -6.5,9.5 - parent: 4812 - - uid: 2672 - components: - - type: MetaData - flags: SessionSpecific - name: cigarette machine - - type: Transform - pos: 0.5,28.5 - parent: 4812 - - uid: 4536 - components: - - type: MetaData - flags: SessionSpecific - name: cigarette machine - - type: Transform - pos: 21.5,-4.5 - parent: 4812 - - uid: 5372 - components: - - type: MetaData - flags: SessionSpecific - name: cigarette machine - - type: Transform - pos: 18.5,-18.5 - parent: 4812 - - uid: 8268 - components: - - type: MetaData - flags: SessionSpecific - name: cigarette machine - - type: Transform - pos: -23.5,25.5 - parent: 4812 - - uid: 9077 - components: - - type: MetaData - flags: SessionSpecific - name: cigarette machine - - type: Transform - pos: -30.5,-28.5 - parent: 4812 - - uid: 10873 - components: - - type: MetaData - flags: SessionSpecific - name: cigarette machine - - type: Transform - pos: -27.5,7.5 - parent: 4812 -- proto: VendingMachineClothing - entities: - - uid: 10850 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -23.5,-1.5 - parent: 4812 -- proto: VendingMachineCoffee - entities: - - uid: 918 - components: - - type: MetaData - flags: SessionSpecific - name: Hot drinks machine - - type: Transform - pos: 0.5,10.5 - parent: 4812 - - uid: 1797 - components: - - type: MetaData - flags: SessionSpecific - name: Hot drinks machine - - type: Transform - pos: -5.5,16.5 - parent: 4812 - - uid: 2671 - components: - - type: MetaData - flags: SessionSpecific - name: Hot drinks machine - - type: Transform - pos: -5.5,28.5 - parent: 4812 - - uid: 4537 - components: - - type: MetaData - flags: SessionSpecific - name: Hot drinks machine - - type: Transform - pos: 23.5,-5.5 - parent: 4812 - - uid: 6356 - components: - - type: MetaData - flags: SessionSpecific - name: Hot drinks machine - - type: Transform - pos: 9.5,-28.5 - parent: 4812 - - uid: 10741 - components: - - type: MetaData - flags: SessionSpecific - name: Hot drinks machine - - type: Transform - pos: -45.5,-5.5 - parent: 4812 - - uid: 12150 - components: - - type: MetaData - flags: SessionSpecific - name: Hot drinks machine - - type: Transform - pos: -27.5,-12.5 - parent: 4812 -- proto: VendingMachineCola - entities: - - uid: 4533 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 13.5,2.5 - parent: 4812 - - uid: 5061 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -9.5,-46.5 - parent: 4812 -- proto: VendingMachineCondiments - entities: - - uid: 9584 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 0.5,-3.5 - parent: 4812 -- proto: VendingMachineCuraDrobe - entities: - - uid: 12510 - components: - - type: Transform - pos: -30.5,-22.5 - parent: 4812 -- proto: VendingMachineDetDrobe - entities: - - uid: 5361 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 20.5,-14.5 - parent: 4812 -- proto: VendingMachineDinnerware - entities: - - uid: 1552 - components: - - type: MetaData - flags: SessionSpecific - name: Dinnerware - - type: Transform - pos: 2.5,-3.5 - parent: 4812 -- proto: VendingMachineDiscount - entities: - - uid: 919 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 0.5,11.5 - parent: 4812 -- proto: VendingMachineEngiDrobe - entities: - - uid: 12516 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -38.5,-7.5 - parent: 4812 -- proto: VendingMachineEngivend - entities: - - uid: 9722 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -31.5,-5.5 - parent: 4812 -- proto: VendingMachineGames - entities: - - uid: 7070 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -30.5,-14.5 - parent: 4812 -- proto: VendingMachineGeneDrobe - entities: - - uid: 2607 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -14.5,-18.5 - parent: 4812 -- proto: VendingMachineHappyHonk - entities: - - uid: 1565 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 6.5,-3.5 - parent: 4812 -- proto: VendingMachineHydrobe - entities: - - uid: 1094 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -18.5,-7.5 - parent: 4812 -- proto: VendingMachineJaniDrobe - entities: - - uid: 1480 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -20.5,-9.5 - parent: 4812 -- proto: VendingMachineLawDrobe - entities: - - uid: 8275 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -16.5,17.5 - parent: 4812 -- proto: VendingMachineMedical - entities: - - uid: 7188 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -8.5,-28.5 - parent: 4812 -- proto: VendingMachineMediDrobe - entities: - - uid: 7399 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -8.5,-25.5 - parent: 4812 -- proto: VendingMachineNutri - entities: - - uid: 1092 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -7.5,-5.5 - parent: 4812 - - uid: 11785 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 25.5,-32.5 - parent: 4812 -- proto: VendingMachineRoboDrobe - entities: - - uid: 6223 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 11.5,-26.5 - parent: 4812 -- proto: VendingMachineRobotics - entities: - - uid: 737 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 4.5,-23.5 - parent: 4812 -- proto: VendingMachineSalvage - entities: - - uid: 3434 - components: - - type: MetaData - flags: SessionSpecific - name: Salvage Equipment - - type: Transform - pos: 23.5,16.5 - parent: 4812 -- proto: VendingMachineSciDrobe - entities: - - uid: 5513 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 25.5,-26.5 - parent: 4812 -- proto: VendingMachineSec - entities: - - uid: 8342 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -31.5,13.5 - parent: 4812 - - uid: 8420 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -36.5,12.5 - parent: 4812 -- proto: VendingMachineSecDrobe - entities: - - uid: 6439 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -3.5,-29.5 - parent: 4812 - - uid: 12506 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -34.5,10.5 - parent: 4812 -- proto: VendingMachineSeeds - entities: - - uid: 1091 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -8.5,-5.5 - parent: 4812 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 6240 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -29.5,32.5 - parent: 4812 -- proto: VendingMachineSnack - entities: - - uid: 920 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 0.5,-7.5 - parent: 4812 - - uid: 4530 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 13.5,1.5 - parent: 4812 - - uid: 5060 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -9.5,-45.5 - parent: 4812 -- proto: VendingMachineSovietSoda - entities: - - uid: 11780 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 29.5,-32.5 - parent: 4812 -- proto: VendingMachineSustenance - entities: - - uid: 6165 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -28.5,32.5 - parent: 4812 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 739 - components: - - type: MetaData - flags: SessionSpecific - name: tank dispenser - - type: Transform - pos: 7.5,15.5 - parent: 4812 - - uid: 9577 - components: - - type: MetaData - flags: SessionSpecific - name: tank dispenser - - type: Transform - pos: -31.5,1.5 - parent: 4812 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 732 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: 9.5,14.5 - parent: 4812 - - uid: 6312 - components: - - type: MetaData - flags: SessionSpecific - name: tank dispenser - - type: Transform - pos: 26.5,-26.5 - parent: 4812 - - uid: 10708 - components: - - type: MetaData - flags: SessionSpecific - name: tank dispenser - - type: Transform - pos: -35.5,-9.5 - parent: 4812 - - uid: 12113 - components: - - type: MetaData - flags: SessionSpecific - name: tank dispenser - - type: Transform - pos: -42.5,-3.5 - parent: 4812 -- proto: VendingMachineTheater - entities: - - uid: 1692 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -7.5,1.5 - parent: 4812 - - uid: 9045 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -26.5,-39.5 - parent: 4812 -- proto: VendingMachineVendomat - entities: - - uid: 8578 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -18.5,7.5 - parent: 4812 -- proto: VendingMachineViroDrobe - entities: - - uid: 8871 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -37.5,-33.5 - parent: 4812 -- proto: VendingMachineYouTool - entities: - - uid: 8577 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -19.5,7.5 - parent: 4812 - - uid: 9723 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -32.5,-5.5 - parent: 4812 -- proto: ViolinInstrument - entities: - - uid: 1756 - components: - - type: Transform - pos: -10.433632,4.545351 - parent: 4812 -- proto: WallmountGeneratorAPUElectronics - entities: - - uid: 10960 - components: - - type: Transform - pos: -37.468086,26.400969 - parent: 4812 -- proto: WallmountSubstationElectronics - entities: - - uid: 10978 - components: - - type: Transform - pos: -37.343086,26.182219 - parent: 4812 -- proto: WallmountTelescreen - entities: - - uid: 3422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,24.5 - parent: 4812 - - uid: 3775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-16.5 - parent: 4812 -- proto: WallReinforced - entities: - - uid: 32 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,15.5 - parent: 4812 - - uid: 35 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,15.5 - parent: 4812 - - uid: 122 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,18.5 - parent: 4812 - - uid: 123 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,18.5 - parent: 4812 - - uid: 124 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,15.5 - parent: 4812 - - uid: 125 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,18.5 - parent: 4812 - - uid: 126 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,18.5 - parent: 4812 - - uid: 127 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,15.5 - parent: 4812 - - uid: 138 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,18.5 - parent: 4812 - - uid: 160 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,18.5 - parent: 4812 - - uid: 170 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,17.5 - parent: 4812 - - uid: 171 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,16.5 - parent: 4812 - - uid: 172 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,15.5 - parent: 4812 - - uid: 173 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,14.5 - parent: 4812 - - uid: 174 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,13.5 - parent: 4812 - - uid: 176 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,18.5 - parent: 4812 - - uid: 297 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,17.5 - parent: 4812 - - uid: 298 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,16.5 - parent: 4812 - - uid: 299 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,15.5 - parent: 4812 - - uid: 300 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,14.5 - parent: 4812 - - uid: 301 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,14.5 - parent: 4812 - - uid: 302 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,14.5 - parent: 4812 - - uid: 303 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,14.5 - parent: 4812 - - uid: 304 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,14.5 - parent: 4812 - - uid: 305 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,14.5 - parent: 4812 - - uid: 306 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,14.5 - parent: 4812 - - uid: 721 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,14.5 - parent: 4812 - - uid: 722 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,13.5 - parent: 4812 - - uid: 724 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,13.5 - parent: 4812 - - uid: 725 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,13.5 - parent: 4812 - - uid: 726 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,13.5 - parent: 4812 - - uid: 727 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,13.5 - parent: 4812 - - uid: 728 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,13.5 - parent: 4812 - - uid: 772 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,18.5 - parent: 4812 - - uid: 773 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,18.5 - parent: 4812 - - uid: 1819 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,21.5 - parent: 4812 - - uid: 1820 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,21.5 - parent: 4812 - - uid: 1821 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,21.5 - parent: 4812 - - uid: 1822 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,21.5 - parent: 4812 - - uid: 1823 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,22.5 - parent: 4812 - - uid: 1824 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,23.5 - parent: 4812 - - uid: 1825 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,24.5 - parent: 4812 - - uid: 1826 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,25.5 - parent: 4812 - - uid: 1827 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,26.5 - parent: 4812 - - uid: 1828 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,27.5 - parent: 4812 - - uid: 1829 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,21.5 - parent: 4812 - - uid: 1830 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,21.5 - parent: 4812 - - uid: 1831 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,21.5 - parent: 4812 - - uid: 1832 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,21.5 - parent: 4812 - - uid: 1833 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,22.5 - parent: 4812 - - uid: 1834 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,23.5 - parent: 4812 - - uid: 1836 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,25.5 - parent: 4812 - - uid: 1837 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,26.5 - parent: 4812 - - uid: 1838 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,27.5 - parent: 4812 - - uid: 1839 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,27.5 - parent: 4812 - - uid: 1840 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,27.5 - parent: 4812 - - uid: 1841 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,27.5 - parent: 4812 - - uid: 1842 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,27.5 - parent: 4812 - - uid: 1857 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,31.5 - parent: 4812 - - uid: 1859 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,31.5 - parent: 4812 - - uid: 1861 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,31.5 - parent: 4812 - - uid: 1862 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,31.5 - parent: 4812 - - uid: 1863 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,33.5 - parent: 4812 - - uid: 1864 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,33.5 - parent: 4812 - - uid: 1865 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,35.5 - parent: 4812 - - uid: 1866 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,35.5 - parent: 4812 - - uid: 1867 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,36.5 - parent: 4812 - - uid: 1868 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,36.5 - parent: 4812 - - uid: 1885 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,33.5 - parent: 4812 - - uid: 1886 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,33.5 - parent: 4812 - - uid: 1887 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,32.5 - parent: 4812 - - uid: 1888 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,31.5 - parent: 4812 - - uid: 1889 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,30.5 - parent: 4812 - - uid: 1890 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,30.5 - parent: 4812 - - uid: 1891 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,30.5 - parent: 4812 - - uid: 1892 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,30.5 - parent: 4812 - - uid: 1893 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,21.5 - parent: 4812 - - uid: 1894 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,22.5 - parent: 4812 - - uid: 1895 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,23.5 - parent: 4812 - - uid: 1896 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,21.5 - parent: 4812 - - uid: 1899 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,27.5 - parent: 4812 - - uid: 1900 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,28.5 - parent: 4812 - - uid: 1901 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,29.5 - parent: 4812 - - uid: 1903 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,22.5 - parent: 4812 - - uid: 1904 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,23.5 - parent: 4812 - - uid: 1905 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,24.5 - parent: 4812 - - uid: 1906 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,25.5 - parent: 4812 - - uid: 1907 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,26.5 - parent: 4812 - - uid: 1908 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,27.5 - parent: 4812 - - uid: 1909 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,28.5 - parent: 4812 - - uid: 1910 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,29.5 - parent: 4812 - - uid: 1911 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,30.5 - parent: 4812 - - uid: 1912 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,31.5 - parent: 4812 - - uid: 1913 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,31.5 - parent: 4812 - - uid: 1914 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,31.5 - parent: 4812 - - uid: 1915 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,30.5 - parent: 4812 - - uid: 1916 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,30.5 - parent: 4812 - - uid: 1920 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,23.5 - parent: 4812 - - uid: 1921 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,23.5 - parent: 4812 - - uid: 1922 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,23.5 - parent: 4812 - - uid: 1923 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,21.5 - parent: 4812 - - uid: 1946 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,25.5 - parent: 4812 - - uid: 1947 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,26.5 - parent: 4812 - - uid: 1948 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,21.5 - parent: 4812 - - uid: 1949 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,21.5 - parent: 4812 - - uid: 1950 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,21.5 - parent: 4812 - - uid: 1951 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,21.5 - parent: 4812 - - uid: 1954 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,21.5 - parent: 4812 - - uid: 1955 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,21.5 - parent: 4812 - - uid: 1956 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,30.5 - parent: 4812 - - uid: 1957 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,30.5 - parent: 4812 - - uid: 1958 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,30.5 - parent: 4812 - - uid: 1959 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,30.5 - parent: 4812 - - uid: 1960 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,30.5 - parent: 4812 - - uid: 1961 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,30.5 - parent: 4812 - - uid: 1967 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,27.5 - parent: 4812 - - uid: 1968 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,28.5 - parent: 4812 - - uid: 1969 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,29.5 - parent: 4812 - - uid: 1970 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,29.5 - parent: 4812 - - uid: 1971 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,28.5 - parent: 4812 - - uid: 1972 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,27.5 - parent: 4812 - - uid: 1973 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,26.5 - parent: 4812 - - uid: 1974 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,25.5 - parent: 4812 - - uid: 1976 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,23.5 - parent: 4812 - - uid: 1977 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,22.5 - parent: 4812 - - uid: 2075 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,24.5 - parent: 4812 - - uid: 2609 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,21.5 - parent: 4812 - - uid: 2612 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,21.5 - parent: 4812 - - uid: 2746 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,36.5 - parent: 4812 - - uid: 2747 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,28.5 - parent: 4812 - - uid: 2748 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,29.5 - parent: 4812 - - uid: 2749 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,30.5 - parent: 4812 - - uid: 2750 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,31.5 - parent: 4812 - - uid: 2753 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,33.5 - parent: 4812 - - uid: 2755 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,23.5 - parent: 4812 - - uid: 2756 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,36.5 - parent: 4812 - - uid: 2757 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,32.5 - parent: 4812 - - uid: 2758 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,33.5 - parent: 4812 - - uid: 2766 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,32.5 - parent: 4812 - - uid: 2767 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,35.5 - parent: 4812 - - uid: 2769 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,32.5 - parent: 4812 - - uid: 2774 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,29.5 - parent: 4812 - - uid: 2778 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,34.5 - parent: 4812 - - uid: 2820 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,33.5 - parent: 4812 - - uid: 2822 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,22.5 - parent: 4812 - - uid: 2824 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,28.5 - parent: 4812 - - uid: 2825 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,29.5 - parent: 4812 - - uid: 2828 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,28.5 - parent: 4812 - - uid: 2829 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,20.5 - parent: 4812 - - uid: 2830 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,18.5 - parent: 4812 - - uid: 2831 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,17.5 - parent: 4812 - - uid: 2841 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,35.5 - parent: 4812 - - uid: 2896 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,12.5 - parent: 4812 - - uid: 2897 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,11.5 - parent: 4812 - - uid: 2898 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,11.5 - parent: 4812 - - uid: 2899 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,11.5 - parent: 4812 - - uid: 2900 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,11.5 - parent: 4812 - - uid: 2901 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,11.5 - parent: 4812 - - uid: 2903 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,16.5 - parent: 4812 - - uid: 2904 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,17.5 - parent: 4812 - - uid: 2905 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,17.5 - parent: 4812 - - uid: 2906 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,17.5 - parent: 4812 - - uid: 2942 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,29.5 - parent: 4812 - - uid: 3006 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,22.5 - parent: 4812 - - uid: 3042 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,23.5 - parent: 4812 - - uid: 3118 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,34.5 - parent: 4812 - - uid: 3150 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,33.5 - parent: 4812 - - uid: 3189 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,36.5 - parent: 4812 - - uid: 3193 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,33.5 - parent: 4812 - - uid: 3212 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,9.5 - parent: 4812 - - uid: 3288 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,6.5 - parent: 4812 - - uid: 3352 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,9.5 - parent: 4812 - - uid: 3355 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,9.5 - parent: 4812 - - uid: 3356 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,9.5 - parent: 4812 - - uid: 3357 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,9.5 - parent: 4812 - - uid: 3391 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,6.5 - parent: 4812 - - uid: 3428 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,37.5 - parent: 4812 - - uid: 3429 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,37.5 - parent: 4812 - - uid: 3430 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,36.5 - parent: 4812 - - uid: 3431 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,36.5 - parent: 4812 - - uid: 3432 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,37.5 - parent: 4812 - - uid: 3436 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,33.5 - parent: 4812 - - uid: 3437 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,31.5 - parent: 4812 - - uid: 3486 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,43.5 - parent: 4812 - - uid: 3487 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,44.5 - parent: 4812 - - uid: 3488 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,45.5 - parent: 4812 - - uid: 3489 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,46.5 - parent: 4812 - - uid: 3490 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,47.5 - parent: 4812 - - uid: 3491 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,48.5 - parent: 4812 - - uid: 3492 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,43.5 - parent: 4812 - - uid: 3493 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,43.5 - parent: 4812 - - uid: 3494 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,43.5 - parent: 4812 - - uid: 3495 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,43.5 - parent: 4812 - - uid: 3496 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,42.5 - parent: 4812 - - uid: 3497 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,42.5 - parent: 4812 - - uid: 3498 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,42.5 - parent: 4812 - - uid: 3499 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,42.5 - parent: 4812 - - uid: 3500 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,42.5 - parent: 4812 - - uid: 3501 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,43.5 - parent: 4812 - - uid: 3502 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,43.5 - parent: 4812 - - uid: 3504 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,43.5 - parent: 4812 - - uid: 3505 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,43.5 - parent: 4812 - - uid: 3506 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,44.5 - parent: 4812 - - uid: 3507 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,46.5 - parent: 4812 - - uid: 3508 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,44.5 - parent: 4812 - - uid: 3509 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,45.5 - parent: 4812 - - uid: 3510 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,46.5 - parent: 4812 - - uid: 3511 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,47.5 - parent: 4812 - - uid: 3512 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,47.5 - parent: 4812 - - uid: 3513 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,47.5 - parent: 4812 - - uid: 3514 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,48.5 - parent: 4812 - - uid: 3515 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,48.5 - parent: 4812 - - uid: 3516 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,49.5 - parent: 4812 - - uid: 3517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,50.5 - parent: 4812 - - uid: 3518 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,51.5 - parent: 4812 - - uid: 3519 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,52.5 - parent: 4812 - - uid: 3520 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,53.5 - parent: 4812 - - uid: 3521 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,54.5 - parent: 4812 - - uid: 3522 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,55.5 - parent: 4812 - - uid: 3523 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,55.5 - parent: 4812 - - uid: 3524 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,56.5 - parent: 4812 - - uid: 3525 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,56.5 - parent: 4812 - - uid: 3526 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,57.5 - parent: 4812 - - uid: 3527 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,57.5 - parent: 4812 - - uid: 3528 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,58.5 - parent: 4812 - - uid: 3529 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,58.5 - parent: 4812 - - uid: 3530 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,58.5 - parent: 4812 - - uid: 3531 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,58.5 - parent: 4812 - - uid: 3532 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,58.5 - parent: 4812 - - uid: 3533 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,57.5 - parent: 4812 - - uid: 3534 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,57.5 - parent: 4812 - - uid: 3535 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,56.5 - parent: 4812 - - uid: 3536 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,56.5 - parent: 4812 - - uid: 3537 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,55.5 - parent: 4812 - - uid: 3538 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,55.5 - parent: 4812 - - uid: 3539 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,55.5 - parent: 4812 - - uid: 3540 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,54.5 - parent: 4812 - - uid: 3541 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,53.5 - parent: 4812 - - uid: 3542 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,52.5 - parent: 4812 - - uid: 3543 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,51.5 - parent: 4812 - - uid: 3544 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,50.5 - parent: 4812 - - uid: 3545 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,49.5 - parent: 4812 - - uid: 3546 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,48.5 - parent: 4812 - - uid: 3547 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,57.5 - parent: 4812 - - uid: 3548 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,57.5 - parent: 4812 - - uid: 3549 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,57.5 - parent: 4812 - - uid: 3550 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,56.5 - parent: 4812 - - uid: 3551 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,56.5 - parent: 4812 - - uid: 3552 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,48.5 - parent: 4812 - - uid: 3553 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,48.5 - parent: 4812 - - uid: 3554 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,48.5 - parent: 4812 - - uid: 3555 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,48.5 - parent: 4812 - - uid: 3556 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,48.5 - parent: 4812 - - uid: 3557 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,48.5 - parent: 4812 - - uid: 3558 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,47.5 - parent: 4812 - - uid: 3559 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,47.5 - parent: 4812 - - uid: 3560 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,44.5 - parent: 4812 - - uid: 3561 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,46.5 - parent: 4812 - - uid: 3562 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,47.5 - parent: 4812 - - uid: 3563 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,46.5 - parent: 4812 - - uid: 3564 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,44.5 - parent: 4812 - - uid: 3565 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,47.5 - parent: 4812 - - uid: 3566 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,49.5 - parent: 4812 - - uid: 3567 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,50.5 - parent: 4812 - - uid: 3568 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,51.5 - parent: 4812 - - uid: 3569 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,52.5 - parent: 4812 - - uid: 3570 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,53.5 - parent: 4812 - - uid: 3571 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,54.5 - parent: 4812 - - uid: 3572 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,54.5 - parent: 4812 - - uid: 3573 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,53.5 - parent: 4812 - - uid: 3574 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,52.5 - parent: 4812 - - uid: 3575 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,51.5 - parent: 4812 - - uid: 3576 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,50.5 - parent: 4812 - - uid: 3577 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,49.5 - parent: 4812 - - uid: 3691 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,54.5 - parent: 4812 - - uid: 3692 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,54.5 - parent: 4812 - - uid: 3693 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,52.5 - parent: 4812 - - uid: 3694 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,51.5 - parent: 4812 - - uid: 3695 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,51.5 - parent: 4812 - - uid: 3696 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,51.5 - parent: 4812 - - uid: 3697 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,52.5 - parent: 4812 - - uid: 3717 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,3.5 - parent: 4812 - - uid: 3718 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,3.5 - parent: 4812 - - uid: 3719 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,4.5 - parent: 4812 - - uid: 3720 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,5.5 - parent: 4812 - - uid: 3721 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,2.5 - parent: 4812 - - uid: 3722 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,7.5 - parent: 4812 - - uid: 3723 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,2.5 - parent: 4812 - - uid: 3724 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,3.5 - parent: 4812 - - uid: 3725 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,4.5 - parent: 4812 - - uid: 3727 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,2.5 - parent: 4812 - - uid: 3728 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,8.5 - parent: 4812 - - uid: 3729 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,6.5 - parent: 4812 - - uid: 3730 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,2.5 - parent: 4812 - - uid: 3731 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,2.5 - parent: 4812 - - uid: 3990 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,8.5 - parent: 4812 - - uid: 3991 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,7.5 - parent: 4812 - - uid: 3992 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,6.5 - parent: 4812 - - uid: 3993 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,5.5 - parent: 4812 - - uid: 3994 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,5.5 - parent: 4812 - - uid: 3995 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,5.5 - parent: 4812 - - uid: 3996 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,5.5 - parent: 4812 - - uid: 3997 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,5.5 - parent: 4812 - - uid: 3998 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,5.5 - parent: 4812 - - uid: 3999 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,5.5 - parent: 4812 - - uid: 4000 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,5.5 - parent: 4812 - - uid: 4001 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,5.5 - parent: 4812 - - uid: 4081 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-4.5 - parent: 4812 - - uid: 4082 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-4.5 - parent: 4812 - - uid: 4083 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-4.5 - parent: 4812 - - uid: 4084 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-5.5 - parent: 4812 - - uid: 4085 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-5.5 - parent: 4812 - - uid: 4086 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-4.5 - parent: 4812 - - uid: 4087 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-10.5 - parent: 4812 - - uid: 4088 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-10.5 - parent: 4812 - - uid: 4089 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-10.5 - parent: 4812 - - uid: 4090 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-10.5 - parent: 4812 - - uid: 4091 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-10.5 - parent: 4812 - - uid: 4092 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-10.5 - parent: 4812 - - uid: 4093 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-9.5 - parent: 4812 - - uid: 4094 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-8.5 - parent: 4812 - - uid: 4095 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-8.5 - parent: 4812 - - uid: 4096 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-8.5 - parent: 4812 - - uid: 4097 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-8.5 - parent: 4812 - - uid: 4098 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-8.5 - parent: 4812 - - uid: 4101 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-8.5 - parent: 4812 - - uid: 4102 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-8.5 - parent: 4812 - - uid: 4103 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-8.5 - parent: 4812 - - uid: 4104 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-8.5 - parent: 4812 - - uid: 4105 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-8.5 - parent: 4812 - - uid: 4106 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-9.5 - parent: 4812 - - uid: 4107 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-10.5 - parent: 4812 - - uid: 4108 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-6.5 - parent: 4812 - - uid: 4109 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-6.5 - parent: 4812 - - uid: 4638 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-36.5 - parent: 4812 - - uid: 4639 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-36.5 - parent: 4812 - - uid: 4640 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-36.5 - parent: 4812 - - uid: 4641 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-36.5 - parent: 4812 - - uid: 4642 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-36.5 - parent: 4812 - - uid: 4643 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-36.5 - parent: 4812 - - uid: 4681 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-40.5 - parent: 4812 - - uid: 4685 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-53.5 - parent: 4812 - - uid: 4686 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-53.5 - parent: 4812 - - uid: 4693 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-39.5 - parent: 4812 - - uid: 4694 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-37.5 - parent: 4812 - - uid: 4696 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-40.5 - parent: 4812 - - uid: 4789 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-29.5 - parent: 4812 - - uid: 4790 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,-29.5 - parent: 4812 - - uid: 4791 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-30.5 - parent: 4812 - - uid: 4792 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-31.5 - parent: 4812 - - uid: 4828 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,23.5 - parent: 4812 - - uid: 4829 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,23.5 - parent: 4812 - - uid: 4830 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,23.5 - parent: 4812 - - uid: 4831 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,23.5 - parent: 4812 - - uid: 4832 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,23.5 - parent: 4812 - - uid: 4886 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,23.5 - parent: 4812 - - uid: 4887 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,22.5 - parent: 4812 - - uid: 4898 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,21.5 - parent: 4812 - - uid: 4917 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-29.5 - parent: 4812 - - uid: 4936 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-27.5 - parent: 4812 - - uid: 5016 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-24.5 - parent: 4812 - - uid: 5027 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,19.5 - parent: 4812 - - uid: 5042 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-59.5 - parent: 4812 - - uid: 5126 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,20.5 - parent: 4812 - - uid: 5285 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-24.5 - parent: 4812 - - uid: 5286 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-23.5 - parent: 4812 - - uid: 5287 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,-23.5 - parent: 4812 - - uid: 5288 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-23.5 - parent: 4812 - - uid: 5289 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-23.5 - parent: 4812 - - uid: 5290 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-24.5 - parent: 4812 - - uid: 5291 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-25.5 - parent: 4812 - - uid: 5292 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-26.5 - parent: 4812 - - uid: 5293 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,-30.5 - parent: 4812 - - uid: 5294 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-30.5 - parent: 4812 - - uid: 5295 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-29.5 - parent: 4812 - - uid: 5296 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-30.5 - parent: 4812 - - uid: 5297 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-30.5 - parent: 4812 - - uid: 5298 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-29.5 - parent: 4812 - - uid: 5299 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-28.5 - parent: 4812 - - uid: 5312 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-13.5 - parent: 4812 - - uid: 5314 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-13.5 - parent: 4812 - - uid: 5316 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-13.5 - parent: 4812 - - uid: 5330 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-13.5 - parent: 4812 - - uid: 5331 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-19.5 - parent: 4812 - - uid: 5332 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-19.5 - parent: 4812 - - uid: 5336 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-19.5 - parent: 4812 - - uid: 5337 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-19.5 - parent: 4812 - - uid: 5395 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-22.5 - parent: 4812 - - uid: 5397 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-22.5 - parent: 4812 - - uid: 5398 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-18.5 - parent: 4812 - - uid: 5400 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-19.5 - parent: 4812 - - uid: 5401 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-17.5 - parent: 4812 - - uid: 5402 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-16.5 - parent: 4812 - - uid: 5403 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-16.5 - parent: 4812 - - uid: 5404 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-16.5 - parent: 4812 - - uid: 5405 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-16.5 - parent: 4812 - - uid: 5406 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,-16.5 - parent: 4812 - - uid: 5407 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-13.5 - parent: 4812 - - uid: 5408 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-14.5 - parent: 4812 - - uid: 5409 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-13.5 - parent: 4812 - - uid: 5410 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-13.5 - parent: 4812 - - uid: 5411 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-13.5 - parent: 4812 - - uid: 5412 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-17.5 - parent: 4812 - - uid: 5413 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-19.5 - parent: 4812 - - uid: 5414 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-22.5 - parent: 4812 - - uid: 5432 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-24.5 - parent: 4812 - - uid: 5433 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-28.5 - parent: 4812 - - uid: 5434 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-29.5 - parent: 4812 - - uid: 5435 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-29.5 - parent: 4812 - - uid: 5436 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-29.5 - parent: 4812 - - uid: 5437 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-29.5 - parent: 4812 - - uid: 5438 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-29.5 - parent: 4812 - - uid: 5439 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-29.5 - parent: 4812 - - uid: 5440 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-29.5 - parent: 4812 - - uid: 5441 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-29.5 - parent: 4812 - - uid: 5442 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-29.5 - parent: 4812 - - uid: 5443 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-29.5 - parent: 4812 - - uid: 5444 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-29.5 - parent: 4812 - - uid: 5445 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-29.5 - parent: 4812 - - uid: 5446 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-29.5 - parent: 4812 - - uid: 5447 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-28.5 - parent: 4812 - - uid: 5448 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-27.5 - parent: 4812 - - uid: 5449 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-26.5 - parent: 4812 - - uid: 5450 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-25.5 - parent: 4812 - - uid: 5451 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-26.5 - parent: 4812 - - uid: 5452 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-23.5 - parent: 4812 - - uid: 5453 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-22.5 - parent: 4812 - - uid: 5454 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-22.5 - parent: 4812 - - uid: 5455 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,-22.5 - parent: 4812 - - uid: 5456 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-22.5 - parent: 4812 - - uid: 5469 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-17.5 - parent: 4812 - - uid: 5470 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-18.5 - parent: 4812 - - uid: 5471 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-19.5 - parent: 4812 - - uid: 5473 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-22.5 - parent: 4812 - - uid: 5479 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-27.5 - parent: 4812 - - uid: 5480 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-27.5 - parent: 4812 - - uid: 5500 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-29.5 - parent: 4812 - - uid: 5501 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-22.5 - parent: 4812 - - uid: 5502 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-22.5 - parent: 4812 - - uid: 5505 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-21.5 - parent: 4812 - - uid: 5506 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-21.5 - parent: 4812 - - uid: 5510 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-21.5 - parent: 4812 - - uid: 5511 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-19.5 - parent: 4812 - - uid: 5512 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-27.5 - parent: 4812 - - uid: 5515 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-27.5 - parent: 4812 - - uid: 5516 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-27.5 - parent: 4812 - - uid: 5517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-27.5 - parent: 4812 - - uid: 5518 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-28.5 - parent: 4812 - - uid: 5519 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-28.5 - parent: 4812 - - uid: 5520 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-30.5 - parent: 4812 - - uid: 5521 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-30.5 - parent: 4812 - - uid: 5522 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-31.5 - parent: 4812 - - uid: 5523 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 25.5,-31.5 - parent: 4812 - - uid: 5524 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-31.5 - parent: 4812 - - uid: 5525 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-31.5 - parent: 4812 - - uid: 5526 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-31.5 - parent: 4812 - - uid: 5527 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-31.5 - parent: 4812 - - uid: 5528 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-31.5 - parent: 4812 - - uid: 5529 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-31.5 - parent: 4812 - - uid: 5530 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-21.5 - parent: 4812 - - uid: 5531 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-20.5 - parent: 4812 - - uid: 5532 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-19.5 - parent: 4812 - - uid: 5556 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-31.5 - parent: 4812 - - uid: 5557 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-31.5 - parent: 4812 - - uid: 5558 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-31.5 - parent: 4812 - - uid: 5559 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-31.5 - parent: 4812 - - uid: 5560 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-30.5 - parent: 4812 - - uid: 5561 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-29.5 - parent: 4812 - - uid: 5568 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-22.5 - parent: 4812 - - uid: 5569 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-21.5 - parent: 4812 - - uid: 5595 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,18.5 - parent: 4812 - - uid: 5769 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-29.5 - parent: 4812 - - uid: 5770 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-29.5 - parent: 4812 - - uid: 5772 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-29.5 - parent: 4812 - - uid: 5773 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-29.5 - parent: 4812 - - uid: 5774 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-29.5 - parent: 4812 - - uid: 5775 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-28.5 - parent: 4812 - - uid: 5776 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-27.5 - parent: 4812 - - uid: 5777 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-26.5 - parent: 4812 - - uid: 5778 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-25.5 - parent: 4812 - - uid: 5779 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-24.5 - parent: 4812 - - uid: 5780 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-23.5 - parent: 4812 - - uid: 5781 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-22.5 - parent: 4812 - - uid: 5785 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-22.5 - parent: 4812 - - uid: 5786 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-22.5 - parent: 4812 - - uid: 5826 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-59.5 - parent: 4812 - - uid: 5904 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-30.5 - parent: 4812 - - uid: 5905 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 4812 - - uid: 5906 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 4812 - - uid: 5907 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-31.5 - parent: 4812 - - uid: 5908 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-32.5 - parent: 4812 - - uid: 5909 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-32.5 - parent: 4812 - - uid: 5910 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-32.5 - parent: 4812 - - uid: 5911 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-32.5 - parent: 4812 - - uid: 6546 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-26.5 - parent: 4812 - - uid: 6547 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-25.5 - parent: 4812 - - uid: 6559 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-13.5 - parent: 4812 - - uid: 6560 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-18.5 - parent: 4812 - - uid: 6561 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-16.5 - parent: 4812 - - uid: 6562 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-14.5 - parent: 4812 - - uid: 6563 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-13.5 - parent: 4812 - - uid: 6564 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-19.5 - parent: 4812 - - uid: 6565 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-19.5 - parent: 4812 - - uid: 6566 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-19.5 - parent: 4812 - - uid: 6567 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-17.5 - parent: 4812 - - uid: 6568 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-15.5 - parent: 4812 - - uid: 6569 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-13.5 - parent: 4812 - - uid: 6696 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-37.5 - parent: 4812 - - uid: 6697 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-37.5 - parent: 4812 - - uid: 6698 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-37.5 - parent: 4812 - - uid: 6699 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-38.5 - parent: 4812 - - uid: 6700 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-39.5 - parent: 4812 - - uid: 6701 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-40.5 - parent: 4812 - - uid: 6702 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-40.5 - parent: 4812 - - uid: 6704 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-40.5 - parent: 4812 - - uid: 6705 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-40.5 - parent: 4812 - - uid: 6706 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-40.5 - parent: 4812 - - uid: 6707 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-40.5 - parent: 4812 - - uid: 6759 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-29.5 - parent: 4812 - - uid: 6760 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-30.5 - parent: 4812 - - uid: 6761 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-31.5 - parent: 4812 - - uid: 6762 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-32.5 - parent: 4812 - - uid: 6763 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-33.5 - parent: 4812 - - uid: 6900 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-33.5 - parent: 4812 - - uid: 6901 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,-33.5 - parent: 4812 - - uid: 7281 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-28.5 - parent: 4812 - - uid: 7289 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-29.5 - parent: 4812 - - uid: 7292 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-29.5 - parent: 4812 - - uid: 7293 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-29.5 - parent: 4812 - - uid: 7294 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-29.5 - parent: 4812 - - uid: 7337 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-24.5 - parent: 4812 - - uid: 7635 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,30.5 - parent: 4812 - - uid: 7636 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,29.5 - parent: 4812 - - uid: 7637 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,30.5 - parent: 4812 - - uid: 7638 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,30.5 - parent: 4812 - - uid: 7639 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,30.5 - parent: 4812 - - uid: 7640 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,29.5 - parent: 4812 - - uid: 7641 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,21.5 - parent: 4812 - - uid: 7642 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,22.5 - parent: 4812 - - uid: 7643 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,23.5 - parent: 4812 - - uid: 7644 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,24.5 - parent: 4812 - - uid: 7645 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,26.5 - parent: 4812 - - uid: 7646 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,27.5 - parent: 4812 - - uid: 7647 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,28.5 - parent: 4812 - - uid: 7648 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,30.5 - parent: 4812 - - uid: 7649 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,29.5 - parent: 4812 - - uid: 7650 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,29.5 - parent: 4812 - - uid: 7651 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,29.5 - parent: 4812 - - uid: 7652 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,21.5 - parent: 4812 - - uid: 7653 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,21.5 - parent: 4812 - - uid: 7654 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,22.5 - parent: 4812 - - uid: 7656 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,24.5 - parent: 4812 - - uid: 7657 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,25.5 - parent: 4812 - - uid: 7658 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,26.5 - parent: 4812 - - uid: 7659 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,27.5 - parent: 4812 - - uid: 7660 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,28.5 - parent: 4812 - - uid: 7661 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,32.5 - parent: 4812 - - uid: 7662 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,33.5 - parent: 4812 - - uid: 7663 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,33.5 - parent: 4812 - - uid: 7664 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,33.5 - parent: 4812 - - uid: 7670 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,33.5 - parent: 4812 - - uid: 7671 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,33.5 - parent: 4812 - - uid: 7672 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,33.5 - parent: 4812 - - uid: 7673 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,33.5 - parent: 4812 - - uid: 7674 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,28.5 - parent: 4812 - - uid: 7675 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,29.5 - parent: 4812 - - uid: 7676 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,30.5 - parent: 4812 - - uid: 7677 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,31.5 - parent: 4812 - - uid: 7678 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,32.5 - parent: 4812 - - uid: 7679 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,28.5 - parent: 4812 - - uid: 7680 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,21.5 - parent: 4812 - - uid: 7681 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,21.5 - parent: 4812 - - uid: 7686 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,21.5 - parent: 4812 - - uid: 7687 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,21.5 - parent: 4812 - - uid: 7688 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,21.5 - parent: 4812 - - uid: 7689 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,23.5 - parent: 4812 - - uid: 7690 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,25.5 - parent: 4812 - - uid: 7691 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,25.5 - parent: 4812 - - uid: 7692 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,22.5 - parent: 4812 - - uid: 7693 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,25.5 - parent: 4812 - - uid: 7694 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,25.5 - parent: 4812 - - uid: 7695 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,21.5 - parent: 4812 - - uid: 7696 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,27.5 - parent: 4812 - - uid: 7697 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,26.5 - parent: 4812 - - uid: 7698 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,25.5 - parent: 4812 - - uid: 7699 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,24.5 - parent: 4812 - - uid: 7700 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,25.5 - parent: 4812 - - uid: 7701 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,26.5 - parent: 4812 - - uid: 7702 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,27.5 - parent: 4812 - - uid: 7703 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,28.5 - parent: 4812 - - uid: 7704 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,28.5 - parent: 4812 - - uid: 7705 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,28.5 - parent: 4812 - - uid: 7706 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,28.5 - parent: 4812 - - uid: 7707 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,28.5 - parent: 4812 - - uid: 7712 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,9.5 - parent: 4812 - - uid: 7713 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,9.5 - parent: 4812 - - uid: 7714 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,9.5 - parent: 4812 - - uid: 7715 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,9.5 - parent: 4812 - - uid: 7718 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,18.5 - parent: 4812 - - uid: 7719 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,15.5 - parent: 4812 - - uid: 7720 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,15.5 - parent: 4812 - - uid: 7721 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,15.5 - parent: 4812 - - uid: 7722 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,15.5 - parent: 4812 - - uid: 7723 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,12.5 - parent: 4812 - - uid: 7724 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,12.5 - parent: 4812 - - uid: 7732 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,18.5 - parent: 4812 - - uid: 7733 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,22.5 - parent: 4812 - - uid: 7734 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,22.5 - parent: 4812 - - uid: 7735 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,22.5 - parent: 4812 - - uid: 7736 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,22.5 - parent: 4812 - - uid: 7737 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,18.5 - parent: 4812 - - uid: 7738 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,19.5 - parent: 4812 - - uid: 7739 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,20.5 - parent: 4812 - - uid: 7740 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,18.5 - parent: 4812 - - uid: 7743 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,16.5 - parent: 4812 - - uid: 7744 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,13.5 - parent: 4812 - - uid: 7749 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,9.5 - parent: 4812 - - uid: 7750 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,9.5 - parent: 4812 - - uid: 7751 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,9.5 - parent: 4812 - - uid: 7753 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,9.5 - parent: 4812 - - uid: 7754 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,9.5 - parent: 4812 - - uid: 7755 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,9.5 - parent: 4812 - - uid: 7756 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,21.5 - parent: 4812 - - uid: 7757 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,22.5 - parent: 4812 - - uid: 7758 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,17.5 - parent: 4812 - - uid: 7759 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,16.5 - parent: 4812 - - uid: 7760 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,15.5 - parent: 4812 - - uid: 7761 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,14.5 - parent: 4812 - - uid: 7762 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,13.5 - parent: 4812 - - uid: 7763 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,13.5 - parent: 4812 - - uid: 7765 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,13.5 - parent: 4812 - - uid: 7766 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,13.5 - parent: 4812 - - uid: 7767 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,13.5 - parent: 4812 - - uid: 7768 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,9.5 - parent: 4812 - - uid: 7769 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,9.5 - parent: 4812 - - uid: 7770 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,9.5 - parent: 4812 - - uid: 7771 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,9.5 - parent: 4812 - - uid: 7772 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,9.5 - parent: 4812 - - uid: 7773 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,9.5 - parent: 4812 - - uid: 7774 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,10.5 - parent: 4812 - - uid: 7775 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,11.5 - parent: 4812 - - uid: 7776 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,12.5 - parent: 4812 - - uid: 7937 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,6.5 - parent: 4812 - - uid: 7938 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,6.5 - parent: 4812 - - uid: 7939 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,6.5 - parent: 4812 - - uid: 7940 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,6.5 - parent: 4812 - - uid: 7941 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,6.5 - parent: 4812 - - uid: 7942 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,6.5 - parent: 4812 - - uid: 7943 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,6.5 - parent: 4812 - - uid: 7944 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,6.5 - parent: 4812 - - uid: 7945 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,6.5 - parent: 4812 - - uid: 7946 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,6.5 - parent: 4812 - - uid: 7947 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,6.5 - parent: 4812 - - uid: 7948 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,6.5 - parent: 4812 - - uid: 7950 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,6.5 - parent: 4812 - - uid: 7951 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,7.5 - parent: 4812 - - uid: 7952 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,8.5 - parent: 4812 - - uid: 7955 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,8.5 - parent: 4812 - - uid: 8621 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,0.5 - parent: 4812 - - uid: 8623 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,0.5 - parent: 4812 - - uid: 8624 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,0.5 - parent: 4812 - - uid: 8625 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,1.5 - parent: 4812 - - uid: 8626 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,5.5 - parent: 4812 - - uid: 8635 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,0.5 - parent: 4812 - - uid: 8639 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,4.5 - parent: 4812 - - uid: 8641 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-0.5 - parent: 4812 - - uid: 8642 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-1.5 - parent: 4812 - - uid: 8643 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-2.5 - parent: 4812 - - uid: 8644 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-3.5 - parent: 4812 - - uid: 8645 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-4.5 - parent: 4812 - - uid: 8646 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-5.5 - parent: 4812 - - uid: 8647 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-6.5 - parent: 4812 - - uid: 8648 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-4.5 - parent: 4812 - - uid: 8649 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-4.5 - parent: 4812 - - uid: 8650 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-4.5 - parent: 4812 - - uid: 8651 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-4.5 - parent: 4812 - - uid: 8652 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-5.5 - parent: 4812 - - uid: 8653 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-9.5 - parent: 4812 - - uid: 8654 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-10.5 - parent: 4812 - - uid: 8655 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-10.5 - parent: 4812 - - uid: 8656 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-10.5 - parent: 4812 - - uid: 8657 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-10.5 - parent: 4812 - - uid: 8658 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-10.5 - parent: 4812 - - uid: 8659 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-10.5 - parent: 4812 - - uid: 8660 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-10.5 - parent: 4812 - - uid: 8661 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-9.5 - parent: 4812 - - uid: 8662 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-7.5 - parent: 4812 - - uid: 8663 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-6.5 - parent: 4812 - - uid: 8664 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-10.5 - parent: 4812 - - uid: 8665 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-10.5 - parent: 4812 - - uid: 8666 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-9.5 - parent: 4812 - - uid: 8667 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-7.5 - parent: 4812 - - uid: 8668 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-6.5 - parent: 4812 - - uid: 8669 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-5.5 - parent: 4812 - - uid: 8670 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-4.5 - parent: 4812 - - uid: 8671 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-3.5 - parent: 4812 - - uid: 8672 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-2.5 - parent: 4812 - - uid: 8673 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-1.5 - parent: 4812 - - uid: 8674 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-0.5 - parent: 4812 - - uid: 8675 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,0.5 - parent: 4812 - - uid: 8712 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-0.5 - parent: 4812 - - uid: 8713 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,-0.5 - parent: 4812 - - uid: 8714 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-0.5 - parent: 4812 - - uid: 8715 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-1.5 - parent: 4812 - - uid: 8716 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-2.5 - parent: 4812 - - uid: 8717 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-3.5 - parent: 4812 - - uid: 8718 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,-4.5 - parent: 4812 - - uid: 8719 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-4.5 - parent: 4812 - - uid: 8720 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-4.5 - parent: 4812 - - uid: 8724 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-4.5 - parent: 4812 - - uid: 8726 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-2.5 - parent: 4812 - - uid: 8727 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-1.5 - parent: 4812 - - uid: 8728 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-0.5 - parent: 4812 - - uid: 8729 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,-0.5 - parent: 4812 - - uid: 8730 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,-0.5 - parent: 4812 - - uid: 8731 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-0.5 - parent: 4812 - - uid: 8732 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-0.5 - parent: 4812 - - uid: 8733 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,-4.5 - parent: 4812 - - uid: 8751 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-3.5 - parent: 4812 - - uid: 8789 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-41.5 - parent: 4812 - - uid: 8790 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-41.5 - parent: 4812 - - uid: 8791 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-41.5 - parent: 4812 - - uid: 8793 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-41.5 - parent: 4812 - - uid: 8794 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-41.5 - parent: 4812 - - uid: 8795 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-41.5 - parent: 4812 - - uid: 8796 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-41.5 - parent: 4812 - - uid: 8797 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-40.5 - parent: 4812 - - uid: 8798 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-39.5 - parent: 4812 - - uid: 8799 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-38.5 - parent: 4812 - - uid: 8800 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-38.5 - parent: 4812 - - uid: 8801 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-38.5 - parent: 4812 - - uid: 8802 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-38.5 - parent: 4812 - - uid: 8809 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-38.5 - parent: 4812 - - uid: 8811 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-36.5 - parent: 4812 - - uid: 8812 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-34.5 - parent: 4812 - - uid: 8813 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-33.5 - parent: 4812 - - uid: 8814 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-32.5 - parent: 4812 - - uid: 8815 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-35.5 - parent: 4812 - - uid: 8816 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-37.5 - parent: 4812 - - uid: 8817 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-36.5 - parent: 4812 - - uid: 8818 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-35.5 - parent: 4812 - - uid: 8819 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-34.5 - parent: 4812 - - uid: 8820 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-35.5 - parent: 4812 - - uid: 8821 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-35.5 - parent: 4812 - - uid: 8822 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-34.5 - parent: 4812 - - uid: 8823 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-32.5 - parent: 4812 - - uid: 8824 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-32.5 - parent: 4812 - - uid: 8825 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-32.5 - parent: 4812 - - uid: 8826 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-32.5 - parent: 4812 - - uid: 8827 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,-32.5 - parent: 4812 - - uid: 8828 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-32.5 - parent: 4812 - - uid: 8829 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-32.5 - parent: 4812 - - uid: 8830 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-32.5 - parent: 4812 - - uid: 8831 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,-32.5 - parent: 4812 - - uid: 8873 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-11.5 - parent: 4812 - - uid: 8874 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-12.5 - parent: 4812 - - uid: 8875 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-13.5 - parent: 4812 - - uid: 8876 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-14.5 - parent: 4812 - - uid: 8877 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-15.5 - parent: 4812 - - uid: 9022 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,2.5 - parent: 4812 - - uid: 9091 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,12.5 - parent: 4812 - - uid: 9092 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,11.5 - parent: 4812 - - uid: 9093 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,10.5 - parent: 4812 - - uid: 9094 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,9.5 - parent: 4812 - - uid: 9095 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,8.5 - parent: 4812 - - uid: 9096 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,7.5 - parent: 4812 - - uid: 9097 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,6.5 - parent: 4812 - - uid: 9098 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,5.5 - parent: 4812 - - uid: 9100 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,3.5 - parent: 4812 - - uid: 9101 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,2.5 - parent: 4812 - - uid: 9102 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,1.5 - parent: 4812 - - uid: 9103 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,12.5 - parent: 4812 - - uid: 9104 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,11.5 - parent: 4812 - - uid: 9105 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,10.5 - parent: 4812 - - uid: 9106 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,9.5 - parent: 4812 - - uid: 9107 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,8.5 - parent: 4812 - - uid: 9108 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,7.5 - parent: 4812 - - uid: 9109 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,6.5 - parent: 4812 - - uid: 9110 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,5.5 - parent: 4812 - - uid: 9111 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,4.5 - parent: 4812 - - uid: 9112 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,3.5 - parent: 4812 - - uid: 9113 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,2.5 - parent: 4812 - - uid: 9114 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,1.5 - parent: 4812 - - uid: 9139 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,0.5 - parent: 4812 - - uid: 9140 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,0.5 - parent: 4812 - - uid: 9141 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,0.5 - parent: 4812 - - uid: 9142 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,0.5 - parent: 4812 - - uid: 9143 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,0.5 - parent: 4812 - - uid: 9144 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,0.5 - parent: 4812 - - uid: 9239 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,6.5 - parent: 4812 - - uid: 9240 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,4.5 - parent: 4812 - - uid: 9242 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,2.5 - parent: 4812 - - uid: 9243 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,2.5 - parent: 4812 - - uid: 9244 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,6.5 - parent: 4812 - - uid: 9245 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,2.5 - parent: 4812 - - uid: 9248 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,6.5 - parent: 4812 - - uid: 9256 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,4.5 - parent: 4812 - - uid: 9258 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,4.5 - parent: 4812 - - uid: 9260 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,4.5 - parent: 4812 - - uid: 9265 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,6.5 - parent: 4812 - - uid: 9266 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,8.5 - parent: 4812 - - uid: 9267 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,8.5 - parent: 4812 - - uid: 9268 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,8.5 - parent: 4812 - - uid: 9269 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,8.5 - parent: 4812 - - uid: 9270 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,10.5 - parent: 4812 - - uid: 9271 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,10.5 - parent: 4812 - - uid: 9272 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,10.5 - parent: 4812 - - uid: 9273 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,10.5 - parent: 4812 - - uid: 9274 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,12.5 - parent: 4812 - - uid: 9275 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,12.5 - parent: 4812 - - uid: 9276 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,12.5 - parent: 4812 - - uid: 9277 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,12.5 - parent: 4812 - - uid: 9284 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-5.5 - parent: 4812 - - uid: 9285 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,-3.5 - parent: 4812 - - uid: 9286 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,-2.5 - parent: 4812 - - uid: 9469 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,18.5 - parent: 4812 - - uid: 9470 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,18.5 - parent: 4812 - - uid: 9471 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,18.5 - parent: 4812 - - uid: 9472 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,18.5 - parent: 4812 - - uid: 9473 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,15.5 - parent: 4812 - - uid: 9474 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,15.5 - parent: 4812 - - uid: 9511 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,13.5 - parent: 4812 - - uid: 9517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-5.5 - parent: 4812 - - uid: 9518 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,-5.5 - parent: 4812 - - uid: 9519 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-5.5 - parent: 4812 - - uid: 9520 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-3.5 - parent: 4812 - - uid: 9521 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-5.5 - parent: 4812 - - uid: 9522 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-3.5 - parent: 4812 - - uid: 9579 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-32.5 - parent: 4812 - - uid: 9590 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-25.5 - parent: 4812 - - uid: 9591 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-24.5 - parent: 4812 - - uid: 9592 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,-24.5 - parent: 4812 - - uid: 9594 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-24.5 - parent: 4812 - - uid: 9595 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-25.5 - parent: 4812 - - uid: 9596 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-26.5 - parent: 4812 - - uid: 9597 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-26.5 - parent: 4812 - - uid: 9598 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-26.5 - parent: 4812 - - uid: 9604 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,-24.5 - parent: 4812 - - uid: 9605 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-24.5 - parent: 4812 - - uid: 9606 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-24.5 - parent: 4812 - - uid: 9607 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -56.5,-21.5 - parent: 4812 - - uid: 9644 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-56.5 - parent: 4812 - - uid: 9645 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-56.5 - parent: 4812 - - uid: 9824 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-16.5 - parent: 4812 - - uid: 9825 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-17.5 - parent: 4812 - - uid: 9826 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-18.5 - parent: 4812 - - uid: 9827 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-19.5 - parent: 4812 - - uid: 9828 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-19.5 - parent: 4812 - - uid: 9829 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-15.5 - parent: 4812 - - uid: 9831 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,-15.5 - parent: 4812 - - uid: 9836 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-10.5 - parent: 4812 - - uid: 9837 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-5.5 - parent: 4812 - - uid: 9840 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-14.5 - parent: 4812 - - uid: 9841 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-15.5 - parent: 4812 - - uid: 9842 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-5.5 - parent: 4812 - - uid: 9844 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-6.5 - parent: 4812 - - uid: 9845 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-7.5 - parent: 4812 - - uid: 9846 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-14.5 - parent: 4812 - - uid: 9847 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-13.5 - parent: 4812 - - uid: 9848 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-12.5 - parent: 4812 - - uid: 9849 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-11.5 - parent: 4812 - - uid: 9850 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-10.5 - parent: 4812 - - uid: 9851 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-9.5 - parent: 4812 - - uid: 9852 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-8.5 - parent: 4812 - - uid: 9853 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,-14.5 - parent: 4812 - - uid: 9854 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,-14.5 - parent: 4812 - - uid: 9855 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,-14.5 - parent: 4812 - - uid: 9856 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-14.5 - parent: 4812 - - uid: 9857 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-14.5 - parent: 4812 - - uid: 9858 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-14.5 - parent: 4812 - - uid: 9859 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,-14.5 - parent: 4812 - - uid: 9860 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-14.5 - parent: 4812 - - uid: 9864 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-10.5 - parent: 4812 - - uid: 9865 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-9.5 - parent: 4812 - - uid: 9866 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-8.5 - parent: 4812 - - uid: 9867 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-7.5 - parent: 4812 - - uid: 9868 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-6.5 - parent: 4812 - - uid: 9873 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-9.5 - parent: 4812 - - uid: 9876 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-10.5 - parent: 4812 - - uid: 9890 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-9.5 - parent: 4812 - - uid: 9891 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-10.5 - parent: 4812 - - uid: 9895 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-14.5 - parent: 4812 - - uid: 9896 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-9.5 - parent: 4812 - - uid: 9900 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-9.5 - parent: 4812 - - uid: 9901 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-19.5 - parent: 4812 - - uid: 9902 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -40.5,-19.5 - parent: 4812 - - uid: 9903 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-19.5 - parent: 4812 - - uid: 9904 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-19.5 - parent: 4812 - - uid: 9905 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-19.5 - parent: 4812 - - uid: 9906 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-18.5 - parent: 4812 - - uid: 9907 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-17.5 - parent: 4812 - - uid: 9908 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-16.5 - parent: 4812 - - uid: 9939 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -55.5,-21.5 - parent: 4812 - - uid: 9940 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,-21.5 - parent: 4812 - - uid: 9941 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -53.5,-21.5 - parent: 4812 - - uid: 9942 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -52.5,-21.5 - parent: 4812 - - uid: 9943 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -51.5,-21.5 - parent: 4812 - - uid: 9944 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-21.5 - parent: 4812 - - uid: 9945 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-21.5 - parent: 4812 - - uid: 9946 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,-21.5 - parent: 4812 - - uid: 9947 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-21.5 - parent: 4812 - - uid: 9948 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-21.5 - parent: 4812 - - uid: 9949 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-16.5 - parent: 4812 - - uid: 9950 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-17.5 - parent: 4812 - - uid: 9951 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-18.5 - parent: 4812 - - uid: 9952 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-18.5 - parent: 4812 - - uid: 9953 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -48.5,-18.5 - parent: 4812 - - uid: 9954 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-18.5 - parent: 4812 - - uid: 9955 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-19.5 - parent: 4812 - - uid: 9956 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-20.5 - parent: 4812 - - uid: 9957 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -46.5,-19.5 - parent: 4812 - - uid: 10635 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-10.5 - parent: 4812 - - uid: 10964 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-37.5 - parent: 4812 - - uid: 10989 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-41.5 - parent: 4812 - - uid: 11006 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-40.5 - parent: 4812 - - uid: 11007 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-39.5 - parent: 4812 - - uid: 11008 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-38.5 - parent: 4812 - - uid: 11030 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-42.5 - parent: 4812 - - uid: 11031 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-43.5 - parent: 4812 - - uid: 11032 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-43.5 - parent: 4812 - - uid: 11033 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-43.5 - parent: 4812 - - uid: 11034 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-43.5 - parent: 4812 - - uid: 11035 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-44.5 - parent: 4812 - - uid: 11036 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-45.5 - parent: 4812 - - uid: 11037 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-45.5 - parent: 4812 - - uid: 11038 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-45.5 - parent: 4812 - - uid: 11039 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-45.5 - parent: 4812 - - uid: 11040 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-45.5 - parent: 4812 - - uid: 11041 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-45.5 - parent: 4812 - - uid: 11042 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,-43.5 - parent: 4812 - - uid: 11043 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-44.5 - parent: 4812 - - uid: 11044 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-43.5 - parent: 4812 - - uid: 11045 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-43.5 - parent: 4812 - - uid: 11046 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-43.5 - parent: 4812 - - uid: 11110 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-43.5 - parent: 4812 - - uid: 11111 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-42.5 - parent: 4812 - - uid: 11112 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-41.5 - parent: 4812 - - uid: 11113 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-40.5 - parent: 4812 - - uid: 11114 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-39.5 - parent: 4812 - - uid: 11115 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-38.5 - parent: 4812 - - uid: 11116 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-37.5 - parent: 4812 - - uid: 11117 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-36.5 - parent: 4812 - - uid: 11118 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-35.5 - parent: 4812 - - uid: 11119 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-30.5 - parent: 4812 - - uid: 11120 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-31.5 - parent: 4812 - - uid: 11125 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-39.5 - parent: 4812 - - uid: 11128 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-39.5 - parent: 4812 - - uid: 11131 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-39.5 - parent: 4812 - - uid: 11132 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-37.5 - parent: 4812 - - uid: 11133 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-37.5 - parent: 4812 - - uid: 11134 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-38.5 - parent: 4812 - - uid: 11135 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-35.5 - parent: 4812 - - uid: 11136 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-38.5 - parent: 4812 - - uid: 11137 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-38.5 - parent: 4812 - - uid: 11138 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-37.5 - parent: 4812 - - uid: 11140 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-37.5 - parent: 4812 - - uid: 11142 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-39.5 - parent: 4812 - - uid: 11263 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-37.5 - parent: 4812 - - uid: 11264 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-37.5 - parent: 4812 - - uid: 11265 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-36.5 - parent: 4812 - - uid: 11340 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-35.5 - parent: 4812 - - uid: 11341 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-34.5 - parent: 4812 - - uid: 11342 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,-33.5 - parent: 4812 - - uid: 11344 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-31.5 - parent: 4812 - - uid: 11345 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-31.5 - parent: 4812 - - uid: 11371 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-39.5 - parent: 4812 - - uid: 11372 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-40.5 - parent: 4812 - - uid: 11373 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-40.5 - parent: 4812 - - uid: 11374 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-40.5 - parent: 4812 - - uid: 11375 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-40.5 - parent: 4812 - - uid: 11376 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,-40.5 - parent: 4812 - - uid: 11377 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-40.5 - parent: 4812 - - uid: 11378 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-40.5 - parent: 4812 - - uid: 11379 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-39.5 - parent: 4812 - - uid: 11380 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-38.5 - parent: 4812 - - uid: 11381 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-37.5 - parent: 4812 - - uid: 11382 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 28.5,-37.5 - parent: 4812 -- proto: WallSolid - entities: - - uid: 1 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-9.5 - parent: 4812 - - uid: 2 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,-10.5 - parent: 4812 - - uid: 3 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-4.5 - parent: 4812 - - uid: 4 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-3.5 - parent: 4812 - - uid: 5 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,0.5 - parent: 4812 - - uid: 6 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,1.5 - parent: 4812 - - uid: 7 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,1.5 - parent: 4812 - - uid: 8 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,3.5 - parent: 4812 - - uid: 9 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,9.5 - parent: 4812 - - uid: 10 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,8.5 - parent: 4812 - - uid: 11 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,4.5 - parent: 4812 - - uid: 13 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,5.5 - parent: 4812 - - uid: 14 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,5.5 - parent: 4812 - - uid: 15 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,5.5 - parent: 4812 - - uid: 16 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,5.5 - parent: 4812 - - uid: 17 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,5.5 - parent: 4812 - - uid: 18 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,6.5 - parent: 4812 - - uid: 19 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,8.5 - parent: 4812 - - uid: 20 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,9.5 - parent: 4812 - - uid: 21 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,10.5 - parent: 4812 - - uid: 22 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,10.5 - parent: 4812 - - uid: 23 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,10.5 - parent: 4812 - - uid: 24 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,10.5 - parent: 4812 - - uid: 25 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,10.5 - parent: 4812 - - uid: 26 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,10.5 - parent: 4812 - - uid: 27 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,10.5 - parent: 4812 - - uid: 28 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,10.5 - parent: 4812 - - uid: 29 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,11.5 - parent: 4812 - - uid: 30 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,12.5 - parent: 4812 - - uid: 31 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,12.5 - parent: 4812 - - uid: 33 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,15.5 - parent: 4812 - - uid: 34 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,14.5 - parent: 4812 - - uid: 36 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,15.5 - parent: 4812 - - uid: 37 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,13.5 - parent: 4812 - - uid: 38 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,12.5 - parent: 4812 - - uid: 39 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,12.5 - parent: 4812 - - uid: 40 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,11.5 - parent: 4812 - - uid: 41 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,10.5 - parent: 4812 - - uid: 42 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-9.5 - parent: 4812 - - uid: 43 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-9.5 - parent: 4812 - - uid: 44 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-10.5 - parent: 4812 - - uid: 45 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-7.5 - parent: 4812 - - uid: 46 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-6.5 - parent: 4812 - - uid: 47 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-5.5 - parent: 4812 - - uid: 48 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,-10.5 - parent: 4812 - - uid: 49 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,-9.5 - parent: 4812 - - uid: 50 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -5.5,-8.5 - parent: 4812 - - uid: 51 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-8.5 - parent: 4812 - - uid: 52 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-4.5 - parent: 4812 - - uid: 53 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-2.5 - parent: 4812 - - uid: 54 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,-1.5 - parent: 4812 - - uid: 55 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,0.5 - parent: 4812 - - uid: 56 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,1.5 - parent: 4812 - - uid: 57 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,2.5 - parent: 4812 - - uid: 58 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,2.5 - parent: 4812 - - uid: 59 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,10.5 - parent: 4812 - - uid: 60 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,10.5 - parent: 4812 - - uid: 61 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,10.5 - parent: 4812 - - uid: 62 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,10.5 - parent: 4812 - - uid: 63 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,9.5 - parent: 4812 - - uid: 64 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,8.5 - parent: 4812 - - uid: 65 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,7.5 - parent: 4812 - - uid: 66 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,6.5 - parent: 4812 - - uid: 67 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,5.5 - parent: 4812 - - uid: 68 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,4.5 - parent: 4812 - - uid: 69 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,3.5 - parent: 4812 - - uid: 70 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,2.5 - parent: 4812 - - uid: 71 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,1.5 - parent: 4812 - - uid: 72 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,0.5 - parent: 4812 - - uid: 73 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-0.5 - parent: 4812 - - uid: 74 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-1.5 - parent: 4812 - - uid: 75 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-2.5 - parent: 4812 - - uid: 76 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-2.5 - parent: 4812 - - uid: 77 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,-2.5 - parent: 4812 - - uid: 78 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-2.5 - parent: 4812 - - uid: 79 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-2.5 - parent: 4812 - - uid: 80 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,2.5 - parent: 4812 - - uid: 81 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,2.5 - parent: 4812 - - uid: 82 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-0.5 - parent: 4812 - - uid: 83 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,0.5 - parent: 4812 - - uid: 84 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,1.5 - parent: 4812 - - uid: 85 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,1.5 - parent: 4812 - - uid: 86 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,1.5 - parent: 4812 - - uid: 87 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,1.5 - parent: 4812 - - uid: 88 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-2.5 - parent: 4812 - - uid: 89 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-3.5 - parent: 4812 - - uid: 90 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-4.5 - parent: 4812 - - uid: 91 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-4.5 - parent: 4812 - - uid: 92 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-4.5 - parent: 4812 - - uid: 93 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-4.5 - parent: 4812 - - uid: 94 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-4.5 - parent: 4812 - - uid: 95 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-4.5 - parent: 4812 - - uid: 96 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-7.5 - parent: 4812 - - uid: 97 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-7.5 - parent: 4812 - - uid: 98 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-7.5 - parent: 4812 - - uid: 99 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-8.5 - parent: 4812 - - uid: 100 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-8.5 - parent: 4812 - - uid: 101 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-8.5 - parent: 4812 - - uid: 102 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-8.5 - parent: 4812 - - uid: 103 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-8.5 - parent: 4812 - - uid: 104 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-7.5 - parent: 4812 - - uid: 105 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-5.5 - parent: 4812 - - uid: 139 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-10.5 - parent: 4812 - - uid: 140 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-10.5 - parent: 4812 - - uid: 141 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-10.5 - parent: 4812 - - uid: 142 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-10.5 - parent: 4812 - - uid: 143 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-10.5 - parent: 4812 - - uid: 145 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-10.5 - parent: 4812 - - uid: 146 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-10.5 - parent: 4812 - - uid: 147 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-9.5 - parent: 4812 - - uid: 148 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-8.5 - parent: 4812 - - uid: 149 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-7.5 - parent: 4812 - - uid: 150 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-6.5 - parent: 4812 - - uid: 151 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-5.5 - parent: 4812 - - uid: 152 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-4.5 - parent: 4812 - - uid: 153 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-3.5 - parent: 4812 - - uid: 154 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-2.5 - parent: 4812 - - uid: 155 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-1.5 - parent: 4812 - - uid: 156 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-0.5 - parent: 4812 - - uid: 157 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,0.5 - parent: 4812 - - uid: 158 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,1.5 - parent: 4812 - - uid: 159 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,2.5 - parent: 4812 - - uid: 161 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,4.5 - parent: 4812 - - uid: 162 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,5.5 - parent: 4812 - - uid: 163 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,6.5 - parent: 4812 - - uid: 164 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,7.5 - parent: 4812 - - uid: 165 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,8.5 - parent: 4812 - - uid: 166 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,9.5 - parent: 4812 - - uid: 167 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,10.5 - parent: 4812 - - uid: 168 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,11.5 - parent: 4812 - - uid: 169 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,12.5 - parent: 4812 - - uid: 177 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,13.5 - parent: 4812 - - uid: 180 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,15.5 - parent: 4812 - - uid: 181 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,18.5 - parent: 4812 - - uid: 182 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,17.5 - parent: 4812 - - uid: 183 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,18.5 - parent: 4812 - - uid: 185 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,18.5 - parent: 4812 - - uid: 186 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,12.5 - parent: 4812 - - uid: 189 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,7.5 - parent: 4812 - - uid: 190 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,6.5 - parent: 4812 - - uid: 191 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,6.5 - parent: 4812 - - uid: 192 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,6.5 - parent: 4812 - - uid: 193 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,6.5 - parent: 4812 - - uid: 194 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,5.5 - parent: 4812 - - uid: 195 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-1.5 - parent: 4812 - - uid: 196 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-2.5 - parent: 4812 - - uid: 197 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-2.5 - parent: 4812 - - uid: 198 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-3.5 - parent: 4812 - - uid: 199 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-5.5 - parent: 4812 - - uid: 200 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-6.5 - parent: 4812 - - uid: 201 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-5.5 - parent: 4812 - - uid: 202 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-7.5 - parent: 4812 - - uid: 203 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-8.5 - parent: 4812 - - uid: 204 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-9.5 - parent: 4812 - - uid: 205 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-10.5 - parent: 4812 - - uid: 206 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-10.5 - parent: 4812 - - uid: 207 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-10.5 - parent: 4812 - - uid: 208 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-10.5 - parent: 4812 - - uid: 209 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-10.5 - parent: 4812 - - uid: 210 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-10.5 - parent: 4812 - - uid: 211 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-10.5 - parent: 4812 - - uid: 212 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-10.5 - parent: 4812 - - uid: 213 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-10.5 - parent: 4812 - - uid: 214 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-10.5 - parent: 4812 - - uid: 225 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-9.5 - parent: 4812 - - uid: 226 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-8.5 - parent: 4812 - - uid: 227 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-7.5 - parent: 4812 - - uid: 228 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-6.5 - parent: 4812 - - uid: 229 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-5.5 - parent: 4812 - - uid: 230 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-5.5 - parent: 4812 - - uid: 231 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-5.5 - parent: 4812 - - uid: 232 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-4.5 - parent: 4812 - - uid: 233 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,-4.5 - parent: 4812 - - uid: 234 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -9.5,-4.5 - parent: 4812 - - uid: 235 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-4.5 - parent: 4812 - - uid: 236 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-4.5 - parent: 4812 - - uid: 237 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-4.5 - parent: 4812 - - uid: 238 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-4.5 - parent: 4812 - - uid: 239 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-4.5 - parent: 4812 - - uid: 240 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-4.5 - parent: 4812 - - uid: 241 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-4.5 - parent: 4812 - - uid: 242 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-4.5 - parent: 4812 - - uid: 243 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-4.5 - parent: 4812 - - uid: 244 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-2.5 - parent: 4812 - - uid: 245 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-2.5 - parent: 4812 - - uid: 246 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-2.5 - parent: 4812 - - uid: 247 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-2.5 - parent: 4812 - - uid: 248 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-2.5 - parent: 4812 - - uid: 249 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-2.5 - parent: 4812 - - uid: 250 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-2.5 - parent: 4812 - - uid: 262 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,6.5 - parent: 4812 - - uid: 263 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,6.5 - parent: 4812 - - uid: 264 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,6.5 - parent: 4812 - - uid: 265 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,6.5 - parent: 4812 - - uid: 266 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,6.5 - parent: 4812 - - uid: 267 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,6.5 - parent: 4812 - - uid: 268 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,6.5 - parent: 4812 - - uid: 269 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,6.5 - parent: 4812 - - uid: 270 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,3.5 - parent: 4812 - - uid: 271 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,4.5 - parent: 4812 - - uid: 272 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,5.5 - parent: 4812 - - uid: 273 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,3.5 - parent: 4812 - - uid: 274 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,3.5 - parent: 4812 - - uid: 275 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,4.5 - parent: 4812 - - uid: 276 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,5.5 - parent: 4812 - - uid: 279 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-1.5 - parent: 4812 - - uid: 280 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-0.5 - parent: 4812 - - uid: 281 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,0.5 - parent: 4812 - - uid: 282 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,0.5 - parent: 4812 - - uid: 283 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-1.5 - parent: 4812 - - uid: 284 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-0.5 - parent: 4812 - - uid: 285 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,0.5 - parent: 4812 - - uid: 286 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,7.5 - parent: 4812 - - uid: 287 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,8.5 - parent: 4812 - - uid: 288 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,9.5 - parent: 4812 - - uid: 289 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,11.5 - parent: 4812 - - uid: 290 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,12.5 - parent: 4812 - - uid: 291 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,13.5 - parent: 4812 - - uid: 292 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,13.5 - parent: 4812 - - uid: 293 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,13.5 - parent: 4812 - - uid: 294 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,13.5 - parent: 4812 - - uid: 295 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,13.5 - parent: 4812 - - uid: 296 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,13.5 - parent: 4812 - - uid: 318 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,4.5 - parent: 4812 - - uid: 429 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,9.5 - parent: 4812 - - uid: 898 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,7.5 - parent: 4812 - - uid: 899 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,8.5 - parent: 4812 - - uid: 900 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,9.5 - parent: 4812 - - uid: 1253 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,1.5 - parent: 4812 - - uid: 1917 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,29.5 - parent: 4812 - - uid: 1918 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,27.5 - parent: 4812 - - uid: 1919 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,27.5 - parent: 4812 - - uid: 1978 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,26.5 - parent: 4812 - - uid: 1979 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,26.5 - parent: 4812 - - uid: 1980 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,25.5 - parent: 4812 - - uid: 1981 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,27.5 - parent: 4812 - - uid: 1982 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,29.5 - parent: 4812 - - uid: 2738 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,21.5 - parent: 4812 - - uid: 2739 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,22.5 - parent: 4812 - - uid: 2740 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,23.5 - parent: 4812 - - uid: 2742 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,25.5 - parent: 4812 - - uid: 2743 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,26.5 - parent: 4812 - - uid: 2744 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,27.5 - parent: 4812 - - uid: 2745 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,28.5 - parent: 4812 - - uid: 2788 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,16.5 - parent: 4812 - - uid: 2789 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,18.5 - parent: 4812 - - uid: 2790 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,16.5 - parent: 4812 - - uid: 2791 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,16.5 - parent: 4812 - - uid: 2792 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,12.5 - parent: 4812 - - uid: 2793 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,12.5 - parent: 4812 - - uid: 2794 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,12.5 - parent: 4812 - - uid: 2795 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,12.5 - parent: 4812 - - uid: 2796 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,12.5 - parent: 4812 - - uid: 2797 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,12.5 - parent: 4812 - - uid: 2798 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,12.5 - parent: 4812 - - uid: 2799 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,12.5 - parent: 4812 - - uid: 2800 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,12.5 - parent: 4812 - - uid: 2851 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,22.5 - parent: 4812 - - uid: 3348 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,11.5 - parent: 4812 - - uid: 3351 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,11.5 - parent: 4812 - - uid: 3354 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,9.5 - parent: 4812 - - uid: 3435 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,33.5 - parent: 4812 - - uid: 3462 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,34.5 - parent: 4812 - - uid: 3463 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,33.5 - parent: 4812 - - uid: 3474 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,44.5 - parent: 4812 - - uid: 3475 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,41.5 - parent: 4812 - - uid: 3476 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,40.5 - parent: 4812 - - uid: 3980 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,37.5 - parent: 4812 - - uid: 3981 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,33.5 - parent: 4812 - - uid: 3983 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,8.5 - parent: 4812 - - uid: 3984 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,6.5 - parent: 4812 - - uid: 3985 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,5.5 - parent: 4812 - - uid: 3986 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,9.5 - parent: 4812 - - uid: 3987 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,9.5 - parent: 4812 - - uid: 3988 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,9.5 - parent: 4812 - - uid: 3989 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,9.5 - parent: 4812 - - uid: 4006 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,5.5 - parent: 4812 - - uid: 4013 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,-31.5 - parent: 4812 - - uid: 4014 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -43.5,-31.5 - parent: 4812 - - uid: 4015 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,3.5 - parent: 4812 - - uid: 4016 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,1.5 - parent: 4812 - - uid: 4017 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,1.5 - parent: 4812 - - uid: 4018 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,0.5 - parent: 4812 - - uid: 4019 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,0.5 - parent: 4812 - - uid: 4020 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,0.5 - parent: 4812 - - uid: 4021 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,0.5 - parent: 4812 - - uid: 4022 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,1.5 - parent: 4812 - - uid: 4023 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,2.5 - parent: 4812 - - uid: 4024 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,3.5 - parent: 4812 - - uid: 4025 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,4.5 - parent: 4812 - - uid: 4026 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,5.5 - parent: 4812 - - uid: 4027 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,5.5 - parent: 4812 - - uid: 4028 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,5.5 - parent: 4812 - - uid: 4029 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,5.5 - parent: 4812 - - uid: 4030 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,6.5 - parent: 4812 - - uid: 4031 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,7.5 - parent: 4812 - - uid: 4032 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,8.5 - parent: 4812 - - uid: 4033 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,2.5 - parent: 4812 - - uid: 4034 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,1.5 - parent: 4812 - - uid: 4035 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,0.5 - parent: 4812 - - uid: 4036 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-0.5 - parent: 4812 - - uid: 4037 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-1.5 - parent: 4812 - - uid: 4038 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-0.5 - parent: 4812 - - uid: 4039 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-1.5 - parent: 4812 - - uid: 4040 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-1.5 - parent: 4812 - - uid: 4041 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-1.5 - parent: 4812 - - uid: 4042 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-1.5 - parent: 4812 - - uid: 4043 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,-1.5 - parent: 4812 - - uid: 4044 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,-1.5 - parent: 4812 - - uid: 4045 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-1.5 - parent: 4812 - - uid: 4046 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-1.5 - parent: 4812 - - uid: 4047 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-1.5 - parent: 4812 - - uid: 4049 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,0.5 - parent: 4812 - - uid: 4118 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-6.5 - parent: 4812 - - uid: 4119 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-5.5 - parent: 4812 - - uid: 4120 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,0.5 - parent: 4812 - - uid: 4121 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,1.5 - parent: 4812 - - uid: 4123 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-4.5 - parent: 4812 - - uid: 4124 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-4.5 - parent: 4812 - - uid: 4125 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-5.5 - parent: 4812 - - uid: 4126 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-5.5 - parent: 4812 - - uid: 4127 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-6.5 - parent: 4812 - - uid: 4128 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-5.5 - parent: 4812 - - uid: 4129 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-5.5 - parent: 4812 - - uid: 4130 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-4.5 - parent: 4812 - - uid: 4131 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 15.5,-4.5 - parent: 4812 - - uid: 4132 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-6.5 - parent: 4812 - - uid: 4133 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-10.5 - parent: 4812 - - uid: 4649 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-14.5 - parent: 4812 - - uid: 4650 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-14.5 - parent: 4812 - - uid: 4651 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-20.5 - parent: 4812 - - uid: 4652 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,-20.5 - parent: 4812 - - uid: 4653 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,-20.5 - parent: 4812 - - uid: 4654 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,-20.5 - parent: 4812 - - uid: 4655 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-20.5 - parent: 4812 - - uid: 4717 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,-26.5 - parent: 4812 - - uid: 4756 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,-28.5 - parent: 4812 - - uid: 4757 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,-29.5 - parent: 4812 - - uid: 4783 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-35.5 - parent: 4812 - - uid: 4784 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-34.5 - parent: 4812 - - uid: 4785 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-33.5 - parent: 4812 - - uid: 4786 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,-33.5 - parent: 4812 - - uid: 4787 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,-33.5 - parent: 4812 - - uid: 4788 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,-33.5 - parent: 4812 - - uid: 4793 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-33.5 - parent: 4812 - - uid: 4794 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-33.5 - parent: 4812 - - uid: 4795 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-36.5 - parent: 4812 - - uid: 4797 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,-29.5 - parent: 4812 - - uid: 4814 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-28.5 - parent: 4812 - - uid: 4916 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-24.5 - parent: 4812 - - uid: 4918 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-25.5 - parent: 4812 - - uid: 4919 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-26.5 - parent: 4812 - - uid: 4922 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-28.5 - parent: 4812 - - uid: 4937 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-29.5 - parent: 4812 - - uid: 5024 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-19.5 - parent: 4812 - - uid: 5050 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-25.5 - parent: 4812 - - uid: 5333 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-13.5 - parent: 4812 - - uid: 5334 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-14.5 - parent: 4812 - - uid: 5335 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,-13.5 - parent: 4812 - - uid: 5338 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,-19.5 - parent: 4812 - - uid: 5339 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-19.5 - parent: 4812 - - uid: 5340 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-18.5 - parent: 4812 - - uid: 5341 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-16.5 - parent: 4812 - - uid: 5342 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-15.5 - parent: 4812 - - uid: 5390 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-13.5 - parent: 4812 - - uid: 5425 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-19.5 - parent: 4812 - - uid: 5426 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-19.5 - parent: 4812 - - uid: 5427 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-19.5 - parent: 4812 - - uid: 5430 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-14.5 - parent: 4812 - - uid: 5457 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-27.5 - parent: 4812 - - uid: 5465 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-22.5 - parent: 4812 - - uid: 5466 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-22.5 - parent: 4812 - - uid: 5467 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-22.5 - parent: 4812 - - uid: 5468 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-27.5 - parent: 4812 - - uid: 5562 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-23.5 - parent: 4812 - - uid: 5563 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-27.5 - parent: 4812 - - uid: 5567 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-28.5 - parent: 4812 - - uid: 5619 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-16.5 - parent: 4812 - - uid: 5620 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,-18.5 - parent: 4812 - - uid: 5836 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-32.5 - parent: 4812 - - uid: 5837 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,-31.5 - parent: 4812 - - uid: 6498 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-12.5 - parent: 4812 - - uid: 6501 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-13.5 - parent: 4812 - - uid: 6502 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-13.5 - parent: 4812 - - uid: 6503 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-13.5 - parent: 4812 - - uid: 6504 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-13.5 - parent: 4812 - - uid: 6505 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-14.5 - parent: 4812 - - uid: 6506 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-15.5 - parent: 4812 - - uid: 6507 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-16.5 - parent: 4812 - - uid: 6508 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-17.5 - parent: 4812 - - uid: 6509 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-18.5 - parent: 4812 - - uid: 6510 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-19.5 - parent: 4812 - - uid: 6511 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-20.5 - parent: 4812 - - uid: 6512 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-21.5 - parent: 4812 - - uid: 6513 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-21.5 - parent: 4812 - - uid: 6514 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-21.5 - parent: 4812 - - uid: 6515 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-21.5 - parent: 4812 - - uid: 6516 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-21.5 - parent: 4812 - - uid: 6517 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-21.5 - parent: 4812 - - uid: 6518 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-21.5 - parent: 4812 - - uid: 6520 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-21.5 - parent: 4812 - - uid: 6521 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-20.5 - parent: 4812 - - uid: 6522 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-20.5 - parent: 4812 - - uid: 6523 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-22.5 - parent: 4812 - - uid: 6524 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-23.5 - parent: 4812 - - uid: 6525 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-24.5 - parent: 4812 - - uid: 6526 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-24.5 - parent: 4812 - - uid: 6527 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-24.5 - parent: 4812 - - uid: 6528 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-24.5 - parent: 4812 - - uid: 6529 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-24.5 - parent: 4812 - - uid: 6530 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-23.5 - parent: 4812 - - uid: 6531 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-22.5 - parent: 4812 - - uid: 6532 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-21.5 - parent: 4812 - - uid: 6533 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-20.5 - parent: 4812 - - uid: 6534 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-19.5 - parent: 4812 - - uid: 6535 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-18.5 - parent: 4812 - - uid: 6536 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-17.5 - parent: 4812 - - uid: 6537 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-16.5 - parent: 4812 - - uid: 6538 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-15.5 - parent: 4812 - - uid: 6539 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-14.5 - parent: 4812 - - uid: 6540 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-13.5 - parent: 4812 - - uid: 6541 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-13.5 - parent: 4812 - - uid: 6542 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-13.5 - parent: 4812 - - uid: 6543 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -30.5,-13.5 - parent: 4812 - - uid: 6544 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-13.5 - parent: 4812 - - uid: 6545 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-20.5 - parent: 4812 - - uid: 6549 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-13.5 - parent: 4812 - - uid: 6654 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-24.5 - parent: 4812 - - uid: 6683 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-24.5 - parent: 4812 - - uid: 6711 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-37.5 - parent: 4812 - - uid: 6712 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-37.5 - parent: 4812 - - uid: 6713 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-38.5 - parent: 4812 - - uid: 6714 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-39.5 - parent: 4812 - - uid: 6715 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-38.5 - parent: 4812 - - uid: 6716 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-38.5 - parent: 4812 - - uid: 6717 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-38.5 - parent: 4812 - - uid: 6718 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-38.5 - parent: 4812 - - uid: 6719 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-37.5 - parent: 4812 - - uid: 6720 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-36.5 - parent: 4812 - - uid: 6721 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-35.5 - parent: 4812 - - uid: 6722 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-34.5 - parent: 4812 - - uid: 6723 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-35.5 - parent: 4812 - - uid: 6724 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-34.5 - parent: 4812 - - uid: 6725 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-33.5 - parent: 4812 - - uid: 6726 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-32.5 - parent: 4812 - - uid: 6727 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-34.5 - parent: 4812 - - uid: 6728 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-34.5 - parent: 4812 - - uid: 6729 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -24.5,-33.5 - parent: 4812 - - uid: 6730 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-34.5 - parent: 4812 - - uid: 6731 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-34.5 - parent: 4812 - - uid: 6732 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-33.5 - parent: 4812 - - uid: 6733 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-32.5 - parent: 4812 - - uid: 6734 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-31.5 - parent: 4812 - - uid: 6739 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-32.5 - parent: 4812 - - uid: 6740 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-33.5 - parent: 4812 - - uid: 6741 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-33.5 - parent: 4812 - - uid: 6742 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-32.5 - parent: 4812 - - uid: 6743 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-31.5 - parent: 4812 - - uid: 6744 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-31.5 - parent: 4812 - - uid: 6745 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-31.5 - parent: 4812 - - uid: 6746 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-31.5 - parent: 4812 - - uid: 6747 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-32.5 - parent: 4812 - - uid: 6748 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-31.5 - parent: 4812 - - uid: 6749 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-31.5 - parent: 4812 - - uid: 6750 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-31.5 - parent: 4812 - - uid: 6751 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-31.5 - parent: 4812 - - uid: 6752 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-31.5 - parent: 4812 - - uid: 6753 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-31.5 - parent: 4812 - - uid: 6766 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -12.5,-29.5 - parent: 4812 - - uid: 6767 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-29.5 - parent: 4812 - - uid: 6768 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-29.5 - parent: 4812 - - uid: 6769 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-29.5 - parent: 4812 - - uid: 6770 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-29.5 - parent: 4812 - - uid: 6771 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-29.5 - parent: 4812 - - uid: 6772 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-29.5 - parent: 4812 - - uid: 6773 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-29.5 - parent: 4812 - - uid: 6774 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-29.5 - parent: 4812 - - uid: 6775 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-29.5 - parent: 4812 - - uid: 6776 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -22.5,-29.5 - parent: 4812 - - uid: 6789 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,-22.5 - parent: 4812 - - uid: 7060 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,-19.5 - parent: 4812 - - uid: 7063 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-15.5 - parent: 4812 - - uid: 7184 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-23.5 - parent: 4812 - - uid: 7185 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-24.5 - parent: 4812 - - uid: 7187 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,-31.5 - parent: 4812 - - uid: 7194 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -23.5,-27.5 - parent: 4812 - - uid: 7195 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -7.5,-28.5 - parent: 4812 - - uid: 7212 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-24.5 - parent: 4812 - - uid: 7213 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-24.5 - parent: 4812 - - uid: 7215 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-25.5 - parent: 4812 - - uid: 7217 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-27.5 - parent: 4812 - - uid: 7218 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-28.5 - parent: 4812 - - uid: 7235 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -18.5,-19.5 - parent: 4812 - - uid: 7246 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-18.5 - parent: 4812 - - uid: 7314 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-25.5 - parent: 4812 - - uid: 7315 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -44.5,-25.5 - parent: 4812 - - uid: 7317 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-29.5 - parent: 4812 - - uid: 7318 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-31.5 - parent: 4812 - - uid: 7319 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -17.5,-14.5 - parent: 4812 - - uid: 7320 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -16.5,-14.5 - parent: 4812 - - uid: 7321 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-14.5 - parent: 4812 - - uid: 7322 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,-14.5 - parent: 4812 - - uid: 7727 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,18.5 - parent: 4812 - - uid: 7728 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,18.5 - parent: 4812 - - uid: 7729 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -27.5,18.5 - parent: 4812 - - uid: 7953 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,7.5 - parent: 4812 - - uid: 8162 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,26.5 - parent: 4812 - - uid: 8163 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,26.5 - parent: 4812 - - uid: 8164 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -20.5,28.5 - parent: 4812 - - uid: 8456 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,37.5 - parent: 4812 - - uid: 8457 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -26.5,37.5 - parent: 4812 - - uid: 8833 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-37.5 - parent: 4812 - - uid: 8834 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-34.5 - parent: 4812 - - uid: 8835 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-34.5 - parent: 4812 - - uid: 8837 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-32.5 - parent: 4812 - - uid: 8840 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-40.5 - parent: 4812 - - uid: 8852 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-28.5 - parent: 4812 - - uid: 8854 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-26.5 - parent: 4812 - - uid: 8855 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-26.5 - parent: 4812 - - uid: 8856 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-26.5 - parent: 4812 - - uid: 8857 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-26.5 - parent: 4812 - - uid: 8903 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-26.5 - parent: 4812 - - uid: 8904 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-27.5 - parent: 4812 - - uid: 8905 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-25.5 - parent: 4812 - - uid: 8907 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-23.5 - parent: 4812 - - uid: 9968 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-29.5 - parent: 4812 - - uid: 9969 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-30.5 - parent: 4812 - - uid: 9970 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-30.5 - parent: 4812 - - uid: 9973 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-30.5 - parent: 4812 - - uid: 9985 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-22.5 - parent: 4812 - - uid: 9986 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-21.5 - parent: 4812 - - uid: 9987 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-25.5 - parent: 4812 - - uid: 9988 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-24.5 - parent: 4812 - - uid: 9989 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-23.5 - parent: 4812 - - uid: 9994 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -38.5,-21.5 - parent: 4812 - - uid: 10153 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -54.5,-23.5 - parent: 4812 - - uid: 10155 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -49.5,-23.5 - parent: 4812 - - uid: 10156 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -50.5,-23.5 - parent: 4812 - - uid: 10224 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-22.5 - parent: 4812 - - uid: 10404 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -47.5,-28.5 - parent: 4812 - - uid: 10613 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-24.5 - parent: 4812 - - uid: 10614 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-23.5 - parent: 4812 - - uid: 11049 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-39.5 - parent: 4812 - - uid: 11050 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-39.5 - parent: 4812 - - uid: 11051 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-39.5 - parent: 4812 - - uid: 11052 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-39.5 - parent: 4812 - - uid: 11053 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-35.5 - parent: 4812 - - uid: 11054 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-35.5 - parent: 4812 - - uid: 11055 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-35.5 - parent: 4812 - - uid: 11056 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-35.5 - parent: 4812 - - uid: 11057 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-31.5 - parent: 4812 - - uid: 11058 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-31.5 - parent: 4812 - - uid: 11059 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 5.5,-31.5 - parent: 4812 - - uid: 11060 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-31.5 - parent: 4812 - - uid: 11061 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-35.5 - parent: 4812 - - uid: 11062 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-35.5 - parent: 4812 - - uid: 11063 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,-35.5 - parent: 4812 - - uid: 11064 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-35.5 - parent: 4812 - - uid: 11066 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 10.5,-39.5 - parent: 4812 - - uid: 11067 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 11.5,-39.5 - parent: 4812 - - uid: 11068 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 12.5,-39.5 - parent: 4812 - - uid: 11069 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-39.5 - parent: 4812 - - uid: 11070 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 14.5,-39.5 - parent: 4812 - - uid: 11121 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-35.5 - parent: 4812 - - uid: 11122 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 36.5,-35.5 - parent: 4812 - - uid: 11123 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-35.5 - parent: 4812 - - uid: 11124 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-35.5 - parent: 4812 - - uid: 11266 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-36.5 - parent: 4812 - - uid: 11267 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-35.5 - parent: 4812 - - uid: 11268 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,-35.5 - parent: 4812 - - uid: 11269 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,-35.5 - parent: 4812 - - uid: 11270 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,-35.5 - parent: 4812 - - uid: 11271 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 18.5,-35.5 - parent: 4812 - - uid: 11272 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 17.5,-35.5 - parent: 4812 - - uid: 11273 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 16.5,-35.5 - parent: 4812 - - uid: 11302 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 27.5,-34.5 - parent: 4812 - - uid: 11303 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 26.5,-34.5 - parent: 4812 - - uid: 11304 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,-34.5 - parent: 4812 - - uid: 11305 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 24.5,-34.5 - parent: 4812 - - uid: 11348 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-33.5 - parent: 4812 - - uid: 11349 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-32.5 - parent: 4812 - - uid: 11366 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-38.5 - parent: 4812 - - uid: 11367 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,-37.5 - parent: 4812 - - uid: 11368 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 33.5,-35.5 - parent: 4812 - - uid: 11369 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 32.5,-35.5 - parent: 4812 - - uid: 11370 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-36.5 - parent: 4812 - - uid: 11383 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,-35.5 - parent: 4812 - - uid: 11384 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-35.5 - parent: 4812 - - uid: 11385 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 34.5,-37.5 - parent: 4812 - - uid: 11389 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 30.5,-37.5 - parent: 4812 - - uid: 11475 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 4812 - - uid: 11646 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 4812 - - uid: 11706 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 37.5,-42.5 - parent: 4812 - - uid: 11794 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -15.5,1.5 - parent: 4812 - - uid: 11795 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,1.5 - parent: 4812 - - uid: 11796 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,1.5 - parent: 4812 - - uid: 11797 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,0.5 - parent: 4812 - - uid: 11798 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-0.5 - parent: 4812 - - uid: 11799 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-1.5 - parent: 4812 - - uid: 11800 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,-2.5 - parent: 4812 - - uid: 11801 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -14.5,-2.5 - parent: 4812 - - uid: 11848 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -13.5,12.5 - parent: 4812 -- proto: WallSolidRust - entities: - - uid: 7302 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-29.5 - parent: 4812 - - uid: 7305 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -41.5,-26.5 - parent: 4812 - - uid: 7312 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-25.5 - parent: 4812 - - uid: 7313 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -42.5,-30.5 - parent: 4812 - - uid: 7316 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -45.5,-25.5 - parent: 4812 - - uid: 7335 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -25.5,-31.5 - parent: 4812 - - uid: 7350 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -29.5,-33.5 - parent: 4812 - - uid: 7351 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -28.5,-32.5 - parent: 4812 - - uid: 7353 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -33.5,-30.5 - parent: 4812 - - uid: 7354 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -32.5,-30.5 - parent: 4812 - - uid: 7355 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-29.5 - parent: 4812 - - uid: 7356 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -31.5,-27.5 - parent: 4812 - - uid: 7357 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-30.5 - parent: 4812 - - uid: 7358 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-28.5 - parent: 4812 - - uid: 7359 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -39.5,-24.5 - parent: 4812 - - uid: 7360 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-30.5 - parent: 4812 - - uid: 7361 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,-30.5 - parent: 4812 - - uid: 7362 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -35.5,-22.5 - parent: 4812 - - uid: 7363 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -36.5,-21.5 - parent: 4812 - - uid: 7364 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -37.5,-21.5 - parent: 4812 - - uid: 7365 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -34.5,-13.5 - parent: 4812 -- proto: WardrobeBlackFilled - entities: - - uid: 11351 - components: - - type: Transform - pos: 35.5,-32.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: WardrobeFormal - entities: - - uid: 10921 - components: - - type: Transform - pos: -41.5,-24.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: - - 10924 - - 10923 - - 10922 - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: WardrobeMixedFilled - entities: - - uid: 10852 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WardrobePrisonFilled - entities: - - uid: 8354 - components: - - type: Transform - pos: -26.5,20.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8355 - components: - - type: Transform - pos: -26.5,17.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8383 - components: - - type: Transform - pos: -29.5,26.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8384 - components: - - type: Transform - pos: -25.5,26.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: WardrobeYellowFilled - entities: - - uid: 12169 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: WarningCO2 - entities: - - uid: 9280 - components: - - type: Transform - pos: -50.5,6.5 - parent: 4812 -- proto: WarningN2 - entities: - - uid: 9278 - components: - - type: Transform - pos: -50.5,2.5 - parent: 4812 -- proto: WarningO2 - entities: - - uid: 9279 - components: - - type: Transform - pos: -50.5,4.5 - parent: 4812 -- proto: WarningPlasma - entities: - - uid: 9282 - components: - - type: Transform - pos: -50.5,10.5 - parent: 4812 -- proto: WarningTritium - entities: - - uid: 9283 - components: - - type: Transform - pos: -50.5,12.5 - parent: 4812 -- proto: WarningWaste - entities: - - uid: 9281 - components: - - type: Transform - pos: -50.5,8.5 - parent: 4812 -- proto: WarpPoint - entities: - - uid: 12485 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 4812 - - type: WarpPoint - location: sci -- proto: WaterCooler - entities: - - uid: 2673 - components: - - type: Transform - pos: 0.5,31.5 - parent: 4812 - - uid: 3245 - components: - - type: Transform - pos: 14.5,13.5 - parent: 4812 - - uid: 8433 - components: - - type: Transform - pos: -39.5,10.5 - parent: 4812 - - uid: 10759 - components: - - type: Transform - pos: -38.5,-5.5 - parent: 4812 -- proto: WaterTankFull - entities: - - uid: 1484 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 4812 - - uid: 3358 - components: - - type: Transform - pos: 13.5,30.5 - parent: 4812 - - uid: 6241 - components: - - type: Transform - pos: -11.5,15.5 - parent: 4812 - - uid: 8409 - components: - - type: Transform - pos: -32.5,32.5 - parent: 4812 - - uid: 8576 - components: - - type: Transform - pos: -16.5,12.5 - parent: 4812 - - uid: 9069 - components: - - type: Transform - pos: -28.5,-31.5 - parent: 4812 - - uid: 9818 - components: - - type: Transform - pos: -38.5,-3.5 - parent: 4812 - - uid: 10702 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 4812 - - uid: 11883 - components: - - type: Transform - pos: 7.5,12.5 - parent: 4812 - - uid: 11927 - components: - - type: Transform - pos: -42.5,-21.5 - parent: 4812 -- proto: WaterTankHighCapacity - entities: - - uid: 1093 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 4812 - - uid: 3678 - components: - - type: Transform - pos: 4.5,51.5 - parent: 4812 -- proto: WaterVaporCanister - entities: - - uid: 9455 - components: - - type: Transform - pos: -53.5,7.5 - parent: 4812 - - type: AtmosDevice - joinedGrid: 4812 -- proto: WeaponCapacitorRecharger - entities: - - uid: 2515 - components: - - type: Transform - pos: 9.5,26.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 2608 - components: - - type: Transform - pos: -10.5,25.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 4572 - components: - - type: Transform - pos: 27.5,3.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 6306 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 6483 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 8266 - components: - - type: Transform - pos: -20.5,22.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 8345 - components: - - type: Transform - pos: -31.5,12.5 - parent: 4812 - - type: Physics - canCollide: False - - uid: 8346 - components: - - type: Transform - pos: -31.5,14.5 - parent: 4812 - - type: Physics - canCollide: False -- proto: WeaponDisabler - entities: - - uid: 3738 - components: - - type: Transform - pos: -39.515656,11.630442 - parent: 4812 - - uid: 3753 - components: - - type: Transform - pos: -39.609406,11.771067 - parent: 4812 - - uid: 3754 - components: - - type: Transform - pos: -33.40336,20.459352 - parent: 4812 - - uid: 3759 - components: - - type: Transform - pos: -33.40336,20.459352 - parent: 4812 -- proto: WeaponLaserCarbine - entities: - - uid: 12470 - components: - - type: Transform - pos: -33.4461,20.270079 - parent: 4812 - - uid: 12471 - components: - - type: Transform - pos: -33.4461,20.218811 - parent: 4812 -- proto: WeaponShotgunKammerer - entities: - - uid: 12052 - components: - - type: Transform - pos: -35.535385,19.569157 - parent: 4812 - - type: BallisticAmmoProvider - unspawnedCount: 4 - - uid: 12053 - components: - - type: Transform - pos: -35.410385,19.412907 - parent: 4812 - - type: BallisticAmmoProvider - unspawnedCount: 4 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 12268 - components: - - type: Transform - pos: 7.5,49.5 - parent: 4812 - - uid: 12269 - components: - - type: Transform - pos: 13.5,49.5 - parent: 4812 - - uid: 12270 - components: - - type: Transform - pos: 13.5,55.5 - parent: 4812 - - uid: 12271 - components: - - type: Transform - pos: 7.5,55.5 - parent: 4812 -- proto: WeedSpray - entities: - - uid: 1476 - components: - - type: Transform - pos: -8.252506,-7.3833528 - parent: 4812 -- proto: Welder - entities: - - uid: 8592 - components: - - type: Transform - pos: -20.391129,12.56624 - parent: 4812 -- proto: WelderIndustrial - entities: - - uid: 10715 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 4812 -- proto: WelderIndustrialAdvanced - entities: - - uid: 3453 - components: - - type: Transform - pos: 35.616592,-30.437298 - parent: 4812 - - uid: 10724 - components: - - type: Transform - pos: -36.35727,8.431009 - parent: 4812 -- proto: WelderMini - entities: - - uid: 6239 - components: - - type: Transform - pos: 15.765093,-23.454037 - parent: 4812 - - uid: 11470 - components: - - type: Transform - pos: 28.545038,-35.383316 - parent: 4812 -- proto: WeldingFuelTankFull - entities: - - uid: 3261 - components: - - type: Transform - pos: 26.5,13.5 - parent: 4812 - - uid: 6214 - components: - - type: Transform - pos: 6.5,-23.5 - parent: 4812 - - uid: 8575 - components: - - type: Transform - pos: -17.5,12.5 - parent: 4812 - - uid: 9070 - components: - - type: Transform - pos: -24.5,-32.5 - parent: 4812 - - uid: 9682 - components: - - type: Transform - pos: -36.5,5.5 - parent: 4812 - - uid: 10701 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 4812 - - uid: 11463 - components: - - type: Transform - pos: 28.5,-36.5 - parent: 4812 - - uid: 11852 - components: - - type: Transform - pos: 8.5,12.5 - parent: 4812 -- proto: WheatBushel - entities: - - uid: 11294 - components: - - type: Transform - pos: 18.50683,-38.558407 - parent: 4812 -- proto: WheatSeeds - entities: - - uid: 1521 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 4812 -- proto: Windoor - entities: - - uid: 2230 - components: - - type: Transform - pos: 9.5,23.5 - parent: 4812 - - uid: 4451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 4812 - - uid: 4452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,8.5 - parent: 4812 - - uid: 4453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 4812 - - uid: 7134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-18.5 - parent: 4812 - - uid: 7805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,15.5 - parent: 4812 - - uid: 9071 - components: - - type: Transform - pos: -24.5,-31.5 - parent: 4812 - - uid: 10523 - components: - - type: Transform - pos: -38.5,-25.5 - parent: 4812 -- proto: WindoorBarLocked - entities: - - uid: 319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 4812 -- proto: WindoorCargoLocked - entities: - - uid: 12255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,20.5 - parent: 4812 -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 4812 - - uid: 935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 4812 -- proto: WindoorSecure - entities: - - uid: 11101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-41.5 - parent: 4812 - - uid: 11102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-41.5 - parent: 4812 - - uid: 11103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-37.5 - parent: 4812 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 7804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,15.5 - parent: 4812 -- proto: WindoorSecureAtmosphericsLocked - entities: - - uid: 7369 - components: - - type: Transform - pos: -32.5,1.5 - parent: 4812 - - uid: 8688 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,0.5 - parent: 4812 -- proto: WindoorSecureCargoLocked - entities: - - uid: 2855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 4812 - - uid: 4433 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 4812 -- proto: WindoorSecureChemistryLocked - entities: - - uid: 6582 - components: - - type: Transform - pos: -9.5,-13.5 - parent: 4812 - - uid: 6583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-19.5 - parent: 4812 -- proto: WindoorSecureCommandLocked - entities: - - uid: 3702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,53.5 - parent: 4812 - - uid: 3703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,53.5 - parent: 4812 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 8689 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 4812 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 1926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,23.5 - parent: 4812 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 8807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-24.5 - parent: 4812 - - uid: 8808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-24.5 - parent: 4812 - - uid: 8810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 4812 - - uid: 8832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 4812 -- proto: WindoorSecureSalvageLocked - entities: - - uid: 12248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 4812 -- proto: WindoorSecureScienceLocked - entities: - - uid: 5788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 4812 - - uid: 5789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 4812 - - uid: 5790 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 4812 -- proto: WindoorSecureSecurityLocked - entities: - - uid: 4434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,1.5 - parent: 4812 - - uid: 5307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 4812 - - uid: 7779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,11.5 - parent: 4812 - - uid: 7780 - components: - - type: Transform - pos: -25.5,12.5 - parent: 4812 - - uid: 7781 - components: - - type: Transform - pos: -26.5,12.5 - parent: 4812 - - uid: 7785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,16.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 4811 - - uid: 7786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,19.5 - parent: 4812 - - type: DeviceLinkSink - links: - - 4810 -- proto: WindoorTheatreLocked - entities: - - uid: 896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 4812 -- proto: Window - entities: - - uid: 187 - components: - - type: Transform - pos: -21.5,8.5 - parent: 4812 - - uid: 188 - components: - - type: Transform - pos: -21.5,11.5 - parent: 4812 - - uid: 221 - components: - - type: Transform - pos: -24.5,-0.5 - parent: 4812 - - uid: 222 - components: - - type: Transform - pos: -24.5,0.5 - parent: 4812 - - uid: 223 - components: - - type: Transform - pos: -24.5,3.5 - parent: 4812 - - uid: 224 - components: - - type: Transform - pos: -24.5,4.5 - parent: 4812 - - uid: 4656 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 4812 - - uid: 4657 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 4812 - - uid: 4658 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 4812 - - uid: 5761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 4812 - - uid: 5762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-24.5 - parent: 4812 - - uid: 6669 - components: - - type: Transform - pos: -26.5,-13.5 - parent: 4812 - - uid: 6670 - components: - - type: Transform - pos: -23.5,-13.5 - parent: 4812 - - uid: 7431 - components: - - type: Transform - pos: -23.5,-22.5 - parent: 4812 - - uid: 8859 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 4812 -- proto: WindowDirectional - entities: - - uid: 890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 4812 - - uid: 891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 4812 - - uid: 892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 4812 - - uid: 893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 4812 - - uid: 894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,8.5 - parent: 4812 - - uid: 895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 4812 - - uid: 4449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 4812 - - uid: 4450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 4812 - - uid: 7135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 4812 -- proto: WindowFrostedDirectional - entities: - - uid: 6708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-39.5 - parent: 4812 - - uid: 6709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 4812 - - uid: 8455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 4812 -- proto: WindowReinforcedDirectional - entities: - - uid: 2477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 4812 - - uid: 2478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,21.5 - parent: 4812 - - uid: 2479 - components: - - type: Transform - pos: 8.5,21.5 - parent: 4812 - - uid: 2480 - components: - - type: Transform - pos: 7.5,21.5 - parent: 4812 - - uid: 2481 - components: - - type: Transform - pos: 6.5,21.5 - parent: 4812 - - uid: 2482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 4812 - - uid: 2483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 4812 - - uid: 2484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 4812 - - uid: 4675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-45.5 - parent: 4812 - - uid: 4676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 4812 - - uid: 4705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-47.5 - parent: 4812 - - uid: 4706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 4812 - - uid: 4738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 4812 - - uid: 4739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 4812 - - uid: 4754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-46.5 - parent: 4812 - - uid: 4755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-45.5 - parent: 4812 - - uid: 4878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 4812 - - uid: 4879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-47.5 - parent: 4812 - - uid: 4880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 4812 - - uid: 4881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-45.5 - parent: 4812 - - uid: 4882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 4812 - - uid: 4883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 4812 - - uid: 4884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-46.5 - parent: 4812 - - uid: 4885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-45.5 - parent: 4812 - - uid: 6230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-28.5 - parent: 4812 - - uid: 6231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-27.5 - parent: 4812 - - uid: 6317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 4812 - - uid: 6321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 4812 - - uid: 6329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 4812 - - uid: 6330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 4812 - - uid: 8283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,14.5 - parent: 4812 - - uid: 8284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 4812 - - uid: 8285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,16.5 - parent: 4812 - - uid: 8286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,17.5 - parent: 4812 - - uid: 8287 - components: - - type: Transform - pos: -18.5,16.5 - parent: 4812 - - uid: 9880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-13.5 - parent: 4812 - - uid: 9881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-13.5 - parent: 4812 - - uid: 9882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-11.5 - parent: 4812 - - uid: 9883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-11.5 - parent: 4812 - - uid: 9884 - components: - - type: Transform - pos: -51.5,-11.5 - parent: 4812 - - uid: 9885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-13.5 - parent: 4812 - - uid: 11864 - components: - - type: Transform - pos: -14.5,5.5 - parent: 4812 - - uid: 11865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,4.5 - parent: 4812 - - uid: 11866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,3.5 - parent: 4812 - - uid: 11867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,4.5 - parent: 4812 -- proto: WoodDoor - entities: - - uid: 6795 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -19.5,-37.5 - parent: 4812 - - uid: 6796 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -21.5,-39.5 - parent: 4812 -- proto: Wrench - entities: - - uid: 4498 - components: - - type: Transform - pos: 19.554443,8.592699 - parent: 4812 - - uid: 4574 - components: - - type: Transform - pos: 27.5,4.5 - parent: 4812 - - uid: 6213 - components: - - type: Transform - pos: 3.4989405,-14.41828 - parent: 4812 - - uid: 6237 - components: - - type: Transform - pos: 15.546343,-23.407162 - parent: 4812 - - uid: 7839 - components: - - type: Transform - pos: -14.514914,-25.438694 - parent: 4812 - - uid: 8589 - components: - - type: Transform - pos: -18.546284,12.599279 - parent: 4812 - - uid: 9080 - components: - - type: Transform - pos: -30.517597,-29.561436 - parent: 4812 - - uid: 11331 - components: - - type: Transform - pos: 26.494213,-35.426273 - parent: 4812 -- proto: YellowOxygenTankFilled - entities: - - uid: 11791 - components: - - type: Transform - pos: 19.452671,-32.41012 - parent: 4812 -... +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 11: FloorAsteroidTile + 14: FloorBar + 17: FloorBlueCircuit + 29: FloorDark + 33: FloorDarkMini + 34: FloorDarkMono + 36: FloorDarkPavement + 41: FloorEighties + 44: FloorFreezer + 47: FloorGrass + 54: FloorGreenCircuit + 58: FloorHydro + 61: FloorLaundry + 62: FloorLino + 69: FloorMono + 77: FloorReinforced + 80: FloorShowroom + 89: FloorSteel + 104: FloorTechMaint + 105: FloorTechMaint2 + 108: FloorWhite + 118: FloorWood + 120: Lattice + 121: Plating + 122: PlatingAsteroid +entities: +- proto: "" + entities: + - uid: 473 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: GridTree + - type: MovedGrids + - uid: 4812 + components: + - type: MetaData + - type: Transform + pos: 2.2710133,-2.4148211 + parent: 473 + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: PgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAACHQAAAAADeQAAAAAADgAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAACdgAAAAACHQAAAAABeQAAAAAADgAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAADgAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAABdgAAAAABdgAAAAAAHQAAAAABDgAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAADdgAAAAACdgAAAAAAHQAAAAADDgAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAABdgAAAAABdgAAAAACHQAAAAACDgAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAADdgAAAAAAHQAAAAACDgAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAACdgAAAAADHQAAAAACDgAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAAAdgAAAAADHQAAAAAADgAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAAAdgAAAAADHQAAAAAADgAAAAACDgAAAAABWQAAAAADWQAAAAAAWQAAAAACDgAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABDgAAAAADWQAAAAACWQAAAAADWQAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABDgAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: DgAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAADgAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAADgAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAALAAAAAAALAAAAAAADgAAAAAAHQAAAAADHQAAAAADHQAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAABHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAALAAAAAAALAAAAAAADgAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAB + version: 6 + -1,1: + ind: -1,1 + tiles: eQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADNgAAAAAANgAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACNgAAAAAAHQAAAAACHQAAAAABHQAAAAADNgAAAAAAHQAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADNgAAAAAAHQAAAAADHQAAAAACLAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAUAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAD + version: 6 + 0,1: + ind: 0,1 + tiles: WQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADWQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACLwAAAAAALwAAAAAALwAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAADdgAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACdgAAAAABdgAAAAADdgAAAAABUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACeQAAAAAAHQAAAAAAdgAAAAACdgAAAAACdgAAAAACeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: WQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAHQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAADgAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABDgAAAAACeQAAAAAAJAAAAAADJAAAAAABJAAAAAACJAAAAAACJAAAAAABJAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAADgAAAAADeQAAAAAAJAAAAAADJAAAAAAAJAAAAAADJAAAAAABJAAAAAACJAAAAAABaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAADgAAAAABeQAAAAAAJAAAAAABJAAAAAADJAAAAAACJAAAAAADJAAAAAAAJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: bAAAAAADbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADOgAAAAAAHQAAAAABLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAACDgAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABDgAAAAACDgAAAAABWQAAAAADWQAAAAADWQAAAAADDgAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAACDgAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADWQAAAAACDgAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAADgAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABeQAAAAAADgAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAACdgAAAAACHQAAAAABHQAAAAAADgAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAC + version: 6 + -2,1: + ind: -2,1 + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADPQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADPQAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAADKQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADHQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAAB + version: 6 + -2,-1: + ind: -2,-1 + tiles: HQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAbAAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAOgAAAAAAOgAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAADWQAAAAACWQAAAAABHQAAAAADeQAAAAAAHQAAAAABOgAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADOgAAAAAAOgAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: HQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: WQAAAAAAWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACLAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAAANgAAAAAANgAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAANgAAAAAAHQAAAAADNgAAAAAAHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAeQAAAAAANgAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADHQAAAAABNgAAAAAAHQAAAAACHQAAAAABNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: eQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: WQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: eQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACeQAAAAAAeAAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAD + version: 6 + 0,-2: + ind: 0,-2 + tiles: WQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAABNgAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABbAAAAAACbAAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADNgAAAAAANgAAAAAANgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADbAAAAAAAbAAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABEQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACWQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAbAAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAADbAAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABbAAAAAABWQAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABbAAAAAACbAAAAAADbAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACbAAAAAAAbAAAAAADbAAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADWQAAAAAAWQAAAAABWQAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAABwAAAAAABwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAACeQAAAAAABwAAAAAHBwAAAAAAeQAAAAAAaQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAACAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: BwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAD + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABeQAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAABwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABBwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAABeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAACbAAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAABPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAACPgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAADHQAAAAAAHQAAAAAAHQAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAbAAAAAADHQAAAAABHQAAAAAAHQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABbAAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAbAAAAAAD + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAABeQAAAAAADgAAAAADDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAACDgAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACIQAAAAACIQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAIQAAAAAAIQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAAAdgAAAAABdgAAAAACdgAAAAADeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAADHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAADWQAAAAADWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAWQAAAAAAWQAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAAeQAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: AAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 1084: 27,-31 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 1605: -35,19 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 938: -11,-6 + 1085: 27,-29 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 16: -21,-9 + 17: -21,-8 + 18: -21,-7 + 19: -23,-7 + 28: -21,-4 + 30: -23,-4 + 56: 5,22 + 57: 6,22 + 58: 7,22 + 59: 8,22 + 141: 20,14 + 147: 18,21 + 246: 13,55 + 247: 13,49 + 248: 7,49 + 249: 7,55 + 250: 11,43 + 251: 9,43 + 310: 28,-10 + 311: 30,-10 + 419: 11,-28 + 420: 12,-28 + 422: 12,-26 + 423: 14,-26 + 424: 5,-24 + 425: 19,-27 + 588: -30,22 + 589: -31,22 + 635: -17,11 + 636: -17,9 + 654: -37,-9 + 655: -36,-9 + 687: -35,5 + 688: -34,5 + 689: -33,5 + 690: -32,5 + 699: -35,1 + 713: -31,-6 + 714: -31,-10 + 863: -54,-11 + 864: -55,-10 + 865: -54,-9 + 866: -53,-10 + 899: 14,23 + 900: 14,25 + 901: 14,26 + 902: 14,27 + 903: 18,23 + 904: 18,24 + 936: -10,-6 + 937: -10,-10 + 1010: 31,-29 + 1011: 32,-29 + 1012: 34,-29 + 1013: 35,-29 + 1082: 29,-31 + 1083: 29,-29 + 1204: -9,-28 + 1205: -9,-27 + 1233: -14,-26 + 1234: -16,-26 + 1531: 2,-36 + 1532: -15,-14 + 1604: -37,20 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 1533: -47,-9 + 1534: -47,-8 + 1535: -47,-7 + 1599: -32,-10 + 1600: -33,-10 + 1601: -34,-10 + 1602: -36,21 + 1603: -37,21 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 869: -53,-9 + 870: -55,-11 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: BotRight + decals: + 1086: 22,-27 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 867: -55,-9 + 868: -53,-11 + 1369: -19,-19 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 1038: -15,-35 + 1039: -23,-40 + 1040: -23,-39 + 1041: -23,-37 + 1042: -23,-38 + 1043: -23,-36 + 1091: -1,28 + 1092: -1,29 + 1093: -1,30 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 1088: -5,28 + 1089: -5,29 + 1090: -5,30 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerNe + decals: + 1553: -39,-11 + 1554: -39,-11 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerNw + decals: + 1559: -43,-11 + 1560: -43,-11 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerSe + decals: + 1575: -39,-19 + 1576: -39,-19 + - node: + color: '#EFB34196' + id: BrickTileSteelCornerSw + decals: + 1573: -43,-19 + 1574: -43,-19 + - node: + color: '#EFB34196' + id: BrickTileSteelLineE + decals: + 1583: -39,-18 + 1584: -39,-18 + 1585: -39,-17 + 1586: -39,-17 + 1587: -39,-15 + 1588: -39,-15 + 1589: -39,-16 + 1590: -39,-16 + 1591: -39,-14 + 1592: -39,-14 + 1593: -39,-13 + 1594: -39,-13 + 1595: -39,-12 + 1596: -39,-12 + - node: + color: '#D381C996' + id: BrickTileSteelLineN + decals: + 1005: 31,-29 + 1006: 32,-29 + 1007: 33,-29 + 1008: 34,-29 + 1009: 35,-29 + - node: + color: '#EFB34196' + id: BrickTileSteelLineN + decals: + 1555: -40,-11 + 1556: -40,-11 + 1557: -42,-11 + 1558: -42,-11 + - node: + color: '#D381C996' + id: BrickTileSteelLineS + decals: + 1000: 31,-25 + 1001: 32,-25 + 1002: 33,-25 + 1003: 34,-25 + 1004: 35,-25 + - node: + color: '#EFB34196' + id: BrickTileSteelLineS + decals: + 1577: -40,-19 + 1578: -40,-19 + 1579: -41,-19 + 1580: -41,-19 + 1581: -42,-19 + 1582: -42,-19 + - node: + color: '#EFB34196' + id: BrickTileSteelLineW + decals: + 1561: -43,-12 + 1562: -43,-12 + 1563: -43,-14 + 1564: -43,-14 + 1565: -43,-15 + 1566: -43,-15 + 1567: -43,-16 + 1568: -43,-16 + 1569: -43,-17 + 1570: -43,-17 + 1571: -43,-18 + 1572: -43,-18 + - node: + color: '#334E6DC8' + id: BrickTileWhiteBox + decals: + 1045: -50,-14 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteBox + decals: + 1046: -51,-14 + - node: + color: '#EFB34196' + id: BrickTileWhiteBox + decals: + 1044: -49,-14 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 1171: -9,-21 + 1243: -15,-21 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 1061: 26,-25 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 1172: -13,-21 + 1247: -21,-21 + 1248: -23,-23 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 1062: 27,-25 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 1170: -9,-24 + 1256: -15,-24 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 1249: -23,-24 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNe + decals: + 1066: 25,-25 + 1070: 26,-27 + 1081: 22,-24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 1495: -6,-32 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNw + decals: + 1260: -21,-23 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNw + decals: + 1067: 28,-25 + 1069: 27,-27 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 1496: 0,-32 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 1058: 21,-25 + 1068: 25,-24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 1494: -6,-23 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 1057: 25,-25 + 1065: 28,-24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 1493: 0,-23 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 1052: 21,-27 + 1053: 21,-26 + 1059: 26,-26 + 1071: 22,-21 + 1072: 22,-22 + 1073: 22,-23 + 1306: -17,-18 + 1307: -17,-17 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 1470: -6,-31 + 1471: -6,-30 + 1472: -6,-29 + 1473: -6,-27 + 1474: -6,-25 + 1475: -6,-24 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 1180: -11,-21 + 1244: -17,-21 + 1245: -18,-21 + 1246: -19,-21 + 1259: -22,-23 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 1047: 27,-28 + 1048: 28,-28 + 1049: 29,-28 + 1074: 23,-24 + 1075: 24,-24 + 1076: 25,-24 + 1077: 26,-24 + 1078: 27,-24 + 1079: 28,-24 + 1080: 29,-24 + 1305: -16,-19 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 1476: -5,-32 + 1477: -4,-32 + 1478: -2,-32 + 1479: -1,-32 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 1173: -12,-24 + 1181: -11,-24 + 1250: -16,-24 + 1251: -18,-24 + 1252: -19,-24 + 1253: -20,-24 + 1254: -21,-24 + 1255: -22,-24 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 1054: 24,-25 + 1055: 23,-25 + 1056: 22,-25 + 1063: 27,-24 + 1064: 26,-24 + 1308: -16,-16 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 1488: -1,-23 + 1489: -2,-23 + 1490: -3,-23 + 1491: -4,-23 + 1492: -5,-23 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 1261: -21,-22 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 1050: 25,-27 + 1051: 25,-26 + 1060: 27,-26 + 1309: -15,-18 + 1310: -15,-17 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 1480: 0,-31 + 1481: 0,-30 + 1482: 0,-29 + 1483: 0,-28 + 1484: 0,-27 + 1485: 0,-26 + 1486: 0,-25 + 1487: 0,-24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushb3 + decals: + 850: 14.0002365,-41.964172 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushc3 + decals: + 857: 4.0288744,-43.00805 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 51: 6.409272,21.00127 + - node: + color: '#FFFFFFFF' + id: Bushg2 + decals: + 27: -8.467243,-8.991291 + - node: + color: '#FFFFFFFF' + id: Bushg3 + decals: + 26: -8.904743,-10.131916 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 25: -7.107868,-9.913166 + 328: -9.013572,-49.089592 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 24: -7.920368,-9.100666 + 327: -8.919771,-45.902092 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 326: -8.986252,-47.542717 + 333: -13.982322,-47.902092 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 23: -8.592243,-9.991291 + 52: 7.440522,20.93877 + - node: + color: '#FFFFFFFF' + id: Bushk1 + decals: + 50: 7.940522,21.016895 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 53: 7.034272,20.954395 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 941: -35,-4 + 942: -35,-3 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 1504: -3,-29 + 1505: -3,-28 + 1506: -3,-27 + 1507: -3,-26 + - node: + color: '#DE3A3A96' + id: CheckerNESW + decals: + 939: -35,-1 + 940: -35,-2 + - node: + color: '#334E6DC8' + id: CheckerNWSE + decals: + 1280: -25,-29 + 1281: -26,-29 + 1282: -27,-29 + 1283: -27,-28 + 1284: -26,-28 + 1285: -25,-28 + 1286: -25,-27 + 1287: -26,-27 + 1288: -27,-27 + 1289: -27,-26 + 1290: -26,-26 + 1291: -25,-26 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 1194: -11,-29 + 1195: -10,-29 + 1196: -10,-28 + 1197: -11,-28 + 1198: -11,-27 + 1199: -10,-27 + 1200: -10,-26 + 1201: -11,-26 + 1294: -26,-24 + 1295: -26,-23 + 1296: -25,-23 + 1297: -25,-24 + 1500: -3,-29 + 1501: -3,-28 + 1502: -3,-27 + 1503: -3,-26 + - node: + color: '#D381C996' + id: CheckerNWSE + decals: + 357: 16,-22 + 358: 16,-21 + 359: 17,-21 + 360: 17,-22 + 361: 18,-22 + 362: 18,-21 + 985: 31,-28 + 986: 31,-27 + 987: 31,-26 + 988: 32,-26 + 989: 32,-27 + 990: 32,-28 + 991: 33,-28 + 992: 33,-27 + 993: 33,-26 + 994: 34,-26 + 995: 34,-27 + 996: 34,-28 + 997: 35,-28 + 998: 35,-27 + 999: 35,-26 + - node: + color: '#D4D4D496' + id: CheckerNWSE + decals: + 943: -35,-4 + 944: -35,-3 + 945: -35,-2 + 946: -35,-1 + - node: + color: '#DE3A3A96' + id: CheckerNWSE + decals: + 561: -34,12 + 562: -35,12 + 563: -34,11 + 564: -34,10 + 565: -35,10 + 566: -35,11 + 567: -36,10 + 568: -36,11 + 569: -36,12 + 570: -37,10 + 571: -37,11 + 572: -37,12 + 573: -38,11 + 574: -38,10 + 575: -39,10 + 576: -39,11 + 577: -39,12 + 578: -38,12 + 579: -40,12 + 580: -40,11 + 581: -40,10 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 728: -49,-10 + 729: -50,-10 + 730: -51,-10 + 731: -51,-9 + 732: -50,-9 + 733: -49,-9 + 734: -49,-8 + 735: -50,-8 + 736: -51,-8 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 29: -22,-4 + 60: 9,22 + 142: 20,15 + 148: 18,20 + 254: 5,47 + 255: 6,47 + 256: 7,47 + 312: 29,-10 + 313: 31,-10 + 421: 12,-29 + 582: -27,13 + 583: -27,14 + 630: -20,7 + 631: -19,7 + 632: -18,12 + 633: -17,12 + 634: -17,10 + 648: -35,-34 + 649: -34,-34 + 691: -35,4 + 692: -34,4 + 693: -33,4 + 694: -32,4 + 700: -34,-6 + 715: -40,-4 + 716: -40,-3 + 717: -40,-2 + 1087: 22,-26 + 1202: -9,-26 + 1203: -9,-29 + 1367: -12,-37 + 1368: -11,-37 + 1370: -6,-15 + 1371: -7,-15 + 1372: 0,-15 + 1373: 1,-15 + 1374: -12,-13 + 1375: -12,-12 + 1376: 6,-13 + 1377: 6,-12 + 1378: 11,-11 + 1379: 12,-11 + 1380: 12,0 + 1381: 11,0 + 1382: 12,16 + 1383: 11,16 + 1384: 13,14 + 1385: 13,15 + 1386: 4,19 + 1387: 4,20 + 1388: -10,19 + 1389: -10,20 + 1390: -23,15 + 1391: -24,15 + 1392: -26,6 + 1393: -27,6 + 1394: -26,-11 + 1395: -27,-11 + 1396: -22,-13 + 1397: -22,-12 + 1606: 5,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 1030: -44,-28 + 1031: -45,-29 + 1032: -43,-27 + 1033: -44,-30 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 801: 7,-33 + 802: 8,-32 + 809: 5,-39 + 810: 5,-38 + 811: 12,-41 + 828: 24,12 + 1027: -43,-28 + 1028: -44,-27 + 1029: -45,-28 + 1537: -47,-8 + 1538: -47,-7 + 1539: -47,-10 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 910: 20,27 + 911: 19,26 + 912: 17,26 + 913: 16,24 + 914: 16,30 + 915: 17,32 + 916: 16,35 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 804: 8,-34 + 805: 8,-36 + 806: 13,-39 + 807: 14,-38 + 808: 4,-38 + 812: -34,-6 + 813: -34,-8 + 814: -33,-7 + 815: -41,-9 + 816: -41,-8 + 817: -39,-9 + 818: -34,-4 + 819: -31,-3 + 820: -25,-5 + 821: -26,-4 + 822: -23,-12 + 823: 13,-4 + 824: 19,15 + 825: 18,14 + 826: 24,14 + 829: 24,13 + 830: 22,14 + 831: 23,15 + 832: 17,14 + 833: 16,21 + 834: 15,21 + 835: 16,19 + 836: 16,23 + 837: 17,24 + 838: -21,9 + 839: -23,8 + 840: -25,7 + 841: -23,13 + 842: 0,-19 + 843: -6,-28 + 844: -6,-33 + 845: -11,-38 + 1536: -47,-9 + 1543: -46,-13 + 1544: -45,-12 + 1545: -46,-11 + 1546: -45,-11 + 1547: -45,-10 + 1548: -45,-9 + 1549: -46,-8 + 1550: -46,-7 + 1551: -45,-6 + 1552: -40,-6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 803: 8,-33 + 827: 24,15 + 1540: -46,-10 + 1541: -46,-9 + 1542: -46,-12 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 47: 6.065522,21.048145 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 48: 7.049897,20.985645 + 325: -8.939377,-46.636467 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 49: 7.518647,21.016895 + 324: -8.955002,-48.308342 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 332: -13.997947,-48.917717 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 109: -7,29 + 110: 1,29 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 1182: -11,-23 + 1183: -11,-22 + 1206: -13,-26 + 1207: -15,-26 + 1208: -17,-26 + 1209: -18,-26 + 1210: -16,-29 + 1211: -17,-29 + 1212: -18,-29 + 1300: -24,-24 + - node: + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 272: 26,-8 + 273: 30,-7 + 897: 16,33 + 898: 15,28 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 363: 15,-22 + 364: 15,-21 + 365: 19,-22 + 366: 19,-21 + 397: 30,-26 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 297: 30,1 + 444: -5,-26 + 445: -3,-31 + 559: -33,17 + 560: -35,13 + 612: -27,28 + 613: -31,28 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 737: -50,-11 + 738: -52,-13 + 739: -47,-13 + 759: -41,-10 + 760: -44,-13 + 766: -47,-10 + 767: -47,-9 + 768: -47,-8 + 769: -47,-7 + - node: + color: '#FFDB9895' + id: FullTileOverlayGreyscale + decals: + 462: -11,-18 + 463: -11,-17 + 464: -12,-17 + 465: -11,-16 + 466: -10,-17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassa4 + decals: + 846: 14.0471115,-39.042297 + 849: 13.9846115,-43.011047 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassa5 + decals: + 848: 3.9064865,-36.901672 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb1 + decals: + 847: 3.9377365,-39.073547 + 851: 13.4377365,-40.948547 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb2 + decals: + 852: 14.1408615,-40.964172 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb3 + decals: + 853: 13.1408615,-43.026672 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb4 + decals: + 1036: -44,-28 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassb5 + decals: + 1037: -44,-30 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassc2 + decals: + 856: 13.63825,-42.897484 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassc3 + decals: + 855: 13.88825,-41.03811 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassc4 + decals: + 854: 14.089525,-39.057083 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 20: -8.810993,-9.335041 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 46: 7.909272,21.016895 + 323: -8.91927,-49.011467 + 329: -13.966697,-45.902092 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 21: -7.826618,-9.960041 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 44: 6.049897,21.0706 + 45: 6.784272,21.079395 + 321: -8.936016,-46.30113 + 331: -13.997947,-48.558342 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 22: -7.045368,-10.022541 + 322: -9.029766,-47.11363 + 330: -13.997947,-47.558342 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 104: -3,20 + 105: -2,20 + 106: -4,20 + 862: 25,1 + 1266: -20,-29 + 1267: -21,-29 + 1268: -22,-29 + 1269: -23,-29 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 1184: -10,-23 + 1185: -12,-23 + 1189: -11,-24 + 1213: -17,-27 + 1214: -16,-27 + 1215: -15,-27 + 1216: -14,-27 + 1217: -21,-27 + 1218: -22,-27 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 136: 17,15 + 154: 16,21 + 155: 15,21 + 165: 19,19 + 166: 18,19 + 171: 19,21 + 267: 30,-8 + 268: 29,-8 + 269: 28,-8 + 890: 16,35 + 891: 16,32 + - node: + color: '#BAFF79B4' + id: HalfTileOverlayGreyscale + decals: + 639: -40,-34 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 389: 6,-15 + 390: 5,-15 + 391: 4,-15 + 392: 3,-15 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale + decals: + 6: -22,-10 + 7: -23,-10 + 187: 10,46 + 198: 6,46 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 294: 28,4 + 295: 29,4 + 296: 30,4 + 432: -3,-25 + 551: -35,17 + 600: -27,32 + 601: -28,32 + 602: -29,32 + 603: -30,32 + 604: -31,32 + 605: -32,32 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 626: -19,11 + 627: -20,11 + 681: -30,5 + 683: -32,3 + 684: -33,3 + 685: -34,3 + 686: -35,3 + 707: -31,-7 + 708: -32,-7 + 709: -33,-7 + 771: -45,-6 + 772: -44,-6 + 773: -43,-6 + 774: -42,-6 + 775: -39,-6 + 776: -40,-6 + 777: -41,-6 + 778: -43,-2 + 779: -44,-2 + 780: -45,-2 + 781: -46,-2 + 877: -48,-12 + 878: -49,-12 + 879: -50,-12 + 880: -51,-12 + 917: 24,1 + - node: + color: '#FFDB9895' + id: HalfTileOverlayGreyscale + decals: + 450: -10,-15 + 451: -11,-15 + 452: -12,-15 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 1262: -20,-26 + 1263: -22,-26 + 1264: -21,-26 + 1265: -23,-26 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 1186: -10,-22 + 1187: -12,-22 + 1188: -11,-21 + 1219: -14,-28 + 1220: -15,-28 + 1221: -16,-28 + 1222: -17,-28 + 1223: -21,-28 + 1224: -22,-28 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 159: 15,17 + 160: 16,17 + 161: 17,17 + 162: 18,17 + 163: 19,17 + 176: 17,13 + 264: 28,-10 + 265: 29,-10 + 266: 30,-10 + 889: 16,29 + 892: 16,34 + - node: + color: '#BAFF79B4' + id: HalfTileOverlayGreyscale180 + decals: + 644: -40,-36 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 393: 6,-19 + 394: 5,-19 + 395: 4,-19 + 396: 3,-19 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale180 + decals: + 4: -23,-7 + 5: -22,-7 + 188: 10,44 + 194: 6,44 + 201: 10,48 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 289: 30,2 + 290: 29,2 + 291: 28,2 + 435: -3,-30 + 552: -35,14 + 606: -32,29 + 607: -31,29 + 608: -30,29 + 609: -29,29 + 610: -28,29 + 611: -27,29 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 622: -19,8 + 623: -20,8 + 665: -35,1 + 666: -34,1 + 667: -33,1 + 668: -32,1 + 669: -31,1 + 670: -30,1 + 671: -29,1 + 710: -31,-9 + 711: -32,-9 + 712: -33,-9 + 752: -44,-9 + 753: -43,-9 + 754: -42,-9 + 755: -41,-9 + 756: -40,-9 + 757: -39,-9 + 874: -53,-14 + 875: -55,-14 + 876: -48,-14 + - node: + color: '#FFDB9895' + id: HalfTileOverlayGreyscale180 + decals: + 459: -10,-19 + 460: -11,-19 + 461: -12,-19 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 1102: -1,31 + 1103: -1,32 + 1104: -1,33 + 1105: -1,34 + 1106: -4,31 + 1107: -4,32 + 1108: -4,33 + 1109: -4,34 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 1292: -27,-24 + 1293: -27,-23 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 156: 14,20 + 157: 14,19 + 158: 14,18 + 172: 14,25 + 173: 14,26 + 174: 14,27 + 175: 14,23 + 271: 27,-9 + 893: 15,30 + 894: 15,31 + - node: + color: '#BAFF79B4' + id: HalfTileOverlayGreyscale270 + decals: + 637: -41,-35 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 340: 8,-25 + 367: 20,-22 + 368: 20,-21 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale270 + decals: + 9: -21,-9 + 10: -21,-8 + 183: 13,45 + 186: 9,45 + 200: 5,45 + 206: 8,51 + 207: 8,52 + 208: 8,53 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 293: 27,3 + 436: -4,-29 + 437: -4,-28 + 438: -4,-27 + 439: -4,-26 + 515: -30,13 + 516: -30,15 + 517: -30,17 + 518: -30,19 + 525: -28,16 + 526: -28,19 + 543: -32,11 + 545: -32,18 + 546: -32,19 + 547: -32,20 + 555: -36,15 + 556: -36,16 + 592: -32,26 + 593: -32,27 + 594: -28,26 + 595: -28,27 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 677: -31,5 + 678: -31,4 + 706: -34,-8 + 742: -46,-14 + 743: -46,-13 + 744: -46,-12 + 745: -46,-11 + 761: -46,-10 + 762: -46,-9 + 763: -46,-8 + 764: -46,-7 + 765: -46,-6 + - node: + color: '#FFDB9895' + id: HalfTileOverlayGreyscale270 + decals: + 453: -13,-18 + 454: -13,-17 + 455: -13,-16 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 1094: -5,31 + 1095: -5,32 + 1096: -5,33 + 1097: -5,34 + 1098: -2,31 + 1099: -2,32 + 1100: -2,33 + 1101: -2,34 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 164: 20,18 + 168: 17,20 + 169: 20,20 + 270: 31,-9 + 895: 17,30 + 896: 17,31 + 905: 20,26 + 906: 20,25 + 907: 20,27 + - node: + color: '#BAFF79B4' + id: HalfTileOverlayGreyscale90 + decals: + 643: -39,-35 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 345: 9,-26 + 398: 29,-26 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale90 + decals: + 14: -24,-9 + 15: -24,-8 + 184: 15,45 + 185: 11,45 + 196: 7,45 + 209: 12,51 + 210: 12,52 + 211: 12,53 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 292: 31,3 + 440: -2,-29 + 441: -2,-28 + 442: -2,-27 + 443: -2,-26 + 557: -34,15 + 558: -34,16 + 596: -26,26 + 597: -26,27 + 598: -30,26 + 599: -30,27 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 624: -18,9 + 625: -18,10 + 673: -29,2 + 674: -29,3 + 675: -29,4 + 676: -29,5 + 705: -30,-8 + 746: -45,-14 + 747: -45,-13 + 748: -45,-12 + 749: -45,-11 + 750: -45,-10 + - node: + color: '#FFDB9895' + id: HalfTileOverlayGreyscale90 + decals: + 456: -9,-18 + 457: -9,-17 + 458: -9,-16 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 55: 5,21 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 143: 22,15 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 54: 9,21 + 695: -35,3 + 696: -34,3 + 697: -33,3 + 698: -32,3 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 83: -9,22 + 84: -9,23 + 85: -9,24 + 86: -9,25 + 87: -9,26 + 88: -9,27 + 89: -9,28 + 90: -9,29 + 91: -9,30 + 92: -11,20 + 93: -12,20 + 94: -13,20 + 95: -14,20 + 96: -15,20 + 97: -16,20 + 107: -1,20 + 111: 2,22 + 112: 2,23 + 113: 2,24 + 114: 2,25 + 115: 2,26 + 116: 2,27 + 117: 2,28 + 118: 2,29 + 119: 2,30 + 1116: -2,31 + 1117: -3,32 + 1120: -2,32 + 1121: -3,33 + 1122: 0,33 + 1123: 0,32 + 1124: 1,33 + 1130: -6,33 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 469: -7,-16 + 470: -7,-17 + 471: -7,-18 + 472: -7,-19 + 473: -7,-20 + 491: -17,-12 + 492: -15,-12 + 493: -13,-12 + 494: -11,-12 + 495: -9,-12 + 496: -7,-12 + 1270: -7,-21 + 1301: -17,-16 + 1341: -12,-56 + 1342: -12,-55 + 1343: -12,-54 + 1344: -12,-53 + 1345: -12,-52 + 1346: -12,-51 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 486: -8,-12 + 487: -10,-12 + 488: -14,-12 + 489: -16,-12 + 490: -18,-12 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 133: 14,15 + 134: 15,15 + 135: 16,15 + - node: + color: '#BAFF79B4' + id: QuarterTileOverlayGreyscale + decals: + 638: -41,-34 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 339: 8,-24 + 372: 14,-28 + 795: 8,-34 + 796: 8,-35 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 8: -21,-10 + 1136: 1,20 + 1137: 0,20 + 1406: -28,-1 + 1407: -27,-1 + 1408: -27,0 + 1409: -27,1 + 1410: -27,2 + 1411: -27,3 + 1412: -27,4 + 1413: -27,5 + 1420: -27,7 + 1421: -27,8 + 1422: -26,8 + 1423: -25,8 + 1424: -24,8 + 1425: -24,9 + 1426: -20,20 + 1427: -19,20 + 1428: -18,20 + 1429: -17,20 + 1430: 11,-1 + 1431: 11,-2 + 1432: 11,-3 + 1433: 11,-4 + 1434: 11,-5 + 1435: 11,-6 + 1436: 11,-7 + 1437: 11,-8 + 1438: 11,-9 + 1439: 11,-10 + 1440: -6,-12 + 1447: 7,-12 + 1448: 8,-12 + 1449: 9,-12 + 1450: 10,-12 + 1451: 11,-12 + 1452: 0,-16 + 1453: 0,-17 + 1454: 0,-18 + 1455: 0,-19 + 1456: 0,-20 + 1457: 0,-21 + 1458: 0,-22 + 1459: -1,-22 + 1460: -2,-22 + 1508: -12,-35 + 1509: -11,-35 + 1510: -10,-35 + 1511: -9,-35 + 1512: -8,-35 + 1516: -4,-35 + 1517: -5,-35 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale + decals: + 1311: -12,-45 + 1312: -12,-44 + 1313: -12,-43 + 1314: -12,-42 + 1315: -12,-41 + 1316: -12,-40 + 1317: -12,-39 + 1318: -12,-38 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 502: -24,10 + 503: -24,11 + 504: -24,12 + 505: -24,13 + 506: -24,14 + 507: -24,16 + 508: -24,17 + 509: -24,18 + 510: -24,19 + 511: -24,20 + 512: -23,20 + 513: -22,20 + 514: -21,20 + 524: -30,11 + 527: -27,20 + 528: -27,17 + 544: -32,17 + 616: -26,10 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 628: -21,10 + 680: -29,5 + 682: -31,3 + 784: -46,-4 + 785: -46,-3 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 1114: -4,34 + 1115: -3,33 + 1118: -3,32 + 1119: -4,33 + 1132: -6,33 + 1133: 0,33 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 485: -21,-13 + 1298: -27,-24 + 1299: -27,-23 + 1303: -15,-19 + 1353: -11,-38 + 1354: -11,-39 + 1355: -11,-40 + 1356: -11,-41 + 1357: -11,-42 + 1358: -11,-43 + 1359: -11,-44 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 139: 12,14 + 140: 12,13 + 180: 18,13 + 181: 19,13 + 182: 20,13 + 909: 20,28 + - node: + color: '#BAFF79B4' + id: QuarterTileOverlayGreyscale180 + decals: + 642: -39,-36 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 346: 9,-29 + 347: 9,-28 + 348: 9,-27 + 351: 9,-22 + 352: 10,-22 + 353: 11,-22 + 354: 12,-22 + 355: 13,-22 + 356: 14,-22 + 369: 15,-29 + 378: 1,-14 + 379: 2,-13 + 380: 3,-13 + 381: 4,-13 + 382: 5,-13 + 383: 7,-13 + 384: 1,-23 + 385: 1,-24 + 386: 1,-25 + 400: 29,-25 + 497: 1,-13 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 12: -24,-7 + 1146: -1,16 + 1147: 0,16 + 1148: 0,17 + 1149: 0,18 + 1150: 0,19 + 1151: 2,19 + 1152: 1,19 + 1153: 3,19 + 1154: 12,12 + 1155: 12,11 + 1156: 12,10 + 1157: 12,9 + 1158: 12,8 + 1159: 12,7 + 1160: 12,6 + 1161: 12,5 + 1523: -4,-36 + 1524: -5,-36 + 1525: -6,-36 + 1526: -7,-36 + 1527: -8,-36 + 1528: -9,-36 + 1529: -10,-36 + 1530: -11,-36 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale180 + decals: + 1327: -11,-56 + 1328: -11,-55 + 1329: -11,-54 + 1330: -11,-53 + 1331: -11,-52 + 1332: -11,-51 + 1333: -11,-50 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 519: -31,18 + 520: -31,20 + 521: -31,16 + 522: -31,14 + 523: -31,12 + 533: -26,16 + 534: -26,19 + 535: -29,18 + 536: -29,15 + 537: -29,13 + 614: -27,11 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 751: -45,-9 + 790: -33,-4 + 791: -32,-4 + 792: -31,-4 + 793: -30,-4 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 1112: -2,32 + 1113: -3,33 + 1128: 0,33 + 1129: -6,33 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 467: -7,-13 + 468: -7,-14 + 474: -7,-25 + 475: -7,-26 + 476: -7,-27 + 477: -7,-28 + 478: -7,-29 + 479: -8,-13 + 480: -9,-13 + 481: -10,-13 + 482: -11,-13 + 483: -13,-13 + 484: -19,-13 + 1271: -7,-24 + 1304: -17,-19 + 1360: -12,-44 + 1361: -12,-43 + 1362: -12,-42 + 1363: -12,-41 + 1364: -12,-40 + 1365: -12,-39 + 1366: -12,-38 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 177: 16,13 + 178: 15,13 + 179: 14,13 + 274: 30,-6 + 275: 29,-6 + 276: 28,-6 + 277: 27,-6 + 278: 24,-8 + 279: 24,-6 + 280: 24,-4 + 281: 22,-4 + 282: 20,-4 + 283: 18,-4 + 284: 16,-4 + - node: + color: '#BAFF79B4' + id: QuarterTileOverlayGreyscale270 + decals: + 641: -41,-36 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 334: 4,-22 + 335: 5,-22 + 336: 6,-22 + 337: 7,-22 + 338: 8,-22 + 341: 8,-29 + 342: 8,-28 + 343: 8,-27 + 344: 8,-26 + 371: 14,-29 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 11: -21,-7 + 1138: -5,16 + 1139: -6,16 + 1140: -6,17 + 1141: -6,18 + 1142: -6,19 + 1143: -7,19 + 1144: -8,19 + 1145: -9,19 + 1162: -7,-30 + 1163: -7,-31 + 1164: -7,-32 + 1165: -7,-33 + 1398: -27,-10 + 1399: -27,-9 + 1400: -27,-8 + 1401: -27,-7 + 1402: -27,-6 + 1403: -27,-5 + 1404: -27,-4 + 1405: -28,-4 + 1518: -2,-36 + 1519: -1,-36 + 1520: 0,-36 + 1521: 1,-36 + 1522: 2,-36 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale270 + decals: + 1334: -12,-56 + 1335: -12,-55 + 1336: -12,-54 + 1337: -12,-53 + 1338: -12,-52 + 1339: -12,-51 + 1340: -12,-50 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 308: 24,-2 + 309: 24,0 + 531: -27,16 + 532: -27,19 + 542: -32,10 + 548: -32,15 + 615: -26,11 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 629: -21,9 + 758: -38,-9 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 74: 3,22 + 75: 3,23 + 76: 3,24 + 77: 3,25 + 78: 3,26 + 79: 3,27 + 80: 3,28 + 81: 3,29 + 82: 3,30 + 98: 5,20 + 99: 6,20 + 100: 7,20 + 101: 8,20 + 102: 9,20 + 103: 10,20 + 108: -5,20 + 120: -8,22 + 121: -8,23 + 122: -8,24 + 123: -8,25 + 124: -8,26 + 125: -8,27 + 126: -8,28 + 127: -8,29 + 128: -8,30 + 1110: -4,33 + 1111: -3,32 + 1125: -6,32 + 1126: -6,33 + 1127: -7,33 + 1131: 0,33 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 1302: -15,-16 + 1347: -11,-56 + 1348: -11,-55 + 1349: -11,-54 + 1350: -11,-53 + 1351: -11,-52 + 1352: -11,-51 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 129: 12,20 + 130: 12,18 + 131: 12,17 + 132: 12,15 + 137: 18,15 + 138: 19,15 + 167: 17,19 + 908: 20,24 + - node: + color: '#BAFF79B4' + id: QuarterTileOverlayGreyscale90 + decals: + 640: -39,-34 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 349: 9,-25 + 350: 9,-24 + 370: 15,-28 + 373: 1,-20 + 374: 1,-19 + 375: 1,-18 + 376: 1,-17 + 377: 1,-16 + 387: 1,-30 + 388: 1,-29 + 399: 29,-27 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 13: -24,-10 + 1134: -6,20 + 1135: -7,20 + 1276: 1,-31 + 1277: 2,-31 + 1278: 2,-32 + 1279: 2,-33 + 1414: -19,2 + 1415: -20,2 + 1416: -21,2 + 1417: -22,2 + 1418: -23,2 + 1419: -24,2 + 1441: 0,-12 + 1442: 1,-12 + 1443: 2,-12 + 1444: 3,-12 + 1445: 4,-12 + 1446: 5,-12 + 1461: -4,-22 + 1462: -5,-22 + 1463: -6,-22 + 1464: -6,-21 + 1465: -6,-20 + 1466: -6,-19 + 1467: -6,-18 + 1468: -6,-17 + 1469: -6,-16 + 1513: 2,-35 + 1514: -1,-35 + 1515: -2,-35 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale90 + decals: + 1319: -11,-38 + 1320: -11,-39 + 1321: -11,-40 + 1322: -11,-41 + 1323: -11,-42 + 1324: -11,-43 + 1325: -11,-44 + 1326: -11,-45 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 298: 27,0 + 299: 28,0 + 300: 29,0 + 301: 30,0 + 302: 23,-3 + 303: 21,-3 + 304: 19,-3 + 305: 17,-3 + 306: 15,-3 + 307: 25,-1 + 529: -26,20 + 530: -26,17 + 538: -29,12 + 539: -29,14 + 540: -29,17 + 541: -29,20 + 617: -27,10 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 672: -29,1 + 679: -31,5 + 770: -46,-6 + 782: -43,-3 + 783: -43,-4 + 786: -33,-1 + 787: -32,-1 + 788: -31,-1 + 789: -30,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Rock03 + decals: + 1034: -45,-28 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Rock04 + decals: + 1035: -44,-27 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 947: -6,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 948: -5,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 949: -4,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 950: -3,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 951: -2,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 952: -1,-13 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 953: 0,-13 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1231: -23,-27 + 1232: -18,-27 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 0: -23,-8 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 153: 14,21 + 260: 27,-8 + 882: 15,32 + 888: 15,35 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 794: 8,-33 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale + decals: + 189: 9,46 + 199: 5,46 + 213: 8,54 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 286: 27,4 + 430: -4,-25 + 550: -36,17 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 618: -21,11 + 702: -34,-7 + - node: + color: '#FFDB9895' + id: ThreeQuarterTileOverlayGreyscale + decals: + 447: -13,-15 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1229: -13,-28 + 1230: -20,-28 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1: -22,-9 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 150: 20,17 + 262: 31,-10 + 881: 17,29 + 887: 17,34 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 191: 11,44 + 195: 7,44 + 203: 11,48 + 204: 12,50 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 288: 31,2 + 434: -2,-30 + 553: -34,14 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 621: -18,8 + 704: -30,-9 + 741: -45,-15 + - node: + color: '#FFDB9895' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 448: -9,-19 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1227: -23,-28 + 1228: -18,-28 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 149: 14,17 + 263: 27,-10 + 884: 15,29 + 885: 15,34 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 3: -23,-9 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 192: 9,44 + 193: 5,44 + 202: 9,48 + 205: 8,50 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 285: 27,2 + 433: -4,-30 + 554: -36,14 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 620: -21,8 + 701: -34,-9 + 740: -46,-15 + - node: + color: '#FFDB9895' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 446: -13,-19 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1225: -13,-27 + 1226: -20,-27 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 151: 20,19 + 152: 17,21 + 170: 20,21 + 261: 31,-8 + 883: 17,32 + 886: 17,35 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2: -22,-8 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 190: 11,46 + 197: 7,46 + 212: 12,54 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 287: 31,4 + 431: -2,-25 + 549: -34,17 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 619: -18,11 + 703: -30,-7 + - node: + color: '#FFDB9895' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 449: -9,-15 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 1023: -9,-44 + 1024: -14,-44 + 1025: -14,-51 + 1026: -9,-51 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnCorner + decals: + 222: 11,46 + 225: 7,46 + 653: -34,-34 + 659: -36,-8 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCorner + decals: + 402: 19,-24 + 720: -41,-2 + - node: + color: '#FFFFFFFF' + id: WarnCorner + decals: + 221: 9,44 + 226: 5,44 + 650: -35,-35 + 656: -37,-10 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCorner + decals: + 723: -39,-4 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 223: 9,46 + 224: 5,46 + 652: -35,-34 + 658: -37,-8 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 403: 19,-26 + 719: -41,-4 + - node: + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 33: -21,-4 + 220: 11,44 + 227: 7,44 + 651: -34,-35 + 657: -36,-10 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCornerFlipped + decals: + 722: -39,-2 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleSW + decals: + 1174: -13,-24 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 1235: -15,-29 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 932: 21,5 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 929: 25,1 + 931: 23,5 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 935: 23,3 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 934: 25,3 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnEnd + decals: + 43: 7,16 + - node: + color: '#FFFFFFFF' + id: WarnEnd + decals: + 42: 7,15 + - node: + color: '#52B4E996' + id: WarnFullGreyscale + decals: + 1168: -8,-23 + 1169: -8,-22 + 1190: -13,-25 + 1191: -14,-23 + 1192: -14,-22 + 1193: -10,-25 + 1238: -17,-25 + 1239: -19,-28 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 921: 23,7 + 922: 23,8 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleE + decals: + 1166: -9,-23 + 1167: -9,-22 + 1241: -15,-23 + 1242: -15,-22 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 1498: -6,-28 + 1499: -6,-26 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 1274: 1,-22 + 1275: 1,-21 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleN + decals: + 1178: -10,-21 + 1179: -12,-21 + 1257: -16,-21 + 1258: -20,-21 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 1497: -3,-32 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 1598: -41,-11 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleS + decals: + 1177: -10,-24 + 1240: -17,-24 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 1175: -13,-23 + 1176: -13,-22 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 1272: -7,-23 + 1273: -7,-22 + 1597: -43,-13 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 925: 21,7 + 926: 22,7 + 927: 23,7 + 933: 24,3 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 923: 21,7 + 924: 21,8 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 918: 21,8 + 919: 22,8 + 920: 23,8 + 928: 24,1 + 930: 22,5 + 1236: -14,-29 + 1237: -13,-29 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 61: -2,23 + 62: -3,23 + 63: -4,23 + 217: 15,44 + 218: 14,44 + 219: 13,44 + 257: 10,50 + 584: -34,21 + 585: -35,21 + 586: -36,21 + 587: -37,21 + 871: -53,-12 + 872: -54,-12 + 873: -55,-12 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 38: 9,14 + 39: 9,15 + 40: 9,16 + 41: 9,17 + 64: -2,26 + 66: 0,22 + 67: 0,23 + 68: 0,24 + 69: 0,25 + 235: 8,49 + 236: 8,50 + 237: 8,51 + 238: 8,52 + 239: 8,53 + 240: 8,54 + 241: 8,55 + 252: 11,53 + 314: 31,-6 + 315: 31,-5 + 316: 31,-4 + 317: 31,-3 + 318: 31,-2 + 319: 31,-1 + 320: 31,0 + 401: 19,-25 + 404: 27,-30 + 414: 3,-28 + 415: 3,-27 + 416: 3,-26 + 645: -38,-36 + 646: -38,-35 + 647: -38,-34 + 660: -37,1 + 661: -37,2 + 662: -37,3 + 663: -37,4 + 664: -37,5 + 718: -41,-3 + - node: + color: '#FFFFFFFF' + id: WarningLine + decals: + 31: -23,-4 + 32: -22,-4 + 144: 24,16 + 145: 23,16 + 146: 22,16 + 214: 15,46 + 215: 14,46 + 216: 13,46 + 242: 13,50 + 243: 7,50 + 258: 9,56 + 259: 11,56 + 407: 27,-27 + 408: 28,-27 + 409: 29,-27 + 426: 23,-23 + 427: 24,-23 + 428: 25,-23 + 429: 26,-23 + 498: -34,19 + 499: -35,19 + 500: -36,19 + 501: -37,19 + 590: -30,22 + 591: -31,22 + 724: -43,-4 + 725: -44,-4 + 726: -45,-4 + 727: -46,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarningLine + decals: + 858: 26,-37 + 859: 25,-37 + 860: 24,-37 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 34: 5,14 + 35: 5,15 + 36: 5,16 + 37: 5,17 + 65: -4,26 + 70: -6,22 + 71: -6,23 + 72: -6,24 + 73: -6,25 + 228: 12,49 + 229: 12,50 + 230: 12,51 + 231: 12,52 + 232: 12,53 + 233: 12,54 + 234: 12,55 + 253: 9,53 + 411: 1,-28 + 412: 1,-27 + 413: 1,-26 + 417: 3,-22 + 418: 3,-21 + 721: -39,-3 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + decals: + 244: 13,54 + 245: 7,54 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLineCorner + decals: + 406: 27,-29 + - node: + color: '#FFFFFFFF' + id: WarningLineCorner + decals: + 410: 26,-27 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLineCornerFlipped + decals: + 405: 27,-31 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 972: -27,-17 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 978: -11,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 977: -8,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 969: -30,-17 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 958: -16,22 + 959: -16,23 + 960: -16,24 + 966: -30,-20 + 967: -30,-19 + 968: -30,-18 + 973: -27,-16 + 974: -27,-15 + 982: -11,-1 + 983: -11,0 + 984: -11,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 975: -10,-2 + 976: -9,-2 + 1014: -30,-39 + 1015: -31,-39 + 1016: -32,-39 + 1017: -27,-37 + 1018: -28,-37 + 1019: -26,-37 + 1020: -25,-37 + 1021: -24,-37 + 1022: -23,-37 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 954: -23,25 + 955: -22,25 + 956: -21,25 + 957: -20,25 + 961: 5,26 + 962: 6,26 + 963: 7,26 + 964: 8,26 + 965: 9,26 + 970: -29,-17 + 971: -28,-17 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 979: -8,-1 + 980: -8,0 + 981: -8,1 + - node: + cleanable: True + color: '#761C0C44' + id: splatter + decals: + 797: 13.502298,-42.657906 + 798: 4.171296,-34.3466 + - node: + cleanable: True + color: '#79150050' + id: splatter + decals: + 861: 27.509422,-40.416092 + - node: + cleanable: True + color: '#9FED5812' + id: splatter + decals: + 799: 13.296297,-42.144028 + 800: 3.8275461,-36.737778 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,-1: + 0: 65535 + -1,-3: + 0: 65535 + -1,-1: + 0: 65535 + -1,-2: + 0: 65535 + -2,1: + 0: 65535 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 62271 + 1: 3264 + 0,-1: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 61441 + 1: 4094 + 1,-1: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 0,0: + 0: 65535 + 1,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 0,4: + 0: 65535 + -1,4: + 0: 65535 + -2,0: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + -4,4: + 0: 65535 + -4,5: + 0: 65535 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -1,5: + 0: 65535 + 0,5: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 0,-4: + 0: 65535 + 1,-4: + 0: 65535 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + -4,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -1,-4: + 0: 65535 + -6,4: + 0: 65535 + -6,5: + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + -7,-4: + 0: 65535 + -7,-3: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-4: + 0: 65535 + -6,-3: + 0: 65535 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 0: 65535 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -4,6: + 0: 65535 + -4,7: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,6: + 0: 63487 + 2: 2048 + -2,7: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + -5,6: + 0: 65535 + -5,7: + 0: 65535 + -3,8: + 0: 56829 + -2,8: + 0: 65535 + -2,9: + 0: 3999 + -1,8: + 0: 65535 + -1,9: + 0: 3983 + 0,8: + 0: 65535 + 0,9: + 0: 22471 + 1,8: + 0: 22015 + -7,4: + 0: 65535 + -7,5: + 0: 65535 + -7,3: + 0: 65535 + -4,9: + 0: 240 + -4,8: + 0: 503 + -3,9: + 0: 241 + 0,10: + 0: 57309 + 0,11: + 0: 65518 + 1,9: + 0: 17652 + 1,10: + 0: 62543 + 1,11: + 0: 65535 + 2,8: + 0: 52476 + 2,9: + 0: 17660 + 2,10: + 0: 65519 + 2,11: + 0: 65535 + 3,8: + 0: 65535 + 3,9: + 0: 3839 + 3,10: + 0: 65535 + 3,11: + 0: 65535 + 4,8: + 0: 65535 + 4,9: + 0: 8191 + 4,10: + 0: 13297 + 4,11: + 0: 65407 + 5,8: + 0: 30719 + 5,9: + 0: 32631 + 5,10: + 0: 10103 + 5,11: + 0: 15 + 6,8: + 0: 30511 + 6,9: + 0: 32631 + 6,10: + 0: 10103 + 6,11: + 0: 15 + 7,8: + 0: 30511 + 7,9: + 0: 32631 + 7,10: + 0: 10103 + 7,11: + 0: 15 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 + 5,4: + 0: 30719 + 5,5: + 0: 65399 + 5,6: + 0: 65535 + 5,7: + 0: 30719 + 6,4: + 0: 255 + 7,4: + 0: 1 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,2: + 0: 62805 + 6,3: + 0: 65535 + 7,3: + 0: 4369 + 8,8: + 0: 4369 + 8,9: + 0: 4369 + 8,10: + 0: 4369 + 8,11: + 0: 1 + 0,12: + 0: 61439 + 0,13: + 0: 52430 + 0,14: + 0: 2188 + 1,12: + 0: 65535 + 1,13: + 0: 65535 + 1,14: + 0: 65535 + 1,15: + 0: 12 + 2,12: + 0: 65535 + 2,13: + 0: 65535 + 2,14: + 0: 65535 + 2,15: + 0: 255 + 3,12: + 0: 65535 + 3,13: + 0: 65535 + 3,14: + 0: 14335 + 3,15: + 0: 1 + 4,12: + 0: 65535 + 4,13: + 0: 30591 + 4,14: + 0: 19 + 5,12: + 0: 4401 + -5,9: + 0: 1783 + -8,4: + 0: 65535 + -8,5: + 0: 65535 + -8,6: + 0: 65535 + -8,7: + 0: 65535 + -7,6: + 0: 65535 + -7,7: + 0: 65535 + -6,6: + 0: 65535 + -6,7: + 0: 56831 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -8,-4: + 0: 65535 + -8,-3: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 24575 + 7,0: + 0: 65535 + 7,1: + 0: 32767 + -8,8: + 0: 65535 + -8,9: + 0: 52991 + -7,8: + 0: 65535 + -7,9: + 0: 29687 + -6,8: + 0: 52701 + -6,9: + 0: 248 + -5,8: + 0: 65535 + 8,0: + 0: 30583 + 8,1: + 0: 13107 + 8,-4: + 0: 4096 + 8,-3: + 0: 29491 + 8,-2: + 0: 30583 + 8,-1: + 0: 29491 + 4,-4: + 0: 65535 + 4,-3: + 0: 64255 + 4,-2: + 0: 64511 + 4,-1: + 0: 65535 + 5,-4: + 0: 30591 + 5,-3: + 0: 65143 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 61679 + 6,-3: + 0: 65519 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 49171 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + 0,-8: + 0: 65535 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 65535 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + -4,-8: + 0: 65535 + -4,-7: + 0: 65535 + -4,-6: + 0: 65535 + -4,-5: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -3,-6: + 0: 65535 + -3,-5: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-8: + 0: 65535 + -1,-7: + 0: 65535 + -1,-6: + 0: 65535 + -1,-5: + 0: 65535 + -4,-10: + 0: 65484 + -4,-9: + 0: 65535 + -4,-12: + 0: 61166 + -4,-11: + 0: 52462 + -3,-12: + 0: 65535 + -3,-11: + 0: 65535 + -3,-10: + 0: 65535 + -3,-9: + 0: 65535 + -2,-12: + 0: 65535 + -2,-11: + 0: 61183 + -2,-10: + 0: 63244 + -2,-9: + 0: 65535 + -1,-12: + 0: 65535 + -1,-11: + 0: 65535 + -1,-10: + 0: 61455 + -1,-9: + 0: 65535 + 0,-12: + 0: 13107 + 0,-11: + 0: 48059 + 0,-10: + 0: 65485 + 0,-9: + 0: 65535 + 1,-10: + 0: 65535 + 1,-9: + 0: 65535 + 2,-10: + 0: 65535 + 2,-9: + 0: 65535 + 3,-10: + 0: 65535 + 3,-9: + 0: 65535 + -4,-13: + 0: 61166 + -4,-15: + 0: 52430 + -4,-14: + 0: 52428 + -3,-14: + 0: 65535 + -3,-13: + 0: 65535 + -3,-15: + 0: 65535 + -2,-13: + 0: 65535 + -2,-14: + 0: 61064 + -1,-15: + 0: 28672 + -1,-14: + 0: 65535 + -1,-13: + 0: 65535 + 0,-14: + 0: 13056 + 0,-13: + 0: 13107 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-8: + 0: 13119 + 3: 52416 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-8: + 0: 56543 + 3: 8992 + 6,-7: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 30719 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 7 + 9,-8: + 0: 65535 + 9,-7: + 0: 65535 + 9,-6: + 0: 4991 + 10,-8: + 0: 4340 + 10,-7: + 0: 273 + 8,-10: + 0: 65535 + 8,-9: + 0: 65535 + 4,-10: + 0: 65535 + 4,-9: + 0: 65535 + 5,-10: + 0: 65535 + 5,-9: + 0: 65535 + 6,-10: + 0: 65535 + 6,-9: + 0: 65535 + 7,-10: + 0: 65535 + 7,-9: + 0: 65535 + -9,-4: + 0: 65535 + -9,-7: + 0: 65535 + -9,-6: + 0: 65535 + -9,-5: + 0: 65535 + -8,-7: + 0: 65535 + -8,-6: + 0: 65535 + -8,-5: + 0: 65535 + -8,-8: + 0: 65535 + -7,-8: + 0: 65535 + -7,-7: + 0: 65535 + -7,-6: + 0: 65535 + -7,-5: + 0: 65535 + -6,-8: + 0: 65535 + -6,-7: + 0: 65535 + -6,-6: + 0: 65535 + -6,-5: + 0: 65535 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -5,-6: + 0: 65535 + -5,-5: + 0: 65535 + -8,-10: + 0: 65535 + -8,-9: + 0: 65535 + -7,-10: + 0: 65535 + -7,-9: + 0: 65535 + -7,-11: + 0: 63248 + -6,-11: + 0: 61440 + -6,-10: + 0: 65535 + -6,-9: + 0: 65535 + -5,-11: + 0: 12288 + -5,-10: + 0: 65331 + -5,-9: + 0: 65535 + -10,8: + 0: 2286 + -9,8: + 0: 65535 + -9,9: + 0: 142 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -9,7: + 0: 65535 + -9,6: + 0: 65535 + -11,1: + 0: 65535 + -11,2: + 0: 65535 + -11,3: + 0: 49151 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + -8,0: + 0: 65535 + -8,-2: + 0: 65535 + -8,-1: + 0: 65535 + 1,-12: + 0: 65152 + 1,-11: + 0: 65535 + 2,-12: + 0: 65520 + 2,-11: + 0: 65535 + 3,-12: + 0: 65296 + 3,-11: + 0: 65535 + 11,-8: + 0: 244 + 8,-11: + 0: 65523 + 9,-11: + 0: 13296 + 9,-10: + 0: 63347 + 9,-9: + 0: 63351 + 10,-11: + 0: 58608 + 10,-10: + 0: 65262 + 10,-9: + 0: 61166 + 11,-11: + 0: 58608 + 11,-10: + 0: 65262 + 11,-9: + 0: 61166 + 4,-12: + 0: 65280 + 4,-11: + 0: 65535 + 5,-12: + 0: 65280 + 5,-11: + 0: 65535 + 6,-12: + 0: 61440 + 6,-11: + 0: 65535 + 7,-11: + 0: 65535 + -12,-4: + 0: 65535 + -12,-3: + 0: 65535 + -12,-2: + 0: 65535 + -12,-1: + 0: 65535 + -11,-4: + 0: 65535 + -11,-3: + 0: 65535 + -11,-2: + 0: 65535 + -11,-1: + 0: 65535 + -10,-4: + 0: 65535 + -10,-3: + 0: 65535 + -10,-2: + 0: 65535 + -10,-1: + 0: 65535 + -9,-3: + 0: 65535 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + -12,-8: + 0: 65516 + -12,-7: + 0: 65535 + -12,-6: + 0: 65535 + -12,-5: + 0: 65535 + -11,-8: + 0: 65535 + -11,-7: + 0: 65535 + -11,-6: + 0: 65535 + -11,-5: + 0: 65535 + -10,-8: + 0: 65535 + -10,-7: + 0: 65535 + -10,-6: + 0: 65535 + -10,-5: + 0: 65535 + -9,-8: + 0: 65535 + -8,-12: + 0: 30512 + -8,-11: + 0: 65535 + -12,4: + 0: 3618 + 3: 204 + -11,4: + 3: 17 + 0: 35754 + -11,5: + 0: 52424 + -11,6: + 0: 52428 + -11,7: + 0: 2184 + -10,6: + 0: 65535 + -10,7: + 0: 65535 + -12,0: + 0: 65535 + -12,1: + 0: 65535 + -12,2: + 0: 65535 + -12,3: + 0: 61439 + -11,0: + 0: 65535 + -10,0: + 0: 65535 + -9,0: + 0: 65535 + -12,-9: + 0: 32768 + -11,-9: + 0: 65516 + -11,-10: + 0: 51200 + -10,-10: + 0: 65531 + -10,-9: + 0: 65535 + -9,-11: + 0: 65228 + -9,-10: + 0: 65535 + -9,-9: + 0: 65535 + -9,-12: + 0: 32768 + -14,0: + 0: 16191 + 4: 192 + 5: 49152 + -14,1: + 0: 16191 + 3: 49344 + -14,2: + 0: 16191 + 6: 192 + 3: 49152 + -14,3: + 0: 49407 + -13,0: + 0: 61423 + 4: 16 + 5: 4096 + -13,1: + 0: 61423 + 3: 4112 + -13,2: + 0: 61423 + 6: 16 + 3: 4096 + -13,3: + 0: 31999 + -15,-4: + 0: 61132 + -15,-3: + 0: 61166 + -15,-2: + 0: 2254 + -14,-4: + 0: 65535 + -14,-3: + 0: 65535 + -14,-2: + 0: 65535 + -14,-1: + 0: 61448 + -13,-4: + 0: 65535 + -13,-3: + 0: 65535 + -13,-2: + 0: 65535 + -13,-1: + 0: 64751 + -16,-8: + 0: 61440 + -16,-7: + 0: 56792 + -16,-6: + 0: 56829 + -16,-5: + 0: 63709 + -15,-8: + 0: 61440 + -15,-7: + 0: 39320 + -15,-6: + 0: 6649 + -15,-5: + 0: 39057 + -14,-8: + 0: 61440 + -14,-7: + 0: 65256 + -14,-6: + 0: 61439 + -14,-5: + 0: 65535 + -13,-8: + 0: 61440 + -13,-7: + 0: 65528 + -13,-6: + 0: 65535 + -13,-5: + 0: 65535 + -18,-8: + 0: 61440 + -18,-7: + 0: 56793 + -18,-6: + 0: 56829 + -18,-5: + 0: 63965 + -17,-8: + 0: 61440 + -17,-7: + 0: 56792 + -17,-6: + 0: 56829 + -17,-5: + 0: 63709 + 12,-11: + 0: 58608 + 12,-10: + 0: 65262 + 12,-9: + 0: 61166 + 13,-11: + 0: 8752 + 13,-10: + 0: 12834 + 13,-9: + 0: 8738 + 12,-8: + 0: 244 + 13,-8: + 0: 50 + -15,0: + 0: 17484 + -15,1: + 0: 17484 + -15,2: + 0: 17484 + -15,3: + 0: 12 + -15,-1: + 0: 16384 + -14,4: + 0: 192 + -13,4: + 0: 116 + -2,-15: + 0: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.554012 + - 81.084145 + - 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 + - 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 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: BecomesStation + id: Omega + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AcousticGuitarInstrument + entities: + - uid: 1755 + components: + - type: Transform + pos: -10.386757,8.623476 + parent: 4812 +- proto: AirAlarm + entities: + - uid: 4981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 4812 + - type: DeviceList + devices: + - 6621 + - 5047 + - 6553 + - 8806 + - 5025 + - 6554 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 4982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-18.5 + parent: 4812 + - type: DeviceList + devices: + - 4941 + - 4875 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 6692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-26.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 7234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 4812 + - type: DeviceList + devices: + - 4890 + - 4876 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 7236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-28.5 + parent: 4812 + - type: DeviceList + devices: + - 8838 + - 8836 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 7241 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 4812 + - type: DeviceList + devices: + - 6686 + - 7227 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 7249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 7284 + components: + - type: Transform + pos: -3.5,27.5 + parent: 4812 + - type: DeviceList + devices: + - 12226 + - 1853 + - 1852 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-15.5 + parent: 4812 + - type: DeviceList + devices: + - 12170 + - 12027 + - 12026 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-14.5 + parent: 4812 + - type: DeviceList + devices: + - 12028 + - 12025 + - 12172 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-11.5 + parent: 4812 + - type: DeviceList + devices: + - 12175 + - 12029 + - 12024 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12176 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 4812 + - type: DeviceList + devices: + - 12177 + - 12032 + - 12033 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-0.5 + parent: 4812 + - type: DeviceList + devices: + - 10758 + - 10757 + - 12179 + - 10752 + - 10753 + - 10754 + - 10755 + - 10756 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12182 + components: + - type: Transform + pos: -42.5,13.5 + parent: 4812 + - type: DeviceList + devices: + - 12181 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12183 + components: + - type: Transform + pos: -28.5,6.5 + parent: 4812 + - type: DeviceList + devices: + - 12184 + - 12035 + - 12036 + - 8690 + - 10752 + - 10753 + - 10754 + - 10755 + - 10756 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 4812 + - type: DeviceList + devices: + - 8691 + - 8690 + - 12189 + - 12188 + - 12185 + - 3708 + - 8787 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 4812 + - type: DeviceList + devices: + - 12192 + - 8691 + - 12034 + - 11962 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 4812 + - type: DeviceList + devices: + - 6494 + - 6495 + - 12195 + - 8156 + - 8157 + - 12041 + - 12042 + - 12188 + - 12189 + - 12197 + - 12196 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 4812 + - type: DeviceList + devices: + - 12200 + - 12196 + - 12197 + - 1685 + - 1686 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12202 + components: + - type: Transform + pos: -24.5,9.5 + parent: 4812 + - type: DeviceList + devices: + - 12201 + - 8156 + - 8157 + - 7784 + - 8154 + - 8155 + - 12205 + - 12204 + - 12039 + - 12040 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12206 + components: + - type: Transform + pos: -20.5,13.5 + parent: 4812 + - type: DeviceList + devices: + - 12208 + - 12204 + - 12205 + - 8562 + - 8563 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,13.5 + parent: 4812 + - type: DeviceList + devices: + - 12211 + - 12212 + - 7782 + - 7783 + - 7911 + - 7910 + - 7909 + - 7914 + - 7913 + - 7912 + - 7874 + - 7872 + - 7871 + - 7873 + - 7887 + - 7886 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12213 + components: + - type: Transform + pos: -37.5,13.5 + parent: 4812 + - type: DeviceList + devices: + - 7905 + - 7907 + - 12214 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,15.5 + parent: 4812 + - type: DeviceList + devices: + - 12216 + - 12212 + - 7906 + - 7908 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12219 + components: + - type: Transform + pos: -31.5,33.5 + parent: 4812 + - type: DeviceList + devices: + - 12218 + - 7858 + - 7856 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12220 + components: + - type: Transform + pos: -18.5,21.5 + parent: 4812 + - type: DeviceList + devices: + - 8155 + - 8154 + - 2693 + - 2695 + - 12222 + - 8307 + - 8306 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12223 + components: + - type: Transform + pos: -5.5,21.5 + parent: 4812 + - type: DeviceList + devices: + - 2693 + - 2695 + - 2782 + - 2783 + - 12225 + - 1817 + - 1816 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,26.5 + parent: 4812 + - type: DeviceList + devices: + - 12230 + - 2231 + - 1928 + - 2474 + - 2441 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 4812 + - type: DeviceList + devices: + - 12231 + - 2473 + - 2472 + - 2442 + - 2475 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12234 + components: + - type: Transform + pos: 2.5,35.5 + parent: 4812 + - type: DeviceList + devices: + - 12237 + - 2473 + - 2472 + - 2231 + - 1928 + - 2443 + - 2444 + - 2447 + - 2448 + - 2446 + - 2445 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,24.5 + parent: 4812 + - type: DeviceList + devices: + - 12242 + - 1927 + - 2074 + - 2071 + - 2072 + - 2073 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12245 + components: + - type: Transform + pos: 11.5,21.5 + parent: 4812 + - type: DeviceList + devices: + - 12243 + - 2787 + - 2786 + - 2476 + - 963 + - 2783 + - 2782 + - 1770 + - 3782 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 4812 + - type: DeviceList + devices: + - 4122 + - 4117 + - 12251 + - 2852 + - 2853 + - 2787 + - 2786 + - 4439 + - 4440 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,21.5 + parent: 4812 + - type: DeviceList + devices: + - 3257 + - 12254 + - 3021 + - 3024 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,23.5 + parent: 4812 + - type: DeviceList + devices: + - 3016 + - 3020 + - 3017 + - 3019 + - 12257 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,31.5 + parent: 4812 + - type: DeviceList + devices: + - 12259 + - 3001 + - 2983 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12260 + components: + - type: Transform + pos: 9.5,47.5 + parent: 4812 + - type: DeviceList + devices: + - 3814 + - 12261 + - 3944 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,45.5 + parent: 4812 + - type: DeviceList + devices: + - 3816 + - 12263 + - 3841 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,44.5 + parent: 4812 + - type: DeviceList + devices: + - 3813 + - 12264 + - 3835 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12266 + components: + - type: Transform + pos: 9.5,51.5 + parent: 4812 + - type: DeviceList + devices: + - 3815 + - 3838 + - 12267 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 4812 + - type: DeviceList + devices: + - 4426 + - 4423 + - 12274 + - 4122 + - 4117 + - 4442 + - 4441 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 4812 + - type: DeviceList + devices: + - 12277 + - 4424 + - 4425 + - 4380 + - 4381 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12278 + components: + - type: Transform + pos: 25.5,2.5 + parent: 4812 + - type: DeviceList + devices: + - 12279 + - 4425 + - 4424 + - 4444 + - 4443 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12282 + components: + - type: Transform + pos: 23.5,6.5 + parent: 4812 + - type: DeviceList + devices: + - 4226 + - 12281 + - 4231 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,0.5 + parent: 4812 + - type: DeviceList + devices: + - 4205 + - 12284 + - 4203 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12285 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 4812 + - type: DeviceList + devices: + - 12287 + - 4423 + - 4426 + - 6415 + - 6414 + - 6417 + - 6416 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12289 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 4812 + - type: DeviceList + devices: + - 4645 + - 4644 + - 6500 + - 6499 + - 4646 + - 4647 + - 5792 + - 6414 + - 6415 + - 12288 + - 6420 + - 6419 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12293 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 4812 + - type: DeviceList + devices: + - 6497 + - 6496 + - 6500 + - 6499 + - 12295 + - 12038 + - 12037 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12296 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 4812 + - type: DeviceList + devices: + - 1511 + - 12297 + - 1512 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12299 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 4812 + - type: DeviceList + devices: + - 12298 + - 849 + - 858 + - 857 + - 848 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 4812 + - type: DeviceList + devices: + - 931 + - 932 + - 12300 + - 782 + - 783 + - 784 + - 349 + - 351 + - 361 + - 354 + - 353 + - 352 + - 350 + - 818 + - 815 + - 817 + - 816 + - 864 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12304 + components: + - type: Transform + pos: -7.5,10.5 + parent: 4812 + - type: DeviceList + devices: + - 877 + - 885 + - 12303 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12307 + components: + - type: Transform + pos: 6.5,10.5 + parent: 4812 + - type: DeviceList + devices: + - 847 + - 846 + - 12306 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12308 + components: + - type: Transform + pos: 4.5,1.5 + parent: 4812 + - type: DeviceList + devices: + - 12309 + - 782 + - 783 + - 784 + - 835 + - 814 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 4812 + - type: DeviceList + devices: + - 12313 + - 1940 + - 1939 + - 1938 + - 710 + - 711 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12316 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 4812 + - type: DeviceList + devices: + - 5308 + - 4644 + - 4645 + - 4646 + - 4647 + - 5791 + - 5793 + - 12315 + - 6687 + - 6461 + - 8783 + - 8803 + - 8779 + - 8778 + - 8711 + - 8591 + - 8758 + - 8770 + - 5028 + - 328 + - 3582 + - 2759 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12319 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 4812 + - type: DeviceList + devices: + - 12318 + - 5071 + - 5072 + - 6455 + - 3781 + - 8783 + - 8803 + - 8779 + - 8778 + - 8711 + - 8591 + - 8758 + - 8770 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 4812 + - type: DeviceList + devices: + - 12321 + - 5072 + - 5071 + - 5223 + - 5222 + - 5224 + - 5225 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12325 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 4812 + - type: DeviceList + devices: + - 6842 + - 6839 + - 12326 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12327 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 4812 + - type: DeviceList + devices: + - 6841 + - 6840 + - 12328 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-29.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12341 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 4812 + - type: DeviceList + devices: + - 6585 + - 6584 + - 12343 + - 7380 + - 7382 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12344 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 4812 + - type: DeviceList + devices: + - 7088 + - 7087 + - 12345 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12346 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 4812 + - type: DeviceList + devices: + - 5700 + - 5697 + - 12347 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12350 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 4812 + - type: DeviceList + devices: + - 5699 + - 5698 + - 12349 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12352 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 4812 + - type: DeviceList + devices: + - 5715 + - 5716 + - 12351 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12353 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 4812 + - type: DeviceList + devices: + - 5600 + - 5599 + - 12355 + - 5718 + - 5719 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-30.5 + parent: 4812 + - type: DeviceList + devices: + - 12357 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12358 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 4812 + - type: DeviceList + devices: + - 5765 + - 5763 + - 12359 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12361 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 4812 + - type: DeviceList + devices: + - 5766 + - 5764 + - 12360 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12362 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 4812 + - type: DeviceList + devices: + - 12363 + - 9007 + - 8991 + - type: AtmosDevice + joinedGrid: 4812 +- proto: AirAlarmElectronics + entities: + - uid: 10719 + components: + - type: Transform + pos: -30.29477,5.0635805 + parent: 4812 + - uid: 10720 + components: + - type: Transform + pos: -30.216644,4.9385805 + parent: 4812 +- proto: AirCanister + entities: + - uid: 3842 + components: + - type: Transform + pos: 15.5,44.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9041 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9671 + components: + - type: Transform + pos: -31.5,4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9672 + components: + - type: Transform + pos: -31.5,5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12398 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12399 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: Airlock + entities: + - uid: 1531 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,0.5 + parent: 4812 + - uid: 1534 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,3.5 + parent: 4812 + - uid: 4116 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,7.5 + parent: 4812 + - uid: 6694 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-34.5 + parent: 4812 + - uid: 7025 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-34.5 + parent: 4812 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 7800 + components: + - type: Transform + pos: -34.5,18.5 + parent: 4812 + - uid: 7801 + components: + - type: Transform + pos: -32.5,17.5 + parent: 4812 + - uid: 7802 + components: + - type: Transform + pos: -34.5,13.5 + parent: 4812 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 3444 + components: + - type: Transform + pos: -33.5,0.5 + parent: 4812 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 8862 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-36.5 + parent: 4812 + - uid: 9563 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-0.5 + parent: 4812 + - uid: 9566 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,2.5 + parent: 4812 +- proto: AirlockBarLocked + entities: + - uid: 325 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,7.5 + parent: 4812 +- proto: AirlockBrigGlassLocked + entities: + - uid: 906 + components: + - type: Transform + pos: -17.5,18.5 + parent: 4812 + - uid: 7788 + components: + - type: Transform + pos: -24.5,13.5 + parent: 4812 + - uid: 7789 + components: + - type: Transform + pos: -24.5,14.5 + parent: 4812 + - uid: 7790 + components: + - type: Transform + pos: -27.5,13.5 + parent: 4812 + - uid: 7791 + components: + - type: Transform + pos: -27.5,14.5 + parent: 4812 +- proto: AirlockCaptainGlassLocked + entities: + - uid: 2417 + components: + - type: Transform + pos: -9.5,23.5 + parent: 4812 +- proto: AirlockCaptainLocked + entities: + - uid: 2419 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,26.5 + parent: 4812 + - uid: 2463 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,28.5 + parent: 4812 +- proto: AirlockCargoGlassLocked + entities: + - uid: 2858 + components: + - type: Transform + pos: 19.5,16.5 + parent: 4812 + - uid: 2859 + components: + - type: Transform + pos: 16.5,22.5 + parent: 4812 + - uid: 2860 + components: + - type: Transform + pos: 15.5,22.5 + parent: 4812 + - uid: 4427 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 4812 + - uid: 4428 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 4812 +- proto: AirlockChapelLocked + entities: + - uid: 329 + components: + - type: MetaData + flags: PvsPriority + name: Chaplain's Room + - type: Transform + pos: -25.5,-36.5 + parent: 4812 + - uid: 6792 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-36.5 + parent: 4812 + - uid: 6793 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-34.5 + parent: 4812 +- proto: AirlockChemistryLocked + entities: + - uid: 6617 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-19.5 + parent: 4812 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 9887 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 4812 +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 7434 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 4812 +- proto: AirlockCommandGlassLocked + entities: + - uid: 1855 + components: + - type: Transform + pos: 1.5,29.5 + parent: 4812 + - uid: 2449 + components: + - type: Transform + pos: -8.5,21.5 + parent: 4812 + - uid: 2450 + components: + - type: Transform + pos: -7.5,21.5 + parent: 4812 + - uid: 2451 + components: + - type: Transform + pos: 2.5,21.5 + parent: 4812 + - uid: 2452 + components: + - type: Transform + pos: 3.5,21.5 + parent: 4812 + - uid: 2454 + components: + - type: Transform + pos: 2.5,31.5 + parent: 4812 + - uid: 2455 + components: + - type: Transform + pos: 3.5,31.5 + parent: 4812 + - uid: 2456 + components: + - type: MetaData + name: AI Sat + - type: Transform + pos: 4.5,32.5 + parent: 4812 + - uid: 2458 + components: + - type: Transform + pos: -7.5,31.5 + parent: 4812 + - uid: 2459 + components: + - type: Transform + pos: -8.5,31.5 + parent: 4812 + - uid: 2643 + components: + - type: Transform + pos: -6.5,29.5 + parent: 4812 +- proto: AirlockCommandLocked + entities: + - uid: 5174 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,23.5 + parent: 4812 + - uid: 11928 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,18.5 + parent: 4812 +- proto: AirlockDetectiveLocked + entities: + - uid: 5358 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-13.5 + parent: 4812 + - uid: 5359 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-17.5 + parent: 4812 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 9565 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 4812 + - uid: 9662 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 4812 + - uid: 9892 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 4812 + - uid: 9894 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 4812 +- proto: AirlockEngineeringLocked + entities: + - uid: 901 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,9.5 + parent: 4812 + - uid: 3726 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,2.5 + parent: 4812 + - uid: 4370 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,0.5 + parent: 4812 + - uid: 4371 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,3.5 + parent: 4812 + - uid: 5912 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-32.5 + parent: 4812 + - uid: 6885 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-32.5 + parent: 4812 + - uid: 7956 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,7.5 + parent: 4812 + - uid: 9564 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-4.5 + parent: 4812 + - uid: 9663 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-8.5 + parent: 4812 + - uid: 9664 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-8.5 + parent: 4812 + - uid: 9888 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-12.5 + parent: 4812 + - uid: 9958 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-20.5 + parent: 4812 + - uid: 10165 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-23.5 + parent: 4812 + - uid: 11386 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-37.5 + parent: 4812 + - uid: 11688 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 4812 +- proto: AirlockExternalGlass + entities: + - uid: 3761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-43.5 + parent: 4812 + - uid: 3763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-43.5 + parent: 4812 + - uid: 3764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-50.5 + parent: 4812 + - uid: 3765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 4812 + - uid: 3777 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 4812 + - uid: 3778 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 4812 + - uid: 3779 + components: + - type: Transform + pos: 32.5,0.5 + parent: 4812 + - uid: 3780 + components: + - type: Transform + pos: 32.5,2.5 + parent: 4812 + - uid: 9614 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 4812 + - uid: 9651 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 4812 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 6362 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 4812 + - uid: 6363 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 4812 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 2919 + components: + - type: Transform + pos: 25.5,14.5 + parent: 4812 + - uid: 2920 + components: + - type: Transform + pos: 28.5,14.5 + parent: 4812 + - uid: 3040 + components: + - type: Transform + pos: 21.5,27.5 + parent: 4812 + - uid: 3041 + components: + - type: Transform + pos: 21.5,25.5 + parent: 4812 +- proto: AirlockExternalGlassLocked + entities: + - uid: 10406 + components: + - type: Transform + pos: -56.5,-22.5 + parent: 4812 + - uid: 11139 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 4812 + - uid: 11141 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 4812 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 3760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-50.5 + parent: 4812 + - uid: 3762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-43.5 + parent: 4812 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 3190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 4812 + - uid: 3191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,25.5 + parent: 4812 + - uid: 4134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 4812 + - uid: 4135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 4812 + - uid: 4136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,0.5 + parent: 4812 + - uid: 4137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,2.5 + parent: 4812 + - uid: 4736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-43.5 + parent: 4812 + - uid: 4737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-50.5 + parent: 4812 + - uid: 9656 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 4812 + - uid: 12107 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 4812 +- proto: AirlockExternalLocked + entities: + - uid: 2737 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,31.5 + parent: 4812 + - uid: 2814 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,33.5 + parent: 4812 + - uid: 3349 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,10.5 + parent: 4812 + - uid: 3350 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,10.5 + parent: 4812 + - uid: 3686 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,44.5 + parent: 4812 + - uid: 3687 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,45.5 + parent: 4812 + - uid: 10405 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,-22.5 + parent: 4812 +- proto: AirlockFreezer + entities: + - uid: 3119 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,35.5 + parent: 4812 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 716 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-4.5 + parent: 4812 +- proto: AirlockGlass + entities: + - uid: 333 + components: + - type: Transform + pos: -3.5,15.5 + parent: 4812 + - uid: 334 + components: + - type: Transform + pos: -2.5,15.5 + parent: 4812 + - uid: 335 + components: + - type: Transform + pos: -1.5,15.5 + parent: 4812 + - uid: 905 + components: + - type: Transform + pos: -21.5,16.5 + parent: 4812 + - uid: 1079 + components: + - type: Transform + pos: -24.5,1.5 + parent: 4812 + - uid: 1080 + components: + - type: Transform + pos: -24.5,2.5 + parent: 4812 + - uid: 1081 + components: + - type: Transform + pos: -21.5,9.5 + parent: 4812 + - uid: 1082 + components: + - type: Transform + pos: -21.5,10.5 + parent: 4812 + - uid: 1098 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 4812 + - uid: 4378 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 4812 + - uid: 4379 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 4812 + - uid: 4382 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 4812 + - uid: 4383 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 4812 + - uid: 4384 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 4812 + - uid: 4714 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 4812 + - uid: 4997 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 4812 + - uid: 4998 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 4812 + - uid: 5274 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 4812 + - uid: 5275 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 4812 + - uid: 5276 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 4812 + - uid: 6673 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 4812 + - uid: 6674 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 4812 + - uid: 7349 + components: + - type: Transform + pos: -1.5,12.5 + parent: 4812 + - uid: 7386 + components: + - type: Transform + pos: -3.5,12.5 + parent: 4812 + - uid: 7392 + components: + - type: Transform + pos: -2.5,12.5 + parent: 4812 + - uid: 8158 + components: + - type: Transform + pos: -30.5,28.5 + parent: 4812 + - uid: 8159 + components: + - type: Transform + pos: -26.5,28.5 + parent: 4812 + - uid: 9660 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 4812 + - uid: 9661 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 4812 +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 723 + components: + - type: Transform + pos: 6.5,18.5 + parent: 4812 + - uid: 2460 + components: + - type: Transform + pos: 4.5,25.5 + parent: 4812 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 2461 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,27.5 + parent: 4812 + - uid: 2462 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,28.5 + parent: 4812 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 7935 + components: + - type: Transform + pos: -22.5,26.5 + parent: 4812 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 7934 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,25.5 + parent: 4812 + - uid: 7936 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,21.5 + parent: 4812 + - uid: 8242 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,27.5 + parent: 4812 +- proto: AirlockHydroGlassLocked + entities: + - uid: 307 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 4812 + - uid: 308 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 4812 +- proto: AirlockJanitorLocked + entities: + - uid: 720 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-10.5 + parent: 4812 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 715 + components: + - type: Transform + pos: 3.5,1.5 + parent: 4812 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 7949 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,6.5 + parent: 4812 + - uid: 8686 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,0.5 + parent: 4812 +- proto: AirlockMaintBarLocked + entities: + - uid: 324 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,7.5 + parent: 4812 +- proto: AirlockMaintCaptainLocked + entities: + - uid: 2418 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,24.5 + parent: 4812 +- proto: AirlockMaintCargoLocked + entities: + - uid: 2741 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,24.5 + parent: 4812 +- proto: AirlockMaintChapelLocked + entities: + - uid: 6790 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-31.5 + parent: 4812 + - uid: 6791 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-31.5 + parent: 4812 +- proto: AirlockMaintCommandLocked + entities: + - uid: 7932 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,21.5 + parent: 4812 +- proto: AirlockMaintEngiLocked + entities: + - uid: 8683 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-10.5 + parent: 4812 + - uid: 8684 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-10.5 + parent: 4812 + - uid: 8685 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-6.5 + parent: 4812 + - uid: 9830 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,-15.5 + parent: 4812 +- proto: AirlockMaintGlassLocked + entities: + - uid: 1935 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 4812 + - uid: 1936 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 4812 +- proto: AirlockMaintHydroLocked + entities: + - uid: 309 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-4.5 + parent: 4812 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 719 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-5.5 + parent: 4812 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 717 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-1.5 + parent: 4812 + - uid: 718 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-6.5 + parent: 4812 +- proto: AirlockMaintLocked + entities: + - uid: 336 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-8.5 + parent: 4812 + - uid: 337 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-3.5 + parent: 4812 + - uid: 338 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,2.5 + parent: 4812 + - uid: 339 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,13.5 + parent: 4812 + - uid: 340 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,14.5 + parent: 4812 + - uid: 341 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,10.5 + parent: 4812 + - uid: 342 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-4.5 + parent: 4812 + - uid: 343 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-10.5 + parent: 4812 + - uid: 344 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,3.5 + parent: 4812 + - uid: 1252 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,2.5 + parent: 4812 + - uid: 2882 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,21.5 + parent: 4812 + - uid: 4372 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,3.5 + parent: 4812 + - uid: 4374 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,10.5 + parent: 4812 + - uid: 4375 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,0.5 + parent: 4812 + - uid: 4376 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-7.5 + parent: 4812 + - uid: 4377 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-7.5 + parent: 4812 + - uid: 5392 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-13.5 + parent: 4812 + - uid: 5399 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-27.5 + parent: 4812 + - uid: 5838 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-30.5 + parent: 4812 + - uid: 6982 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-33.5 + parent: 4812 + - uid: 7054 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-21.5 + parent: 4812 + - uid: 7954 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,8.5 + parent: 4812 + - uid: 8681 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-11.5 + parent: 4812 + - uid: 8848 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-31.5 + parent: 4812 + - uid: 8861 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-26.5 + parent: 4812 + - uid: 8866 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-34.5 + parent: 4812 + - uid: 8867 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-39.5 + parent: 4812 + - uid: 10157 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-22.5 + parent: 4812 + - uid: 10487 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-26.5 + parent: 4812 + - uid: 11300 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-35.5 + parent: 4812 + - uid: 11326 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-34.5 + parent: 4812 + - uid: 11350 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-34.5 + parent: 4812 + - uid: 11434 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-35.5 + parent: 4812 + - uid: 11676 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-37.5 + parent: 4812 + - uid: 11802 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-2.5 + parent: 4812 +- proto: AirlockMaintMedLocked + entities: + - uid: 6788 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-23.5 + parent: 4812 + - uid: 7336 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-29.5 + parent: 4812 +- proto: AirlockMaintRnDLocked + entities: + - uid: 5497 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-15.5 + parent: 4812 + - uid: 5498 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-29.5 + parent: 4812 + - uid: 5499 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-29.5 + parent: 4812 + - uid: 5787 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-29.5 + parent: 4812 +- proto: AirlockMaintSecLocked + entities: + - uid: 7806 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,9.5 + parent: 4812 +- proto: AirlockMaintTheatreLocked + entities: + - uid: 714 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,10.5 + parent: 4812 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 1933 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 4812 + - uid: 1934 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 4812 + - uid: 7411 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 4812 + - uid: 7412 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 4812 + - uid: 7413 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 4812 + - uid: 7433 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 4812 +- proto: AirlockMedicalLocked + entities: + - uid: 7410 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-26.5 + parent: 4812 + - uid: 7414 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-17.5 + parent: 4812 + - uid: 7415 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-19.5 + parent: 4812 + - uid: 7416 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-13.5 + parent: 4812 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 3015 + components: + - type: Transform + pos: 16.5,33.5 + parent: 4812 +- proto: AirlockQuartermasterLocked + entities: + - uid: 2817 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,28.5 + parent: 4812 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 5555 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 4812 + - uid: 5598 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 4812 +- proto: AirlockSalvageLocked + entities: + - uid: 2921 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,14.5 + parent: 4812 +- proto: AirlockScienceGlassLocked + entities: + - uid: 5488 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 4812 + - uid: 5489 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 4812 + - uid: 5490 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 4812 + - uid: 5492 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 4812 + - uid: 5493 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 4812 + - uid: 5494 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 4812 + - uid: 5495 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 4812 + - uid: 5496 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 4812 + - uid: 5771 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 4812 + - uid: 5797 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 4812 + - uid: 5798 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 4812 +- proto: AirlockScienceLocked + entities: + - uid: 5396 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-20.5 + parent: 4812 + - uid: 5484 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-21.5 + parent: 4812 + - uid: 5485 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-21.5 + parent: 4812 + - uid: 5486 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-20.5 + parent: 4812 + - uid: 5487 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-24.5 + parent: 4812 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 4429 + components: + - type: Transform + pos: 30.5,1.5 + parent: 4812 + - uid: 5304 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 4812 + - uid: 5305 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 4812 + - uid: 7792 + components: + - type: Transform + pos: -27.5,11.5 + parent: 4812 + - uid: 7793 + components: + - type: Transform + pos: -32.5,11.5 + parent: 4812 + - uid: 7794 + components: + - type: Transform + pos: -29.5,21.5 + parent: 4812 + - uid: 7795 + components: + - type: Transform + pos: -30.5,21.5 + parent: 4812 + - uid: 7798 + components: + - type: Transform + pos: -26.5,25.5 + parent: 4812 + - uid: 7799 + components: + - type: Transform + pos: -30.5,25.5 + parent: 4812 +- proto: AirlockServiceLocked + entities: + - uid: 6675 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-20.5 + parent: 4812 +- proto: AirlockTheatreLocked + entities: + - uid: 713 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-0.5 + parent: 4812 + - uid: 886 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,2.5 + parent: 4812 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 3773 + components: + - type: Transform + pos: -36.5,-36.5 + parent: 4812 + - uid: 4007 + components: + - type: Transform + pos: -35.5,-33.5 + parent: 4812 +- proto: AirlockVirologyLocked + entities: + - uid: 3771 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-33.5 + parent: 4812 +- proto: AirSensor + entities: + - uid: 8805 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 4812 + - uid: 8806 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 4812 + - uid: 12170 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 4812 + - uid: 12172 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 4812 + - uid: 12175 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 4812 + - uid: 12177 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 4812 + - uid: 12179 + components: + - type: Transform + pos: -40.5,3.5 + parent: 4812 + - uid: 12181 + components: + - type: Transform + pos: -44.5,16.5 + parent: 4812 + - uid: 12184 + components: + - type: Transform + pos: -34.5,2.5 + parent: 4812 + - uid: 12185 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 4812 + - uid: 12192 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 4812 + - uid: 12195 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 4812 + - uid: 12200 + components: + - type: Transform + pos: -23.5,3.5 + parent: 4812 + - uid: 12201 + components: + - type: Transform + pos: -22.5,12.5 + parent: 4812 + - uid: 12208 + components: + - type: Transform + pos: -20.5,8.5 + parent: 4812 + - uid: 12211 + components: + - type: Transform + pos: -31.5,16.5 + parent: 4812 + - uid: 12214 + components: + - type: Transform + pos: -38.5,11.5 + parent: 4812 + - uid: 12216 + components: + - type: Transform + pos: -35.5,16.5 + parent: 4812 + - uid: 12218 + components: + - type: Transform + pos: -31.5,29.5 + parent: 4812 + - uid: 12222 + components: + - type: Transform + pos: -15.5,19.5 + parent: 4812 + - uid: 12225 + components: + - type: Transform + pos: -4.5,16.5 + parent: 4812 + - uid: 12226 + components: + - type: Transform + pos: -2.5,23.5 + parent: 4812 + - uid: 12230 + components: + - type: Transform + pos: -7.5,24.5 + parent: 4812 + - uid: 12231 + components: + - type: Transform + pos: 2.5,24.5 + parent: 4812 + - uid: 12237 + components: + - type: Transform + pos: -5.5,32.5 + parent: 4812 + - uid: 12239 + components: + - type: Transform + pos: 5.5,22.5 + parent: 4812 + - uid: 12242 + components: + - type: Transform + pos: 5.5,26.5 + parent: 4812 + - uid: 12243 + components: + - type: Transform + pos: 12.5,20.5 + parent: 4812 + - uid: 12247 + components: + - type: Transform + pos: 17.5,15.5 + parent: 4812 + - uid: 12251 + components: + - type: Transform + pos: 11.5,12.5 + parent: 4812 + - uid: 12254 + components: + - type: Transform + pos: 18.5,17.5 + parent: 4812 + - uid: 12257 + components: + - type: Transform + pos: 20.5,23.5 + parent: 4812 + - uid: 12259 + components: + - type: Transform + pos: 17.5,30.5 + parent: 4812 + - uid: 12261 + components: + - type: Transform + pos: 10.5,45.5 + parent: 4812 + - uid: 12263 + components: + - type: Transform + pos: 14.5,45.5 + parent: 4812 + - uid: 12264 + components: + - type: Transform + pos: 6.5,45.5 + parent: 4812 + - uid: 12267 + components: + - type: Transform + pos: 10.5,49.5 + parent: 4812 + - uid: 12274 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 4812 + - uid: 12277 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 4812 + - uid: 12279 + components: + - type: Transform + pos: 25.5,0.5 + parent: 4812 + - uid: 12281 + components: + - type: Transform + pos: 23.5,5.5 + parent: 4812 + - uid: 12284 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 4812 + - uid: 12287 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 4812 + - uid: 12288 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 4812 + - uid: 12292 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 4812 + - uid: 12295 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 4812 + - uid: 12297 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 4812 + - uid: 12298 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 4812 + - uid: 12300 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 4812 + - uid: 12303 + components: + - type: Transform + pos: -7.5,6.5 + parent: 4812 + - uid: 12306 + components: + - type: Transform + pos: 2.5,5.5 + parent: 4812 + - uid: 12309 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 4812 + - uid: 12313 + components: + - type: Transform + pos: -0.5,13.5 + parent: 4812 + - uid: 12315 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 4812 + - uid: 12318 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 4812 + - uid: 12321 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 4812 + - uid: 12326 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 4812 + - uid: 12328 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 4812 + - uid: 12333 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 4812 + - uid: 12343 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 4812 + - uid: 12345 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 4812 + - uid: 12347 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 4812 + - uid: 12349 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 4812 + - uid: 12351 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 4812 + - uid: 12355 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 4812 + - uid: 12357 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 4812 + - uid: 12359 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 4812 + - uid: 12360 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 4812 + - uid: 12363 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 4812 +- proto: AltarSpawner + entities: + - uid: 4008 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 4812 +- proto: AmeController + entities: + - uid: 10778 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 4812 +- proto: AmeJar + entities: + - uid: 4233 + components: + - type: Transform + pos: -42.336273,-2.370503 + parent: 4812 +- proto: AnomalyScanner + entities: + - uid: 6357 + components: + - type: Transform + pos: 31.47904,-24.269451 + parent: 4812 + - uid: 6365 + components: + - type: Transform + pos: 31.63529,-24.472576 + parent: 4812 +- proto: APCBasic + entities: + - uid: 903 + components: + - type: MetaData + name: Hydroponics & Janitor Closet APC + - type: Transform + pos: -8.5,-2.5 + parent: 4812 + - uid: 904 + components: + - type: MetaData + name: Theater APC + - type: Transform + pos: -12.5,14.5 + parent: 4812 + - uid: 1022 + components: + - type: MetaData + name: Kitchen Freezer APC + - type: Transform + pos: 7.5,-8.5 + parent: 4812 + - uid: 1549 + components: + - type: MetaData + name: Bar APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 4812 + - uid: 2077 + components: + - type: MetaData + name: Main Hall North APC + - type: Transform + pos: 0.5,21.5 + parent: 4812 + - uid: 2078 + components: + - type: MetaData + name: Bridge APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,31.5 + parent: 4812 + - uid: 2079 + components: + - type: MetaData + name: HoP Office APC + - type: Transform + pos: 9.5,27.5 + parent: 4812 + - uid: 2366 + components: + - type: MetaData + name: Captain's Lair APC + - type: Transform + pos: -14.5,25.5 + parent: 4812 + - uid: 2832 + components: + - type: MetaData + name: Maint North West APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 4812 + - uid: 3113 + components: + - type: MetaData + name: Cargo Bay APC + - type: Transform + pos: 17.5,22.5 + parent: 4812 + - uid: 3883 + components: + - type: MetaData + name: AI Core APC + - type: Transform + pos: 11.5,51.5 + parent: 4812 + - uid: 4246 + components: + - type: MetaData + name: Departures APC + - type: Transform + pos: 22.5,-1.5 + parent: 4812 + - uid: 4968 + components: + - type: MetaData + name: Morgue APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 4812 + - uid: 4969 + components: + - type: MetaData + name: Genetics APC + - type: Transform + pos: -15.5,-14.5 + parent: 4812 + - uid: 4970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 4812 + - uid: 4971 + components: + - type: MetaData + name: Surgery APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-25.5 + parent: 4812 + - uid: 4972 + components: + - type: MetaData + name: Medical APC + - type: Transform + pos: -18.5,-19.5 + parent: 4812 + - uid: 5273 + components: + - type: MetaData + name: Arrivals APC + - type: Transform + pos: -8.5,-33.5 + parent: 4812 + - uid: 5970 + components: + - type: MetaData + name: RND APC + - type: Transform + pos: 6.5,-19.5 + parent: 4812 + - uid: 5971 + components: + - type: MetaData + name: Toxins APC + - type: Transform + pos: 28.5,-21.5 + parent: 4812 + - uid: 6064 + components: + - type: MetaData + name: Robotics APC + - type: Transform + pos: 13.5,-22.5 + parent: 4812 + - uid: 6118 + components: + - type: MetaData + name: Detective's Office APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 4812 + - uid: 6149 + components: + - type: MetaData + name: Sci Server Room APC + - type: Transform + pos: 13.5,-16.5 + parent: 4812 + - uid: 6844 + components: + - type: MetaData + name: Chapel APC + - type: Transform + pos: -17.5,-31.5 + parent: 4812 + - uid: 6898 + components: + - type: MetaData + name: CMO Office APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 4812 + - uid: 7090 + components: + - type: MetaData + name: Main Hall South West APC + - type: Transform + pos: -24.5,-10.5 + parent: 4812 + - uid: 7259 + components: + - type: MetaData + name: Medical Storage APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 4812 + - uid: 7466 + components: + - type: MetaData + name: Main Hall South APC + - type: Transform + pos: -1.5,-20.5 + parent: 4812 + - uid: 7985 + components: + - type: MetaData + name: Security Lockerroom APC + - type: Transform + pos: -36.5,13.5 + parent: 4812 + - uid: 8176 + components: + - type: MetaData + name: Main Hall North West APC + - type: Transform + pos: -19.5,21.5 + parent: 4812 + - uid: 8896 + components: + - type: MetaData + name: Library Maint APC + - type: Transform + pos: -33.5,-24.5 + parent: 4812 + - uid: 9290 + components: + - type: MetaData + name: Atmospherics APC + - type: Transform + pos: -38.5,6.5 + parent: 4812 + - uid: 9412 + components: + - type: MetaData + name: Anomaly Lab APC + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-29.5 + parent: 4812 + - uid: 9613 + components: + - type: MetaData + name: Security APC + - type: Transform + pos: -31.5,21.5 + parent: 4812 + - uid: 10021 + components: + - type: MetaData + name: Engineering APC + - type: Transform + pos: -41.5,-4.5 + parent: 4812 + - uid: 10069 + components: + - type: MetaData + name: Grav Gen APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-12.5 + parent: 4812 + - uid: 10183 + components: + - type: MetaData + name: Solar South West APC + - type: Transform + pos: -51.5,-21.5 + parent: 4812 + - uid: 11150 + components: + - type: MetaData + name: Disposals APC + - type: Transform + pos: 10.5,-35.5 + parent: 4812 + - uid: 11436 + components: + - type: MetaData + name: Solar South East APC + - type: Transform + pos: 30.5,-37.5 + parent: 4812 +- proto: AppleSeeds + entities: + - uid: 8397 + components: + - type: Transform + pos: -31.672361,31.435354 + parent: 4812 + - uid: 8398 + components: + - type: Transform + pos: -31.531736,31.32598 + parent: 4812 +- proto: AsteroidRock + entities: + - uid: 2840 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,34.5 + parent: 4812 + - uid: 3012 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,37.5 + parent: 4812 + - uid: 3044 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,38.5 + parent: 4812 + - uid: 3045 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,38.5 + parent: 4812 + - uid: 3295 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,36.5 + parent: 4812 + - uid: 3353 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,34.5 + parent: 4812 + - uid: 3372 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,33.5 + parent: 4812 + - uid: 3373 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,31.5 + parent: 4812 + - uid: 3374 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,37.5 + parent: 4812 + - uid: 3375 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,35.5 + parent: 4812 + - uid: 3376 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,33.5 + parent: 4812 + - uid: 3394 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,32.5 + parent: 4812 + - uid: 3395 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,32.5 + parent: 4812 + - uid: 3396 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,33.5 + parent: 4812 + - uid: 3397 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,35.5 + parent: 4812 + - uid: 3398 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,38.5 + parent: 4812 + - uid: 3399 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,36.5 + parent: 4812 + - uid: 3400 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,34.5 + parent: 4812 + - uid: 3427 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,32.5 + parent: 4812 + - uid: 3433 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,36.5 + parent: 4812 + - uid: 3440 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,32.5 + parent: 4812 + - uid: 3450 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,32.5 + parent: 4812 + - uid: 3459 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,37.5 + parent: 4812 + - uid: 3460 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,38.5 + parent: 4812 + - uid: 3461 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,35.5 + parent: 4812 + - uid: 3579 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,37.5 + parent: 4812 + - uid: 3583 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,42.5 + parent: 4812 + - uid: 3584 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,42.5 + parent: 4812 + - uid: 3585 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,42.5 + parent: 4812 + - uid: 3586 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,41.5 + parent: 4812 + - uid: 3587 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,42.5 + parent: 4812 + - uid: 3588 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,41.5 + parent: 4812 + - uid: 3589 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,42.5 + parent: 4812 + - uid: 3590 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,41.5 + parent: 4812 + - uid: 3591 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,41.5 + parent: 4812 + - uid: 3592 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,41.5 + parent: 4812 + - uid: 3593 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,41.5 + parent: 4812 + - uid: 3594 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,41.5 + parent: 4812 + - uid: 3595 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,40.5 + parent: 4812 + - uid: 3596 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,40.5 + parent: 4812 + - uid: 3597 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,40.5 + parent: 4812 + - uid: 3598 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,43.5 + parent: 4812 + - uid: 3599 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,44.5 + parent: 4812 + - uid: 3600 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,45.5 + parent: 4812 + - uid: 3601 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,47.5 + parent: 4812 + - uid: 3602 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,47.5 + parent: 4812 + - uid: 3603 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,48.5 + parent: 4812 + - uid: 3604 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,49.5 + parent: 4812 + - uid: 3605 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,49.5 + parent: 4812 + - uid: 3606 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,48.5 + parent: 4812 + - uid: 3607 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,48.5 + parent: 4812 + - uid: 3608 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,48.5 + parent: 4812 + - uid: 3609 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,49.5 + parent: 4812 + - uid: 3610 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,49.5 + parent: 4812 + - uid: 3612 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,49.5 + parent: 4812 + - uid: 3613 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,50.5 + parent: 4812 + - uid: 3614 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,50.5 + parent: 4812 + - uid: 3615 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,51.5 + parent: 4812 + - uid: 3616 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,50.5 + parent: 4812 + - uid: 3617 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,51.5 + parent: 4812 + - uid: 3618 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,51.5 + parent: 4812 + - uid: 3619 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,51.5 + parent: 4812 + - uid: 3620 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,53.5 + parent: 4812 + - uid: 3621 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,52.5 + parent: 4812 + - uid: 3622 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,52.5 + parent: 4812 + - uid: 3623 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,50.5 + parent: 4812 + - uid: 3624 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,53.5 + parent: 4812 + - uid: 3625 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,53.5 + parent: 4812 + - uid: 3626 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,54.5 + parent: 4812 + - uid: 3627 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,54.5 + parent: 4812 + - uid: 3628 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,55.5 + parent: 4812 + - uid: 3629 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,56.5 + parent: 4812 + - uid: 3630 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,57.5 + parent: 4812 + - uid: 3631 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,57.5 + parent: 4812 + - uid: 3632 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,56.5 + parent: 4812 + - uid: 3633 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,57.5 + parent: 4812 + - uid: 3634 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,58.5 + parent: 4812 + - uid: 3635 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,58.5 + parent: 4812 + - uid: 3636 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,59.5 + parent: 4812 + - uid: 3637 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,59.5 + parent: 4812 + - uid: 3638 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,60.5 + parent: 4812 + - uid: 3639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,59.5 + parent: 4812 + - uid: 3640 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,60.5 + parent: 4812 + - uid: 3641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,59.5 + parent: 4812 + - uid: 3642 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,60.5 + parent: 4812 + - uid: 3643 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,59.5 + parent: 4812 + - uid: 3644 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,60.5 + parent: 4812 + - uid: 3645 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,59.5 + parent: 4812 + - uid: 3646 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,58.5 + parent: 4812 + - uid: 3647 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,59.5 + parent: 4812 + - uid: 3648 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,58.5 + parent: 4812 + - uid: 3649 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,58.5 + parent: 4812 + - uid: 3650 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,57.5 + parent: 4812 + - uid: 3651 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,57.5 + parent: 4812 + - uid: 3652 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,56.5 + parent: 4812 + - uid: 3653 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,56.5 + parent: 4812 + - uid: 3654 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,55.5 + parent: 4812 + - uid: 3655 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,54.5 + parent: 4812 + - uid: 3656 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,54.5 + parent: 4812 + - uid: 3657 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,53.5 + parent: 4812 + - uid: 3658 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,52.5 + parent: 4812 + - uid: 3659 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,52.5 + parent: 4812 + - uid: 3660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,51.5 + parent: 4812 + - uid: 3661 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,50.5 + parent: 4812 + - uid: 3662 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,50.5 + parent: 4812 + - uid: 3663 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,49.5 + parent: 4812 + - uid: 3664 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,49.5 + parent: 4812 + - uid: 3665 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,48.5 + parent: 4812 + - uid: 3666 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,47.5 + parent: 4812 + - uid: 3667 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,47.5 + parent: 4812 + - uid: 3668 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,46.5 + parent: 4812 + - uid: 3669 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,48.5 + parent: 4812 + - uid: 3670 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,48.5 + parent: 4812 + - uid: 3671 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,48.5 + parent: 4812 + - uid: 3672 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,49.5 + parent: 4812 + - uid: 3673 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,51.5 + parent: 4812 + - uid: 3676 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,49.5 + parent: 4812 + - uid: 3679 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,52.5 + parent: 4812 + - uid: 3680 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,53.5 + parent: 4812 + - uid: 3681 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,54.5 + parent: 4812 + - uid: 3682 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,55.5 + parent: 4812 + - uid: 3683 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,55.5 + parent: 4812 + - uid: 3684 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,56.5 + parent: 4812 + - uid: 3685 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,57.5 + parent: 4812 + - uid: 3976 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,27.5 + parent: 4812 + - uid: 5032 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,32.5 + parent: 4812 + - uid: 5625 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-18.5 + parent: 4812 + - uid: 5626 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-20.5 + parent: 4812 + - uid: 5627 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-19.5 + parent: 4812 + - uid: 5808 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-20.5 + parent: 4812 + - uid: 5809 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-21.5 + parent: 4812 + - uid: 5810 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-21.5 + parent: 4812 + - uid: 5811 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-20.5 + parent: 4812 + - uid: 5812 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-21.5 + parent: 4812 + - uid: 5813 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-22.5 + parent: 4812 + - uid: 5814 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-23.5 + parent: 4812 + - uid: 5815 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-23.5 + parent: 4812 + - uid: 5816 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-24.5 + parent: 4812 + - uid: 5817 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-24.5 + parent: 4812 + - uid: 5818 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-24.5 + parent: 4812 + - uid: 5819 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-29.5 + parent: 4812 + - uid: 5820 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-28.5 + parent: 4812 + - uid: 5821 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-27.5 + parent: 4812 + - uid: 5822 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-26.5 + parent: 4812 + - uid: 5823 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-25.5 + parent: 4812 + - uid: 5824 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-28.5 + parent: 4812 + - uid: 5825 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-27.5 + parent: 4812 + - uid: 5827 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-25.5 + parent: 4812 + - uid: 5828 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-25.5 + parent: 4812 + - uid: 5829 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-26.5 + parent: 4812 + - uid: 5830 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-27.5 + parent: 4812 + - uid: 5831 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,-27.5 + parent: 4812 + - uid: 5832 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,-26.5 + parent: 4812 + - uid: 5839 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-17.5 + parent: 4812 + - uid: 6332 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-21.5 + parent: 4812 + - uid: 8458 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,36.5 + parent: 4812 + - uid: 8459 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,35.5 + parent: 4812 + - uid: 8460 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,34.5 + parent: 4812 + - uid: 8461 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,33.5 + parent: 4812 + - uid: 8462 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,32.5 + parent: 4812 + - uid: 8463 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,30.5 + parent: 4812 + - uid: 8464 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,31.5 + parent: 4812 + - uid: 8465 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,31.5 + parent: 4812 + - uid: 8466 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,31.5 + parent: 4812 + - uid: 8467 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,31.5 + parent: 4812 + - uid: 8468 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,31.5 + parent: 4812 + - uid: 8469 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,31.5 + parent: 4812 + - uid: 8470 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,31.5 + parent: 4812 + - uid: 8471 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,31.5 + parent: 4812 + - uid: 8472 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,31.5 + parent: 4812 + - uid: 8473 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,32.5 + parent: 4812 + - uid: 8474 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,32.5 + parent: 4812 + - uid: 8475 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,32.5 + parent: 4812 + - uid: 8476 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,32.5 + parent: 4812 + - uid: 8479 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,32.5 + parent: 4812 + - uid: 8480 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,33.5 + parent: 4812 + - uid: 8483 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,33.5 + parent: 4812 + - uid: 8484 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,33.5 + parent: 4812 + - uid: 8485 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,34.5 + parent: 4812 + - uid: 8486 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,34.5 + parent: 4812 + - uid: 8487 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,34.5 + parent: 4812 + - uid: 8488 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,34.5 + parent: 4812 + - uid: 8489 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,34.5 + parent: 4812 + - uid: 8490 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,35.5 + parent: 4812 + - uid: 8491 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,35.5 + parent: 4812 + - uid: 8492 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,35.5 + parent: 4812 + - uid: 8493 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,36.5 + parent: 4812 + - uid: 8494 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,36.5 + parent: 4812 + - uid: 8495 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,37.5 + parent: 4812 + - uid: 8496 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,38.5 + parent: 4812 + - uid: 8497 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,38.5 + parent: 4812 + - uid: 8498 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,30.5 + parent: 4812 + - uid: 8499 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,33.5 + parent: 4812 + - uid: 8500 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,34.5 + parent: 4812 + - uid: 8501 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,34.5 + parent: 4812 + - uid: 8502 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,34.5 + parent: 4812 + - uid: 8503 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,34.5 + parent: 4812 + - uid: 8504 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,35.5 + parent: 4812 + - uid: 8505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,35.5 + parent: 4812 + - uid: 8506 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,37.5 + parent: 4812 + - uid: 8507 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,37.5 + parent: 4812 + - uid: 8508 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,38.5 + parent: 4812 + - uid: 8509 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,38.5 + parent: 4812 + - uid: 8510 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,38.5 + parent: 4812 + - uid: 8511 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,38.5 + parent: 4812 + - uid: 8512 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,39.5 + parent: 4812 + - uid: 8513 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,39.5 + parent: 4812 + - uid: 8514 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,39.5 + parent: 4812 + - uid: 8515 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,39.5 + parent: 4812 + - uid: 8516 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,34.5 + parent: 4812 + - uid: 8517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,34.5 + parent: 4812 + - uid: 8518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,34.5 + parent: 4812 + - uid: 8519 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,34.5 + parent: 4812 + - uid: 8520 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,34.5 + parent: 4812 + - uid: 8521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,35.5 + parent: 4812 + - uid: 8522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,36.5 + parent: 4812 + - uid: 8523 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,36.5 + parent: 4812 + - uid: 8524 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,35.5 + parent: 4812 + - uid: 8525 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,35.5 + parent: 4812 + - uid: 9621 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-34.5 + parent: 4812 + - uid: 9622 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-33.5 + parent: 4812 + - uid: 9623 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-33.5 + parent: 4812 + - uid: 9624 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-32.5 + parent: 4812 + - uid: 9630 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-29.5 + parent: 4812 + - uid: 9631 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-30.5 + parent: 4812 + - uid: 9632 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-29.5 + parent: 4812 + - uid: 9633 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-28.5 + parent: 4812 + - uid: 9637 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-26.5 + parent: 4812 + - uid: 9638 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-38.5 + parent: 4812 + - uid: 9639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-39.5 + parent: 4812 + - uid: 9640 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-39.5 + parent: 4812 + - uid: 9641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-39.5 + parent: 4812 + - uid: 9642 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-39.5 + parent: 4812 + - uid: 9643 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-40.5 + parent: 4812 + - uid: 10417 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,-20.5 + parent: 4812 + - uid: 10418 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,-20.5 + parent: 4812 + - uid: 10419 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-20.5 + parent: 4812 + - uid: 10420 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-20.5 + parent: 4812 + - uid: 10421 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,-19.5 + parent: 4812 + - uid: 10422 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,-19.5 + parent: 4812 + - uid: 10423 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-19.5 + parent: 4812 + - uid: 10424 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,-18.5 + parent: 4812 + - uid: 10425 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-18.5 + parent: 4812 + - uid: 10426 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-18.5 + parent: 4812 + - uid: 10427 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-17.5 + parent: 4812 + - uid: 10428 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-16.5 + parent: 4812 + - uid: 10429 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-15.5 + parent: 4812 + - uid: 10430 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-15.5 + parent: 4812 + - uid: 10431 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,-15.5 + parent: 4812 + - uid: 10432 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,-15.5 + parent: 4812 + - uid: 10433 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,-15.5 + parent: 4812 + - uid: 10434 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-15.5 + parent: 4812 + - uid: 10435 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-15.5 + parent: 4812 + - uid: 10436 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-15.5 + parent: 4812 + - uid: 10437 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,-15.5 + parent: 4812 + - uid: 10438 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-15.5 + parent: 4812 + - uid: 10439 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-16.5 + parent: 4812 + - uid: 10443 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-16.5 + parent: 4812 + - uid: 10444 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,-16.5 + parent: 4812 + - uid: 10447 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-16.5 + parent: 4812 + - uid: 10448 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-17.5 + parent: 4812 + - uid: 10449 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,-17.5 + parent: 4812 + - uid: 10452 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-17.5 + parent: 4812 + - uid: 10453 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-17.5 + parent: 4812 + - uid: 10454 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-17.5 + parent: 4812 + - uid: 10455 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,-17.5 + parent: 4812 + - uid: 10456 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-17.5 + parent: 4812 + - uid: 10457 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-18.5 + parent: 4812 + - uid: 10458 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-18.5 + parent: 4812 + - uid: 10460 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,29.5 + parent: 4812 + - uid: 10461 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-19.5 + parent: 4812 + - uid: 10462 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-19.5 + parent: 4812 + - uid: 10463 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,28.5 + parent: 4812 + - uid: 10464 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-14.5 + parent: 4812 + - uid: 10465 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-13.5 + parent: 4812 + - uid: 10466 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-12.5 + parent: 4812 + - uid: 10467 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-11.5 + parent: 4812 + - uid: 10468 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-10.5 + parent: 4812 + - uid: 10469 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-9.5 + parent: 4812 + - uid: 10470 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-8.5 + parent: 4812 + - uid: 10472 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -57.5,-10.5 + parent: 4812 + - uid: 10473 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -57.5,-11.5 + parent: 4812 + - uid: 10474 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,28.5 + parent: 4812 + - uid: 10475 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -57.5,-13.5 + parent: 4812 + - uid: 10476 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -57.5,-14.5 + parent: 4812 + - uid: 10477 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -57.5,-15.5 + parent: 4812 + - uid: 10478 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -58.5,-13.5 + parent: 4812 + - uid: 10479 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -58.5,-12.5 + parent: 4812 + - uid: 10480 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -58.5,-11.5 + parent: 4812 + - uid: 10481 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -58.5,-10.5 + parent: 4812 + - uid: 10482 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -58.5,-9.5 + parent: 4812 + - uid: 10483 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-7.5 + parent: 4812 + - uid: 10484 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -57.5,-8.5 + parent: 4812 + - uid: 10485 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -58.5,-8.5 + parent: 4812 + - uid: 10486 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-2.5 + parent: 4812 + - uid: 10926 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,14.5 + parent: 4812 + - uid: 10927 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,15.5 + parent: 4812 + - uid: 10928 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,16.5 + parent: 4812 + - uid: 10929 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,17.5 + parent: 4812 + - uid: 10941 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,24.5 + parent: 4812 + - uid: 10942 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,25.5 + parent: 4812 + - uid: 10943 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,26.5 + parent: 4812 + - uid: 10944 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,27.5 + parent: 4812 + - uid: 10945 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,24.5 + parent: 4812 + - uid: 10947 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,26.5 + parent: 4812 + - uid: 10948 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,27.5 + parent: 4812 + - uid: 10949 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,28.5 + parent: 4812 + - uid: 10950 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,29.5 + parent: 4812 + - uid: 10951 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,30.5 + parent: 4812 + - uid: 10952 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,31.5 + parent: 4812 + - uid: 10953 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,32.5 + parent: 4812 + - uid: 10954 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,33.5 + parent: 4812 + - uid: 10955 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,32.5 + parent: 4812 + - uid: 10956 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,31.5 + parent: 4812 + - uid: 10957 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,30.5 + parent: 4812 + - uid: 10963 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,24.5 + parent: 4812 + - uid: 10965 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,15.5 + parent: 4812 + - uid: 10966 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,16.5 + parent: 4812 + - uid: 10967 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,17.5 + parent: 4812 + - uid: 10969 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,19.5 + parent: 4812 + - uid: 10970 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,20.5 + parent: 4812 + - uid: 10971 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,21.5 + parent: 4812 + - uid: 10972 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,22.5 + parent: 4812 + - uid: 10973 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,23.5 + parent: 4812 + - uid: 10974 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,24.5 + parent: 4812 + - uid: 10975 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,24.5 + parent: 4812 + - uid: 10977 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,24.5 + parent: 4812 + - uid: 10982 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,23.5 + parent: 4812 + - uid: 10983 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,18.5 + parent: 4812 + - uid: 10984 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,31.5 + parent: 4812 + - uid: 10986 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,33.5 + parent: 4812 + - uid: 10987 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,33.5 + parent: 4812 + - uid: 10988 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,33.5 + parent: 4812 + - uid: 10990 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,32.5 + parent: 4812 + - uid: 10991 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,31.5 + parent: 4812 + - uid: 10992 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,30.5 + parent: 4812 + - uid: 10993 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,29.5 + parent: 4812 + - uid: 10994 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,28.5 + parent: 4812 + - uid: 10995 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,27.5 + parent: 4812 + - uid: 10999 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,26.5 + parent: 4812 + - uid: 11000 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,27.5 + parent: 4812 + - uid: 11001 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,28.5 + parent: 4812 + - uid: 11002 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,29.5 + parent: 4812 + - uid: 11003 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,30.5 + parent: 4812 + - uid: 11004 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,31.5 + parent: 4812 + - uid: 11005 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,32.5 + parent: 4812 + - uid: 11009 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,17.5 + parent: 4812 + - uid: 11010 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,18.5 + parent: 4812 + - uid: 11011 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,19.5 + parent: 4812 + - uid: 11012 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,20.5 + parent: 4812 + - uid: 11013 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,21.5 + parent: 4812 + - uid: 11014 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,24.5 + parent: 4812 + - uid: 11016 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,24.5 + parent: 4812 + - uid: 11017 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,25.5 + parent: 4812 + - uid: 11018 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,26.5 + parent: 4812 + - uid: 11019 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,21.5 + parent: 4812 + - uid: 11020 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,22.5 + parent: 4812 + - uid: 11021 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,23.5 + parent: 4812 + - uid: 11022 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,24.5 + parent: 4812 + - uid: 11023 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,25.5 + parent: 4812 + - uid: 11024 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,26.5 + parent: 4812 + - uid: 11025 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,25.5 + parent: 4812 + - uid: 11026 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,26.5 + parent: 4812 + - uid: 11027 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,27.5 + parent: 4812 + - uid: 11028 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,28.5 + parent: 4812 + - uid: 11029 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,29.5 + parent: 4812 + - uid: 11616 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-30.5 + parent: 4812 + - uid: 11621 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-39.5 + parent: 4812 + - uid: 11622 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-41.5 + parent: 4812 + - uid: 11623 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-41.5 + parent: 4812 + - uid: 11624 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-41.5 + parent: 4812 + - uid: 11625 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-41.5 + parent: 4812 + - uid: 11626 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-39.5 + parent: 4812 + - uid: 11627 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-39.5 + parent: 4812 + - uid: 11628 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-40.5 + parent: 4812 + - uid: 11629 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-40.5 + parent: 4812 + - uid: 11630 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-41.5 + parent: 4812 + - uid: 11631 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-42.5 + parent: 4812 + - uid: 11632 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-40.5 + parent: 4812 + - uid: 11633 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-41.5 + parent: 4812 + - uid: 11634 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-40.5 + parent: 4812 + - uid: 11635 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-42.5 + parent: 4812 + - uid: 11636 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-42.5 + parent: 4812 + - uid: 11637 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-43.5 + parent: 4812 + - uid: 11638 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-43.5 + parent: 4812 + - uid: 11639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-43.5 + parent: 4812 + - uid: 11640 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-44.5 + parent: 4812 + - uid: 11641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-44.5 + parent: 4812 + - uid: 11643 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-44.5 + parent: 4812 + - uid: 11644 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-44.5 + parent: 4812 + - uid: 11645 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-44.5 + parent: 4812 + - uid: 11647 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-45.5 + parent: 4812 + - uid: 11648 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-45.5 + parent: 4812 + - uid: 11649 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-45.5 + parent: 4812 + - uid: 11650 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-45.5 + parent: 4812 + - uid: 11651 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-45.5 + parent: 4812 + - uid: 11652 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-45.5 + parent: 4812 + - uid: 11653 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-46.5 + parent: 4812 + - uid: 11654 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-46.5 + parent: 4812 + - uid: 11655 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-46.5 + parent: 4812 + - uid: 11656 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-46.5 + parent: 4812 + - uid: 11657 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-46.5 + parent: 4812 + - uid: 11658 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-46.5 + parent: 4812 + - uid: 11659 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-44.5 + parent: 4812 + - uid: 11660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-43.5 + parent: 4812 + - uid: 11663 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-38.5 + parent: 4812 + - uid: 11664 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-41.5 + parent: 4812 + - uid: 11665 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-42.5 + parent: 4812 + - uid: 11666 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-43.5 + parent: 4812 + - uid: 11667 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-44.5 + parent: 4812 + - uid: 11668 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-44.5 + parent: 4812 + - uid: 11669 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-43.5 + parent: 4812 + - uid: 11670 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-42.5 + parent: 4812 + - uid: 11679 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-38.5 + parent: 4812 + - uid: 11680 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-43.5 + parent: 4812 + - uid: 11681 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-44.5 + parent: 4812 + - uid: 11682 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-44.5 + parent: 4812 + - uid: 11683 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-43.5 + parent: 4812 + - uid: 11684 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-38.5 + parent: 4812 + - uid: 11686 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-38.5 + parent: 4812 + - uid: 11689 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-43.5 + parent: 4812 + - uid: 11690 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-42.5 + parent: 4812 + - uid: 11691 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-40.5 + parent: 4812 + - uid: 11695 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-42.5 + parent: 4812 + - uid: 11696 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-42.5 + parent: 4812 + - uid: 11697 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-43.5 + parent: 4812 + - uid: 11698 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-43.5 + parent: 4812 + - uid: 11699 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-42.5 + parent: 4812 + - uid: 11700 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-42.5 + parent: 4812 + - uid: 11701 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-42.5 + parent: 4812 + - uid: 11702 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-40.5 + parent: 4812 + - uid: 11703 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-39.5 + parent: 4812 + - uid: 11704 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-38.5 + parent: 4812 + - uid: 11705 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-41.5 + parent: 4812 + - uid: 12144 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,-25.5 + parent: 4812 +- proto: AsteroidRockMining + entities: + - uid: 12146 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,-3.5 + parent: 4812 +- proto: AtmosDeviceFanTiny + entities: + - uid: 2781 + components: + - type: Transform + pos: 23.5,25.5 + parent: 4812 + - uid: 2845 + components: + - type: Transform + pos: 23.5,27.5 + parent: 4812 + - uid: 3260 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 4812 + - uid: 3263 + components: + - type: Transform + pos: 34.5,0.5 + parent: 4812 + - uid: 3423 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 4812 + - uid: 3424 + components: + - type: Transform + pos: 34.5,2.5 + parent: 4812 + - uid: 3455 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 4812 + - uid: 3456 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 4812 + - uid: 3766 + components: + - type: Transform + pos: -13.5,-50.5 + parent: 4812 + - uid: 3767 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 4812 + - uid: 3768 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 4812 + - uid: 3769 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 4812 +- proto: AtmosFixBlockerMarker + entities: + - uid: 11893 + components: + - type: Transform + pos: -51.5,5.5 + parent: 4812 + - uid: 11894 + components: + - type: Transform + pos: -52.5,5.5 + parent: 4812 + - uid: 11895 + components: + - type: Transform + pos: -53.5,5.5 + parent: 4812 + - uid: 11896 + components: + - type: Transform + pos: -53.5,7.5 + parent: 4812 + - uid: 11897 + components: + - type: Transform + pos: -52.5,7.5 + parent: 4812 + - uid: 11898 + components: + - type: Transform + pos: -51.5,7.5 + parent: 4812 + - uid: 11899 + components: + - type: Transform + pos: -51.5,11.5 + parent: 4812 + - uid: 11900 + components: + - type: Transform + pos: -52.5,11.5 + parent: 4812 + - uid: 11901 + components: + - type: Transform + pos: -53.5,11.5 + parent: 4812 + - uid: 11902 + components: + - type: Transform + pos: -45.5,16.5 + parent: 4812 + - uid: 11903 + components: + - type: Transform + pos: -45.5,17.5 + parent: 4812 + - uid: 11904 + components: + - type: Transform + pos: -44.5,17.5 + parent: 4812 + - uid: 11905 + components: + - type: Transform + pos: -44.5,16.5 + parent: 4812 + - uid: 11906 + components: + - type: Transform + pos: -43.5,16.5 + parent: 4812 + - uid: 11907 + components: + - type: Transform + pos: -43.5,17.5 + parent: 4812 +- proto: AtmosFixFreezerMarker + entities: + - uid: 1569 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 4812 + - uid: 3213 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 4812 + - uid: 3214 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 4812 + - uid: 3215 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 4812 + - uid: 3222 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 4812 + - uid: 3384 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 4812 + - uid: 3385 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 4812 + - uid: 3413 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 4812 + - uid: 3414 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 4812 + - uid: 3415 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 4812 + - uid: 3416 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 4812 + - uid: 3417 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 4812 + - uid: 3418 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 4812 + - uid: 3438 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 4812 + - uid: 3464 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 4812 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 11887 + components: + - type: Transform + pos: -51.5,1.5 + parent: 4812 + - uid: 11888 + components: + - type: Transform + pos: -52.5,1.5 + parent: 4812 + - uid: 11889 + components: + - type: Transform + pos: -53.5,1.5 + parent: 4812 +- proto: AtmosFixOxygenMarker + entities: + - uid: 11890 + components: + - type: Transform + pos: -51.5,3.5 + parent: 4812 + - uid: 11891 + components: + - type: Transform + pos: -52.5,3.5 + parent: 4812 + - uid: 11892 + components: + - type: Transform + pos: -53.5,3.5 + parent: 4812 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 11908 + components: + - type: Transform + pos: -51.5,9.5 + parent: 4812 + - uid: 11909 + components: + - type: Transform + pos: -52.5,9.5 + parent: 4812 + - uid: 11910 + components: + - type: Transform + pos: -53.5,9.5 + parent: 4812 +- proto: Autolathe + entities: + - uid: 3231 + components: + - type: Transform + pos: 20.5,18.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + - uid: 6183 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + - uid: 10700 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth +- proto: BananaPhoneInstrument + entities: + - uid: 12492 + components: + - type: Transform + pos: -10.731333,1.1743605 + parent: 4812 +- proto: BannerRevolution + entities: + - uid: 10459 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 4812 +- proto: Barricade + entities: + - uid: 8482 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 4812 + - uid: 8860 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 4812 + - uid: 10524 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 4812 +- proto: BarSign + entities: + - uid: 326 + components: + - type: MetaData + desc: Drink till you puke and/or break the laws of reality! + name: The Loose Goose + - type: Transform + pos: 2.5,10.5 + parent: 4812 + - type: BarSign + current: Goose + - uid: 10522 + components: + - type: MetaData + desc: All right, buddy. I think you've had EI NATH. Time to get a cab. + name: The Ale' Nath + - type: Transform + pos: -32.5,-26.5 + parent: 4812 + - type: BarSign + current: TheAleNath +- proto: BaseGasCondenser + entities: + - uid: 3405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: Beaker + entities: + - uid: 9030 + components: + - type: Transform + pos: -40.278786,-34.952698 + parent: 4812 +- proto: Bed + entities: + - uid: 261 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 4812 + - uid: 744 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 4812 + - uid: 1256 + components: + - type: Transform + pos: -17.5,4.5 + parent: 4812 + - uid: 1649 + components: + - type: Transform + pos: 7.5,9.5 + parent: 4812 + - uid: 2499 + components: + - type: Transform + pos: 6.5,29.5 + parent: 4812 + - uid: 2580 + components: + - type: Transform + pos: -11.5,29.5 + parent: 4812 + - uid: 3268 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 4812 + - uid: 3401 + components: + - type: Transform + pos: 17.5,34.5 + parent: 4812 + - uid: 7033 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 4812 + - uid: 7128 + components: + - type: Transform + pos: -30.5,-21.5 + parent: 4812 + - uid: 7575 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 4812 + - uid: 8249 + components: + - type: Transform + pos: -22.5,28.5 + parent: 4812 + - uid: 8350 + components: + - type: Transform + pos: -25.5,20.5 + parent: 4812 + - uid: 8351 + components: + - type: Transform + pos: -25.5,17.5 + parent: 4812 + - uid: 8360 + components: + - type: Transform + pos: -25.5,27.5 + parent: 4812 + - uid: 8361 + components: + - type: Transform + pos: -29.5,27.5 + parent: 4812 + - uid: 11358 + components: + - type: Transform + pos: 37.5,-34.5 + parent: 4812 + - uid: 12162 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 4812 +- proto: BedsheetCaptain + entities: + - uid: 2582 + components: + - type: Transform + pos: -11.5,29.5 + parent: 4812 +- proto: BedsheetCMO + entities: + - uid: 2501 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 4812 +- proto: BedsheetCult + entities: + - uid: 7034 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 4812 +- proto: BedsheetHOP + entities: + - uid: 2500 + components: + - type: Transform + pos: 6.5,29.5 + parent: 4812 +- proto: BedsheetHOS + entities: + - uid: 8250 + components: + - type: Transform + pos: -22.5,28.5 + parent: 4812 +- proto: BedsheetMedical + entities: + - uid: 3285 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 4812 + - uid: 7682 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 4812 + - uid: 7683 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 4812 + - uid: 7684 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 4812 +- proto: BedsheetOrange + entities: + - uid: 8352 + components: + - type: Transform + pos: -25.5,17.5 + parent: 4812 + - uid: 8353 + components: + - type: Transform + pos: -25.5,20.5 + parent: 4812 + - uid: 8362 + components: + - type: Transform + pos: -29.5,27.5 + parent: 4812 + - uid: 8363 + components: + - type: Transform + pos: -25.5,27.5 + parent: 4812 +- proto: BedsheetQM + entities: + - uid: 3377 + components: + - type: Transform + pos: 17.5,34.5 + parent: 4812 +- proto: BedsheetSpawner + entities: + - uid: 260 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 4812 + - uid: 1255 + components: + - type: Transform + pos: -17.5,4.5 + parent: 4812 + - uid: 1650 + components: + - type: Transform + pos: 7.5,9.5 + parent: 4812 + - uid: 7129 + components: + - type: Transform + pos: -30.5,-21.5 + parent: 4812 + - uid: 11359 + components: + - type: Transform + pos: 37.5,-34.5 + parent: 4812 + - uid: 12163 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 4812 +- proto: BikeHorn + entities: + - uid: 1725 + components: + - type: Transform + pos: -10.612676,1.3979684 + parent: 4812 +- proto: BikeHornInstrument + entities: + - uid: 1726 + components: + - type: Transform + pos: -10.503301,0.7729684 + parent: 4812 +- proto: BlastDoor + entities: + - uid: 729 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,18.5 + parent: 4812 + - uid: 771 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,18.5 + parent: 4812 + - uid: 2864 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,24.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 2938 + - uid: 2866 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,28.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 2938 + - uid: 5573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-30.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6690 + - uid: 5574 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-29.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6690 + - uid: 5575 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-28.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6690 + - uid: 5794 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-27.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6218 + - uid: 5795 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-26.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6218 + - uid: 5796 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-25.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6218 + - uid: 9496 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,18.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 9504 +- proto: BlockGameArcade + entities: + - uid: 4549 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 4812 + - uid: 5026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-47.5 + parent: 4812 + - uid: 8399 + components: + - type: Transform + pos: -26.5,32.5 + parent: 4812 + - uid: 10853 + components: + - type: Transform + pos: -22.5,5.5 + parent: 4812 +- proto: BookAtmosAirAlarms + entities: + - uid: 865 + components: + - type: Transform + pos: -22.624014,-17.30092 + parent: 4812 +- proto: BookAtmosDistro + entities: + - uid: 10450 + components: + - type: Transform + pos: -22.389639,-17.51967 + parent: 4812 +- proto: BookAtmosVentsMore + entities: + - uid: 12467 + components: + - type: Transform + pos: -25.608389,-18.347795 + parent: 4812 +- proto: BookAtmosWaste + entities: + - uid: 12468 + components: + - type: Transform + pos: -25.436514,-18.48842 + parent: 4812 +- proto: BookDetective + entities: + - uid: 5387 + components: + - type: Transform + pos: 17.568647,-11.417019 + parent: 4812 +- proto: BookEscalation + entities: + - uid: 12421 + components: + - type: Transform + pos: -30.59653,-19.308746 + parent: 4812 +- proto: BookEscalationSecurity + entities: + - uid: 10446 + components: + - type: Transform + pos: -30.424656,-19.480621 + parent: 4812 +- proto: BookRandom + entities: + - uid: 7161 + components: + - type: Transform + pos: -30.557493,-18.387486 + parent: 4812 +- proto: BooksBag + entities: + - uid: 12419 + components: + - type: Transform + pos: -31.928976,-23.436365 + parent: 4812 +- proto: Bookshelf + entities: + - uid: 1952 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,25.5 + parent: 4812 + - uid: 5374 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-18.5 + parent: 4812 + - uid: 7000 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-32.5 + parent: 4812 + - uid: 7001 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-36.5 + parent: 4812 + - uid: 7005 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-38.5 + parent: 4812 + - uid: 7130 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-22.5 + parent: 4812 + - uid: 7131 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-21.5 + parent: 4812 + - uid: 7172 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-39.5 + parent: 4812 + - uid: 8391 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,32.5 + parent: 4812 + - uid: 8392 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,29.5 + parent: 4812 + - uid: 11352 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-32.5 + parent: 4812 +- proto: BookshelfFilled + entities: + - uid: 4816 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-20.5 + parent: 4812 + - uid: 4817 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-18.5 + parent: 4812 + - uid: 4818 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-18.5 + parent: 4812 + - uid: 4819 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-20.5 + parent: 4812 + - uid: 4820 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-20.5 + parent: 4812 + - uid: 4821 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-20.5 + parent: 4812 + - uid: 4822 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-18.5 + parent: 4812 + - uid: 4823 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-20.5 + parent: 4812 + - uid: 4824 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-18.5 + parent: 4812 + - uid: 4825 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-18.5 + parent: 4812 + - uid: 4835 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-14.5 + parent: 4812 + - uid: 4836 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-14.5 + parent: 4812 + - uid: 4837 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-16.5 + parent: 4812 + - uid: 4839 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-19.5 + parent: 4812 + - uid: 4840 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-18.5 + parent: 4812 + - uid: 4841 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-17.5 + parent: 4812 +- proto: BoozeDispenser + entities: + - uid: 365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 4812 + - uid: 10493 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 4812 +- proto: BorgCharger + entities: + - uid: 1727 + components: + - type: Transform + pos: 5.5,47.5 + parent: 4812 + - uid: 2492 + components: + - type: Transform + pos: 6.5,47.5 + parent: 4812 + - uid: 6168 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 4812 +- proto: BoxBeanbag + entities: + - uid: 1656 + components: + - type: Transform + pos: 7.497552,8.611126 + parent: 4812 +- proto: BoxBodyBag + entities: + - uid: 4927 + components: + - type: Transform + pos: -18.4054,-14.319918 + parent: 4812 +- proto: BoxFlashbang + entities: + - uid: 8368 + components: + - type: Transform + pos: -36.5,17.5 + parent: 4812 + - uid: 8430 + components: + - type: Transform + pos: -37.645676,12.776339 + parent: 4812 +- proto: BoxFolderBlack + entities: + - uid: 2519 + components: + - type: Transform + pos: 8.55219,26.460049 + parent: 4812 + - uid: 2724 + components: + - type: MetaData + name: secret documents + - type: Transform + pos: -5.51737,26.194775 + parent: 4812 +- proto: BoxFolderBlue + entities: + - uid: 2518 + components: + - type: Transform + pos: 8.45844,26.553799 + parent: 4812 + - uid: 2685 + components: + - type: Transform + pos: 1.5282507,34.656113 + parent: 4812 +- proto: BoxFolderGrey + entities: + - uid: 6411 + components: + - type: Transform + pos: -0.43434072,-19.465488 + parent: 4812 +- proto: BoxFolderRed + entities: + - uid: 2517 + components: + - type: Transform + pos: 8.33344,26.616299 + parent: 4812 + - uid: 4575 + components: + - type: Transform + pos: 28.5,1.5 + parent: 4812 + - uid: 8267 + components: + - type: Transform + pos: -21.5,23.5 + parent: 4812 + - uid: 8295 + components: + - type: Transform + pos: -19.475779,17.57452 + parent: 4812 +- proto: BoxFolderWhite + entities: + - uid: 6637 + components: + - type: Transform + pos: -11.521093,-19.541773 + parent: 4812 +- proto: BoxFolderYellow + entities: + - uid: 3276 + components: + - type: Transform + pos: 14.429598,18.642262 + parent: 4812 + - uid: 3705 + components: + - type: Transform + pos: 15.550373,35.549133 + parent: 4812 + - uid: 4576 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 4812 +- proto: BoxHandcuff + entities: + - uid: 8369 + components: + - type: Transform + pos: -36.509842,17.041077 + parent: 4812 + - uid: 8431 + components: + - type: Transform + pos: -37.489426,12.635714 + parent: 4812 +- proto: BoxLatexGloves + entities: + - uid: 9029 + components: + - type: Transform + pos: -40.466286,-35.483948 + parent: 4812 +- proto: BoxLightMixed + entities: + - uid: 1496 + components: + - type: Transform + pos: -23.513304,-6.9524465 + parent: 4812 + - uid: 1678 + components: + - type: Transform + pos: 3.4673066,14.577467 + parent: 4812 + - uid: 8599 + components: + - type: Transform + pos: -18.992748,10.00374 + parent: 4812 + - uid: 10528 + components: + - type: Transform + pos: -41.52028,-30.431274 + parent: 4812 + - uid: 10712 + components: + - type: Transform + pos: -31.22427,-7.3718886 + parent: 4812 + - uid: 11329 + components: + - type: Transform + pos: 24.509838,-35.436974 + parent: 4812 +- proto: BoxMouthSwab + entities: + - uid: 12518 + components: + - type: Transform + pos: -40.434937,-35.118546 + parent: 4812 +- proto: BoxShotgunIncendiary + entities: + - uid: 12055 + components: + - type: Transform + pos: -35.55101,19.647282 + parent: 4812 +- proto: BoxSterileMask + entities: + - uid: 9028 + components: + - type: Transform + pos: -40.66941,-35.374573 + parent: 4812 +- proto: BoxSyringe + entities: + - uid: 9031 + components: + - type: Transform + pos: -40.247536,-35.390198 + parent: 4812 +- proto: BoxZiptie + entities: + - uid: 8370 + components: + - type: Transform + pos: -36.494217,16.619202 + parent: 4812 + - uid: 8432 + components: + - type: Transform + pos: -37.301926,12.401339 + parent: 4812 +- proto: BrbSign + entities: + - uid: 9086 + components: + - type: Transform + pos: 5.1968718,29.290854 + parent: 4812 +- proto: BriefcaseBrownFilled + entities: + - uid: 5384 + components: + - type: Transform + pos: 19.508135,-18.292694 + parent: 4812 + - uid: 8277 + components: + - type: Transform + pos: -16.540533,16.683895 + parent: 4812 + - uid: 9079 + components: + - type: Transform + pos: -30.580097,-29.217686 + parent: 4812 +- proto: BrigTimer + entities: + - uid: 4810 + components: + - type: Transform + pos: -27.5,18.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 7786: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 4811 + components: + - type: Transform + pos: -27.5,15.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 7785: + - Start: Close + - Timer: AutoClose + - Timer: Open +- proto: Bucket + entities: + - uid: 1477 + components: + - type: Transform + pos: -16.468277,-7.2739778 + parent: 4812 + - uid: 1497 + components: + - type: Transform + pos: -23.720804,-7.615172 + parent: 4812 + - uid: 1499 + components: + - type: Transform + pos: -20.513304,-8.561821 + parent: 4812 + - uid: 8390 + components: + - type: Transform + pos: -30.607666,31.438156 + parent: 4812 + - uid: 9617 + components: + - type: Transform + pos: -43.435364,-28.50291 + parent: 4812 + - uid: 11958 + components: + - type: Transform + pos: -10.295721,17.222569 + parent: 4812 +- proto: CableApcExtension + entities: + - uid: 258 + components: + - type: Transform + pos: -13.5,2.5 + parent: 4812 + - uid: 916 + components: + - type: Transform + pos: 7.5,2.5 + parent: 4812 + - uid: 1125 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 4812 + - uid: 1126 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 4812 + - uid: 1127 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 4812 + - uid: 1128 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 4812 + - uid: 1129 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 4812 + - uid: 1130 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 4812 + - uid: 1131 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 4812 + - uid: 1132 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 4812 + - uid: 1133 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 4812 + - uid: 1134 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 4812 + - uid: 1135 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 4812 + - uid: 1136 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 4812 + - uid: 1137 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 4812 + - uid: 1138 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 4812 + - uid: 1139 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 4812 + - uid: 1140 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 4812 + - uid: 1141 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 4812 + - uid: 1142 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 4812 + - uid: 1143 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 4812 + - uid: 1144 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 4812 + - uid: 1145 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 4812 + - uid: 1146 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 4812 + - uid: 1147 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 4812 + - uid: 1148 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 4812 + - uid: 1149 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 4812 + - uid: 1150 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 4812 + - uid: 1151 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 4812 + - uid: 1152 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 4812 + - uid: 1153 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 4812 + - uid: 1154 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 4812 + - uid: 1155 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 4812 + - uid: 1156 + components: + - type: Transform + pos: -8.5,0.5 + parent: 4812 + - uid: 1157 + components: + - type: Transform + pos: -8.5,1.5 + parent: 4812 + - uid: 1158 + components: + - type: Transform + pos: -8.5,2.5 + parent: 4812 + - uid: 1159 + components: + - type: Transform + pos: -8.5,3.5 + parent: 4812 + - uid: 1160 + components: + - type: Transform + pos: -8.5,4.5 + parent: 4812 + - uid: 1161 + components: + - type: Transform + pos: -8.5,5.5 + parent: 4812 + - uid: 1162 + components: + - type: Transform + pos: -8.5,6.5 + parent: 4812 + - uid: 1163 + components: + - type: Transform + pos: -8.5,7.5 + parent: 4812 + - uid: 1164 + components: + - type: Transform + pos: -8.5,8.5 + parent: 4812 + - uid: 1165 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 4812 + - uid: 1166 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 4812 + - uid: 1167 + components: + - type: Transform + pos: -9.5,4.5 + parent: 4812 + - uid: 1168 + components: + - type: Transform + pos: -9.5,8.5 + parent: 4812 + - uid: 1169 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 4812 + - uid: 1170 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 4812 + - uid: 1171 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 4812 + - uid: 1172 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 4812 + - uid: 1173 + components: + - type: Transform + pos: -12.5,1.5 + parent: 4812 + - uid: 1174 + components: + - type: Transform + pos: -12.5,2.5 + parent: 4812 + - uid: 1175 + components: + - type: Transform + pos: -12.5,3.5 + parent: 4812 + - uid: 1176 + components: + - type: Transform + pos: -12.5,4.5 + parent: 4812 + - uid: 1177 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 4812 + - uid: 1178 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 4812 + - uid: 1179 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 4812 + - uid: 1180 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 4812 + - uid: 1181 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 4812 + - uid: 1182 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 4812 + - uid: 1183 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 4812 + - uid: 1184 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 4812 + - uid: 1185 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 4812 + - uid: 1186 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 4812 + - uid: 1187 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 4812 + - uid: 1188 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 4812 + - uid: 1189 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 4812 + - uid: 1190 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 4812 + - uid: 1191 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 4812 + - uid: 1192 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 4812 + - uid: 1193 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 4812 + - uid: 1194 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 4812 + - uid: 1195 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 4812 + - uid: 1196 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 4812 + - uid: 1197 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 4812 + - uid: 1198 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 4812 + - uid: 1199 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 4812 + - uid: 1200 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 4812 + - uid: 1201 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 4812 + - uid: 1202 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 4812 + - uid: 1203 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 4812 + - uid: 1204 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 4812 + - uid: 1205 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 4812 + - uid: 1206 + components: + - type: Transform + pos: -4.5,0.5 + parent: 4812 + - uid: 1207 + components: + - type: Transform + pos: -4.5,1.5 + parent: 4812 + - uid: 1208 + components: + - type: Transform + pos: -4.5,2.5 + parent: 4812 + - uid: 1209 + components: + - type: Transform + pos: -4.5,3.5 + parent: 4812 + - uid: 1210 + components: + - type: Transform + pos: -4.5,4.5 + parent: 4812 + - uid: 1211 + components: + - type: Transform + pos: -4.5,5.5 + parent: 4812 + - uid: 1212 + components: + - type: Transform + pos: -4.5,6.5 + parent: 4812 + - uid: 1213 + components: + - type: Transform + pos: -4.5,7.5 + parent: 4812 + - uid: 1214 + components: + - type: Transform + pos: -4.5,8.5 + parent: 4812 + - uid: 1215 + components: + - type: Transform + pos: -4.5,9.5 + parent: 4812 + - uid: 1216 + components: + - type: Transform + pos: -12.5,14.5 + parent: 4812 + - uid: 1217 + components: + - type: Transform + pos: -12.5,15.5 + parent: 4812 + - uid: 1218 + components: + - type: Transform + pos: -12.5,16.5 + parent: 4812 + - uid: 1219 + components: + - type: Transform + pos: -12.5,17.5 + parent: 4812 + - uid: 1220 + components: + - type: Transform + pos: -12.5,14.5 + parent: 4812 + - uid: 1221 + components: + - type: Transform + pos: -12.5,13.5 + parent: 4812 + - uid: 1222 + components: + - type: Transform + pos: -12.5,12.5 + parent: 4812 + - uid: 1223 + components: + - type: Transform + pos: -12.5,11.5 + parent: 4812 + - uid: 1224 + components: + - type: Transform + pos: -12.5,10.5 + parent: 4812 + - uid: 1225 + components: + - type: Transform + pos: -13.5,10.5 + parent: 4812 + - uid: 1226 + components: + - type: Transform + pos: -14.5,10.5 + parent: 4812 + - uid: 1227 + components: + - type: Transform + pos: -15.5,10.5 + parent: 4812 + - uid: 1228 + components: + - type: Transform + pos: -17.5,10.5 + parent: 4812 + - uid: 1229 + components: + - type: Transform + pos: -18.5,10.5 + parent: 4812 + - uid: 1230 + components: + - type: Transform + pos: -16.5,10.5 + parent: 4812 + - uid: 1231 + components: + - type: Transform + pos: -19.5,10.5 + parent: 4812 + - uid: 1232 + components: + - type: Transform + pos: -20.5,10.5 + parent: 4812 + - uid: 1233 + components: + - type: Transform + pos: -18.5,9.5 + parent: 4812 + - uid: 1234 + components: + - type: Transform + pos: -18.5,8.5 + parent: 4812 + - uid: 1235 + components: + - type: Transform + pos: -18.5,7.5 + parent: 4812 + - uid: 1236 + components: + - type: Transform + pos: -12.5,5.5 + parent: 4812 + - uid: 1237 + components: + - type: Transform + pos: -12.5,6.5 + parent: 4812 + - uid: 1238 + components: + - type: Transform + pos: -12.5,7.5 + parent: 4812 + - uid: 1239 + components: + - type: Transform + pos: -12.5,8.5 + parent: 4812 + - uid: 1240 + components: + - type: Transform + pos: -12.5,9.5 + parent: 4812 + - uid: 1241 + components: + - type: Transform + pos: -14.5,2.5 + parent: 4812 + - uid: 1242 + components: + - type: Transform + pos: -15.5,2.5 + parent: 4812 + - uid: 1243 + components: + - type: Transform + pos: -16.5,2.5 + parent: 4812 + - uid: 1244 + components: + - type: Transform + pos: -17.5,2.5 + parent: 4812 + - uid: 1245 + components: + - type: Transform + pos: -18.5,2.5 + parent: 4812 + - uid: 1246 + components: + - type: Transform + pos: -19.5,2.5 + parent: 4812 + - uid: 1247 + components: + - type: Transform + pos: -20.5,2.5 + parent: 4812 + - uid: 1248 + components: + - type: Transform + pos: -21.5,2.5 + parent: 4812 + - uid: 1249 + components: + - type: Transform + pos: -22.5,2.5 + parent: 4812 + - uid: 1250 + components: + - type: Transform + pos: -18.5,3.5 + parent: 4812 + - uid: 1251 + components: + - type: Transform + pos: -18.5,4.5 + parent: 4812 + - uid: 1257 + components: + - type: Transform + pos: -18.5,1.5 + parent: 4812 + - uid: 1258 + components: + - type: Transform + pos: -18.5,0.5 + parent: 4812 + - uid: 1259 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 4812 + - uid: 1260 + components: + - type: Transform + pos: -21.5,10.5 + parent: 4812 + - uid: 1261 + components: + - type: Transform + pos: -22.5,10.5 + parent: 4812 + - uid: 1262 + components: + - type: Transform + pos: -22.5,11.5 + parent: 4812 + - uid: 1263 + components: + - type: Transform + pos: -22.5,12.5 + parent: 4812 + - uid: 1264 + components: + - type: Transform + pos: -22.5,13.5 + parent: 4812 + - uid: 1265 + components: + - type: Transform + pos: -22.5,14.5 + parent: 4812 + - uid: 1266 + components: + - type: Transform + pos: -22.5,15.5 + parent: 4812 + - uid: 1267 + components: + - type: Transform + pos: -22.5,16.5 + parent: 4812 + - uid: 1268 + components: + - type: Transform + pos: -21.5,16.5 + parent: 4812 + - uid: 1269 + components: + - type: Transform + pos: -20.5,16.5 + parent: 4812 + - uid: 1270 + components: + - type: Transform + pos: -18.5,16.5 + parent: 4812 + - uid: 1271 + components: + - type: Transform + pos: -19.5,16.5 + parent: 4812 + - uid: 1272 + components: + - type: Transform + pos: -17.5,16.5 + parent: 4812 + - uid: 1273 + components: + - type: Transform + pos: -17.5,15.5 + parent: 4812 + - uid: 1274 + components: + - type: Transform + pos: -17.5,14.5 + parent: 4812 + - uid: 1275 + components: + - type: Transform + pos: -11.5,13.5 + parent: 4812 + - uid: 1276 + components: + - type: Transform + pos: -10.5,13.5 + parent: 4812 + - uid: 1277 + components: + - type: Transform + pos: -9.5,13.5 + parent: 4812 + - uid: 1278 + components: + - type: Transform + pos: -8.5,13.5 + parent: 4812 + - uid: 1279 + components: + - type: Transform + pos: -7.5,13.5 + parent: 4812 + - uid: 1280 + components: + - type: Transform + pos: -6.5,13.5 + parent: 4812 + - uid: 1281 + components: + - type: Transform + pos: -5.5,13.5 + parent: 4812 + - uid: 1282 + components: + - type: Transform + pos: -4.5,13.5 + parent: 4812 + - uid: 1283 + components: + - type: Transform + pos: -3.5,13.5 + parent: 4812 + - uid: 1284 + components: + - type: Transform + pos: -2.5,13.5 + parent: 4812 + - uid: 1285 + components: + - type: Transform + pos: -1.5,13.5 + parent: 4812 + - uid: 1286 + components: + - type: Transform + pos: -2.5,14.5 + parent: 4812 + - uid: 1287 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 4812 + - uid: 1288 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 4812 + - uid: 1289 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 4812 + - uid: 1290 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 4812 + - uid: 1291 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 4812 + - uid: 1292 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 4812 + - uid: 1293 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 4812 + - uid: 1294 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 4812 + - uid: 1295 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 4812 + - uid: 1296 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 4812 + - uid: 1297 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 4812 + - uid: 1298 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 4812 + - uid: 1299 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 4812 + - uid: 1300 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 4812 + - uid: 1301 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 4812 + - uid: 1302 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 4812 + - uid: 1303 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 4812 + - uid: 1304 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 4812 + - uid: 1305 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 4812 + - uid: 1306 + components: + - type: Transform + pos: 4.5,0.5 + parent: 4812 + - uid: 1307 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 4812 + - uid: 1308 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 4812 + - uid: 1309 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 4812 + - uid: 1310 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 4812 + - uid: 1311 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 4812 + - uid: 1312 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 4812 + - uid: 1313 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 4812 + - uid: 1314 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 4812 + - uid: 1315 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 4812 + - uid: 1316 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 4812 + - uid: 1317 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 4812 + - uid: 1318 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 4812 + - uid: 1319 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 4812 + - uid: 1320 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 4812 + - uid: 1321 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 4812 + - uid: 1322 + components: + - type: Transform + pos: 0.5,0.5 + parent: 4812 + - uid: 1323 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 4812 + - uid: 1324 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 4812 + - uid: 1325 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 4812 + - uid: 1326 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 4812 + - uid: 1327 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 4812 + - uid: 1328 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 4812 + - uid: 1329 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 4812 + - uid: 1330 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 4812 + - uid: 1331 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 4812 + - uid: 1332 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 4812 + - uid: 1333 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 4812 + - uid: 1334 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 4812 + - uid: 1335 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 4812 + - uid: 1336 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 4812 + - uid: 1337 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 4812 + - uid: 1338 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 4812 + - uid: 1339 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 4812 + - uid: 1340 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 4812 + - uid: 1341 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 4812 + - uid: 1342 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 4812 + - uid: 1343 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 4812 + - uid: 1344 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 4812 + - uid: 1345 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 4812 + - uid: 1346 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 4812 + - uid: 1347 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 4812 + - uid: 1348 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 4812 + - uid: 1349 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 4812 + - uid: 1350 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 4812 + - uid: 1351 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 4812 + - uid: 1352 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 4812 + - uid: 1353 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 4812 + - uid: 1354 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 4812 + - uid: 1355 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 4812 + - uid: 1356 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 4812 + - uid: 1357 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 4812 + - uid: 1358 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 4812 + - uid: 1359 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 4812 + - uid: 1361 + components: + - type: Transform + pos: 7.5,3.5 + parent: 4812 + - uid: 1362 + components: + - type: Transform + pos: 8.5,3.5 + parent: 4812 + - uid: 1363 + components: + - type: Transform + pos: 11.5,3.5 + parent: 4812 + - uid: 1364 + components: + - type: Transform + pos: 10.5,3.5 + parent: 4812 + - uid: 1365 + components: + - type: Transform + pos: 9.5,3.5 + parent: 4812 + - uid: 1366 + components: + - type: Transform + pos: 9.5,2.5 + parent: 4812 + - uid: 1369 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 4812 + - uid: 1370 + components: + - type: Transform + pos: 11.5,4.5 + parent: 4812 + - uid: 1371 + components: + - type: Transform + pos: 11.5,5.5 + parent: 4812 + - uid: 1372 + components: + - type: Transform + pos: 11.5,6.5 + parent: 4812 + - uid: 1373 + components: + - type: Transform + pos: 11.5,7.5 + parent: 4812 + - uid: 1374 + components: + - type: Transform + pos: 11.5,8.5 + parent: 4812 + - uid: 1375 + components: + - type: Transform + pos: 11.5,9.5 + parent: 4812 + - uid: 1376 + components: + - type: Transform + pos: 11.5,10.5 + parent: 4812 + - uid: 1377 + components: + - type: Transform + pos: 11.5,11.5 + parent: 4812 + - uid: 1378 + components: + - type: Transform + pos: 11.5,12.5 + parent: 4812 + - uid: 1379 + components: + - type: Transform + pos: 11.5,13.5 + parent: 4812 + - uid: 1380 + components: + - type: Transform + pos: 11.5,14.5 + parent: 4812 + - uid: 1381 + components: + - type: Transform + pos: 11.5,15.5 + parent: 4812 + - uid: 1382 + components: + - type: Transform + pos: 11.5,16.5 + parent: 4812 + - uid: 1383 + components: + - type: Transform + pos: 9.5,4.5 + parent: 4812 + - uid: 1384 + components: + - type: Transform + pos: 9.5,5.5 + parent: 4812 + - uid: 1385 + components: + - type: Transform + pos: 9.5,6.5 + parent: 4812 + - uid: 1386 + components: + - type: Transform + pos: 9.5,7.5 + parent: 4812 + - uid: 1387 + components: + - type: Transform + pos: 9.5,8.5 + parent: 4812 + - uid: 1388 + components: + - type: Transform + pos: 9.5,9.5 + parent: 4812 + - uid: 1389 + components: + - type: Transform + pos: 9.5,10.5 + parent: 4812 + - uid: 1390 + components: + - type: Transform + pos: 9.5,11.5 + parent: 4812 + - uid: 1391 + components: + - type: Transform + pos: 8.5,11.5 + parent: 4812 + - uid: 1392 + components: + - type: Transform + pos: 7.5,11.5 + parent: 4812 + - uid: 1393 + components: + - type: Transform + pos: 6.5,11.5 + parent: 4812 + - uid: 1394 + components: + - type: Transform + pos: 5.5,11.5 + parent: 4812 + - uid: 1395 + components: + - type: Transform + pos: 4.5,11.5 + parent: 4812 + - uid: 1396 + components: + - type: Transform + pos: 3.5,11.5 + parent: 4812 + - uid: 1397 + components: + - type: Transform + pos: 3.5,12.5 + parent: 4812 + - uid: 1398 + components: + - type: Transform + pos: 3.5,13.5 + parent: 4812 + - uid: 1399 + components: + - type: Transform + pos: 3.5,14.5 + parent: 4812 + - uid: 1400 + components: + - type: Transform + pos: 2.5,14.5 + parent: 4812 + - uid: 1401 + components: + - type: Transform + pos: 1.5,14.5 + parent: 4812 + - uid: 1402 + components: + - type: Transform + pos: 11.5,17.5 + parent: 4812 + - uid: 1403 + components: + - type: Transform + pos: 11.5,18.5 + parent: 4812 + - uid: 1404 + components: + - type: Transform + pos: 11.5,19.5 + parent: 4812 + - uid: 1405 + components: + - type: Transform + pos: 10.5,19.5 + parent: 4812 + - uid: 1406 + components: + - type: Transform + pos: 9.5,19.5 + parent: 4812 + - uid: 1407 + components: + - type: Transform + pos: 8.5,19.5 + parent: 4812 + - uid: 1408 + components: + - type: Transform + pos: 7.5,19.5 + parent: 4812 + - uid: 1409 + components: + - type: Transform + pos: 6.5,19.5 + parent: 4812 + - uid: 1410 + components: + - type: Transform + pos: 6.5,18.5 + parent: 4812 + - uid: 1411 + components: + - type: Transform + pos: 6.5,17.5 + parent: 4812 + - uid: 1412 + components: + - type: Transform + pos: 6.5,16.5 + parent: 4812 + - uid: 1413 + components: + - type: Transform + pos: 6.5,15.5 + parent: 4812 + - uid: 1414 + components: + - type: Transform + pos: 6.5,14.5 + parent: 4812 + - uid: 1415 + components: + - type: Transform + pos: 7.5,14.5 + parent: 4812 + - uid: 1416 + components: + - type: Transform + pos: 8.5,14.5 + parent: 4812 + - uid: 1417 + components: + - type: Transform + pos: 7.5,17.5 + parent: 4812 + - uid: 1418 + components: + - type: Transform + pos: 8.5,17.5 + parent: 4812 + - uid: 1420 + components: + - type: Transform + pos: 6.5,7.5 + parent: 4812 + - uid: 1421 + components: + - type: Transform + pos: 6.5,8.5 + parent: 4812 + - uid: 1422 + components: + - type: Transform + pos: 6.5,9.5 + parent: 4812 + - uid: 1423 + components: + - type: Transform + pos: 5.5,7.5 + parent: 4812 + - uid: 1424 + components: + - type: Transform + pos: 4.5,7.5 + parent: 4812 + - uid: 1425 + components: + - type: Transform + pos: 3.5,7.5 + parent: 4812 + - uid: 1426 + components: + - type: Transform + pos: 2.5,7.5 + parent: 4812 + - uid: 1427 + components: + - type: Transform + pos: 2.5,8.5 + parent: 4812 + - uid: 1428 + components: + - type: Transform + pos: 2.5,9.5 + parent: 4812 + - uid: 1429 + components: + - type: Transform + pos: 2.5,6.5 + parent: 4812 + - uid: 1430 + components: + - type: Transform + pos: 2.5,5.5 + parent: 4812 + - uid: 1431 + components: + - type: Transform + pos: 6.5,2.5 + parent: 4812 + - uid: 1432 + components: + - type: Transform + pos: 5.5,2.5 + parent: 4812 + - uid: 1433 + components: + - type: Transform + pos: 4.5,2.5 + parent: 4812 + - uid: 1434 + components: + - type: Transform + pos: 3.5,2.5 + parent: 4812 + - uid: 1435 + components: + - type: Transform + pos: 2.5,2.5 + parent: 4812 + - uid: 1436 + components: + - type: Transform + pos: 1.5,2.5 + parent: 4812 + - uid: 1437 + components: + - type: Transform + pos: 0.5,2.5 + parent: 4812 + - uid: 1438 + components: + - type: Transform + pos: 0.5,3.5 + parent: 4812 + - uid: 1439 + components: + - type: Transform + pos: 0.5,4.5 + parent: 4812 + - uid: 1440 + components: + - type: Transform + pos: 0.5,5.5 + parent: 4812 + - uid: 1441 + components: + - type: Transform + pos: 0.5,6.5 + parent: 4812 + - uid: 1442 + components: + - type: Transform + pos: 0.5,7.5 + parent: 4812 + - uid: 1443 + components: + - type: Transform + pos: 0.5,8.5 + parent: 4812 + - uid: 1444 + components: + - type: Transform + pos: 0.5,9.5 + parent: 4812 + - uid: 1445 + components: + - type: Transform + pos: -0.5,9.5 + parent: 4812 + - uid: 1446 + components: + - type: Transform + pos: -0.5,10.5 + parent: 4812 + - uid: 1447 + components: + - type: Transform + pos: -0.5,4.5 + parent: 4812 + - uid: 1448 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 4812 + - uid: 1449 + components: + - type: Transform + pos: -3.5,1.5 + parent: 4812 + - uid: 1450 + components: + - type: Transform + pos: -3.5,7.5 + parent: 4812 + - uid: 1451 + components: + - type: Transform + pos: -5.5,9.5 + parent: 4812 + - uid: 1452 + components: + - type: Transform + pos: -5.5,10.5 + parent: 4812 + - uid: 1523 + components: + - type: Transform + pos: -22.5,3.5 + parent: 4812 + - uid: 1524 + components: + - type: Transform + pos: -22.5,4.5 + parent: 4812 + - uid: 1525 + components: + - type: Transform + pos: -22.5,5.5 + parent: 4812 + - uid: 1526 + components: + - type: Transform + pos: -22.5,1.5 + parent: 4812 + - uid: 1527 + components: + - type: Transform + pos: -22.5,0.5 + parent: 4812 + - uid: 1528 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 4812 + - uid: 1529 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 4812 + - uid: 1530 + components: + - type: Transform + pos: -23.5,1.5 + parent: 4812 + - uid: 1546 + components: + - type: Transform + pos: 8.5,8.5 + parent: 4812 + - uid: 1547 + components: + - type: Transform + pos: 7.5,8.5 + parent: 4812 + - uid: 2244 + components: + - type: Transform + pos: -6.5,31.5 + parent: 4812 + - uid: 2245 + components: + - type: Transform + pos: -5.5,31.5 + parent: 4812 + - uid: 2246 + components: + - type: Transform + pos: -4.5,31.5 + parent: 4812 + - uid: 2247 + components: + - type: Transform + pos: -3.5,31.5 + parent: 4812 + - uid: 2248 + components: + - type: Transform + pos: -2.5,31.5 + parent: 4812 + - uid: 2249 + components: + - type: Transform + pos: -2.5,30.5 + parent: 4812 + - uid: 2250 + components: + - type: Transform + pos: -2.5,29.5 + parent: 4812 + - uid: 2251 + components: + - type: Transform + pos: -2.5,28.5 + parent: 4812 + - uid: 2252 + components: + - type: Transform + pos: -3.5,28.5 + parent: 4812 + - uid: 2253 + components: + - type: Transform + pos: -4.5,28.5 + parent: 4812 + - uid: 2254 + components: + - type: Transform + pos: -5.5,28.5 + parent: 4812 + - uid: 2255 + components: + - type: Transform + pos: -1.5,28.5 + parent: 4812 + - uid: 2256 + components: + - type: Transform + pos: -0.5,28.5 + parent: 4812 + - uid: 2257 + components: + - type: Transform + pos: 0.5,28.5 + parent: 4812 + - uid: 2258 + components: + - type: Transform + pos: 1.5,28.5 + parent: 4812 + - uid: 2259 + components: + - type: Transform + pos: -7.5,31.5 + parent: 4812 + - uid: 2260 + components: + - type: Transform + pos: -8.5,31.5 + parent: 4812 + - uid: 2261 + components: + - type: Transform + pos: -7.5,30.5 + parent: 4812 + - uid: 2262 + components: + - type: Transform + pos: -7.5,29.5 + parent: 4812 + - uid: 2263 + components: + - type: Transform + pos: -7.5,28.5 + parent: 4812 + - uid: 2264 + components: + - type: Transform + pos: -7.5,27.5 + parent: 4812 + - uid: 2265 + components: + - type: Transform + pos: -7.5,26.5 + parent: 4812 + - uid: 2266 + components: + - type: Transform + pos: -7.5,25.5 + parent: 4812 + - uid: 2267 + components: + - type: Transform + pos: -7.5,24.5 + parent: 4812 + - uid: 2268 + components: + - type: Transform + pos: -7.5,23.5 + parent: 4812 + - uid: 2269 + components: + - type: Transform + pos: -7.5,22.5 + parent: 4812 + - uid: 2270 + components: + - type: Transform + pos: -7.5,32.5 + parent: 4812 + - uid: 2271 + components: + - type: Transform + pos: -7.5,33.5 + parent: 4812 + - uid: 2272 + components: + - type: Transform + pos: -7.5,34.5 + parent: 4812 + - uid: 2273 + components: + - type: Transform + pos: -2.5,32.5 + parent: 4812 + - uid: 2274 + components: + - type: Transform + pos: -2.5,33.5 + parent: 4812 + - uid: 2275 + components: + - type: Transform + pos: -2.5,34.5 + parent: 4812 + - uid: 2276 + components: + - type: Transform + pos: -3.5,34.5 + parent: 4812 + - uid: 2277 + components: + - type: Transform + pos: -5.5,34.5 + parent: 4812 + - uid: 2278 + components: + - type: Transform + pos: -4.5,34.5 + parent: 4812 + - uid: 2279 + components: + - type: Transform + pos: -1.5,34.5 + parent: 4812 + - uid: 2280 + components: + - type: Transform + pos: -0.5,34.5 + parent: 4812 + - uid: 2281 + components: + - type: Transform + pos: 0.5,34.5 + parent: 4812 + - uid: 2282 + components: + - type: Transform + pos: 1.5,34.5 + parent: 4812 + - uid: 2283 + components: + - type: Transform + pos: 2.5,34.5 + parent: 4812 + - uid: 2284 + components: + - type: Transform + pos: -1.5,32.5 + parent: 4812 + - uid: 2285 + components: + - type: Transform + pos: -0.5,32.5 + parent: 4812 + - uid: 2286 + components: + - type: Transform + pos: 0.5,32.5 + parent: 4812 + - uid: 2287 + components: + - type: Transform + pos: 1.5,32.5 + parent: 4812 + - uid: 2288 + components: + - type: Transform + pos: 2.5,32.5 + parent: 4812 + - uid: 2289 + components: + - type: Transform + pos: 3.5,32.5 + parent: 4812 + - uid: 2290 + components: + - type: Transform + pos: 4.5,32.5 + parent: 4812 + - uid: 2291 + components: + - type: Transform + pos: 5.5,32.5 + parent: 4812 + - uid: 2292 + components: + - type: Transform + pos: 6.5,32.5 + parent: 4812 + - uid: 2293 + components: + - type: Transform + pos: 2.5,31.5 + parent: 4812 + - uid: 2294 + components: + - type: Transform + pos: 2.5,30.5 + parent: 4812 + - uid: 2295 + components: + - type: Transform + pos: 2.5,29.5 + parent: 4812 + - uid: 2296 + components: + - type: Transform + pos: 9.5,27.5 + parent: 4812 + - uid: 2297 + components: + - type: Transform + pos: 9.5,26.5 + parent: 4812 + - uid: 2298 + components: + - type: Transform + pos: 9.5,25.5 + parent: 4812 + - uid: 2299 + components: + - type: Transform + pos: 9.5,24.5 + parent: 4812 + - uid: 2300 + components: + - type: Transform + pos: 9.5,23.5 + parent: 4812 + - uid: 2301 + components: + - type: Transform + pos: 9.5,22.5 + parent: 4812 + - uid: 2302 + components: + - type: Transform + pos: 9.5,21.5 + parent: 4812 + - uid: 2303 + components: + - type: Transform + pos: 8.5,22.5 + parent: 4812 + - uid: 2304 + components: + - type: Transform + pos: 6.5,22.5 + parent: 4812 + - uid: 2305 + components: + - type: Transform + pos: 5.5,22.5 + parent: 4812 + - uid: 2306 + components: + - type: Transform + pos: 7.5,22.5 + parent: 4812 + - uid: 2307 + components: + - type: Transform + pos: 10.5,22.5 + parent: 4812 + - uid: 2308 + components: + - type: Transform + pos: 8.5,25.5 + parent: 4812 + - uid: 2309 + components: + - type: Transform + pos: 7.5,25.5 + parent: 4812 + - uid: 2310 + components: + - type: Transform + pos: 6.5,25.5 + parent: 4812 + - uid: 2311 + components: + - type: Transform + pos: 6.5,26.5 + parent: 4812 + - uid: 2312 + components: + - type: Transform + pos: 6.5,27.5 + parent: 4812 + - uid: 2313 + components: + - type: Transform + pos: 6.5,28.5 + parent: 4812 + - uid: 2314 + components: + - type: Transform + pos: 6.5,29.5 + parent: 4812 + - uid: 2315 + components: + - type: Transform + pos: 7.5,28.5 + parent: 4812 + - uid: 2316 + components: + - type: Transform + pos: 8.5,28.5 + parent: 4812 + - uid: 2317 + components: + - type: Transform + pos: 9.5,28.5 + parent: 4812 + - uid: 2318 + components: + - type: Transform + pos: 10.5,28.5 + parent: 4812 + - uid: 2319 + components: + - type: Transform + pos: 10.5,29.5 + parent: 4812 + - uid: 2320 + components: + - type: Transform + pos: 10.5,30.5 + parent: 4812 + - uid: 2321 + components: + - type: Transform + pos: 5.5,25.5 + parent: 4812 + - uid: 2322 + components: + - type: Transform + pos: 4.5,25.5 + parent: 4812 + - uid: 2323 + components: + - type: Transform + pos: 3.5,25.5 + parent: 4812 + - uid: 2324 + components: + - type: Transform + pos: 3.5,24.5 + parent: 4812 + - uid: 2325 + components: + - type: Transform + pos: 3.5,23.5 + parent: 4812 + - uid: 2326 + components: + - type: Transform + pos: 3.5,22.5 + parent: 4812 + - uid: 2327 + components: + - type: Transform + pos: 3.5,21.5 + parent: 4812 + - uid: 2328 + components: + - type: Transform + pos: 0.5,21.5 + parent: 4812 + - uid: 2329 + components: + - type: Transform + pos: 0.5,20.5 + parent: 4812 + - uid: 2330 + components: + - type: Transform + pos: 0.5,19.5 + parent: 4812 + - uid: 2331 + components: + - type: Transform + pos: -0.5,19.5 + parent: 4812 + - uid: 2332 + components: + - type: Transform + pos: -1.5,19.5 + parent: 4812 + - uid: 2333 + components: + - type: Transform + pos: -2.5,19.5 + parent: 4812 + - uid: 2334 + components: + - type: Transform + pos: -3.5,19.5 + parent: 4812 + - uid: 2335 + components: + - type: Transform + pos: -4.5,19.5 + parent: 4812 + - uid: 2336 + components: + - type: Transform + pos: -5.5,19.5 + parent: 4812 + - uid: 2337 + components: + - type: Transform + pos: -6.5,19.5 + parent: 4812 + - uid: 2338 + components: + - type: Transform + pos: -7.5,19.5 + parent: 4812 + - uid: 2339 + components: + - type: Transform + pos: -8.5,19.5 + parent: 4812 + - uid: 2340 + components: + - type: Transform + pos: -9.5,19.5 + parent: 4812 + - uid: 2341 + components: + - type: Transform + pos: -10.5,19.5 + parent: 4812 + - uid: 2342 + components: + - type: Transform + pos: -11.5,19.5 + parent: 4812 + - uid: 2343 + components: + - type: Transform + pos: -12.5,19.5 + parent: 4812 + - uid: 2344 + components: + - type: Transform + pos: -13.5,19.5 + parent: 4812 + - uid: 2345 + components: + - type: Transform + pos: -14.5,19.5 + parent: 4812 + - uid: 2346 + components: + - type: Transform + pos: -15.5,19.5 + parent: 4812 + - uid: 2347 + components: + - type: Transform + pos: -16.5,19.5 + parent: 4812 + - uid: 2348 + components: + - type: Transform + pos: 1.5,19.5 + parent: 4812 + - uid: 2349 + components: + - type: Transform + pos: 2.5,19.5 + parent: 4812 + - uid: 2350 + components: + - type: Transform + pos: 3.5,19.5 + parent: 4812 + - uid: 2351 + components: + - type: Transform + pos: 4.5,19.5 + parent: 4812 + - uid: 2352 + components: + - type: Transform + pos: 0.5,22.5 + parent: 4812 + - uid: 2353 + components: + - type: Transform + pos: 0.5,23.5 + parent: 4812 + - uid: 2354 + components: + - type: Transform + pos: 0.5,24.5 + parent: 4812 + - uid: 2355 + components: + - type: Transform + pos: 0.5,25.5 + parent: 4812 + - uid: 2356 + components: + - type: Transform + pos: -0.5,25.5 + parent: 4812 + - uid: 2357 + components: + - type: Transform + pos: -1.5,25.5 + parent: 4812 + - uid: 2358 + components: + - type: Transform + pos: -2.5,25.5 + parent: 4812 + - uid: 2359 + components: + - type: Transform + pos: -3.5,25.5 + parent: 4812 + - uid: 2360 + components: + - type: Transform + pos: -4.5,25.5 + parent: 4812 + - uid: 2361 + components: + - type: Transform + pos: -0.5,23.5 + parent: 4812 + - uid: 2362 + components: + - type: Transform + pos: -1.5,23.5 + parent: 4812 + - uid: 2363 + components: + - type: Transform + pos: -2.5,23.5 + parent: 4812 + - uid: 2364 + components: + - type: Transform + pos: -3.5,23.5 + parent: 4812 + - uid: 2365 + components: + - type: Transform + pos: -4.5,23.5 + parent: 4812 + - uid: 2367 + components: + - type: Transform + pos: -14.5,25.5 + parent: 4812 + - uid: 2368 + components: + - type: Transform + pos: -14.5,24.5 + parent: 4812 + - uid: 2369 + components: + - type: Transform + pos: -14.5,23.5 + parent: 4812 + - uid: 2370 + components: + - type: Transform + pos: -14.5,22.5 + parent: 4812 + - uid: 2371 + components: + - type: Transform + pos: -15.5,24.5 + parent: 4812 + - uid: 2372 + components: + - type: Transform + pos: -13.5,24.5 + parent: 4812 + - uid: 2373 + components: + - type: Transform + pos: -12.5,24.5 + parent: 4812 + - uid: 2374 + components: + - type: Transform + pos: -11.5,24.5 + parent: 4812 + - uid: 2375 + components: + - type: Transform + pos: -11.5,25.5 + parent: 4812 + - uid: 2376 + components: + - type: Transform + pos: -11.5,26.5 + parent: 4812 + - uid: 2377 + components: + - type: Transform + pos: -11.5,27.5 + parent: 4812 + - uid: 2378 + components: + - type: Transform + pos: -11.5,28.5 + parent: 4812 + - uid: 2379 + components: + - type: Transform + pos: -12.5,28.5 + parent: 4812 + - uid: 2380 + components: + - type: Transform + pos: -13.5,28.5 + parent: 4812 + - uid: 2381 + components: + - type: Transform + pos: -14.5,28.5 + parent: 4812 + - uid: 2382 + components: + - type: Transform + pos: -15.5,28.5 + parent: 4812 + - uid: 2383 + components: + - type: Transform + pos: -11.5,23.5 + parent: 4812 + - uid: 2384 + components: + - type: Transform + pos: -11.5,22.5 + parent: 4812 + - uid: 2395 + components: + - type: Transform + pos: -10.5,23.5 + parent: 4812 + - uid: 2652 + components: + - type: Transform + pos: -11.5,-57.5 + parent: 4812 + - uid: 2815 + components: + - type: Transform + pos: 16.5,35.5 + parent: 4812 + - uid: 2816 + components: + - type: Transform + pos: 16.5,34.5 + parent: 4812 + - uid: 2823 + components: + - type: Transform + pos: 19.5,35.5 + parent: 4812 + - uid: 2826 + components: + - type: Transform + pos: 16.5,33.5 + parent: 4812 + - uid: 2827 + components: + - type: Transform + pos: 21.5,25.5 + parent: 4812 + - uid: 2833 + components: + - type: Transform + pos: 11.5,32.5 + parent: 4812 + - uid: 2846 + components: + - type: Transform + pos: 18.5,35.5 + parent: 4812 + - uid: 2847 + components: + - type: Transform + pos: 16.5,30.5 + parent: 4812 + - uid: 2848 + components: + - type: Transform + pos: 22.5,25.5 + parent: 4812 + - uid: 2865 + components: + - type: Transform + pos: 16.5,32.5 + parent: 4812 + - uid: 2867 + components: + - type: Transform + pos: 20.5,27.5 + parent: 4812 + - uid: 2868 + components: + - type: Transform + pos: 20.5,25.5 + parent: 4812 + - uid: 2869 + components: + - type: Transform + pos: 16.5,31.5 + parent: 4812 + - uid: 3038 + components: + - type: Transform + pos: 22.5,27.5 + parent: 4812 + - uid: 3039 + components: + - type: Transform + pos: 21.5,27.5 + parent: 4812 + - uid: 3136 + components: + - type: Transform + pos: 17.5,22.5 + parent: 4812 + - uid: 3137 + components: + - type: Transform + pos: 17.5,23.5 + parent: 4812 + - uid: 3138 + components: + - type: Transform + pos: 17.5,24.5 + parent: 4812 + - uid: 3139 + components: + - type: Transform + pos: 17.5,25.5 + parent: 4812 + - uid: 3140 + components: + - type: Transform + pos: 17.5,26.5 + parent: 4812 + - uid: 3141 + components: + - type: Transform + pos: 18.5,26.5 + parent: 4812 + - uid: 3142 + components: + - type: Transform + pos: 19.5,26.5 + parent: 4812 + - uid: 3143 + components: + - type: Transform + pos: 20.5,26.5 + parent: 4812 + - uid: 3146 + components: + - type: Transform + pos: 18.5,24.5 + parent: 4812 + - uid: 3147 + components: + - type: Transform + pos: 19.5,24.5 + parent: 4812 + - uid: 3148 + components: + - type: Transform + pos: 20.5,24.5 + parent: 4812 + - uid: 3151 + components: + - type: Transform + pos: 16.5,26.5 + parent: 4812 + - uid: 3152 + components: + - type: Transform + pos: 15.5,26.5 + parent: 4812 + - uid: 3153 + components: + - type: Transform + pos: 15.5,27.5 + parent: 4812 + - uid: 3154 + components: + - type: Transform + pos: 15.5,28.5 + parent: 4812 + - uid: 3155 + components: + - type: Transform + pos: 15.5,29.5 + parent: 4812 + - uid: 3156 + components: + - type: Transform + pos: 16.5,29.5 + parent: 4812 + - uid: 3157 + components: + - type: Transform + pos: 17.5,21.5 + parent: 4812 + - uid: 3158 + components: + - type: Transform + pos: 17.5,20.5 + parent: 4812 + - uid: 3159 + components: + - type: Transform + pos: 17.5,19.5 + parent: 4812 + - uid: 3160 + components: + - type: Transform + pos: 17.5,18.5 + parent: 4812 + - uid: 3161 + components: + - type: Transform + pos: 17.5,17.5 + parent: 4812 + - uid: 3162 + components: + - type: Transform + pos: 16.5,20.5 + parent: 4812 + - uid: 3163 + components: + - type: Transform + pos: 15.5,20.5 + parent: 4812 + - uid: 3164 + components: + - type: Transform + pos: 18.5,20.5 + parent: 4812 + - uid: 3165 + components: + - type: Transform + pos: 19.5,20.5 + parent: 4812 + - uid: 3166 + components: + - type: Transform + pos: 16.5,18.5 + parent: 4812 + - uid: 3167 + components: + - type: Transform + pos: 15.5,18.5 + parent: 4812 + - uid: 3168 + components: + - type: Transform + pos: 19.5,18.5 + parent: 4812 + - uid: 3169 + components: + - type: Transform + pos: 18.5,18.5 + parent: 4812 + - uid: 3170 + components: + - type: Transform + pos: 19.5,17.5 + parent: 4812 + - uid: 3171 + components: + - type: Transform + pos: 19.5,16.5 + parent: 4812 + - uid: 3172 + components: + - type: Transform + pos: 19.5,15.5 + parent: 4812 + - uid: 3173 + components: + - type: Transform + pos: 19.5,14.5 + parent: 4812 + - uid: 3174 + components: + - type: Transform + pos: 20.5,14.5 + parent: 4812 + - uid: 3175 + components: + - type: Transform + pos: 21.5,14.5 + parent: 4812 + - uid: 3176 + components: + - type: Transform + pos: 22.5,14.5 + parent: 4812 + - uid: 3177 + components: + - type: Transform + pos: 23.5,14.5 + parent: 4812 + - uid: 3178 + components: + - type: Transform + pos: 24.5,14.5 + parent: 4812 + - uid: 3179 + components: + - type: Transform + pos: 25.5,14.5 + parent: 4812 + - uid: 3180 + components: + - type: Transform + pos: 26.5,14.5 + parent: 4812 + - uid: 3181 + components: + - type: Transform + pos: 27.5,14.5 + parent: 4812 + - uid: 3182 + components: + - type: Transform + pos: 18.5,14.5 + parent: 4812 + - uid: 3183 + components: + - type: Transform + pos: 17.5,14.5 + parent: 4812 + - uid: 3184 + components: + - type: Transform + pos: 16.5,14.5 + parent: 4812 + - uid: 3185 + components: + - type: Transform + pos: 15.5,14.5 + parent: 4812 + - uid: 3186 + components: + - type: Transform + pos: 14.5,14.5 + parent: 4812 + - uid: 3192 + components: + - type: Transform + pos: 17.5,35.5 + parent: 4812 + - uid: 3195 + components: + - type: Transform + pos: 12.5,32.5 + parent: 4812 + - uid: 3196 + components: + - type: Transform + pos: 12.5,31.5 + parent: 4812 + - uid: 3197 + components: + - type: Transform + pos: 12.5,30.5 + parent: 4812 + - uid: 3198 + components: + - type: Transform + pos: 12.5,29.5 + parent: 4812 + - uid: 3199 + components: + - type: Transform + pos: 12.5,28.5 + parent: 4812 + - uid: 3200 + components: + - type: Transform + pos: 12.5,27.5 + parent: 4812 + - uid: 3201 + components: + - type: Transform + pos: 12.5,26.5 + parent: 4812 + - uid: 3202 + components: + - type: Transform + pos: 12.5,25.5 + parent: 4812 + - uid: 3203 + components: + - type: Transform + pos: 12.5,24.5 + parent: 4812 + - uid: 3204 + components: + - type: Transform + pos: 12.5,23.5 + parent: 4812 + - uid: 3205 + components: + - type: Transform + pos: 12.5,22.5 + parent: 4812 + - uid: 3897 + components: + - type: Transform + pos: 11.5,51.5 + parent: 4812 + - uid: 3898 + components: + - type: Transform + pos: 11.5,50.5 + parent: 4812 + - uid: 3899 + components: + - type: Transform + pos: 10.5,50.5 + parent: 4812 + - uid: 3900 + components: + - type: Transform + pos: 10.5,49.5 + parent: 4812 + - uid: 3901 + components: + - type: Transform + pos: 10.5,48.5 + parent: 4812 + - uid: 3902 + components: + - type: Transform + pos: 10.5,47.5 + parent: 4812 + - uid: 3903 + components: + - type: Transform + pos: 10.5,46.5 + parent: 4812 + - uid: 3904 + components: + - type: Transform + pos: 10.5,45.5 + parent: 4812 + - uid: 3905 + components: + - type: Transform + pos: 10.5,44.5 + parent: 4812 + - uid: 3906 + components: + - type: Transform + pos: 10.5,43.5 + parent: 4812 + - uid: 3907 + components: + - type: Transform + pos: 11.5,45.5 + parent: 4812 + - uid: 3908 + components: + - type: Transform + pos: 12.5,45.5 + parent: 4812 + - uid: 3909 + components: + - type: Transform + pos: 13.5,45.5 + parent: 4812 + - uid: 3910 + components: + - type: Transform + pos: 14.5,45.5 + parent: 4812 + - uid: 3911 + components: + - type: Transform + pos: 15.5,45.5 + parent: 4812 + - uid: 3912 + components: + - type: Transform + pos: 15.5,46.5 + parent: 4812 + - uid: 3913 + components: + - type: Transform + pos: 9.5,45.5 + parent: 4812 + - uid: 3914 + components: + - type: Transform + pos: 8.5,45.5 + parent: 4812 + - uid: 3915 + components: + - type: Transform + pos: 7.5,45.5 + parent: 4812 + - uid: 3916 + components: + - type: Transform + pos: 6.5,45.5 + parent: 4812 + - uid: 3917 + components: + - type: Transform + pos: 5.5,45.5 + parent: 4812 + - uid: 3918 + components: + - type: Transform + pos: 4.5,45.5 + parent: 4812 + - uid: 3919 + components: + - type: Transform + pos: 3.5,45.5 + parent: 4812 + - uid: 3920 + components: + - type: Transform + pos: 6.5,46.5 + parent: 4812 + - uid: 3921 + components: + - type: Transform + pos: 6.5,47.5 + parent: 4812 + - uid: 3922 + components: + - type: Transform + pos: 9.5,50.5 + parent: 4812 + - uid: 3923 + components: + - type: Transform + pos: 8.5,50.5 + parent: 4812 + - uid: 3924 + components: + - type: Transform + pos: 8.5,51.5 + parent: 4812 + - uid: 3925 + components: + - type: Transform + pos: 8.5,52.5 + parent: 4812 + - uid: 3926 + components: + - type: Transform + pos: 8.5,53.5 + parent: 4812 + - uid: 3927 + components: + - type: Transform + pos: 8.5,54.5 + parent: 4812 + - uid: 3928 + components: + - type: Transform + pos: 8.5,55.5 + parent: 4812 + - uid: 3929 + components: + - type: Transform + pos: 12.5,50.5 + parent: 4812 + - uid: 3930 + components: + - type: Transform + pos: 12.5,51.5 + parent: 4812 + - uid: 3931 + components: + - type: Transform + pos: 12.5,52.5 + parent: 4812 + - uid: 3932 + components: + - type: Transform + pos: 12.5,53.5 + parent: 4812 + - uid: 3933 + components: + - type: Transform + pos: 12.5,54.5 + parent: 4812 + - uid: 3934 + components: + - type: Transform + pos: 12.5,55.5 + parent: 4812 + - uid: 3935 + components: + - type: Transform + pos: 11.5,53.5 + parent: 4812 + - uid: 3936 + components: + - type: Transform + pos: 10.5,53.5 + parent: 4812 + - uid: 3937 + components: + - type: Transform + pos: 9.5,53.5 + parent: 4812 + - uid: 3938 + components: + - type: Transform + pos: 10.5,52.5 + parent: 4812 + - uid: 3939 + components: + - type: Transform + pos: 11.5,55.5 + parent: 4812 + - uid: 3940 + components: + - type: Transform + pos: 10.5,55.5 + parent: 4812 + - uid: 3941 + components: + - type: Transform + pos: 9.5,55.5 + parent: 4812 + - uid: 3942 + components: + - type: Transform + pos: 13.5,53.5 + parent: 4812 + - uid: 3943 + components: + - type: Transform + pos: 7.5,53.5 + parent: 4812 + - uid: 4010 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 4812 + - uid: 4257 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 4812 + - uid: 4258 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 4812 + - uid: 4259 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 4812 + - uid: 4260 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 4812 + - uid: 4261 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 4812 + - uid: 4262 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 4812 + - uid: 4263 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 4812 + - uid: 4264 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 4812 + - uid: 4265 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 4812 + - uid: 4266 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 4812 + - uid: 4267 + components: + - type: Transform + pos: 12.5,7.5 + parent: 4812 + - uid: 4268 + components: + - type: Transform + pos: 13.5,7.5 + parent: 4812 + - uid: 4269 + components: + - type: Transform + pos: 14.5,7.5 + parent: 4812 + - uid: 4270 + components: + - type: Transform + pos: 15.5,7.5 + parent: 4812 + - uid: 4271 + components: + - type: Transform + pos: 16.5,7.5 + parent: 4812 + - uid: 4272 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 4812 + - uid: 4273 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 4812 + - uid: 4274 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 4812 + - uid: 4275 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 4812 + - uid: 4276 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 4812 + - uid: 4277 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 4812 + - uid: 4278 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 4812 + - uid: 4279 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 4812 + - uid: 4280 + components: + - type: Transform + pos: 15.5,0.5 + parent: 4812 + - uid: 4281 + components: + - type: Transform + pos: 15.5,1.5 + parent: 4812 + - uid: 4282 + components: + - type: Transform + pos: 15.5,2.5 + parent: 4812 + - uid: 4283 + components: + - type: Transform + pos: 15.5,3.5 + parent: 4812 + - uid: 4284 + components: + - type: Transform + pos: 15.5,4.5 + parent: 4812 + - uid: 4285 + components: + - type: Transform + pos: 16.5,4.5 + parent: 4812 + - uid: 4286 + components: + - type: Transform + pos: 17.5,4.5 + parent: 4812 + - uid: 4287 + components: + - type: Transform + pos: 18.5,4.5 + parent: 4812 + - uid: 4288 + components: + - type: Transform + pos: 18.5,5.5 + parent: 4812 + - uid: 4289 + components: + - type: Transform + pos: 18.5,6.5 + parent: 4812 + - uid: 4290 + components: + - type: Transform + pos: 18.5,7.5 + parent: 4812 + - uid: 4291 + components: + - type: Transform + pos: 18.5,8.5 + parent: 4812 + - uid: 4292 + components: + - type: Transform + pos: 18.5,9.5 + parent: 4812 + - uid: 4293 + components: + - type: Transform + pos: 18.5,10.5 + parent: 4812 + - uid: 4294 + components: + - type: Transform + pos: 17.5,10.5 + parent: 4812 + - uid: 4295 + components: + - type: Transform + pos: 16.5,10.5 + parent: 4812 + - uid: 4296 + components: + - type: Transform + pos: 15.5,10.5 + parent: 4812 + - uid: 4297 + components: + - type: Transform + pos: 14.5,10.5 + parent: 4812 + - uid: 4298 + components: + - type: Transform + pos: 19.5,10.5 + parent: 4812 + - uid: 4299 + components: + - type: Transform + pos: 20.5,10.5 + parent: 4812 + - uid: 4300 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 4812 + - uid: 4301 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 4812 + - uid: 4302 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 4812 + - uid: 4303 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 4812 + - uid: 4304 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 4812 + - uid: 4305 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 4812 + - uid: 4306 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 4812 + - uid: 4307 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 4812 + - uid: 4308 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 4812 + - uid: 4309 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 4812 + - uid: 4310 + components: + - type: Transform + pos: 30.5,0.5 + parent: 4812 + - uid: 4311 + components: + - type: Transform + pos: 30.5,1.5 + parent: 4812 + - uid: 4312 + components: + - type: Transform + pos: 30.5,2.5 + parent: 4812 + - uid: 4313 + components: + - type: Transform + pos: 30.5,3.5 + parent: 4812 + - uid: 4314 + components: + - type: Transform + pos: 30.5,4.5 + parent: 4812 + - uid: 4315 + components: + - type: Transform + pos: 31.5,2.5 + parent: 4812 + - uid: 4316 + components: + - type: Transform + pos: 32.5,2.5 + parent: 4812 + - uid: 4317 + components: + - type: Transform + pos: 33.5,2.5 + parent: 4812 + - uid: 4318 + components: + - type: Transform + pos: 31.5,0.5 + parent: 4812 + - uid: 4319 + components: + - type: Transform + pos: 32.5,0.5 + parent: 4812 + - uid: 4320 + components: + - type: Transform + pos: 33.5,0.5 + parent: 4812 + - uid: 4321 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 4812 + - uid: 4322 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 4812 + - uid: 4323 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 4812 + - uid: 4324 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 4812 + - uid: 4325 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 4812 + - uid: 4326 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 4812 + - uid: 4327 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 4812 + - uid: 4328 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 4812 + - uid: 4329 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 4812 + - uid: 4330 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 4812 + - uid: 4331 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 4812 + - uid: 4332 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 4812 + - uid: 4333 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 4812 + - uid: 4334 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 4812 + - uid: 4335 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 4812 + - uid: 4336 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 4812 + - uid: 4337 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 4812 + - uid: 4338 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 4812 + - uid: 4339 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 4812 + - uid: 4340 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 4812 + - uid: 4341 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 4812 + - uid: 4342 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 4812 + - uid: 4343 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 4812 + - uid: 4344 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 4812 + - uid: 4345 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 4812 + - uid: 4346 + components: + - type: Transform + pos: 24.5,0.5 + parent: 4812 + - uid: 4347 + components: + - type: Transform + pos: 24.5,1.5 + parent: 4812 + - uid: 4348 + components: + - type: Transform + pos: 24.5,2.5 + parent: 4812 + - uid: 4349 + components: + - type: Transform + pos: 24.5,3.5 + parent: 4812 + - uid: 4350 + components: + - type: Transform + pos: 24.5,4.5 + parent: 4812 + - uid: 4351 + components: + - type: Transform + pos: 23.5,4.5 + parent: 4812 + - uid: 4352 + components: + - type: Transform + pos: 22.5,4.5 + parent: 4812 + - uid: 4353 + components: + - type: Transform + pos: 22.5,5.5 + parent: 4812 + - uid: 4354 + components: + - type: Transform + pos: 22.5,6.5 + parent: 4812 + - uid: 4355 + components: + - type: Transform + pos: 22.5,7.5 + parent: 4812 + - uid: 4356 + components: + - type: Transform + pos: 22.5,8.5 + parent: 4812 + - uid: 4357 + components: + - type: Transform + pos: 19.5,4.5 + parent: 4812 + - uid: 4358 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 4812 + - uid: 4359 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 4812 + - uid: 4360 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 4812 + - uid: 4361 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 4812 + - uid: 4362 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 4812 + - uid: 4363 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 4812 + - uid: 4364 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 4812 + - uid: 4365 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 4812 + - uid: 4366 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 4812 + - uid: 4367 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 4812 + - uid: 4368 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 4812 + - uid: 4369 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 4812 + - uid: 4660 + components: + - type: Transform + pos: -13.5,-50.5 + parent: 4812 + - uid: 4689 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 4812 + - uid: 4690 + components: + - type: Transform + pos: -11.5,-55.5 + parent: 4812 + - uid: 4724 + components: + - type: Transform + pos: -11.5,-54.5 + parent: 4812 + - uid: 4863 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 4812 + - uid: 4864 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 4812 + - uid: 4866 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 4812 + - uid: 4867 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 4812 + - uid: 4868 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 4812 + - uid: 4869 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 4812 + - uid: 4894 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 4812 + - uid: 4895 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 4812 + - uid: 4896 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 4812 + - uid: 4897 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 4812 + - uid: 4899 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 4812 + - uid: 4900 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 4812 + - uid: 4901 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 4812 + - uid: 4902 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 4812 + - uid: 4903 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 4812 + - uid: 4904 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 4812 + - uid: 4905 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 4812 + - uid: 4906 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 4812 + - uid: 4907 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 4812 + - uid: 4908 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 4812 + - uid: 4909 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 4812 + - uid: 4910 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 4812 + - uid: 4911 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 4812 + - uid: 4912 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 4812 + - uid: 4913 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 4812 + - uid: 4930 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 4812 + - uid: 4946 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 4812 + - uid: 4947 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 4812 + - uid: 4948 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 4812 + - uid: 4949 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 4812 + - uid: 5008 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 4812 + - uid: 5009 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 4812 + - uid: 5017 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 4812 + - uid: 5029 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 4812 + - uid: 5030 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 4812 + - uid: 5031 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 4812 + - uid: 5034 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 4812 + - uid: 5035 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 4812 + - uid: 5036 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 4812 + - uid: 5037 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 4812 + - uid: 5038 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 4812 + - uid: 5041 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 4812 + - uid: 5044 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 4812 + - uid: 5052 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 4812 + - uid: 5056 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 4812 + - uid: 5057 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 4812 + - uid: 5058 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 4812 + - uid: 5229 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 4812 + - uid: 5232 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 4812 + - uid: 5233 + components: + - type: Transform + pos: -10.5,-50.5 + parent: 4812 + - uid: 5234 + components: + - type: Transform + pos: -9.5,-50.5 + parent: 4812 + - uid: 5235 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 4812 + - uid: 5236 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 4812 + - uid: 5237 + components: + - type: Transform + pos: -9.5,-43.5 + parent: 4812 + - uid: 5238 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 4812 + - uid: 5239 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 4812 + - uid: 5240 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 4812 + - uid: 5241 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 4812 + - uid: 5242 + components: + - type: Transform + pos: -11.5,-53.5 + parent: 4812 + - uid: 5243 + components: + - type: Transform + pos: -11.5,-52.5 + parent: 4812 + - uid: 5244 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 4812 + - uid: 5245 + components: + - type: Transform + pos: -11.5,-49.5 + parent: 4812 + - uid: 5246 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 4812 + - uid: 5247 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 4812 + - uid: 5248 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 4812 + - uid: 5249 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 4812 + - uid: 5250 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 4812 + - uid: 5251 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 4812 + - uid: 5252 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 4812 + - uid: 5253 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 4812 + - uid: 5254 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 4812 + - uid: 5255 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 4812 + - uid: 5256 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 4812 + - uid: 5257 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 4812 + - uid: 5258 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 4812 + - uid: 5259 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 4812 + - uid: 5260 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 4812 + - uid: 5261 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 4812 + - uid: 5262 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 4812 + - uid: 5263 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 4812 + - uid: 5264 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 4812 + - uid: 5265 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 4812 + - uid: 5266 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 4812 + - uid: 5267 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 4812 + - uid: 5268 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 4812 + - uid: 5269 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 4812 + - uid: 5270 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 4812 + - uid: 5271 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 4812 + - uid: 5272 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 4812 + - uid: 5364 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 4812 + - uid: 6022 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 4812 + - uid: 6023 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 4812 + - uid: 6024 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 4812 + - uid: 6025 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 4812 + - uid: 6026 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 4812 + - uid: 6027 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 4812 + - uid: 6028 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 4812 + - uid: 6029 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 4812 + - uid: 6030 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 4812 + - uid: 6031 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 4812 + - uid: 6032 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 4812 + - uid: 6033 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 4812 + - uid: 6034 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 4812 + - uid: 6035 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 4812 + - uid: 6036 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 4812 + - uid: 6037 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 4812 + - uid: 6038 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 4812 + - uid: 6039 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 4812 + - uid: 6040 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 4812 + - uid: 6041 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 4812 + - uid: 6042 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 4812 + - uid: 6043 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 4812 + - uid: 6044 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 4812 + - uid: 6045 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 4812 + - uid: 6046 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 4812 + - uid: 6047 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 4812 + - uid: 6048 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 4812 + - uid: 6049 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 4812 + - uid: 6050 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 4812 + - uid: 6052 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 4812 + - uid: 6053 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 4812 + - uid: 6054 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 4812 + - uid: 6055 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 4812 + - uid: 6056 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 4812 + - uid: 6057 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 4812 + - uid: 6058 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 4812 + - uid: 6059 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 4812 + - uid: 6060 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 4812 + - uid: 6061 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 4812 + - uid: 6062 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 4812 + - uid: 6063 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 4812 + - uid: 6066 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 4812 + - uid: 6067 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 4812 + - uid: 6068 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 4812 + - uid: 6069 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 4812 + - uid: 6070 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 4812 + - uid: 6071 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 4812 + - uid: 6072 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 4812 + - uid: 6073 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 4812 + - uid: 6074 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 4812 + - uid: 6075 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 4812 + - uid: 6076 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 4812 + - uid: 6077 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 4812 + - uid: 6078 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 4812 + - uid: 6079 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 4812 + - uid: 6080 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 4812 + - uid: 6081 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 4812 + - uid: 6082 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 4812 + - uid: 6083 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 4812 + - uid: 6084 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 4812 + - uid: 6085 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 4812 + - uid: 6086 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 4812 + - uid: 6087 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 4812 + - uid: 6088 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 4812 + - uid: 6089 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 4812 + - uid: 6090 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 4812 + - uid: 6091 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 4812 + - uid: 6092 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 4812 + - uid: 6093 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 4812 + - uid: 6094 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 4812 + - uid: 6095 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 4812 + - uid: 6096 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 4812 + - uid: 6097 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 4812 + - uid: 6098 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 4812 + - uid: 6099 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 4812 + - uid: 6100 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 4812 + - uid: 6101 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 4812 + - uid: 6102 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 4812 + - uid: 6103 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 4812 + - uid: 6104 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 4812 + - uid: 6105 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 4812 + - uid: 6106 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 4812 + - uid: 6107 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 4812 + - uid: 6108 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 4812 + - uid: 6109 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 4812 + - uid: 6110 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 4812 + - uid: 6111 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 4812 + - uid: 6112 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 4812 + - uid: 6113 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 4812 + - uid: 6114 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 4812 + - uid: 6115 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 4812 + - uid: 6116 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 4812 + - uid: 6117 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 4812 + - uid: 6119 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 4812 + - uid: 6120 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 4812 + - uid: 6121 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 4812 + - uid: 6122 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 4812 + - uid: 6123 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 4812 + - uid: 6124 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 4812 + - uid: 6125 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 4812 + - uid: 6126 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 4812 + - uid: 6127 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 4812 + - uid: 6128 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 4812 + - uid: 6129 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 4812 + - uid: 6130 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 4812 + - uid: 6131 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 4812 + - uid: 6132 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 4812 + - uid: 6133 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 4812 + - uid: 6134 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 4812 + - uid: 6135 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 4812 + - uid: 6136 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 4812 + - uid: 6137 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 4812 + - uid: 6138 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 4812 + - uid: 6139 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 4812 + - uid: 6140 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 4812 + - uid: 6141 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 4812 + - uid: 6142 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 4812 + - uid: 6143 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 4812 + - uid: 6144 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 4812 + - uid: 6145 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 4812 + - uid: 6146 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 4812 + - uid: 6147 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 4812 + - uid: 6148 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 4812 + - uid: 6150 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 4812 + - uid: 6151 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 4812 + - uid: 6152 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 4812 + - uid: 6153 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 4812 + - uid: 6154 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 4812 + - uid: 6155 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 4812 + - uid: 6156 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 4812 + - uid: 6157 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 4812 + - uid: 6158 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 4812 + - uid: 6159 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 4812 + - uid: 6160 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 4812 + - uid: 6161 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 4812 + - uid: 6162 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 4812 + - uid: 6163 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 4812 + - uid: 6164 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 4812 + - uid: 6551 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 4812 + - uid: 6552 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 4812 + - uid: 6555 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 4812 + - uid: 6557 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 4812 + - uid: 6610 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 4812 + - uid: 6611 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 4812 + - uid: 6616 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 4812 + - uid: 6626 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 4812 + - uid: 6627 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 4812 + - uid: 6630 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 4812 + - uid: 6681 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 4812 + - uid: 6845 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 4812 + - uid: 6846 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 4812 + - uid: 6847 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 4812 + - uid: 6848 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 4812 + - uid: 6849 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 4812 + - uid: 6850 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 4812 + - uid: 6851 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 4812 + - uid: 6852 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 4812 + - uid: 6853 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 4812 + - uid: 6854 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 4812 + - uid: 6855 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 4812 + - uid: 6856 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 4812 + - uid: 6857 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 4812 + - uid: 6858 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 4812 + - uid: 6859 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 4812 + - uid: 6860 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 4812 + - uid: 6861 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 4812 + - uid: 6862 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 4812 + - uid: 6863 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 4812 + - uid: 6864 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 4812 + - uid: 6865 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 4812 + - uid: 6866 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 4812 + - uid: 6867 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 4812 + - uid: 6868 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 4812 + - uid: 6869 + components: + - type: Transform + pos: -26.5,-35.5 + parent: 4812 + - uid: 6870 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 4812 + - uid: 6871 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 4812 + - uid: 6872 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 4812 + - uid: 6873 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 4812 + - uid: 6874 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 4812 + - uid: 6875 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 4812 + - uid: 6876 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 4812 + - uid: 6877 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 4812 + - uid: 6878 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 4812 + - uid: 6879 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 4812 + - uid: 6880 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 4812 + - uid: 6881 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 4812 + - uid: 6882 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 4812 + - uid: 6883 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 4812 + - uid: 6884 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 4812 + - uid: 6886 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 4812 + - uid: 6887 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 4812 + - uid: 6888 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 4812 + - uid: 6889 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 4812 + - uid: 6890 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 4812 + - uid: 6891 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 4812 + - uid: 6892 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 4812 + - uid: 6893 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 4812 + - uid: 6894 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 4812 + - uid: 7091 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 4812 + - uid: 7092 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 4812 + - uid: 7093 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 4812 + - uid: 7094 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 4812 + - uid: 7095 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 4812 + - uid: 7096 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 4812 + - uid: 7097 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 4812 + - uid: 7098 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 4812 + - uid: 7099 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 4812 + - uid: 7100 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 4812 + - uid: 7101 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 4812 + - uid: 7102 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 4812 + - uid: 7103 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 4812 + - uid: 7104 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 4812 + - uid: 7105 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 4812 + - uid: 7106 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 4812 + - uid: 7107 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 4812 + - uid: 7108 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 4812 + - uid: 7109 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 4812 + - uid: 7110 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 4812 + - uid: 7111 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 4812 + - uid: 7112 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 4812 + - uid: 7113 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 4812 + - uid: 7114 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 4812 + - uid: 7115 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 4812 + - uid: 7116 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 4812 + - uid: 7117 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 4812 + - uid: 7118 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 4812 + - uid: 7119 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 4812 + - uid: 7120 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 4812 + - uid: 7121 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 4812 + - uid: 7122 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 4812 + - uid: 7123 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 4812 + - uid: 7124 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 4812 + - uid: 7182 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 4812 + - uid: 7232 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 4812 + - uid: 7242 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 4812 + - uid: 7243 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 4812 + - uid: 7390 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 4812 + - uid: 7420 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 4812 + - uid: 7421 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 4812 + - uid: 7422 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 4812 + - uid: 7423 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 4812 + - uid: 7424 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 4812 + - uid: 7425 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 4812 + - uid: 7489 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 4812 + - uid: 7490 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 4812 + - uid: 7491 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 4812 + - uid: 7492 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 4812 + - uid: 7493 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 4812 + - uid: 7494 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 4812 + - uid: 7495 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 4812 + - uid: 7496 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 4812 + - uid: 7497 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 4812 + - uid: 7498 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 4812 + - uid: 7499 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 4812 + - uid: 7500 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 4812 + - uid: 7501 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 4812 + - uid: 7502 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 4812 + - uid: 7503 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 4812 + - uid: 7504 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 4812 + - uid: 7505 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 4812 + - uid: 7506 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 4812 + - uid: 7507 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 4812 + - uid: 7508 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 4812 + - uid: 7509 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 4812 + - uid: 7510 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 4812 + - uid: 7511 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 4812 + - uid: 7512 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 4812 + - uid: 7513 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 4812 + - uid: 7514 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 4812 + - uid: 7515 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 4812 + - uid: 7516 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 4812 + - uid: 7517 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 4812 + - uid: 7518 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 4812 + - uid: 7519 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 4812 + - uid: 7520 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 4812 + - uid: 7521 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 4812 + - uid: 7522 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 4812 + - uid: 7523 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 4812 + - uid: 7524 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 4812 + - uid: 7525 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 4812 + - uid: 7526 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 4812 + - uid: 7527 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 4812 + - uid: 7528 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 4812 + - uid: 7529 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 4812 + - uid: 7530 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 4812 + - uid: 7531 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 4812 + - uid: 7532 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 4812 + - uid: 7533 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 4812 + - uid: 7534 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 4812 + - uid: 7535 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 4812 + - uid: 7536 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 4812 + - uid: 7537 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 4812 + - uid: 7538 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 4812 + - uid: 7539 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 4812 + - uid: 7540 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 4812 + - uid: 7541 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 4812 + - uid: 7542 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 4812 + - uid: 7543 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 4812 + - uid: 7544 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 4812 + - uid: 7545 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 4812 + - uid: 7546 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 4812 + - uid: 7547 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 4812 + - uid: 7548 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 4812 + - uid: 7549 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 4812 + - uid: 7550 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 4812 + - uid: 7551 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 4812 + - uid: 7552 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 4812 + - uid: 7553 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 4812 + - uid: 7554 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 4812 + - uid: 7555 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 4812 + - uid: 7557 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 4812 + - uid: 7558 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 4812 + - uid: 7559 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 4812 + - uid: 7560 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 4812 + - uid: 7561 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 4812 + - uid: 7562 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 4812 + - uid: 7563 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 4812 + - uid: 7564 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 4812 + - uid: 7565 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 4812 + - uid: 7566 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 4812 + - uid: 7567 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 4812 + - uid: 7568 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 4812 + - uid: 7569 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 4812 + - uid: 7605 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 4812 + - uid: 7606 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 4812 + - uid: 7607 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 4812 + - uid: 7608 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 4812 + - uid: 7609 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 4812 + - uid: 7610 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 4812 + - uid: 7611 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 4812 + - uid: 7612 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 4812 + - uid: 7613 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 4812 + - uid: 7614 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 4812 + - uid: 8061 + components: + - type: Transform + pos: -36.5,13.5 + parent: 4812 + - uid: 8062 + components: + - type: Transform + pos: -36.5,12.5 + parent: 4812 + - uid: 8063 + components: + - type: Transform + pos: -36.5,11.5 + parent: 4812 + - uid: 8064 + components: + - type: Transform + pos: -37.5,11.5 + parent: 4812 + - uid: 8065 + components: + - type: Transform + pos: -38.5,11.5 + parent: 4812 + - uid: 8066 + components: + - type: Transform + pos: -35.5,11.5 + parent: 4812 + - uid: 8067 + components: + - type: Transform + pos: -34.5,11.5 + parent: 4812 + - uid: 8068 + components: + - type: Transform + pos: -33.5,11.5 + parent: 4812 + - uid: 8070 + components: + - type: Transform + pos: -31.5,11.5 + parent: 4812 + - uid: 8071 + components: + - type: Transform + pos: -30.5,11.5 + parent: 4812 + - uid: 8072 + components: + - type: Transform + pos: -29.5,11.5 + parent: 4812 + - uid: 8073 + components: + - type: Transform + pos: -29.5,12.5 + parent: 4812 + - uid: 8074 + components: + - type: Transform + pos: -29.5,13.5 + parent: 4812 + - uid: 8075 + components: + - type: Transform + pos: -29.5,14.5 + parent: 4812 + - uid: 8076 + components: + - type: Transform + pos: -29.5,15.5 + parent: 4812 + - uid: 8077 + components: + - type: Transform + pos: -29.5,16.5 + parent: 4812 + - uid: 8078 + components: + - type: Transform + pos: -29.5,17.5 + parent: 4812 + - uid: 8079 + components: + - type: Transform + pos: -29.5,18.5 + parent: 4812 + - uid: 8080 + components: + - type: Transform + pos: -29.5,19.5 + parent: 4812 + - uid: 8081 + components: + - type: Transform + pos: -28.5,19.5 + parent: 4812 + - uid: 8082 + components: + - type: Transform + pos: -27.5,19.5 + parent: 4812 + - uid: 8083 + components: + - type: Transform + pos: -26.5,19.5 + parent: 4812 + - uid: 8084 + components: + - type: Transform + pos: -28.5,16.5 + parent: 4812 + - uid: 8085 + components: + - type: Transform + pos: -27.5,16.5 + parent: 4812 + - uid: 8086 + components: + - type: Transform + pos: -26.5,16.5 + parent: 4812 + - uid: 8087 + components: + - type: Transform + pos: -28.5,13.5 + parent: 4812 + - uid: 8088 + components: + - type: Transform + pos: -27.5,13.5 + parent: 4812 + - uid: 8089 + components: + - type: Transform + pos: -26.5,13.5 + parent: 4812 + - uid: 8090 + components: + - type: Transform + pos: -25.5,13.5 + parent: 4812 + - uid: 8091 + components: + - type: Transform + pos: -28.5,11.5 + parent: 4812 + - uid: 8092 + components: + - type: Transform + pos: -27.5,11.5 + parent: 4812 + - uid: 8093 + components: + - type: Transform + pos: -26.5,11.5 + parent: 4812 + - uid: 8094 + components: + - type: Transform + pos: -25.5,11.5 + parent: 4812 + - uid: 8095 + components: + - type: Transform + pos: -34.5,12.5 + parent: 4812 + - uid: 8096 + components: + - type: Transform + pos: -34.5,13.5 + parent: 4812 + - uid: 8097 + components: + - type: Transform + pos: -34.5,14.5 + parent: 4812 + - uid: 8098 + components: + - type: Transform + pos: -34.5,15.5 + parent: 4812 + - uid: 8099 + components: + - type: Transform + pos: -34.5,16.5 + parent: 4812 + - uid: 8100 + components: + - type: Transform + pos: -34.5,17.5 + parent: 4812 + - uid: 8101 + components: + - type: Transform + pos: -34.5,18.5 + parent: 4812 + - uid: 8102 + components: + - type: Transform + pos: -34.5,19.5 + parent: 4812 + - uid: 8103 + components: + - type: Transform + pos: -34.5,20.5 + parent: 4812 + - uid: 8104 + components: + - type: Transform + pos: -35.5,20.5 + parent: 4812 + - uid: 8105 + components: + - type: Transform + pos: -35.5,16.5 + parent: 4812 + - uid: 8106 + components: + - type: Transform + pos: -30.5,19.5 + parent: 4812 + - uid: 8107 + components: + - type: Transform + pos: -30.5,15.5 + parent: 4812 + - uid: 8108 + components: + - type: Transform + pos: -29.5,20.5 + parent: 4812 + - uid: 8109 + components: + - type: Transform + pos: -29.5,21.5 + parent: 4812 + - uid: 8110 + components: + - type: Transform + pos: -29.5,22.5 + parent: 4812 + - uid: 8111 + components: + - type: Transform + pos: -29.5,23.5 + parent: 4812 + - uid: 8112 + components: + - type: Transform + pos: -29.5,24.5 + parent: 4812 + - uid: 8113 + components: + - type: Transform + pos: -28.5,24.5 + parent: 4812 + - uid: 8114 + components: + - type: Transform + pos: -27.5,24.5 + parent: 4812 + - uid: 8115 + components: + - type: Transform + pos: -26.5,24.5 + parent: 4812 + - uid: 8116 + components: + - type: Transform + pos: -26.5,23.5 + parent: 4812 + - uid: 8117 + components: + - type: Transform + pos: -30.5,24.5 + parent: 4812 + - uid: 8118 + components: + - type: Transform + pos: -30.5,25.5 + parent: 4812 + - uid: 8119 + components: + - type: Transform + pos: -30.5,26.5 + parent: 4812 + - uid: 8120 + components: + - type: Transform + pos: -30.5,27.5 + parent: 4812 + - uid: 8121 + components: + - type: Transform + pos: -30.5,28.5 + parent: 4812 + - uid: 8122 + components: + - type: Transform + pos: -30.5,29.5 + parent: 4812 + - uid: 8123 + components: + - type: Transform + pos: -30.5,30.5 + parent: 4812 + - uid: 8124 + components: + - type: Transform + pos: -30.5,31.5 + parent: 4812 + - uid: 8125 + components: + - type: Transform + pos: -26.5,25.5 + parent: 4812 + - uid: 8126 + components: + - type: Transform + pos: -26.5,26.5 + parent: 4812 + - uid: 8127 + components: + - type: Transform + pos: -26.5,27.5 + parent: 4812 + - uid: 8128 + components: + - type: Transform + pos: -26.5,28.5 + parent: 4812 + - uid: 8129 + components: + - type: Transform + pos: -26.5,29.5 + parent: 4812 + - uid: 8130 + components: + - type: Transform + pos: -26.5,30.5 + parent: 4812 + - uid: 8131 + components: + - type: Transform + pos: -26.5,31.5 + parent: 4812 + - uid: 8132 + components: + - type: Transform + pos: -25.5,31.5 + parent: 4812 + - uid: 8133 + components: + - type: Transform + pos: -24.5,31.5 + parent: 4812 + - uid: 8134 + components: + - type: Transform + pos: -27.5,31.5 + parent: 4812 + - uid: 8135 + components: + - type: Transform + pos: -27.5,32.5 + parent: 4812 + - uid: 8136 + components: + - type: Transform + pos: -27.5,33.5 + parent: 4812 + - uid: 8137 + components: + - type: Transform + pos: -28.5,33.5 + parent: 4812 + - uid: 8138 + components: + - type: Transform + pos: -29.5,33.5 + parent: 4812 + - uid: 8139 + components: + - type: Transform + pos: -31.5,31.5 + parent: 4812 + - uid: 8140 + components: + - type: Transform + pos: -29.5,31.5 + parent: 4812 + - uid: 8197 + components: + - type: Transform + pos: -19.5,21.5 + parent: 4812 + - uid: 8198 + components: + - type: Transform + pos: -19.5,20.5 + parent: 4812 + - uid: 8199 + components: + - type: Transform + pos: -20.5,20.5 + parent: 4812 + - uid: 8200 + components: + - type: Transform + pos: -21.5,20.5 + parent: 4812 + - uid: 8201 + components: + - type: Transform + pos: -22.5,20.5 + parent: 4812 + - uid: 8202 + components: + - type: Transform + pos: -23.5,20.5 + parent: 4812 + - uid: 8203 + components: + - type: Transform + pos: -22.5,19.5 + parent: 4812 + - uid: 8204 + components: + - type: Transform + pos: -18.5,20.5 + parent: 4812 + - uid: 8205 + components: + - type: Transform + pos: -22.5,18.5 + parent: 4812 + - uid: 8206 + components: + - type: Transform + pos: -19.5,22.5 + parent: 4812 + - uid: 8207 + components: + - type: Transform + pos: -19.5,23.5 + parent: 4812 + - uid: 8208 + components: + - type: Transform + pos: -19.5,24.5 + parent: 4812 + - uid: 8209 + components: + - type: Transform + pos: -19.5,25.5 + parent: 4812 + - uid: 8210 + components: + - type: Transform + pos: -20.5,24.5 + parent: 4812 + - uid: 8211 + components: + - type: Transform + pos: -21.5,24.5 + parent: 4812 + - uid: 8212 + components: + - type: Transform + pos: -22.5,24.5 + parent: 4812 + - uid: 8213 + components: + - type: Transform + pos: -23.5,24.5 + parent: 4812 + - uid: 8214 + components: + - type: Transform + pos: -22.5,25.5 + parent: 4812 + - uid: 8215 + components: + - type: Transform + pos: -22.5,26.5 + parent: 4812 + - uid: 8216 + components: + - type: Transform + pos: -22.5,27.5 + parent: 4812 + - uid: 8217 + components: + - type: Transform + pos: -22.5,28.5 + parent: 4812 + - uid: 8218 + components: + - type: Transform + pos: -22.5,23.5 + parent: 4812 + - uid: 8219 + components: + - type: Transform + pos: -22.5,22.5 + parent: 4812 + - uid: 8220 + components: + - type: Transform + pos: -21.5,27.5 + parent: 4812 + - uid: 8221 + components: + - type: Transform + pos: -20.5,27.5 + parent: 4812 + - uid: 8222 + components: + - type: Transform + pos: -19.5,27.5 + parent: 4812 + - uid: 8223 + components: + - type: Transform + pos: -19.5,28.5 + parent: 4812 + - uid: 8224 + components: + - type: Transform + pos: -19.5,29.5 + parent: 4812 + - uid: 8319 + components: + - type: Transform + pos: -17.5,20.5 + parent: 4812 + - uid: 8320 + components: + - type: Transform + pos: -17.5,21.5 + parent: 4812 + - uid: 8321 + components: + - type: Transform + pos: -17.5,22.5 + parent: 4812 + - uid: 8322 + components: + - type: Transform + pos: -17.5,23.5 + parent: 4812 + - uid: 8323 + components: + - type: Transform + pos: -17.5,24.5 + parent: 4812 + - uid: 8324 + components: + - type: Transform + pos: -17.5,25.5 + parent: 4812 + - uid: 8325 + components: + - type: Transform + pos: -17.5,26.5 + parent: 4812 + - uid: 8326 + components: + - type: Transform + pos: -17.5,27.5 + parent: 4812 + - uid: 8327 + components: + - type: Transform + pos: -17.5,28.5 + parent: 4812 + - uid: 8908 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 4812 + - uid: 8909 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 4812 + - uid: 8910 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 4812 + - uid: 8911 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 4812 + - uid: 8912 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 4812 + - uid: 8913 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 4812 + - uid: 8914 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 4812 + - uid: 8915 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 4812 + - uid: 8916 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 4812 + - uid: 8917 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 4812 + - uid: 8918 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 4812 + - uid: 8919 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 4812 + - uid: 8920 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 4812 + - uid: 8921 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 4812 + - uid: 8922 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 4812 + - uid: 8923 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 4812 + - uid: 8924 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 4812 + - uid: 8925 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 4812 + - uid: 8926 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 4812 + - uid: 8927 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 4812 + - uid: 8928 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 4812 + - uid: 8929 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 4812 + - uid: 8930 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 4812 + - uid: 8931 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 4812 + - uid: 8932 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 4812 + - uid: 8933 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 4812 + - uid: 8934 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 4812 + - uid: 8935 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 4812 + - uid: 8936 + components: + - type: Transform + pos: -31.5,-33.5 + parent: 4812 + - uid: 8937 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 4812 + - uid: 8938 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 4812 + - uid: 8939 + components: + - type: Transform + pos: -34.5,-33.5 + parent: 4812 + - uid: 8940 + components: + - type: Transform + pos: -35.5,-33.5 + parent: 4812 + - uid: 8941 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 4812 + - uid: 8942 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 4812 + - uid: 8943 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 4812 + - uid: 8944 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 4812 + - uid: 8945 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 4812 + - uid: 8947 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 4812 + - uid: 8948 + components: + - type: Transform + pos: -36.5,-36.5 + parent: 4812 + - uid: 8949 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 4812 + - uid: 8968 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 4812 + - uid: 9050 + components: + - type: Transform + pos: -50.5,0.5 + parent: 4812 + - uid: 9090 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 4812 + - uid: 9288 + components: + - type: Transform + pos: -38.5,6.5 + parent: 4812 + - uid: 9321 + components: + - type: Transform + pos: -38.5,5.5 + parent: 4812 + - uid: 9322 + components: + - type: Transform + pos: -38.5,4.5 + parent: 4812 + - uid: 9323 + components: + - type: Transform + pos: -38.5,3.5 + parent: 4812 + - uid: 9324 + components: + - type: Transform + pos: -38.5,2.5 + parent: 4812 + - uid: 9325 + components: + - type: Transform + pos: -38.5,1.5 + parent: 4812 + - uid: 9326 + components: + - type: Transform + pos: -38.5,0.5 + parent: 4812 + - uid: 9327 + components: + - type: Transform + pos: -39.5,0.5 + parent: 4812 + - uid: 9328 + components: + - type: Transform + pos: -40.5,0.5 + parent: 4812 + - uid: 9329 + components: + - type: Transform + pos: -41.5,0.5 + parent: 4812 + - uid: 9330 + components: + - type: Transform + pos: -42.5,0.5 + parent: 4812 + - uid: 9331 + components: + - type: Transform + pos: -43.5,0.5 + parent: 4812 + - uid: 9332 + components: + - type: Transform + pos: -44.5,0.5 + parent: 4812 + - uid: 9333 + components: + - type: Transform + pos: -45.5,0.5 + parent: 4812 + - uid: 9334 + components: + - type: Transform + pos: -46.5,0.5 + parent: 4812 + - uid: 9335 + components: + - type: Transform + pos: -47.5,0.5 + parent: 4812 + - uid: 9336 + components: + - type: Transform + pos: -48.5,0.5 + parent: 4812 + - uid: 9337 + components: + - type: Transform + pos: -49.5,0.5 + parent: 4812 + - uid: 9338 + components: + - type: Transform + pos: -51.5,0.5 + parent: 4812 + - uid: 9339 + components: + - type: Transform + pos: -52.5,0.5 + parent: 4812 + - uid: 9340 + components: + - type: Transform + pos: -53.5,0.5 + parent: 4812 + - uid: 9341 + components: + - type: Transform + pos: -54.5,0.5 + parent: 4812 + - uid: 9342 + components: + - type: Transform + pos: -54.5,1.5 + parent: 4812 + - uid: 9343 + components: + - type: Transform + pos: -54.5,2.5 + parent: 4812 + - uid: 9344 + components: + - type: Transform + pos: -54.5,3.5 + parent: 4812 + - uid: 9345 + components: + - type: Transform + pos: -54.5,4.5 + parent: 4812 + - uid: 9346 + components: + - type: Transform + pos: -54.5,5.5 + parent: 4812 + - uid: 9347 + components: + - type: Transform + pos: -54.5,6.5 + parent: 4812 + - uid: 9348 + components: + - type: Transform + pos: -54.5,7.5 + parent: 4812 + - uid: 9349 + components: + - type: Transform + pos: -54.5,8.5 + parent: 4812 + - uid: 9350 + components: + - type: Transform + pos: -54.5,9.5 + parent: 4812 + - uid: 9351 + components: + - type: Transform + pos: -54.5,10.5 + parent: 4812 + - uid: 9352 + components: + - type: Transform + pos: -54.5,11.5 + parent: 4812 + - uid: 9353 + components: + - type: Transform + pos: -54.5,12.5 + parent: 4812 + - uid: 9354 + components: + - type: Transform + pos: -53.5,12.5 + parent: 4812 + - uid: 9355 + components: + - type: Transform + pos: -52.5,12.5 + parent: 4812 + - uid: 9356 + components: + - type: Transform + pos: -51.5,12.5 + parent: 4812 + - uid: 9357 + components: + - type: Transform + pos: -50.5,12.5 + parent: 4812 + - uid: 9358 + components: + - type: Transform + pos: -49.5,12.5 + parent: 4812 + - uid: 9359 + components: + - type: Transform + pos: -48.5,13.5 + parent: 4812 + - uid: 9360 + components: + - type: Transform + pos: -48.5,12.5 + parent: 4812 + - uid: 9361 + components: + - type: Transform + pos: -48.5,11.5 + parent: 4812 + - uid: 9362 + components: + - type: Transform + pos: -48.5,10.5 + parent: 4812 + - uid: 9363 + components: + - type: Transform + pos: -48.5,9.5 + parent: 4812 + - uid: 9364 + components: + - type: Transform + pos: -48.5,8.5 + parent: 4812 + - uid: 9365 + components: + - type: Transform + pos: -48.5,7.5 + parent: 4812 + - uid: 9366 + components: + - type: Transform + pos: -48.5,6.5 + parent: 4812 + - uid: 9367 + components: + - type: Transform + pos: -48.5,5.5 + parent: 4812 + - uid: 9368 + components: + - type: Transform + pos: -48.5,4.5 + parent: 4812 + - uid: 9369 + components: + - type: Transform + pos: -48.5,3.5 + parent: 4812 + - uid: 9370 + components: + - type: Transform + pos: -48.5,2.5 + parent: 4812 + - uid: 9371 + components: + - type: Transform + pos: -48.5,1.5 + parent: 4812 + - uid: 9372 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 4812 + - uid: 9373 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 4812 + - uid: 9374 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 4812 + - uid: 9375 + components: + - type: Transform + pos: -47.5,13.5 + parent: 4812 + - uid: 9376 + components: + - type: Transform + pos: -46.5,13.5 + parent: 4812 + - uid: 9377 + components: + - type: Transform + pos: -45.5,13.5 + parent: 4812 + - uid: 9378 + components: + - type: Transform + pos: -44.5,13.5 + parent: 4812 + - uid: 9379 + components: + - type: Transform + pos: -43.5,13.5 + parent: 4812 + - uid: 9380 + components: + - type: Transform + pos: -42.5,13.5 + parent: 4812 + - uid: 9381 + components: + - type: Transform + pos: -41.5,13.5 + parent: 4812 + - uid: 9382 + components: + - type: Transform + pos: -44.5,1.5 + parent: 4812 + - uid: 9383 + components: + - type: Transform + pos: -44.5,2.5 + parent: 4812 + - uid: 9384 + components: + - type: Transform + pos: -44.5,3.5 + parent: 4812 + - uid: 9385 + components: + - type: Transform + pos: -44.5,4.5 + parent: 4812 + - uid: 9386 + components: + - type: Transform + pos: -44.5,5.5 + parent: 4812 + - uid: 9387 + components: + - type: Transform + pos: -44.5,6.5 + parent: 4812 + - uid: 9388 + components: + - type: Transform + pos: -44.5,7.5 + parent: 4812 + - uid: 9389 + components: + - type: Transform + pos: -44.5,8.5 + parent: 4812 + - uid: 9390 + components: + - type: Transform + pos: -44.5,10.5 + parent: 4812 + - uid: 9391 + components: + - type: Transform + pos: -44.5,9.5 + parent: 4812 + - uid: 9392 + components: + - type: Transform + pos: -44.5,11.5 + parent: 4812 + - uid: 9393 + components: + - type: Transform + pos: -37.5,2.5 + parent: 4812 + - uid: 9394 + components: + - type: Transform + pos: -36.5,2.5 + parent: 4812 + - uid: 9395 + components: + - type: Transform + pos: -35.5,2.5 + parent: 4812 + - uid: 9396 + components: + - type: Transform + pos: -34.5,2.5 + parent: 4812 + - uid: 9397 + components: + - type: Transform + pos: -33.5,2.5 + parent: 4812 + - uid: 9398 + components: + - type: Transform + pos: -32.5,2.5 + parent: 4812 + - uid: 9399 + components: + - type: Transform + pos: -31.5,2.5 + parent: 4812 + - uid: 9400 + components: + - type: Transform + pos: -30.5,2.5 + parent: 4812 + - uid: 9401 + components: + - type: Transform + pos: -29.5,2.5 + parent: 4812 + - uid: 9402 + components: + - type: Transform + pos: -33.5,3.5 + parent: 4812 + - uid: 9403 + components: + - type: Transform + pos: -33.5,4.5 + parent: 4812 + - uid: 9404 + components: + - type: Transform + pos: -29.5,3.5 + parent: 4812 + - uid: 9405 + components: + - type: Transform + pos: -29.5,4.5 + parent: 4812 + - uid: 9406 + components: + - type: Transform + pos: -39.5,5.5 + parent: 4812 + - uid: 9407 + components: + - type: Transform + pos: -40.5,5.5 + parent: 4812 + - uid: 9408 + components: + - type: Transform + pos: -41.5,5.5 + parent: 4812 + - uid: 9409 + components: + - type: Transform + pos: -42.5,5.5 + parent: 4812 + - uid: 9410 + components: + - type: Transform + pos: -43.5,11.5 + parent: 4812 + - uid: 9411 + components: + - type: Transform + pos: -42.5,11.5 + parent: 4812 + - uid: 9456 + components: + - type: Transform + pos: -31.5,21.5 + parent: 4812 + - uid: 9458 + components: + - type: Transform + pos: -50.5,11.5 + parent: 4812 + - uid: 9459 + components: + - type: Transform + pos: -50.5,10.5 + parent: 4812 + - uid: 9460 + components: + - type: Transform + pos: -50.5,9.5 + parent: 4812 + - uid: 9461 + components: + - type: Transform + pos: -50.5,8.5 + parent: 4812 + - uid: 9462 + components: + - type: Transform + pos: -50.5,7.5 + parent: 4812 + - uid: 9463 + components: + - type: Transform + pos: -50.5,6.5 + parent: 4812 + - uid: 9464 + components: + - type: Transform + pos: -50.5,5.5 + parent: 4812 + - uid: 9465 + components: + - type: Transform + pos: -50.5,4.5 + parent: 4812 + - uid: 9466 + components: + - type: Transform + pos: -50.5,3.5 + parent: 4812 + - uid: 9467 + components: + - type: Transform + pos: -50.5,2.5 + parent: 4812 + - uid: 9468 + components: + - type: Transform + pos: -50.5,1.5 + parent: 4812 + - uid: 9512 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 4812 + - uid: 9523 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 4812 + - uid: 9525 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 4812 + - uid: 9526 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 4812 + - uid: 9527 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 4812 + - uid: 9528 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 4812 + - uid: 9529 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 4812 + - uid: 9530 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 4812 + - uid: 9540 + components: + - type: Transform + pos: -36.5,1.5 + parent: 4812 + - uid: 9542 + components: + - type: Transform + pos: -36.5,0.5 + parent: 4812 + - uid: 9547 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 4812 + - uid: 9559 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 4812 + - uid: 9560 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 4812 + - uid: 9561 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 4812 + - uid: 9562 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 4812 + - uid: 9574 + components: + - type: Transform + pos: -31.5,20.5 + parent: 4812 + - uid: 9589 + components: + - type: Transform + pos: -31.5,19.5 + parent: 4812 + - uid: 9694 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 4812 + - uid: 9695 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 4812 + - uid: 9696 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 4812 + - uid: 9697 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 4812 + - uid: 9708 + components: + - type: Transform + pos: -42.5,14.5 + parent: 4812 + - uid: 9709 + components: + - type: Transform + pos: -42.5,15.5 + parent: 4812 + - uid: 9710 + components: + - type: Transform + pos: -42.5,16.5 + parent: 4812 + - uid: 9711 + components: + - type: Transform + pos: -42.5,17.5 + parent: 4812 + - uid: 9712 + components: + - type: Transform + pos: -43.5,15.5 + parent: 4812 + - uid: 9713 + components: + - type: Transform + pos: -44.5,15.5 + parent: 4812 + - uid: 9714 + components: + - type: Transform + pos: -45.5,15.5 + parent: 4812 + - uid: 9715 + components: + - type: Transform + pos: -46.5,15.5 + parent: 4812 + - uid: 9716 + components: + - type: Transform + pos: -46.5,16.5 + parent: 4812 + - uid: 9717 + components: + - type: Transform + pos: -46.5,17.5 + parent: 4812 + - uid: 9718 + components: + - type: Transform + pos: -46.5,18.5 + parent: 4812 + - uid: 10041 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 4812 + - uid: 10042 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 4812 + - uid: 10043 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 4812 + - uid: 10044 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 4812 + - uid: 10045 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 4812 + - uid: 10046 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 4812 + - uid: 10047 + components: + - type: Transform + pos: -43.5,-8.5 + parent: 4812 + - uid: 10048 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 4812 + - uid: 10049 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 4812 + - uid: 10050 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 4812 + - uid: 10051 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 4812 + - uid: 10052 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 4812 + - uid: 10053 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 4812 + - uid: 10054 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 4812 + - uid: 10055 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 4812 + - uid: 10056 + components: + - type: Transform + pos: -44.5,-16.5 + parent: 4812 + - uid: 10057 + components: + - type: Transform + pos: -44.5,-17.5 + parent: 4812 + - uid: 10058 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 4812 + - uid: 10059 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 4812 + - uid: 10060 + components: + - type: Transform + pos: -45.5,-20.5 + parent: 4812 + - uid: 10061 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 4812 + - uid: 10062 + components: + - type: Transform + pos: -46.5,-20.5 + parent: 4812 + - uid: 10063 + components: + - type: Transform + pos: -47.5,-20.5 + parent: 4812 + - uid: 10064 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 4812 + - uid: 10065 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 4812 + - uid: 10066 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 4812 + - uid: 10067 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 4812 + - uid: 10068 + components: + - type: Transform + pos: -49.5,-12.5 + parent: 4812 + - uid: 10070 + components: + - type: Transform + pos: -51.5,-12.5 + parent: 4812 + - uid: 10071 + components: + - type: Transform + pos: -52.5,-12.5 + parent: 4812 + - uid: 10072 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 4812 + - uid: 10073 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 4812 + - uid: 10074 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 4812 + - uid: 10075 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 4812 + - uid: 10076 + components: + - type: Transform + pos: -53.5,-8.5 + parent: 4812 + - uid: 10077 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 4812 + - uid: 10078 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 4812 + - uid: 10079 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 4812 + - uid: 10080 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 4812 + - uid: 10081 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 4812 + - uid: 10082 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 4812 + - uid: 10083 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 4812 + - uid: 10084 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 4812 + - uid: 10085 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 4812 + - uid: 10086 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 4812 + - uid: 10087 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 4812 + - uid: 10088 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 4812 + - uid: 10089 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 4812 + - uid: 10090 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 4812 + - uid: 10091 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 4812 + - uid: 10092 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 4812 + - uid: 10093 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 4812 + - uid: 10094 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 4812 + - uid: 10095 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 4812 + - uid: 10096 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 4812 + - uid: 10097 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 4812 + - uid: 10098 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 4812 + - uid: 10099 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 4812 + - uid: 10100 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 4812 + - uid: 10101 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 4812 + - uid: 10102 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 4812 + - uid: 10103 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 4812 + - uid: 10104 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 4812 + - uid: 10105 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 4812 + - uid: 10106 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 4812 + - uid: 10107 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 4812 + - uid: 10108 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 4812 + - uid: 10109 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 4812 + - uid: 10110 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 4812 + - uid: 10111 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 4812 + - uid: 10112 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 4812 + - uid: 10113 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 4812 + - uid: 10114 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 4812 + - uid: 10115 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 4812 + - uid: 10116 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 4812 + - uid: 10117 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 4812 + - uid: 10118 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 4812 + - uid: 10119 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 4812 + - uid: 10120 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 4812 + - uid: 10121 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 4812 + - uid: 10122 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 4812 + - uid: 10123 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 4812 + - uid: 10124 + components: + - type: Transform + pos: -26.5,0.5 + parent: 4812 + - uid: 10125 + components: + - type: Transform + pos: -26.5,1.5 + parent: 4812 + - uid: 10126 + components: + - type: Transform + pos: -26.5,2.5 + parent: 4812 + - uid: 10127 + components: + - type: Transform + pos: -26.5,3.5 + parent: 4812 + - uid: 10128 + components: + - type: Transform + pos: -26.5,4.5 + parent: 4812 + - uid: 10129 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 4812 + - uid: 10130 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 4812 + - uid: 10131 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 4812 + - uid: 10132 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 4812 + - uid: 10133 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 4812 + - uid: 10134 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 4812 + - uid: 10135 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 4812 + - uid: 10136 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 4812 + - uid: 10137 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 4812 + - uid: 10138 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 4812 + - uid: 10139 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 4812 + - uid: 10140 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 4812 + - uid: 10141 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 4812 + - uid: 10142 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 4812 + - uid: 10143 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 4812 + - uid: 10144 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 4812 + - uid: 10145 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 4812 + - uid: 10146 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 4812 + - uid: 10147 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 4812 + - uid: 10148 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 4812 + - uid: 10149 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 4812 + - uid: 10150 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 4812 + - uid: 10151 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 4812 + - uid: 10152 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 4812 + - uid: 10190 + components: + - type: Transform + pos: -51.5,-21.5 + parent: 4812 + - uid: 10191 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 4812 + - uid: 10192 + components: + - type: Transform + pos: -52.5,-22.5 + parent: 4812 + - uid: 10193 + components: + - type: Transform + pos: -53.5,-22.5 + parent: 4812 + - uid: 10194 + components: + - type: Transform + pos: -54.5,-22.5 + parent: 4812 + - uid: 10195 + components: + - type: Transform + pos: -55.5,-22.5 + parent: 4812 + - uid: 10196 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 4812 + - uid: 10197 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 4812 + - uid: 10198 + components: + - type: Transform + pos: -51.5,-25.5 + parent: 4812 + - uid: 10199 + components: + - type: Transform + pos: -50.5,-22.5 + parent: 4812 + - uid: 10200 + components: + - type: Transform + pos: -49.5,-22.5 + parent: 4812 + - uid: 10201 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 4812 + - uid: 10202 + components: + - type: Transform + pos: -47.5,-22.5 + parent: 4812 + - uid: 10203 + components: + - type: Transform + pos: -46.5,-22.5 + parent: 4812 + - uid: 10204 + components: + - type: Transform + pos: -45.5,-22.5 + parent: 4812 + - uid: 10205 + components: + - type: Transform + pos: -34.5,-31.5 + parent: 4812 + - uid: 10206 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 4812 + - uid: 10207 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 4812 + - uid: 10208 + components: + - type: Transform + pos: -37.5,-31.5 + parent: 4812 + - uid: 10209 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 4812 + - uid: 10210 + components: + - type: Transform + pos: -39.5,-31.5 + parent: 4812 + - uid: 10211 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 4812 + - uid: 10212 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 4812 + - uid: 10213 + components: + - type: Transform + pos: -40.5,-29.5 + parent: 4812 + - uid: 10214 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 4812 + - uid: 10215 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 4812 + - uid: 10216 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 4812 + - uid: 10217 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 4812 + - uid: 10218 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 4812 + - uid: 10219 + components: + - type: Transform + pos: -40.5,-23.5 + parent: 4812 + - uid: 10220 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 4812 + - uid: 10221 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 4812 + - uid: 10222 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 4812 + - uid: 10223 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 4812 + - uid: 10508 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 4812 + - uid: 10509 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 4812 + - uid: 10510 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 4812 + - uid: 10511 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 4812 + - uid: 10512 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 4812 + - uid: 10513 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 4812 + - uid: 10514 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 4812 + - uid: 10515 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 4812 + - uid: 10516 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 4812 + - uid: 10517 + components: + - type: Transform + pos: -37.5,-25.5 + parent: 4812 + - uid: 10518 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 4812 + - uid: 10519 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 4812 + - uid: 10599 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 4812 + - uid: 10615 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 4812 + - uid: 10656 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 4812 + - uid: 10657 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 4812 + - uid: 10665 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 4812 + - uid: 10882 + components: + - type: Transform + pos: -38.5,7.5 + parent: 4812 + - uid: 10883 + components: + - type: Transform + pos: -37.5,7.5 + parent: 4812 + - uid: 10884 + components: + - type: Transform + pos: -36.5,7.5 + parent: 4812 + - uid: 10885 + components: + - type: Transform + pos: -35.5,7.5 + parent: 4812 + - uid: 10886 + components: + - type: Transform + pos: -34.5,7.5 + parent: 4812 + - uid: 10887 + components: + - type: Transform + pos: -33.5,7.5 + parent: 4812 + - uid: 10888 + components: + - type: Transform + pos: -32.5,7.5 + parent: 4812 + - uid: 10889 + components: + - type: Transform + pos: -31.5,7.5 + parent: 4812 + - uid: 10890 + components: + - type: Transform + pos: -30.5,7.5 + parent: 4812 + - uid: 10891 + components: + - type: Transform + pos: -26.5,5.5 + parent: 4812 + - uid: 10892 + components: + - type: Transform + pos: -26.5,6.5 + parent: 4812 + - uid: 10893 + components: + - type: Transform + pos: -26.5,7.5 + parent: 4812 + - uid: 10894 + components: + - type: Transform + pos: -26.5,8.5 + parent: 4812 + - uid: 10895 + components: + - type: Transform + pos: -25.5,8.5 + parent: 4812 + - uid: 10896 + components: + - type: Transform + pos: -22.5,9.5 + parent: 4812 + - uid: 10897 + components: + - type: Transform + pos: -22.5,8.5 + parent: 4812 + - uid: 11168 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 4812 + - uid: 11169 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 4812 + - uid: 11170 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 4812 + - uid: 11171 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 4812 + - uid: 11172 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 4812 + - uid: 11173 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 4812 + - uid: 11174 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 4812 + - uid: 11175 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 4812 + - uid: 11176 + components: + - type: Transform + pos: 9.5,-42.5 + parent: 4812 + - uid: 11177 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 4812 + - uid: 11178 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 4812 + - uid: 11179 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 4812 + - uid: 11180 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 4812 + - uid: 11181 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 4812 + - uid: 11182 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 4812 + - uid: 11183 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 4812 + - uid: 11184 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 4812 + - uid: 11185 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 4812 + - uid: 11186 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 4812 + - uid: 11187 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 4812 + - uid: 11188 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 4812 + - uid: 11189 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 4812 + - uid: 11190 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 4812 + - uid: 11191 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 4812 + - uid: 11192 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 4812 + - uid: 11193 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 4812 + - uid: 11194 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 4812 + - uid: 11195 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 4812 + - uid: 11196 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 4812 + - uid: 11197 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 4812 + - uid: 11198 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 4812 + - uid: 11199 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 4812 + - uid: 11200 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 4812 + - uid: 11201 + components: + - type: Transform + pos: 10.5,-33.5 + parent: 4812 + - uid: 11202 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 4812 + - uid: 11203 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 4812 + - uid: 11204 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 4812 + - uid: 11205 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 4812 + - uid: 11206 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 4812 + - uid: 11207 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 4812 + - uid: 11208 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 4812 + - uid: 11209 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 4812 + - uid: 11210 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 4812 + - uid: 11211 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 4812 + - uid: 11212 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 4812 + - uid: 11213 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 4812 + - uid: 11214 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 4812 + - uid: 11215 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 4812 + - uid: 11274 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 4812 + - uid: 11276 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 4812 + - uid: 11277 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 4812 + - uid: 11278 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 4812 + - uid: 11279 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 4812 + - uid: 11280 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 4812 + - uid: 11281 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 4812 + - uid: 11282 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 4812 + - uid: 11283 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 4812 + - uid: 11310 + components: + - type: Transform + pos: 33.5,-37.5 + parent: 4812 + - uid: 11311 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 4812 + - uid: 11312 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 4812 + - uid: 11313 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 4812 + - uid: 11314 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 4812 + - uid: 11315 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 4812 + - uid: 11316 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 4812 + - uid: 11317 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 4812 + - uid: 11318 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 4812 + - uid: 11319 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 4812 + - uid: 11320 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 4812 + - uid: 11321 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 4812 + - uid: 11322 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 4812 + - uid: 11323 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 4812 + - uid: 11324 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 4812 + - uid: 11325 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 4812 + - uid: 11441 + components: + - type: Transform + pos: 30.5,-37.5 + parent: 4812 + - uid: 11442 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 4812 + - uid: 11443 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 4812 + - uid: 11444 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 4812 + - uid: 11445 + components: + - type: Transform + pos: 33.5,-38.5 + parent: 4812 + - uid: 11446 + components: + - type: Transform + pos: 34.5,-38.5 + parent: 4812 + - uid: 11447 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 4812 + - uid: 11448 + components: + - type: Transform + pos: 34.5,-36.5 + parent: 4812 + - uid: 11449 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 4812 + - uid: 11450 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 4812 + - uid: 11451 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 4812 + - uid: 11452 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 4812 + - uid: 11453 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 4812 + - uid: 11454 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 4812 + - uid: 11455 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 4812 + - uid: 11456 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 4812 + - uid: 11457 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 4812 + - uid: 11458 + components: + - type: Transform + pos: 35.5,-34.5 + parent: 4812 + - uid: 11459 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 4812 + - uid: 11460 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 4812 + - uid: 11919 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 4812 + - uid: 12048 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 4812 + - uid: 12049 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 4812 + - uid: 12050 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 4812 + - uid: 12051 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 4812 +- proto: CableApcStack + entities: + - uid: 6196 + components: + - type: Transform + pos: 7.451914,-16.53358 + parent: 4812 + - uid: 6249 + components: + - type: Transform + pos: 13.4315815,-23.512243 + parent: 4812 + - uid: 8585 + components: + - type: Transform + pos: -16.671284,7.8180285 + parent: 4812 + - uid: 11952 + components: + - type: Transform + pos: -10.655096,15.8788185 + parent: 4812 + - uid: 11953 + components: + - type: Transform + pos: -10.655096,15.8788185 + parent: 4812 +- proto: CableHV + entities: + - uid: 902 + components: + - type: Transform + pos: 8.5,4.5 + parent: 4812 + - uid: 943 + components: + - type: Transform + pos: -14.5,7.5 + parent: 4812 + - uid: 944 + components: + - type: Transform + pos: -14.5,8.5 + parent: 4812 + - uid: 945 + components: + - type: Transform + pos: -14.5,9.5 + parent: 4812 + - uid: 946 + components: + - type: Transform + pos: -14.5,10.5 + parent: 4812 + - uid: 947 + components: + - type: Transform + pos: -14.5,11.5 + parent: 4812 + - uid: 948 + components: + - type: Transform + pos: -14.5,12.5 + parent: 4812 + - uid: 949 + components: + - type: Transform + pos: -14.5,13.5 + parent: 4812 + - uid: 950 + components: + - type: Transform + pos: -13.5,13.5 + parent: 4812 + - uid: 951 + components: + - type: Transform + pos: -12.5,13.5 + parent: 4812 + - uid: 952 + components: + - type: Transform + pos: -11.5,13.5 + parent: 4812 + - uid: 953 + components: + - type: Transform + pos: -10.5,13.5 + parent: 4812 + - uid: 954 + components: + - type: Transform + pos: -9.5,13.5 + parent: 4812 + - uid: 955 + components: + - type: Transform + pos: -8.5,13.5 + parent: 4812 + - uid: 956 + components: + - type: Transform + pos: -7.5,13.5 + parent: 4812 + - uid: 957 + components: + - type: Transform + pos: -6.5,13.5 + parent: 4812 + - uid: 958 + components: + - type: Transform + pos: -5.5,13.5 + parent: 4812 + - uid: 959 + components: + - type: Transform + pos: -4.5,13.5 + parent: 4812 + - uid: 960 + components: + - type: Transform + pos: -3.5,13.5 + parent: 4812 + - uid: 961 + components: + - type: Transform + pos: -2.5,13.5 + parent: 4812 + - uid: 962 + components: + - type: Transform + pos: -1.5,13.5 + parent: 4812 + - uid: 964 + components: + - type: Transform + pos: -0.5,14.5 + parent: 4812 + - uid: 965 + components: + - type: Transform + pos: 0.5,14.5 + parent: 4812 + - uid: 966 + components: + - type: Transform + pos: 1.5,14.5 + parent: 4812 + - uid: 967 + components: + - type: Transform + pos: 2.5,14.5 + parent: 4812 + - uid: 968 + components: + - type: Transform + pos: 2.5,13.5 + parent: 4812 + - uid: 969 + components: + - type: Transform + pos: 2.5,12.5 + parent: 4812 + - uid: 970 + components: + - type: Transform + pos: 2.5,11.5 + parent: 4812 + - uid: 1003 + components: + - type: Transform + pos: 7.5,4.5 + parent: 4812 + - uid: 1367 + components: + - type: Transform + pos: 6.5,4.5 + parent: 4812 + - uid: 1368 + components: + - type: Transform + pos: 5.5,4.5 + parent: 4812 + - uid: 2080 + components: + - type: Transform + pos: 6.5,31.5 + parent: 4812 + - uid: 2081 + components: + - type: Transform + pos: 6.5,32.5 + parent: 4812 + - uid: 2082 + components: + - type: Transform + pos: 5.5,32.5 + parent: 4812 + - uid: 2083 + components: + - type: Transform + pos: 4.5,32.5 + parent: 4812 + - uid: 2084 + components: + - type: Transform + pos: 3.5,32.5 + parent: 4812 + - uid: 2085 + components: + - type: Transform + pos: 3.5,31.5 + parent: 4812 + - uid: 2086 + components: + - type: Transform + pos: 3.5,30.5 + parent: 4812 + - uid: 2087 + components: + - type: Transform + pos: 3.5,29.5 + parent: 4812 + - uid: 2088 + components: + - type: Transform + pos: 3.5,28.5 + parent: 4812 + - uid: 2089 + components: + - type: Transform + pos: 3.5,27.5 + parent: 4812 + - uid: 2090 + components: + - type: Transform + pos: 3.5,26.5 + parent: 4812 + - uid: 2091 + components: + - type: Transform + pos: 3.5,25.5 + parent: 4812 + - uid: 2092 + components: + - type: Transform + pos: 3.5,24.5 + parent: 4812 + - uid: 2093 + components: + - type: Transform + pos: 3.5,23.5 + parent: 4812 + - uid: 2094 + components: + - type: Transform + pos: 3.5,22.5 + parent: 4812 + - uid: 2095 + components: + - type: Transform + pos: 3.5,21.5 + parent: 4812 + - uid: 2096 + components: + - type: Transform + pos: 3.5,20.5 + parent: 4812 + - uid: 2097 + components: + - type: Transform + pos: 3.5,19.5 + parent: 4812 + - uid: 2098 + components: + - type: Transform + pos: 2.5,19.5 + parent: 4812 + - uid: 2099 + components: + - type: Transform + pos: 1.5,19.5 + parent: 4812 + - uid: 2100 + components: + - type: Transform + pos: 0.5,19.5 + parent: 4812 + - uid: 2101 + components: + - type: Transform + pos: -0.5,19.5 + parent: 4812 + - uid: 2102 + components: + - type: Transform + pos: -1.5,19.5 + parent: 4812 + - uid: 2103 + components: + - type: Transform + pos: -1.5,18.5 + parent: 4812 + - uid: 2104 + components: + - type: Transform + pos: -1.5,17.5 + parent: 4812 + - uid: 2105 + components: + - type: Transform + pos: -1.5,16.5 + parent: 4812 + - uid: 2106 + components: + - type: Transform + pos: -1.5,15.5 + parent: 4812 + - uid: 2107 + components: + - type: Transform + pos: -1.5,14.5 + parent: 4812 + - uid: 2108 + components: + - type: Transform + pos: 3.5,33.5 + parent: 4812 + - uid: 2109 + components: + - type: Transform + pos: 3.5,34.5 + parent: 4812 + - uid: 2110 + components: + - type: Transform + pos: 3.5,35.5 + parent: 4812 + - uid: 2111 + components: + - type: Transform + pos: 4.5,35.5 + parent: 4812 + - uid: 2112 + components: + - type: Transform + pos: 4.5,34.5 + parent: 4812 + - uid: 2113 + components: + - type: Transform + pos: 2.5,34.5 + parent: 4812 + - uid: 2114 + components: + - type: Transform + pos: 1.5,34.5 + parent: 4812 + - uid: 2115 + components: + - type: Transform + pos: 1.5,35.5 + parent: 4812 + - uid: 2116 + components: + - type: Transform + pos: 1.5,36.5 + parent: 4812 + - uid: 2117 + components: + - type: Transform + pos: 0.5,36.5 + parent: 4812 + - uid: 2118 + components: + - type: Transform + pos: 0.5,35.5 + parent: 4812 + - uid: 2119 + components: + - type: Transform + pos: -0.5,35.5 + parent: 4812 + - uid: 2120 + components: + - type: Transform + pos: -1.5,35.5 + parent: 4812 + - uid: 2121 + components: + - type: Transform + pos: -2.5,35.5 + parent: 4812 + - uid: 2122 + components: + - type: Transform + pos: -3.5,35.5 + parent: 4812 + - uid: 2123 + components: + - type: Transform + pos: -4.5,35.5 + parent: 4812 + - uid: 2124 + components: + - type: Transform + pos: -5.5,35.5 + parent: 4812 + - uid: 2125 + components: + - type: Transform + pos: -3.5,36.5 + parent: 4812 + - uid: 2126 + components: + - type: Transform + pos: -2.5,36.5 + parent: 4812 + - uid: 2127 + components: + - type: Transform + pos: -1.5,36.5 + parent: 4812 + - uid: 2128 + components: + - type: Transform + pos: -5.5,36.5 + parent: 4812 + - uid: 2129 + components: + - type: Transform + pos: -6.5,36.5 + parent: 4812 + - uid: 2130 + components: + - type: Transform + pos: -6.5,35.5 + parent: 4812 + - uid: 2131 + components: + - type: Transform + pos: 6.5,33.5 + parent: 4812 + - uid: 2132 + components: + - type: Transform + pos: -6.5,34.5 + parent: 4812 + - uid: 2133 + components: + - type: Transform + pos: -7.5,34.5 + parent: 4812 + - uid: 2134 + components: + - type: Transform + pos: -8.5,34.5 + parent: 4812 + - uid: 2135 + components: + - type: Transform + pos: -9.5,34.5 + parent: 4812 + - uid: 2136 + components: + - type: Transform + pos: -9.5,35.5 + parent: 4812 + - uid: 2137 + components: + - type: Transform + pos: -8.5,35.5 + parent: 4812 + - uid: 2138 + components: + - type: Transform + pos: -8.5,33.5 + parent: 4812 + - uid: 2139 + components: + - type: Transform + pos: -8.5,32.5 + parent: 4812 + - uid: 2140 + components: + - type: Transform + pos: -9.5,32.5 + parent: 4812 + - uid: 2839 + components: + - type: Transform + pos: 13.5,32.5 + parent: 4812 + - uid: 3047 + components: + - type: Transform + pos: 12.5,32.5 + parent: 4812 + - uid: 3048 + components: + - type: Transform + pos: 12.5,31.5 + parent: 4812 + - uid: 3049 + components: + - type: Transform + pos: 12.5,30.5 + parent: 4812 + - uid: 3050 + components: + - type: Transform + pos: 12.5,29.5 + parent: 4812 + - uid: 3051 + components: + - type: Transform + pos: 12.5,28.5 + parent: 4812 + - uid: 3052 + components: + - type: Transform + pos: 12.5,27.5 + parent: 4812 + - uid: 3053 + components: + - type: Transform + pos: 12.5,26.5 + parent: 4812 + - uid: 3054 + components: + - type: Transform + pos: 12.5,25.5 + parent: 4812 + - uid: 3055 + components: + - type: Transform + pos: 12.5,24.5 + parent: 4812 + - uid: 3056 + components: + - type: Transform + pos: 12.5,23.5 + parent: 4812 + - uid: 3057 + components: + - type: Transform + pos: 12.5,22.5 + parent: 4812 + - uid: 3058 + components: + - type: Transform + pos: 12.5,21.5 + parent: 4812 + - uid: 3059 + components: + - type: Transform + pos: 12.5,20.5 + parent: 4812 + - uid: 3060 + components: + - type: Transform + pos: 12.5,19.5 + parent: 4812 + - uid: 3061 + components: + - type: Transform + pos: 4.5,19.5 + parent: 4812 + - uid: 3062 + components: + - type: Transform + pos: 5.5,19.5 + parent: 4812 + - uid: 3063 + components: + - type: Transform + pos: 6.5,19.5 + parent: 4812 + - uid: 3064 + components: + - type: Transform + pos: 7.5,19.5 + parent: 4812 + - uid: 3065 + components: + - type: Transform + pos: 8.5,19.5 + parent: 4812 + - uid: 3066 + components: + - type: Transform + pos: 9.5,19.5 + parent: 4812 + - uid: 3067 + components: + - type: Transform + pos: 10.5,19.5 + parent: 4812 + - uid: 3068 + components: + - type: Transform + pos: 11.5,19.5 + parent: 4812 + - uid: 3069 + components: + - type: Transform + pos: 3.5,11.5 + parent: 4812 + - uid: 3070 + components: + - type: Transform + pos: 4.5,11.5 + parent: 4812 + - uid: 3071 + components: + - type: Transform + pos: 5.5,11.5 + parent: 4812 + - uid: 3072 + components: + - type: Transform + pos: 6.5,11.5 + parent: 4812 + - uid: 3073 + components: + - type: Transform + pos: 7.5,11.5 + parent: 4812 + - uid: 3074 + components: + - type: Transform + pos: 8.5,11.5 + parent: 4812 + - uid: 3075 + components: + - type: Transform + pos: 9.5,11.5 + parent: 4812 + - uid: 3076 + components: + - type: Transform + pos: 9.5,10.5 + parent: 4812 + - uid: 3077 + components: + - type: Transform + pos: 9.5,9.5 + parent: 4812 + - uid: 3078 + components: + - type: Transform + pos: 9.5,8.5 + parent: 4812 + - uid: 3079 + components: + - type: Transform + pos: 9.5,7.5 + parent: 4812 + - uid: 3080 + components: + - type: Transform + pos: 9.5,6.5 + parent: 4812 + - uid: 3081 + components: + - type: Transform + pos: 9.5,5.5 + parent: 4812 + - uid: 3082 + components: + - type: Transform + pos: 9.5,4.5 + parent: 4812 + - uid: 3083 + components: + - type: Transform + pos: 9.5,3.5 + parent: 4812 + - uid: 3084 + components: + - type: Transform + pos: 10.5,3.5 + parent: 4812 + - uid: 3085 + components: + - type: Transform + pos: 11.5,3.5 + parent: 4812 + - uid: 3086 + components: + - type: Transform + pos: 11.5,4.5 + parent: 4812 + - uid: 3087 + components: + - type: Transform + pos: 11.5,5.5 + parent: 4812 + - uid: 3088 + components: + - type: Transform + pos: 11.5,6.5 + parent: 4812 + - uid: 3089 + components: + - type: Transform + pos: 11.5,7.5 + parent: 4812 + - uid: 3090 + components: + - type: Transform + pos: 11.5,8.5 + parent: 4812 + - uid: 3091 + components: + - type: Transform + pos: 11.5,9.5 + parent: 4812 + - uid: 3092 + components: + - type: Transform + pos: 11.5,10.5 + parent: 4812 + - uid: 3093 + components: + - type: Transform + pos: 11.5,11.5 + parent: 4812 + - uid: 3094 + components: + - type: Transform + pos: 11.5,12.5 + parent: 4812 + - uid: 3095 + components: + - type: Transform + pos: 11.5,13.5 + parent: 4812 + - uid: 3096 + components: + - type: Transform + pos: 11.5,14.5 + parent: 4812 + - uid: 3097 + components: + - type: Transform + pos: 11.5,15.5 + parent: 4812 + - uid: 3098 + components: + - type: Transform + pos: 11.5,16.5 + parent: 4812 + - uid: 3099 + components: + - type: Transform + pos: 11.5,17.5 + parent: 4812 + - uid: 3100 + components: + - type: Transform + pos: 11.5,18.5 + parent: 4812 + - uid: 3789 + components: + - type: Transform + pos: 14.5,46.5 + parent: 4812 + - uid: 3790 + components: + - type: Transform + pos: 14.5,45.5 + parent: 4812 + - uid: 3791 + components: + - type: Transform + pos: 14.5,44.5 + parent: 4812 + - uid: 3792 + components: + - type: Transform + pos: 14.5,47.5 + parent: 4812 + - uid: 3793 + components: + - type: Transform + pos: 13.5,47.5 + parent: 4812 + - uid: 3853 + components: + - type: Transform + pos: 13.5,45.5 + parent: 4812 + - uid: 3854 + components: + - type: Transform + pos: 12.5,45.5 + parent: 4812 + - uid: 3855 + components: + - type: Transform + pos: 11.5,45.5 + parent: 4812 + - uid: 3856 + components: + - type: Transform + pos: 10.5,45.5 + parent: 4812 + - uid: 3857 + components: + - type: Transform + pos: 10.5,46.5 + parent: 4812 + - uid: 3858 + components: + - type: Transform + pos: 10.5,47.5 + parent: 4812 + - uid: 3859 + components: + - type: Transform + pos: 10.5,48.5 + parent: 4812 + - uid: 3860 + components: + - type: Transform + pos: 10.5,49.5 + parent: 4812 + - uid: 3861 + components: + - type: Transform + pos: 10.5,50.5 + parent: 4812 + - uid: 3862 + components: + - type: Transform + pos: 11.5,50.5 + parent: 4812 + - uid: 3863 + components: + - type: Transform + pos: 12.5,50.5 + parent: 4812 + - uid: 3864 + components: + - type: Transform + pos: 12.5,51.5 + parent: 4812 + - uid: 3865 + components: + - type: Transform + pos: 12.5,52.5 + parent: 4812 + - uid: 3866 + components: + - type: Transform + pos: 12.5,53.5 + parent: 4812 + - uid: 3867 + components: + - type: Transform + pos: 12.5,54.5 + parent: 4812 + - uid: 3868 + components: + - type: Transform + pos: 12.5,55.5 + parent: 4812 + - uid: 3869 + components: + - type: Transform + pos: 9.5,50.5 + parent: 4812 + - uid: 3870 + components: + - type: Transform + pos: 8.5,50.5 + parent: 4812 + - uid: 3871 + components: + - type: Transform + pos: 8.5,51.5 + parent: 4812 + - uid: 3872 + components: + - type: Transform + pos: 8.5,52.5 + parent: 4812 + - uid: 3873 + components: + - type: Transform + pos: 8.5,53.5 + parent: 4812 + - uid: 3874 + components: + - type: Transform + pos: 8.5,54.5 + parent: 4812 + - uid: 3875 + components: + - type: Transform + pos: 8.5,55.5 + parent: 4812 + - uid: 3876 + components: + - type: Transform + pos: 9.5,55.5 + parent: 4812 + - uid: 3877 + components: + - type: Transform + pos: 11.5,55.5 + parent: 4812 + - uid: 3878 + components: + - type: Transform + pos: 10.5,55.5 + parent: 4812 + - uid: 3879 + components: + - type: Transform + pos: 10.5,56.5 + parent: 4812 + - uid: 4235 + components: + - type: Transform + pos: 12.5,3.5 + parent: 4812 + - uid: 4236 + components: + - type: Transform + pos: 13.5,3.5 + parent: 4812 + - uid: 4237 + components: + - type: Transform + pos: 14.5,3.5 + parent: 4812 + - uid: 4238 + components: + - type: Transform + pos: 15.5,3.5 + parent: 4812 + - uid: 4239 + components: + - type: Transform + pos: 15.5,4.5 + parent: 4812 + - uid: 4240 + components: + - type: Transform + pos: 17.5,4.5 + parent: 4812 + - uid: 4241 + components: + - type: Transform + pos: 16.5,4.5 + parent: 4812 + - uid: 4242 + components: + - type: Transform + pos: 18.5,4.5 + parent: 4812 + - uid: 4243 + components: + - type: Transform + pos: 18.5,3.5 + parent: 4812 + - uid: 4244 + components: + - type: Transform + pos: 18.5,2.5 + parent: 4812 + - uid: 4245 + components: + - type: Transform + pos: 17.5,2.5 + parent: 4812 + - uid: 5014 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 4812 + - uid: 5914 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 4812 + - uid: 5915 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 4812 + - uid: 5916 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 4812 + - uid: 5917 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 4812 + - uid: 5918 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 4812 + - uid: 5919 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 4812 + - uid: 5920 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 4812 + - uid: 5921 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 4812 + - uid: 5922 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 4812 + - uid: 5923 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 4812 + - uid: 5924 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 4812 + - uid: 5925 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 4812 + - uid: 5926 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 4812 + - uid: 5927 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 4812 + - uid: 5928 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 4812 + - uid: 5929 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 4812 + - uid: 5930 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 4812 + - uid: 5931 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 4812 + - uid: 5932 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 4812 + - uid: 5933 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 4812 + - uid: 5934 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 4812 + - uid: 5935 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 4812 + - uid: 5936 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 4812 + - uid: 5937 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 4812 + - uid: 5938 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 4812 + - uid: 5939 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 4812 + - uid: 5940 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 4812 + - uid: 5941 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 4812 + - uid: 5942 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 4812 + - uid: 5943 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 4812 + - uid: 5944 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 4812 + - uid: 5945 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 4812 + - uid: 5946 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 4812 + - uid: 5947 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 4812 + - uid: 5948 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 4812 + - uid: 5949 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 4812 + - uid: 5950 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 4812 + - uid: 5951 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 4812 + - uid: 5952 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 4812 + - uid: 5953 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 4812 + - uid: 5954 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 4812 + - uid: 5955 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 4812 + - uid: 5956 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 4812 + - uid: 5957 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 4812 + - uid: 5958 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 4812 + - uid: 5959 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 4812 + - uid: 5960 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 4812 + - uid: 5961 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 4812 + - uid: 5962 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 4812 + - uid: 5963 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 4812 + - uid: 5964 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 4812 + - uid: 5965 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 4812 + - uid: 5966 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 4812 + - uid: 5967 + components: + - type: Transform + pos: 9.5,0.5 + parent: 4812 + - uid: 5968 + components: + - type: Transform + pos: 9.5,1.5 + parent: 4812 + - uid: 5969 + components: + - type: Transform + pos: 9.5,2.5 + parent: 4812 + - uid: 6020 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 4812 + - uid: 6519 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 4812 + - uid: 6918 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 4812 + - uid: 6919 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 4812 + - uid: 6920 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 4812 + - uid: 6921 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 4812 + - uid: 6922 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 4812 + - uid: 6923 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 4812 + - uid: 6924 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 4812 + - uid: 6925 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 4812 + - uid: 6926 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 4812 + - uid: 6927 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 4812 + - uid: 6928 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 4812 + - uid: 6929 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 4812 + - uid: 6930 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 4812 + - uid: 6931 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 4812 + - uid: 6932 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 4812 + - uid: 6933 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 4812 + - uid: 6934 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 4812 + - uid: 6935 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 4812 + - uid: 6936 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 4812 + - uid: 6937 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 4812 + - uid: 6938 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 4812 + - uid: 6939 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 4812 + - uid: 6940 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 4812 + - uid: 6941 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 4812 + - uid: 6942 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 4812 + - uid: 6943 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 4812 + - uid: 6944 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 4812 + - uid: 6945 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 4812 + - uid: 6946 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 4812 + - uid: 6947 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 4812 + - uid: 6948 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 4812 + - uid: 6949 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 4812 + - uid: 6950 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 4812 + - uid: 6951 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 4812 + - uid: 6952 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 4812 + - uid: 6953 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 4812 + - uid: 6954 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 4812 + - uid: 6955 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 4812 + - uid: 6956 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 4812 + - uid: 6957 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 4812 + - uid: 6958 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 4812 + - uid: 6959 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 4812 + - uid: 6960 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 4812 + - uid: 6961 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 4812 + - uid: 6962 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 4812 + - uid: 6963 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 4812 + - uid: 6964 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 4812 + - uid: 6965 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 4812 + - uid: 6966 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 4812 + - uid: 6967 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 4812 + - uid: 6968 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 4812 + - uid: 6969 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 4812 + - uid: 6970 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 4812 + - uid: 6971 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 4812 + - uid: 6972 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 4812 + - uid: 6973 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 4812 + - uid: 6974 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 4812 + - uid: 6975 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 4812 + - uid: 6976 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 4812 + - uid: 6977 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 4812 + - uid: 6978 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 4812 + - uid: 6979 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 4812 + - uid: 6980 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 4812 + - uid: 6981 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 4812 + - uid: 7280 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 4812 + - uid: 7282 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 4812 + - uid: 7283 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 4812 + - uid: 7958 + components: + - type: Transform + pos: -37.5,8.5 + parent: 4812 + - uid: 7959 + components: + - type: Transform + pos: -37.5,7.5 + parent: 4812 + - uid: 7960 + components: + - type: Transform + pos: -36.5,7.5 + parent: 4812 + - uid: 7961 + components: + - type: Transform + pos: -35.5,7.5 + parent: 4812 + - uid: 7962 + components: + - type: Transform + pos: -34.5,7.5 + parent: 4812 + - uid: 7963 + components: + - type: Transform + pos: -33.5,7.5 + parent: 4812 + - uid: 7964 + components: + - type: Transform + pos: -32.5,7.5 + parent: 4812 + - uid: 7965 + components: + - type: Transform + pos: -31.5,7.5 + parent: 4812 + - uid: 7966 + components: + - type: Transform + pos: -30.5,7.5 + parent: 4812 + - uid: 7967 + components: + - type: Transform + pos: -29.5,7.5 + parent: 4812 + - uid: 7968 + components: + - type: Transform + pos: -29.5,8.5 + parent: 4812 + - uid: 7969 + components: + - type: Transform + pos: -28.5,8.5 + parent: 4812 + - uid: 7970 + components: + - type: Transform + pos: -27.5,8.5 + parent: 4812 + - uid: 7971 + components: + - type: Transform + pos: -26.5,8.5 + parent: 4812 + - uid: 7972 + components: + - type: Transform + pos: -25.5,8.5 + parent: 4812 + - uid: 7973 + components: + - type: Transform + pos: -24.5,8.5 + parent: 4812 + - uid: 7974 + components: + - type: Transform + pos: -23.5,8.5 + parent: 4812 + - uid: 7975 + components: + - type: Transform + pos: -22.5,8.5 + parent: 4812 + - uid: 7976 + components: + - type: Transform + pos: -22.5,9.5 + parent: 4812 + - uid: 7977 + components: + - type: Transform + pos: -22.5,10.5 + parent: 4812 + - uid: 7978 + components: + - type: Transform + pos: -21.5,10.5 + parent: 4812 + - uid: 7979 + components: + - type: Transform + pos: -20.5,10.5 + parent: 4812 + - uid: 7980 + components: + - type: Transform + pos: -19.5,10.5 + parent: 4812 + - uid: 7981 + components: + - type: Transform + pos: -18.5,10.5 + parent: 4812 + - uid: 7982 + components: + - type: Transform + pos: -17.5,10.5 + parent: 4812 + - uid: 7983 + components: + - type: Transform + pos: -16.5,10.5 + parent: 4812 + - uid: 7984 + components: + - type: Transform + pos: -15.5,10.5 + parent: 4812 + - uid: 8725 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 4812 + - uid: 8738 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 4812 + - uid: 8739 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 4812 + - uid: 8740 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 4812 + - uid: 8741 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 4812 + - uid: 8742 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 4812 + - uid: 8743 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 4812 + - uid: 8744 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 4812 + - uid: 8745 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 4812 + - uid: 8746 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 4812 + - uid: 8747 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 4812 + - uid: 8748 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 4812 + - uid: 8749 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 4812 + - uid: 8750 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 4812 + - uid: 8755 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 4812 + - uid: 9732 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 4812 + - uid: 9733 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 4812 + - uid: 9734 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 4812 + - uid: 9735 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 4812 + - uid: 9736 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 4812 + - uid: 9737 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 4812 + - uid: 9738 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 4812 + - uid: 9739 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 4812 + - uid: 9740 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 4812 + - uid: 9741 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 4812 + - uid: 9742 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 4812 + - uid: 9743 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 4812 + - uid: 9744 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 4812 + - uid: 9745 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 4812 + - uid: 9746 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 4812 + - uid: 9747 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 4812 + - uid: 9748 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 4812 + - uid: 9749 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 4812 + - uid: 9750 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 4812 + - uid: 9751 + components: + - type: Transform + pos: -38.5,7.5 + parent: 4812 + - uid: 9752 + components: + - type: Transform + pos: -39.5,7.5 + parent: 4812 + - uid: 9753 + components: + - type: Transform + pos: -39.5,5.5 + parent: 4812 + - uid: 9754 + components: + - type: Transform + pos: -38.5,5.5 + parent: 4812 + - uid: 9755 + components: + - type: Transform + pos: -39.5,6.5 + parent: 4812 + - uid: 9756 + components: + - type: Transform + pos: -37.5,5.5 + parent: 4812 + - uid: 9757 + components: + - type: Transform + pos: -36.5,5.5 + parent: 4812 + - uid: 9758 + components: + - type: Transform + pos: -36.5,4.5 + parent: 4812 + - uid: 9759 + components: + - type: Transform + pos: -36.5,3.5 + parent: 4812 + - uid: 9760 + components: + - type: Transform + pos: -36.5,2.5 + parent: 4812 + - uid: 9761 + components: + - type: Transform + pos: -36.5,1.5 + parent: 4812 + - uid: 9762 + components: + - type: Transform + pos: -36.5,0.5 + parent: 4812 + - uid: 9763 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 4812 + - uid: 9764 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 4812 + - uid: 9765 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 4812 + - uid: 9766 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 4812 + - uid: 9767 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 4812 + - uid: 9768 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 4812 + - uid: 9769 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 4812 + - uid: 9770 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 4812 + - uid: 9771 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 4812 + - uid: 9772 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 4812 + - uid: 9773 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 4812 + - uid: 9774 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 4812 + - uid: 9775 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 4812 + - uid: 9776 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 4812 + - uid: 9777 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 4812 + - uid: 9778 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 4812 + - uid: 9779 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 4812 + - uid: 9780 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 4812 + - uid: 9781 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 4812 + - uid: 9782 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 4812 + - uid: 9783 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 4812 + - uid: 9784 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 4812 + - uid: 9785 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 4812 + - uid: 9786 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 4812 + - uid: 9787 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 4812 + - uid: 9788 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 4812 + - uid: 9789 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 4812 + - uid: 9790 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 4812 + - uid: 9791 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 4812 + - uid: 9792 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 4812 + - uid: 9793 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 4812 + - uid: 9794 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 4812 + - uid: 9795 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 4812 + - uid: 9796 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 4812 + - uid: 9797 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 4812 + - uid: 9798 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 4812 + - uid: 9799 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 4812 + - uid: 9800 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 4812 + - uid: 9801 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 4812 + - uid: 9802 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 4812 + - uid: 9803 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 4812 + - uid: 9804 + components: + - type: Transform + pos: -12.5,0.5 + parent: 4812 + - uid: 9805 + components: + - type: Transform + pos: -12.5,1.5 + parent: 4812 + - uid: 9806 + components: + - type: Transform + pos: -12.5,2.5 + parent: 4812 + - uid: 9807 + components: + - type: Transform + pos: -12.5,3.5 + parent: 4812 + - uid: 9808 + components: + - type: Transform + pos: -12.5,4.5 + parent: 4812 + - uid: 9809 + components: + - type: Transform + pos: -12.5,5.5 + parent: 4812 + - uid: 9810 + components: + - type: Transform + pos: -12.5,6.5 + parent: 4812 + - uid: 9811 + components: + - type: Transform + pos: -12.5,7.5 + parent: 4812 + - uid: 9812 + components: + - type: Transform + pos: -12.5,8.5 + parent: 4812 + - uid: 9813 + components: + - type: Transform + pos: -12.5,9.5 + parent: 4812 + - uid: 9814 + components: + - type: Transform + pos: -12.5,10.5 + parent: 4812 + - uid: 9815 + components: + - type: Transform + pos: -12.5,11.5 + parent: 4812 + - uid: 9816 + components: + - type: Transform + pos: -12.5,12.5 + parent: 4812 + - uid: 9913 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 4812 + - uid: 9914 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 4812 + - uid: 9915 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 4812 + - uid: 9916 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 4812 + - uid: 9917 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 4812 + - uid: 9918 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 4812 + - uid: 9919 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 4812 + - uid: 9920 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 4812 + - uid: 9921 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 4812 + - uid: 9922 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 4812 + - uid: 9923 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 4812 + - uid: 9924 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 4812 + - uid: 9925 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 4812 + - uid: 9926 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 4812 + - uid: 9927 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 4812 + - uid: 9928 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 4812 + - uid: 9929 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 4812 + - uid: 9930 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 4812 + - uid: 9931 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 4812 + - uid: 9960 + components: + - type: Transform + pos: -48.5,-19.5 + parent: 4812 + - uid: 9961 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 4812 + - uid: 9962 + components: + - type: Transform + pos: -47.5,-20.5 + parent: 4812 + - uid: 9963 + components: + - type: Transform + pos: -46.5,-20.5 + parent: 4812 + - uid: 9964 + components: + - type: Transform + pos: -45.5,-20.5 + parent: 4812 + - uid: 9965 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 4812 + - uid: 9966 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 4812 + - uid: 9967 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 4812 + - uid: 9974 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 4812 + - uid: 9975 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 4812 + - uid: 9976 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 4812 + - uid: 9977 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 4812 + - uid: 9978 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 4812 + - uid: 9979 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 4812 + - uid: 9980 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 4812 + - uid: 9981 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 4812 + - uid: 9982 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 4812 + - uid: 9983 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 4812 + - uid: 9984 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 4812 + - uid: 9995 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 4812 + - uid: 9996 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 4812 + - uid: 9997 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 4812 + - uid: 9998 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 4812 + - uid: 9999 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 4812 + - uid: 10000 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 4812 + - uid: 10159 + components: + - type: Transform + pos: -56.5,-22.5 + parent: 4812 + - uid: 10160 + components: + - type: Transform + pos: -55.5,-22.5 + parent: 4812 + - uid: 10161 + components: + - type: Transform + pos: -54.5,-22.5 + parent: 4812 + - uid: 10162 + components: + - type: Transform + pos: -53.5,-22.5 + parent: 4812 + - uid: 10163 + components: + - type: Transform + pos: -53.5,-23.5 + parent: 4812 + - uid: 10164 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 4812 + - uid: 10168 + components: + - type: Transform + pos: -53.5,-25.5 + parent: 4812 + - uid: 10169 + components: + - type: Transform + pos: -52.5,-25.5 + parent: 4812 + - uid: 10170 + components: + - type: Transform + pos: -51.5,-25.5 + parent: 4812 + - uid: 10171 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 4812 + - uid: 10172 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 4812 + - uid: 10173 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 4812 + - uid: 10174 + components: + - type: Transform + pos: -50.5,-22.5 + parent: 4812 + - uid: 10175 + components: + - type: Transform + pos: -49.5,-22.5 + parent: 4812 + - uid: 10176 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 4812 + - uid: 10177 + components: + - type: Transform + pos: -47.5,-22.5 + parent: 4812 + - uid: 10178 + components: + - type: Transform + pos: -46.5,-22.5 + parent: 4812 + - uid: 10179 + components: + - type: Transform + pos: -45.5,-22.5 + parent: 4812 + - uid: 10180 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 4812 + - uid: 10181 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 4812 + - uid: 10225 + components: + - type: Transform + pos: -57.5,-22.5 + parent: 4812 + - uid: 10226 + components: + - type: Transform + pos: -59.5,-26.5 + parent: 4812 + - uid: 10227 + components: + - type: Transform + pos: -59.5,-25.5 + parent: 4812 + - uid: 10228 + components: + - type: Transform + pos: -59.5,-24.5 + parent: 4812 + - uid: 10229 + components: + - type: Transform + pos: -59.5,-23.5 + parent: 4812 + - uid: 10230 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 4812 + - uid: 10231 + components: + - type: Transform + pos: -59.5,-20.5 + parent: 4812 + - uid: 10232 + components: + - type: Transform + pos: -59.5,-19.5 + parent: 4812 + - uid: 10233 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 4812 + - uid: 10234 + components: + - type: Transform + pos: -61.5,-18.5 + parent: 4812 + - uid: 10235 + components: + - type: Transform + pos: -61.5,-19.5 + parent: 4812 + - uid: 10236 + components: + - type: Transform + pos: -61.5,-20.5 + parent: 4812 + - uid: 10237 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 4812 + - uid: 10238 + components: + - type: Transform + pos: -61.5,-23.5 + parent: 4812 + - uid: 10239 + components: + - type: Transform + pos: -61.5,-24.5 + parent: 4812 + - uid: 10240 + components: + - type: Transform + pos: -61.5,-25.5 + parent: 4812 + - uid: 10241 + components: + - type: Transform + pos: -61.5,-26.5 + parent: 4812 + - uid: 10242 + components: + - type: Transform + pos: -63.5,-26.5 + parent: 4812 + - uid: 10243 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 4812 + - uid: 10244 + components: + - type: Transform + pos: -63.5,-24.5 + parent: 4812 + - uid: 10245 + components: + - type: Transform + pos: -63.5,-23.5 + parent: 4812 + - uid: 10246 + components: + - type: Transform + pos: -65.5,-26.5 + parent: 4812 + - uid: 10247 + components: + - type: Transform + pos: -65.5,-25.5 + parent: 4812 + - uid: 10248 + components: + - type: Transform + pos: -65.5,-24.5 + parent: 4812 + - uid: 10249 + components: + - type: Transform + pos: -65.5,-23.5 + parent: 4812 + - uid: 10250 + components: + - type: Transform + pos: -69.5,-26.5 + parent: 4812 + - uid: 10251 + components: + - type: Transform + pos: -69.5,-25.5 + parent: 4812 + - uid: 10252 + components: + - type: Transform + pos: -69.5,-24.5 + parent: 4812 + - uid: 10253 + components: + - type: Transform + pos: -69.5,-23.5 + parent: 4812 + - uid: 10254 + components: + - type: Transform + pos: -67.5,-26.5 + parent: 4812 + - uid: 10255 + components: + - type: Transform + pos: -67.5,-25.5 + parent: 4812 + - uid: 10256 + components: + - type: Transform + pos: -67.5,-24.5 + parent: 4812 + - uid: 10257 + components: + - type: Transform + pos: -67.5,-23.5 + parent: 4812 + - uid: 10258 + components: + - type: Transform + pos: -69.5,-21.5 + parent: 4812 + - uid: 10259 + components: + - type: Transform + pos: -69.5,-20.5 + parent: 4812 + - uid: 10260 + components: + - type: Transform + pos: -69.5,-19.5 + parent: 4812 + - uid: 10261 + components: + - type: Transform + pos: -69.5,-18.5 + parent: 4812 + - uid: 10262 + components: + - type: Transform + pos: -67.5,-18.5 + parent: 4812 + - uid: 10263 + components: + - type: Transform + pos: -67.5,-19.5 + parent: 4812 + - uid: 10264 + components: + - type: Transform + pos: -67.5,-20.5 + parent: 4812 + - uid: 10265 + components: + - type: Transform + pos: -67.5,-21.5 + parent: 4812 + - uid: 10266 + components: + - type: Transform + pos: -65.5,-21.5 + parent: 4812 + - uid: 10267 + components: + - type: Transform + pos: -65.5,-20.5 + parent: 4812 + - uid: 10268 + components: + - type: Transform + pos: -65.5,-19.5 + parent: 4812 + - uid: 10269 + components: + - type: Transform + pos: -65.5,-18.5 + parent: 4812 + - uid: 10270 + components: + - type: Transform + pos: -63.5,-18.5 + parent: 4812 + - uid: 10271 + components: + - type: Transform + pos: -63.5,-19.5 + parent: 4812 + - uid: 10272 + components: + - type: Transform + pos: -63.5,-20.5 + parent: 4812 + - uid: 10273 + components: + - type: Transform + pos: -63.5,-21.5 + parent: 4812 + - uid: 10275 + components: + - type: Transform + pos: -71.5,-22.5 + parent: 4812 + - uid: 10276 + components: + - type: Transform + pos: -70.5,-22.5 + parent: 4812 + - uid: 10529 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 4812 + - uid: 10530 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 4812 + - uid: 10531 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 4812 + - uid: 10532 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 4812 + - uid: 10533 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 4812 + - uid: 10534 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 4812 + - uid: 10535 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 4812 + - uid: 10536 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 4812 + - uid: 10537 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 4812 + - uid: 10538 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 4812 + - uid: 10539 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 4812 + - uid: 10540 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 4812 + - uid: 10541 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 4812 + - uid: 10542 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 4812 + - uid: 10543 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 4812 + - uid: 10544 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 4812 + - uid: 10550 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 4812 + - uid: 10551 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 4812 + - uid: 10552 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 4812 + - uid: 10553 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 4812 + - uid: 10554 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 4812 + - uid: 10555 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 4812 + - uid: 10556 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 4812 + - uid: 10557 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 4812 + - uid: 10558 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 4812 + - uid: 10559 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 4812 + - uid: 10560 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 4812 + - uid: 10561 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 4812 + - uid: 10562 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 4812 + - uid: 10563 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 4812 + - uid: 10564 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 4812 + - uid: 10565 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 4812 + - uid: 10638 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 4812 + - uid: 10639 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 4812 + - uid: 10640 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 4812 + - uid: 10641 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 4812 + - uid: 10642 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 4812 + - uid: 10643 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 4812 + - uid: 10644 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 4812 + - uid: 10645 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 4812 + - uid: 10646 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 4812 + - uid: 10647 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 4812 + - uid: 10650 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 4812 + - uid: 10651 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 4812 + - uid: 10662 + components: + - type: Transform + pos: -51.5,-12.5 + parent: 4812 + - uid: 10663 + components: + - type: Transform + pos: -51.5,-13.5 + parent: 4812 + - uid: 10669 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 4812 + - uid: 10670 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 4812 + - uid: 10671 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 4812 + - uid: 10672 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 4812 + - uid: 11394 + components: + - type: Transform + pos: 33.5,-39.5 + parent: 4812 + - uid: 11395 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 4812 + - uid: 11396 + components: + - type: Transform + pos: 31.5,-39.5 + parent: 4812 + - uid: 11397 + components: + - type: Transform + pos: 33.5,-38.5 + parent: 4812 + - uid: 11398 + components: + - type: Transform + pos: 33.5,-37.5 + parent: 4812 + - uid: 11399 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 4812 + - uid: 11400 + components: + - type: Transform + pos: 34.5,-36.5 + parent: 4812 + - uid: 11401 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 4812 + - uid: 11402 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 4812 + - uid: 11403 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 4812 + - uid: 11404 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 4812 + - uid: 11405 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 4812 + - uid: 11406 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 4812 + - uid: 11407 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 4812 + - uid: 11408 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 4812 + - uid: 11409 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 4812 + - uid: 11410 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 4812 + - uid: 11411 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 4812 + - uid: 11412 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 4812 + - uid: 11413 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 4812 + - uid: 11414 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 4812 + - uid: 11415 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 4812 + - uid: 11416 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 4812 + - uid: 11417 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 4812 + - uid: 11418 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 4812 + - uid: 11419 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 4812 + - uid: 11420 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 4812 + - uid: 11421 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 4812 + - uid: 11422 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 4812 + - uid: 11437 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 4812 + - uid: 11477 + components: + - type: Transform + pos: 53.5,-36.5 + parent: 4812 + - uid: 11478 + components: + - type: Transform + pos: 52.5,-36.5 + parent: 4812 + - uid: 11479 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 4812 + - uid: 11480 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 4812 + - uid: 11481 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 4812 + - uid: 11482 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 4812 + - uid: 11483 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 4812 + - uid: 11484 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 4812 + - uid: 11485 + components: + - type: Transform + pos: 43.5,-35.5 + parent: 4812 + - uid: 11486 + components: + - type: Transform + pos: 43.5,-34.5 + parent: 4812 + - uid: 11487 + components: + - type: Transform + pos: 43.5,-33.5 + parent: 4812 + - uid: 11488 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 4812 + - uid: 11489 + components: + - type: Transform + pos: 45.5,-34.5 + parent: 4812 + - uid: 11490 + components: + - type: Transform + pos: 45.5,-33.5 + parent: 4812 + - uid: 11491 + components: + - type: Transform + pos: 45.5,-32.5 + parent: 4812 + - uid: 11492 + components: + - type: Transform + pos: 45.5,-35.5 + parent: 4812 + - uid: 11493 + components: + - type: Transform + pos: 47.5,-35.5 + parent: 4812 + - uid: 11494 + components: + - type: Transform + pos: 47.5,-34.5 + parent: 4812 + - uid: 11495 + components: + - type: Transform + pos: 47.5,-33.5 + parent: 4812 + - uid: 11496 + components: + - type: Transform + pos: 47.5,-32.5 + parent: 4812 + - uid: 11497 + components: + - type: Transform + pos: 49.5,-35.5 + parent: 4812 + - uid: 11498 + components: + - type: Transform + pos: 49.5,-34.5 + parent: 4812 + - uid: 11499 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 4812 + - uid: 11500 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 4812 + - uid: 11501 + components: + - type: Transform + pos: 51.5,-35.5 + parent: 4812 + - uid: 11502 + components: + - type: Transform + pos: 51.5,-34.5 + parent: 4812 + - uid: 11503 + components: + - type: Transform + pos: 51.5,-33.5 + parent: 4812 + - uid: 11504 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 4812 + - uid: 11505 + components: + - type: Transform + pos: 51.5,-40.5 + parent: 4812 + - uid: 11506 + components: + - type: Transform + pos: 51.5,-39.5 + parent: 4812 + - uid: 11507 + components: + - type: Transform + pos: 51.5,-38.5 + parent: 4812 + - uid: 11508 + components: + - type: Transform + pos: 51.5,-37.5 + parent: 4812 + - uid: 11509 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 4812 + - uid: 11510 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 4812 + - uid: 11511 + components: + - type: Transform + pos: 49.5,-38.5 + parent: 4812 + - uid: 11512 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 4812 + - uid: 11513 + components: + - type: Transform + pos: 47.5,-40.5 + parent: 4812 + - uid: 11514 + components: + - type: Transform + pos: 47.5,-39.5 + parent: 4812 + - uid: 11515 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 4812 + - uid: 11516 + components: + - type: Transform + pos: 47.5,-37.5 + parent: 4812 + - uid: 11517 + components: + - type: Transform + pos: 45.5,-40.5 + parent: 4812 + - uid: 11518 + components: + - type: Transform + pos: 45.5,-39.5 + parent: 4812 + - uid: 11519 + components: + - type: Transform + pos: 45.5,-38.5 + parent: 4812 + - uid: 11520 + components: + - type: Transform + pos: 45.5,-37.5 + parent: 4812 + - uid: 11521 + components: + - type: Transform + pos: 43.5,-40.5 + parent: 4812 + - uid: 11522 + components: + - type: Transform + pos: 43.5,-39.5 + parent: 4812 + - uid: 11523 + components: + - type: Transform + pos: 43.5,-38.5 + parent: 4812 + - uid: 11524 + components: + - type: Transform + pos: 43.5,-37.5 + parent: 4812 + - uid: 11525 + components: + - type: Transform + pos: 41.5,-40.5 + parent: 4812 + - uid: 11526 + components: + - type: Transform + pos: 41.5,-39.5 + parent: 4812 + - uid: 11527 + components: + - type: Transform + pos: 41.5,-38.5 + parent: 4812 + - uid: 11528 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 4812 +- proto: CableHVStack + entities: + - uid: 8587 + components: + - type: Transform + pos: -16.483784,7.5211535 + parent: 4812 + - uid: 11956 + components: + - type: Transform + pos: -10.405096,15.5663185 + parent: 4812 + - uid: 11957 + components: + - type: Transform + pos: -10.405096,15.5663185 + parent: 4812 +- proto: CableMV + entities: + - uid: 327 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 4812 + - uid: 971 + components: + - type: Transform + pos: -14.5,7.5 + parent: 4812 + - uid: 972 + components: + - type: Transform + pos: -14.5,8.5 + parent: 4812 + - uid: 973 + components: + - type: Transform + pos: -14.5,9.5 + parent: 4812 + - uid: 974 + components: + - type: Transform + pos: -14.5,10.5 + parent: 4812 + - uid: 975 + components: + - type: Transform + pos: -14.5,11.5 + parent: 4812 + - uid: 976 + components: + - type: Transform + pos: -14.5,12.5 + parent: 4812 + - uid: 977 + components: + - type: Transform + pos: -14.5,13.5 + parent: 4812 + - uid: 978 + components: + - type: Transform + pos: -13.5,13.5 + parent: 4812 + - uid: 979 + components: + - type: Transform + pos: -12.5,13.5 + parent: 4812 + - uid: 980 + components: + - type: Transform + pos: -12.5,14.5 + parent: 4812 + - uid: 981 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 4812 + - uid: 982 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 4812 + - uid: 983 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 4812 + - uid: 984 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 4812 + - uid: 985 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 4812 + - uid: 986 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 4812 + - uid: 987 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 4812 + - uid: 988 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 4812 + - uid: 989 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 4812 + - uid: 990 + components: + - type: Transform + pos: -12.5,0.5 + parent: 4812 + - uid: 991 + components: + - type: Transform + pos: -12.5,1.5 + parent: 4812 + - uid: 992 + components: + - type: Transform + pos: -12.5,2.5 + parent: 4812 + - uid: 993 + components: + - type: Transform + pos: -12.5,3.5 + parent: 4812 + - uid: 994 + components: + - type: Transform + pos: -12.5,4.5 + parent: 4812 + - uid: 995 + components: + - type: Transform + pos: -12.5,5.5 + parent: 4812 + - uid: 996 + components: + - type: Transform + pos: -12.5,6.5 + parent: 4812 + - uid: 997 + components: + - type: Transform + pos: -12.5,7.5 + parent: 4812 + - uid: 998 + components: + - type: Transform + pos: -12.5,8.5 + parent: 4812 + - uid: 999 + components: + - type: Transform + pos: -12.5,9.5 + parent: 4812 + - uid: 1000 + components: + - type: Transform + pos: -12.5,10.5 + parent: 4812 + - uid: 1001 + components: + - type: Transform + pos: -12.5,11.5 + parent: 4812 + - uid: 1002 + components: + - type: Transform + pos: -12.5,12.5 + parent: 4812 + - uid: 1004 + components: + - type: Transform + pos: 6.5,4.5 + parent: 4812 + - uid: 1005 + components: + - type: Transform + pos: 7.5,4.5 + parent: 4812 + - uid: 1006 + components: + - type: Transform + pos: 8.5,4.5 + parent: 4812 + - uid: 1007 + components: + - type: Transform + pos: 9.5,4.5 + parent: 4812 + - uid: 1008 + components: + - type: Transform + pos: 9.5,5.5 + parent: 4812 + - uid: 1009 + components: + - type: Transform + pos: 9.5,6.5 + parent: 4812 + - uid: 1010 + components: + - type: Transform + pos: 9.5,7.5 + parent: 4812 + - uid: 1011 + components: + - type: Transform + pos: 9.5,8.5 + parent: 4812 + - uid: 1012 + components: + - type: Transform + pos: 9.5,9.5 + parent: 4812 + - uid: 1013 + components: + - type: Transform + pos: 9.5,10.5 + parent: 4812 + - uid: 1014 + components: + - type: Transform + pos: 9.5,11.5 + parent: 4812 + - uid: 1015 + components: + - type: Transform + pos: 8.5,11.5 + parent: 4812 + - uid: 1016 + components: + - type: Transform + pos: 7.5,11.5 + parent: 4812 + - uid: 1017 + components: + - type: Transform + pos: 6.5,11.5 + parent: 4812 + - uid: 1018 + components: + - type: Transform + pos: 5.5,11.5 + parent: 4812 + - uid: 1019 + components: + - type: Transform + pos: 4.5,11.5 + parent: 4812 + - uid: 1020 + components: + - type: Transform + pos: 3.5,11.5 + parent: 4812 + - uid: 1021 + components: + - type: Transform + pos: 2.5,11.5 + parent: 4812 + - uid: 1023 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 4812 + - uid: 1024 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 4812 + - uid: 1025 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 4812 + - uid: 1026 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 4812 + - uid: 1027 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 4812 + - uid: 1028 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 4812 + - uid: 1029 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 4812 + - uid: 1030 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 4812 + - uid: 1031 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 4812 + - uid: 1032 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 4812 + - uid: 1033 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 4812 + - uid: 1034 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 4812 + - uid: 1035 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 4812 + - uid: 1036 + components: + - type: Transform + pos: 9.5,0.5 + parent: 4812 + - uid: 1037 + components: + - type: Transform + pos: 9.5,1.5 + parent: 4812 + - uid: 1038 + components: + - type: Transform + pos: 9.5,2.5 + parent: 4812 + - uid: 1039 + components: + - type: Transform + pos: 9.5,3.5 + parent: 4812 + - uid: 1419 + components: + - type: Transform + pos: 8.5,8.5 + parent: 4812 + - uid: 1543 + components: + - type: Transform + pos: 5.5,4.5 + parent: 4812 + - uid: 1858 + components: + - type: Transform + pos: 0.5,28.5 + parent: 4812 + - uid: 1860 + components: + - type: Transform + pos: -6.5,30.5 + parent: 4812 + - uid: 2141 + components: + - type: Transform + pos: 6.5,31.5 + parent: 4812 + - uid: 2142 + components: + - type: Transform + pos: 6.5,32.5 + parent: 4812 + - uid: 2143 + components: + - type: Transform + pos: 5.5,32.5 + parent: 4812 + - uid: 2144 + components: + - type: Transform + pos: 4.5,32.5 + parent: 4812 + - uid: 2145 + components: + - type: Transform + pos: 3.5,32.5 + parent: 4812 + - uid: 2146 + components: + - type: Transform + pos: 2.5,32.5 + parent: 4812 + - uid: 2147 + components: + - type: Transform + pos: 1.5,32.5 + parent: 4812 + - uid: 2148 + components: + - type: Transform + pos: 0.5,32.5 + parent: 4812 + - uid: 2149 + components: + - type: Transform + pos: -0.5,32.5 + parent: 4812 + - uid: 2150 + components: + - type: Transform + pos: -1.5,32.5 + parent: 4812 + - uid: 2151 + components: + - type: Transform + pos: -2.5,32.5 + parent: 4812 + - uid: 2152 + components: + - type: Transform + pos: -3.5,32.5 + parent: 4812 + - uid: 2153 + components: + - type: Transform + pos: -4.5,32.5 + parent: 4812 + - uid: 2154 + components: + - type: Transform + pos: -5.5,32.5 + parent: 4812 + - uid: 2155 + components: + - type: Transform + pos: -6.5,32.5 + parent: 4812 + - uid: 2156 + components: + - type: Transform + pos: -6.5,31.5 + parent: 4812 + - uid: 2157 + components: + - type: Transform + pos: 2.5,31.5 + parent: 4812 + - uid: 2158 + components: + - type: Transform + pos: 2.5,30.5 + parent: 4812 + - uid: 2159 + components: + - type: Transform + pos: 2.5,29.5 + parent: 4812 + - uid: 2160 + components: + - type: Transform + pos: 2.5,28.5 + parent: 4812 + - uid: 2161 + components: + - type: Transform + pos: 2.5,27.5 + parent: 4812 + - uid: 2162 + components: + - type: Transform + pos: 2.5,26.5 + parent: 4812 + - uid: 2163 + components: + - type: Transform + pos: 2.5,25.5 + parent: 4812 + - uid: 2164 + components: + - type: Transform + pos: 2.5,24.5 + parent: 4812 + - uid: 2165 + components: + - type: Transform + pos: 2.5,23.5 + parent: 4812 + - uid: 2166 + components: + - type: Transform + pos: 2.5,22.5 + parent: 4812 + - uid: 2167 + components: + - type: Transform + pos: 2.5,21.5 + parent: 4812 + - uid: 2168 + components: + - type: Transform + pos: 2.5,20.5 + parent: 4812 + - uid: 2169 + components: + - type: Transform + pos: 1.5,20.5 + parent: 4812 + - uid: 2170 + components: + - type: Transform + pos: 0.5,20.5 + parent: 4812 + - uid: 2171 + components: + - type: Transform + pos: 0.5,21.5 + parent: 4812 + - uid: 2172 + components: + - type: Transform + pos: 3.5,25.5 + parent: 4812 + - uid: 2173 + components: + - type: Transform + pos: 4.5,25.5 + parent: 4812 + - uid: 2174 + components: + - type: Transform + pos: 5.5,25.5 + parent: 4812 + - uid: 2175 + components: + - type: Transform + pos: 6.5,25.5 + parent: 4812 + - uid: 2176 + components: + - type: Transform + pos: 7.5,25.5 + parent: 4812 + - uid: 2177 + components: + - type: Transform + pos: 8.5,25.5 + parent: 4812 + - uid: 2178 + components: + - type: Transform + pos: 9.5,25.5 + parent: 4812 + - uid: 2179 + components: + - type: Transform + pos: 9.5,26.5 + parent: 4812 + - uid: 2180 + components: + - type: Transform + pos: 9.5,27.5 + parent: 4812 + - uid: 2181 + components: + - type: Transform + pos: 8.5,24.5 + parent: 4812 + - uid: 2182 + components: + - type: Transform + pos: 8.5,23.5 + parent: 4812 + - uid: 2183 + components: + - type: Transform + pos: 6.5,24.5 + parent: 4812 + - uid: 2184 + components: + - type: Transform + pos: 6.5,23.5 + parent: 4812 + - uid: 2185 + components: + - type: Transform + pos: -2.5,31.5 + parent: 4812 + - uid: 2186 + components: + - type: Transform + pos: 4.5,24.5 + parent: 4812 + - uid: 2187 + components: + - type: Transform + pos: 4.5,26.5 + parent: 4812 + - uid: 2188 + components: + - type: Transform + pos: -2.5,30.5 + parent: 4812 + - uid: 2189 + components: + - type: Transform + pos: -2.5,29.5 + parent: 4812 + - uid: 2190 + components: + - type: Transform + pos: -2.5,28.5 + parent: 4812 + - uid: 2191 + components: + - type: Transform + pos: -2.5,28.5 + parent: 4812 + - uid: 2192 + components: + - type: Transform + pos: -2.5,27.5 + parent: 4812 + - uid: 2193 + components: + - type: Transform + pos: -3.5,28.5 + parent: 4812 + - uid: 2194 + components: + - type: Transform + pos: -4.5,28.5 + parent: 4812 + - uid: 2195 + components: + - type: Transform + pos: -4.5,27.5 + parent: 4812 + - uid: 2196 + components: + - type: Transform + pos: -1.5,28.5 + parent: 4812 + - uid: 2197 + components: + - type: Transform + pos: -0.5,28.5 + parent: 4812 + - uid: 2198 + components: + - type: Transform + pos: -0.5,27.5 + parent: 4812 + - uid: 2200 + components: + - type: Transform + pos: 0.5,29.5 + parent: 4812 + - uid: 2203 + components: + - type: Transform + pos: -5.5,29.5 + parent: 4812 + - uid: 2208 + components: + - type: Transform + pos: -5.5,30.5 + parent: 4812 + - uid: 2385 + components: + - type: Transform + pos: -7.5,32.5 + parent: 4812 + - uid: 2386 + components: + - type: Transform + pos: -8.5,32.5 + parent: 4812 + - uid: 2387 + components: + - type: Transform + pos: -8.5,31.5 + parent: 4812 + - uid: 2388 + components: + - type: Transform + pos: -8.5,30.5 + parent: 4812 + - uid: 2389 + components: + - type: Transform + pos: -8.5,29.5 + parent: 4812 + - uid: 2390 + components: + - type: Transform + pos: -8.5,28.5 + parent: 4812 + - uid: 2391 + components: + - type: Transform + pos: -8.5,27.5 + parent: 4812 + - uid: 2392 + components: + - type: Transform + pos: -8.5,26.5 + parent: 4812 + - uid: 2393 + components: + - type: Transform + pos: -8.5,25.5 + parent: 4812 + - uid: 2394 + components: + - type: Transform + pos: -8.5,24.5 + parent: 4812 + - uid: 2396 + components: + - type: Transform + pos: -9.5,23.5 + parent: 4812 + - uid: 2397 + components: + - type: Transform + pos: -10.5,23.5 + parent: 4812 + - uid: 2398 + components: + - type: Transform + pos: -11.5,23.5 + parent: 4812 + - uid: 2399 + components: + - type: Transform + pos: -12.5,23.5 + parent: 4812 + - uid: 2400 + components: + - type: Transform + pos: -13.5,23.5 + parent: 4812 + - uid: 2401 + components: + - type: Transform + pos: -14.5,23.5 + parent: 4812 + - uid: 2402 + components: + - type: Transform + pos: -14.5,24.5 + parent: 4812 + - uid: 2403 + components: + - type: Transform + pos: -14.5,25.5 + parent: 4812 + - uid: 2404 + components: + - type: Transform + pos: -11.5,24.5 + parent: 4812 + - uid: 2405 + components: + - type: Transform + pos: -11.5,25.5 + parent: 4812 + - uid: 2406 + components: + - type: Transform + pos: -11.5,26.5 + parent: 4812 + - uid: 2407 + components: + - type: Transform + pos: -11.5,27.5 + parent: 4812 + - uid: 2408 + components: + - type: Transform + pos: -11.5,28.5 + parent: 4812 + - uid: 2409 + components: + - type: Transform + pos: -11.5,29.5 + parent: 4812 + - uid: 2410 + components: + - type: Transform + pos: -11.5,30.5 + parent: 4812 + - uid: 2411 + components: + - type: Transform + pos: -12.5,30.5 + parent: 4812 + - uid: 2412 + components: + - type: Transform + pos: -12.5,26.5 + parent: 4812 + - uid: 2413 + components: + - type: Transform + pos: -13.5,26.5 + parent: 4812 + - uid: 2414 + components: + - type: Transform + pos: -10.5,26.5 + parent: 4812 + - uid: 2415 + components: + - type: Transform + pos: -9.5,24.5 + parent: 4812 + - uid: 2416 + components: + - type: Transform + pos: -9.5,22.5 + parent: 4812 + - uid: 2453 + components: + - type: Transform + pos: -6.5,28.5 + parent: 4812 + - uid: 2457 + components: + - type: Transform + pos: -5.5,28.5 + parent: 4812 + - uid: 2632 + components: + - type: Transform + pos: 1.5,28.5 + parent: 4812 + - uid: 2633 + components: + - type: Transform + pos: 0.5,30.5 + parent: 4812 + - uid: 2644 + components: + - type: Transform + pos: 1.5,30.5 + parent: 4812 + - uid: 2834 + components: + - type: Transform + pos: 11.5,32.5 + parent: 4812 + - uid: 2838 + components: + - type: Transform + pos: 13.5,32.5 + parent: 4812 + - uid: 3120 + components: + - type: Transform + pos: 12.5,32.5 + parent: 4812 + - uid: 3121 + components: + - type: Transform + pos: 12.5,31.5 + parent: 4812 + - uid: 3122 + components: + - type: Transform + pos: 12.5,30.5 + parent: 4812 + - uid: 3123 + components: + - type: Transform + pos: 12.5,29.5 + parent: 4812 + - uid: 3124 + components: + - type: Transform + pos: 12.5,28.5 + parent: 4812 + - uid: 3125 + components: + - type: Transform + pos: 12.5,27.5 + parent: 4812 + - uid: 3126 + components: + - type: Transform + pos: 12.5,26.5 + parent: 4812 + - uid: 3127 + components: + - type: Transform + pos: 12.5,25.5 + parent: 4812 + - uid: 3128 + components: + - type: Transform + pos: 12.5,24.5 + parent: 4812 + - uid: 3129 + components: + - type: Transform + pos: 13.5,24.5 + parent: 4812 + - uid: 3130 + components: + - type: Transform + pos: 14.5,24.5 + parent: 4812 + - uid: 3131 + components: + - type: Transform + pos: 15.5,24.5 + parent: 4812 + - uid: 3132 + components: + - type: Transform + pos: 16.5,24.5 + parent: 4812 + - uid: 3133 + components: + - type: Transform + pos: 17.5,24.5 + parent: 4812 + - uid: 3134 + components: + - type: Transform + pos: 17.5,23.5 + parent: 4812 + - uid: 3135 + components: + - type: Transform + pos: 17.5,22.5 + parent: 4812 + - uid: 3265 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 4812 + - uid: 3734 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 4812 + - uid: 3735 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 4812 + - uid: 3884 + components: + - type: Transform + pos: 13.5,47.5 + parent: 4812 + - uid: 3885 + components: + - type: Transform + pos: 13.5,46.5 + parent: 4812 + - uid: 3886 + components: + - type: Transform + pos: 13.5,45.5 + parent: 4812 + - uid: 3887 + components: + - type: Transform + pos: 12.5,45.5 + parent: 4812 + - uid: 3888 + components: + - type: Transform + pos: 11.5,45.5 + parent: 4812 + - uid: 3889 + components: + - type: Transform + pos: 10.5,45.5 + parent: 4812 + - uid: 3890 + components: + - type: Transform + pos: 10.5,46.5 + parent: 4812 + - uid: 3891 + components: + - type: Transform + pos: 10.5,47.5 + parent: 4812 + - uid: 3892 + components: + - type: Transform + pos: 10.5,48.5 + parent: 4812 + - uid: 3893 + components: + - type: Transform + pos: 10.5,49.5 + parent: 4812 + - uid: 3894 + components: + - type: Transform + pos: 10.5,50.5 + parent: 4812 + - uid: 3895 + components: + - type: Transform + pos: 11.5,50.5 + parent: 4812 + - uid: 3896 + components: + - type: Transform + pos: 11.5,51.5 + parent: 4812 + - uid: 4012 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 4812 + - uid: 4247 + components: + - type: Transform + pos: 17.5,2.5 + parent: 4812 + - uid: 4248 + components: + - type: Transform + pos: 18.5,2.5 + parent: 4812 + - uid: 4249 + components: + - type: Transform + pos: 19.5,2.5 + parent: 4812 + - uid: 4250 + components: + - type: Transform + pos: 19.5,1.5 + parent: 4812 + - uid: 4251 + components: + - type: Transform + pos: 19.5,0.5 + parent: 4812 + - uid: 4252 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 4812 + - uid: 4253 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 4812 + - uid: 4254 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 4812 + - uid: 4255 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 4812 + - uid: 4256 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 4812 + - uid: 4806 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 4812 + - uid: 4813 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 4812 + - uid: 4870 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 4812 + - uid: 4914 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 4812 + - uid: 4915 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 4812 + - uid: 4945 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 4812 + - uid: 4956 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 4812 + - uid: 4957 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 4812 + - uid: 4959 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 4812 + - uid: 4960 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 4812 + - uid: 4965 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 4812 + - uid: 4967 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 4812 + - uid: 4974 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 4812 + - uid: 4975 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 4812 + - uid: 4995 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 4812 + - uid: 5972 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 4812 + - uid: 5973 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 4812 + - uid: 5974 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 4812 + - uid: 5975 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 4812 + - uid: 5976 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 4812 + - uid: 5977 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 4812 + - uid: 5978 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 4812 + - uid: 5979 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 4812 + - uid: 5980 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 4812 + - uid: 5981 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 4812 + - uid: 5982 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 4812 + - uid: 5983 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 4812 + - uid: 5984 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 4812 + - uid: 5985 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 4812 + - uid: 5986 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 4812 + - uid: 5987 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 4812 + - uid: 5988 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 4812 + - uid: 5989 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 4812 + - uid: 5990 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 4812 + - uid: 5991 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 4812 + - uid: 5992 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 4812 + - uid: 5993 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 4812 + - uid: 5994 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 4812 + - uid: 5995 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 4812 + - uid: 5996 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 4812 + - uid: 5997 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 4812 + - uid: 5998 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 4812 + - uid: 5999 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 4812 + - uid: 6000 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 4812 + - uid: 6001 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 4812 + - uid: 6002 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 4812 + - uid: 6003 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 4812 + - uid: 6004 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 4812 + - uid: 6005 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 4812 + - uid: 6006 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 4812 + - uid: 6007 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 4812 + - uid: 6008 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 4812 + - uid: 6009 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 4812 + - uid: 6010 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 4812 + - uid: 6011 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 4812 + - uid: 6012 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 4812 + - uid: 6013 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 4812 + - uid: 6014 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 4812 + - uid: 6015 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 4812 + - uid: 6016 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 4812 + - uid: 6017 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 4812 + - uid: 6018 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 4812 + - uid: 6051 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 4812 + - uid: 6065 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 4812 + - uid: 6635 + components: + - type: Transform + pos: -30.5,19.5 + parent: 4812 + - uid: 6636 + components: + - type: Transform + pos: -31.5,21.5 + parent: 4812 + - uid: 6639 + components: + - type: Transform + pos: -31.5,20.5 + parent: 4812 + - uid: 6640 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 4812 + - uid: 6641 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 4812 + - uid: 6660 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 4812 + - uid: 6661 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 4812 + - uid: 6664 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 4812 + - uid: 6666 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 4812 + - uid: 6668 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 4812 + - uid: 6780 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 4812 + - uid: 6782 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 4812 + - uid: 6787 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 4812 + - uid: 6902 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 4812 + - uid: 6903 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 4812 + - uid: 6904 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 4812 + - uid: 6905 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 4812 + - uid: 6906 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 4812 + - uid: 6907 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 4812 + - uid: 6908 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 4812 + - uid: 6909 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 4812 + - uid: 6910 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 4812 + - uid: 6911 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 4812 + - uid: 6912 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 4812 + - uid: 6913 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 4812 + - uid: 6914 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 4812 + - uid: 6915 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 4812 + - uid: 6916 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 4812 + - uid: 6917 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 4812 + - uid: 7029 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 4812 + - uid: 7062 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 4812 + - uid: 7065 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 4812 + - uid: 7183 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 4812 + - uid: 7237 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 4812 + - uid: 7238 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 4812 + - uid: 7239 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 4812 + - uid: 7257 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 4812 + - uid: 7261 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 4812 + - uid: 7263 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 4812 + - uid: 7264 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 4812 + - uid: 7265 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 4812 + - uid: 7266 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 4812 + - uid: 7270 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 4812 + - uid: 7271 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 4812 + - uid: 7274 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 4812 + - uid: 7275 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 4812 + - uid: 7277 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 4812 + - uid: 7286 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 4812 + - uid: 7338 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 4812 + - uid: 7339 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 4812 + - uid: 7341 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 4812 + - uid: 7342 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 4812 + - uid: 7345 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 4812 + - uid: 7348 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 4812 + - uid: 7384 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 4812 + - uid: 7387 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 4812 + - uid: 7467 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 4812 + - uid: 7468 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 4812 + - uid: 7469 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 4812 + - uid: 7470 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 4812 + - uid: 7471 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 4812 + - uid: 7472 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 4812 + - uid: 7473 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 4812 + - uid: 7474 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 4812 + - uid: 7475 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 4812 + - uid: 7476 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 4812 + - uid: 7477 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 4812 + - uid: 7478 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 4812 + - uid: 7479 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 4812 + - uid: 7480 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 4812 + - uid: 7481 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 4812 + - uid: 7482 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 4812 + - uid: 7483 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 4812 + - uid: 7484 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 4812 + - uid: 7485 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 4812 + - uid: 7486 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 4812 + - uid: 7487 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 4812 + - uid: 7488 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 4812 + - uid: 7986 + components: + - type: Transform + pos: -36.5,13.5 + parent: 4812 + - uid: 7987 + components: + - type: Transform + pos: -36.5,12.5 + parent: 4812 + - uid: 7988 + components: + - type: Transform + pos: -36.5,11.5 + parent: 4812 + - uid: 7989 + components: + - type: Transform + pos: -35.5,11.5 + parent: 4812 + - uid: 7990 + components: + - type: Transform + pos: -34.5,11.5 + parent: 4812 + - uid: 7991 + components: + - type: Transform + pos: -33.5,11.5 + parent: 4812 + - uid: 7992 + components: + - type: Transform + pos: -32.5,11.5 + parent: 4812 + - uid: 7993 + components: + - type: Transform + pos: -31.5,11.5 + parent: 4812 + - uid: 7994 + components: + - type: Transform + pos: -31.5,10.5 + parent: 4812 + - uid: 7995 + components: + - type: Transform + pos: -31.5,9.5 + parent: 4812 + - uid: 7996 + components: + - type: Transform + pos: -31.5,8.5 + parent: 4812 + - uid: 7997 + components: + - type: Transform + pos: -31.5,7.5 + parent: 4812 + - uid: 7998 + components: + - type: Transform + pos: -32.5,7.5 + parent: 4812 + - uid: 7999 + components: + - type: Transform + pos: -33.5,7.5 + parent: 4812 + - uid: 8000 + components: + - type: Transform + pos: -34.5,7.5 + parent: 4812 + - uid: 8001 + components: + - type: Transform + pos: -35.5,7.5 + parent: 4812 + - uid: 8002 + components: + - type: Transform + pos: -36.5,7.5 + parent: 4812 + - uid: 8003 + components: + - type: Transform + pos: -37.5,7.5 + parent: 4812 + - uid: 8004 + components: + - type: Transform + pos: -37.5,8.5 + parent: 4812 + - uid: 8005 + components: + - type: Transform + pos: -30.5,11.5 + parent: 4812 + - uid: 8006 + components: + - type: Transform + pos: -29.5,11.5 + parent: 4812 + - uid: 8007 + components: + - type: Transform + pos: -29.5,12.5 + parent: 4812 + - uid: 8008 + components: + - type: Transform + pos: -29.5,13.5 + parent: 4812 + - uid: 8009 + components: + - type: Transform + pos: -29.5,14.5 + parent: 4812 + - uid: 8010 + components: + - type: Transform + pos: -29.5,15.5 + parent: 4812 + - uid: 8011 + components: + - type: Transform + pos: -29.5,16.5 + parent: 4812 + - uid: 8012 + components: + - type: Transform + pos: -29.5,17.5 + parent: 4812 + - uid: 8013 + components: + - type: Transform + pos: -29.5,18.5 + parent: 4812 + - uid: 8014 + components: + - type: Transform + pos: -29.5,19.5 + parent: 4812 + - uid: 8015 + components: + - type: Transform + pos: -28.5,19.5 + parent: 4812 + - uid: 8016 + components: + - type: Transform + pos: -27.5,19.5 + parent: 4812 + - uid: 8017 + components: + - type: Transform + pos: -26.5,19.5 + parent: 4812 + - uid: 8018 + components: + - type: Transform + pos: -25.5,19.5 + parent: 4812 + - uid: 8019 + components: + - type: Transform + pos: -24.5,19.5 + parent: 4812 + - uid: 8020 + components: + - type: Transform + pos: -24.5,20.5 + parent: 4812 + - uid: 8021 + components: + - type: Transform + pos: -28.5,16.5 + parent: 4812 + - uid: 8022 + components: + - type: Transform + pos: -27.5,16.5 + parent: 4812 + - uid: 8023 + components: + - type: Transform + pos: -26.5,16.5 + parent: 4812 + - uid: 8024 + components: + - type: Transform + pos: -25.5,16.5 + parent: 4812 + - uid: 8025 + components: + - type: Transform + pos: -24.5,16.5 + parent: 4812 + - uid: 8026 + components: + - type: Transform + pos: -24.5,17.5 + parent: 4812 + - uid: 8027 + components: + - type: Transform + pos: -27.5,17.5 + parent: 4812 + - uid: 8028 + components: + - type: Transform + pos: -27.5,20.5 + parent: 4812 + - uid: 8029 + components: + - type: Transform + pos: -29.5,10.5 + parent: 4812 + - uid: 8030 + components: + - type: Transform + pos: -28.5,10.5 + parent: 4812 + - uid: 8031 + components: + - type: Transform + pos: -27.5,10.5 + parent: 4812 + - uid: 8032 + components: + - type: Transform + pos: -26.5,10.5 + parent: 4812 + - uid: 8033 + components: + - type: Transform + pos: -25.5,10.5 + parent: 4812 + - uid: 8034 + components: + - type: Transform + pos: -24.5,10.5 + parent: 4812 + - uid: 8035 + components: + - type: Transform + pos: -32.5,10.5 + parent: 4812 + - uid: 8036 + components: + - type: Transform + pos: -32.5,12.5 + parent: 4812 + - uid: 8037 + components: + - type: Transform + pos: -30.5,14.5 + parent: 4812 + - uid: 8038 + components: + - type: Transform + pos: -31.5,14.5 + parent: 4812 + - uid: 8039 + components: + - type: Transform + pos: -32.5,14.5 + parent: 4812 + - uid: 8040 + components: + - type: Transform + pos: -33.5,14.5 + parent: 4812 + - uid: 8041 + components: + - type: Transform + pos: -33.5,13.5 + parent: 4812 + - uid: 8042 + components: + - type: Transform + pos: -34.5,14.5 + parent: 4812 + - uid: 8043 + components: + - type: Transform + pos: -35.5,14.5 + parent: 4812 + - uid: 8044 + components: + - type: Transform + pos: -35.5,13.5 + parent: 4812 + - uid: 8045 + components: + - type: Transform + pos: -35.5,15.5 + parent: 4812 + - uid: 8046 + components: + - type: Transform + pos: -35.5,16.5 + parent: 4812 + - uid: 8047 + components: + - type: Transform + pos: -35.5,17.5 + parent: 4812 + - uid: 8048 + components: + - type: Transform + pos: -35.5,18.5 + parent: 4812 + - uid: 8049 + components: + - type: Transform + pos: -33.5,15.5 + parent: 4812 + - uid: 8050 + components: + - type: Transform + pos: -33.5,16.5 + parent: 4812 + - uid: 8051 + components: + - type: Transform + pos: -33.5,17.5 + parent: 4812 + - uid: 8052 + components: + - type: Transform + pos: -33.5,18.5 + parent: 4812 + - uid: 8053 + components: + - type: Transform + pos: -33.5,19.5 + parent: 4812 + - uid: 8054 + components: + - type: Transform + pos: -33.5,20.5 + parent: 4812 + - uid: 8055 + components: + - type: Transform + pos: -32.5,19.5 + parent: 4812 + - uid: 8056 + components: + - type: Transform + pos: -32.5,20.5 + parent: 4812 + - uid: 8069 + components: + - type: Transform + pos: -31.5,19.5 + parent: 4812 + - uid: 8177 + components: + - type: Transform + pos: -23.5,20.5 + parent: 4812 + - uid: 8178 + components: + - type: Transform + pos: -23.5,21.5 + parent: 4812 + - uid: 8179 + components: + - type: Transform + pos: -22.5,20.5 + parent: 4812 + - uid: 8180 + components: + - type: Transform + pos: -21.5,20.5 + parent: 4812 + - uid: 8181 + components: + - type: Transform + pos: -20.5,20.5 + parent: 4812 + - uid: 8182 + components: + - type: Transform + pos: -19.5,20.5 + parent: 4812 + - uid: 8183 + components: + - type: Transform + pos: -19.5,21.5 + parent: 4812 + - uid: 8184 + components: + - type: Transform + pos: -20.5,21.5 + parent: 4812 + - uid: 8185 + components: + - type: Transform + pos: -21.5,21.5 + parent: 4812 + - uid: 8186 + components: + - type: Transform + pos: -21.5,22.5 + parent: 4812 + - uid: 8187 + components: + - type: Transform + pos: -21.5,23.5 + parent: 4812 + - uid: 8188 + components: + - type: Transform + pos: -21.5,24.5 + parent: 4812 + - uid: 8189 + components: + - type: Transform + pos: -21.5,25.5 + parent: 4812 + - uid: 8190 + components: + - type: Transform + pos: -21.5,26.5 + parent: 4812 + - uid: 8191 + components: + - type: Transform + pos: -21.5,27.5 + parent: 4812 + - uid: 8192 + components: + - type: Transform + pos: -21.5,28.5 + parent: 4812 + - uid: 8193 + components: + - type: Transform + pos: -22.5,28.5 + parent: 4812 + - uid: 8194 + components: + - type: Transform + pos: -22.5,29.5 + parent: 4812 + - uid: 8195 + components: + - type: Transform + pos: -22.5,26.5 + parent: 4812 + - uid: 8196 + components: + - type: Transform + pos: -23.5,26.5 + parent: 4812 + - uid: 8853 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 4812 + - uid: 8858 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 4812 + - uid: 8878 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 4812 + - uid: 8879 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 4812 + - uid: 8880 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 4812 + - uid: 8881 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 4812 + - uid: 8882 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 4812 + - uid: 8883 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 4812 + - uid: 8884 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 4812 + - uid: 8885 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 4812 + - uid: 8886 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 4812 + - uid: 8887 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 4812 + - uid: 8888 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 4812 + - uid: 8889 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 4812 + - uid: 8890 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 4812 + - uid: 8891 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 4812 + - uid: 8892 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 4812 + - uid: 8893 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 4812 + - uid: 8894 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 4812 + - uid: 8895 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 4812 + - uid: 8897 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 4812 + - uid: 8898 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 4812 + - uid: 8899 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 4812 + - uid: 8900 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 4812 + - uid: 8901 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 4812 + - uid: 8902 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 4812 + - uid: 8906 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 4812 + - uid: 8967 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 4812 + - uid: 8969 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 4812 + - uid: 8971 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 4812 + - uid: 8972 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 4812 + - uid: 8973 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 4812 + - uid: 8974 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 4812 + - uid: 8975 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 4812 + - uid: 8976 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 4812 + - uid: 9014 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 4812 + - uid: 9074 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 4812 + - uid: 9089 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 4812 + - uid: 9287 + components: + - type: Transform + pos: -38.5,7.5 + parent: 4812 + - uid: 9289 + components: + - type: Transform + pos: -38.5,6.5 + parent: 4812 + - uid: 9524 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 4812 + - uid: 9580 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 4812 + - uid: 9581 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 4812 + - uid: 9582 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 4812 + - uid: 9583 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 4812 + - uid: 10001 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 4812 + - uid: 10002 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 4812 + - uid: 10003 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 4812 + - uid: 10004 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 4812 + - uid: 10005 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 4812 + - uid: 10006 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 4812 + - uid: 10007 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 4812 + - uid: 10008 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 4812 + - uid: 10009 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 4812 + - uid: 10010 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 4812 + - uid: 10011 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 4812 + - uid: 10012 + components: + - type: Transform + pos: -45.5,-20.5 + parent: 4812 + - uid: 10013 + components: + - type: Transform + pos: -46.5,-20.5 + parent: 4812 + - uid: 10014 + components: + - type: Transform + pos: -47.5,-20.5 + parent: 4812 + - uid: 10015 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 4812 + - uid: 10016 + components: + - type: Transform + pos: -48.5,-19.5 + parent: 4812 + - uid: 10017 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 4812 + - uid: 10018 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 4812 + - uid: 10019 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 4812 + - uid: 10020 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 4812 + - uid: 10022 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 4812 + - uid: 10023 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 4812 + - uid: 10024 + components: + - type: Transform + pos: -44.5,-17.5 + parent: 4812 + - uid: 10025 + components: + - type: Transform + pos: -44.5,-16.5 + parent: 4812 + - uid: 10026 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 4812 + - uid: 10027 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 4812 + - uid: 10028 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 4812 + - uid: 10029 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 4812 + - uid: 10030 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 4812 + - uid: 10031 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 4812 + - uid: 10032 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 4812 + - uid: 10033 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 4812 + - uid: 10034 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 4812 + - uid: 10035 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 4812 + - uid: 10036 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 4812 + - uid: 10037 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 4812 + - uid: 10038 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 4812 + - uid: 10039 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 4812 + - uid: 10040 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 4812 + - uid: 10184 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 4812 + - uid: 10185 + components: + - type: Transform + pos: -50.5,-24.5 + parent: 4812 + - uid: 10186 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 4812 + - uid: 10187 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 4812 + - uid: 10188 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 4812 + - uid: 10189 + components: + - type: Transform + pos: -51.5,-21.5 + parent: 4812 + - uid: 10652 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 4812 + - uid: 10653 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 4812 + - uid: 10654 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 4812 + - uid: 10655 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 4812 + - uid: 11151 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 4812 + - uid: 11152 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 4812 + - uid: 11153 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 4812 + - uid: 11154 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 4812 + - uid: 11155 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 4812 + - uid: 11156 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 4812 + - uid: 11157 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 4812 + - uid: 11158 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 4812 + - uid: 11159 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 4812 + - uid: 11160 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 4812 + - uid: 11161 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 4812 + - uid: 11162 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 4812 + - uid: 11163 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 4812 + - uid: 11164 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 4812 + - uid: 11165 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 4812 + - uid: 11166 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 4812 + - uid: 11167 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 4812 + - uid: 11438 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 4812 + - uid: 11439 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 4812 + - uid: 11440 + components: + - type: Transform + pos: 30.5,-37.5 + parent: 4812 +- proto: CableMVStack + entities: + - uid: 8586 + components: + - type: Transform + pos: -16.577534,7.6930285 + parent: 4812 + - uid: 11954 + components: + - type: Transform + pos: -10.530096,15.7538185 + parent: 4812 + - uid: 11955 + components: + - type: Transform + pos: -10.530096,15.7538185 + parent: 4812 +- proto: CableTerminal + entities: + - uid: 3794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,46.5 + parent: 4812 + - uid: 8736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-3.5 + parent: 4812 + - uid: 8737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-3.5 + parent: 4812 + - uid: 10167 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 4812 + - uid: 10648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-12.5 + parent: 4812 + - uid: 11393 + components: + - type: Transform + pos: 33.5,-38.5 + parent: 4812 +- proto: CandyBowl + entities: + - uid: 10667 + components: + - type: Transform + pos: -9.517075,-13.504629 + parent: 4812 +- proto: CapacitorStockPart + entities: + - uid: 6210 + components: + - type: Transform + pos: 7.701914,-18.299206 + parent: 4812 + - uid: 6211 + components: + - type: Transform + pos: 7.451914,-18.299206 + parent: 4812 + - uid: 6212 + components: + - type: Transform + pos: 7.5679626,-16.149172 + parent: 4812 +- proto: CaptainIDCard + entities: + - uid: 2588 + components: + - type: Transform + pos: -12.545029,27.590694 + parent: 4812 +- proto: CarbonDioxideCanister + entities: + - uid: 9453 + components: + - type: Transform + pos: -53.5,5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: Carpet + entities: + - uid: 1739 + components: + - type: Transform + pos: -9.5,8.5 + parent: 4812 + - uid: 1740 + components: + - type: Transform + pos: -9.5,7.5 + parent: 4812 + - uid: 1741 + components: + - type: Transform + pos: -9.5,6.5 + parent: 4812 + - uid: 1742 + components: + - type: Transform + pos: -9.5,5.5 + parent: 4812 + - uid: 1743 + components: + - type: Transform + pos: -9.5,4.5 + parent: 4812 + - uid: 1744 + components: + - type: Transform + pos: -8.5,8.5 + parent: 4812 + - uid: 1745 + components: + - type: Transform + pos: -8.5,7.5 + parent: 4812 + - uid: 1746 + components: + - type: Transform + pos: -8.5,6.5 + parent: 4812 + - uid: 1747 + components: + - type: Transform + pos: -8.5,5.5 + parent: 4812 + - uid: 1748 + components: + - type: Transform + pos: -8.5,4.5 + parent: 4812 + - uid: 5377 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 4812 + - uid: 5378 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 4812 + - uid: 5379 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 4812 + - uid: 5380 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 4812 + - uid: 5381 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 4812 + - uid: 5382 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 4812 + - uid: 6400 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 4812 + - uid: 6401 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 4812 + - uid: 6402 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 4812 + - uid: 6403 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 4812 + - uid: 6404 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 4812 + - uid: 6405 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 4812 + - uid: 6406 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 4812 + - uid: 6407 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 4812 + - uid: 6408 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 4812 + - uid: 7162 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 4812 + - uid: 7163 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 4812 + - uid: 7164 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 4812 + - uid: 7165 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 4812 + - uid: 7166 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 4812 + - uid: 7167 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 4812 + - uid: 9062 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 4812 + - uid: 9063 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 4812 +- proto: CarpetBlack + entities: + - uid: 11360 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 4812 + - uid: 11361 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 4812 + - uid: 11362 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 4812 + - uid: 11363 + components: + - type: Transform + pos: 37.5,-34.5 + parent: 4812 +- proto: CarpetBlue + entities: + - uid: 2591 + components: + - type: Transform + pos: -12.5,28.5 + parent: 4812 + - uid: 2592 + components: + - type: Transform + pos: -12.5,29.5 + parent: 4812 + - uid: 2593 + components: + - type: Transform + pos: -11.5,29.5 + parent: 4812 + - uid: 2594 + components: + - type: Transform + pos: -11.5,28.5 + parent: 4812 + - uid: 2611 + components: + - type: Transform + pos: -13.5,22.5 + parent: 4812 + - uid: 2613 + components: + - type: Transform + pos: -13.5,23.5 + parent: 4812 + - uid: 2614 + components: + - type: Transform + pos: -13.5,24.5 + parent: 4812 + - uid: 2615 + components: + - type: Transform + pos: -12.5,22.5 + parent: 4812 + - uid: 2616 + components: + - type: Transform + pos: -12.5,23.5 + parent: 4812 + - uid: 2617 + components: + - type: Transform + pos: -12.5,24.5 + parent: 4812 + - uid: 2618 + components: + - type: Transform + pos: -11.5,22.5 + parent: 4812 + - uid: 2619 + components: + - type: Transform + pos: -11.5,23.5 + parent: 4812 + - uid: 2620 + components: + - type: Transform + pos: -11.5,24.5 + parent: 4812 +- proto: CarpetChapel + entities: + - uid: 6984 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 4812 + - uid: 6985 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 4812 + - uid: 6986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 4812 + - uid: 6987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 4812 + - uid: 6988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 4812 + - uid: 6989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 4812 + - uid: 6990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-35.5 + parent: 4812 + - uid: 6991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-35.5 + parent: 4812 + - uid: 6992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-32.5 + parent: 4812 + - uid: 6993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-32.5 + parent: 4812 + - uid: 6994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-33.5 + parent: 4812 + - uid: 6995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 4812 + - uid: 6996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 4812 + - uid: 6997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 4812 + - uid: 6998 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 4812 + - uid: 6999 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 4812 +- proto: CarpetGreen + entities: + - uid: 7156 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 4812 + - uid: 7157 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 4812 + - uid: 7158 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 4812 + - uid: 7159 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 4812 + - uid: 8279 + components: + - type: Transform + pos: -18.5,14.5 + parent: 4812 + - uid: 8280 + components: + - type: Transform + pos: -18.5,15.5 + parent: 4812 + - uid: 8281 + components: + - type: Transform + pos: -17.5,15.5 + parent: 4812 + - uid: 8282 + components: + - type: Transform + pos: -17.5,14.5 + parent: 4812 + - uid: 9082 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 4812 + - uid: 9083 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 4812 + - uid: 9084 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 4812 + - uid: 9085 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 4812 +- proto: CarpetOrange + entities: + - uid: 1657 + components: + - type: Transform + pos: 6.5,8.5 + parent: 4812 + - uid: 1661 + components: + - type: Transform + pos: 6.5,9.5 + parent: 4812 + - uid: 1662 + components: + - type: Transform + pos: 7.5,9.5 + parent: 4812 + - uid: 1663 + components: + - type: Transform + pos: 7.5,8.5 + parent: 4812 +- proto: CarpetPurple + entities: + - uid: 277 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 4812 + - uid: 2635 + components: + - type: Transform + pos: -3.5,28.5 + parent: 4812 + - uid: 2636 + components: + - type: Transform + pos: -3.5,29.5 + parent: 4812 + - uid: 2637 + components: + - type: Transform + pos: -2.5,29.5 + parent: 4812 + - uid: 2638 + components: + - type: Transform + pos: -2.5,28.5 + parent: 4812 + - uid: 2639 + components: + - type: Transform + pos: -1.5,28.5 + parent: 4812 + - uid: 2640 + components: + - type: Transform + pos: -1.5,29.5 + parent: 4812 + - uid: 6294 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 4812 + - uid: 6295 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 4812 + - uid: 6296 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 4812 + - uid: 6297 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 4812 + - uid: 6298 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 4812 + - uid: 6299 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 4812 + - uid: 6300 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 4812 + - uid: 6301 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 4812 + - uid: 6302 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 4812 +- proto: CarpetSBlue + entities: + - uid: 2546 + components: + - type: Transform + pos: 6.5,28.5 + parent: 4812 + - uid: 2547 + components: + - type: Transform + pos: 6.5,29.5 + parent: 4812 + - uid: 2548 + components: + - type: Transform + pos: 7.5,29.5 + parent: 4812 + - uid: 2549 + components: + - type: Transform + pos: 7.5,28.5 + parent: 4812 + - uid: 2550 + components: + - type: Transform + pos: 9.5,24.5 + parent: 4812 + - uid: 2551 + components: + - type: Transform + pos: 8.5,24.5 + parent: 4812 + - uid: 2552 + components: + - type: Transform + pos: 7.5,24.5 + parent: 4812 + - uid: 2553 + components: + - type: Transform + pos: 7.5,25.5 + parent: 4812 + - uid: 2554 + components: + - type: Transform + pos: 8.5,25.5 + parent: 4812 + - uid: 2555 + components: + - type: Transform + pos: 9.5,25.5 + parent: 4812 +- proto: Catwalk + entities: + - uid: 1542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 4812 + - uid: 1545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 4812 + - uid: 1548 + components: + - type: Transform + pos: 2.5,11.5 + parent: 4812 + - uid: 1550 + components: + - type: Transform + pos: 2.5,12.5 + parent: 4812 + - uid: 1551 + components: + - type: Transform + pos: 2.5,13.5 + parent: 4812 + - uid: 1553 + components: + - type: Transform + pos: 1.5,14.5 + parent: 4812 + - uid: 3101 + components: + - type: Transform + pos: 3.5,11.5 + parent: 4812 + - uid: 3102 + components: + - type: Transform + pos: 4.5,11.5 + parent: 4812 + - uid: 3103 + components: + - type: Transform + pos: 5.5,11.5 + parent: 4812 + - uid: 3104 + components: + - type: Transform + pos: 6.5,11.5 + parent: 4812 + - uid: 3105 + components: + - type: Transform + pos: 7.5,11.5 + parent: 4812 + - uid: 3106 + components: + - type: Transform + pos: 8.5,11.5 + parent: 4812 + - uid: 3107 + components: + - type: Transform + pos: 9.5,10.5 + parent: 4812 + - uid: 3108 + components: + - type: Transform + pos: 9.5,9.5 + parent: 4812 + - uid: 3109 + components: + - type: Transform + pos: 9.5,8.5 + parent: 4812 + - uid: 3110 + components: + - type: Transform + pos: 9.5,7.5 + parent: 4812 + - uid: 3111 + components: + - type: Transform + pos: 9.5,6.5 + parent: 4812 + - uid: 3112 + components: + - type: Transform + pos: 9.5,4.5 + parent: 4812 + - uid: 3362 + components: + - type: Transform + pos: 12.5,22.5 + parent: 4812 + - uid: 3363 + components: + - type: Transform + pos: 12.5,23.5 + parent: 4812 + - uid: 3364 + components: + - type: Transform + pos: 12.5,26.5 + parent: 4812 + - uid: 3365 + components: + - type: Transform + pos: 12.5,27.5 + parent: 4812 + - uid: 3366 + components: + - type: Transform + pos: 12.5,28.5 + parent: 4812 + - uid: 3367 + components: + - type: Transform + pos: 12.5,29.5 + parent: 4812 + - uid: 3368 + components: + - type: Transform + pos: 12.5,30.5 + parent: 4812 + - uid: 3471 + components: + - type: Transform + pos: 3.5,41.5 + parent: 4812 + - uid: 3472 + components: + - type: Transform + pos: 3.5,42.5 + parent: 4812 + - uid: 3473 + components: + - type: Transform + pos: 3.5,43.5 + parent: 4812 + - uid: 3477 + components: + - type: Transform + pos: 6.5,42.5 + parent: 4812 + - uid: 3478 + components: + - type: Transform + pos: 6.5,41.5 + parent: 4812 + - uid: 3479 + components: + - type: Transform + pos: 6.5,40.5 + parent: 4812 + - uid: 3480 + components: + - type: Transform + pos: 6.5,39.5 + parent: 4812 + - uid: 3481 + components: + - type: Transform + pos: 6.5,38.5 + parent: 4812 + - uid: 3482 + components: + - type: Transform + pos: 6.5,37.5 + parent: 4812 + - uid: 3483 + components: + - type: Transform + pos: 6.5,36.5 + parent: 4812 + - uid: 3484 + components: + - type: Transform + pos: 6.5,35.5 + parent: 4812 + - uid: 3485 + components: + - type: Transform + pos: 6.5,34.5 + parent: 4812 + - uid: 4487 + components: + - type: Transform + pos: 17.5,4.5 + parent: 4812 + - uid: 4488 + components: + - type: Transform + pos: 16.5,4.5 + parent: 4812 + - uid: 4591 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 4812 + - uid: 4592 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 4812 + - uid: 4593 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 4812 + - uid: 4860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-30.5 + parent: 4812 + - uid: 4931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-30.5 + parent: 4812 + - uid: 4932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-30.5 + parent: 4812 + - uid: 4950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-30.5 + parent: 4812 + - uid: 4951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-30.5 + parent: 4812 + - uid: 6170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 4812 + - uid: 6368 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 4812 + - uid: 6369 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 4812 + - uid: 6370 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 4812 + - uid: 6371 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 4812 + - uid: 6372 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 4812 + - uid: 6373 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 4812 + - uid: 6374 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 4812 + - uid: 6375 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 4812 + - uid: 6376 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 4812 + - uid: 6377 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 4812 + - uid: 6378 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 4812 + - uid: 6379 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 4812 + - uid: 6380 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 4812 + - uid: 6381 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 4812 + - uid: 6383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 4812 + - uid: 8610 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 4812 + - uid: 8611 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 4812 + - uid: 8612 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 4812 + - uid: 8613 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 4812 + - uid: 8614 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 4812 + - uid: 8615 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 4812 + - uid: 8616 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 4812 + - uid: 8617 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 4812 + - uid: 8618 + components: + - type: Transform + pos: 9.5,0.5 + parent: 4812 + - uid: 8619 + components: + - type: Transform + pos: 9.5,1.5 + parent: 4812 + - uid: 8620 + components: + - type: Transform + pos: 9.5,2.5 + parent: 4812 + - uid: 9429 + components: + - type: Transform + pos: -49.5,0.5 + parent: 4812 + - uid: 9430 + components: + - type: Transform + pos: -49.5,1.5 + parent: 4812 + - uid: 9431 + components: + - type: Transform + pos: -49.5,2.5 + parent: 4812 + - uid: 9432 + components: + - type: Transform + pos: -49.5,3.5 + parent: 4812 + - uid: 9433 + components: + - type: Transform + pos: -49.5,4.5 + parent: 4812 + - uid: 9434 + components: + - type: Transform + pos: -49.5,5.5 + parent: 4812 + - uid: 9435 + components: + - type: Transform + pos: -49.5,6.5 + parent: 4812 + - uid: 9436 + components: + - type: Transform + pos: -49.5,7.5 + parent: 4812 + - uid: 9437 + components: + - type: Transform + pos: -49.5,8.5 + parent: 4812 + - uid: 9438 + components: + - type: Transform + pos: -49.5,9.5 + parent: 4812 + - uid: 9439 + components: + - type: Transform + pos: -49.5,10.5 + parent: 4812 + - uid: 9440 + components: + - type: Transform + pos: -49.5,11.5 + parent: 4812 + - uid: 9441 + components: + - type: Transform + pos: -49.5,12.5 + parent: 4812 + - uid: 9532 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 4812 + - uid: 9533 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 4812 + - uid: 9534 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 4812 + - uid: 9556 + components: + - type: Transform + pos: -45.5,14.5 + parent: 4812 + - uid: 9557 + components: + - type: Transform + pos: -44.5,14.5 + parent: 4812 + - uid: 9558 + components: + - type: Transform + pos: -43.5,14.5 + parent: 4812 + - uid: 9700 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 4812 + - uid: 9701 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 4812 + - uid: 9702 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 4812 + - uid: 9703 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 4812 + - uid: 9704 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 4812 + - uid: 9705 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 4812 + - uid: 9932 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 4812 + - uid: 9933 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 4812 + - uid: 9934 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 4812 + - uid: 9935 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 4812 + - uid: 9936 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 4812 + - uid: 9937 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 4812 + - uid: 9938 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 4812 + - uid: 10277 + components: + - type: Transform + pos: -70.5,-22.5 + parent: 4812 + - uid: 10278 + components: + - type: Transform + pos: -69.5,-22.5 + parent: 4812 + - uid: 10279 + components: + - type: Transform + pos: -68.5,-22.5 + parent: 4812 + - uid: 10280 + components: + - type: Transform + pos: -67.5,-22.5 + parent: 4812 + - uid: 10281 + components: + - type: Transform + pos: -66.5,-22.5 + parent: 4812 + - uid: 10282 + components: + - type: Transform + pos: -65.5,-22.5 + parent: 4812 + - uid: 10283 + components: + - type: Transform + pos: -64.5,-22.5 + parent: 4812 + - uid: 10284 + components: + - type: Transform + pos: -63.5,-22.5 + parent: 4812 + - uid: 10285 + components: + - type: Transform + pos: -62.5,-22.5 + parent: 4812 + - uid: 10286 + components: + - type: Transform + pos: -61.5,-22.5 + parent: 4812 + - uid: 10287 + components: + - type: Transform + pos: -60.5,-22.5 + parent: 4812 + - uid: 10288 + components: + - type: Transform + pos: -59.5,-22.5 + parent: 4812 + - uid: 10289 + components: + - type: Transform + pos: -58.5,-22.5 + parent: 4812 + - uid: 10290 + components: + - type: Transform + pos: -57.5,-22.5 + parent: 4812 + - uid: 10291 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 4812 + - uid: 10292 + components: + - type: Transform + pos: -60.5,-20.5 + parent: 4812 + - uid: 10293 + components: + - type: Transform + pos: -60.5,-19.5 + parent: 4812 + - uid: 10294 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 4812 + - uid: 10295 + components: + - type: Transform + pos: -64.5,-18.5 + parent: 4812 + - uid: 10296 + components: + - type: Transform + pos: -64.5,-19.5 + parent: 4812 + - uid: 10297 + components: + - type: Transform + pos: -64.5,-20.5 + parent: 4812 + - uid: 10298 + components: + - type: Transform + pos: -64.5,-21.5 + parent: 4812 + - uid: 10299 + components: + - type: Transform + pos: -68.5,-21.5 + parent: 4812 + - uid: 10300 + components: + - type: Transform + pos: -68.5,-20.5 + parent: 4812 + - uid: 10301 + components: + - type: Transform + pos: -68.5,-19.5 + parent: 4812 + - uid: 10302 + components: + - type: Transform + pos: -68.5,-18.5 + parent: 4812 + - uid: 10303 + components: + - type: Transform + pos: -68.5,-23.5 + parent: 4812 + - uid: 10304 + components: + - type: Transform + pos: -68.5,-24.5 + parent: 4812 + - uid: 10305 + components: + - type: Transform + pos: -68.5,-25.5 + parent: 4812 + - uid: 10306 + components: + - type: Transform + pos: -68.5,-26.5 + parent: 4812 + - uid: 10307 + components: + - type: Transform + pos: -64.5,-26.5 + parent: 4812 + - uid: 10308 + components: + - type: Transform + pos: -64.5,-25.5 + parent: 4812 + - uid: 10309 + components: + - type: Transform + pos: -64.5,-24.5 + parent: 4812 + - uid: 10310 + components: + - type: Transform + pos: -64.5,-23.5 + parent: 4812 + - uid: 10311 + components: + - type: Transform + pos: -60.5,-26.5 + parent: 4812 + - uid: 10312 + components: + - type: Transform + pos: -60.5,-25.5 + parent: 4812 + - uid: 10313 + components: + - type: Transform + pos: -60.5,-24.5 + parent: 4812 + - uid: 10314 + components: + - type: Transform + pos: -60.5,-23.5 + parent: 4812 + - uid: 10566 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 4812 + - uid: 10567 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 4812 + - uid: 10568 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 4812 + - uid: 10569 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 4812 + - uid: 10570 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 4812 + - uid: 10571 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 4812 + - uid: 10572 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 4812 + - uid: 10573 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 4812 + - uid: 10574 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 4812 + - uid: 10575 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 4812 + - uid: 10576 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 4812 + - uid: 10577 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 4812 + - uid: 10578 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 4812 + - uid: 10579 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 4812 + - uid: 10580 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 4812 + - uid: 10582 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 4812 + - uid: 10583 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 4812 + - uid: 10584 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 4812 + - uid: 10587 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 4812 + - uid: 10588 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 4812 + - uid: 10589 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 4812 + - uid: 10590 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 4812 + - uid: 10593 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 4812 + - uid: 10594 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 4812 + - uid: 10595 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 4812 + - uid: 10596 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 4812 + - uid: 10597 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 4812 + - uid: 10598 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 4812 + - uid: 10618 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 4812 + - uid: 10619 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 4812 + - uid: 10620 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 4812 + - uid: 10621 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 4812 + - uid: 10622 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 4812 + - uid: 10623 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 4812 + - uid: 10624 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 4812 + - uid: 10625 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 4812 + - uid: 10626 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 4812 + - uid: 10627 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 4812 + - uid: 10628 + components: + - type: Transform + pos: -47.5,-22.5 + parent: 4812 + - uid: 10629 + components: + - type: Transform + pos: -46.5,-22.5 + parent: 4812 + - uid: 10630 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 4812 + - uid: 10631 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 4812 + - uid: 10870 + components: + - type: Transform + pos: -30.5,7.5 + parent: 4812 + - uid: 10871 + components: + - type: Transform + pos: -31.5,7.5 + parent: 4812 + - uid: 10872 + components: + - type: Transform + pos: -32.5,7.5 + parent: 4812 + - uid: 10874 + components: + - type: Transform + pos: -33.5,7.5 + parent: 4812 + - uid: 10875 + components: + - type: Transform + pos: -34.5,7.5 + parent: 4812 + - uid: 11252 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 4812 + - uid: 11253 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 4812 + - uid: 11254 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 4812 + - uid: 11255 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 4812 + - uid: 11257 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 4812 + - uid: 11258 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 4812 + - uid: 11423 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 4812 + - uid: 11424 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 4812 + - uid: 11425 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 4812 + - uid: 11426 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 4812 + - uid: 11427 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 4812 + - uid: 11428 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 4812 + - uid: 11429 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 4812 + - uid: 11430 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 4812 + - uid: 11431 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 4812 + - uid: 11432 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 4812 + - uid: 11433 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 4812 + - uid: 11578 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 4812 + - uid: 11579 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 4812 + - uid: 11580 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 4812 + - uid: 11581 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 4812 + - uid: 11582 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 4812 + - uid: 11583 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 4812 + - uid: 11584 + components: + - type: Transform + pos: 45.5,-36.5 + parent: 4812 + - uid: 11585 + components: + - type: Transform + pos: 46.5,-36.5 + parent: 4812 + - uid: 11586 + components: + - type: Transform + pos: 47.5,-36.5 + parent: 4812 + - uid: 11587 + components: + - type: Transform + pos: 48.5,-36.5 + parent: 4812 + - uid: 11588 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 4812 + - uid: 11589 + components: + - type: Transform + pos: 50.5,-36.5 + parent: 4812 + - uid: 11590 + components: + - type: Transform + pos: 51.5,-36.5 + parent: 4812 + - uid: 11591 + components: + - type: Transform + pos: 52.5,-36.5 + parent: 4812 + - uid: 11592 + components: + - type: Transform + pos: 50.5,-35.5 + parent: 4812 + - uid: 11593 + components: + - type: Transform + pos: 50.5,-34.5 + parent: 4812 + - uid: 11594 + components: + - type: Transform + pos: 50.5,-33.5 + parent: 4812 + - uid: 11595 + components: + - type: Transform + pos: 50.5,-32.5 + parent: 4812 + - uid: 11596 + components: + - type: Transform + pos: 46.5,-35.5 + parent: 4812 + - uid: 11597 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 4812 + - uid: 11598 + components: + - type: Transform + pos: 46.5,-33.5 + parent: 4812 + - uid: 11599 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 4812 + - uid: 11600 + components: + - type: Transform + pos: 42.5,-35.5 + parent: 4812 + - uid: 11601 + components: + - type: Transform + pos: 42.5,-34.5 + parent: 4812 + - uid: 11602 + components: + - type: Transform + pos: 42.5,-33.5 + parent: 4812 + - uid: 11603 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 4812 + - uid: 11604 + components: + - type: Transform + pos: 42.5,-40.5 + parent: 4812 + - uid: 11605 + components: + - type: Transform + pos: 42.5,-39.5 + parent: 4812 + - uid: 11606 + components: + - type: Transform + pos: 42.5,-38.5 + parent: 4812 + - uid: 11607 + components: + - type: Transform + pos: 42.5,-37.5 + parent: 4812 + - uid: 11608 + components: + - type: Transform + pos: 46.5,-40.5 + parent: 4812 + - uid: 11609 + components: + - type: Transform + pos: 46.5,-39.5 + parent: 4812 + - uid: 11610 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 4812 + - uid: 11611 + components: + - type: Transform + pos: 46.5,-37.5 + parent: 4812 + - uid: 11612 + components: + - type: Transform + pos: 50.5,-40.5 + parent: 4812 + - uid: 11613 + components: + - type: Transform + pos: 50.5,-39.5 + parent: 4812 + - uid: 11614 + components: + - type: Transform + pos: 50.5,-38.5 + parent: 4812 + - uid: 11615 + components: + - type: Transform + pos: 50.5,-37.5 + parent: 4812 + - uid: 11619 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 4812 + - uid: 11620 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 4812 + - uid: 11814 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 4812 + - uid: 11815 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 4812 + - uid: 11816 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 4812 + - uid: 11817 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 4812 + - uid: 11818 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 4812 + - uid: 11819 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 4812 + - uid: 11820 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 4812 + - uid: 11821 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 4812 + - uid: 11822 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 4812 + - uid: 11823 + components: + - type: Transform + pos: -12.5,0.5 + parent: 4812 + - uid: 11824 + components: + - type: Transform + pos: -12.5,1.5 + parent: 4812 + - uid: 11825 + components: + - type: Transform + pos: -12.5,2.5 + parent: 4812 + - uid: 11826 + components: + - type: Transform + pos: -12.5,3.5 + parent: 4812 + - uid: 11827 + components: + - type: Transform + pos: -12.5,4.5 + parent: 4812 + - uid: 11828 + components: + - type: Transform + pos: -12.5,5.5 + parent: 4812 + - uid: 11829 + components: + - type: Transform + pos: -12.5,6.5 + parent: 4812 + - uid: 11830 + components: + - type: Transform + pos: -12.5,7.5 + parent: 4812 + - uid: 11831 + components: + - type: Transform + pos: -12.5,8.5 + parent: 4812 + - uid: 11832 + components: + - type: Transform + pos: -6.5,13.5 + parent: 4812 + - uid: 11833 + components: + - type: Transform + pos: -7.5,13.5 + parent: 4812 + - uid: 11834 + components: + - type: Transform + pos: -8.5,13.5 + parent: 4812 + - uid: 11835 + components: + - type: Transform + pos: -9.5,13.5 + parent: 4812 + - uid: 11836 + components: + - type: Transform + pos: -10.5,13.5 + parent: 4812 + - uid: 11837 + components: + - type: Transform + pos: -11.5,13.5 + parent: 4812 +- proto: Chair + entities: + - uid: 3239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 4812 + - uid: 3240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 4812 + - uid: 3241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,13.5 + parent: 4812 + - uid: 3242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,13.5 + parent: 4812 + - uid: 3243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,13.5 + parent: 4812 + - uid: 4551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 4812 + - uid: 4552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 4812 + - uid: 4553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 4812 + - uid: 4554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 4812 + - uid: 4555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 4812 + - uid: 4556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 4812 + - uid: 4557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-3.5 + parent: 4812 + - uid: 4558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 4812 + - uid: 4559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 4812 + - uid: 4560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 4812 + - uid: 4565 + components: + - type: Transform + pos: 29.5,4.5 + parent: 4812 + - uid: 4566 + components: + - type: Transform + pos: 30.5,4.5 + parent: 4812 + - uid: 4567 + components: + - type: Transform + pos: 31.5,4.5 + parent: 4812 + - uid: 4568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,3.5 + parent: 4812 + - uid: 5065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 4812 + - uid: 5066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-46.5 + parent: 4812 + - uid: 5375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-17.5 + parent: 4812 + - uid: 7214 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 4812 + - uid: 7439 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 4812 + - uid: 7440 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 4812 + - uid: 8289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,14.5 + parent: 4812 + - uid: 8290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,14.5 + parent: 4812 + - uid: 8291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,15.5 + parent: 4812 + - uid: 8292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,15.5 + parent: 4812 + - uid: 8293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,17.5 + parent: 4812 + - uid: 8302 + components: + - type: Transform + pos: -19.5,19.5 + parent: 4812 + - uid: 8303 + components: + - type: Transform + pos: -18.5,19.5 + parent: 4812 + - uid: 8418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-23.5 + parent: 4812 + - uid: 8437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,10.5 + parent: 4812 + - uid: 8438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 4812 + - uid: 8445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,17.5 + parent: 4812 + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,18.5 + parent: 4812 + - uid: 8851 + components: + - type: Transform + pos: 23.5,13.5 + parent: 4812 + - uid: 10732 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 4812 + - uid: 10733 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 4812 + - uid: 10734 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 4812 + - uid: 10735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-8.5 + parent: 4812 + - uid: 10736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 4812 + - uid: 10737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-8.5 + parent: 4812 + - uid: 10909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-24.5 + parent: 4812 + - uid: 10910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-23.5 + parent: 4812 + - uid: 10911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-24.5 + parent: 4812 + - uid: 11773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 4812 + - uid: 11774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 4812 + - uid: 11841 + components: + - type: Transform + pos: -8.5,14.5 + parent: 4812 + - uid: 11846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 4812 + - uid: 11877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 4812 + - uid: 11878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 4812 + - uid: 11885 + components: + - type: Transform + pos: 6.5,12.5 + parent: 4812 + - uid: 11886 + components: + - type: Transform + pos: 5.5,12.5 + parent: 4812 +- proto: ChairOfficeDark + entities: + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 4812 + - uid: 2508 + components: + - type: Transform + pos: 9.5,24.5 + parent: 4812 + - uid: 2665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,34.5 + parent: 4812 + - uid: 2666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,34.5 + parent: 4812 + - uid: 2667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,33.5 + parent: 4812 + - uid: 2686 + components: + - type: Transform + pos: -7.5,33.5 + parent: 4812 + - uid: 3237 + components: + - type: Transform + pos: 15.5,17.5 + parent: 4812 + - uid: 3238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 4812 + - uid: 3704 + components: + - type: Transform + pos: 17.5,30.5 + parent: 4812 + - uid: 4569 + components: + - type: Transform + pos: 28.5,2.5 + parent: 4812 + - uid: 5371 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 4812 + - uid: 6288 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 4812 + - uid: 6320 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 4812 + - uid: 6475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 4812 + - uid: 7037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-39.5 + parent: 4812 + - uid: 7038 + components: + - type: Transform + pos: -23.5,-37.5 + parent: 4812 + - uid: 7071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 4812 + - uid: 7072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 4812 + - uid: 7073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 4812 + - uid: 7074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 4812 + - uid: 7075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-19.5 + parent: 4812 + - uid: 7076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 4812 + - uid: 8278 + components: + - type: Transform + pos: -17.5,15.5 + parent: 4812 + - uid: 8338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 4812 + - uid: 8366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 4812 + - uid: 9575 + components: + - type: Transform + pos: -30.5,1.5 + parent: 4812 + - uid: 9878 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 4812 + - uid: 10666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-9.5 + parent: 4812 + - uid: 10698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-5.5 + parent: 4812 + - uid: 11869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 4812 + - uid: 11870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 4812 + - uid: 11871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,11.5 + parent: 4812 + - uid: 12112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 4812 +- proto: ChairOfficeLight + entities: + - uid: 4595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 4812 + - uid: 4973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 4812 + - uid: 6179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 4812 + - uid: 6180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-14.5 + parent: 4812 + - uid: 6216 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 4812 + - uid: 6344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 + parent: 4812 + - uid: 6619 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 4812 + - uid: 6620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 4812 + - uid: 8444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-26.5 + parent: 4812 + - uid: 11148 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 4812 +- proto: ChairWood + entities: + - uid: 1052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 4812 + - uid: 1053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 4812 + - uid: 1054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 4812 + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 4812 + - uid: 1056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 4812 + - uid: 1057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 4812 + - uid: 1058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 4812 + - uid: 1059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 4812 + - uid: 1060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 4812 + - uid: 1061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 4812 + - uid: 1062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 4812 + - uid: 1626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 4812 + - uid: 4659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 4812 + - uid: 5226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 4812 + - uid: 5227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 4812 + - uid: 5228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 4812 + - uid: 5230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 4812 + - uid: 5231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 4812 + - uid: 6797 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 4812 + - uid: 6798 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 4812 + - uid: 7007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-33.5 + parent: 4812 + - uid: 7008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-33.5 + parent: 4812 + - uid: 7009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 4812 + - uid: 7010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 4812 + - uid: 7011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 4812 + - uid: 7012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 4812 + - uid: 7013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 4812 + - uid: 7014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 4812 + - uid: 7015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 4812 + - uid: 7016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 4812 + - uid: 7160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 4812 + - uid: 7168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-15.5 + parent: 4812 + - uid: 10502 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 4812 + - uid: 10503 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 4812 + - uid: 10504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-29.5 + parent: 4812 + - uid: 10505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-29.5 + parent: 4812 + - uid: 10506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-28.5 + parent: 4812 + - uid: 10507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-28.5 + parent: 4812 +- proto: ChanterelleSeeds + entities: + - uid: 1522 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 4812 + - uid: 11296 + components: + - type: Transform + pos: 16.50683,-36.589657 + parent: 4812 +- proto: CheapRollerBed + entities: + - uid: 7588 + components: + - type: Transform + pos: -19.499699,-23.348194 + parent: 4812 + - uid: 7655 + components: + - type: Transform + pos: -20.546574,-23.33257 + parent: 4812 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 3226 + components: + - type: Transform + pos: -17.562876,-25.168678 + parent: 4812 + - uid: 8850 + components: + - type: Transform + pos: -17.5785,-25.512428 + parent: 4812 +- proto: chem_master + entities: + - uid: 6606 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 4812 + - uid: 6607 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 4812 +- proto: ChemDispenser + entities: + - uid: 6604 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 4812 + - uid: 6605 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 4812 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 7581 + components: + - type: Transform + pos: -15.593227,-23.348886 + parent: 4812 + - uid: 7584 + components: + - type: Transform + pos: -15.530727,-23.473886 + parent: 4812 +- proto: ChemistryHotplate + entities: + - uid: 12473 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 4812 +- proto: ChessBoard + entities: + - uid: 11880 + components: + - type: Transform + pos: -2.493187,-34.40246 + parent: 4812 +- proto: Cigar + entities: + - uid: 5385 + components: + - type: Transform + pos: 18.601286,-15.579714 + parent: 4812 + - uid: 5386 + components: + - type: Transform + pos: 18.601286,-15.439089 + parent: 4812 +- proto: CigarCase + entities: + - uid: 1758 + components: + - type: Transform + pos: -6.558632,4.639101 + parent: 4812 + - uid: 6413 + components: + - type: Transform + pos: -0.43434072,-15.356113 + parent: 4812 +- proto: Cigarette + entities: + - uid: 12373 + components: + - type: Transform + pos: 4.34406,-34.161045 + parent: 4812 +- proto: CigarGold + entities: + - uid: 2674 + components: + - type: Transform + pos: -2.4733105,29.66387 + parent: 4812 + - uid: 2675 + components: + - type: Transform + pos: -2.4108105,29.491995 + parent: 4812 +- proto: CigarGoldCase + entities: + - uid: 2719 + components: + - type: Transform + pos: -5.477762,22.691704 + parent: 4812 +- proto: CigCartonRed + entities: + - uid: 11843 + components: + - type: Transform + pos: -7.4943094,12.705126 + parent: 4812 +- proto: CircuitImprinter + entities: + - uid: 6184 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Gold + - uid: 6233 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Gold +- proto: ClosetBase + entities: + - uid: 11811 + components: + - type: Transform + pos: -15.5,0.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: + - 11812 + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetBombFilled + entities: + - uid: 6331 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetChefFilled + entities: + - uid: 1568 + components: + - type: Transform + pos: 4.5,0.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1676 + components: + - type: Transform + pos: 3.5,13.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1795 + components: + - type: Transform + pos: 0.5,17.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2677 + components: + - type: Transform + pos: -8.5,33.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 3786 + components: + - type: Transform + pos: 3.5,46.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4484 + components: + - type: Transform + pos: 20.5,11.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4522 + components: + - type: Transform + pos: 13.5,4.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4540 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4599 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4725 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6421 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7616 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10407 + components: + - type: Transform + pos: -55.5,-23.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10602 + components: + - type: Transform + pos: -45.5,-16.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10876 + components: + - type: Transform + pos: -32.5,8.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11461 + components: + - type: Transform + pos: 36.5,-37.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetFireFilled + entities: + - uid: 1514 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1796 + components: + - type: Transform + pos: 0.5,16.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 3674 + components: + - type: Transform + pos: 3.5,49.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4483 + components: + - type: Transform + pos: 22.5,1.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7615 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8328 + components: + - type: Transform + pos: -17.5,29.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9688 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9690 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12474 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetJanitorFilled + entities: + - uid: 1486 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3JanitorFilled + entities: + - uid: 1479 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetL3ScienceFilled + entities: + - uid: 6310 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11149 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetL3SecurityFilled + entities: + - uid: 8423 + components: + - type: Transform + pos: -33.5,10.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetL3VirologyFilled + entities: + - uid: 8869 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetLegalFilled + entities: + - uid: 8477 + components: + - type: Transform + pos: -16.5,15.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 9068 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10527 + components: + - type: Transform + pos: -41.5,-31.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10900 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11309 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11618 + components: + - type: Transform + pos: 30.5,-36.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11882 + components: + - type: Transform + pos: 9.5,12.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetRadiationSuitFilled + entities: + - uid: 6358 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9686 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9687 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11775 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetWallAtmospherics + entities: + - uid: 9099 + components: + - type: Transform + pos: -55.5,5.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12381 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 12374 + components: + - type: Transform + pos: 22.5,17.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 1.3546504 + - 5.096066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12375 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 11745 + components: + - type: Transform + pos: 5.5,3.5 + parent: 4812 + - uid: 12376 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetWallOrange + entities: + - uid: 12377 + components: + - type: Transform + pos: -25.5,21.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12378 + components: + - type: Transform + pos: -25.5,18.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12379 + components: + - type: Transform + pos: -31.5,28.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12380 + components: + - type: Transform + pos: -27.5,28.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClothingBackpackClown + entities: + - uid: 9198 + components: + - type: Transform + pos: -10.304824,1.6229031 + parent: 4812 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 7428 + components: + - type: Transform + pos: -22.535873,-28.341772 + parent: 4812 +- proto: ClothingBeltChampion + entities: + - uid: 2715 + components: + - type: Transform + pos: -5.571512,24.066704 + parent: 4812 +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 9061 + components: + - type: Transform + pos: -28.553808,-33.515636 + parent: 4812 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 3371 + components: + - type: Transform + pos: 19.574245,21.55511 + parent: 4812 + - uid: 10714 + components: + - type: Transform + pos: -31.802395,-7.4187636 + parent: 4812 + - uid: 12498 + components: + - type: Transform + pos: 5.5994864,-28.47739 + parent: 4812 +- proto: ClothingEyesEyepatch + entities: + - uid: 8481 + components: + - type: Transform + pos: -16.839548,32.557995 + parent: 4812 + - uid: 9657 + components: + - type: Transform + pos: 25.533524,-9.424093 + parent: 4812 +- proto: ClothingEyesGlasses + entities: + - uid: 6205 + components: + - type: Transform + pos: 3.4675388,-14.361706 + parent: 4812 + - uid: 6337 + components: + - type: Transform + pos: 25.449461,-19.268694 + parent: 4812 + - uid: 11851 + components: + - type: Transform + pos: 10.561617,-44.322975 + parent: 4812 + - uid: 12497 + components: + - type: Transform + pos: 9.501655,-16.456053 + parent: 4812 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 1655 + components: + - type: Transform + pos: 5.544427,8.548626 + parent: 4812 + - uid: 5383 + components: + - type: Transform + pos: 19.570036,-18.407839 + parent: 4812 +- proto: ClothingEyesHudBeer + entities: + - uid: 10683 + components: + - type: Transform + pos: -9.466419,-48.16831 + parent: 4812 +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 10769 + components: + - type: Transform + pos: -43.49446,-7.521168 + parent: 4812 +- proto: ClothingEyesHudMedical + entities: + - uid: 7586 + components: + - type: Transform + pos: -10.686977,-25.567636 + parent: 4812 + - uid: 7587 + components: + - type: Transform + pos: -10.671352,-25.395761 + parent: 4812 +- proto: ClothingEyesHudSecurity + entities: + - uid: 8443 + components: + - type: Transform + pos: -36.423813,15.378265 + parent: 4812 +- proto: ClothingHandsGlovesColorGray + entities: + - uid: 11853 + components: + - type: Transform + pos: 12.884244,-36.874004 + parent: 4812 +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 1495 + components: + - type: Transform + pos: -23.466429,-7.3899465 + parent: 4812 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 8601 + components: + - type: Transform + pos: -18.453629,9.613115 + parent: 4812 + - uid: 10706 + components: + - type: Transform + pos: -32.450558,-7.5008273 + parent: 4812 +- proto: ClothingHandsGlovesLeather + entities: + - uid: 1461 + components: + - type: Transform + pos: -18.506594,-9.370907 + parent: 4812 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 8419 + components: + - type: Transform + pos: -19.480015,-25.463383 + parent: 4812 + - uid: 9033 + components: + - type: Transform + pos: -39.79441,-35.343323 + parent: 4812 +- proto: ClothingHandsGlovesRobohands + entities: + - uid: 6349 + components: + - type: Transform + pos: 5.5434675,-25.370066 + parent: 4812 +- proto: ClothingHeadFishCap + entities: + - uid: 9567 + components: + - type: Transform + pos: 13.508905,-4.30057 + parent: 4812 +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 9195 + components: + - type: Transform + pos: -33.510674,-34.64361 + parent: 4812 + - uid: 11099 + components: + - type: Transform + pos: 7.610162,-44.413692 + parent: 4812 +- proto: ClothingHeadHatBeaverHat + entities: + - uid: 6385 + components: + - type: Transform + pos: 13.532155,-11.236504 + parent: 4812 +- proto: ClothingHeadHatBeretWarden + entities: + - uid: 12145 + components: + - type: Transform + pos: -35.744057,17.561283 + parent: 4812 +- proto: ClothingHeadHatCone + entities: + - uid: 11339 + components: + - type: Transform + pos: 8.449844,17.514982 + parent: 4812 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 10608 + components: + - type: Transform + pos: -36.481308,-25.464363 + parent: 4812 + - uid: 11809 + components: + - type: Transform + pos: -14.4824505,-0.22820306 + parent: 4812 +- proto: ClothingHeadHatFedoraGrey + entities: + - uid: 1757 + components: + - type: Transform + pos: -6.558632,8.592226 + parent: 4812 +- proto: ClothingHeadHatFez + entities: + - uid: 10914 + components: + - type: Transform + pos: -44.596,-23.407698 + parent: 4812 + - uid: 10915 + components: + - type: Transform + pos: -44.4085,-23.673323 + parent: 4812 +- proto: ClothingHeadHatFlowerCrown + entities: + - uid: 7254 + components: + - type: Transform + pos: -24.594517,-34.532703 + parent: 4812 +- proto: ClothingHeadHatHairflower + entities: + - uid: 2716 + components: + - type: Transform + pos: -5.180887,24.379204 + parent: 4812 + - uid: 12475 + components: + - type: Transform + pos: -24.401733,-34.40146 + parent: 4812 +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 12119 + components: + - type: Transform + pos: -42.44835,-1.0036435 + parent: 4812 +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 12120 + components: + - type: Transform + pos: -41.401306,-7.235723 + parent: 4812 +- proto: ClothingHeadHatPaper + entities: + - uid: 11856 + components: + - type: Transform + pos: -27.456482,29.23433 + parent: 4812 +- proto: ClothingHeadHatPirate + entities: + - uid: 11675 + components: + - type: Transform + pos: -17.677834,32.905758 + parent: 4812 +- proto: ClothingHeadHatPumpkin + entities: + - uid: 11858 + components: + - type: Transform + pos: -18.486109,-5.5083795 + parent: 4812 +- proto: ClothingHeadHatTophat + entities: + - uid: 10924 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 10921 + - type: Physics + canCollide: False +- proto: ClothingHeadHatTrucker + entities: + - uid: 1460 + components: + - type: Transform + pos: -18.506594,-5.4646573 + parent: 4812 +- proto: ClothingHeadHatUshanka + entities: + - uid: 11778 + components: + - type: Transform + pos: 30.766603,-32.390636 + parent: 4812 + - uid: 11779 + components: + - type: Transform + pos: 30.360353,-32.65626 + parent: 4812 +- proto: ClothingHeadHatWelding + entities: + - uid: 6238 + components: + - type: Transform + pos: 15.515093,-23.391537 + parent: 4812 + - uid: 8600 + components: + - type: Transform + pos: -20.141129,12.59749 + parent: 4812 +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 10726 + components: + - type: Transform + pos: -24.496122,-31.384293 + parent: 4812 + - uid: 11469 + components: + - type: Transform + pos: 28.533575,-35.71058 + parent: 4812 +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 10725 + components: + - type: Transform + pos: -36.26352,8.306009 + parent: 4812 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 10727 + components: + - type: Transform + pos: 15.568787,-6.463143 + parent: 4812 +- proto: ClothingHeadHatWitch1 + entities: + - uid: 1753 + components: + - type: Transform + pos: -10.496132,3.670351 + parent: 4812 +- proto: ClothingHeadHelmetSyndicate + entities: + - uid: 11672 + components: + - type: Transform + pos: 28.730742,-41.454163 + parent: 4812 +- proto: ClothingHeadHelmetTemplar + entities: + - uid: 11881 + components: + - type: Transform + pos: -1.477562,-34.543083 + parent: 4812 +- proto: ClothingHeadsetEngineering + entities: + - uid: 10764 + components: + - type: Transform + pos: -43.456604,-7.425037 + parent: 4812 +- proto: ClothingHeadsetMining + entities: + - uid: 8788 + components: + - type: Transform + pos: -35.24849,-39.264732 + parent: 4812 +- proto: ClothingMaskBreath + entities: + - uid: 11789 + components: + - type: Transform + pos: 22.374546,-32.47262 + parent: 4812 +- proto: ClothingMaskBreathMedical + entities: + - uid: 8863 + components: + - type: Transform + pos: 14.451679,-40.556843 + parent: 4812 +- proto: ClothingMaskGas + entities: + - uid: 4496 + components: + - type: Transform + pos: 19.554443,6.484804 + parent: 4812 + - uid: 4542 + components: + - type: Transform + pos: 21.65161,-6.5808167 + parent: 4812 + - uid: 11790 + components: + - type: Transform + pos: 22.624546,-32.62887 + parent: 4812 +- proto: ClothingMaskGasCentcom + entities: + - uid: 11677 + components: + - type: Transform + pos: 25.527617,-40.28087 + parent: 4812 +- proto: ClothingMaskGasExplorer + entities: + - uid: 11015 + components: + - type: Transform + pos: 35.488716,-30.534061 + parent: 4812 +- proto: ClothingNeckBling + entities: + - uid: 2717 + components: + - type: Transform + pos: -5.415262,24.019829 + parent: 4812 +- proto: ClothingNeckCloakMiner + entities: + - uid: 12429 + components: + - type: Transform + pos: -48.41308,-16.456617 + parent: 4812 +- proto: ClothingNeckCloakTrans + entities: + - uid: 4827 + components: + - type: Transform + pos: 38.546867,-26.403046 + parent: 4812 +- proto: ClothingNeckHeadphones + entities: + - uid: 9196 + components: + - type: Transform + pos: -22.35473,0.53885174 + parent: 4812 + - uid: 11854 + components: + - type: Transform + pos: -0.5106895,-15.532991 + parent: 4812 +- proto: ClothingNeckIntersexPin + entities: + - uid: 12511 + components: + - type: Transform + pos: 19.693497,8.613337 + parent: 4812 +- proto: ClothingNeckMantleHOS + entities: + - uid: 9197 + components: + - type: Transform + pos: -21.425161,22.675072 + parent: 4812 +- proto: ClothingNeckNonBinaryPin + entities: + - uid: 12513 + components: + - type: Transform + pos: 8.410957,-44.59256 + parent: 4812 +- proto: ClothingNeckScarfStripedBlue + entities: + - uid: 8417 + components: + - type: Transform + pos: -14.544858,-25.307133 + parent: 4812 + - uid: 11338 + components: + - type: Transform + pos: -33.593323,-36.57982 + parent: 4812 +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 7133 + components: + - type: Transform + pos: -30.568611,-23.475061 + parent: 4812 +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 11335 + components: + - type: Transform + pos: -1.4543457,-27.446754 + parent: 4812 + - uid: 12365 + components: + - type: Transform + pos: -68.52162,-28.692625 + parent: 4812 +- proto: ClothingNeckStethoscope + entities: + - uid: 7580 + components: + - type: Transform + pos: -18.561977,-20.380136 + parent: 4812 +- proto: ClothingNeckTieRed + entities: + - uid: 10922 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 10921 + - type: Physics + canCollide: False + - uid: 11808 + components: + - type: Transform + pos: -14.6855755,-0.43132806 + parent: 4812 +- proto: ClothingNeckTransPin + entities: + - uid: 12515 + components: + - type: Transform + pos: -14.357392,4.331708 + parent: 4812 +- proto: ClothingOuterApron + entities: + - uid: 10913 + components: + - type: Transform + pos: -43.53869,-26.441507 + parent: 4812 +- proto: ClothingOuterArmorBasic + entities: + - uid: 9636 + components: + - type: Transform + pos: -33.593445,20.66048 + parent: 4812 + - uid: 9658 + components: + - type: Transform + pos: -33.593445,20.66048 + parent: 4812 + - uid: 9971 + components: + - type: Transform + pos: -33.593445,20.66048 + parent: 4812 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 9972 + components: + - type: Transform + pos: -35.562195,19.41048 + parent: 4812 + - uid: 9990 + components: + - type: Transform + pos: -35.562195,19.41048 + parent: 4812 + - uid: 9992 + components: + - type: Transform + pos: -35.562195,19.41048 + parent: 4812 +- proto: ClothingOuterArmorReflective + entities: + - uid: 10685 + components: + - type: Transform + pos: -33.364815,20.521324 + parent: 4812 +- proto: ClothingOuterArmorRiot + entities: + - uid: 10958 + components: + - type: Transform + pos: -33.39286,20.650888 + parent: 4812 + - uid: 10976 + components: + - type: Transform + pos: -33.627235,20.729013 + parent: 4812 +- proto: ClothingOuterCoatBomber + entities: + - uid: 10905 + components: + - type: Transform + pos: -30.486824,-12.450464 + parent: 4812 +- proto: ClothingOuterCoatGentle + entities: + - uid: 6193 + components: + - type: Transform + pos: 13.531586,-11.381834 + parent: 4812 +- proto: ClothingOuterCoatInspector + entities: + - uid: 11805 + components: + - type: Transform + pos: -14.486766,-0.42116833 + parent: 4812 +- proto: ClothingOuterCoatJensen + entities: + - uid: 9193 + components: + - type: Transform + pos: -13.455734,5.5269423 + parent: 4812 +- proto: ClothingOuterCoatPirate + entities: + - uid: 8478 + components: + - type: Transform + pos: -17.511423,32.47987 + parent: 4812 +- proto: ClothingOuterGhostSheet + entities: + - uid: 11262 + components: + - type: Transform + pos: 37.373894,-34.471485 + parent: 4812 +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 6765 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 3441 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSpatio + entities: + - uid: 12424 + components: + - type: Transform + pos: -52.87503,-18.445377 + parent: 4812 +- proto: ClothingOuterHoodieBlack + entities: + - uid: 11468 + components: + - type: Transform + pos: 37.580452,-32.58558 + parent: 4812 +- proto: ClothingOuterSuitEmergency + entities: + - uid: 11671 + components: + - type: Transform + pos: 28.696922,-41.322342 + parent: 4812 +- proto: ClothingOuterVestHazard + entities: + - uid: 12117 + components: + - type: Transform + pos: -42.4796,-1.4880185 + parent: 4812 + - uid: 12118 + components: + - type: Transform + pos: -42.370224,-1.6130185 + parent: 4812 +- proto: ClothingShoesBootsJack + entities: + - uid: 9194 + components: + - type: Transform + pos: 15.452381,-15.575151 + parent: 4812 + - uid: 12364 + components: + - type: Transform + pos: 2.5661945,-37.272846 + parent: 4812 +- proto: ClothingShoesBootsMag + entities: + - uid: 1688 + components: + - type: Transform + pos: 5.3844786,14.708496 + parent: 4812 + - uid: 1689 + components: + - type: Transform + pos: 5.5251036,14.520996 + parent: 4812 + - uid: 10772 + components: + - type: Transform + pos: -30.706427,-9.213518 + parent: 4812 + - uid: 10773 + components: + - type: Transform + pos: -30.264002,-9.749746 + parent: 4812 +- proto: ClothingShoesBootsWork + entities: + - uid: 8784 + components: + - type: MetaData + desc: These look like workboots but... they feel expensive. + name: Nimbs + - type: Transform + pos: -34.496048,-16.64644 + parent: 4812 +- proto: ClothingShoesFlippers + entities: + - uid: 11850 + components: + - type: Transform + pos: 4.561617,-41.479225 + parent: 4812 +- proto: ClothingShoesLeather + entities: + - uid: 8864 + components: + - type: Transform + pos: 35.476944,-33.759735 + parent: 4812 + - uid: 12465 + components: + - type: Transform + pos: -36.627586,29.207901 + parent: 4812 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 11810 + components: + - type: Transform + pos: -14.4668255,-1.6813283 + parent: 4812 +- proto: ClothingShoesTourist + entities: + - uid: 1555 + components: + - type: Transform + pos: -9.419544,-48.840183 + parent: 4812 +- proto: ClothingUnderSocksBee + entities: + - uid: 11333 + components: + - type: Transform + pos: 22.487274,-37.39112 + parent: 4812 +- proto: ClothingUnderSocksCoder + entities: + - uid: 11332 + components: + - type: Transform + pos: 14.5012665,-31.61288 + parent: 4812 +- proto: ClothingUniformColorRainbow + entities: + - uid: 1570 + components: + - type: Transform + pos: 14.528925,6.523329 + parent: 4812 +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 10607 + components: + - type: Transform + pos: -36.403183,-24.261238 + parent: 4812 +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 9040 + components: + - type: Transform + pos: 10.492298,52.554813 + parent: 4812 +- proto: ClothingUniformJumpskirtOperative + entities: + - uid: 9053 + components: + - type: Transform + pos: -28.506933,-33.546886 + parent: 4812 +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 8379 + components: + - type: Transform + pos: 12.547598,-44.418983 + parent: 4812 +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 10606 + components: + - type: Transform + pos: -36.543808,-24.229988 + parent: 4812 +- proto: ClothingUniformJumpsuitHawaiBlack + entities: + - uid: 1564 + components: + - type: Transform + pos: -9.44705,-48.485367 + parent: 4812 +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 9060 + components: + - type: Transform + pos: -28.538183,-33.56251 + parent: 4812 +- proto: ClothingUniformJumpsuitPsychologist + entities: + - uid: 10968 + components: + - type: Transform + pos: -36.533836,29.489151 + parent: 4812 +- proto: ClothingUniformJumpsuitSecBlue + entities: + - uid: 10923 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 10921 + - type: Physics + canCollide: False +- proto: ClothingUniformOveralls + entities: + - uid: 11855 + components: + - type: Transform + pos: 17.403048,-37.515766 + parent: 4812 +- proto: ComfyChair + entities: + - uid: 940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 4812 + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 4812 + - uid: 942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 4812 + - uid: 1533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 4812 + - uid: 1750 + components: + - type: Transform + pos: -8.5,7.5 + parent: 4812 + - uid: 1751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 4812 + - uid: 2507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,24.5 + parent: 4812 + - uid: 2587 + components: + - type: Transform + pos: -12.5,28.5 + parent: 4812 + - uid: 2603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,23.5 + parent: 4812 + - uid: 2604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,22.5 + parent: 4812 + - uid: 2605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 4812 + - uid: 2641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,28.5 + parent: 4812 + - uid: 2642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,28.5 + parent: 4812 + - uid: 2646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,29.5 + parent: 4812 + - uid: 2647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,29.5 + parent: 4812 + - uid: 2648 + components: + - type: Transform + pos: -2.5,30.5 + parent: 4812 + - uid: 2664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,34.5 + parent: 4812 + - uid: 5366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 4812 + - uid: 6289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 4812 + - uid: 6351 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 4812 + - uid: 6352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 4812 + - uid: 6392 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 4812 + - uid: 6393 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 4812 + - uid: 6394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 4812 + - uid: 6395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 4812 + - uid: 6396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 4812 + - uid: 6397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 4812 + - uid: 6398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 4812 + - uid: 6399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-19.5 + parent: 4812 + - uid: 7044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-34.5 + parent: 4812 + - uid: 7089 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 4812 + - uid: 8254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,27.5 + parent: 4812 + - uid: 8260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,23.5 + parent: 4812 + - uid: 8261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,23.5 + parent: 4812 + - uid: 8262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,24.5 + parent: 4812 + - uid: 8393 + components: + - type: Transform + pos: -25.5,31.5 + parent: 4812 + - uid: 9047 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 4812 + - uid: 9057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-39.5 + parent: 4812 + - uid: 9058 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 4812 + - uid: 9059 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 4812 + - uid: 11353 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 4812 + - uid: 11464 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 4812 + - uid: 11465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-31.5 + parent: 4812 + - uid: 11784 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 4812 + - uid: 11804 + components: + - type: Transform + pos: -14.5,0.5 + parent: 4812 +- proto: ComputerAlert + entities: + - uid: 2708 + components: + - type: Transform + pos: -2.5,24.5 + parent: 4812 +- proto: ComputerAnalysisConsole + entities: + - uid: 6313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 6319: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: computerBodyScanner + entities: + - uid: 4921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-28.5 + parent: 4812 + - uid: 6166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-28.5 + parent: 4812 + - uid: 6682 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 4812 + - uid: 7445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 4812 +- proto: ComputerCargoBounty + entities: + - uid: 9587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,17.5 + parent: 4812 +- proto: ComputerCargoOrders + entities: + - uid: 2752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,17.5 + parent: 4812 + - uid: 3757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,29.5 + parent: 4812 +- proto: ComputerCargoShuttle + entities: + - uid: 2760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 4812 +- proto: ComputerComms + entities: + - uid: 2601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,22.5 + parent: 4812 + - uid: 2649 + components: + - type: Transform + pos: -2.5,35.5 + parent: 4812 +- proto: ComputerCrewMonitoring + entities: + - uid: 2505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 4812 + - uid: 2656 + components: + - type: Transform + pos: -4.5,35.5 + parent: 4812 + - uid: 4571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 4812 + - uid: 6474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-28.5 + parent: 4812 + - uid: 7447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-26.5 + parent: 4812 + - uid: 7571 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 4812 + - uid: 8264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,24.5 + parent: 4812 +- proto: ComputerCriminalRecords + entities: + - uid: 2659 + components: + - type: Transform + pos: 0.5,35.5 + parent: 4812 + - uid: 4570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 4812 + - uid: 6473 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 4812 + - uid: 8263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,23.5 + parent: 4812 + - uid: 8331 + components: + - type: Transform + pos: -33.5,16.5 + parent: 4812 + - uid: 8365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,10.5 + parent: 4812 +- proto: ComputerFrame + entities: + - uid: 3951 + components: + - type: Transform + pos: 7.5,47.5 + parent: 4812 + - uid: 6653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 4812 + - uid: 11147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-44.5 + parent: 4812 +- proto: ComputerId + entities: + - uid: 2504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 4812 + - uid: 2602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,22.5 + parent: 4812 + - uid: 2658 + components: + - type: Transform + pos: -0.5,35.5 + parent: 4812 +- proto: ComputerMedicalRecords + entities: + - uid: 2657 + components: + - type: Transform + pos: -5.5,35.5 + parent: 4812 + - uid: 7454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-27.5 + parent: 4812 +- proto: ComputerPowerMonitoring + entities: + - uid: 2654 + components: + - type: Transform + pos: 3.5,34.5 + parent: 4812 + - uid: 6021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-31.5 + parent: 4812 + - uid: 8756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 4812 + - uid: 10697 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 4812 +- proto: ComputerRadar + entities: + - uid: 3225 + components: + - type: Transform + pos: 27.5,15.5 + parent: 4812 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 6185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 4812 + - uid: 6215 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 4812 + - uid: 6232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 4812 + - uid: 6287 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 4812 +- proto: ComputerSalvageExpedition + entities: + - uid: 7830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,12.5 + parent: 4812 +- proto: ComputerShuttleCargo + entities: + - uid: 2754 + components: + - type: Transform + pos: 17.5,27.5 + parent: 4812 + - uid: 3758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,29.5 + parent: 4812 +- proto: ComputerShuttleSalvage + entities: + - uid: 7463 + components: + - type: Transform + pos: 26.5,15.5 + parent: 4812 +- proto: ComputerSolarControl + entities: + - uid: 2655 + components: + - type: Transform + pos: 2.5,34.5 + parent: 4812 + - uid: 10322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-25.5 + parent: 4812 +- proto: ComputerStationRecords + entities: + - uid: 1077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,10.5 + parent: 4812 + - uid: 4799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 4812 + - uid: 7199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 4812 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 2662 + components: + - type: Transform + pos: -7.5,34.5 + parent: 4812 + - uid: 4955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 4812 + - uid: 8332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 4812 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 12323 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 4812 +- proto: ComputerTelevision + entities: + - uid: 5370 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 4812 +- proto: ConveyorBelt + entities: + - uid: 2765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 3188 + - uid: 2771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,28.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 3188 + - uid: 2863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 3188 + - uid: 3013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,24.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 3034 + - uid: 3014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,24.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 3034 + - uid: 3028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,24.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 3034 + - uid: 3029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,24.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 3034 + - uid: 3033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,24.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 3034 + - uid: 3043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,28.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 3188 + - uid: 3046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 3188 + - uid: 11235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 11245 +- proto: CornSeeds + entities: + - uid: 9618 + components: + - type: Transform + pos: -42.51349,-28.44041 + parent: 4812 +- proto: CrateArtifactContainer + entities: + - uid: 7366 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 4812 +- proto: CrateCoffin + entities: + - uid: 9993 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 4812 +- proto: CrateEmergencyInternals + entities: + - uid: 8580 + components: + - type: Transform + pos: -16.5,9.5 + parent: 4812 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEmptySpawner + entities: + - uid: 3448 + components: + - type: Transform + pos: 14.5,23.5 + parent: 4812 + - uid: 4606 + components: + - type: Transform + pos: 18.5,11.5 + parent: 4812 +- proto: CrateEngineeringAMEJar + entities: + - uid: 10776 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 4812 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringAMEShielding + entities: + - uid: 10777 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 4812 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10779 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 4812 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringCableBulk + entities: + - uid: 4489 + components: + - type: Transform + pos: 19.5,2.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 10705 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 10723 + components: + - type: Transform + pos: -39.5,8.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage +- proto: CrateEngineeringCableHV + entities: + - uid: 10925 + components: + - type: Transform + pos: -50.5,-24.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage +- proto: CrateFilledSpawner + entities: + - uid: 3713 + components: + - type: Transform + pos: 14.5,27.5 + parent: 4812 + - uid: 3714 + components: + - type: Transform + pos: 14.5,26.5 + parent: 4812 + - uid: 3715 + components: + - type: Transform + pos: 14.5,25.5 + parent: 4812 +- proto: CrateFreezer + entities: + - uid: 1728 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 4812 + - uid: 4925 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 4812 +- proto: CrateMedicalSurgery + entities: + - uid: 4926 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 4812 +- proto: CrateNPCHamlet + entities: + - uid: 12427 + components: + - type: Transform + pos: -1.5,34.5 + parent: 4812 +- proto: CrateSalvageEquipment + entities: + - uid: 3262 + components: + - type: Transform + pos: 27.5,13.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage +- proto: CrateScience + entities: + - uid: 12463 + components: + - type: Transform + pos: -35.5,25.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateScienceSecure + entities: + - uid: 6250 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 4812 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6251 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 4812 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateTrashCart + entities: + - uid: 6171 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 4812 + - uid: 6172 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 4812 + - uid: 6173 + components: + - type: Transform + pos: -29.413927,7.5544257 + parent: 4812 + - uid: 6174 + components: + - type: Transform + pos: 19.5,4.5 + parent: 4812 + - uid: 11472 + components: + - type: Transform + pos: 8.5,2.5 + parent: 4812 +- proto: CrateTrashCartJani + entities: + - uid: 6169 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 4812 +- proto: CrayonBox + entities: + - uid: 1718 + components: + - type: Transform + pos: -10.378301,0.0073432922 + parent: 4812 + - uid: 8405 + components: + - type: Transform + pos: -28.516111,30.589315 + parent: 4812 +- proto: Crematorium + entities: + - uid: 7228 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 4984 + components: + - type: Transform + pos: -3.5,26.5 + parent: 4812 +- proto: Crowbar + entities: + - uid: 3469 + components: + - type: Transform + pos: 22.493902,3.436778 + parent: 4812 +- proto: CrowbarRed + entities: + - uid: 4573 + components: + - type: Transform + pos: 27.5,4.5 + parent: 4812 + - uid: 6350 + components: + - type: Transform + pos: 5.526539,-28.44819 + parent: 4812 + - uid: 6480 + components: + - type: Transform + pos: -2.4305947,-24.470394 + parent: 4812 + - uid: 8588 + components: + - type: Transform + pos: -18.483784,12.505529 + parent: 4812 + - uid: 11330 + components: + - type: Transform + pos: 26.509838,-35.582523 + parent: 4812 +- proto: CryogenicSleepUnit + entities: + - uid: 10854 + components: + - type: Transform + pos: -20.5,5.5 + parent: 4812 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 10855 + components: + - type: Transform + pos: -20.5,4.5 + parent: 4812 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 3774 + components: + - type: Transform + pos: -20.5,3.5 + parent: 4812 +- proto: CryoPod + entities: + - uid: 1937 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 7219 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 3269 + components: + - type: Transform + pos: -14.53001,-25.469097 + parent: 4812 + - uid: 7151 + components: + - type: Transform + pos: -14.264385,-25.312847 + parent: 4812 +- proto: CultAltarSpawner + entities: + - uid: 10980 + components: + - type: Transform + pos: -36.5,30.5 + parent: 4812 +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 1723 + components: + - type: Transform + pos: -9.581426,-1.3989067 + parent: 4812 +- proto: DefaultStationBeaconAICore + entities: + - uid: 12477 + components: + - type: Transform + pos: 10.5,53.5 + parent: 4812 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 12478 + components: + - type: Transform + pos: 6.5,46.5 + parent: 4812 +- proto: DefaultStationBeaconAME + entities: + - uid: 12503 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 4812 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 12505 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 4812 +- proto: DefaultStationBeaconArmory + entities: + - uid: 9626 + components: + - type: Transform + pos: -34.5,20.5 + parent: 4812 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 10545 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 4812 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 12336 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 4812 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 12335 + components: + - type: Transform + pos: -31.5,2.5 + parent: 4812 + - uid: 12582 + components: + - type: Transform + pos: -41.5,4.5 + parent: 4812 +- proto: DefaultStationBeaconBar + entities: + - uid: 12514 + components: + - type: Transform + pos: 3.5,7.5 + parent: 4812 +- proto: DefaultStationBeaconBotany + entities: + - uid: 12109 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 4812 +- proto: DefaultStationBeaconBridge + entities: + - uid: 12071 + components: + - type: Transform + pos: -2.5,33.5 + parent: 4812 +- proto: DefaultStationBeaconBrig + entities: + - uid: 12073 + components: + - type: Transform + pos: -27.5,18.5 + parent: 4812 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 12484 + components: + - type: Transform + pos: -12.5,25.5 + parent: 4812 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 12338 + components: + - type: Transform + pos: 18.5,25.5 + parent: 4812 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 12083 + components: + - type: Transform + pos: 16.5,17.5 + parent: 4812 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 9615 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 4812 +- proto: DefaultStationBeaconChapel + entities: + - uid: 12578 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 4812 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 12469 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 4812 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 12106 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 4812 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 12111 + components: + - type: Transform + pos: -18.5,16.5 + parent: 4812 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 9625 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 4812 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 12110 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 4812 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 12332 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 4812 +- proto: DefaultStationBeaconDorms + entities: + - uid: 12329 + components: + - type: Transform + pos: -19.5,2.5 + parent: 4812 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 12581 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 4812 +- proto: DefaultStationBeaconEvac + entities: + - uid: 12480 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 4812 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 12509 + components: + - type: Transform + pos: 7.5,15.5 + parent: 4812 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 12101 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 4812 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 12545 + components: + - type: Transform + pos: 7.5,25.5 + parent: 4812 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 12337 + components: + - type: Transform + pos: -21.5,25.5 + parent: 4812 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 10664 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 4812 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 10548 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 4812 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 12340 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 4812 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 12580 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 4812 +- proto: DefaultStationBeaconMedical + entities: + - uid: 12577 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 4812 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 12388 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 4812 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 12331 + components: + - type: Transform + pos: -28.5,28.5 + parent: 4812 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 12339 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 4812 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 12504 + components: + - type: Transform + pos: 16.5,31.5 + parent: 4812 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 12415 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 4812 +- proto: DefaultStationBeaconRND + entities: + - uid: 12507 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 4812 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 10546 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 4812 + - uid: 12508 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 4812 + - uid: 12579 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 4812 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 12099 + components: + - type: Transform + pos: 24.5,14.5 + parent: 4812 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 10547 + components: + - type: Transform + pos: -36.5,11.5 + parent: 4812 + - uid: 12517 + components: + - type: Transform + pos: -27.5,12.5 + parent: 4812 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 12482 + components: + - type: Transform + pos: 31.5,2.5 + parent: 4812 + - uid: 12486 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 4812 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 12512 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 4812 +- proto: DefaultStationBeaconSolars + entities: + - uid: 12558 + components: + - type: Transform + pos: -52.5,-24.5 + parent: 4812 + - uid: 12559 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 4812 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 12483 + components: + - type: Transform + pos: 23.5,4.5 + parent: 4812 +- proto: DefaultStationBeaconTheater + entities: + - uid: 12481 + components: + - type: Transform + pos: -8.5,6.5 + parent: 4812 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 12334 + components: + - type: Transform + pos: -18.5,9.5 + parent: 4812 +- proto: DefaultStationBeaconVault + entities: + - uid: 12074 + components: + - type: Transform + pos: -2.5,24.5 + parent: 4812 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 12557 + components: + - type: Transform + pos: -34.5,16.5 + parent: 4812 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 4815 + components: + - type: Transform + pos: -5.5,12.5 + parent: 4812 + - uid: 4996 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 4812 + - uid: 8376 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 4812 + - uid: 8378 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 4812 + - uid: 8414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-25.5 + parent: 4812 +- proto: DeskBell + entities: + - uid: 4800 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 4812 + - type: Physics + canCollide: False + bodyType: Static + - uid: 4801 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 4812 + - type: Physics + canCollide: False + bodyType: Static + - uid: 4802 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 4812 + - type: Physics + canCollide: False + bodyType: Static + - uid: 4803 + components: + - type: Transform + pos: 15.5,16.5 + parent: 4812 + - type: Physics + canCollide: False + bodyType: Static + - uid: 4804 + components: + - type: Transform + pos: 10.5,22.5 + parent: 4812 + - type: Physics + canCollide: False + bodyType: Static + - uid: 4805 + components: + - type: Transform + pos: -24.5,11.5 + parent: 4812 + - type: Physics + canCollide: False + bodyType: Static +- proto: DiceBag + entities: + - uid: 4561 + components: + - type: Transform + pos: 27.529026,-5.5177865 + parent: 4812 + - uid: 7137 + components: + - type: Transform + pos: -27.959236,-14.350061 + parent: 4812 +- proto: DiseaseDiagnoser + entities: + - uid: 9018 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 4812 +- proto: DisposalBend + entities: + - uid: 1105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 4812 + - uid: 1119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 4812 + - uid: 1120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 4812 + - uid: 1575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 4812 + - uid: 1576 + components: + - type: Transform + pos: 3.5,2.5 + parent: 4812 + - uid: 1602 + components: + - type: Transform + pos: -2.5,11.5 + parent: 4812 + - uid: 1607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 4812 + - uid: 1636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 4812 + - uid: 1705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 4812 + - uid: 3292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 4812 + - uid: 3343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 4812 + - uid: 3387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-8.5 + parent: 4812 + - uid: 3409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 4812 + - uid: 4505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 4812 + - uid: 5862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-24.5 + parent: 4812 + - uid: 5883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-24.5 + parent: 4812 + - uid: 5887 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 4812 + - uid: 5896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 4812 + - uid: 6432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-35.5 + parent: 4812 + - uid: 7590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 4812 + - uid: 7591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-21.5 + parent: 4812 + - uid: 9012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-37.5 + parent: 4812 + - uid: 10781 + components: + - type: Transform + pos: -33.5,1.5 + parent: 4812 + - uid: 10804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-11.5 + parent: 4812 + - uid: 10811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,14.5 + parent: 4812 + - uid: 10816 + components: + - type: Transform + pos: -23.5,14.5 + parent: 4812 + - uid: 10817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,7.5 + parent: 4812 + - uid: 10818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 4812 + - uid: 10843 + components: + - type: Transform + pos: -20.5,1.5 + parent: 4812 + - uid: 11224 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 4812 +- proto: DisposalJunction + entities: + - uid: 1700 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 4812 + - uid: 3211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 4812 + - uid: 3299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 4812 + - uid: 5849 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 4812 + - uid: 5891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 4812 + - uid: 10795 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 4812 +- proto: DisposalJunctionFlipped + entities: + - uid: 1585 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 4812 + - uid: 1586 + components: + - type: Transform + pos: -2.5,2.5 + parent: 4812 + - uid: 1614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 4812 + - uid: 1615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 4812 + - uid: 1634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 4812 + - uid: 3982 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 4812 + - uid: 5848 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 4812 + - uid: 10831 + components: + - type: Transform + pos: -25.5,1.5 + parent: 4812 +- proto: DisposalPipe + entities: + - uid: 1106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 4812 + - uid: 1107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 4812 + - uid: 1108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 4812 + - uid: 1109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 4812 + - uid: 1110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 4812 + - uid: 1111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 4812 + - uid: 1112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 4812 + - uid: 1113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 4812 + - uid: 1114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 4812 + - uid: 1115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 4812 + - uid: 1116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 4812 + - uid: 1117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 4812 + - uid: 1118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 4812 + - uid: 1122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 4812 + - uid: 1123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 4812 + - uid: 1577 + components: + - type: Transform + pos: 3.5,1.5 + parent: 4812 + - uid: 1578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 4812 + - uid: 1579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 4812 + - uid: 1580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 4812 + - uid: 1581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 4812 + - uid: 1582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 4812 + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 4812 + - uid: 1584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 4812 + - uid: 1587 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 4812 + - uid: 1588 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 4812 + - uid: 1589 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 4812 + - uid: 1590 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 4812 + - uid: 1592 + components: + - type: Transform + pos: -2.5,0.5 + parent: 4812 + - uid: 1593 + components: + - type: Transform + pos: -2.5,1.5 + parent: 4812 + - uid: 1594 + components: + - type: Transform + pos: -2.5,3.5 + parent: 4812 + - uid: 1595 + components: + - type: Transform + pos: -2.5,4.5 + parent: 4812 + - uid: 1596 + components: + - type: Transform + pos: -2.5,5.5 + parent: 4812 + - uid: 1597 + components: + - type: Transform + pos: -2.5,6.5 + parent: 4812 + - uid: 1598 + components: + - type: Transform + pos: -2.5,7.5 + parent: 4812 + - uid: 1599 + components: + - type: Transform + pos: -2.5,8.5 + parent: 4812 + - uid: 1600 + components: + - type: Transform + pos: -2.5,9.5 + parent: 4812 + - uid: 1601 + components: + - type: Transform + pos: -2.5,10.5 + parent: 4812 + - uid: 1603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 4812 + - uid: 1604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 4812 + - uid: 1608 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 4812 + - uid: 1609 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 4812 + - uid: 1610 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 4812 + - uid: 1611 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 4812 + - uid: 1612 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 4812 + - uid: 1613 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 4812 + - uid: 1616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 4812 + - uid: 1617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 4812 + - uid: 1618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 4812 + - uid: 1619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 4812 + - uid: 1620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 4812 + - uid: 1621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 4812 + - uid: 1622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 4812 + - uid: 1623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 4812 + - uid: 1624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 4812 + - uid: 1625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 4812 + - uid: 1627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 4812 + - uid: 1628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-11.5 + parent: 4812 + - uid: 1629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 4812 + - uid: 1630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 4812 + - uid: 1631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 4812 + - uid: 1632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 4812 + - uid: 1633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 4812 + - uid: 1637 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 4812 + - uid: 1638 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 4812 + - uid: 1639 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 4812 + - uid: 1640 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 4812 + - uid: 1641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 4812 + - uid: 1701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 4812 + - uid: 1702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 4812 + - uid: 1703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 4812 + - uid: 1704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 4812 + - uid: 2941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 4812 + - uid: 3007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 4812 + - uid: 3030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,24.5 + parent: 4812 + - uid: 3145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,26.5 + parent: 4812 + - uid: 3194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,25.5 + parent: 4812 + - uid: 3207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,23.5 + parent: 4812 + - uid: 3208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,20.5 + parent: 4812 + - uid: 3209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 4812 + - uid: 3210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 4812 + - uid: 3223 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 4812 + - uid: 3227 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 4812 + - uid: 3293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,20.5 + parent: 4812 + - uid: 3294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,19.5 + parent: 4812 + - uid: 3296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,19.5 + parent: 4812 + - uid: 3297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 4812 + - uid: 3298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 4812 + - uid: 3300 + components: + - type: Transform + pos: 11.5,18.5 + parent: 4812 + - uid: 3301 + components: + - type: Transform + pos: 11.5,17.5 + parent: 4812 + - uid: 3302 + components: + - type: Transform + pos: 11.5,16.5 + parent: 4812 + - uid: 3303 + components: + - type: Transform + pos: 11.5,15.5 + parent: 4812 + - uid: 3304 + components: + - type: Transform + pos: 11.5,14.5 + parent: 4812 + - uid: 3305 + components: + - type: Transform + pos: 11.5,13.5 + parent: 4812 + - uid: 3306 + components: + - type: Transform + pos: 11.5,12.5 + parent: 4812 + - uid: 3307 + components: + - type: Transform + pos: 11.5,11.5 + parent: 4812 + - uid: 3308 + components: + - type: Transform + pos: 11.5,10.5 + parent: 4812 + - uid: 3309 + components: + - type: Transform + pos: 11.5,9.5 + parent: 4812 + - uid: 3310 + components: + - type: Transform + pos: 11.5,8.5 + parent: 4812 + - uid: 3311 + components: + - type: Transform + pos: 11.5,7.5 + parent: 4812 + - uid: 3312 + components: + - type: Transform + pos: 11.5,6.5 + parent: 4812 + - uid: 3313 + components: + - type: Transform + pos: 11.5,5.5 + parent: 4812 + - uid: 3314 + components: + - type: Transform + pos: 11.5,4.5 + parent: 4812 + - uid: 3315 + components: + - type: Transform + pos: 11.5,3.5 + parent: 4812 + - uid: 3316 + components: + - type: Transform + pos: 11.5,2.5 + parent: 4812 + - uid: 3317 + components: + - type: Transform + pos: 11.5,1.5 + parent: 4812 + - uid: 3318 + components: + - type: Transform + pos: 11.5,0.5 + parent: 4812 + - uid: 3319 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 4812 + - uid: 3321 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 4812 + - uid: 3322 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 4812 + - uid: 3323 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 4812 + - uid: 3324 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 4812 + - uid: 3325 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 4812 + - uid: 3326 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 4812 + - uid: 3327 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 4812 + - uid: 3328 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 4812 + - uid: 3329 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 4812 + - uid: 3330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 4812 + - uid: 3331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 4812 + - uid: 3332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 4812 + - uid: 3333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 4812 + - uid: 3334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 4812 + - uid: 3335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 4812 + - uid: 3336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 4812 + - uid: 3337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 4812 + - uid: 3338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 4812 + - uid: 3339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 4812 + - uid: 3340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 4812 + - uid: 3341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 4812 + - uid: 3386 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 4812 + - uid: 3388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 4812 + - uid: 3389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 4812 + - uid: 3410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 4812 + - uid: 3411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 4812 + - uid: 3419 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 4812 + - uid: 3420 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 4812 + - uid: 3457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 4812 + - uid: 3458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,29.5 + parent: 4812 + - uid: 3466 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 4812 + - uid: 4502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 4812 + - uid: 4504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,18.5 + parent: 4812 + - uid: 4506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 4812 + - uid: 4507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 4812 + - uid: 4508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 4812 + - uid: 4509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 4812 + - uid: 4510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 4812 + - uid: 4511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 4812 + - uid: 4512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,19.5 + parent: 4812 + - uid: 4513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 4812 + - uid: 4514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 4812 + - uid: 4515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 4812 + - uid: 4516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,19.5 + parent: 4812 + - uid: 4517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 4812 + - uid: 4518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,19.5 + parent: 4812 + - uid: 4519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 4812 + - uid: 4520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,19.5 + parent: 4812 + - uid: 4521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 4812 + - uid: 5840 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 4812 + - uid: 5841 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 4812 + - uid: 5842 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 4812 + - uid: 5843 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 4812 + - uid: 5844 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 4812 + - uid: 5845 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 4812 + - uid: 5846 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 4812 + - uid: 5847 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 4812 + - uid: 5850 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 4812 + - uid: 5851 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 4812 + - uid: 5852 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 4812 + - uid: 5853 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 4812 + - uid: 5854 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 4812 + - uid: 5855 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 4812 + - uid: 5856 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 4812 + - uid: 5857 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 4812 + - uid: 5861 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 4812 + - uid: 5863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-24.5 + parent: 4812 + - uid: 5864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-24.5 + parent: 4812 + - uid: 5865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 4812 + - uid: 5866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-24.5 + parent: 4812 + - uid: 5867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 4812 + - uid: 5868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 4812 + - uid: 5869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 4812 + - uid: 5870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 4812 + - uid: 5871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-24.5 + parent: 4812 + - uid: 5872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 4812 + - uid: 5873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-24.5 + parent: 4812 + - uid: 5874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-24.5 + parent: 4812 + - uid: 5875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 4812 + - uid: 5876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-24.5 + parent: 4812 + - uid: 5877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 4812 + - uid: 5878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 4812 + - uid: 5879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 4812 + - uid: 5880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 4812 + - uid: 5881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 4812 + - uid: 5882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 4812 + - uid: 5884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-23.5 + parent: 4812 + - uid: 5885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-22.5 + parent: 4812 + - uid: 5886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-21.5 + parent: 4812 + - uid: 5888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 4812 + - uid: 5889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 4812 + - uid: 5890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 4812 + - uid: 5892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 4812 + - uid: 5893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 4812 + - uid: 5894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 4812 + - uid: 5897 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 4812 + - uid: 5898 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 4812 + - uid: 5899 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 4812 + - uid: 5900 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 4812 + - uid: 5901 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 4812 + - uid: 5902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 4812 + - uid: 5903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 4812 + - uid: 6424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 4812 + - uid: 6425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 4812 + - uid: 6426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-30.5 + parent: 4812 + - uid: 6427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-30.5 + parent: 4812 + - uid: 6428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 4812 + - uid: 6429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 4812 + - uid: 6433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 4812 + - uid: 6434 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 4812 + - uid: 6435 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 4812 + - uid: 6436 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 4812 + - uid: 6437 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 4812 + - uid: 7592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-20.5 + parent: 4812 + - uid: 7593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-19.5 + parent: 4812 + - uid: 7594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-18.5 + parent: 4812 + - uid: 7595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-17.5 + parent: 4812 + - uid: 7596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 4812 + - uid: 7597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 4812 + - uid: 7598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 4812 + - uid: 7599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 4812 + - uid: 7600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 4812 + - uid: 7601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 4812 + - uid: 7602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 4812 + - uid: 7603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 4812 + - uid: 7604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 4812 + - uid: 7619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 4812 + - uid: 9010 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 4812 + - uid: 9011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-37.5 + parent: 4812 + - uid: 10782 + components: + - type: Transform + pos: -33.5,0.5 + parent: 4812 + - uid: 10783 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 4812 + - uid: 10784 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 4812 + - uid: 10786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 4812 + - uid: 10787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 4812 + - uid: 10788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 4812 + - uid: 10789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 4812 + - uid: 10790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 4812 + - uid: 10791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 4812 + - uid: 10792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 4812 + - uid: 10793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 4812 + - uid: 10794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 4812 + - uid: 10796 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 4812 + - uid: 10797 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 4812 + - uid: 10798 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 4812 + - uid: 10799 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 4812 + - uid: 10800 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 4812 + - uid: 10801 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 4812 + - uid: 10802 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 4812 + - uid: 10803 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 4812 + - uid: 10806 + components: + - type: Transform + pos: -28.5,19.5 + parent: 4812 + - uid: 10807 + components: + - type: Transform + pos: -28.5,18.5 + parent: 4812 + - uid: 10808 + components: + - type: Transform + pos: -28.5,17.5 + parent: 4812 + - uid: 10809 + components: + - type: Transform + pos: -28.5,16.5 + parent: 4812 + - uid: 10810 + components: + - type: Transform + pos: -28.5,15.5 + parent: 4812 + - uid: 10812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,14.5 + parent: 4812 + - uid: 10813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 4812 + - uid: 10814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,14.5 + parent: 4812 + - uid: 10815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 4812 + - uid: 10819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,7.5 + parent: 4812 + - uid: 10820 + components: + - type: Transform + pos: -23.5,8.5 + parent: 4812 + - uid: 10821 + components: + - type: Transform + pos: -23.5,9.5 + parent: 4812 + - uid: 10822 + components: + - type: Transform + pos: -23.5,10.5 + parent: 4812 + - uid: 10823 + components: + - type: Transform + pos: -23.5,11.5 + parent: 4812 + - uid: 10824 + components: + - type: Transform + pos: -23.5,12.5 + parent: 4812 + - uid: 10825 + components: + - type: Transform + pos: -23.5,13.5 + parent: 4812 + - uid: 10826 + components: + - type: Transform + pos: -25.5,6.5 + parent: 4812 + - uid: 10827 + components: + - type: Transform + pos: -25.5,5.5 + parent: 4812 + - uid: 10828 + components: + - type: Transform + pos: -25.5,4.5 + parent: 4812 + - uid: 10829 + components: + - type: Transform + pos: -25.5,3.5 + parent: 4812 + - uid: 10830 + components: + - type: Transform + pos: -25.5,2.5 + parent: 4812 + - uid: 10832 + components: + - type: Transform + pos: -25.5,0.5 + parent: 4812 + - uid: 10833 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 4812 + - uid: 10834 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 4812 + - uid: 10837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,1.5 + parent: 4812 + - uid: 10838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,1.5 + parent: 4812 + - uid: 10839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,1.5 + parent: 4812 + - uid: 10840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 4812 + - uid: 10841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 4812 + - uid: 10842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 4812 + - uid: 11094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-42.5 + parent: 4812 + - uid: 11095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-42.5 + parent: 4812 + - uid: 11096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-38.5 + parent: 4812 + - uid: 11097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-34.5 + parent: 4812 + - uid: 11098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-38.5 + parent: 4812 + - uid: 11225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-30.5 + parent: 4812 + - uid: 11226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 4812 + - uid: 11227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-31.5 + parent: 4812 + - uid: 11228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-32.5 + parent: 4812 + - uid: 11229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-33.5 + parent: 4812 + - uid: 11230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-34.5 + parent: 4812 + - uid: 11231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-35.5 + parent: 4812 + - uid: 11232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-36.5 + parent: 4812 + - uid: 11233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-37.5 + parent: 4812 + - uid: 12401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,33.5 + parent: 4812 + - uid: 12405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,34.5 + parent: 4812 + - uid: 12406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,35.5 + parent: 4812 + - uid: 12407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,36.5 + parent: 4812 + - uid: 12408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,37.5 + parent: 4812 + - uid: 12409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,38.5 + parent: 4812 + - uid: 12410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,39.5 + parent: 4812 + - uid: 12411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,40.5 + parent: 4812 + - uid: 12412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,41.5 + parent: 4812 + - uid: 12413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,42.5 + parent: 4812 + - uid: 12414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,43.5 + parent: 4812 +- proto: DisposalTrunk + entities: + - uid: 1104 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 4812 + - uid: 1121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 4812 + - uid: 1573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 4812 + - uid: 1574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 4812 + - uid: 1591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 4812 + - uid: 1605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 4812 + - uid: 1606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 4812 + - uid: 1635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 4812 + - uid: 3144 + components: + - type: Transform + pos: 15.5,31.5 + parent: 4812 + - uid: 3291 + components: + - type: Transform + pos: 17.5,21.5 + parent: 4812 + - uid: 3408 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 4812 + - uid: 4501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 4812 + - uid: 4503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 4812 + - uid: 5860 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 4812 + - uid: 5895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 4812 + - uid: 6431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 4812 + - uid: 7589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 4812 + - uid: 7617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-13.5 + parent: 4812 + - uid: 9009 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 4812 + - uid: 9013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-37.5 + parent: 4812 + - uid: 10780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,1.5 + parent: 4812 + - uid: 10805 + components: + - type: Transform + pos: -28.5,20.5 + parent: 4812 + - uid: 10836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 4812 + - uid: 11084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-42.5 + parent: 4812 + - uid: 11085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-38.5 + parent: 4812 + - uid: 11086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-34.5 + parent: 4812 + - uid: 11087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 4812 + - uid: 11088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-42.5 + parent: 4812 + - uid: 11089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-42.5 + parent: 4812 + - uid: 11090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-38.5 + parent: 4812 + - uid: 11091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-34.5 + parent: 4812 + - uid: 11092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 4812 + - uid: 11093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-42.5 + parent: 4812 + - uid: 11234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-38.5 + parent: 4812 + - uid: 12403 + components: + - type: Transform + pos: 6.5,44.5 + parent: 4812 + - uid: 12404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,32.5 + parent: 4812 +- proto: DisposalUnit + entities: + - uid: 921 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 4812 + - uid: 922 + components: + - type: Transform + pos: -5.5,11.5 + parent: 4812 + - uid: 1083 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 4812 + - uid: 1084 + components: + - type: MetaData + desc: Sends stuff to kitchen. + name: kitchen mail tube + - type: Transform + pos: -9.5,-5.5 + parent: 4812 + - uid: 1483 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 4812 + - uid: 1556 + components: + - type: Transform + pos: 2.5,0.5 + parent: 4812 + - uid: 1699 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 4812 + - uid: 1798 + components: + - type: Transform + pos: -5.5,17.5 + parent: 4812 + - uid: 3187 + components: + - type: Transform + pos: 15.5,31.5 + parent: 4812 + - uid: 3290 + components: + - type: Transform + pos: 17.5,21.5 + parent: 4812 + - uid: 3445 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 4812 + - uid: 4500 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 4812 + - uid: 5858 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 4812 + - uid: 5859 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 4812 + - uid: 6430 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 4812 + - uid: 6615 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 4812 + - uid: 7556 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 4812 + - uid: 7618 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 4812 + - uid: 8695 + components: + - type: Transform + pos: -28.5,20.5 + parent: 4812 + - uid: 9008 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 4812 + - uid: 9578 + components: + - type: Transform + pos: -34.5,1.5 + parent: 4812 + - uid: 10835 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 4812 + - uid: 11079 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 4812 + - uid: 11080 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 4812 + - uid: 11082 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 4812 + - uid: 11083 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 4812 + - uid: 11925 + components: + - type: Transform + pos: 6.5,32.5 + parent: 4812 + - uid: 12402 + components: + - type: Transform + pos: 6.5,44.5 + parent: 4812 +- proto: DisposalYJunction + entities: + - uid: 3320 + components: + - type: Transform + pos: 11.5,19.5 + parent: 4812 + - uid: 3342 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 4812 + - uid: 3747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 4812 + - uid: 6423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 4812 +- proto: DogBed + entities: + - uid: 2511 + components: + - type: Transform + pos: 5.5,26.5 + parent: 4812 + - uid: 2610 + components: + - type: MetaData + name: fox bed + - type: Transform + pos: -15.5,22.5 + parent: 4812 + - uid: 6646 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 4812 + - uid: 7449 + components: + - type: MetaData + name: cat bed + - type: Transform + pos: -26.5,-25.5 + parent: 4812 + - uid: 8339 + components: + - type: Transform + pos: -35.5,17.5 + parent: 4812 +- proto: DonkpocketBoxSpawner + entities: + - uid: 1571 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 4812 + - uid: 6339 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 4812 + - uid: 8429 + components: + - type: Transform + pos: -39.5,11.5 + parent: 4812 +- proto: DoorElectronics + entities: + - uid: 10716 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 4812 + - uid: 10717 + components: + - type: Transform + pos: -35.344994,-7.7000136 + parent: 4812 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 12116 + components: + - type: Transform + pos: -42.432724,-2.3473935 + parent: 4812 +- proto: Dresser + entities: + - uid: 1254 + components: + - type: Transform + pos: -17.5,5.5 + parent: 4812 + - uid: 1693 + components: + - type: Transform + pos: -7.5,0.5 + parent: 4812 + - uid: 5363 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 4812 + - uid: 7035 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 4812 + - uid: 9046 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 4812 +- proto: DresserCaptainFilled + entities: + - uid: 7064 + components: + - type: Transform + pos: -12.5,29.5 + parent: 4812 +- proto: DresserChiefEngineerFilled + entities: + - uid: 12479 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 4812 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 7461 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 4812 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 7455 + components: + - type: Transform + pos: 7.5,29.5 + parent: 4812 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 7456 + components: + - type: Transform + pos: -23.5,28.5 + parent: 4812 +- proto: DresserQuarterMasterFilled + entities: + - uid: 12476 + components: + - type: Transform + pos: 16.5,35.5 + parent: 4812 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 1717 + components: + - type: Transform + pos: -10.737676,0.038593292 + parent: 4812 +- proto: DrinkBottleVodka + entities: + - uid: 11783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.922853,-32.796886 + parent: 4812 +- proto: DrinkCoffee + entities: + - uid: 1777 + components: + - type: Transform + pos: -2.4777098,-4.2682357 + parent: 4812 +- proto: DrinkColaBottleFull + entities: + - uid: 1780 + components: + - type: Transform + pos: -2.3527098,-2.4557357 + parent: 4812 +- proto: DrinkDetFlask + entities: + - uid: 11806 + components: + - type: Transform + pos: -14.221141,-0.49929333 + parent: 4812 + - uid: 11807 + components: + - type: Transform + pos: 18.44514,-15.833292 + parent: 4812 +- proto: DrinkFlask + entities: + - uid: 2590 + components: + - type: Transform + pos: -13.404404,27.48132 + parent: 4812 +- proto: DrinkFlaskOld + entities: + - uid: 2536 + components: + - type: Transform + pos: 5.505315,29.475674 + parent: 4812 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 2714 + components: + - type: Transform + pos: -5.405396,24.535454 + parent: 4812 +- proto: DrinkGoldenCup + entities: + - uid: 2713 + components: + - type: Transform + pos: -5.608521,24.832329 + parent: 4812 +- proto: DrinkHotCoffee + entities: + - uid: 6308 + components: + - type: Transform + pos: 25.471973,-18.414967 + parent: 4812 +- proto: DrinkIcedTeaCan + entities: + - uid: 12372 + components: + - type: Transform + pos: 4.93781,-34.192295 + parent: 4812 +- proto: DrinkLemonLimeCan + entities: + - uid: 1768 + components: + - type: Transform + pos: -2.4722648,6.6801405 + parent: 4812 +- proto: DrinkLithiumFlask + entities: + - uid: 3611 + components: + - type: Transform + pos: -18.350801,33.411205 + parent: 4812 + - uid: 12466 + components: + - type: Transform + pos: -18.56759,33.562008 + parent: 4812 +- proto: DrinkMugBlack + entities: + - uid: 10761 + components: + - type: Transform + pos: -42.456604,-7.331287 + parent: 4812 +- proto: DrinkMugDog + entities: + - uid: 1771 + components: + - type: Transform + pos: -2.4722648,3.4643836 + parent: 4812 +- proto: DrinkMugHeart + entities: + - uid: 10763 + components: + - type: Transform + pos: -41.78473,-7.362537 + parent: 4812 +- proto: DrinkMugMetal + entities: + - uid: 3278 + components: + - type: Transform + pos: 22.59246,12.58923 + parent: 4812 + - uid: 8435 + components: + - type: Transform + pos: -38.614426,12.463839 + parent: 4812 + - uid: 10760 + components: + - type: Transform + pos: -42.56598,-7.518787 + parent: 4812 +- proto: DrinkMugOne + entities: + - uid: 10762 + components: + - type: Transform + pos: -42.25348,-7.487537 + parent: 4812 +- proto: DrinkMugRed + entities: + - uid: 8434 + components: + - type: Transform + pos: -38.3488,12.713839 + parent: 4812 +- proto: DrinkShaker + entities: + - uid: 1654 + components: + - type: Transform + pos: 5.357094,8.658001 + parent: 4812 +- proto: DrinkShinyFlask + entities: + - uid: 8436 + components: + - type: Transform + pos: -36.520676,15.807589 + parent: 4812 +- proto: DrinkVodkaBottleFull + entities: + - uid: 11781 + components: + - type: Transform + pos: 28.500978,-32.265636 + parent: 4812 + - uid: 11782 + components: + - type: Transform + pos: 28.688478,-32.453136 + parent: 4812 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 11845 + components: + - type: Transform + pos: -7.6193094,12.673876 + parent: 4812 +- proto: DrinkWineBottleFull + entities: + - uid: 7041 + components: + - type: Transform + pos: -13.459903,-33.042583 + parent: 4812 +- proto: ElectricGuitarInstrument + entities: + - uid: 1720 + components: + - type: Transform + pos: -10.472051,-1.3051567 + parent: 4812 +- proto: EmergencyLight + entities: + - uid: 8416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-23.5 + parent: 4812 + - uid: 12093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 4812 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,33.5 + parent: 4812 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12095 + components: + - type: Transform + pos: 10.5,50.5 + parent: 4812 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 4812 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 4812 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 4812 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-40.5 + parent: 4812 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 4812 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,18.5 + parent: 4812 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 12104 + components: + - type: Transform + pos: -30.5,32.5 + parent: 4812 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight +- proto: EncryptionKeyCargo + entities: + - uid: 4992 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 4991 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 6663 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 6662 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 7268 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 7267 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 7291 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 7290 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedicalScience + entities: + - uid: 331 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 330 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 7248 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 7247 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 7269 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 7267 + - type: Physics + canCollide: False +- proto: ExosuitFabricator + entities: + - uid: 12387 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 4812 +- proto: ExplosivesSignMed + entities: + - uid: 10749 + components: + - type: Transform + pos: -33.5,6.5 + parent: 4812 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 11839 + components: + - type: Transform + pos: -6.4474344,14.517626 + parent: 4812 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 1513 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 4812 + - uid: 3270 + components: + - type: Transform + pos: 24.5,17.5 + parent: 4812 + - uid: 4499 + components: + - type: Transform + pos: 10.5,13.5 + parent: 4812 + - uid: 4523 + components: + - type: Transform + pos: 4.5,23.5 + parent: 4812 + - uid: 4524 + components: + - type: Transform + pos: 4.5,30.5 + parent: 4812 + - uid: 4584 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 4812 + - uid: 6485 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 4812 + - uid: 7032 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 4812 + - uid: 7417 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 4812 + - uid: 7418 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 4812 + - uid: 7429 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 4812 + - uid: 8330 + components: + - type: Transform + pos: -21.5,17.5 + parent: 4812 + - uid: 8602 + components: + - type: Transform + pos: -18.5,13.5 + parent: 4812 + - uid: 10710 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 4812 + - uid: 10711 + components: + - type: Transform + pos: -40.5,7.5 + parent: 4812 +- proto: FaxMachineBase + entities: + - uid: 2493 + components: + - type: Transform + pos: 20.5,21.5 + parent: 4812 + - type: FaxMachine + name: Cargo + - uid: 3736 + components: + - type: Transform + pos: -19.5,22.5 + parent: 4812 + - type: FaxMachine + name: HoS Office + - uid: 4856 + components: + - type: Transform + pos: 17.5,31.5 + parent: 4812 + - type: FaxMachine + name: QM's Office + - uid: 4990 + components: + - type: Transform + pos: -6.5,34.5 + parent: 4812 + - type: FaxMachine + name: Bridge + - uid: 7216 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 4812 + - type: FaxMachine + name: Arrivals Secpost + - uid: 7230 + components: + - type: Transform + pos: 6.5,24.5 + parent: 4812 + - type: FaxMachine + name: HoP Office + - uid: 7458 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 4812 + - type: FaxMachine + name: CMO's Office + - uid: 12428 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 4812 + - type: FaxMachine + name: Library +- proto: FaxMachineCaptain + entities: + - uid: 7298 + components: + - type: Transform + pos: -12.5,22.5 + parent: 4812 +- proto: FigureSpawner + entities: + - uid: 7145 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 4812 + - uid: 7146 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 4812 + - uid: 7147 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 4812 + - uid: 7148 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 4812 +- proto: filingCabinet + entities: + - uid: 6441 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 4812 + - uid: 8272 + components: + - type: Transform + pos: -16.5,14.5 + parent: 4812 + - uid: 11840 + components: + - type: Transform + pos: -7.5,14.5 + parent: 4812 +- proto: filingCabinetDrawer + entities: + - uid: 2514 + components: + - type: Transform + pos: 7.5,26.5 + parent: 4812 +- proto: filingCabinetTall + entities: + - uid: 3236 + components: + - type: Transform + pos: 14.5,21.5 + parent: 4812 +- proto: FireAlarm + entities: + - uid: 4961 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 4812 + - type: DeviceList + devices: + - 5039 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 4979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 4812 + - type: DeviceList + devices: + - 6621 + - 5047 + - 6553 + - 8806 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 6781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 8804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 4812 + - type: DeviceList + devices: + - 8805 + - 6621 + - 4920 + - 8838 + - 8836 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 10750 + components: + - type: Transform + pos: -29.5,6.5 + parent: 4812 + - type: DeviceList + devices: + - 12184 + - 8690 + - 10752 + - 10753 + - 10754 + - 10755 + - 10756 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 4812 + - type: DeviceList + devices: + - 12179 + - 10752 + - 10753 + - 10754 + - 10755 + - 10756 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 4812 + - type: DeviceList + devices: + - 8691 + - 8690 + - 12189 + - 12188 + - 12185 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 4812 + - type: DeviceList + devices: + - 12192 + - 8691 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 4812 + - type: DeviceList + devices: + - 6494 + - 6495 + - 12195 + - 8156 + - 8157 + - 12188 + - 12189 + - 12197 + - 12196 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 4812 + - type: DeviceList + devices: + - 12200 + - 12196 + - 12197 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,13.5 + parent: 4812 + - type: DeviceList + devices: + - 12201 + - 8156 + - 8157 + - 7784 + - 8154 + - 8155 + - 12205 + - 12204 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12207 + components: + - type: Transform + pos: -19.5,13.5 + parent: 4812 + - type: DeviceList + devices: + - 12208 + - 12204 + - 12205 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,16.5 + parent: 4812 + - type: DeviceList + devices: + - 12211 + - 12212 + - 7782 + - 7783 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,16.5 + parent: 4812 + - type: DeviceList + devices: + - 12216 + - 12212 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12221 + components: + - type: Transform + pos: -16.5,21.5 + parent: 4812 + - type: DeviceList + devices: + - 8155 + - 8154 + - 2693 + - 2695 + - 12222 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12224 + components: + - type: Transform + pos: -0.5,21.5 + parent: 4812 + - type: DeviceList + devices: + - 2693 + - 2695 + - 2782 + - 2783 + - 12225 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,25.5 + parent: 4812 + - type: DeviceList + devices: + - 12230 + - 2231 + - 1928 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 4812 + - type: DeviceList + devices: + - 12231 + - 2473 + - 2472 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 4812 + - type: DeviceList + devices: + - 12237 + - 2473 + - 2472 + - 2231 + - 1928 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,29.5 + parent: 4812 + - type: DeviceList + devices: + - 12237 + - 2473 + - 2472 + - 2231 + - 1928 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12238 + components: + - type: Transform + pos: 7.5,23.5 + parent: 4812 + - type: DeviceList + devices: + - 1927 + - 2476 + - 963 + - 12239 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12241 + components: + - type: Transform + pos: 10.5,27.5 + parent: 4812 + - type: DeviceList + devices: + - 12242 + - 1927 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12244 + components: + - type: Transform + pos: 10.5,21.5 + parent: 4812 + - type: DeviceList + devices: + - 12243 + - 2787 + - 2786 + - 2476 + - 963 + - 2783 + - 2782 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12246 + components: + - type: Transform + pos: 17.5,16.5 + parent: 4812 + - type: DeviceList + devices: + - 2922 + - 2852 + - 2853 + - 12247 + - 3257 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 4812 + - type: DeviceList + devices: + - 4122 + - 4117 + - 12251 + - 2852 + - 2853 + - 2787 + - 2786 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 4812 + - type: DeviceList + devices: + - 3257 + - 12254 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 4812 + - type: DeviceList + devices: + - 4426 + - 4423 + - 12274 + - 4122 + - 4117 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12276 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 4812 + - type: DeviceList + devices: + - 12277 + - 4424 + - 4425 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 4812 + - type: DeviceList + devices: + - 12279 + - 4425 + - 4424 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-13.5 + parent: 4812 + - type: DeviceList + devices: + - 12287 + - 4423 + - 4426 + - 6415 + - 6414 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12290 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 4812 + - type: DeviceList + devices: + - 4645 + - 4644 + - 6500 + - 6499 + - 4646 + - 4647 + - 5792 + - 6414 + - 6415 + - 12288 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12291 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 4812 + - type: DeviceList + devices: + - 6497 + - 6496 + - 12292 + - 6494 + - 6495 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-13.5 + parent: 4812 + - type: DeviceList + devices: + - 6497 + - 6496 + - 6500 + - 6499 + - 12295 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 4812 + - type: DeviceList + devices: + - 931 + - 932 + - 12300 + - 782 + - 783 + - 784 + - 349 + - 351 + - 361 + - 354 + - 353 + - 352 + - 350 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 4812 + - type: DeviceList + devices: + - 349 + - 351 + - 361 + - 354 + - 353 + - 352 + - 350 + - 12306 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12310 + components: + - type: Transform + pos: 6.5,1.5 + parent: 4812 + - type: DeviceList + devices: + - 12309 + - 782 + - 783 + - 784 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 4812 + - type: DeviceList + devices: + - 12313 + - 1940 + - 1939 + - 1938 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12314 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 4812 + - type: DeviceList + devices: + - 5308 + - 4644 + - 4645 + - 4646 + - 4647 + - 5791 + - 5793 + - 12315 + - 8783 + - 8803 + - 8779 + - 8778 + - 8711 + - 8591 + - 8758 + - 8770 + - 5028 + - 328 + - 3582 + - 2759 + - 3264 + - 6655 + - 4980 + - 7198 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12317 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 4812 + - type: DeviceList + devices: + - 12318 + - 5071 + - 5072 + - 8783 + - 8803 + - 8779 + - 8778 + - 8711 + - 8591 + - 8758 + - 8770 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-40.5 + parent: 4812 + - type: DeviceList + devices: + - 12321 + - 5072 + - 5071 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 4812 + - type: DeviceList + devices: + - 6585 + - 6584 + - 12343 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 4812 + - type: DeviceList + devices: + - 12347 + - 5791 + - 5792 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 4812 + - type: DeviceList + devices: + - 5600 + - 5599 + - 12355 + - type: AtmosDevice + joinedGrid: 4812 +- proto: FireAxeCabinetFilled + entities: + - uid: 6784 + components: + - type: Transform + pos: -40.5,6.5 + parent: 4812 +- proto: FireExtinguisher + entities: + - uid: 3677 + components: + - type: Transform + pos: 3.3851929,50.52095 + parent: 4812 + - uid: 3975 + components: + - type: Transform + pos: 3.6195679,50.3647 + parent: 4812 +- proto: Firelock + entities: + - uid: 1658 + components: + - type: Transform + pos: 4.5,6.5 + parent: 4812 +- proto: FirelockEdge + entities: + - uid: 328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 4812 + - uid: 332 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 4812 + - uid: 361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 4812 + - uid: 1097 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 4812 + - uid: 1099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 4812 + - uid: 1100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 4812 + - uid: 1932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 4812 + - uid: 2759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 4812 + - uid: 3264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 4812 + - uid: 3582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 4812 + - uid: 4980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 4812 + - uid: 4983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 4812 + - uid: 4999 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 4812 + - uid: 5000 + components: + - type: Transform + pos: -1.5,13.5 + parent: 4812 + - uid: 5001 + components: + - type: Transform + pos: -2.5,13.5 + parent: 4812 + - uid: 5002 + components: + - type: Transform + pos: -3.5,13.5 + parent: 4812 + - uid: 5028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 4812 + - uid: 6655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 4812 + - uid: 6667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 4812 + - uid: 6684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 4812 + - uid: 7191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 4812 + - uid: 7198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 4812 + - uid: 7287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 4812 + - uid: 7388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 4812 + - uid: 7391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 4812 + - uid: 8591 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 4812 + - uid: 8711 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 4812 + - uid: 8758 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 4812 + - uid: 8770 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 4812 + - uid: 8778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-34.5 + parent: 4812 + - uid: 8779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-34.5 + parent: 4812 + - uid: 8783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-34.5 + parent: 4812 + - uid: 8803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-34.5 + parent: 4812 +- proto: FirelockElectronics + entities: + - uid: 10718 + components: + - type: Transform + pos: -30.464754,-7.2781386 + parent: 4812 +- proto: FirelockGlass + entities: + - uid: 349 + components: + - type: Transform + pos: 2.5,4.5 + parent: 4812 + - uid: 350 + components: + - type: Transform + pos: 1.5,9.5 + parent: 4812 + - uid: 351 + components: + - type: Transform + pos: 3.5,4.5 + parent: 4812 + - uid: 352 + components: + - type: Transform + pos: 1.5,8.5 + parent: 4812 + - uid: 353 + components: + - type: Transform + pos: 1.5,7.5 + parent: 4812 + - uid: 354 + components: + - type: Transform + pos: 1.5,6.5 + parent: 4812 + - uid: 782 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 4812 + - uid: 783 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 4812 + - uid: 784 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 4812 + - uid: 930 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 4812 + - uid: 931 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 4812 + - uid: 932 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 4812 + - uid: 963 + components: + - type: Transform + pos: 5.5,21.5 + parent: 4812 + - uid: 1927 + components: + - type: Transform + pos: 9.5,23.5 + parent: 4812 + - uid: 1928 + components: + - type: Transform + pos: -8.5,27.5 + parent: 4812 + - uid: 1938 + components: + - type: Transform + pos: -3.5,15.5 + parent: 4812 + - uid: 1939 + components: + - type: Transform + pos: -2.5,15.5 + parent: 4812 + - uid: 1940 + components: + - type: Transform + pos: -1.5,15.5 + parent: 4812 + - uid: 1941 + components: + - type: Transform + pos: 9.5,5.5 + parent: 4812 + - uid: 1942 + components: + - type: Transform + pos: -12.5,9.5 + parent: 4812 + - uid: 1943 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 4812 + - uid: 2231 + components: + - type: Transform + pos: -7.5,27.5 + parent: 4812 + - uid: 2472 + components: + - type: Transform + pos: 3.5,27.5 + parent: 4812 + - uid: 2473 + components: + - type: Transform + pos: 2.5,27.5 + parent: 4812 + - uid: 2476 + components: + - type: Transform + pos: 9.5,21.5 + parent: 4812 + - uid: 2693 + components: + - type: Transform + pos: -9.5,19.5 + parent: 4812 + - uid: 2695 + components: + - type: Transform + pos: -9.5,20.5 + parent: 4812 + - uid: 2782 + components: + - type: Transform + pos: 4.5,19.5 + parent: 4812 + - uid: 2783 + components: + - type: Transform + pos: 4.5,20.5 + parent: 4812 + - uid: 2786 + components: + - type: Transform + pos: 11.5,16.5 + parent: 4812 + - uid: 2787 + components: + - type: Transform + pos: 12.5,16.5 + parent: 4812 + - uid: 2852 + components: + - type: Transform + pos: 13.5,14.5 + parent: 4812 + - uid: 2853 + components: + - type: Transform + pos: 13.5,15.5 + parent: 4812 + - uid: 2922 + components: + - type: Transform + pos: 21.5,15.5 + parent: 4812 + - uid: 3257 + components: + - type: Transform + pos: 15.5,16.5 + parent: 4812 + - uid: 3361 + components: + - type: Transform + pos: 12.5,25.5 + parent: 4812 + - uid: 4117 + components: + - type: Transform + pos: 12.5,0.5 + parent: 4812 + - uid: 4122 + components: + - type: Transform + pos: 11.5,0.5 + parent: 4812 + - uid: 4423 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 4812 + - uid: 4424 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 4812 + - uid: 4425 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 4812 + - uid: 4426 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 4812 + - uid: 4435 + components: + - type: Transform + pos: 28.5,1.5 + parent: 4812 + - uid: 4436 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 4812 + - uid: 4525 + components: + - type: Transform + pos: 18.5,5.5 + parent: 4812 + - uid: 4543 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 4812 + - uid: 4544 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 4812 + - uid: 4644 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 4812 + - uid: 4645 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 4812 + - uid: 4646 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 4812 + - uid: 4647 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 4812 + - uid: 4920 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 4812 + - uid: 5039 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 4812 + - uid: 5045 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 4812 + - uid: 5047 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 4812 + - uid: 5071 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 4812 + - uid: 5072 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 4812 + - uid: 5308 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 4812 + - uid: 5599 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 4812 + - uid: 5600 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 4812 + - uid: 5791 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 4812 + - uid: 5792 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 4812 + - uid: 5793 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 4812 + - uid: 6414 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 4812 + - uid: 6415 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 4812 + - uid: 6494 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 4812 + - uid: 6495 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 4812 + - uid: 6496 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 4812 + - uid: 6497 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 4812 + - uid: 6499 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 4812 + - uid: 6500 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 4812 + - uid: 6553 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 4812 + - uid: 6584 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 4812 + - uid: 6585 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 4812 + - uid: 6621 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 4812 + - uid: 6629 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 4812 + - uid: 6676 + components: + - type: Transform + pos: -7.5,31.5 + parent: 4812 + - uid: 6764 + components: + - type: Transform + pos: -8.5,31.5 + parent: 4812 + - uid: 7343 + components: + - type: Transform + pos: 1.5,29.5 + parent: 4812 + - uid: 7344 + components: + - type: Transform + pos: 2.5,31.5 + parent: 4812 + - uid: 7346 + components: + - type: Transform + pos: 3.5,31.5 + parent: 4812 + - uid: 7347 + components: + - type: Transform + pos: -6.5,29.5 + parent: 4812 + - uid: 7782 + components: + - type: Transform + pos: -26.5,12.5 + parent: 4812 + - uid: 7783 + components: + - type: Transform + pos: -25.5,12.5 + parent: 4812 + - uid: 7784 + components: + - type: Transform + pos: -24.5,11.5 + parent: 4812 + - uid: 8154 + components: + - type: Transform + pos: -23.5,15.5 + parent: 4812 + - uid: 8155 + components: + - type: Transform + pos: -22.5,15.5 + parent: 4812 + - uid: 8156 + components: + - type: Transform + pos: -26.5,6.5 + parent: 4812 + - uid: 8157 + components: + - type: Transform + pos: -25.5,6.5 + parent: 4812 + - uid: 8690 + components: + - type: Transform + pos: -30.5,0.5 + parent: 4812 + - uid: 8691 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 4812 + - uid: 10581 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 4812 + - uid: 10591 + components: + - type: Transform + pos: -39.5,-31.5 + parent: 4812 + - uid: 10592 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 4812 + - uid: 10616 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 4812 + - uid: 10617 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 4812 + - uid: 10752 + components: + - type: Transform + pos: -37.5,1.5 + parent: 4812 + - uid: 10753 + components: + - type: Transform + pos: -37.5,2.5 + parent: 4812 + - uid: 10754 + components: + - type: Transform + pos: -37.5,3.5 + parent: 4812 + - uid: 10755 + components: + - type: Transform + pos: -37.5,4.5 + parent: 4812 + - uid: 10756 + components: + - type: Transform + pos: -37.5,5.5 + parent: 4812 + - uid: 10901 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 4812 + - uid: 10902 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 4812 + - uid: 11259 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 4812 + - uid: 11364 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 4812 + - uid: 11365 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 4812 + - uid: 11793 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 4812 + - uid: 12188 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 4812 + - uid: 12189 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 4812 + - uid: 12196 + components: + - type: Transform + pos: -24.5,1.5 + parent: 4812 + - uid: 12197 + components: + - type: Transform + pos: -24.5,2.5 + parent: 4812 + - uid: 12204 + components: + - type: Transform + pos: -21.5,9.5 + parent: 4812 + - uid: 12205 + components: + - type: Transform + pos: -21.5,10.5 + parent: 4812 + - uid: 12212 + components: + - type: Transform + pos: -32.5,15.5 + parent: 4812 +- proto: Fireplace + entities: + - uid: 2581 + components: + - type: Transform + pos: -13.5,29.5 + parent: 4812 +- proto: Flash + entities: + - uid: 2679 + components: + - type: Transform + pos: -1.4420605,35.49948 + parent: 4812 + - uid: 3964 + components: + - type: Transform + pos: 11.496426,48.542255 + parent: 4812 + - uid: 6247 + components: + - type: Transform + pos: 16.572206,-27.496618 + parent: 4812 + - uid: 8451 + components: + - type: Transform + pos: -30.484182,10.599279 + parent: 4812 +- proto: FlashlightLantern + entities: + - uid: 6364 + components: + - type: Transform + pos: -42.568504,-1.8948193 + parent: 4812 + - uid: 8597 + components: + - type: Transform + pos: -19.531754,10.050615 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8598 + components: + - type: Transform + pos: -18.563004,10.206865 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11673 + components: + - type: Transform + pos: 25.480742,-40.49962 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12487 + components: + - type: Transform + pos: -42.55288,-2.0198193 + parent: 4812 + - uid: 12488 + components: + - type: Transform + pos: -32.540565,-7.207951 + parent: 4812 + - uid: 12489 + components: + - type: Transform + pos: -32.540565,-7.411076 + parent: 4812 + - uid: 12490 + components: + - type: Transform + pos: -19.610077,12.664663 + parent: 4812 + - uid: 12491 + components: + - type: Transform + pos: -19.516327,12.555288 + parent: 4812 +- proto: FlashlightSeclite + entities: + - uid: 8450 + components: + - type: Transform + pos: -28.562307,10.614904 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Floodlight + entities: + - uid: 11744 + components: + - type: Transform + pos: 19.532274,-41.53536 + parent: 4812 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: FloorDrain + entities: + - uid: 2490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,29.5 + parent: 4812 + - type: Fixtures + fixtures: {} + - uid: 2491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,30.5 + parent: 4812 + - type: Fixtures + fixtures: {} + - uid: 3383 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 4812 + - type: Fixtures + fixtures: {} + - uid: 3465 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 4812 + - type: Fixtures + fixtures: {} + - uid: 4458 + components: + - type: Transform + pos: 16.5,6.5 + parent: 4812 + - type: Fixtures + fixtures: {} + - uid: 7383 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 4812 + - type: Fixtures + fixtures: {} + - uid: 7446 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 4812 + - type: Fixtures + fixtures: {} + - uid: 8245 + components: + - type: Transform + pos: -19.5,29.5 + parent: 4812 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemGold + entities: + - uid: 10471 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11746 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11747 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11748 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11749 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11750 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11751 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11752 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11753 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11754 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11755 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11756 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11757 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11758 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11759 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11760 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11761 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11762 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11763 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11764 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11765 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11766 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11767 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11768 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11769 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11770 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11771 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 + - uid: 11772 + components: + - type: Transform + pos: -57.41745,-9.4886875 + parent: 4812 +- proto: FloorTileItemShuttleWhite + entities: + - uid: 10961 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 10962 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 10981 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12430 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12431 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12432 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12433 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12434 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12435 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12436 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12437 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12438 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12439 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12440 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12441 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12442 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12443 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12444 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12445 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12446 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12447 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12448 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12449 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12450 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12451 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12452 + components: + - type: Transform + pos: -35.581154,26.501883 + parent: 4812 + - uid: 12453 + components: + - type: Transform + pos: -35.581154,26.517508 + parent: 4812 + - uid: 12454 + components: + - type: Transform + pos: -35.581154,26.517508 + parent: 4812 + - uid: 12455 + components: + - type: Transform + pos: -35.581154,26.517508 + parent: 4812 + - uid: 12456 + components: + - type: Transform + pos: -35.581154,26.517508 + parent: 4812 +- proto: FlyAmanitaSeeds + entities: + - uid: 9620 + components: + - type: Transform + pos: -43.497864,-29.674786 + parent: 4812 +- proto: FoodBanana + entities: + - uid: 1708 + components: + - type: Transform + pos: -10.643926,0.9448434 + parent: 4812 + - uid: 1709 + components: + - type: Transform + pos: -10.425176,0.9292184 + parent: 4812 + - uid: 1710 + components: + - type: Transform + pos: -10.253301,0.8979684 + parent: 4812 +- proto: FoodBowlBigTrash + entities: + - uid: 11242 + components: + - type: Transform + pos: 10.485162,-37.493214 + parent: 4812 + - uid: 11243 + components: + - type: Transform + pos: 10.469537,-36.29009 + parent: 4812 +- proto: FoodBoxDonut + entities: + - uid: 8367 + components: + - type: Transform + pos: -26.5,10.5 + parent: 4812 +- proto: FoodBreadBaguette + entities: + - uid: 1716 + components: + - type: Transform + pos: -10.518926,-0.4614067 + parent: 4812 +- proto: FoodBreadMoldySlice + entities: + - uid: 7042 + components: + - type: Transform + pos: -18.50604,-35.186176 + parent: 4812 +- proto: FoodBurgerMime + entities: + - uid: 1721 + components: + - type: Transform + pos: -10.581426,-0.9614067 + parent: 4812 +- proto: FoodBurgerRobot + entities: + - uid: 3675 + components: + - type: Transform + pos: 5.460861,44.505184 + parent: 4812 + - uid: 11960 + components: + - type: Transform + pos: -14.514471,15.4569435 + parent: 4812 +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 10997 + components: + - type: Transform + pos: 8.455962,31.413256 + parent: 4812 +- proto: FoodCartCold + entities: + - uid: 1572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 4812 +- proto: FoodCartHot + entities: + - uid: 3952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 4812 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 1643 + components: + - type: Transform + pos: 7.2863007,0.7877493 + parent: 4812 + - uid: 1644 + components: + - type: Transform + pos: 7.4581757,0.6939993 + parent: 4812 +- proto: FoodCondimentPacketPepper + entities: + - uid: 1773 + components: + - type: Transform + pos: -2.6753898,2.5728736 + parent: 4812 + - type: RefillableSolution + solution: food + - uid: 1779 + components: + - type: Transform + pos: -2.3370848,-3.5807357 + parent: 4812 + - type: RefillableSolution + solution: food +- proto: FoodCondimentPacketSalt + entities: + - uid: 1772 + components: + - type: Transform + pos: -2.3003898,9.296319 + parent: 4812 + - type: RefillableSolution + solution: food +- proto: FoodMeatCrab + entities: + - uid: 12371 + components: + - type: MetaData + desc: name's fokkin JOE RIPPA YA DOG + name: joe rippa + - type: Transform + pos: 4.56281,-34.161045 + parent: 4812 +- proto: FoodPieBananaCream + entities: + - uid: 1711 + components: + - type: Transform + pos: -10.659551,0.5229684 + parent: 4812 + - uid: 1712 + components: + - type: Transform + pos: -10.409551,0.5073434 + parent: 4812 +- proto: FoodPizzaSassysageSlice + entities: + - uid: 10765 + components: + - type: Transform + pos: -43.00348,-7.268787 + parent: 4812 +- proto: FoodPlateTrash + entities: + - uid: 11241 + components: + - type: Transform + pos: 9.469537,-39.368214 + parent: 4812 +- proto: FoodSnackCheesie + entities: + - uid: 1775 + components: + - type: Transform + pos: -2.4566398,1.6822487 + parent: 4812 +- proto: FoodSnackChips + entities: + - uid: 1776 + components: + - type: Transform + pos: -2.4620848,-1.5182357 + parent: 4812 + - uid: 6410 + components: + - type: Transform + pos: -4.4655905,-19.449863 + parent: 4812 +- proto: FoodTartGapple + entities: + - uid: 2735 + components: + - type: Transform + pos: 0.5300851,22.660454 + parent: 4812 +- proto: Fork + entities: + - uid: 1769 + components: + - type: Transform + pos: -2.5347648,9.4457655 + parent: 4812 + - uid: 1778 + components: + - type: Transform + pos: -2.6495848,-3.5494857 + parent: 4812 +- proto: GasAnalyzer + entities: + - uid: 6318 + components: + - type: Transform + pos: 24.527384,-25.4941 + parent: 4812 + - uid: 6322 + components: + - type: Transform + pos: 24.418009,-25.447226 + parent: 4812 +- proto: GasFilter + entities: + - uid: 3737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasFilterFlipped + entities: + - uid: 9169 + components: + - type: Transform + pos: -47.5,1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9170 + components: + - type: Transform + pos: -47.5,3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9171 + components: + - type: Transform + pos: -47.5,5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9172 + components: + - type: Transform + pos: -47.5,7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9173 + components: + - type: Transform + pos: -47.5,9.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9174 + components: + - type: Transform + pos: -47.5,11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: GasMinerCarbonDioxide + entities: + - uid: 9452 + components: + - type: Transform + pos: -52.5,5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: GasMinerNitrogen + entities: + - uid: 9449 + components: + - type: Transform + pos: -52.5,1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: GasMinerOxygen + entities: + - uid: 9451 + components: + - type: Transform + pos: -52.5,3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: GasMinerWaterVapor + entities: + - uid: 9454 + components: + - type: Transform + pos: -52.5,7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: GasMixerFlipped + entities: + - uid: 8550 + components: + - type: Transform + pos: -45.5,5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 8552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 4812 + - type: GasMixer + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#03FDC3FF' + - uid: 9236 + components: + - type: Transform + pos: -45.5,8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9237 + components: + - type: Transform + pos: -45.5,10.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9247 + components: + - type: Transform + pos: -45.5,6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9261 + components: + - type: Transform + pos: -45.5,12.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: GasOutletInjector + entities: + - uid: 4002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-30.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 4445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 4446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 4478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 4479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 4497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,9.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 4826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: GasPassiveGate + entities: + - uid: 5801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-33.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPassiveVent + entities: + - uid: 862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 3817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,46.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 5596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-37.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9168 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,9.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9264 + components: + - type: Transform + pos: -47.5,14.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9494 + components: + - type: Transform + pos: -45.5,16.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9495 + components: + - type: Transform + pos: -43.5,16.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: GasPipeBend + entities: + - uid: 560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 563 + components: + - type: Transform + pos: 11.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 709 + components: + - type: Transform + pos: 12.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 856 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 4812 + - uid: 876 + components: + - type: Transform + pos: -8.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1508 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1684 + components: + - type: Transform + pos: -21.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2009 + components: + - type: Transform + pos: 3.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2055 + components: + - type: Transform + pos: 2.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2967 + components: + - type: Transform + pos: 24.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3746 + components: + - type: Transform + pos: -32.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,46.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,50.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,50.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3836 + components: + - type: Transform + pos: 9.5,50.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,50.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,45.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4204 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4213 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4227 + components: + - type: Transform + pos: 25.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5725 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5804 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-26.5 + parent: 4812 + - uid: 6783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-36.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8561 + components: + - type: Transform + pos: -18.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8953 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-33.5 + parent: 4812 + - uid: 9004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-35.5 + parent: 4812 + - uid: 9038 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 4812 + - uid: 9117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,6.5 + parent: 4812 + - uid: 9120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,8.5 + parent: 4812 + - uid: 9121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,12.5 + parent: 4812 + - uid: 9125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,10.5 + parent: 4812 + - uid: 9128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,2.5 + parent: 4812 + - uid: 9133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,4.5 + parent: 4812 + - uid: 9155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,5.5 + parent: 4812 + - uid: 9535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeFourway + entities: + - uid: 402 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 428 + components: + - type: Transform + pos: -3.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 431 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 445 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 566 + components: + - type: Transform + pos: -1.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 583 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 664 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2945 + components: + - type: Transform + pos: 19.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2960 + components: + - type: Transform + pos: 15.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2978 + components: + - type: Transform + pos: 15.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3804 + components: + - type: Transform + pos: 11.5,46.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4156 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5086 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5111 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5189 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5565 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7276 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8764 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12010 + components: + - type: Transform + pos: -49.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12011 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeStraight + entities: + - uid: 251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 368 + components: + - type: Transform + pos: -3.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 369 + components: + - type: Transform + pos: -3.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 370 + components: + - type: Transform + pos: -3.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 371 + components: + - type: Transform + pos: -3.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 372 + components: + - type: Transform + pos: -3.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 374 + components: + - type: Transform + pos: -3.5,12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 375 + components: + - type: Transform + pos: -3.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 377 + components: + - type: Transform + pos: -3.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 378 + components: + - type: Transform + pos: -3.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 379 + components: + - type: Transform + pos: -3.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 380 + components: + - type: Transform + pos: -3.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 381 + components: + - type: Transform + pos: -3.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 382 + components: + - type: Transform + pos: -3.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 383 + components: + - type: Transform + pos: -3.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 385 + components: + - type: Transform + pos: -3.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 386 + components: + - type: Transform + pos: -3.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 388 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 389 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 390 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 391 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 392 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 393 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 395 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 396 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 397 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 398 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 399 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 400 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 401 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 403 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 404 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 405 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 406 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 408 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 409 + components: + - type: Transform + pos: -1.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 410 + components: + - type: Transform + pos: -1.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 411 + components: + - type: Transform + pos: -1.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 412 + components: + - type: Transform + pos: -1.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 414 + components: + - type: Transform + pos: -1.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 415 + components: + - type: Transform + pos: -1.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 416 + components: + - type: Transform + pos: -1.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 419 + components: + - type: Transform + pos: -1.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 420 + components: + - type: Transform + pos: -1.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 421 + components: + - type: Transform + pos: -1.5,12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 422 + components: + - type: Transform + pos: -1.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 424 + components: + - type: Transform + pos: -1.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 425 + components: + - type: Transform + pos: -1.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 426 + components: + - type: Transform + pos: -1.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 427 + components: + - type: Transform + pos: -1.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 465 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 466 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 467 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 468 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 469 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 470 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 472 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 474 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 475 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 476 + components: + - type: Transform + pos: -25.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 478 + components: + - type: Transform + pos: -25.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 479 + components: + - type: Transform + pos: -25.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 480 + components: + - type: Transform + pos: -25.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 481 + components: + - type: Transform + pos: -25.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 482 + components: + - type: Transform + pos: -25.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 528 + components: + - type: Transform + pos: 11.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 529 + components: + - type: Transform + pos: 11.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 530 + components: + - type: Transform + pos: 11.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 531 + components: + - type: Transform + pos: 11.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 533 + components: + - type: Transform + pos: 11.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 534 + components: + - type: Transform + pos: 11.5,12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 535 + components: + - type: Transform + pos: 11.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 536 + components: + - type: Transform + pos: 11.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 537 + components: + - type: Transform + pos: 11.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 538 + components: + - type: Transform + pos: 11.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 541 + components: + - type: Transform + pos: 11.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 542 + components: + - type: Transform + pos: 11.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 543 + components: + - type: Transform + pos: 11.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 544 + components: + - type: Transform + pos: 11.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 545 + components: + - type: Transform + pos: 11.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 546 + components: + - type: Transform + pos: 11.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 547 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 549 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 551 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 552 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 553 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 554 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 555 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 556 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 557 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 567 + components: + - type: Transform + pos: -3.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 652 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 653 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 654 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 655 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 656 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 657 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 658 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 659 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 660 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 661 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 663 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 665 + components: + - type: Transform + pos: -26.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 667 + components: + - type: Transform + pos: -26.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 668 + components: + - type: Transform + pos: -26.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 669 + components: + - type: Transform + pos: -26.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 670 + components: + - type: Transform + pos: -26.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 671 + components: + - type: Transform + pos: -26.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 804 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 836 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 837 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1509 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1510 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1808 + components: + - type: Transform + pos: 6.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1809 + components: + - type: Transform + pos: 6.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1810 + components: + - type: Transform + pos: 8.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1811 + components: + - type: Transform + pos: 8.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1812 + components: + - type: Transform + pos: 8.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1815 + components: + - type: Transform + pos: -0.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1847 + components: + - type: Transform + pos: -1.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1848 + components: + - type: Transform + pos: -1.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1849 + components: + - type: Transform + pos: -1.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1850 + components: + - type: Transform + pos: -3.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1851 + components: + - type: Transform + pos: -3.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,29.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,29.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2436 + components: + - type: Transform + pos: -12.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2437 + components: + - type: Transform + pos: -12.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2438 + components: + - type: Transform + pos: -12.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2998 + components: + - type: Transform + pos: 16.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2999 + components: + - type: Transform + pos: 16.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3000 + components: + - type: Transform + pos: 16.5,28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3025 + components: + - type: Transform + pos: 15.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3743 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,46.5 + parent: 4812 + - uid: 3797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,46.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,46.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,46.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,46.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,46.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3805 + components: + - type: Transform + pos: 11.5,47.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3806 + components: + - type: Transform + pos: 11.5,48.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3807 + components: + - type: Transform + pos: 11.5,49.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,45.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,45.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,44.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,44.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,44.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,44.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,44.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,46.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,47.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,48.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,49.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,45.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,45.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,45.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,45.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4009 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4187 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4188 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4189 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4191 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4192 + components: + - type: Transform + pos: 30.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4207 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4208 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4228 + components: + - type: Transform + pos: 25.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4648 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4842 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4877 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4962 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4964 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4966 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4993 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5020 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5022 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5023 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5077 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5078 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5079 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5080 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5081 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5082 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5083 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5084 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5085 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5087 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5088 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5089 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5090 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5091 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5092 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5093 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5094 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5095 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5097 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5098 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5099 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5100 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5102 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5103 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5104 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5105 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5106 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5107 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5108 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5109 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5110 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5112 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5114 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5115 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5116 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5117 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5118 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5119 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5120 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5130 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5131 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5132 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5133 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5134 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5135 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5136 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5137 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5139 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5140 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5141 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5143 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5144 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5145 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5146 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5147 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5149 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5150 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5151 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5152 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5154 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5155 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5156 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5157 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5158 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5159 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5160 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5161 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5162 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5164 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5165 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5166 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5167 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5168 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5169 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5170 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5171 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5172 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5190 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5191 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5192 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5193 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5194 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5196 + components: + - type: Transform + pos: -10.5,-42.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5197 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5198 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5199 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5200 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5201 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5202 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5203 + components: + - type: Transform + pos: -10.5,-49.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5204 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5205 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5206 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5207 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5208 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5209 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5210 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5212 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5213 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5214 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5215 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5216 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5217 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5218 + components: + - type: Transform + pos: -11.5,-49.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5219 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5220 + components: + - type: Transform + pos: -10.5,-50.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5221 + components: + - type: Transform + pos: -10.5,-51.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 4812 + - uid: 5586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-30.5 + parent: 4812 + - uid: 5587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-30.5 + parent: 4812 + - uid: 5588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 4812 + - uid: 5589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-28.5 + parent: 4812 + - uid: 5590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-30.5 + parent: 4812 + - uid: 5628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5636 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5637 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5638 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5639 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5640 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5641 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5688 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5689 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5690 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5691 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5692 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5701 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5702 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5703 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5704 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5705 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5713 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5749 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5750 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5751 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6468 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6469 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6470 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6548 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6550 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6558 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6571 + components: + - type: Transform + pos: -29.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6623 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6631 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6632 + components: + - type: Transform + pos: -30.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6691 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-36.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-36.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-36.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-36.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-36.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6843 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6896 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6897 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7059 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7078 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7079 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7080 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7081 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7082 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7083 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7084 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7085 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7086 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7190 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7233 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7262 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7324 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7326 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7327 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7329 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,29.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,28.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,29.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7898 + components: + - type: Transform + pos: -35.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7899 + components: + - type: Transform + pos: -34.5,12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7900 + components: + - type: Transform + pos: -35.5,12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7901 + components: + - type: Transform + pos: -35.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7902 + components: + - type: Transform + pos: -35.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7903 + components: + - type: Transform + pos: -34.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7904 + components: + - type: Transform + pos: -34.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8225 + components: + - type: Transform + pos: -22.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8226 + components: + - type: Transform + pos: -22.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8228 + components: + - type: Transform + pos: -22.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8229 + components: + - type: Transform + pos: -22.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8230 + components: + - type: Transform + pos: -22.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8231 + components: + - type: Transform + pos: -22.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8232 + components: + - type: Transform + pos: -23.5,21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8233 + components: + - type: Transform + pos: -23.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8234 + components: + - type: Transform + pos: -23.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8235 + components: + - type: Transform + pos: -23.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8237 + components: + - type: Transform + pos: -23.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8312 + components: + - type: Transform + pos: -13.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8313 + components: + - type: Transform + pos: -13.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8314 + components: + - type: Transform + pos: -13.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8315 + components: + - type: Transform + pos: -11.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8316 + components: + - type: Transform + pos: -11.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8551 + components: + - type: Transform + pos: -45.5,11.5 + parent: 4812 + - uid: 8553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8769 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8771 + components: + - type: Transform + pos: -30.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8774 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8775 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8776 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8780 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8781 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8782 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8785 + components: + - type: Transform + pos: -33.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-36.5 + parent: 4812 + - uid: 8946 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8950 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8951 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8952 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-33.5 + parent: 4812 + - uid: 8981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-33.5 + parent: 4812 + - uid: 8983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-33.5 + parent: 4812 + - uid: 8985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-33.5 + parent: 4812 + - uid: 8986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-33.5 + parent: 4812 + - uid: 8988 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 4812 + - uid: 8989 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 4812 + - uid: 8995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-34.5 + parent: 4812 + - uid: 8996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-34.5 + parent: 4812 + - uid: 8997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-34.5 + parent: 4812 + - uid: 9000 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 4812 + - uid: 9001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-35.5 + parent: 4812 + - uid: 9002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-35.5 + parent: 4812 + - uid: 9003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-36.5 + parent: 4812 + - uid: 9036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,11.5 + parent: 4812 + - uid: 9075 + components: + - type: Transform + pos: -45.5,13.5 + parent: 4812 + - uid: 9116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,12.5 + parent: 4812 + - uid: 9118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FDC3FF' + - uid: 9119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,12.5 + parent: 4812 + - uid: 9123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FDC3FF' + - uid: 9126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,12.5 + parent: 4812 + - uid: 9127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,12.5 + parent: 4812 + - uid: 9129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FDC3FF' + - uid: 9132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FDC3FF' + - uid: 9134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,12.5 + parent: 4812 + - uid: 9135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,10.5 + parent: 4812 + - uid: 9136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,10.5 + parent: 4812 + - uid: 9137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,10.5 + parent: 4812 + - uid: 9138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,10.5 + parent: 4812 + - uid: 9146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,1.5 + parent: 4812 + - uid: 9177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,1.5 + parent: 4812 + - uid: 9178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,3.5 + parent: 4812 + - uid: 9179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,1.5 + parent: 4812 + - uid: 9180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 4812 + - uid: 9181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,5.5 + parent: 4812 + - uid: 9182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,3.5 + parent: 4812 + - uid: 9183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 4812 + - uid: 9184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,7.5 + parent: 4812 + - uid: 9185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,5.5 + parent: 4812 + - uid: 9186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,7.5 + parent: 4812 + - uid: 9187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,9.5 + parent: 4812 + - uid: 9188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,7.5 + parent: 4812 + - uid: 9189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,9.5 + parent: 4812 + - uid: 9190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,11.5 + parent: 4812 + - uid: 9191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,9.5 + parent: 4812 + - uid: 9192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,11.5 + parent: 4812 + - uid: 9205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,10.5 + parent: 4812 + - uid: 9207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,8.5 + parent: 4812 + - uid: 9208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,8.5 + parent: 4812 + - uid: 9209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,8.5 + parent: 4812 + - uid: 9210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,8.5 + parent: 4812 + - uid: 9211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,8.5 + parent: 4812 + - uid: 9213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,6.5 + parent: 4812 + - uid: 9214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,6.5 + parent: 4812 + - uid: 9215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,6.5 + parent: 4812 + - uid: 9216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,6.5 + parent: 4812 + - uid: 9217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,6.5 + parent: 4812 + - uid: 9219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,4.5 + parent: 4812 + - uid: 9220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,4.5 + parent: 4812 + - uid: 9221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,4.5 + parent: 4812 + - uid: 9222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,4.5 + parent: 4812 + - uid: 9223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,4.5 + parent: 4812 + - uid: 9225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,2.5 + parent: 4812 + - uid: 9226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,2.5 + parent: 4812 + - uid: 9227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,2.5 + parent: 4812 + - uid: 9228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,2.5 + parent: 4812 + - uid: 9229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,2.5 + parent: 4812 + - uid: 9231 + components: + - type: Transform + pos: -47.5,2.5 + parent: 4812 + - uid: 9232 + components: + - type: Transform + pos: -47.5,4.5 + parent: 4812 + - uid: 9233 + components: + - type: Transform + pos: -47.5,6.5 + parent: 4812 + - uid: 9234 + components: + - type: Transform + pos: -47.5,8.5 + parent: 4812 + - uid: 9235 + components: + - type: Transform + pos: -47.5,10.5 + parent: 4812 + - uid: 9238 + components: + - type: Transform + pos: -45.5,7.5 + parent: 4812 + - uid: 9241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,6.5 + parent: 4812 + - uid: 9246 + components: + - type: Transform + pos: -45.5,9.5 + parent: 4812 + - uid: 9249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,8.5 + parent: 4812 + - uid: 9250 + components: + - type: Transform + pos: -46.5,3.5 + parent: 4812 + - uid: 9252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,3.5 + parent: 4812 + - uid: 9253 + components: + - type: Transform + pos: -46.5,4.5 + parent: 4812 + - uid: 9255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,4.5 + parent: 4812 + - uid: 9257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,12.5 + parent: 4812 + - uid: 9259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,10.5 + parent: 4812 + - uid: 9262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,12.5 + parent: 4812 + - uid: 9263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,13.5 + parent: 4812 + - uid: 9489 + components: + - type: Transform + pos: -45.5,14.5 + parent: 4812 + - uid: 9490 + components: + - type: Transform + pos: -45.5,15.5 + parent: 4812 + - uid: 9491 + components: + - type: Transform + pos: -43.5,14.5 + parent: 4812 + - uid: 9492 + components: + - type: Transform + pos: -43.5,15.5 + parent: 4812 + - uid: 9493 + components: + - type: Transform + pos: -43.5,13.5 + parent: 4812 + - uid: 9514 + components: + - type: Transform + pos: -43.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9515 + components: + - type: Transform + pos: -43.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9516 + components: + - type: Transform + pos: -43.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FDC3FF' + - uid: 9545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11964 + components: + - type: Transform + pos: -36.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11965 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11966 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11967 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11968 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11969 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11970 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11971 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11993 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11994 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11995 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11996 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11997 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11998 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12019 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12020 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12021 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12022 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12031 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeTJunction + entities: + - uid: 373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 441 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 464 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 490 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 513 + components: + - type: Transform + pos: -0.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 523 + components: + - type: Transform + pos: 8.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 527 + components: + - type: Transform + pos: -13.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 570 + components: + - type: Transform + pos: -4.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 579 + components: + - type: Transform + pos: 6.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 632 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 642 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 645 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 651 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 679 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 704 + components: + - type: Transform + pos: -11.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 820 + components: + - type: Transform + pos: -2.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 843 + components: + - type: Transform + pos: 3.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 4812 + - uid: 870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,29.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2012 + components: + - type: Transform + pos: -5.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2018 + components: + - type: Transform + pos: 0.5,32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,33.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,29.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,23.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2994 + components: + - type: Transform + pos: 19.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3011 + components: + - type: Transform + pos: 19.5,26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3406 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3741 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3783 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3798 + components: + - type: Transform + pos: 13.5,46.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,44.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,44.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,45.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3832 + components: + - type: Transform + pos: 5.5,45.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4003 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4164 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4958 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-27.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5006 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5012 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5018 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5019 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5051 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 4812 + - uid: 5096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5113 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-32.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5163 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5188 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-42.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-41.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 4812 + - uid: 5629 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5630 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5665 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5687 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5757 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-26.5 + parent: 4812 + - uid: 6785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-26.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6818 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-34.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6834 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 4812 + - uid: 7061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 4812 + - uid: 7255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 4812 + - uid: 7308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-21.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,14.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,13.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,24.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,10.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,22.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,4.5 + parent: 4812 + - uid: 8757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8786 + components: + - type: Transform + pos: -36.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8982 + components: + - type: Transform + pos: -34.5,-33.5 + parent: 4812 + - uid: 8984 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 4812 + - uid: 8990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-36.5 + parent: 4812 + - uid: 8998 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 4812 + - uid: 8999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-35.5 + parent: 4812 + - uid: 9130 + components: + - type: Transform + pos: -38.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9152 + components: + - type: Transform + pos: -33.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,2.5 + parent: 4812 + - uid: 9536 + components: + - type: Transform + pos: -42.5,8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-12.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-11.5 + parent: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPort + entities: + - uid: 3443 + components: + - type: Transform + pos: -29.5,2.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 3467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,44.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 5594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-30.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 8839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-37.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPressurePump + entities: + - uid: 3795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,46.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4929 + components: + - type: MetaData + name: Distro Pump + - type: Transform + pos: -12.5,-25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-30.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 5584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 8773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,2.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,10.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,12.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9513 + components: + - type: Transform + pos: -43.5,12.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9543 + components: + - type: Transform + pos: -42.5,4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasThermoMachineFreezer + entities: + - uid: 859 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 5803 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 7245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9551 + components: + - type: Transform + pos: -41.5,12.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: GasThermoMachineHeater + entities: + - uid: 9552 + components: + - type: Transform + pos: -41.5,11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: GasValve + entities: + - uid: 5591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-30.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 5592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-36.5 + parent: 4812 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-0.5 + parent: 4812 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,5.5 + parent: 4812 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasVentPump + entities: + - uid: 559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 835 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 848 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 849 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1511 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1685 + components: + - type: Transform + pos: -21.5,3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,18.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1852 + components: + - type: Transform + pos: -3.5,23.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2072 + components: + - type: Transform + pos: 8.5,29.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,23.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2430 + components: + - type: Transform + pos: -13.5,28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,29.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,29.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2445 + components: + - type: Transform + pos: -5.5,34.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2446 + components: + - type: Transform + pos: 0.5,34.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,22.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,22.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2983 + components: + - type: Transform + pos: 15.5,29.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,18.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,20.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3781 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,45.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3838 + components: + - type: Transform + pos: 8.5,51.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,45.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,43.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4196 + components: + - type: Transform + pos: 30.5,3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,2.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-18.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-27.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-52.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-41.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5697 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-24.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-27.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5763 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 6416 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-13.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6461 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6471 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6554 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-27.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-35.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-36.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6842 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-26.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-20.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7380 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7856 + components: + - type: Transform + pos: -26.5,30.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,23.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,20.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,10.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7906 + components: + - type: Transform + pos: -35.5,15.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,15.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,12.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,18.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8238 + components: + - type: Transform + pos: -23.5,27.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,16.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,16.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8562 + components: + - type: Transform + pos: -18.5,11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-34.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 8992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-37.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 8993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-34.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 10757 + components: + - type: Transform + pos: -38.5,3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-13.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-12.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12030 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12032 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12037 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 858 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1853 + components: + - type: Transform + pos: -1.5,23.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2073 + components: + - type: Transform + pos: 6.5,29.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,24.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,23.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2440 + components: + - type: Transform + pos: -12.5,28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,26.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,31.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,31.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3001 + components: + - type: Transform + pos: 16.5,29.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,13.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3782 + components: + - type: Transform + pos: 10.5,20.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,44.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,43.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3815 + components: + - type: Transform + pos: 12.5,51.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,45.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4226 + components: + - type: Transform + pos: 24.5,3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4381 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4875 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5025 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-51.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-42.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-24.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5700 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-27.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5735 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-27.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-26.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-26.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-35.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-32.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6839 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-37.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-26.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-26.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-20.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7382 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7858 + components: + - type: Transform + pos: -30.5,30.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,16.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,19.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7908 + components: + - type: Transform + pos: -34.5,15.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,15.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,18.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,12.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8239 + components: + - type: Transform + pos: -22.5,27.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,22.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8307 + components: + - type: Transform + pos: -21.5,20.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,16.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-34.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-37.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-34.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 10758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12023 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-13.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12033 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12036 + components: + - type: Transform + pos: -30.5,2.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12040 + components: + - type: Transform + pos: -24.5,8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GeneratorBasic15kW + entities: + - uid: 1729 + components: + - type: Transform + pos: 14.5,44.5 + parent: 4812 +- proto: GeneratorRTG + entities: + - uid: 10946 + components: + - type: Transform + pos: -40.5,22.5 + parent: 4812 +- proto: Girder + entities: + - uid: 4142 + components: + - type: Transform + pos: 21.5,0.5 + parent: 4812 + - uid: 4143 + components: + - type: Transform + pos: 16.5,3.5 + parent: 4812 + - uid: 6634 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 4812 + - uid: 7260 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 4812 + - uid: 8872 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 4812 + - uid: 9991 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 4812 + - uid: 11065 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 4812 + - uid: 11106 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 4812 + - uid: 11107 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 4812 + - uid: 11685 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 4812 + - uid: 11687 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 4812 + - uid: 11692 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 4812 + - uid: 11847 + components: + - type: Transform + pos: -13.5,11.5 + parent: 4812 +- proto: GravityGenerator + entities: + - uid: 9889 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 4812 +- proto: Grille + entities: + - uid: 748 + components: + - type: Transform + pos: 9.5,18.5 + parent: 4812 + - uid: 749 + components: + - type: Transform + pos: 7.5,18.5 + parent: 4812 + - uid: 750 + components: + - type: Transform + pos: 5.5,18.5 + parent: 4812 + - uid: 751 + components: + - type: Transform + pos: 3.5,18.5 + parent: 4812 + - uid: 752 + components: + - type: Transform + pos: 2.5,18.5 + parent: 4812 + - uid: 753 + components: + - type: Transform + pos: 4.5,17.5 + parent: 4812 + - uid: 754 + components: + - type: Transform + pos: 4.5,16.5 + parent: 4812 + - uid: 755 + components: + - type: Transform + pos: 3.5,15.5 + parent: 4812 + - uid: 756 + components: + - type: Transform + pos: 2.5,15.5 + parent: 4812 + - uid: 757 + components: + - type: Transform + pos: 1.5,16.5 + parent: 4812 + - uid: 758 + components: + - type: Transform + pos: 1.5,17.5 + parent: 4812 + - uid: 759 + components: + - type: Transform + pos: -0.5,12.5 + parent: 4812 + - uid: 760 + components: + - type: Transform + pos: -4.5,12.5 + parent: 4812 + - uid: 761 + components: + - type: Transform + pos: -4.5,15.5 + parent: 4812 + - uid: 762 + components: + - type: Transform + pos: -0.5,15.5 + parent: 4812 + - uid: 763 + components: + - type: Transform + pos: -7.5,15.5 + parent: 4812 + - uid: 764 + components: + - type: Transform + pos: -8.5,15.5 + parent: 4812 + - uid: 765 + components: + - type: Transform + pos: -9.5,16.5 + parent: 4812 + - uid: 766 + components: + - type: Transform + pos: -9.5,17.5 + parent: 4812 + - uid: 767 + components: + - type: Transform + pos: -8.5,18.5 + parent: 4812 + - uid: 768 + components: + - type: Transform + pos: -7.5,18.5 + parent: 4812 + - uid: 769 + components: + - type: Transform + pos: -6.5,17.5 + parent: 4812 + - uid: 770 + components: + - type: Transform + pos: -6.5,16.5 + parent: 4812 + - uid: 774 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 4812 + - uid: 775 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 4812 + - uid: 776 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 4812 + - uid: 777 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 4812 + - uid: 778 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 4812 + - uid: 779 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 4812 + - uid: 780 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 4812 + - uid: 781 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 4812 + - uid: 788 + components: + - type: Transform + pos: 2.5,1.5 + parent: 4812 + - uid: 907 + components: + - type: Transform + pos: -18.5,18.5 + parent: 4812 + - uid: 908 + components: + - type: Transform + pos: -19.5,18.5 + parent: 4812 + - uid: 909 + components: + - type: Transform + pos: -21.5,14.5 + parent: 4812 + - uid: 910 + components: + - type: Transform + pos: -21.5,11.5 + parent: 4812 + - uid: 911 + components: + - type: Transform + pos: -21.5,8.5 + parent: 4812 + - uid: 912 + components: + - type: Transform + pos: -24.5,3.5 + parent: 4812 + - uid: 913 + components: + - type: Transform + pos: -24.5,4.5 + parent: 4812 + - uid: 914 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 4812 + - uid: 915 + components: + - type: Transform + pos: -24.5,0.5 + parent: 4812 + - uid: 1964 + components: + - type: Transform + pos: -10.5,26.5 + parent: 4812 + - uid: 1966 + components: + - type: Transform + pos: 7.5,27.5 + parent: 4812 + - uid: 2199 + components: + - type: Transform + pos: -6.5,30.5 + parent: 4812 + - uid: 2202 + components: + - type: Transform + pos: -6.5,28.5 + parent: 4812 + - uid: 2205 + components: + - type: Transform + pos: -4.5,27.5 + parent: 4812 + - uid: 2206 + components: + - type: Transform + pos: -2.5,27.5 + parent: 4812 + - uid: 2207 + components: + - type: Transform + pos: -0.5,27.5 + parent: 4812 + - uid: 2210 + components: + - type: Transform + pos: -9.5,32.5 + parent: 4812 + - uid: 2211 + components: + - type: Transform + pos: -9.5,34.5 + parent: 4812 + - uid: 2212 + components: + - type: Transform + pos: -9.5,35.5 + parent: 4812 + - uid: 2213 + components: + - type: Transform + pos: -8.5,35.5 + parent: 4812 + - uid: 2214 + components: + - type: Transform + pos: -6.5,35.5 + parent: 4812 + - uid: 2215 + components: + - type: Transform + pos: -6.5,36.5 + parent: 4812 + - uid: 2216 + components: + - type: Transform + pos: -5.5,36.5 + parent: 4812 + - uid: 2217 + components: + - type: Transform + pos: -3.5,36.5 + parent: 4812 + - uid: 2218 + components: + - type: Transform + pos: -2.5,36.5 + parent: 4812 + - uid: 2219 + components: + - type: Transform + pos: -1.5,36.5 + parent: 4812 + - uid: 2220 + components: + - type: Transform + pos: 0.5,36.5 + parent: 4812 + - uid: 2221 + components: + - type: Transform + pos: 1.5,36.5 + parent: 4812 + - uid: 2222 + components: + - type: Transform + pos: 1.5,35.5 + parent: 4812 + - uid: 2223 + components: + - type: Transform + pos: 3.5,35.5 + parent: 4812 + - uid: 2224 + components: + - type: Transform + pos: 4.5,35.5 + parent: 4812 + - uid: 2225 + components: + - type: Transform + pos: 4.5,34.5 + parent: 4812 + - uid: 2226 + components: + - type: Transform + pos: 6.5,33.5 + parent: 4812 + - uid: 2227 + components: + - type: Transform + pos: 6.5,23.5 + parent: 4812 + - uid: 2228 + components: + - type: Transform + pos: 8.5,23.5 + parent: 4812 + - uid: 2232 + components: + - type: Transform + pos: 4.5,24.5 + parent: 4812 + - uid: 2233 + components: + - type: Transform + pos: 4.5,26.5 + parent: 4812 + - uid: 2237 + components: + - type: Transform + pos: -9.5,22.5 + parent: 4812 + - uid: 2238 + components: + - type: Transform + pos: -9.5,24.5 + parent: 4812 + - uid: 2239 + components: + - type: Transform + pos: 8.5,27.5 + parent: 4812 + - uid: 2240 + components: + - type: Transform + pos: 5.5,27.5 + parent: 4812 + - uid: 2242 + components: + - type: Transform + pos: -12.5,30.5 + parent: 4812 + - uid: 2243 + components: + - type: Transform + pos: -11.5,30.5 + parent: 4812 + - uid: 2464 + components: + - type: Transform + pos: -12.5,26.5 + parent: 4812 + - uid: 2465 + components: + - type: Transform + pos: -13.5,26.5 + parent: 4812 + - uid: 2669 + components: + - type: Transform + pos: 1.5,30.5 + parent: 4812 + - uid: 2670 + components: + - type: Transform + pos: 1.5,28.5 + parent: 4812 + - uid: 2770 + components: + - type: Transform + pos: 18.5,31.5 + parent: 4812 + - uid: 2818 + components: + - type: Transform + pos: 16.5,36.5 + parent: 4812 + - uid: 2862 + components: + - type: Transform + pos: 16.5,28.5 + parent: 4812 + - uid: 2871 + components: + - type: Transform + pos: 19.5,22.5 + parent: 4812 + - uid: 2872 + components: + - type: Transform + pos: 21.5,21.5 + parent: 4812 + - uid: 2873 + components: + - type: Transform + pos: 21.5,19.5 + parent: 4812 + - uid: 2874 + components: + - type: Transform + pos: 14.5,22.5 + parent: 4812 + - uid: 2875 + components: + - type: Transform + pos: 13.5,17.5 + parent: 4812 + - uid: 2876 + components: + - type: Transform + pos: 13.5,19.5 + parent: 4812 + - uid: 2877 + components: + - type: Transform + pos: 13.5,13.5 + parent: 4812 + - uid: 2878 + components: + - type: Transform + pos: 14.5,16.5 + parent: 4812 + - uid: 2879 + components: + - type: Transform + pos: 16.5,16.5 + parent: 4812 + - uid: 2880 + components: + - type: Transform + pos: 18.5,16.5 + parent: 4812 + - uid: 2881 + components: + - type: Transform + pos: 20.5,16.5 + parent: 4812 + - uid: 2907 + components: + - type: Transform + pos: 25.5,13.5 + parent: 4812 + - uid: 2908 + components: + - type: Transform + pos: 25.5,15.5 + parent: 4812 + - uid: 2909 + components: + - type: Transform + pos: 21.5,13.5 + parent: 4812 + - uid: 2910 + components: + - type: Transform + pos: 23.5,17.5 + parent: 4812 + - uid: 2911 + components: + - type: Transform + pos: 26.5,16.5 + parent: 4812 + - uid: 2912 + components: + - type: Transform + pos: 27.5,16.5 + parent: 4812 + - uid: 2913 + components: + - type: Transform + pos: 28.5,16.5 + parent: 4812 + - uid: 2914 + components: + - type: Transform + pos: 28.5,15.5 + parent: 4812 + - uid: 2915 + components: + - type: Transform + pos: 28.5,13.5 + parent: 4812 + - uid: 2916 + components: + - type: Transform + pos: 28.5,12.5 + parent: 4812 + - uid: 2917 + components: + - type: Transform + pos: 27.5,12.5 + parent: 4812 + - uid: 2918 + components: + - type: Transform + pos: 26.5,12.5 + parent: 4812 + - uid: 3031 + components: + - type: Transform + pos: 18.5,30.5 + parent: 4812 + - uid: 3032 + components: + - type: Transform + pos: 19.5,29.5 + parent: 4812 + - uid: 3035 + components: + - type: Transform + pos: 22.5,23.5 + parent: 4812 + - uid: 3036 + components: + - type: Transform + pos: 22.5,26.5 + parent: 4812 + - uid: 3037 + components: + - type: Transform + pos: 20.5,29.5 + parent: 4812 + - uid: 3114 + components: + - type: Transform + pos: 21.5,26.5 + parent: 4812 + - uid: 3115 + components: + - type: Transform + pos: 23.5,26.5 + parent: 4812 + - uid: 3116 + components: + - type: Transform + pos: 22.5,29.5 + parent: 4812 + - uid: 3701 + components: + - type: Transform + pos: 10.5,54.5 + parent: 4812 + - uid: 4385 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 4812 + - uid: 4386 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 4812 + - uid: 4387 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 4812 + - uid: 4388 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 4812 + - uid: 4389 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 4812 + - uid: 4390 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 4812 + - uid: 4391 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 4812 + - uid: 4392 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 4812 + - uid: 4393 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 4812 + - uid: 4394 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 4812 + - uid: 4395 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 4812 + - uid: 4396 + components: + - type: Transform + pos: 27.5,1.5 + parent: 4812 + - uid: 4397 + components: + - type: Transform + pos: 29.5,1.5 + parent: 4812 + - uid: 4398 + components: + - type: Transform + pos: 32.5,4.5 + parent: 4812 + - uid: 4399 + components: + - type: Transform + pos: 32.5,3.5 + parent: 4812 + - uid: 4400 + components: + - type: Transform + pos: 33.5,3.5 + parent: 4812 + - uid: 4401 + components: + - type: Transform + pos: 34.5,3.5 + parent: 4812 + - uid: 4402 + components: + - type: Transform + pos: 34.5,1.5 + parent: 4812 + - uid: 4403 + components: + - type: Transform + pos: 33.5,1.5 + parent: 4812 + - uid: 4404 + components: + - type: Transform + pos: 32.5,1.5 + parent: 4812 + - uid: 4405 + components: + - type: Transform + pos: 31.5,1.5 + parent: 4812 + - uid: 4406 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 4812 + - uid: 4407 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 4812 + - uid: 4408 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 4812 + - uid: 4409 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 4812 + - uid: 4410 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 4812 + - uid: 4411 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 4812 + - uid: 4412 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 4812 + - uid: 4413 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 4812 + - uid: 4414 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 4812 + - uid: 4415 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 4812 + - uid: 4416 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 4812 + - uid: 4417 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 4812 + - uid: 4418 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 4812 + - uid: 4419 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 4812 + - uid: 4420 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 4812 + - uid: 4421 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 4812 + - uid: 4422 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 4812 + - uid: 4437 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 4812 + - uid: 4438 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 4812 + - uid: 4610 + components: + - type: Transform + pos: 28.5,7.5 + parent: 4812 + - uid: 4611 + components: + - type: Transform + pos: 29.5,7.5 + parent: 4812 + - uid: 4612 + components: + - type: Transform + pos: 30.5,7.5 + parent: 4812 + - uid: 4613 + components: + - type: Transform + pos: 32.5,7.5 + parent: 4812 + - uid: 4614 + components: + - type: Transform + pos: 33.5,7.5 + parent: 4812 + - uid: 4615 + components: + - type: Transform + pos: 26.5,9.5 + parent: 4812 + - uid: 4616 + components: + - type: Transform + pos: 26.5,8.5 + parent: 4812 + - uid: 4617 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 4812 + - uid: 4618 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 4812 + - uid: 4619 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 4812 + - uid: 4620 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 4812 + - uid: 4621 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 4812 + - uid: 4622 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 4812 + - uid: 4623 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 4812 + - uid: 4624 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 4812 + - uid: 4625 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 4812 + - uid: 4626 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 4812 + - uid: 4722 + components: + - type: Transform + pos: -12.5,-54.5 + parent: 4812 + - uid: 4723 + components: + - type: Transform + pos: -12.5,-55.5 + parent: 4812 + - uid: 4726 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 4812 + - uid: 4727 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 4812 + - uid: 4728 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 4812 + - uid: 4729 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 4812 + - uid: 4730 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 4812 + - uid: 4731 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 4812 + - uid: 4732 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 4812 + - uid: 4733 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 4812 + - uid: 4734 + components: + - type: Transform + pos: -8.5,-49.5 + parent: 4812 + - uid: 4735 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 4812 + - uid: 4740 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 4812 + - uid: 4741 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 4812 + - uid: 4742 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 4812 + - uid: 4743 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 4812 + - uid: 4744 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 4812 + - uid: 4745 + components: + - type: Transform + pos: -9.5,-42.5 + parent: 4812 + - uid: 4746 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 4812 + - uid: 4747 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 4812 + - uid: 4748 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 4812 + - uid: 4749 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 4812 + - uid: 4750 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 4812 + - uid: 4751 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 4812 + - uid: 4752 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 4812 + - uid: 4753 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 4812 + - uid: 4758 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 4812 + - uid: 4759 + components: + - type: Transform + pos: -13.5,-49.5 + parent: 4812 + - uid: 4760 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 4812 + - uid: 4761 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 4812 + - uid: 4762 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 4812 + - uid: 4763 + components: + - type: Transform + pos: -13.5,-51.5 + parent: 4812 + - uid: 4764 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 4812 + - uid: 4765 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 4812 + - uid: 4766 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 4812 + - uid: 4767 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 4812 + - uid: 4768 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 4812 + - uid: 4769 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 4812 + - uid: 4770 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 4812 + - uid: 4771 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 4812 + - uid: 4772 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 4812 + - uid: 4773 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 4812 + - uid: 4774 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 4812 + - uid: 4775 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 4812 + - uid: 4776 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 4812 + - uid: 4777 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 4812 + - uid: 4778 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 4812 + - uid: 4779 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 4812 + - uid: 4780 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 4812 + - uid: 4781 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 4812 + - uid: 4782 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 4812 + - uid: 4796 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 4812 + - uid: 4978 + components: + - type: Transform + pos: -45.5,-27.5 + parent: 4812 + - uid: 5054 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 4812 + - uid: 5055 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 4812 + - uid: 5309 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 4812 + - uid: 5310 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 4812 + - uid: 5311 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 4812 + - uid: 5343 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 4812 + - uid: 5344 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 4812 + - uid: 5345 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 4812 + - uid: 5346 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 4812 + - uid: 5347 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 4812 + - uid: 5348 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 4812 + - uid: 5349 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 4812 + - uid: 5350 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 4812 + - uid: 5351 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 4812 + - uid: 5352 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 4812 + - uid: 5353 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 4812 + - uid: 5354 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 4812 + - uid: 5355 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 4812 + - uid: 5356 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 4812 + - uid: 5357 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 4812 + - uid: 5423 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 4812 + - uid: 5424 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 4812 + - uid: 5544 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 4812 + - uid: 5545 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 4812 + - uid: 5546 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 4812 + - uid: 5547 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 4812 + - uid: 5548 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 4812 + - uid: 5549 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 4812 + - uid: 5550 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 4812 + - uid: 5551 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 4812 + - uid: 5552 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 4812 + - uid: 5553 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 4812 + - uid: 5554 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 4812 + - uid: 5570 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 4812 + - uid: 5571 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 4812 + - uid: 5572 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 4812 + - uid: 5577 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 4812 + - uid: 5578 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 4812 + - uid: 5579 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 4812 + - uid: 5601 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 4812 + - uid: 5602 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 4812 + - uid: 5603 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 4812 + - uid: 5604 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 4812 + - uid: 5605 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 4812 + - uid: 5606 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 4812 + - uid: 5607 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 4812 + - uid: 5608 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 4812 + - uid: 5609 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 4812 + - uid: 5610 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 4812 + - uid: 5611 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 4812 + - uid: 5612 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 4812 + - uid: 5613 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 4812 + - uid: 5614 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 4812 + - uid: 5615 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 4812 + - uid: 5616 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 4812 + - uid: 5617 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 4812 + - uid: 5618 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 4812 + - uid: 5622 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 4812 + - uid: 5623 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 4812 + - uid: 5624 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 4812 + - uid: 5767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 4812 + - uid: 5768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 4812 + - uid: 5806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 4812 + - uid: 5833 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 4812 + - uid: 5834 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 4812 + - uid: 5835 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 4812 + - uid: 6315 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 4812 + - uid: 6316 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 4812 + - uid: 6354 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 4812 + - uid: 6594 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 4812 + - uid: 6595 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 4812 + - uid: 6596 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 4812 + - uid: 6597 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 4812 + - uid: 6598 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 4812 + - uid: 6599 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 4812 + - uid: 6600 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 4812 + - uid: 6601 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 4812 + - uid: 6602 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 4812 + - uid: 6603 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 4812 + - uid: 6633 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 4812 + - uid: 6658 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 4812 + - uid: 6671 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 4812 + - uid: 6672 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 4812 + - uid: 6678 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 4812 + - uid: 6799 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 4812 + - uid: 6800 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 4812 + - uid: 6801 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 4812 + - uid: 6802 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 4812 + - uid: 6803 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 4812 + - uid: 6804 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 4812 + - uid: 6805 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 4812 + - uid: 6983 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 4812 + - uid: 7208 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 4812 + - uid: 7220 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 4812 + - uid: 7221 + components: + - type: Transform + pos: -14.5,-24.5 + parent: 4812 + - uid: 7222 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 4812 + - uid: 7223 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 4812 + - uid: 7224 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 4812 + - uid: 7251 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 4812 + - uid: 7258 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 4812 + - uid: 7301 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 4812 + - uid: 7330 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 4812 + - uid: 7332 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 4812 + - uid: 7340 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 4812 + - uid: 7352 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 4812 + - uid: 7404 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 4812 + - uid: 7405 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 4812 + - uid: 7432 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 4812 + - uid: 7437 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 4812 + - uid: 7438 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 4812 + - uid: 7620 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 4812 + - uid: 7915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,10.5 + parent: 4812 + - uid: 7916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,12.5 + parent: 4812 + - uid: 7917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,10.5 + parent: 4812 + - uid: 7918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,10.5 + parent: 4812 + - uid: 7919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 4812 + - uid: 7920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,13.5 + parent: 4812 + - uid: 7921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,14.5 + parent: 4812 + - uid: 7922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,17.5 + parent: 4812 + - uid: 7923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,17.5 + parent: 4812 + - uid: 7924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,16.5 + parent: 4812 + - uid: 7925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,19.5 + parent: 4812 + - uid: 7926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,20.5 + parent: 4812 + - uid: 7927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,20.5 + parent: 4812 + - uid: 7928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,29.5 + parent: 4812 + - uid: 7929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,31.5 + parent: 4812 + - uid: 7930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,33.5 + parent: 4812 + - uid: 7931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,33.5 + parent: 4812 + - uid: 7933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,33.5 + parent: 4812 + - uid: 8057 + components: + - type: Transform + pos: -35.5,18.5 + parent: 4812 + - uid: 8058 + components: + - type: Transform + pos: -33.5,18.5 + parent: 4812 + - uid: 8059 + components: + - type: Transform + pos: -32.5,19.5 + parent: 4812 + - uid: 8060 + components: + - type: Transform + pos: -32.5,20.5 + parent: 4812 + - uid: 8166 + components: + - type: Transform + pos: -20.5,21.5 + parent: 4812 + - uid: 8167 + components: + - type: Transform + pos: -21.5,21.5 + parent: 4812 + - uid: 8168 + components: + - type: Transform + pos: -23.5,21.5 + parent: 4812 + - uid: 8174 + components: + - type: Transform + pos: -21.5,26.5 + parent: 4812 + - uid: 8175 + components: + - type: Transform + pos: -23.5,26.5 + parent: 4812 + - uid: 8526 + components: + - type: Transform + pos: -23.5,37.5 + parent: 4812 + - uid: 8527 + components: + - type: Transform + pos: -22.5,37.5 + parent: 4812 + - uid: 8528 + components: + - type: Transform + pos: -11.5,32.5 + parent: 4812 + - uid: 8529 + components: + - type: Transform + pos: -11.5,33.5 + parent: 4812 + - uid: 8530 + components: + - type: Transform + pos: -15.5,37.5 + parent: 4812 + - uid: 8531 + components: + - type: Transform + pos: -14.5,37.5 + parent: 4812 + - uid: 8532 + components: + - type: Transform + pos: -11.5,35.5 + parent: 4812 + - uid: 8533 + components: + - type: Transform + pos: -11.5,36.5 + parent: 4812 + - uid: 8534 + components: + - type: Transform + pos: -12.5,37.5 + parent: 4812 + - uid: 8535 + components: + - type: Transform + pos: -11.5,37.5 + parent: 4812 + - uid: 8536 + components: + - type: Transform + pos: -10.5,37.5 + parent: 4812 + - uid: 8537 + components: + - type: Transform + pos: -9.5,37.5 + parent: 4812 + - uid: 8538 + components: + - type: Transform + pos: -6.5,38.5 + parent: 4812 + - uid: 8539 + components: + - type: Transform + pos: -5.5,38.5 + parent: 4812 + - uid: 8540 + components: + - type: Transform + pos: -0.5,38.5 + parent: 4812 + - uid: 8541 + components: + - type: Transform + pos: 0.5,38.5 + parent: 4812 + - uid: 8542 + components: + - type: Transform + pos: 1.5,38.5 + parent: 4812 + - uid: 8543 + components: + - type: Transform + pos: 2.5,38.5 + parent: 4812 + - uid: 8544 + components: + - type: Transform + pos: 0.5,43.5 + parent: 4812 + - uid: 8545 + components: + - type: Transform + pos: 0.5,42.5 + parent: 4812 + - uid: 8546 + components: + - type: Transform + pos: 0.5,41.5 + parent: 4812 + - uid: 8547 + components: + - type: Transform + pos: 10.5,37.5 + parent: 4812 + - uid: 8548 + components: + - type: Transform + pos: 8.5,33.5 + parent: 4812 + - uid: 8696 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 4812 + - uid: 8697 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 4812 + - uid: 8698 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 4812 + - uid: 8699 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 4812 + - uid: 8700 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 4812 + - uid: 8701 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 4812 + - uid: 8702 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 4812 + - uid: 8703 + components: + - type: Transform + pos: -29.5,0.5 + parent: 4812 + - uid: 8704 + components: + - type: Transform + pos: -31.5,0.5 + parent: 4812 + - uid: 8705 + components: + - type: Transform + pos: -27.5,2.5 + parent: 4812 + - uid: 8706 + components: + - type: Transform + pos: -27.5,3.5 + parent: 4812 + - uid: 8707 + components: + - type: Transform + pos: -27.5,4.5 + parent: 4812 + - uid: 8708 + components: + - type: Transform + pos: -35.5,1.5 + parent: 4812 + - uid: 8709 + components: + - type: Transform + pos: -35.5,3.5 + parent: 4812 + - uid: 8710 + components: + - type: Transform + pos: -35.5,5.5 + parent: 4812 + - uid: 8752 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 4812 + - uid: 8753 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 4812 + - uid: 8841 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 4812 + - uid: 8842 + components: + - type: Transform + pos: -37.5,-38.5 + parent: 4812 + - uid: 8843 + components: + - type: Transform + pos: -36.5,-38.5 + parent: 4812 + - uid: 8844 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 4812 + - uid: 8845 + components: + - type: Transform + pos: -40.5,-36.5 + parent: 4812 + - uid: 8846 + components: + - type: Transform + pos: -41.5,-36.5 + parent: 4812 + - uid: 8847 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 4812 + - uid: 9087 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 4812 + - uid: 9413 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 4812 + - uid: 9414 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 4812 + - uid: 9415 + components: + - type: Transform + pos: -48.5,0.5 + parent: 4812 + - uid: 9416 + components: + - type: Transform + pos: -48.5,1.5 + parent: 4812 + - uid: 9417 + components: + - type: Transform + pos: -48.5,2.5 + parent: 4812 + - uid: 9418 + components: + - type: Transform + pos: -48.5,3.5 + parent: 4812 + - uid: 9419 + components: + - type: Transform + pos: -48.5,4.5 + parent: 4812 + - uid: 9420 + components: + - type: Transform + pos: -48.5,5.5 + parent: 4812 + - uid: 9421 + components: + - type: Transform + pos: -48.5,6.5 + parent: 4812 + - uid: 9422 + components: + - type: Transform + pos: -48.5,7.5 + parent: 4812 + - uid: 9423 + components: + - type: Transform + pos: -48.5,8.5 + parent: 4812 + - uid: 9424 + components: + - type: Transform + pos: -48.5,9.5 + parent: 4812 + - uid: 9425 + components: + - type: Transform + pos: -48.5,10.5 + parent: 4812 + - uid: 9426 + components: + - type: Transform + pos: -48.5,11.5 + parent: 4812 + - uid: 9427 + components: + - type: Transform + pos: -48.5,12.5 + parent: 4812 + - uid: 9428 + components: + - type: Transform + pos: -48.5,13.5 + parent: 4812 + - uid: 9442 + components: + - type: Transform + pos: -50.5,11.5 + parent: 4812 + - uid: 9443 + components: + - type: Transform + pos: -50.5,9.5 + parent: 4812 + - uid: 9444 + components: + - type: Transform + pos: -50.5,7.5 + parent: 4812 + - uid: 9445 + components: + - type: Transform + pos: -50.5,5.5 + parent: 4812 + - uid: 9446 + components: + - type: Transform + pos: -50.5,3.5 + parent: 4812 + - uid: 9447 + components: + - type: Transform + pos: -50.5,1.5 + parent: 4812 + - uid: 9482 + components: + - type: Transform + pos: -46.5,16.5 + parent: 4812 + - uid: 9483 + components: + - type: Transform + pos: -46.5,17.5 + parent: 4812 + - uid: 9484 + components: + - type: Transform + pos: -45.5,15.5 + parent: 4812 + - uid: 9485 + components: + - type: Transform + pos: -44.5,15.5 + parent: 4812 + - uid: 9486 + components: + - type: Transform + pos: -43.5,15.5 + parent: 4812 + - uid: 9487 + components: + - type: Transform + pos: -42.5,16.5 + parent: 4812 + - uid: 9488 + components: + - type: Transform + pos: -42.5,17.5 + parent: 4812 + - uid: 9505 + components: + - type: Transform + pos: -47.5,13.5 + parent: 4812 + - uid: 9506 + components: + - type: Transform + pos: -46.5,13.5 + parent: 4812 + - uid: 9507 + components: + - type: Transform + pos: -45.5,13.5 + parent: 4812 + - uid: 9508 + components: + - type: Transform + pos: -44.5,13.5 + parent: 4812 + - uid: 9509 + components: + - type: Transform + pos: -43.5,13.5 + parent: 4812 + - uid: 9510 + components: + - type: Transform + pos: -42.5,13.5 + parent: 4812 + - uid: 9609 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 4812 + - uid: 9649 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 4812 + - uid: 9650 + components: + - type: Transform + pos: -12.5,-57.5 + parent: 4812 + - uid: 9653 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 4812 + - uid: 9654 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 4812 + - uid: 9832 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 4812 + - uid: 9835 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 4812 + - uid: 9861 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 4812 + - uid: 9862 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 4812 + - uid: 9871 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 4812 + - uid: 9877 + components: + - type: Transform + pos: -51.5,-13.5 + parent: 4812 + - uid: 9909 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 4812 + - uid: 9910 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 4812 + - uid: 9911 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 4812 + - uid: 9912 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 4812 + - uid: 10315 + components: + - type: Transform + pos: -56.5,-23.5 + parent: 4812 + - uid: 10316 + components: + - type: Transform + pos: -53.5,-23.5 + parent: 4812 + - uid: 10317 + components: + - type: Transform + pos: -52.5,-23.5 + parent: 4812 + - uid: 10318 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 4812 + - uid: 10319 + components: + - type: Transform + pos: -53.5,-26.5 + parent: 4812 + - uid: 10320 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 4812 + - uid: 10321 + components: + - type: Transform + pos: -54.5,-25.5 + parent: 4812 + - uid: 10371 + components: + - type: Transform + pos: -71.5,-24.5 + parent: 4812 + - uid: 10372 + components: + - type: Transform + pos: -71.5,-25.5 + parent: 4812 + - uid: 10373 + components: + - type: Transform + pos: -71.5,-26.5 + parent: 4812 + - uid: 10374 + components: + - type: Transform + pos: -69.5,-28.5 + parent: 4812 + - uid: 10375 + components: + - type: Transform + pos: -70.5,-28.5 + parent: 4812 + - uid: 10376 + components: + - type: Transform + pos: -71.5,-28.5 + parent: 4812 + - uid: 10377 + components: + - type: Transform + pos: -71.5,-20.5 + parent: 4812 + - uid: 10378 + components: + - type: Transform + pos: -71.5,-19.5 + parent: 4812 + - uid: 10379 + components: + - type: Transform + pos: -71.5,-18.5 + parent: 4812 + - uid: 10380 + components: + - type: Transform + pos: -71.5,-16.5 + parent: 4812 + - uid: 10381 + components: + - type: Transform + pos: -70.5,-16.5 + parent: 4812 + - uid: 10382 + components: + - type: Transform + pos: -69.5,-16.5 + parent: 4812 + - uid: 10383 + components: + - type: Transform + pos: -67.5,-16.5 + parent: 4812 + - uid: 10384 + components: + - type: Transform + pos: -66.5,-16.5 + parent: 4812 + - uid: 10385 + components: + - type: Transform + pos: -65.5,-16.5 + parent: 4812 + - uid: 10386 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 4812 + - uid: 10387 + components: + - type: Transform + pos: -62.5,-16.5 + parent: 4812 + - uid: 10388 + components: + - type: Transform + pos: -61.5,-16.5 + parent: 4812 + - uid: 10389 + components: + - type: Transform + pos: -67.5,-28.5 + parent: 4812 + - uid: 10390 + components: + - type: Transform + pos: -66.5,-28.5 + parent: 4812 + - uid: 10391 + components: + - type: Transform + pos: -65.5,-28.5 + parent: 4812 + - uid: 10392 + components: + - type: Transform + pos: -62.5,-28.5 + parent: 4812 + - uid: 10393 + components: + - type: Transform + pos: -61.5,-28.5 + parent: 4812 + - uid: 10394 + components: + - type: Transform + pos: -63.5,-28.5 + parent: 4812 + - uid: 10395 + components: + - type: Transform + pos: -59.5,-28.5 + parent: 4812 + - uid: 10396 + components: + - type: Transform + pos: -58.5,-28.5 + parent: 4812 + - uid: 10397 + components: + - type: Transform + pos: -57.5,-28.5 + parent: 4812 + - uid: 10398 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 4812 + - uid: 10399 + components: + - type: Transform + pos: -54.5,-28.5 + parent: 4812 + - uid: 10400 + components: + - type: Transform + pos: -53.5,-28.5 + parent: 4812 + - uid: 10401 + components: + - type: Transform + pos: -51.5,-28.5 + parent: 4812 + - uid: 10402 + components: + - type: Transform + pos: -50.5,-28.5 + parent: 4812 + - uid: 10403 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 4812 + - uid: 10411 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 4812 + - uid: 10412 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 4812 + - uid: 10413 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 4812 + - uid: 10414 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 4812 + - uid: 10415 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 4812 + - uid: 10416 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 4812 + - uid: 10440 + components: + - type: Transform + pos: -13.5,-59.5 + parent: 4812 + - uid: 10441 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 4812 + - uid: 10609 + components: + - type: Transform + pos: -47.5,-24.5 + parent: 4812 + - uid: 10632 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 4812 + - uid: 10636 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 4812 + - uid: 11216 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 4812 + - uid: 11217 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 4812 + - uid: 11218 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 4812 + - uid: 11219 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 4812 + - uid: 11220 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 4812 + - uid: 11354 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 4812 + - uid: 11355 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 4812 + - uid: 11356 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 4812 + - uid: 11390 + components: + - type: Transform + pos: 32.5,-37.5 + parent: 4812 + - uid: 11391 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 4812 + - uid: 11708 + components: + - type: Transform + pos: 53.5,-33.5 + parent: 4812 + - uid: 11709 + components: + - type: Transform + pos: 53.5,-32.5 + parent: 4812 + - uid: 11710 + components: + - type: Transform + pos: 53.5,-40.5 + parent: 4812 + - uid: 11711 + components: + - type: Transform + pos: 53.5,-39.5 + parent: 4812 + - uid: 11712 + components: + - type: Transform + pos: 53.5,-38.5 + parent: 4812 + - uid: 11713 + components: + - type: Transform + pos: 52.5,-42.5 + parent: 4812 + - uid: 11714 + components: + - type: Transform + pos: 51.5,-42.5 + parent: 4812 + - uid: 11715 + components: + - type: Transform + pos: 50.5,-42.5 + parent: 4812 + - uid: 11718 + components: + - type: Transform + pos: 46.5,-42.5 + parent: 4812 + - uid: 11719 + components: + - type: Transform + pos: 44.5,-42.5 + parent: 4812 + - uid: 11720 + components: + - type: Transform + pos: 43.5,-42.5 + parent: 4812 + - uid: 11721 + components: + - type: Transform + pos: 42.5,-42.5 + parent: 4812 + - uid: 11723 + components: + - type: Transform + pos: 39.5,-42.5 + parent: 4812 + - uid: 11724 + components: + - type: Transform + pos: 38.5,-42.5 + parent: 4812 + - uid: 11725 + components: + - type: Transform + pos: 52.5,-30.5 + parent: 4812 + - uid: 11726 + components: + - type: Transform + pos: 51.5,-30.5 + parent: 4812 + - uid: 11727 + components: + - type: Transform + pos: 50.5,-30.5 + parent: 4812 + - uid: 11728 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 4812 + - uid: 11729 + components: + - type: Transform + pos: 47.5,-30.5 + parent: 4812 + - uid: 11730 + components: + - type: Transform + pos: 46.5,-30.5 + parent: 4812 + - uid: 11731 + components: + - type: Transform + pos: 44.5,-30.5 + parent: 4812 + - uid: 11732 + components: + - type: Transform + pos: 43.5,-30.5 + parent: 4812 + - uid: 11734 + components: + - type: Transform + pos: 40.5,-30.5 + parent: 4812 + - uid: 11740 + components: + - type: Transform + pos: 18.5,-39.5 + parent: 4812 + - uid: 11741 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 4812 + - uid: 11742 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 4812 + - uid: 11743 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 4812 + - uid: 12108 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 4812 + - uid: 12121 + components: + - type: Transform + pos: -53.5,17.5 + parent: 4812 + - uid: 12122 + components: + - type: Transform + pos: -52.5,17.5 + parent: 4812 + - uid: 12123 + components: + - type: Transform + pos: -51.5,17.5 + parent: 4812 + - uid: 12124 + components: + - type: Transform + pos: -50.5,17.5 + parent: 4812 + - uid: 12125 + components: + - type: Transform + pos: -49.5,17.5 + parent: 4812 + - uid: 12126 + components: + - type: Transform + pos: -49.5,15.5 + parent: 4812 + - uid: 12127 + components: + - type: Transform + pos: -50.5,15.5 + parent: 4812 + - uid: 12128 + components: + - type: Transform + pos: -51.5,15.5 + parent: 4812 + - uid: 12129 + components: + - type: Transform + pos: -52.5,15.5 + parent: 4812 + - uid: 12130 + components: + - type: Transform + pos: -53.5,15.5 + parent: 4812 + - uid: 12131 + components: + - type: Transform + pos: -57.5,12.5 + parent: 4812 + - uid: 12132 + components: + - type: Transform + pos: -57.5,11.5 + parent: 4812 + - uid: 12133 + components: + - type: Transform + pos: -57.5,10.5 + parent: 4812 + - uid: 12134 + components: + - type: Transform + pos: -57.5,9.5 + parent: 4812 + - uid: 12135 + components: + - type: Transform + pos: -57.5,8.5 + parent: 4812 + - uid: 12136 + components: + - type: Transform + pos: -57.5,7.5 + parent: 4812 + - uid: 12137 + components: + - type: Transform + pos: -57.5,6.5 + parent: 4812 + - uid: 12138 + components: + - type: Transform + pos: -57.5,5.5 + parent: 4812 + - uid: 12139 + components: + - type: Transform + pos: -57.5,4.5 + parent: 4812 + - uid: 12140 + components: + - type: Transform + pos: -57.5,3.5 + parent: 4812 + - uid: 12141 + components: + - type: Transform + pos: -57.5,2.5 + parent: 4812 + - uid: 12142 + components: + - type: Transform + pos: -57.5,1.5 + parent: 4812 + - uid: 12143 + components: + - type: Transform + pos: -57.5,0.5 + parent: 4812 + - uid: 12416 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 4812 + - uid: 12417 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 4812 +- proto: GrilleBroken + entities: + - uid: 1544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 4812 + - uid: 9088 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 4812 + - uid: 11073 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 4812 + - uid: 11081 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 4812 + - uid: 11108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-32.5 + parent: 4812 + - uid: 11109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 4812 + - uid: 11221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-36.5 + parent: 4812 + - uid: 11222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-32.5 + parent: 4812 + - uid: 11223 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 4812 + - uid: 11707 + components: + - type: Transform + pos: 53.5,-34.5 + parent: 4812 + - uid: 11716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-30.5 + parent: 4812 + - uid: 11717 + components: + - type: Transform + pos: 45.5,-30.5 + parent: 4812 + - uid: 11722 + components: + - type: Transform + pos: 42.5,-30.5 + parent: 4812 + - uid: 11733 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 4812 + - uid: 11735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-42.5 + parent: 4812 + - uid: 11736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-42.5 + parent: 4812 + - uid: 11737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-42.5 + parent: 4812 + - uid: 11738 + components: + - type: Transform + pos: 40.5,-42.5 + parent: 4812 + - uid: 11849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 4812 + - uid: 11859 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 4812 +- proto: GunSafeRifleLecter + entities: + - uid: 4809 + components: + - type: Transform + pos: -36.5,19.5 + parent: 4812 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 10442 + components: + - type: Transform + pos: -33.5,19.5 + parent: 4812 +- proto: Handcuffs + entities: + - uid: 4865 + components: + - type: Transform + pos: 17.570036,-11.532839 + parent: 4812 + - uid: 6479 + components: + - type: Transform + pos: -2.4305947,-24.439144 + parent: 4812 + - uid: 8452 + components: + - type: Transform + pos: -30.406057,10.489904 + parent: 4812 +- proto: HandheldGPSBasic + entities: + - uid: 8590 + components: + - type: Transform + pos: -18.546284,12.521154 + parent: 4812 +- proto: HandheldHealthAnalyzer + entities: + - uid: 6246 + components: + - type: Transform + pos: 13.5409565,-28.418493 + parent: 4812 + - uid: 9027 + components: + - type: Transform + pos: -39.497536,-35.530823 + parent: 4812 +- proto: HandheldHealthAnalyzerEmpty + entities: + - uid: 3390 + components: + - type: Transform + pos: 22.465052,3.7311544 + parent: 4812 +- proto: HandheldStationMap + entities: + - uid: 7295 + components: + - type: Transform + pos: -5.5136886,26.677116 + parent: 4812 +- proto: HandLabeler + entities: + - uid: 1802 + components: + - type: Transform + pos: -4.4966984,14.507313 + parent: 4812 + - uid: 2534 + components: + - type: Transform + pos: 9.005315,26.569424 + parent: 4812 + - uid: 3369 + components: + - type: Transform + pos: 20.465384,17.498707 + parent: 4812 + - uid: 6348 + components: + - type: Transform + pos: 6.3559675,-25.44819 + parent: 4812 + - uid: 8594 + components: + - type: Transform + pos: -19.500504,10.456865 + parent: 4812 +- proto: HarmonicaInstrument + entities: + - uid: 11857 + components: + - type: Transform + pos: -29.373522,30.531204 + parent: 4812 +- proto: Hemostat + entities: + - uid: 6244 + components: + - type: Transform + pos: 13.5565815,-27.824743 + parent: 4812 +- proto: HighSecCommandLocked + entities: + - uid: 1846 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,21.5 + parent: 4812 + - uid: 3287 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,6.5 + parent: 4812 + - uid: 3688 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,45.5 + parent: 4812 + - uid: 3689 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,45.5 + parent: 4812 + - uid: 3690 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,47.5 + parent: 4812 + - uid: 9886 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-12.5 + parent: 4812 +- proto: HospitalCurtainsOpen + entities: + - uid: 3228 + components: + - type: Transform + pos: 10.5,30.5 + parent: 4812 + - uid: 3229 + components: + - type: Transform + pos: -15.5,29.5 + parent: 4812 + - uid: 3421 + components: + - type: Transform + pos: -19.5,29.5 + parent: 4812 + - uid: 3451 + components: + - type: Transform + pos: 19.5,36.5 + parent: 4812 +- proto: hydroponicsSoil + entities: + - uid: 8385 + components: + - type: Transform + pos: -32.5,29.5 + parent: 4812 + - uid: 8386 + components: + - type: Transform + pos: -32.5,30.5 + parent: 4812 + - uid: 8387 + components: + - type: Transform + pos: -32.5,31.5 + parent: 4812 + - uid: 9610 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 4812 + - uid: 9611 + components: + - type: Transform + pos: -44.5,-28.5 + parent: 4812 + - uid: 9612 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 4812 + - uid: 11285 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 4812 + - uid: 11286 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 4812 + - uid: 11287 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 4812 + - uid: 11288 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 4812 + - uid: 11289 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 4812 +- proto: HydroponicsToolClippers + entities: + - uid: 1457 + components: + - type: Transform + pos: -12.442752,-7.42547 + parent: 4812 +- proto: HydroponicsToolHatchet + entities: + - uid: 1459 + components: + - type: Transform + pos: -12.505252,-7.378595 + parent: 4812 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 1455 + components: + - type: Transform + pos: -11.520877,-7.441095 + parent: 4812 + - uid: 8407 + components: + - type: Transform + pos: -31.533045,30.44869 + parent: 4812 + - uid: 11299 + components: + - type: Transform + pos: 16.50683,-37.620907 + parent: 4812 +- proto: HydroponicsToolScythe + entities: + - uid: 1458 + components: + - type: Transform + pos: -12.458377,-7.42547 + parent: 4812 +- proto: HydroponicsToolSpade + entities: + - uid: 1456 + components: + - type: Transform + pos: -11.489627,-7.378595 + parent: 4812 + - uid: 8408 + components: + - type: Transform + pos: -31.45492,30.47994 + parent: 4812 + - uid: 9619 + components: + - type: Transform + pos: -44.466614,-28.47166 + parent: 4812 + - uid: 11298 + components: + - type: Transform + pos: 20.50683,-38.495907 + parent: 4812 +- proto: hydroponicsTray + entities: + - uid: 1063 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 4812 + - uid: 1064 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 4812 + - uid: 1065 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 4812 + - uid: 1066 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 4812 + - uid: 1067 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 4812 + - uid: 1068 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 4812 + - uid: 1069 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 4812 + - uid: 1070 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 4812 + - uid: 1071 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 4812 + - uid: 1072 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 4812 + - uid: 1073 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 4812 + - uid: 1074 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 4812 +- proto: InflatableDoorStack + entities: + - uid: 9679 + components: + - type: Transform + pos: -30.41609,4.5644865 + parent: 4812 + - uid: 9680 + components: + - type: Transform + pos: -30.41609,4.5644865 + parent: 4812 +- proto: InflatableWallStack + entities: + - uid: 9677 + components: + - type: Transform + pos: -30.681715,4.7676115 + parent: 4812 + - uid: 9678 + components: + - type: Transform + pos: -30.681715,4.7676115 + parent: 4812 +- proto: IngotGold + entities: + - uid: 2712 + components: + - type: Transform + pos: -5.483521,25.426079 + parent: 4812 +- proto: IngotGold1 + entities: + - uid: 12458 + components: + - type: Transform + pos: -38.5391,25.681717 + parent: 4812 + - uid: 12459 + components: + - type: Transform + pos: -38.5391,25.681717 + parent: 4812 + - uid: 12460 + components: + - type: Transform + pos: -38.38285,25.619217 + parent: 4812 + - uid: 12461 + components: + - type: Transform + pos: -38.2891,25.541092 + parent: 4812 +- proto: IngotSilver + entities: + - uid: 2718 + components: + - type: Transform + pos: -5.446512,23.457329 + parent: 4812 +- proto: IntercomAll + entities: + - uid: 4850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,31.5 + parent: 4812 + - uid: 4851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,23.5 + parent: 4812 +- proto: IntercomCommand + entities: + - uid: 4834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 4812 + - uid: 4847 + components: + - type: Transform + pos: 6.5,30.5 + parent: 4812 + - uid: 4848 + components: + - type: Transform + pos: 17.5,36.5 + parent: 4812 + - uid: 4853 + components: + - type: Transform + pos: -19.5,26.5 + parent: 4812 + - uid: 12324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-8.5 + parent: 4812 + - uid: 12400 + components: + - type: Transform + pos: 11.5,54.5 + parent: 4812 +- proto: IntercomCommon + entities: + - uid: 4935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-40.5 + parent: 4812 + - uid: 12391 + components: + - type: Transform + pos: -17.5,3.5 + parent: 4812 + - uid: 12392 + components: + - type: Transform + pos: 5.5,23.5 + parent: 4812 + - uid: 12393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 4812 + - uid: 12396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 4812 + - uid: 12397 + components: + - type: Transform + pos: -4.5,21.5 + parent: 4812 +- proto: IntercomEngineering + entities: + - uid: 12389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-9.5 + parent: 4812 + - uid: 12390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-0.5 + parent: 4812 +- proto: IntercomMedical + entities: + - uid: 4852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-35.5 + parent: 4812 +- proto: IntercomScience + entities: + - uid: 12394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 4812 + - uid: 12395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 4812 +- proto: IntercomSecurity + entities: + - uid: 4854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 4812 +- proto: IntercomService + entities: + - uid: 3977 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 4812 + - uid: 4232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 4812 + - uid: 4673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 4812 + - uid: 4674 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 4812 +- proto: IntercomSupply + entities: + - uid: 4849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,20.5 + parent: 4812 +- proto: JanitorialTrolley + entities: + - uid: 1489 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 4812 +- proto: JetpackMini + entities: + - uid: 3412 + components: + - type: Transform + pos: 17.49418,49.5522 + parent: 4812 +- proto: KitchenKnife + entities: + - uid: 1642 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 4812 + - uid: 10998 + components: + - type: Transform + pos: -36.20571,29.520401 + parent: 4812 +- proto: KitchenMicrowave + entities: + - uid: 1561 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 4812 + - uid: 8428 + components: + - type: Transform + pos: -39.5,12.5 + parent: 4812 + - uid: 12494 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 4812 +- proto: KitchenReagentGrinder + entities: + - uid: 1454 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 4812 + - uid: 1562 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 4812 + - uid: 6346 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 4812 + - uid: 6688 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 4812 + - uid: 9026 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 4812 +- proto: KitchenSpike + entities: + - uid: 1536 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 4812 +- proto: Lamp + entities: + - uid: 1520 + components: + - type: Transform + pos: -17.392416,-1.3091464 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2502 + components: + - type: Transform + pos: 5.335086,29.824064 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Physics + canCollide: True + - uid: 2535 + components: + - type: Transform + pos: 8.536261,24.755358 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Physics + canCollide: True + - uid: 2585 + components: + - type: Transform + pos: -10.435654,29.715694 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2723 + components: + - type: Transform + pos: -3.451921,24.866032 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Physics + canCollide: True + - uid: 5376 + components: + - type: Transform + pos: 18.64816,-16.251589 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6291 + components: + - type: Transform + pos: 25.537617,-17.441427 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6409 + components: + - type: Transform + pos: -4.3562155,-15.356113 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7077 + components: + - type: Transform + pos: -32.443592,-14.338358 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7136 + components: + - type: Transform + pos: -31.474861,-18.271936 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8265 + components: + - type: Transform + pos: -21.463991,24.553658 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9576 + components: + - type: Transform + pos: -28.432161,1.6425915 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10704 + components: + - type: Transform + pos: -28.442137,-5.370996 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LampBanana + entities: + - uid: 1706 + components: + - type: Transform + pos: -10.503301,1.611648 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LampGold + entities: + - uid: 1762 + components: + - type: Transform + pos: -10.47069,9.477556 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2589 + components: + - type: Transform + pos: -13.466904,27.76257 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8296 + components: + - type: Transform + pos: -18.397654,15.527645 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9064 + components: + - type: Transform + pos: -31.475683,-40.265636 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Lantern + entities: + - uid: 7043 + components: + - type: Transform + pos: -18.349216,-33.27696 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7149 + components: + - type: Transform + pos: -31.078482,-23.278105 + parent: 4812 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LeavesCannabis + entities: + - uid: 11295 + components: + - type: Transform + pos: 22.50683,-38.57403 + parent: 4812 +- proto: Lighter + entities: + - uid: 1759 + components: + - type: Transform + pos: -6.168007,4.498476 + parent: 4812 + - uid: 1760 + components: + - type: Transform + pos: 1.2657695,9.574495 + parent: 4812 + - uid: 11844 + components: + - type: Transform + pos: -7.3849344,12.439501 + parent: 4812 +- proto: LightReplacer + entities: + - uid: 1490 + components: + - type: Transform + pos: -23.51768,-6.333922 + parent: 4812 +- proto: LockerAtmosphericsFilled + entities: + - uid: 9570 + components: + - type: Transform + pos: -29.5,5.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9571 + components: + - type: Transform + pos: -28.5,5.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBoozeFilled + entities: + - uid: 1648 + components: + - type: Transform + pos: 5.5,9.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBotanistFilled + entities: + - uid: 1103 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerCaptainFilled + entities: + - uid: 2595 + components: + - type: Transform + pos: -10.5,28.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChemistryFilled + entities: + - uid: 6609 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChiefEngineerFilled + entities: + - uid: 9879 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 7453 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 4812 +- proto: LockerDetectiveFilled + entities: + - uid: 5362 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 2578 + components: + - type: Transform + pos: 5.5,31.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4491 + components: + - type: Transform + pos: 20.5,1.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10600 + components: + - type: Transform + pos: -47.5,-19.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10722 + components: + - type: Transform + pos: -38.5,8.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerEngineerFilled + entities: + - uid: 9719 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9720 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9721 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerEvidence + entities: + - uid: 4977 + components: + - type: Transform + pos: -29.5,24.5 + parent: 4812 + - uid: 6735 + components: + - type: Transform + pos: -27.5,24.5 + parent: 4812 + - uid: 6736 + components: + - type: Transform + pos: -28.5,24.5 + parent: 4812 + - uid: 8359 + components: + - type: Transform + pos: -31.5,18.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezer + entities: + - uid: 1538 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99966 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1563 + components: + - type: Transform + pos: 5.5,0.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7394 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 4812 +- proto: LockerFreezerVaultFilled + entities: + - uid: 3454 + components: + - type: Transform + pos: -4.5,26.5 + parent: 4812 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 2497 + components: + - type: Transform + pos: 5.5,28.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 8252 + components: + - type: Transform + pos: -21.5,28.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedical + entities: + - uid: 7328 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 4812 +- proto: LockerMedicalFilled + entities: + - uid: 7400 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 4812 + - uid: 7401 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 4812 +- proto: LockerMedicineFilled + entities: + - uid: 7427 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 4812 + - uid: 7579 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 4812 + - uid: 9021 + components: + - type: Transform + pos: -39.5,-33.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerQuarterMasterFilled + entities: + - uid: 3441 + components: + - type: Transform + pos: 15.5,34.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6765 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerResearchDirectorFilled + entities: + - uid: 6286 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 6777 + components: + - type: Transform + pos: 22.5,16.5 + parent: 4812 + - uid: 6778 + components: + - type: Transform + pos: 24.5,16.5 + parent: 4812 +- proto: LockerScienceFilled + entities: + - uid: 12495 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12496 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerSecurityFilled + entities: + - uid: 6440 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8421 + components: + - type: Transform + pos: -33.5,12.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8422 + components: + - type: Transform + pos: -35.5,12.5 + parent: 4812 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWallMedicalFilled + entities: + - uid: 7430 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 4812 +- proto: LockerWardenFilled + entities: + - uid: 8337 + components: + - type: Transform + pos: -36.5,14.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 9681 + components: + - type: Transform + pos: -28.5,3.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MachineAnomalyGenerator + entities: + - uid: 6341 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 4812 +- proto: MachineAnomalyVessel + entities: + - uid: 6360 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 4812 +- proto: MachineAPE + entities: + - uid: 6338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-28.5 + parent: 4812 + - uid: 6359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-28.5 + parent: 4812 +- proto: MachineArtifactAnalyzer + entities: + - uid: 6319 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6313 +- proto: MachineCentrifuge + entities: + - uid: 3403 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 4812 +- proto: MachineElectrolysisUnit + entities: + - uid: 2710 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 4812 +- proto: MachineFrame + entities: + - uid: 5048 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 4812 + - uid: 7197 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 4812 +- proto: MachineFrameDestroyed + entities: + - uid: 11661 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 4812 +- proto: MaintenanceFluffSpawner + entities: + - uid: 278 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 4812 + - uid: 1532 + components: + - type: Transform + pos: -18.5,5.5 + parent: 4812 + - uid: 4601 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 4812 + - uid: 4607 + components: + - type: Transform + pos: 16.5,11.5 + parent: 4812 + - uid: 7132 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 4812 + - uid: 9065 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 4812 + - uid: 10604 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 4812 + - uid: 10605 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 4812 + - uid: 10879 + components: + - type: Transform + pos: -33.5,8.5 + parent: 4812 + - uid: 11467 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 4812 + - uid: 11914 + components: + - type: Transform + pos: 4.5,12.5 + parent: 4812 +- proto: MaintenancePlantSpawner + entities: + - uid: 10549 + components: + - type: Transform + pos: -13.5,13.5 + parent: 4812 + - uid: 10585 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 4812 + - uid: 10586 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 4812 +- proto: MaintenanceToolSpawner + entities: + - uid: 4608 + components: + - type: Transform + pos: 17.5,11.5 + parent: 4812 + - uid: 10904 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 4812 + - uid: 12464 + components: + - type: Transform + pos: -37.5,25.5 + parent: 4812 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 4609 + components: + - type: Transform + pos: 19.5,7.5 + parent: 4812 + - uid: 9081 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 4812 + - uid: 12425 + components: + - type: Transform + pos: -53.5,-18.5 + parent: 4812 +- proto: Matchbox + entities: + - uid: 1761 + components: + - type: Transform + pos: 1.5470195,6.5276203 + parent: 4812 + - uid: 2736 + components: + - type: Transform + pos: -2.4627259,28.584373 + parent: 4812 +- proto: MaterialCloth + entities: + - uid: 2538 + components: + - type: Transform + pos: 8.4956045,29.699007 + parent: 4812 +- proto: MaterialDiamond1 + entities: + - uid: 2731 + components: + - type: Transform + pos: 0.5144601,26.613579 + parent: 4812 +- proto: MaterialDurathread + entities: + - uid: 2539 + components: + - type: Transform + pos: 8.48969,29.428799 + parent: 4812 +- proto: MaterialReclaimer + entities: + - uid: 4807 + components: + - type: Transform + pos: 20.5,19.5 + parent: 4812 +- proto: MaterialWoodPlank + entities: + - uid: 8415 + components: + - type: Transform + pos: -49.460716,-16.464205 + parent: 4812 +- proto: MatterBinStockPart + entities: + - uid: 6200 + components: + - type: Transform + pos: 7.405039,-15.314831 + parent: 4812 + - uid: 6201 + components: + - type: Transform + pos: 7.701914,-15.330456 + parent: 4812 +- proto: MedicalBed + entities: + - uid: 7572 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 4812 + - uid: 7573 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 4812 + - uid: 9034 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 4812 +- proto: MedicalTechFab + entities: + - uid: 7398 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 4812 +- proto: MedkitAdvancedFilled + entities: + - uid: 7460 + components: + - type: Transform + pos: -24.550219,-27.2501 + parent: 4812 +- proto: MedkitBruteFilled + entities: + - uid: 7407 + components: + - type: Transform + pos: -10.646522,-25.180182 + parent: 4812 +- proto: MedkitBurnFilled + entities: + - uid: 4535 + components: + - type: Transform + pos: 13.526362,-0.44057345 + parent: 4812 + - uid: 7408 + components: + - type: Transform + pos: -10.521522,-25.336432 + parent: 4812 +- proto: MedkitCombatFilled + entities: + - uid: 7459 + components: + - type: Transform + pos: -24.393969,-27.453224 + parent: 4812 +- proto: MedkitFilled + entities: + - uid: 2678 + components: + - type: Transform + pos: -8.488935,34.56198 + parent: 4812 +- proto: MedkitToxinFilled + entities: + - uid: 7409 + components: + - type: Transform + pos: -10.318397,-25.523932 + parent: 4812 +- proto: MicroManipulatorStockPart + entities: + - uid: 6202 + components: + - type: Transform + pos: 7.436289,-15.783581 + parent: 4812 + - uid: 6203 + components: + - type: Transform + pos: 7.623789,-15.783581 + parent: 4812 + - uid: 6204 + components: + - type: Transform + pos: 7.811289,-15.783581 + parent: 4812 +- proto: MicrophoneInstrument + entities: + - uid: 12381 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 9099 + - type: Physics + canCollide: False +- proto: MinimoogInstrument + entities: + - uid: 9054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-39.5 + parent: 4812 +- proto: Mirror + entities: + - uid: 3716 + components: + - type: Transform + pos: 20.5,35.5 + parent: 4812 + - uid: 3788 + components: + - type: Transform + pos: 14.5,9.5 + parent: 4812 + - uid: 7031 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 4812 +- proto: MonkeyCubeWrapped + entities: + - uid: 8341 + components: + - type: Transform + pos: 6.243659,6.255819 + parent: 4812 +- proto: MopBucket + entities: + - uid: 1478 + components: + - type: Transform + pos: -20.532074,-3.4493594 + parent: 4812 + - uid: 11938 + components: + - type: Transform + pos: -11.467581,17.581944 + parent: 4812 +- proto: MopItem + entities: + - uid: 1498 + components: + - type: Transform + pos: -20.685179,-8.436821 + parent: 4812 + - uid: 1519 + components: + - type: Transform + pos: -20.529812,-3.4716563 + parent: 4812 + - uid: 11939 + components: + - type: Transform + pos: -10.498831,17.519444 + parent: 4812 + - uid: 11940 + components: + - type: Transform + pos: -10.498831,17.300694 + parent: 4812 +- proto: Morgue + entities: + - uid: 5011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 4812 + - uid: 7333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-17.5 + parent: 4812 + - uid: 7334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 4812 + - uid: 7368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 4812 +- proto: Multitool + entities: + - uid: 2680 + components: + - type: Transform + pos: -3.5045605,34.68698 + parent: 4812 + - uid: 3370 + components: + - type: Transform + pos: 14.511745,18.570736 + parent: 4812 + - uid: 6197 + components: + - type: Transform + pos: 7.576914,-16.642956 + parent: 4812 + - uid: 8593 + components: + - type: Transform + pos: -19.531754,12.581865 + parent: 4812 + - uid: 10707 + components: + - type: Transform + pos: -32.481808,-7.2820773 + parent: 4812 +- proto: NitrogenCanister + entities: + - uid: 4604 + components: + - type: Transform + pos: 15.5,11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 6327 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9448 + components: + - type: Transform + pos: -53.5,1.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9667 + components: + - type: Transform + pos: -33.5,4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9668 + components: + - type: Transform + pos: -33.5,5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 11786 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: NuclearBomb + entities: + - uid: 1854 + components: + - type: Transform + pos: -2.5,26.5 + parent: 4812 +- proto: NuclearBombKeg + entities: + - uid: 11642 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 4812 +- proto: OperatingTable + entities: + - uid: 6167 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 4812 + - uid: 7067 + components: + - type: Transform + pos: -20.5,-25.5 + parent: 4812 + - uid: 7244 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 4812 + - uid: 7444 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 4812 +- proto: OreProcessor + entities: + - uid: 2902 + components: + - type: Transform + pos: 21.5,15.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Plasma + - Uranium + - Gold + - Silver +- proto: OrganHumanAppendix + entities: + - uid: 4596 + components: + - type: Transform + pos: -53.373444,-16.451925 + parent: 4812 +- proto: OxygenCanister + entities: + - uid: 733 + components: + - type: Transform + pos: 9.5,17.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 4603 + components: + - type: Transform + pos: 14.5,11.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 6328 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 8849 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9450 + components: + - type: Transform + pos: -53.5,3.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9669 + components: + - type: Transform + pos: -32.5,4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9670 + components: + - type: Transform + pos: -32.5,5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 10740 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 10878 + components: + - type: Transform + pos: -34.5,8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 10917 + components: + - type: Transform + pos: -47.5,-23.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 11787 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: OxygenTankFilled + entities: + - uid: 11792 + components: + - type: Transform + pos: 19.577671,-32.613243 + parent: 4812 +- proto: PaintingAmogusTriptych + entities: + - uid: 7003 + components: + - type: Transform + pos: -21.5,6.5 + parent: 4812 +- proto: PaintingMonkey + entities: + - uid: 1659 + components: + - type: Transform + pos: 4.5,9.5 + parent: 4812 +- proto: PaintingNightHawks + entities: + - uid: 1674 + components: + - type: Transform + pos: 1.5,4.5 + parent: 4812 +- proto: PaintingOlympia + entities: + - uid: 7741 + components: + - type: Transform + pos: -28.5,-35.5 + parent: 4812 +- proto: PaintingRedBlueYellow + entities: + - uid: 8380 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 4812 +- proto: PaintingSadClown + entities: + - uid: 9634 + components: + - type: Transform + pos: -7.5,2.5 + parent: 4812 +- proto: PaintingSleepingGypsy + entities: + - uid: 7742 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 4812 +- proto: Paper + entities: + - uid: 2520 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2521 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2522 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2523 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2524 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2525 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2526 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2527 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2528 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2529 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2530 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2531 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2532 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2533 + components: + - type: Transform + pos: 8.567815,26.553799 + parent: 4812 + - uid: 2556 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2557 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2558 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2559 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2560 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2561 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2562 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2563 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2564 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2565 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2566 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2567 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2568 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2569 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2570 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2571 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2572 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2573 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2574 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 2575 + components: + - type: Transform + pos: 10.478969,22.565956 + parent: 4812 + - uid: 3246 + components: + - type: Transform + pos: 17.509274,13.545517 + parent: 4812 + - uid: 3247 + components: + - type: Transform + pos: 17.509274,13.545517 + parent: 4812 + - uid: 3248 + components: + - type: Transform + pos: 17.509274,13.545517 + parent: 4812 + - uid: 3249 + components: + - type: Transform + pos: 17.509274,13.545517 + parent: 4812 + - uid: 3250 + components: + - type: Transform + pos: 17.509274,13.545517 + parent: 4812 + - uid: 3251 + components: + - type: Transform + pos: 17.509274,13.545517 + parent: 4812 + - uid: 3252 + components: + - type: Transform + pos: 17.509274,13.545517 + parent: 4812 + - uid: 3253 + components: + - type: Transform + pos: 17.509274,13.545517 + parent: 4812 + - uid: 3254 + components: + - type: Transform + pos: 17.509274,13.545517 + parent: 4812 + - uid: 3255 + components: + - type: Transform + pos: 17.509274,13.545517 + parent: 4812 + - uid: 3881 + components: + - type: Transform + pos: 11.504802,56.565136 + parent: 4812 + - uid: 7006 + components: + - type: Transform + pos: -31.49619,-23.373245 + parent: 4812 + - uid: 7138 + components: + - type: Transform + pos: -28.318611,-14.584436 + parent: 4812 + - uid: 7139 + components: + - type: Transform + pos: -28.537361,-15.271936 + parent: 4812 + - uid: 7140 + components: + - type: Transform + pos: -27.677986,-15.271936 + parent: 4812 + - uid: 7141 + components: + - type: Transform + pos: -27.427986,-14.693811 + parent: 4812 + - uid: 7173 + components: + - type: Transform + pos: -31.49619,-23.373245 + parent: 4812 + - uid: 7174 + components: + - type: Transform + pos: -31.49619,-23.373245 + parent: 4812 + - uid: 7175 + components: + - type: Transform + pos: -31.49619,-23.373245 + parent: 4812 + - uid: 7176 + components: + - type: Transform + pos: -31.49619,-23.373245 + parent: 4812 + - uid: 7177 + components: + - type: Transform + pos: -31.49619,-23.373245 + parent: 4812 + - uid: 7178 + components: + - type: Transform + pos: -31.49619,-23.373245 + parent: 4812 + - uid: 7179 + components: + - type: Transform + pos: -31.49619,-23.373245 + parent: 4812 + - uid: 7180 + components: + - type: Transform + pos: -31.49619,-23.373245 + parent: 4812 + - uid: 7181 + components: + - type: Transform + pos: -31.49619,-23.373245 + parent: 4812 + - uid: 8395 + components: + - type: Transform + pos: -25.484861,30.57598 + parent: 4812 +- proto: ParchisBoard + entities: + - uid: 10866 + components: + - type: Transform + pos: -21.575394,0.5961678 + parent: 4812 +- proto: PartRodMetal + entities: + - uid: 1677 + components: + - type: Transform + pos: 3.5454316,14.514967 + parent: 4812 + - uid: 8583 + components: + - type: Transform + pos: -16.530659,7.5992785 + parent: 4812 + - uid: 9675 + components: + - type: Transform + pos: -30.275465,5.5801115 + parent: 4812 + - uid: 9676 + components: + - type: Transform + pos: -30.275465,5.5801115 + parent: 4812 + - uid: 11950 + components: + - type: Transform + pos: -14.576956,16.050694 + parent: 4812 + - uid: 11951 + components: + - type: Transform + pos: -14.389456,16.019444 + parent: 4812 +- proto: Pen + entities: + - uid: 2576 + components: + - type: Transform + pos: 10.697719,22.769081 + parent: 4812 + - uid: 3256 + components: + - type: Transform + pos: 17.728024,13.748642 + parent: 4812 + - uid: 3277 + components: + - type: Transform + pos: 22.826836,12.68298 + parent: 4812 + - uid: 3882 + components: + - type: Transform + pos: 11.754802,56.73701 + parent: 4812 + - uid: 6412 + components: + - type: Transform + pos: -0.24684072,-19.262363 + parent: 4812 + - uid: 7143 + components: + - type: Transform + pos: -28.256111,-15.131311 + parent: 4812 + - uid: 7144 + components: + - type: Transform + pos: -27.318611,-14.334436 + parent: 4812 + - uid: 8396 + components: + - type: Transform + pos: -25.234861,30.76348 + parent: 4812 +- proto: PersonalAI + entities: + - uid: 1767 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -2.5035148,7.4145155 + parent: 4812 + - uid: 3963 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 9.496426,48.542255 + parent: 4812 + - uid: 6307 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 26.432638,-19.383717 + parent: 4812 + - uid: 7142 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -28.490486,-14.614019 + parent: 4812 + - uid: 10864 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -22.475502,3.5391276 + parent: 4812 + - uid: 10865 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 6.426591,-28.501112 + parent: 4812 +- proto: PestSpray + entities: + - uid: 1475 + components: + - type: Transform + pos: -8.549381,-7.3677278 + parent: 4812 +- proto: PhoneInstrument + entities: + - uid: 1953 + components: + - type: Transform + pos: -12.499591,23.511097 + parent: 4812 + - uid: 3581 + components: + - type: Transform + pos: 15.253733,35.810513 + parent: 4812 +- proto: PianoInstrument + entities: + - uid: 1749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 4812 +- proto: Pickaxe + entities: + - uid: 3273 + components: + - type: Transform + pos: 22.483086,13.573605 + parent: 4812 + - uid: 3274 + components: + - type: Transform + pos: 22.576836,13.43298 + parent: 4812 + - uid: 3785 + components: + - type: Transform + pos: 17.50081,55.46929 + parent: 4812 + - uid: 10610 + components: + - type: Transform + pos: -48.49922,-23.375322 + parent: 4812 + - uid: 10611 + components: + - type: Transform + pos: -48.358597,-23.531572 + parent: 4812 + - uid: 11617 + components: + - type: Transform + pos: 37.304466,-40.56443 + parent: 4812 + - uid: 11678 + components: + - type: Transform + pos: 28.462547,-39.447342 + parent: 4812 +- proto: PinpointerNuclear + entities: + - uid: 2722 + components: + - type: Transform + pos: -1.524637,24.582329 + parent: 4812 +- proto: PlantBGoneSpray + entities: + - uid: 1474 + components: + - type: Transform + pos: -7.4868813,-7.4614778 + parent: 4812 +- proto: PlaqueAtmos + entities: + - uid: 11861 + components: + - type: Transform + pos: -30.5,6.5 + parent: 4812 +- proto: PlasmaCanister + entities: + - uid: 9457 + components: + - type: Transform + pos: -53.5,9.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 2779 + components: + - type: Transform + pos: 21.5,28.5 + parent: 4812 + - uid: 2780 + components: + - type: Transform + pos: 23.5,24.5 + parent: 4812 + - uid: 2843 + components: + - type: Transform + pos: 21.5,24.5 + parent: 4812 + - uid: 2856 + components: + - type: Transform + pos: 13.5,20.5 + parent: 4812 + - uid: 2857 + components: + - type: Transform + pos: 18.5,22.5 + parent: 4812 + - uid: 2940 + components: + - type: Transform + pos: 23.5,28.5 + parent: 4812 + - uid: 4432 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 4812 + - uid: 8622 + components: + - type: Transform + pos: -32.5,0.5 + parent: 4812 +- proto: PlushieBee + entities: + - uid: 11334 + components: + - type: Transform + pos: 22.549774,-36.48487 + parent: 4812 +- proto: PlushieLizard + entities: + - uid: 10916 + components: + - type: Transform + pos: -44.486626,-24.313948 + parent: 4812 +- proto: PortableFlasher + entities: + - uid: 12520 + components: + - type: Transform + pos: -36.5,20.5 + parent: 4812 +- proto: PortableGeneratorJrPacman + entities: + - uid: 3359 + components: + - type: Transform + pos: -30.5,7.5 + parent: 4812 + - uid: 3360 + components: + - type: Transform + pos: 13.5,29.5 + parent: 4812 + - uid: 12056 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 4812 + - uid: 12057 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 4812 + - uid: 12069 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 4812 + - uid: 12070 + components: + - type: Transform + pos: 3.5,12.5 + parent: 4812 +- proto: PortableGeneratorPacman + entities: + - uid: 10728 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 4812 +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 4494 + components: + - type: Transform + pos: 17.411211,1.6407971 + parent: 4812 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 3426 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 4812 +- proto: PortableScrubber + entities: + - uid: 3446 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 4812 + - uid: 3709 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 4812 + - uid: 8406 + components: + - type: Transform + pos: -13.5,15.5 + parent: 4812 + - uid: 9032 + components: + - type: Transform + pos: -12.5,15.5 + parent: 4812 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 11860 + components: + - type: Transform + pos: -36.5,6.5 + parent: 4812 +- proto: PosterContrabandClown + entities: + - uid: 1714 + components: + - type: Transform + pos: -6.5,0.5 + parent: 4812 +- proto: PosterContrabandEAT + entities: + - uid: 1782 + components: + - type: Transform + pos: 5.5,1.5 + parent: 4812 +- proto: PosterContrabandFreeDrone + entities: + - uid: 11936 + components: + - type: Transform + pos: -11.5,14.5 + parent: 4812 +- proto: PosterContrabandHackingGuide + entities: + - uid: 8605 + components: + - type: Transform + pos: -15.5,8.5 + parent: 4812 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 10774 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 4812 +- proto: PosterContrabandLamarr + entities: + - uid: 6292 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 4812 +- proto: PosterContrabandMissingGloves + entities: + - uid: 8606 + components: + - type: Transform + pos: -15.5,12.5 + parent: 4812 +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 12151 + components: + - type: Transform + pos: -1.5,27.5 + parent: 4812 +- proto: PosterContrabandSpaceCola + entities: + - uid: 1781 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 4812 +- proto: PosterContrabandTools + entities: + - uid: 8608 + components: + - type: Transform + pos: -21.5,7.5 + parent: 4812 +- proto: PosterContrabandVoteWeh + entities: + - uid: 10912 + components: + - type: Transform + pos: -42.5,-22.5 + parent: 4812 +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 6366 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 4812 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 9627 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 4812 + - uid: 9628 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 4812 +- proto: PosterLegitCarpMount + entities: + - uid: 9635 + components: + - type: Transform + pos: 21.5,17.5 + parent: 4812 +- proto: PosterLegitCleanliness + entities: + - uid: 4586 + components: + - type: Transform + pos: 14.5,5.5 + parent: 4812 + - uid: 7046 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 4812 +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 5360 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 4812 + - uid: 6488 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 4812 +- proto: PosterLegitIan + entities: + - uid: 4527 + components: + - type: Transform + pos: 10.5,23.5 + parent: 4812 +- proto: PosterLegitLoveIan + entities: + - uid: 4528 + components: + - type: Transform + pos: 8.5,30.5 + parent: 4812 +- proto: PosterLegitMime + entities: + - uid: 9629 + components: + - type: Transform + pos: -9.5,2.5 + parent: 4812 +- proto: PosterLegitNanomichiAd + entities: + - uid: 4529 + components: + - type: Transform + pos: 11.5,25.5 + parent: 4812 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 1463 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 4812 + - uid: 1793 + components: + - type: Transform + pos: -5.5,15.5 + parent: 4812 + - uid: 1794 + components: + - type: Transform + pos: 0.5,15.5 + parent: 4812 + - uid: 2933 + components: + - type: Transform + pos: -9.5,21.5 + parent: 4812 + - uid: 2934 + components: + - type: Transform + pos: -9.5,33.5 + parent: 4812 + - uid: 2935 + components: + - type: Transform + pos: 4.5,33.5 + parent: 4812 + - uid: 2936 + components: + - type: Transform + pos: -15.5,26.5 + parent: 4812 + - uid: 3425 + components: + - type: Transform + pos: 26.5,3.5 + parent: 4812 + - uid: 4526 + components: + - type: Transform + pos: 13.5,11.5 + parent: 4812 + - uid: 4531 + components: + - type: Transform + pos: 1.5,27.5 + parent: 4812 + - uid: 4532 + components: + - type: Transform + pos: -6.5,27.5 + parent: 4812 + - uid: 4583 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 4812 + - uid: 6486 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 4812 + - uid: 6487 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 4812 + - uid: 8301 + components: + - type: Transform + pos: -21.5,18.5 + parent: 4812 +- proto: PosterLegitNoERP + entities: + - uid: 4587 + components: + - type: Transform + pos: 17.5,6.5 + parent: 4812 + - uid: 7450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 4812 +- proto: PosterLegitNTTGC + entities: + - uid: 11336 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 4812 +- proto: PosterLegitPeriodicTable + entities: + - uid: 10738 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 4812 +- proto: PosterLegitRenault + entities: + - uid: 11275 + components: + - type: Transform + pos: -13.5,21.5 + parent: 4812 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 10996 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 4812 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 10747 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 4812 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 10918 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 4812 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 10739 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 4812 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 10906 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 4812 +- proto: PosterLegitScience + entities: + - uid: 6367 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 4812 +- proto: PosterLegitVacation + entities: + - uid: 10766 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 4812 +- proto: PottedPlant0 + entities: + - uid: 6625 + components: + - type: Transform + pos: -31.5,22.5 + parent: 4812 + - uid: 6738 + components: + - type: Transform + pos: -25.5,22.5 + parent: 4812 +- proto: PottedPlant1 + entities: + - uid: 6333 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 4812 + - uid: 6334 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 4812 +- proto: PottedPlant10 + entities: + - uid: 7441 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 4812 +- proto: PottedPlantBioluminscent + entities: + - uid: 6355 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 4812 +- proto: PottedPlantRandom + entities: + - uid: 924 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 925 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 926 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 927 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 928 + components: + - type: Transform + pos: -0.5,11.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 929 + components: + - type: Transform + pos: -4.5,11.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 937 + components: + - type: Transform + pos: 0.5,1.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 938 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 1730 + components: + - type: Transform + pos: -7.5,9.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 1731 + components: + - type: Transform + pos: -7.5,8.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 1799 + components: + - type: Transform + pos: -5.5,18.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 1800 + components: + - type: Transform + pos: 0.5,18.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 2598 + components: + - type: Transform + pos: -12.5,25.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 2600 + components: + - type: Transform + pos: -10.5,22.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 2681 + components: + - type: Transform + pos: -6.5,33.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 2682 + components: + - type: Transform + pos: 1.5,33.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 2683 + components: + - type: Transform + pos: -5.5,30.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 2684 + components: + - type: Transform + pos: 0.5,30.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 3258 + components: + - type: Transform + pos: 17.5,17.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 4550 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 4577 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 4600 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 5062 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 5063 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 5064 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 6191 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 6390 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 6391 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 6438 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 7045 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 4812 + - uid: 8288 + components: + - type: Transform + pos: -20.5,17.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 9683 + components: + - type: Transform + pos: -36.5,4.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 9684 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 9685 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 9834 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 10860 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 11290 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 11291 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 11292 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 11293 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 4812 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} +- proto: PottedPlantRD + entities: + - uid: 6290 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 4812 +- proto: PowerCellRecharger + entities: + - uid: 1687 + components: + - type: Transform + pos: 7.5,16.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 2668 + components: + - type: Transform + pos: 1.5,34.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 3880 + components: + - type: Transform + pos: 9.5,56.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 6194 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 6229 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 8579 + components: + - type: Transform + pos: -20.5,7.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 10713 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 10849 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 4812 + - type: Physics + canCollide: False +- proto: PowerDrill + entities: + - uid: 6309 + components: + - type: Transform + pos: 28.456348,-20.243092 + parent: 4812 +- proto: Poweredlight + entities: + - uid: 1515 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1516 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1665 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1666 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1667 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1668 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1669 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1670 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1671 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,9.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1672 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1673 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1975 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1983 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2541 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,29.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2542 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2543 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,27.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2544 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,22.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2545 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,26.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2622 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,28.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2623 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,24.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2624 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,28.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2625 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,28.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2626 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,23.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2627 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2628 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,34.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2629 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,34.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2630 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,35.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2631 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,35.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2687 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,31.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2688 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,31.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2689 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,18.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2690 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2691 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2692 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2694 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,20.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2696 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,20.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2733 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,24.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2734 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,24.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2776 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,31.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2784 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,20.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2785 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,20.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3216 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,17.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3217 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3218 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,12.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3219 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,21.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3220 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,27.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3221 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,23.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3965 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,56.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3966 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,50.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3967 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,54.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3968 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,50.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3969 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,50.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3970 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,54.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3971 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3972 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,47.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3973 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,47.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4468 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,12.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4469 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4470 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4471 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-2.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4472 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4473 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,4.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4474 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4475 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,0.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4476 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-7.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4952 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-25.5 + parent: 4812 + - uid: 4953 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-23.5 + parent: 4812 + - uid: 4954 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 4812 + - uid: 4986 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 4812 + - uid: 5067 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-53.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5068 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-40.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5069 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-45.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5070 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-45.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5283 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-34.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5284 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-34.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6258 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6259 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6260 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-17.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6261 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-28.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6262 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-23.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6263 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6264 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6265 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-27.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6266 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-20.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6267 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-20.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6268 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6269 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6270 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-30.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6271 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-22.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6272 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-26.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6273 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6274 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6275 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-19.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6276 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-23.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6277 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-28.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6478 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7019 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-34.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7024 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7028 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-15.5 + parent: 4812 + - uid: 7053 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-28.5 + parent: 4812 + - uid: 7288 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-20.5 + parent: 4812 + - uid: 7367 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 4812 + - uid: 7397 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-22.5 + parent: 4812 + - uid: 7582 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-20.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7583 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-18.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7621 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-21.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7622 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7623 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-11.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7624 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-11.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7625 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7626 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-30.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7627 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7628 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7629 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-11.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7630 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-11.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7631 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-11.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7632 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-11.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8141 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,12.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,16.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8143 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,16.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8144 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,12.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8145 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,19.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8247 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,28.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8251 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-27.5 + parent: 4812 + - uid: 8269 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,25.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8304 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8305 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,15.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8603 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,12.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8604 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,7.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9017 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-33.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9311 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9312 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,3.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9313 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9314 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,7.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9315 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,9.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9316 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,11.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9317 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,0.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9318 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,4.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9319 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,8.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9320 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,12.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9706 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,14.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9707 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,14.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9819 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9820 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,10.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9821 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,0.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9822 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9823 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10661 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-10.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10680 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-6.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10681 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-11.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10682 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-10.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10684 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-18.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10686 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10687 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10688 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10689 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-0.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10690 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,8.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10691 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,13.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10692 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10693 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10694 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-6.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10695 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-14.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10920 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11246 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-37.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11247 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11248 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11916 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11917 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11918 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11920 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-35.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11921 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-14.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11923 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11924 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11926 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-7.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11961 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,17.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredlightEmpty + entities: + - uid: 11249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-41.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-33.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLight + entities: + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 256 + components: + - type: Transform + pos: -18.5,5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1664 + components: + - type: Transform + pos: 6.5,9.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1724 + components: + - type: Transform + pos: -9.5,1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,8.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,7.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1803 + components: + - type: Transform + pos: 4.5,12.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1804 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1805 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1806 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1807 + components: + - type: Transform + pos: -9.5,13.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,31.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,34.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,24.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 2777 + components: + - type: Transform + pos: 22.5,28.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,35.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3224 + components: + - type: Transform + pos: 27.5,15.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3280 + components: + - type: Transform + pos: 22.5,8.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3733 + components: + - type: Transform + pos: 24.5,4.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3770 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 3974 + components: + - type: Transform + pos: 3.5,46.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4466 + components: + - type: Transform + pos: 15.5,8.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4467 + components: + - type: Transform + pos: 20.5,11.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4480 + components: + - type: Transform + pos: 19.5,2.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4481 + components: + - type: Transform + pos: 22.5,1.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4482 + components: + - type: Transform + pos: 16.5,11.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4545 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 4546 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-16.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 5389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6278 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6279 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,24.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 6281 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-39.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-38.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7022 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-36.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 4812 + - uid: 7069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 4812 + - uid: 7150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7152 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 7731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 4812 + - uid: 7796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-19.5 + parent: 4812 + - uid: 8146 + components: + - type: Transform + pos: -26.5,20.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8147 + components: + - type: Transform + pos: -26.5,17.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,10.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,27.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,27.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,30.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,31.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,28.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,26.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8454 + components: + - type: Transform + pos: -25.5,14.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-37.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9016 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9042 + components: + - type: Transform + pos: -34.5,-36.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9048 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-40.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-40.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-40.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9073 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9531 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9659 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-3.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 9699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10408 + components: + - type: Transform + pos: -55.5,-22.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10409 + components: + - type: Transform + pos: -52.5,-22.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10410 + components: + - type: Transform + pos: -47.5,-19.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10520 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-30.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10696 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10880 + components: + - type: Transform + pos: -30.5,8.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10881 + components: + - type: Transform + pos: -38.5,8.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 10919 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11256 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-38.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-33.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11462 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-32.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11474 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11476 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,24.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11813 + components: + - type: Transform + pos: -14.5,0.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11868 + components: + - type: Transform + pos: -14.5,5.5 + parent: 4812 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Protolathe + entities: + - uid: 6182 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold + - uid: 10699 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold +- proto: ProtolatheMachineCircuitboard + entities: + - uid: 4495 + components: + - type: Transform + pos: 17.598711,1.4220471 + parent: 4812 +- proto: Rack + entities: + - uid: 1652 + components: + - type: Transform + pos: 5.5,8.5 + parent: 4812 + - uid: 1675 + components: + - type: Transform + pos: 3.5,14.5 + parent: 4812 + - uid: 2699 + components: + - type: Transform + pos: 0.5,23.5 + parent: 4812 + - uid: 2700 + components: + - type: Transform + pos: 0.5,24.5 + parent: 4812 + - uid: 2701 + components: + - type: Transform + pos: 0.5,25.5 + parent: 4812 + - uid: 3267 + components: + - type: Transform + pos: 22.5,13.5 + parent: 4812 + - uid: 3289 + components: + - type: Transform + pos: 23.5,7.5 + parent: 4812 + - uid: 3392 + components: + - type: Transform + pos: 23.5,8.5 + parent: 4812 + - uid: 3393 + components: + - type: Transform + pos: 21.5,8.5 + parent: 4812 + - uid: 3404 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 4812 + - uid: 3442 + components: + - type: Transform + pos: 21.5,7.5 + parent: 4812 + - uid: 3748 + components: + - type: Transform + pos: 21.5,5.5 + parent: 4812 + - uid: 3750 + components: + - type: Transform + pos: 25.5,3.5 + parent: 4812 + - uid: 3751 + components: + - type: Transform + pos: 25.5,4.5 + parent: 4812 + - uid: 3752 + components: + - type: Transform + pos: 21.5,4.5 + parent: 4812 + - uid: 4485 + components: + - type: Transform + pos: 19.5,6.5 + parent: 4812 + - uid: 4486 + components: + - type: Transform + pos: 19.5,8.5 + parent: 4812 + - uid: 4493 + components: + - type: Transform + pos: 17.5,1.5 + parent: 4812 + - uid: 4539 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 4812 + - uid: 4605 + components: + - type: Transform + pos: 16.5,11.5 + parent: 4812 + - uid: 6226 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 4812 + - uid: 6227 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 4812 + - uid: 8276 + components: + - type: Transform + pos: -16.5,16.5 + parent: 4812 + - uid: 8377 + components: + - type: Transform + pos: -35.5,19.5 + parent: 4812 + - uid: 8424 + components: + - type: Transform + pos: -37.5,12.5 + parent: 4812 + - uid: 10526 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 4812 + - uid: 10603 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 4812 + - uid: 10612 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 4812 + - uid: 10721 + components: + - type: Transform + pos: -36.5,8.5 + parent: 4812 + - uid: 10877 + components: + - type: Transform + pos: -33.5,8.5 + parent: 4812 + - uid: 10898 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 4812 + - uid: 10899 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 4812 + - uid: 10979 + components: + - type: Transform + pos: -37.5,26.5 + parent: 4812 + - uid: 11306 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 4812 + - uid: 11307 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 4812 + - uid: 11308 + components: + - type: Transform + pos: 24.5,-36.5 + parent: 4812 + - uid: 11471 + components: + - type: Transform + pos: 28.5,-35.5 + parent: 4812 + - uid: 11776 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 4812 + - uid: 11788 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 4812 + - uid: 11838 + components: + - type: Transform + pos: -6.5,14.5 + parent: 4812 + - uid: 11884 + components: + - type: Transform + pos: 4.5,12.5 + parent: 4812 +- proto: RadioHandheld + entities: + - uid: 4582 + components: + - type: Transform + pos: 27.5,4.5 + parent: 4812 + - uid: 6481 + components: + - type: Transform + pos: -2.7355957,-24.240028 + parent: 4812 + - uid: 8453 + components: + - type: Transform + pos: -29.452932,10.599279 + parent: 4812 +- proto: Railing + entities: + - uid: 7370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 4812 + - uid: 7395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 4812 +- proto: RailingCorner + entities: + - uid: 7393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 4812 +- proto: RandomArcade + entities: + - uid: 10851 + components: + - type: Transform + pos: -23.5,5.5 + parent: 4812 +- proto: RandomArtifactSpawner + entities: + - uid: 6324 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 4812 + - uid: 10445 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 4812 + - uid: 12472 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 4812 +- proto: RandomBoard + entities: + - uid: 2709 + components: + - type: Transform + pos: 22.5,3.5 + parent: 4812 + - uid: 2725 + components: + - type: Transform + pos: 21.5,5.5 + parent: 4812 + - uid: 2726 + components: + - type: Transform + pos: 25.5,4.5 + parent: 4812 + - uid: 2727 + components: + - type: Transform + pos: 21.5,7.5 + parent: 4812 + - uid: 2728 + components: + - type: Transform + pos: 23.5,7.5 + parent: 4812 + - uid: 2729 + components: + - type: Transform + pos: 23.5,8.5 + parent: 4812 + - uid: 2730 + components: + - type: Transform + pos: 21.5,8.5 + parent: 4812 + - uid: 3286 + components: + - type: Transform + pos: 21.5,4.5 + parent: 4812 + - uid: 3378 + components: + - type: Transform + pos: 25.5,3.5 + parent: 4812 + - uid: 3379 + components: + - type: Transform + pos: 0.5,24.5 + parent: 4812 + - uid: 3380 + components: + - type: Transform + pos: 0.5,23.5 + parent: 4812 + - uid: 3381 + components: + - type: Transform + pos: 0.5,25.5 + parent: 4812 +- proto: RandomDrinkBottle + entities: + - uid: 10931 + components: + - type: Transform + pos: 3.5,4.5 + parent: 4812 +- proto: RandomDrinkGlass + entities: + - uid: 10785 + components: + - type: Transform + pos: 1.5,8.5 + parent: 4812 + - uid: 10930 + components: + - type: Transform + pos: 1.5,7.5 + parent: 4812 +- proto: RandomFoodMeal + entities: + - uid: 3776 + components: + - type: Transform + pos: -2.5,8.5 + parent: 4812 + - uid: 10933 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 4812 +- proto: RandomInstruments + entities: + - uid: 4456 + components: + - type: Transform + pos: 14.5,6.5 + parent: 4812 +- proto: RandomPainting + entities: + - uid: 12164 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 4812 + - uid: 12165 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 4812 + - uid: 12166 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 4812 + - uid: 12167 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 4812 +- proto: RandomPosterAny + entities: + - uid: 1788 + components: + - type: Transform + pos: -10.5,2.5 + parent: 4812 + - uid: 3279 + components: + - type: Transform + pos: 13.5,27.5 + parent: 4812 + - uid: 9067 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 4812 + - uid: 10862 + components: + - type: Transform + pos: -19.5,5.5 + parent: 4812 + - uid: 10863 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 4812 + - uid: 11874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-32.5 + parent: 4812 + - uid: 11875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-31.5 + parent: 4812 + - uid: 11876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-31.5 + parent: 4812 +- proto: RandomPosterContraband + entities: + - uid: 4585 + components: + - type: Transform + pos: 17.5,0.5 + parent: 4812 + - uid: 6492 + components: + - type: Transform + pos: 15.5,9.5 + parent: 4812 + - uid: 6493 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 4812 + - uid: 9066 + components: + - type: Transform + pos: -28.5,-40.5 + parent: 4812 +- proto: RandomPosterLegit + entities: + - uid: 1470 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 4812 + - uid: 1471 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 4812 + - uid: 1789 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 4812 + - uid: 1790 + components: + - type: Transform + pos: 8.5,0.5 + parent: 4812 + - uid: 1791 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 4812 + - uid: 1792 + components: + - type: Transform + pos: -16.5,5.5 + parent: 4812 + - uid: 1818 + components: + - type: Transform + pos: -6.5,11.5 + parent: 4812 + - uid: 4588 + components: + - type: Transform + pos: 15.5,12.5 + parent: 4812 + - uid: 4589 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 4812 + - uid: 4590 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 4812 + - uid: 6489 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 4812 + - uid: 6490 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 4812 + - uid: 6491 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 4812 + - uid: 11872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 4812 + - uid: 11873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-1.5 + parent: 4812 +- proto: RandomSoap + entities: + - uid: 1754 + components: + - type: Transform + pos: -10.5,6.5 + parent: 4812 + - uid: 3439 + components: + - type: Transform + pos: 19.5,36.5 + parent: 4812 + - uid: 4457 + components: + - type: Transform + pos: 16.5,6.5 + parent: 4812 + - uid: 8248 + components: + - type: Transform + pos: -19.5,29.5 + parent: 4812 +- proto: RandomSpawner + entities: + - uid: 10934 + components: + - type: Transform + pos: -1.5,17.5 + parent: 4812 + - uid: 10935 + components: + - type: Transform + pos: -14.5,20.5 + parent: 4812 + - uid: 10936 + components: + - type: Transform + pos: -23.5,18.5 + parent: 4812 + - uid: 10937 + components: + - type: Transform + pos: -26.5,3.5 + parent: 4812 + - uid: 10938 + components: + - type: Transform + pos: -20.5,2.5 + parent: 4812 + - uid: 10939 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 4812 + - uid: 10940 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 4812 + - uid: 10985 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 4812 + - uid: 11236 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 4812 + - uid: 11237 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 4812 + - uid: 11238 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 4812 + - uid: 11239 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 4812 + - uid: 11739 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 4812 + - uid: 11911 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 4812 + - uid: 11912 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 4812 + - uid: 11913 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 4812 + - uid: 11915 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 4812 + - uid: 12047 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 4812 + - uid: 12147 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 4812 + - uid: 12149 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 4812 + - uid: 12152 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 4812 + - uid: 12153 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 4812 + - uid: 12154 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 4812 + - uid: 12155 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 4812 + - uid: 12156 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 4812 + - uid: 12157 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 4812 + - uid: 12158 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 4812 + - uid: 12159 + components: + - type: Transform + pos: 12.5,4.5 + parent: 4812 + - uid: 12160 + components: + - type: Transform + pos: 19.5,14.5 + parent: 4812 + - uid: 12161 + components: + - type: Transform + pos: -30.5,17.5 + parent: 4812 +- proto: RCD + entities: + - uid: 10767 + components: + - type: Transform + pos: -48.51471,-8.421415 + parent: 4812 +- proto: RCDAmmo + entities: + - uid: 10768 + components: + - type: Transform + pos: -48.249084,-8.265165 + parent: 4812 +- proto: ReagentContainerFlour + entities: + - uid: 1645 + components: + - type: Transform + pos: 7.6925507,0.6939993 + parent: 4812 +- proto: Recycler + entities: + - uid: 11244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 11245 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 4138 + components: + - type: Transform + pos: -35.5,18.5 + parent: 4812 + - uid: 4139 + components: + - type: Transform + pos: -33.5,18.5 + parent: 4812 + - uid: 4140 + components: + - type: Transform + pos: -32.5,19.5 + parent: 4812 + - uid: 4141 + components: + - type: Transform + pos: -32.5,20.5 + parent: 4812 + - uid: 9035 + components: + - type: Transform + pos: -50.5,11.5 + parent: 4812 + - uid: 9176 + components: + - type: Transform + pos: -50.5,1.5 + parent: 4812 + - uid: 9307 + components: + - type: Transform + pos: -50.5,9.5 + parent: 4812 + - uid: 9308 + components: + - type: Transform + pos: -50.5,7.5 + parent: 4812 + - uid: 9309 + components: + - type: Transform + pos: -50.5,5.5 + parent: 4812 + - uid: 9310 + components: + - type: Transform + pos: -50.5,3.5 + parent: 4812 + - uid: 9475 + components: + - type: Transform + pos: -43.5,15.5 + parent: 4812 + - uid: 9476 + components: + - type: Transform + pos: -44.5,15.5 + parent: 4812 + - uid: 9477 + components: + - type: Transform + pos: -45.5,15.5 + parent: 4812 + - uid: 9478 + components: + - type: Transform + pos: -46.5,16.5 + parent: 4812 + - uid: 9479 + components: + - type: Transform + pos: -46.5,17.5 + parent: 4812 + - uid: 9480 + components: + - type: Transform + pos: -42.5,16.5 + parent: 4812 + - uid: 9481 + components: + - type: Transform + pos: -42.5,17.5 + parent: 4812 + - uid: 9863 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 4812 + - uid: 9875 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 4812 +- proto: ReinforcedWindow + entities: + - uid: 106 + components: + - type: Transform + pos: -7.5,15.5 + parent: 4812 + - uid: 107 + components: + - type: Transform + pos: -8.5,15.5 + parent: 4812 + - uid: 108 + components: + - type: Transform + pos: -9.5,16.5 + parent: 4812 + - uid: 109 + components: + - type: Transform + pos: -9.5,17.5 + parent: 4812 + - uid: 110 + components: + - type: Transform + pos: -8.5,18.5 + parent: 4812 + - uid: 111 + components: + - type: Transform + pos: -7.5,18.5 + parent: 4812 + - uid: 112 + components: + - type: Transform + pos: -6.5,17.5 + parent: 4812 + - uid: 113 + components: + - type: Transform + pos: -6.5,16.5 + parent: 4812 + - uid: 114 + components: + - type: Transform + pos: 3.5,15.5 + parent: 4812 + - uid: 115 + components: + - type: Transform + pos: 2.5,15.5 + parent: 4812 + - uid: 116 + components: + - type: Transform + pos: 1.5,16.5 + parent: 4812 + - uid: 117 + components: + - type: Transform + pos: 1.5,17.5 + parent: 4812 + - uid: 118 + components: + - type: Transform + pos: 2.5,18.5 + parent: 4812 + - uid: 119 + components: + - type: Transform + pos: 3.5,18.5 + parent: 4812 + - uid: 120 + components: + - type: Transform + pos: 4.5,17.5 + parent: 4812 + - uid: 121 + components: + - type: Transform + pos: 4.5,16.5 + parent: 4812 + - uid: 128 + components: + - type: Transform + pos: -4.5,15.5 + parent: 4812 + - uid: 129 + components: + - type: Transform + pos: -4.5,12.5 + parent: 4812 + - uid: 130 + components: + - type: Transform + pos: -0.5,12.5 + parent: 4812 + - uid: 131 + components: + - type: Transform + pos: -0.5,15.5 + parent: 4812 + - uid: 132 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 4812 + - uid: 133 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 4812 + - uid: 134 + components: + - type: Transform + pos: 2.5,1.5 + parent: 4812 + - uid: 135 + components: + - type: Transform + pos: 5.5,18.5 + parent: 4812 + - uid: 136 + components: + - type: Transform + pos: 7.5,18.5 + parent: 4812 + - uid: 137 + components: + - type: Transform + pos: 9.5,18.5 + parent: 4812 + - uid: 178 + components: + - type: Transform + pos: -18.5,18.5 + parent: 4812 + - uid: 179 + components: + - type: Transform + pos: -19.5,18.5 + parent: 4812 + - uid: 184 + components: + - type: Transform + pos: -21.5,14.5 + parent: 4812 + - uid: 215 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 4812 + - uid: 216 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 4812 + - uid: 217 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 4812 + - uid: 218 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 4812 + - uid: 219 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 4812 + - uid: 220 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 4812 + - uid: 1784 + components: + - type: Transform + pos: 18.5,31.5 + parent: 4812 + - uid: 1843 + components: + - type: Transform + pos: -4.5,27.5 + parent: 4812 + - uid: 1844 + components: + - type: Transform + pos: -2.5,27.5 + parent: 4812 + - uid: 1845 + components: + - type: Transform + pos: -0.5,27.5 + parent: 4812 + - uid: 1856 + components: + - type: Transform + pos: 1.5,30.5 + parent: 4812 + - uid: 1869 + components: + - type: Transform + pos: -9.5,32.5 + parent: 4812 + - uid: 1870 + components: + - type: Transform + pos: -9.5,34.5 + parent: 4812 + - uid: 1871 + components: + - type: Transform + pos: -9.5,35.5 + parent: 4812 + - uid: 1872 + components: + - type: Transform + pos: -8.5,35.5 + parent: 4812 + - uid: 1873 + components: + - type: Transform + pos: -6.5,35.5 + parent: 4812 + - uid: 1874 + components: + - type: Transform + pos: -6.5,36.5 + parent: 4812 + - uid: 1875 + components: + - type: Transform + pos: -5.5,36.5 + parent: 4812 + - uid: 1876 + components: + - type: Transform + pos: 1.5,35.5 + parent: 4812 + - uid: 1877 + components: + - type: Transform + pos: 1.5,36.5 + parent: 4812 + - uid: 1878 + components: + - type: Transform + pos: 0.5,36.5 + parent: 4812 + - uid: 1879 + components: + - type: Transform + pos: 4.5,34.5 + parent: 4812 + - uid: 1880 + components: + - type: Transform + pos: 4.5,35.5 + parent: 4812 + - uid: 1881 + components: + - type: Transform + pos: 3.5,35.5 + parent: 4812 + - uid: 1882 + components: + - type: Transform + pos: -1.5,36.5 + parent: 4812 + - uid: 1883 + components: + - type: Transform + pos: -2.5,36.5 + parent: 4812 + - uid: 1884 + components: + - type: Transform + pos: -3.5,36.5 + parent: 4812 + - uid: 1897 + components: + - type: Transform + pos: 4.5,26.5 + parent: 4812 + - uid: 1898 + components: + - type: Transform + pos: 4.5,24.5 + parent: 4812 + - uid: 1902 + components: + - type: Transform + pos: 6.5,33.5 + parent: 4812 + - uid: 1924 + components: + - type: Transform + pos: 6.5,23.5 + parent: 4812 + - uid: 1925 + components: + - type: Transform + pos: 8.5,23.5 + parent: 4812 + - uid: 1944 + components: + - type: Transform + pos: -9.5,22.5 + parent: 4812 + - uid: 1945 + components: + - type: Transform + pos: -9.5,24.5 + parent: 4812 + - uid: 1962 + components: + - type: Transform + pos: -12.5,30.5 + parent: 4812 + - uid: 1963 + components: + - type: Transform + pos: -11.5,30.5 + parent: 4812 + - uid: 2201 + components: + - type: Transform + pos: -6.5,28.5 + parent: 4812 + - uid: 2204 + components: + - type: Transform + pos: -6.5,30.5 + parent: 4812 + - uid: 2209 + components: + - type: Transform + pos: 1.5,28.5 + parent: 4812 + - uid: 2466 + components: + - type: Transform + pos: -10.5,26.5 + parent: 4812 + - uid: 2467 + components: + - type: Transform + pos: -12.5,26.5 + parent: 4812 + - uid: 2468 + components: + - type: Transform + pos: -13.5,26.5 + parent: 4812 + - uid: 2469 + components: + - type: Transform + pos: 5.5,27.5 + parent: 4812 + - uid: 2470 + components: + - type: Transform + pos: 7.5,27.5 + parent: 4812 + - uid: 2471 + components: + - type: Transform + pos: 8.5,27.5 + parent: 4812 + - uid: 2761 + components: + - type: Transform + pos: 21.5,26.5 + parent: 4812 + - uid: 2762 + components: + - type: Transform + pos: 23.5,26.5 + parent: 4812 + - uid: 2763 + components: + - type: Transform + pos: 22.5,29.5 + parent: 4812 + - uid: 2764 + components: + - type: Transform + pos: 19.5,29.5 + parent: 4812 + - uid: 2772 + components: + - type: Transform + pos: 22.5,26.5 + parent: 4812 + - uid: 2773 + components: + - type: Transform + pos: 22.5,23.5 + parent: 4812 + - uid: 2775 + components: + - type: Transform + pos: 20.5,29.5 + parent: 4812 + - uid: 2801 + components: + - type: Transform + pos: 13.5,17.5 + parent: 4812 + - uid: 2802 + components: + - type: Transform + pos: 13.5,19.5 + parent: 4812 + - uid: 2803 + components: + - type: Transform + pos: 14.5,16.5 + parent: 4812 + - uid: 2804 + components: + - type: Transform + pos: 16.5,16.5 + parent: 4812 + - uid: 2805 + components: + - type: Transform + pos: 18.5,16.5 + parent: 4812 + - uid: 2806 + components: + - type: Transform + pos: 20.5,16.5 + parent: 4812 + - uid: 2807 + components: + - type: Transform + pos: 21.5,21.5 + parent: 4812 + - uid: 2808 + components: + - type: Transform + pos: 21.5,19.5 + parent: 4812 + - uid: 2809 + components: + - type: Transform + pos: 19.5,22.5 + parent: 4812 + - uid: 2810 + components: + - type: Transform + pos: 13.5,13.5 + parent: 4812 + - uid: 2811 + components: + - type: Transform + pos: 14.5,22.5 + parent: 4812 + - uid: 2812 + components: + - type: Transform + pos: 16.5,28.5 + parent: 4812 + - uid: 2819 + components: + - type: Transform + pos: 18.5,30.5 + parent: 4812 + - uid: 2884 + components: + - type: Transform + pos: 23.5,17.5 + parent: 4812 + - uid: 2885 + components: + - type: Transform + pos: 21.5,13.5 + parent: 4812 + - uid: 2886 + components: + - type: Transform + pos: 25.5,15.5 + parent: 4812 + - uid: 2887 + components: + - type: Transform + pos: 25.5,13.5 + parent: 4812 + - uid: 2888 + components: + - type: Transform + pos: 26.5,16.5 + parent: 4812 + - uid: 2889 + components: + - type: Transform + pos: 27.5,16.5 + parent: 4812 + - uid: 2890 + components: + - type: Transform + pos: 28.5,16.5 + parent: 4812 + - uid: 2891 + components: + - type: Transform + pos: 28.5,15.5 + parent: 4812 + - uid: 2892 + components: + - type: Transform + pos: 28.5,13.5 + parent: 4812 + - uid: 2893 + components: + - type: Transform + pos: 28.5,12.5 + parent: 4812 + - uid: 2894 + components: + - type: Transform + pos: 27.5,12.5 + parent: 4812 + - uid: 2895 + components: + - type: Transform + pos: 26.5,12.5 + parent: 4812 + - uid: 3117 + components: + - type: Transform + pos: 16.5,36.5 + parent: 4812 + - uid: 3503 + components: + - type: Transform + pos: 6.5,43.5 + parent: 4812 + - uid: 3698 + components: + - type: Transform + pos: 10.5,54.5 + parent: 4812 + - uid: 4048 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 4812 + - uid: 4050 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 4812 + - uid: 4051 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 4812 + - uid: 4052 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 4812 + - uid: 4053 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 4812 + - uid: 4054 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 4812 + - uid: 4055 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 4812 + - uid: 4056 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 4812 + - uid: 4057 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 4812 + - uid: 4058 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 4812 + - uid: 4059 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 4812 + - uid: 4060 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 4812 + - uid: 4061 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 4812 + - uid: 4062 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 4812 + - uid: 4063 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 4812 + - uid: 4064 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 4812 + - uid: 4065 + components: + - type: Transform + pos: 34.5,1.5 + parent: 4812 + - uid: 4066 + components: + - type: Transform + pos: 33.5,1.5 + parent: 4812 + - uid: 4067 + components: + - type: Transform + pos: 32.5,1.5 + parent: 4812 + - uid: 4068 + components: + - type: Transform + pos: 31.5,1.5 + parent: 4812 + - uid: 4069 + components: + - type: Transform + pos: 32.5,3.5 + parent: 4812 + - uid: 4070 + components: + - type: Transform + pos: 33.5,3.5 + parent: 4812 + - uid: 4071 + components: + - type: Transform + pos: 34.5,3.5 + parent: 4812 + - uid: 4072 + components: + - type: Transform + pos: 32.5,4.5 + parent: 4812 + - uid: 4073 + components: + - type: Transform + pos: 29.5,1.5 + parent: 4812 + - uid: 4074 + components: + - type: Transform + pos: 27.5,1.5 + parent: 4812 + - uid: 4075 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 4812 + - uid: 4076 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 4812 + - uid: 4077 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 4812 + - uid: 4078 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 4812 + - uid: 4079 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 4812 + - uid: 4080 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 4812 + - uid: 4099 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 4812 + - uid: 4100 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 4812 + - uid: 4110 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 4812 + - uid: 4111 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 4812 + - uid: 4112 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 4812 + - uid: 4113 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 4812 + - uid: 4114 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 4812 + - uid: 4115 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 4812 + - uid: 4627 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 4812 + - uid: 4628 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 4812 + - uid: 4629 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 4812 + - uid: 4630 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 4812 + - uid: 4631 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 4812 + - uid: 4632 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 4812 + - uid: 4633 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 4812 + - uid: 4634 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 4812 + - uid: 4635 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 4812 + - uid: 4636 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 4812 + - uid: 4637 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 4812 + - uid: 4661 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 4812 + - uid: 4662 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 4812 + - uid: 4663 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 4812 + - uid: 4664 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 4812 + - uid: 4665 + components: + - type: Transform + pos: -9.5,-42.5 + parent: 4812 + - uid: 4666 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 4812 + - uid: 4667 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 4812 + - uid: 4668 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 4812 + - uid: 4669 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 4812 + - uid: 4670 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 4812 + - uid: 4671 + components: + - type: Transform + pos: -8.5,-49.5 + parent: 4812 + - uid: 4672 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 4812 + - uid: 4677 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 4812 + - uid: 4678 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 4812 + - uid: 4679 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 4812 + - uid: 4680 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 4812 + - uid: 4682 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 4812 + - uid: 4683 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 4812 + - uid: 4684 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 4812 + - uid: 4687 + components: + - type: Transform + pos: -12.5,-54.5 + parent: 4812 + - uid: 4688 + components: + - type: Transform + pos: -12.5,-55.5 + parent: 4812 + - uid: 4691 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 4812 + - uid: 4692 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 4812 + - uid: 4695 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 4812 + - uid: 4697 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 4812 + - uid: 4698 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 4812 + - uid: 4699 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 4812 + - uid: 4700 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 4812 + - uid: 4701 + components: + - type: Transform + pos: -13.5,-51.5 + parent: 4812 + - uid: 4702 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 4812 + - uid: 4703 + components: + - type: Transform + pos: -13.5,-49.5 + parent: 4812 + - uid: 4704 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 4812 + - uid: 4709 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 4812 + - uid: 4710 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 4812 + - uid: 4711 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 4812 + - uid: 4712 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 4812 + - uid: 4719 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 4812 + - uid: 4798 + components: + - type: Transform + pos: -45.5,-27.5 + parent: 4812 + - uid: 4923 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 4812 + - uid: 4924 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 4812 + - uid: 4988 + components: + - type: Transform + pos: -14.5,-24.5 + parent: 4812 + - uid: 4994 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 4812 + - uid: 5004 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 4812 + - uid: 5040 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 4812 + - uid: 5049 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 4812 + - uid: 5300 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 4812 + - uid: 5301 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 4812 + - uid: 5302 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 4812 + - uid: 5303 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 4812 + - uid: 5313 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 4812 + - uid: 5315 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 4812 + - uid: 5317 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 4812 + - uid: 5318 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 4812 + - uid: 5319 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 4812 + - uid: 5320 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 4812 + - uid: 5321 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 4812 + - uid: 5322 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 4812 + - uid: 5323 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 4812 + - uid: 5324 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 4812 + - uid: 5325 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 4812 + - uid: 5326 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 4812 + - uid: 5327 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 4812 + - uid: 5328 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 4812 + - uid: 5329 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 4812 + - uid: 5393 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 4812 + - uid: 5415 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 4812 + - uid: 5416 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 4812 + - uid: 5417 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 4812 + - uid: 5418 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 4812 + - uid: 5419 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 4812 + - uid: 5420 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 4812 + - uid: 5421 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 4812 + - uid: 5422 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 4812 + - uid: 5428 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 4812 + - uid: 5429 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 4812 + - uid: 5458 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 4812 + - uid: 5459 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 4812 + - uid: 5460 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 4812 + - uid: 5461 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 4812 + - uid: 5462 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 4812 + - uid: 5463 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 4812 + - uid: 5464 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 4812 + - uid: 5472 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 4812 + - uid: 5474 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 4812 + - uid: 5475 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 4812 + - uid: 5477 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 4812 + - uid: 5478 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 4812 + - uid: 5481 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 4812 + - uid: 5482 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 4812 + - uid: 5483 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 4812 + - uid: 5491 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 4812 + - uid: 5533 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 4812 + - uid: 5534 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 4812 + - uid: 5535 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 4812 + - uid: 5536 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 4812 + - uid: 5537 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 4812 + - uid: 5538 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 4812 + - uid: 5539 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 4812 + - uid: 5540 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 4812 + - uid: 5541 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 4812 + - uid: 5542 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 4812 + - uid: 5543 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 4812 + - uid: 5580 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 4812 + - uid: 5581 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 4812 + - uid: 5582 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 4812 + - uid: 5597 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 4812 + - uid: 5782 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 4812 + - uid: 5783 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 4812 + - uid: 5784 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 4812 + - uid: 5807 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 4812 + - uid: 6311 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 4812 + - uid: 6573 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 4812 + - uid: 6579 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 4812 + - uid: 6588 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 4812 + - uid: 6589 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 4812 + - uid: 6590 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 4812 + - uid: 6591 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 4812 + - uid: 6592 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 4812 + - uid: 6593 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 4812 + - uid: 6703 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 4812 + - uid: 6710 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 4812 + - uid: 6754 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 4812 + - uid: 6755 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 4812 + - uid: 6756 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 4812 + - uid: 7196 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 4812 + - uid: 7203 + components: + - type: Transform + pos: -36.5,-38.5 + parent: 4812 + - uid: 7204 + components: + - type: Transform + pos: -37.5,-38.5 + parent: 4812 + - uid: 7205 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 4812 + - uid: 7206 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 4812 + - uid: 7207 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 4812 + - uid: 7209 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 4812 + - uid: 7210 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 4812 + - uid: 7211 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 4812 + - uid: 7229 + components: + - type: Transform + pos: -40.5,-36.5 + parent: 4812 + - uid: 7300 + components: + - type: Transform + pos: -41.5,-36.5 + parent: 4812 + - uid: 7331 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 4812 + - uid: 7371 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 4812 + - uid: 7385 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 4812 + - uid: 7402 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 4812 + - uid: 7403 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 4812 + - uid: 7435 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 4812 + - uid: 7436 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 4812 + - uid: 7665 + components: + - type: Transform + pos: -22.5,29.5 + parent: 4812 + - uid: 7666 + components: + - type: Transform + pos: -24.5,31.5 + parent: 4812 + - uid: 7667 + components: + - type: Transform + pos: -27.5,33.5 + parent: 4812 + - uid: 7668 + components: + - type: Transform + pos: -28.5,33.5 + parent: 4812 + - uid: 7669 + components: + - type: Transform + pos: -29.5,33.5 + parent: 4812 + - uid: 7708 + components: + - type: Transform + pos: -24.5,20.5 + parent: 4812 + - uid: 7709 + components: + - type: Transform + pos: -24.5,19.5 + parent: 4812 + - uid: 7710 + components: + - type: Transform + pos: -24.5,17.5 + parent: 4812 + - uid: 7711 + components: + - type: Transform + pos: -24.5,16.5 + parent: 4812 + - uid: 7716 + components: + - type: Transform + pos: -27.5,20.5 + parent: 4812 + - uid: 7717 + components: + - type: Transform + pos: -27.5,17.5 + parent: 4812 + - uid: 7725 + components: + - type: Transform + pos: -24.5,10.5 + parent: 4812 + - uid: 7726 + components: + - type: Transform + pos: -27.5,10.5 + parent: 4812 + - uid: 7745 + components: + - type: Transform + pos: -32.5,12.5 + parent: 4812 + - uid: 7746 + components: + - type: Transform + pos: -33.5,13.5 + parent: 4812 + - uid: 7747 + components: + - type: Transform + pos: -32.5,14.5 + parent: 4812 + - uid: 7748 + components: + - type: Transform + pos: -32.5,10.5 + parent: 4812 + - uid: 7764 + components: + - type: Transform + pos: -35.5,13.5 + parent: 4812 + - uid: 8169 + components: + - type: Transform + pos: -21.5,21.5 + parent: 4812 + - uid: 8170 + components: + - type: Transform + pos: -20.5,21.5 + parent: 4812 + - uid: 8171 + components: + - type: Transform + pos: -23.5,21.5 + parent: 4812 + - uid: 8172 + components: + - type: Transform + pos: -23.5,26.5 + parent: 4812 + - uid: 8173 + components: + - type: Transform + pos: -21.5,26.5 + parent: 4812 + - uid: 8627 + components: + - type: Transform + pos: -31.5,0.5 + parent: 4812 + - uid: 8629 + components: + - type: Transform + pos: -29.5,0.5 + parent: 4812 + - uid: 8630 + components: + - type: Transform + pos: -27.5,2.5 + parent: 4812 + - uid: 8631 + components: + - type: Transform + pos: -27.5,3.5 + parent: 4812 + - uid: 8632 + components: + - type: Transform + pos: -27.5,4.5 + parent: 4812 + - uid: 8633 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 4812 + - uid: 8634 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 4812 + - uid: 8636 + components: + - type: Transform + pos: -35.5,1.5 + parent: 4812 + - uid: 8637 + components: + - type: Transform + pos: -35.5,3.5 + parent: 4812 + - uid: 8638 + components: + - type: Transform + pos: -35.5,5.5 + parent: 4812 + - uid: 8676 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 4812 + - uid: 8677 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 4812 + - uid: 8678 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 4812 + - uid: 8679 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 4812 + - uid: 8680 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 4812 + - uid: 8734 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 4812 + - uid: 8735 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 4812 + - uid: 8792 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 4812 + - uid: 9291 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 4812 + - uid: 9292 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 4812 + - uid: 9293 + components: + - type: Transform + pos: -48.5,0.5 + parent: 4812 + - uid: 9294 + components: + - type: Transform + pos: -48.5,1.5 + parent: 4812 + - uid: 9295 + components: + - type: Transform + pos: -48.5,2.5 + parent: 4812 + - uid: 9296 + components: + - type: Transform + pos: -48.5,3.5 + parent: 4812 + - uid: 9297 + components: + - type: Transform + pos: -48.5,4.5 + parent: 4812 + - uid: 9298 + components: + - type: Transform + pos: -48.5,5.5 + parent: 4812 + - uid: 9299 + components: + - type: Transform + pos: -48.5,6.5 + parent: 4812 + - uid: 9300 + components: + - type: Transform + pos: -48.5,7.5 + parent: 4812 + - uid: 9301 + components: + - type: Transform + pos: -48.5,8.5 + parent: 4812 + - uid: 9302 + components: + - type: Transform + pos: -48.5,9.5 + parent: 4812 + - uid: 9303 + components: + - type: Transform + pos: -48.5,10.5 + parent: 4812 + - uid: 9304 + components: + - type: Transform + pos: -48.5,11.5 + parent: 4812 + - uid: 9305 + components: + - type: Transform + pos: -48.5,12.5 + parent: 4812 + - uid: 9306 + components: + - type: Transform + pos: -48.5,13.5 + parent: 4812 + - uid: 9498 + components: + - type: Transform + pos: -47.5,13.5 + parent: 4812 + - uid: 9499 + components: + - type: Transform + pos: -46.5,13.5 + parent: 4812 + - uid: 9500 + components: + - type: Transform + pos: -45.5,13.5 + parent: 4812 + - uid: 9501 + components: + - type: Transform + pos: -44.5,13.5 + parent: 4812 + - uid: 9502 + components: + - type: Transform + pos: -43.5,13.5 + parent: 4812 + - uid: 9503 + components: + - type: Transform + pos: -42.5,13.5 + parent: 4812 + - uid: 9588 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 4812 + - uid: 9593 + components: + - type: Transform + pos: -47.5,-24.5 + parent: 4812 + - uid: 9599 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 4812 + - uid: 9600 + components: + - type: Transform + pos: -53.5,-26.5 + parent: 4812 + - uid: 9601 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 4812 + - uid: 9602 + components: + - type: Transform + pos: -54.5,-25.5 + parent: 4812 + - uid: 9603 + components: + - type: Transform + pos: -56.5,-23.5 + parent: 4812 + - uid: 9608 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 4812 + - uid: 9646 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 4812 + - uid: 9647 + components: + - type: Transform + pos: -12.5,-57.5 + parent: 4812 + - uid: 9648 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 4812 + - uid: 9652 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 4812 + - uid: 9655 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 4812 + - uid: 9838 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 4812 + - uid: 9839 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 4812 + - uid: 9843 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 4812 + - uid: 9869 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 4812 + - uid: 9870 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 4812 + - uid: 9872 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 4812 + - uid: 9874 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 4812 + - uid: 9893 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 4812 + - uid: 9897 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 4812 + - uid: 9898 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 4812 + - uid: 9899 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 4812 + - uid: 10154 + components: + - type: Transform + pos: -53.5,-23.5 + parent: 4812 + - uid: 10158 + components: + - type: Transform + pos: -52.5,-23.5 + parent: 4812 + - uid: 10677 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 4812 + - uid: 10678 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 4812 + - uid: 10679 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 4812 + - uid: 11047 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 4812 + - uid: 11048 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 4812 + - uid: 11071 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 4812 + - uid: 11072 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 4812 + - uid: 11074 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 4812 + - uid: 11075 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 4812 + - uid: 11076 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 4812 + - uid: 11077 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 4812 + - uid: 11078 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 4812 + - uid: 11104 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 4812 + - uid: 11126 + components: + - type: Transform + pos: 18.5,-39.5 + parent: 4812 + - uid: 11127 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 4812 + - uid: 11129 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 4812 + - uid: 11130 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 4812 + - uid: 11343 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 4812 + - uid: 11346 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 4812 + - uid: 11347 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 4812 + - uid: 11387 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 4812 + - uid: 11388 + components: + - type: Transform + pos: 32.5,-37.5 + parent: 4812 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 6252 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 4812 +- proto: ResearchDisk + entities: + - uid: 12457 + components: + - type: Transform + pos: -35.5391,27.461937 + parent: 4812 +- proto: Retractor + entities: + - uid: 6242 + components: + - type: Transform + pos: 13.5722065,-27.387243 + parent: 4812 +- proto: RevolverCapGun + entities: + - uid: 11863 + components: + - type: Transform + pos: -14.491153,4.5839243 + parent: 4812 +- proto: RockGuitarInstrument + entities: + - uid: 12366 + components: + - type: Transform + pos: -10.362962,-1.5182831 + parent: 4812 +- proto: RollerBedSpawnFolded + entities: + - uid: 6622 + components: + - type: Transform + pos: -20.448778,-14.242132 + parent: 4812 +- proto: SalvageMagnet + entities: + - uid: 2923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 4812 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 10451 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 4812 + - uid: 11693 + components: + - type: Transform + pos: 26.5,-39.5 + parent: 4812 +- proto: SawElectric + entities: + - uid: 6243 + components: + - type: Transform + pos: 16.478456,-28.465368 + parent: 4812 +- proto: Scalpel + entities: + - uid: 6245 + components: + - type: Transform + pos: 16.525331,-28.059118 + parent: 4812 +- proto: Screen + entities: + - uid: 12560 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 4812 + - uid: 12561 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 4812 + - uid: 12562 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 4812 + - uid: 12563 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 4812 + - uid: 12564 + components: + - type: Transform + pos: 1.5,1.5 + parent: 4812 + - uid: 12565 + components: + - type: Transform + pos: -6.5,10.5 + parent: 4812 + - uid: 12566 + components: + - type: Transform + pos: -1.5,21.5 + parent: 4812 + - uid: 12567 + components: + - type: Transform + pos: -21.5,15.5 + parent: 4812 + - uid: 12568 + components: + - type: Transform + pos: -27.5,6.5 + parent: 4812 + - uid: 12569 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 4812 + - uid: 12570 + components: + - type: Transform + pos: 10.5,4.5 + parent: 4812 + - uid: 12571 + components: + - type: Transform + pos: 10.5,16.5 + parent: 4812 + - uid: 12572 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 4812 + - uid: 12573 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 4812 + - uid: 12574 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 4812 + - uid: 12575 + components: + - type: Transform + pos: 26.5,1.5 + parent: 4812 + - uid: 12576 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 4812 +- proto: SecurityTechFab + entities: + - uid: 8371 + components: + - type: Transform + pos: -34.5,21.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Glass + - Plastic + - Steel +- proto: SeedExtractor + entities: + - uid: 1086 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 4812 + - uid: 8388 + components: + - type: Transform + pos: -30.5,32.5 + parent: 4812 + - uid: 9616 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 4812 + - uid: 11284 + components: + - type: Transform + pos: 21.5,-36.5 + parent: 4812 +- proto: ShardGlass + entities: + - uid: 9076 + components: + - type: Transform + pos: -30.439472,-27.54581 + parent: 4812 +- proto: ShardGlassReinforced + entities: + - uid: 11105 + components: + - type: Transform + pos: 11.590929,-33.611034 + parent: 4812 +- proto: SheetGlass + entities: + - uid: 1690 + components: + - type: Transform + pos: 5.600872,17.54953 + parent: 4812 + - uid: 3848 + components: + - type: Transform + pos: 13.673708,44.533413 + parent: 4812 + - uid: 3949 + components: + - type: Transform + pos: 10.555219,43.506973 + parent: 4812 + - uid: 6199 + components: + - type: Transform + pos: 3.6706638,-18.424206 + parent: 4812 + - uid: 6209 + components: + - type: Transform + pos: 3.6706638,-18.455456 + parent: 4812 + - uid: 8582 + components: + - type: Transform + pos: -17.233784,7.5055285 + parent: 4812 + - uid: 9726 + components: + - type: Transform + pos: -34.372757,-5.49447 + parent: 4812 + - uid: 9727 + components: + - type: Transform + pos: -34.372757,-5.49447 + parent: 4812 + - uid: 11327 + components: + - type: Transform + pos: 24.525463,-36.5151 + parent: 4812 + - uid: 11946 + components: + - type: Transform + pos: -14.576956,17.019444 + parent: 4812 + - uid: 11947 + components: + - type: Transform + pos: -14.436331,17.019444 + parent: 4812 +- proto: SheetPlasma + entities: + - uid: 3470 + components: + - type: Transform + pos: -47.48832,-13.469177 + parent: 4812 + - uid: 3849 + components: + - type: Transform + pos: 13.533083,44.486538 + parent: 4812 + - uid: 6361 + components: + - type: Transform + pos: 35.463417,-24.535076 + parent: 4812 + - uid: 11812 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 11811 + - type: Physics + canCollide: False +- proto: SheetPlasteel + entities: + - uid: 6236 + components: + - type: Transform + pos: 16.561968,-23.469662 + parent: 4812 + - uid: 10770 + components: + - type: Transform + pos: -34.51854,-5.508734 + parent: 4812 + - uid: 10771 + components: + - type: Transform + pos: -34.51854,-5.508734 + parent: 4812 + - uid: 11948 + components: + - type: Transform + pos: -14.576956,16.535069 + parent: 4812 + - uid: 11949 + components: + - type: Transform + pos: -14.420706,16.535069 + parent: 4812 +- proto: SheetPlastic + entities: + - uid: 6206 + components: + - type: Transform + pos: 3.551526,-18.367922 + parent: 4812 + - uid: 6207 + components: + - type: Transform + pos: 3.562368,-18.383547 + parent: 4812 +- proto: SheetSteel + entities: + - uid: 1691 + components: + - type: Transform + pos: 5.397747,17.54953 + parent: 4812 + - uid: 3847 + components: + - type: Transform + pos: 13.454958,44.549038 + parent: 4812 + - uid: 3950 + components: + - type: Transform + pos: 10.352094,43.506973 + parent: 4812 + - uid: 6198 + components: + - type: Transform + pos: 3.4362888,-18.40858 + parent: 4812 + - uid: 6208 + components: + - type: Transform + pos: 3.4206638,-18.40858 + parent: 4812 + - uid: 8581 + components: + - type: Transform + pos: -17.5,7.5 + parent: 4812 + - uid: 9673 + components: + - type: Transform + pos: -30.650465,5.5347195 + parent: 4812 + - uid: 9674 + components: + - type: Transform + pos: -30.650465,5.5347195 + parent: 4812 + - uid: 9725 + components: + - type: Transform + pos: -34.591507,-5.478845 + parent: 4812 + - uid: 9728 + components: + - type: Transform + pos: -34.607132,-5.478845 + parent: 4812 + - uid: 11328 + components: + - type: Transform + pos: 24.400463,-36.530724 + parent: 4812 + - uid: 11944 + components: + - type: Transform + pos: -14.514456,17.535069 + parent: 4812 + - uid: 11945 + components: + - type: Transform + pos: -14.436331,17.503819 + parent: 4812 +- proto: SheetUranium + entities: + - uid: 3749 + components: + - type: Transform + pos: -47.503944,-13.422302 + parent: 4812 +- proto: Shovel + entities: + - uid: 3275 + components: + - type: Transform + pos: 22.483086,13.479855 + parent: 4812 +- proto: ShuttersNormalOpen + entities: + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 712 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 712 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 712 + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 712 + - uid: 359 + components: + - type: Transform + pos: 2.5,4.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 712 + - uid: 360 + components: + - type: Transform + pos: 3.5,4.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 712 + - uid: 785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 1646 + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 1646 + - uid: 787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 1646 + - uid: 1929 + components: + - type: Transform + pos: -13.5,26.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 2241 + - uid: 1930 + components: + - type: Transform + pos: 5.5,27.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 1965 + - uid: 1931 + components: + - type: Transform + pos: -10.5,26.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 2241 + - uid: 2234 + components: + - type: Transform + pos: -12.5,26.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 2241 + - uid: 2235 + components: + - type: Transform + pos: 8.5,27.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 1965 + - uid: 2236 + components: + - type: Transform + pos: 7.5,27.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 1965 + - uid: 2835 + components: + - type: Transform + pos: 16.5,28.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 2844 + - uid: 2836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,30.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 2844 + - uid: 2837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 2844 + - uid: 2870 + components: + - type: Transform + pos: 16.5,36.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 2844 + - uid: 3945 + components: + - type: Transform + pos: 10.5,47.5 + parent: 4812 + - uid: 3948 + components: + - type: Transform + pos: 10.5,54.5 + parent: 4812 + - uid: 5507 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 5576 + - uid: 5508 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 5576 + - uid: 5509 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 5576 + - uid: 6570 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6587 + - uid: 6574 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6587 + - uid: 6575 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6587 + - uid: 6576 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6587 + - uid: 6577 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6587 + - uid: 6578 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6587 + - uid: 6586 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 6587 + - uid: 8153 + components: + - type: Transform + pos: -21.5,21.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 8165 + - uid: 8160 + components: + - type: Transform + pos: -20.5,21.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 8165 + - uid: 8161 + components: + - type: Transform + pos: -23.5,21.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 8165 + - uid: 10673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-8.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 10676 + - uid: 10674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-7.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 10676 + - uid: 10675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 10676 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 10959 + components: + - type: Transform + pos: -34.25,25.263674 + parent: 4812 +- proto: SignAi + entities: + - uid: 3961 + components: + - type: Transform + pos: 11.5,47.5 + parent: 4812 +- proto: SignalButton + entities: + - uid: 712 + components: + - type: Transform + pos: 4.5,5.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 360: + - Pressed: Toggle + 359: + - Pressed: Toggle + 358: + - Pressed: Toggle + 357: + - Pressed: Toggle + 356: + - Pressed: Toggle + 355: + - Pressed: Toggle + - uid: 1646 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 785: + - Pressed: Toggle + 787: + - Pressed: Toggle + 786: + - Pressed: Toggle + - uid: 1965 + components: + - type: Transform + pos: 9.5,29.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 2235: + - Pressed: Toggle + 2236: + - Pressed: Toggle + 1930: + - Pressed: Toggle + - uid: 2241 + components: + - type: Transform + pos: -14.5,27.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 1929: + - Pressed: Toggle + 2234: + - Pressed: Toggle + 1931: + - Pressed: Toggle + - uid: 2844 + components: + - type: Transform + pos: 17.5,33.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 2835: + - Pressed: Toggle + 2870: + - Pressed: Toggle + 2837: + - Pressed: Toggle + 2836: + - Pressed: Toggle + - uid: 2938 + components: + - type: Transform + pos: 21.5,26.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 2864: + - Pressed: Toggle + 2866: + - Pressed: Toggle + - uid: 5576 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 5509: + - Pressed: Toggle + 5507: + - Pressed: Toggle + 5508: + - Pressed: Toggle + - uid: 6218 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 5794: + - Pressed: Toggle + 5795: + - Pressed: Toggle + 5796: + - Pressed: Toggle + - uid: 6587 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 6574: + - Pressed: Toggle + 6576: + - Pressed: Toggle + 6575: + - Pressed: Toggle + 6577: + - Pressed: Toggle + 6578: + - Pressed: Toggle + 6570: + - Pressed: Toggle + 6586: + - Pressed: Toggle + - uid: 6690 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 5575: + - Pressed: Toggle + 5574: + - Pressed: Toggle + 5573: + - Pressed: Toggle + - uid: 8165 + components: + - type: Transform + pos: -20.5,26.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 8160: + - Pressed: Toggle + 8153: + - Pressed: Toggle + 8161: + - Pressed: Toggle + - uid: 9497 + components: + - type: Transform + pos: -45.5,18.5 + parent: 4812 + - uid: 9504 + components: + - type: Transform + pos: -41.5,13.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9496: + - Pressed: Toggle + - uid: 10676 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 10675: + - Pressed: Toggle + 10674: + - Pressed: Toggle + 10673: + - Pressed: Toggle +- proto: SignAnomaly2 + entities: + - uid: 6342 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 4812 +- proto: SignArmory + entities: + - uid: 7803 + components: + - type: Transform + pos: -36.5,18.5 + parent: 4812 +- proto: SignAtmos + entities: + - uid: 8640 + components: + - type: Transform + pos: -34.5,0.5 + parent: 4812 +- proto: SignAtmosMinsky + entities: + - uid: 8721 + components: + - type: Transform + pos: -35.5,4.5 + parent: 4812 +- proto: SignBio + entities: + - uid: 11260 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 4812 + - uid: 11261 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 4812 +- proto: SignBiohazardMed + entities: + - uid: 8868 + components: + - type: Transform + pos: -35.5,-34.5 + parent: 4812 +- proto: SignBridge + entities: + - uid: 2930 + components: + - type: Transform + pos: 1.5,21.5 + parent: 4812 +- proto: SignCargo + entities: + - uid: 2883 + components: + - type: Transform + pos: 13.5,16.5 + parent: 4812 +- proto: SignChapel + entities: + - uid: 6695 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 4812 +- proto: SignChem + entities: + - uid: 6618 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 4812 +- proto: SignChemistry1 + entities: + - uid: 6642 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 4812 +- proto: SignCloning + entities: + - uid: 8382 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 4812 +- proto: SignCryogenicsMed + entities: + - uid: 4928 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 4812 +- proto: SignDirectionalBridge + entities: + - uid: 2928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.4962993,18.70066 + parent: 4812 + - uid: 3346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.507049,12.716366 + parent: 4812 + - uid: 8310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.498999,15.711071 + parent: 4812 +- proto: SignDirectionalEng + entities: + - uid: 1467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.4997582,-10.299582 + parent: 4812 + - uid: 2926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.493349,18.685036 + parent: 4812 + - uid: 5279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.504691,-33.300663 + parent: 4812 + - uid: 8311 + components: + - type: Transform + pos: -24.498999,15.273571 + parent: 4812 + - uid: 8694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.507013,-4.2984185 + parent: 4812 +- proto: SignDirectionalEvac + entities: + - uid: 1468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.49738908,-10.299582 + parent: 4812 + - uid: 5281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5034294,-33.300663 + parent: 4812 +- proto: SignDirectionalHop + entities: + - uid: 12369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 4812 + - uid: 12370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 4812 +- proto: SignDirectionalJanitor + entities: + - uid: 12368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-10.5 + parent: 4812 +- proto: SignDirectionalMed + entities: + - uid: 1466 + components: + - type: Transform + pos: -5.504419,-10.705832 + parent: 4812 + - uid: 2927 + components: + - type: Transform + pos: -6.493349,18.29441 + parent: 4812 + - uid: 5280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.4988046,-33.706913 + parent: 4812 + - uid: 8693 + components: + - type: Transform + pos: -27.507013,-4.7046685 + parent: 4812 +- proto: SignDirectionalSci + entities: + - uid: 1469 + components: + - type: Transform + pos: 0.49738908,-10.690207 + parent: 4812 + - uid: 2929 + components: + - type: Transform + pos: 1.4962993,18.278786 + parent: 4812 + - uid: 3347 + components: + - type: Transform + pos: 13.507049,12.2966175 + parent: 4812 + - uid: 5282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5034294,-33.706913 + parent: 4812 +- proto: SignDirectionalSec + entities: + - uid: 1464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 4812 + - uid: 2924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 4812 + - uid: 5277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-33.5 + parent: 4812 + - uid: 8309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,15.5 + parent: 4812 + - uid: 8692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-4.5 + parent: 4812 +- proto: SignDirectionalSupply + entities: + - uid: 1465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 4812 + - uid: 2925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 4812 + - uid: 3345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 4812 + - uid: 5278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-33.5 + parent: 4812 +- proto: SignDisposalSpace + entities: + - uid: 6779 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 4812 + - uid: 11251 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 4812 +- proto: SignDoors + entities: + - uid: 1462 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 4812 + - uid: 2813 + components: + - type: Transform + pos: 18.5,28.5 + parent: 4812 + - uid: 2932 + components: + - type: Transform + pos: 4.5,21.5 + parent: 4812 + - uid: 4579 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 4812 + - uid: 5073 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 4812 + - uid: 5074 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 4812 +- proto: SignDrones + entities: + - uid: 11937 + components: + - type: Transform + pos: -12.5,18.5 + parent: 4812 +- proto: SignElectricalMed + entities: + - uid: 3978 + components: + - type: Transform + pos: 15.5,48.5 + parent: 4812 + - uid: 3979 + components: + - type: Transform + pos: 10.5,57.5 + parent: 4812 + - uid: 6019 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 4812 + - uid: 7171 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 4812 + - uid: 8754 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 4812 + - uid: 10601 + components: + - type: Transform + pos: -46.5,-19.5 + parent: 4812 + - uid: 10742 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 4812 +- proto: SignEngine + entities: + - uid: 10775 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 4812 +- proto: SignEngineering + entities: + - uid: 8687 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 4812 +- proto: SignExamroom + entities: + - uid: 6659 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 4812 +- proto: SignFire + entities: + - uid: 9043 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 4812 + - uid: 9689 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 4812 + - uid: 9691 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 4812 +- proto: SignFlammableMed + entities: + - uid: 10748 + components: + - type: Transform + pos: -32.5,6.5 + parent: 4812 +- proto: SignGravity + entities: + - uid: 10743 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 4812 +- proto: SignHydro1 + entities: + - uid: 1076 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 4812 +- proto: SignHydro2 + entities: + - uid: 1075 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 4812 +- proto: SignHydro3 + entities: + - uid: 6685 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 4812 +- proto: SignKiddiePlaque + entities: + - uid: 7730 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 4812 + - uid: 12227 + components: + - type: Transform + pos: -6.5,25.5 + parent: 4812 +- proto: SignLibrary + entities: + - uid: 6680 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 4812 +- proto: SignMedical + entities: + - uid: 7299 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 4812 +- proto: SignMinerDock + entities: + - uid: 3344 + components: + - type: Transform + pos: 21.5,16.5 + parent: 4812 +- proto: SignMorgue + entities: + - uid: 5046 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 4812 + - uid: 6556 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 4812 +- proto: SignNosmoking + entities: + - uid: 6195 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 4812 + - uid: 7451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 4812 + - uid: 7452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 4812 + - uid: 10861 + components: + - type: Transform + pos: -19.5,3.5 + parent: 4812 +- proto: SignPlaque + entities: + - uid: 7570 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 4812 + - uid: 8381 + components: + - type: Transform + pos: -14.5,26.5 + parent: 4812 +- proto: SignPrison + entities: + - uid: 8356 + components: + - type: Transform + pos: -28.5,21.5 + parent: 4812 +- proto: SignRadiationMed + entities: + - uid: 9692 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 4812 + - uid: 10744 + components: + - type: Transform + pos: -51.5,-14.5 + parent: 4812 +- proto: SignRND + entities: + - uid: 6644 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 4812 +- proto: SignRobo + entities: + - uid: 6178 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 4812 + - uid: 6217 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 4812 +- proto: SignScience + entities: + - uid: 6176 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 4812 +- proto: SignScience1 + entities: + - uid: 6175 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 4812 +- proto: SignScience2 + entities: + - uid: 6177 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 4812 + - uid: 6643 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 4812 +- proto: SignSecureMed + entities: + - uid: 2937 + components: + - type: Transform + pos: 4.5,27.5 + parent: 4812 + - uid: 3953 + components: + - type: Transform + pos: 6.5,49.5 + parent: 4812 + - uid: 3954 + components: + - type: Transform + pos: 14.5,49.5 + parent: 4812 + - uid: 3955 + components: + - type: Transform + pos: 14.5,55.5 + parent: 4812 + - uid: 3956 + components: + - type: Transform + pos: 6.5,55.5 + parent: 4812 + - uid: 3957 + components: + - type: Transform + pos: 8.5,46.5 + parent: 4812 + - uid: 3958 + components: + - type: Transform + pos: 12.5,46.5 + parent: 4812 + - uid: 3960 + components: + - type: Transform + pos: 2.5,44.5 + parent: 4812 + - uid: 9693 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 4812 + - uid: 10745 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 4812 +- proto: SignSecureSmall + entities: + - uid: 2931 + components: + - type: Transform + pos: -6.5,21.5 + parent: 4812 +- proto: SignSecureSmallRed + entities: + - uid: 10746 + components: + - type: Transform + pos: -37.5,6.5 + parent: 4812 +- proto: SignSecurity + entities: + - uid: 7231 + components: + - type: Transform + pos: -24.5,12.5 + parent: 4812 + - uid: 7442 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 4812 +- proto: SignSmoking + entities: + - uid: 8607 + components: + - type: Transform + pos: -15.5,11.5 + parent: 4812 + - uid: 9044 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 4812 + - uid: 10751 + components: + - type: Transform + pos: -40.5,11.5 + parent: 4812 +- proto: SignSpace + entities: + - uid: 2939 + components: + - type: Transform + pos: 22.5,26.5 + parent: 4812 + - uid: 3959 + components: + - type: Transform + pos: 4.5,46.5 + parent: 4812 + - uid: 4580 + components: + - type: Transform + pos: 32.5,1.5 + parent: 4812 + - uid: 4581 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 4812 + - uid: 4602 + components: + - type: Transform + pos: 19.5,11.5 + parent: 4812 + - uid: 5075 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 4812 + - uid: 5076 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 4812 + - uid: 5514 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 4812 + - uid: 11694 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 4812 +- proto: SignSurgery + entities: + - uid: 5010 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 4812 +- proto: SignTelecomms + entities: + - uid: 7202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-10.5 + parent: 4812 +- proto: SignToolStorage + entities: + - uid: 8609 + components: + - type: Transform + pos: -21.5,12.5 + parent: 4812 +- proto: SignToxins2 + entities: + - uid: 6645 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 4812 +- proto: SignVirology + entities: + - uid: 8870 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 4812 +- proto: SignXenolab + entities: + - uid: 11143 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 4812 +- proto: Sink + entities: + - uid: 1485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 4812 + - uid: 1660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 4812 + - uid: 2486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,28.5 + parent: 4812 + - uid: 2487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 4812 + - uid: 3402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 4812 + - uid: 4454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,8.5 + parent: 4812 + - uid: 7026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-33.5 + parent: 4812 + - uid: 8243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,27.5 + parent: 4812 + - uid: 9817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 4812 +- proto: SinkEmpty + entities: + - uid: 3580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,35.5 + parent: 4812 +- proto: SinkWide + entities: + - uid: 1078 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 4812 + - uid: 1537 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 4812 + - uid: 1653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 4812 + - uid: 1679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 4812 + - uid: 8389 + components: + - type: Transform + pos: -31.5,32.5 + parent: 4812 +- proto: SmartFridge + entities: + - uid: 933 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -6.5,-7.5 + parent: 4812 + - uid: 7186 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -18.5,-26.5 + parent: 4812 + - uid: 9020 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -40.5,-33.5 + parent: 4812 + - uid: 11100 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 10.5,-43.5 + parent: 4812 +- proto: SMESBasic + entities: + - uid: 3699 + components: + - type: MetaData + name: AI satellite Backup SMES + - type: Transform + pos: 10.5,56.5 + parent: 4812 + - uid: 3700 + components: + - type: MetaData + name: AI satellite SMES + - type: Transform + pos: 14.5,47.5 + parent: 4812 + - uid: 8722 + components: + - type: MetaData + name: SMES Bank 2 + - type: Transform + pos: -44.5,-2.5 + parent: 4812 + - uid: 8723 + components: + - type: MetaData + name: SMES Bank 1 + - type: Transform + pos: -45.5,-2.5 + parent: 4812 + - uid: 10166 + components: + - type: MetaData + name: South West Solar SMES + - type: Transform + pos: -53.5,-25.5 + parent: 4812 + - uid: 10637 + components: + - type: MetaData + name: Grav SMES + - type: Transform + pos: -47.5,-11.5 + parent: 4812 + - uid: 11392 + components: + - type: MetaData + name: South East Solar SMES + - type: Transform + pos: 33.5,-39.5 + parent: 4812 +- proto: SoapDeluxe + entities: + - uid: 2494 + components: + - type: Transform + pos: 10.47866,30.543114 + parent: 4812 +- proto: SoapNT + entities: + - uid: 2495 + components: + - type: Transform + pos: -15.503267,29.527489 + parent: 4812 +- proto: soda_dispenser + entities: + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 4812 + - uid: 10492 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 4812 +- proto: SolarPanel + entities: + - uid: 10323 + components: + - type: Transform + pos: -69.5,-21.5 + parent: 4812 + - uid: 10324 + components: + - type: Transform + pos: -69.5,-20.5 + parent: 4812 + - uid: 10325 + components: + - type: Transform + pos: -69.5,-19.5 + parent: 4812 + - uid: 10326 + components: + - type: Transform + pos: -69.5,-18.5 + parent: 4812 + - uid: 10327 + components: + - type: Transform + pos: -67.5,-21.5 + parent: 4812 + - uid: 10328 + components: + - type: Transform + pos: -67.5,-20.5 + parent: 4812 + - uid: 10329 + components: + - type: Transform + pos: -67.5,-19.5 + parent: 4812 + - uid: 10330 + components: + - type: Transform + pos: -67.5,-18.5 + parent: 4812 + - uid: 10331 + components: + - type: Transform + pos: -69.5,-26.5 + parent: 4812 + - uid: 10332 + components: + - type: Transform + pos: -69.5,-25.5 + parent: 4812 + - uid: 10333 + components: + - type: Transform + pos: -69.5,-24.5 + parent: 4812 + - uid: 10334 + components: + - type: Transform + pos: -69.5,-23.5 + parent: 4812 + - uid: 10335 + components: + - type: Transform + pos: -67.5,-26.5 + parent: 4812 + - uid: 10336 + components: + - type: Transform + pos: -67.5,-25.5 + parent: 4812 + - uid: 10337 + components: + - type: Transform + pos: -67.5,-24.5 + parent: 4812 + - uid: 10338 + components: + - type: Transform + pos: -67.5,-23.5 + parent: 4812 + - uid: 10339 + components: + - type: Transform + pos: -65.5,-26.5 + parent: 4812 + - uid: 10340 + components: + - type: Transform + pos: -65.5,-25.5 + parent: 4812 + - uid: 10341 + components: + - type: Transform + pos: -65.5,-24.5 + parent: 4812 + - uid: 10342 + components: + - type: Transform + pos: -65.5,-23.5 + parent: 4812 + - uid: 10343 + components: + - type: Transform + pos: -63.5,-26.5 + parent: 4812 + - uid: 10344 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 4812 + - uid: 10345 + components: + - type: Transform + pos: -63.5,-24.5 + parent: 4812 + - uid: 10346 + components: + - type: Transform + pos: -63.5,-23.5 + parent: 4812 + - uid: 10347 + components: + - type: Transform + pos: -61.5,-26.5 + parent: 4812 + - uid: 10348 + components: + - type: Transform + pos: -61.5,-25.5 + parent: 4812 + - uid: 10349 + components: + - type: Transform + pos: -61.5,-24.5 + parent: 4812 + - uid: 10350 + components: + - type: Transform + pos: -61.5,-23.5 + parent: 4812 + - uid: 10351 + components: + - type: Transform + pos: -59.5,-26.5 + parent: 4812 + - uid: 10352 + components: + - type: Transform + pos: -59.5,-25.5 + parent: 4812 + - uid: 10353 + components: + - type: Transform + pos: -59.5,-24.5 + parent: 4812 + - uid: 10354 + components: + - type: Transform + pos: -59.5,-23.5 + parent: 4812 + - uid: 10355 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 4812 + - uid: 10356 + components: + - type: Transform + pos: -59.5,-20.5 + parent: 4812 + - uid: 10357 + components: + - type: Transform + pos: -59.5,-19.5 + parent: 4812 + - uid: 10358 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 4812 + - uid: 10359 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 4812 + - uid: 10360 + components: + - type: Transform + pos: -61.5,-20.5 + parent: 4812 + - uid: 10361 + components: + - type: Transform + pos: -61.5,-19.5 + parent: 4812 + - uid: 10362 + components: + - type: Transform + pos: -61.5,-18.5 + parent: 4812 + - uid: 10363 + components: + - type: Transform + pos: -63.5,-21.5 + parent: 4812 + - uid: 10364 + components: + - type: Transform + pos: -63.5,-20.5 + parent: 4812 + - uid: 10365 + components: + - type: Transform + pos: -63.5,-19.5 + parent: 4812 + - uid: 10366 + components: + - type: Transform + pos: -63.5,-18.5 + parent: 4812 + - uid: 10367 + components: + - type: Transform + pos: -65.5,-21.5 + parent: 4812 + - uid: 10368 + components: + - type: Transform + pos: -65.5,-20.5 + parent: 4812 + - uid: 10369 + components: + - type: Transform + pos: -65.5,-19.5 + parent: 4812 + - uid: 10370 + components: + - type: Transform + pos: -65.5,-18.5 + parent: 4812 + - uid: 11530 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 4812 + - uid: 11531 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 4812 + - uid: 11532 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 4812 + - uid: 11533 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 4812 + - uid: 11534 + components: + - type: Transform + pos: 43.5,-35.5 + parent: 4812 + - uid: 11535 + components: + - type: Transform + pos: 43.5,-34.5 + parent: 4812 + - uid: 11536 + components: + - type: Transform + pos: 43.5,-33.5 + parent: 4812 + - uid: 11537 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 4812 + - uid: 11538 + components: + - type: Transform + pos: 45.5,-35.5 + parent: 4812 + - uid: 11539 + components: + - type: Transform + pos: 45.5,-34.5 + parent: 4812 + - uid: 11540 + components: + - type: Transform + pos: 45.5,-33.5 + parent: 4812 + - uid: 11541 + components: + - type: Transform + pos: 45.5,-32.5 + parent: 4812 + - uid: 11542 + components: + - type: Transform + pos: 47.5,-35.5 + parent: 4812 + - uid: 11543 + components: + - type: Transform + pos: 47.5,-34.5 + parent: 4812 + - uid: 11544 + components: + - type: Transform + pos: 47.5,-33.5 + parent: 4812 + - uid: 11545 + components: + - type: Transform + pos: 47.5,-32.5 + parent: 4812 + - uid: 11546 + components: + - type: Transform + pos: 49.5,-35.5 + parent: 4812 + - uid: 11547 + components: + - type: Transform + pos: 49.5,-34.5 + parent: 4812 + - uid: 11548 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 4812 + - uid: 11549 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 4812 + - uid: 11550 + components: + - type: Transform + pos: 51.5,-35.5 + parent: 4812 + - uid: 11551 + components: + - type: Transform + pos: 51.5,-34.5 + parent: 4812 + - uid: 11552 + components: + - type: Transform + pos: 51.5,-33.5 + parent: 4812 + - uid: 11553 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 4812 + - uid: 11554 + components: + - type: Transform + pos: 51.5,-40.5 + parent: 4812 + - uid: 11555 + components: + - type: Transform + pos: 51.5,-39.5 + parent: 4812 + - uid: 11556 + components: + - type: Transform + pos: 51.5,-38.5 + parent: 4812 + - uid: 11557 + components: + - type: Transform + pos: 51.5,-37.5 + parent: 4812 + - uid: 11558 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 4812 + - uid: 11559 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 4812 + - uid: 11560 + components: + - type: Transform + pos: 49.5,-38.5 + parent: 4812 + - uid: 11561 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 4812 + - uid: 11562 + components: + - type: Transform + pos: 47.5,-40.5 + parent: 4812 + - uid: 11563 + components: + - type: Transform + pos: 47.5,-39.5 + parent: 4812 + - uid: 11564 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 4812 + - uid: 11565 + components: + - type: Transform + pos: 47.5,-37.5 + parent: 4812 + - uid: 11566 + components: + - type: Transform + pos: 45.5,-40.5 + parent: 4812 + - uid: 11567 + components: + - type: Transform + pos: 45.5,-39.5 + parent: 4812 + - uid: 11568 + components: + - type: Transform + pos: 45.5,-38.5 + parent: 4812 + - uid: 11569 + components: + - type: Transform + pos: 45.5,-37.5 + parent: 4812 + - uid: 11570 + components: + - type: Transform + pos: 43.5,-40.5 + parent: 4812 + - uid: 11571 + components: + - type: Transform + pos: 43.5,-39.5 + parent: 4812 + - uid: 11572 + components: + - type: Transform + pos: 43.5,-38.5 + parent: 4812 + - uid: 11573 + components: + - type: Transform + pos: 43.5,-37.5 + parent: 4812 + - uid: 11574 + components: + - type: Transform + pos: 41.5,-40.5 + parent: 4812 + - uid: 11575 + components: + - type: Transform + pos: 41.5,-39.5 + parent: 4812 + - uid: 11576 + components: + - type: Transform + pos: 41.5,-38.5 + parent: 4812 + - uid: 11577 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 4812 +- proto: SolarTracker + entities: + - uid: 10274 + components: + - type: Transform + pos: -71.5,-22.5 + parent: 4812 + - uid: 11529 + components: + - type: Transform + pos: 53.5,-36.5 + parent: 4812 +- proto: SpawnMobAlexander + entities: + - uid: 12426 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 4812 +- proto: SpawnMobBandito + entities: + - uid: 6340 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 4812 +- proto: SpawnMobCat + entities: + - uid: 8375 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 4812 +- proto: SpawnMobCorgi + entities: + - uid: 2512 + components: + - type: Transform + pos: 5.5,26.5 + parent: 4812 +- proto: SpawnMobCow + entities: + - uid: 1566 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 4812 +- proto: SpawnMobCrabAtmos + entities: + - uid: 6638 + components: + - type: Transform + pos: -43.5,6.5 + parent: 4812 +- proto: SpawnMobDrone + entities: + - uid: 11933 + components: + - type: Transform + pos: -13.5,16.5 + parent: 4812 + - uid: 11934 + components: + - type: Transform + pos: -12.5,16.5 + parent: 4812 + - uid: 11935 + components: + - type: Transform + pos: -11.5,16.5 + parent: 4812 +- proto: SpawnMobFoxRenault + entities: + - uid: 2621 + components: + - type: Transform + pos: -15.5,22.5 + parent: 4812 +- proto: SpawnMobMcGriff + entities: + - uid: 8340 + components: + - type: Transform + pos: -35.5,17.5 + parent: 4812 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 4838 + components: + - type: Transform + pos: 2.5,7.5 + parent: 4812 +- proto: SpawnMobMouse + entities: + - uid: 4594 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 4812 + - uid: 7169 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 4812 +- proto: SpawnMobPossumMorty + entities: + - uid: 5053 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 4812 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 3281 + components: + - type: Transform + pos: 17.5,19.5 + parent: 4812 +- proto: SpawnMobShiva + entities: + - uid: 4808 + components: + - type: Transform + pos: -23.5,24.5 + parent: 4812 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 7155 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 4812 +- proto: SpawnMobSmile + entities: + - uid: 9586 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 4812 +- proto: SpawnMobWalter + entities: + - uid: 6647 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 4812 +- proto: SpawnPointAtmos + entities: + - uid: 3259 + components: + - type: Transform + pos: -31.5,2.5 + parent: 4812 + - uid: 3468 + components: + - type: Transform + pos: -30.5,3.5 + parent: 4812 +- proto: SpawnPointBartender + entities: + - uid: 1783 + components: + - type: Transform + pos: 6.5,7.5 + parent: 4812 +- proto: SpawnPointBorg + entities: + - uid: 11922 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 4812 + - uid: 12046 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 4812 +- proto: SpawnPointBotanist + entities: + - uid: 1472 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 4812 + - uid: 1473 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 4812 +- proto: SpawnPointCaptain + entities: + - uid: 2697 + components: + - type: Transform + pos: -11.5,28.5 + parent: 4812 +- proto: SpawnPointCargoTechnician + entities: + - uid: 3282 + components: + - type: Transform + pos: 15.5,18.5 + parent: 4812 + - uid: 3283 + components: + - type: Transform + pos: 19.5,19.5 + parent: 4812 +- proto: SpawnPointChaplain + entities: + - uid: 7633 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 4812 +- proto: SpawnPointChef + entities: + - uid: 1567 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 4812 +- proto: SpawnPointChemist + entities: + - uid: 6648 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 4812 + - uid: 6649 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 4812 +- proto: SpawnPointChiefEngineer + entities: + - uid: 9833 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 4812 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 7859 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 4812 +- proto: SpawnPointClown + entities: + - uid: 1713 + components: + - type: Transform + pos: -9.5,1.5 + parent: 4812 +- proto: SpawnPointDetective + entities: + - uid: 12168 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 4812 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 2540 + components: + - type: Transform + pos: 7.5,28.5 + parent: 4812 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 8253 + components: + - type: Transform + pos: -22.5,27.5 + parent: 4812 +- proto: SpawnPointJanitor + entities: + - uid: 1535 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 4812 +- proto: SpawnPointLatejoin + entities: + - uid: 4707 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 4812 + - uid: 4708 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 4812 + - uid: 4713 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 4812 + - uid: 4715 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 4812 + - uid: 4716 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 4812 + - uid: 4718 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 4812 + - uid: 4720 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 4812 + - uid: 4721 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 4812 +- proto: SpawnPointLawyer + entities: + - uid: 8308 + components: + - type: Transform + pos: -17.5,16.5 + parent: 4812 +- proto: SpawnPointLibrarian + entities: + - uid: 7634 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 4812 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 8358 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 4812 + - uid: 8373 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 4812 + - uid: 8374 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 4812 +- proto: SpawnPointMedicalIntern + entities: + - uid: 7860 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 4812 + - uid: 8357 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 4812 +- proto: SpawnPointMime + entities: + - uid: 1715 + components: + - type: Transform + pos: -9.5,0.5 + parent: 4812 +- proto: SpawnPointMusician + entities: + - uid: 1722 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 4812 +- proto: SpawnPointObserver + entities: + - uid: 5059 + components: + - type: Transform + pos: -2.5,2.5 + parent: 4812 +- proto: SpawnPointPassenger + entities: + - uid: 12382 + components: + - type: Transform + pos: -19.5,8.5 + parent: 4812 + - uid: 12383 + components: + - type: Transform + pos: -18.5,11.5 + parent: 4812 + - uid: 12384 + components: + - type: Transform + pos: -17.5,9.5 + parent: 4812 + - uid: 12385 + components: + - type: Transform + pos: -20.5,10.5 + parent: 4812 +- proto: SpawnPointQuartermaster + entities: + - uid: 3449 + components: + - type: Transform + pos: 16.5,34.5 + parent: 4812 +- proto: SpawnPointResearchAssistant + entities: + - uid: 12519 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 4812 +- proto: SpawnPointResearchDirector + entities: + - uid: 6305 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 4812 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 3284 + components: + - type: Transform + pos: 23.5,15.5 + parent: 4812 + - uid: 7465 + components: + - type: Transform + pos: 23.5,14.5 + parent: 4812 +- proto: SpawnPointScientist + entities: + - uid: 12499 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 4812 + - uid: 12500 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 4812 + - uid: 12501 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 4812 + - uid: 12502 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 4812 +- proto: SpawnPointSecurityCadet + entities: + - uid: 8440 + components: + - type: Transform + pos: -34.5,11.5 + parent: 4812 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 8441 + components: + - type: Transform + pos: -35.5,11.5 + parent: 4812 + - uid: 8442 + components: + - type: Transform + pos: -36.5,11.5 + parent: 4812 +- proto: SpawnPointServiceWorker + entities: + - uid: 12386 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 4812 +- proto: SpawnPointStationEngineer + entities: + - uid: 10844 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 4812 + - uid: 10845 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 4812 + - uid: 10846 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 4812 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 10903 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 4812 +- proto: SpawnPointWarden + entities: + - uid: 8336 + components: + - type: Transform + pos: -34.5,15.5 + parent: 4812 +- proto: SpawnVehicleJanicart + entities: + - uid: 1481 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 4812 +- proto: SpawnVehicleSecway + entities: + - uid: 8348 + components: + - type: Transform + pos: -31.5,19.5 + parent: 4812 +- proto: Spoon + entities: + - uid: 1774 + components: + - type: Transform + pos: -2.3316398,2.6041236 + parent: 4812 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 1491 + components: + - type: Transform + pos: -23.528929,-7.7805715 + parent: 4812 + - uid: 1492 + components: + - type: Transform + pos: -23.435179,-7.6711965 + parent: 4812 +- proto: StasisBed + entities: + - uid: 7574 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 4812 +- proto: StationMap + entities: + - uid: 3772 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 4812 + - uid: 4005 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 4812 + - uid: 6689 + components: + - type: Transform + pos: -12.5,21.5 + parent: 4812 + - uid: 7296 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 4812 + - uid: 7297 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 4812 +- proto: Stool + entities: + - uid: 1752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 4812 + - uid: 8402 + components: + - type: Transform + pos: -29.5,31.5 + parent: 4812 + - uid: 8403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,29.5 + parent: 4812 + - uid: 8404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,30.5 + parent: 4812 + - uid: 8412 + components: + - type: Transform + pos: -31.5,27.5 + parent: 4812 + - uid: 8413 + components: + - type: Transform + pos: -27.5,27.5 + parent: 4812 + - uid: 10497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-29.5 + parent: 4812 + - uid: 10867 + components: + - type: Transform + pos: -22.5,1.5 + parent: 4812 + - uid: 10868 + components: + - type: Transform + pos: -21.5,1.5 + parent: 4812 + - uid: 10869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-0.5 + parent: 4812 + - uid: 12148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,4.5 + parent: 4812 +- proto: StoolBar + entities: + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 4812 + - uid: 346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 4812 + - uid: 347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 4812 + - uid: 348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 4812 + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 4812 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 4812 + - uid: 887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 4812 + - uid: 888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 4812 + - uid: 889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 4812 + - uid: 10495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-26.5 + parent: 4812 + - uid: 10496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-26.5 + parent: 4812 +- proto: StorageCanister + entities: + - uid: 6325 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 6326 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9553 + components: + - type: Transform + pos: -41.5,6.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9554 + components: + - type: Transform + pos: -41.5,7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9555 + components: + - type: Transform + pos: -41.5,8.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9665 + components: + - type: Transform + pos: -34.5,4.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 9666 + components: + - type: Transform + pos: -34.5,5.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 + - uid: 12462 + components: + - type: Transform + pos: -36.5,26.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: SubstationBasic + entities: + - uid: 897 + components: + - type: MetaData + name: Dorm Substation + - type: Transform + pos: -14.5,7.5 + parent: 4812 + - uid: 1360 + components: + - type: MetaData + name: Bar Substation + - type: Transform + pos: 5.5,4.5 + parent: 4812 + - uid: 2076 + components: + - type: MetaData + name: Bridge Substation + - type: Transform + pos: 6.5,31.5 + parent: 4812 + - uid: 2821 + components: + - type: MetaData + name: Cargo Substation + - type: Transform + pos: 13.5,32.5 + parent: 4812 + - uid: 3787 + components: + - type: MetaData + name: AI satellite Substation + - type: Transform + pos: 13.5,47.5 + parent: 4812 + - uid: 4234 + components: + - type: MetaData + name: Evac Substation + - type: Transform + pos: 17.5,2.5 + parent: 4812 + - uid: 5913 + components: + - type: MetaData + name: South Science Substation + - type: Transform + pos: 16.5,-30.5 + parent: 4812 + - uid: 6899 + components: + - type: MetaData + name: Arrivals Substation + - type: Transform + pos: -8.5,-30.5 + parent: 4812 + - uid: 7957 + components: + - type: MetaData + name: Atmos Substation + - type: Transform + pos: -37.5,8.5 + parent: 4812 + - uid: 9959 + components: + - type: MetaData + name: Engi Substation + - type: Transform + pos: -48.5,-19.5 + parent: 4812 + - uid: 10182 + components: + - type: MetaData + name: South West Solar Substation + - type: Transform + pos: -50.5,-25.5 + parent: 4812 + - uid: 10649 + components: + - type: MetaData + name: Grav Substation + - type: Transform + pos: -53.5,-13.5 + parent: 4812 + - uid: 11435 + components: + - type: MetaData + name: South East Solar Substation + - type: Transform + pos: 30.5,-39.5 + parent: 4812 +- proto: SuitStorageAtmos + entities: + - uid: 742 + components: + - type: Transform + pos: -41.5,9.5 + parent: 4812 + - uid: 4846 + components: + - type: Transform + pos: -41.5,10.5 + parent: 4812 +- proto: SuitStorageCaptain + entities: + - uid: 746 + components: + - type: Transform + pos: -10.5,27.5 + parent: 4812 +- proto: SuitStorageCE + entities: + - uid: 747 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 4812 +- proto: SuitStorageEngi + entities: + - uid: 2584 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 4812 + - uid: 4843 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 4812 + - uid: 4855 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 4812 +- proto: SuitStorageEVA + entities: + - uid: 738 + components: + - type: Transform + pos: 9.5,16.5 + parent: 4812 + - uid: 743 + components: + - type: Transform + pos: 5.5,15.5 + parent: 4812 + - uid: 4844 + components: + - type: Transform + pos: 5.5,16.5 + parent: 4812 + - uid: 4845 + components: + - type: Transform + pos: 9.5,15.5 + parent: 4812 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 6572 + components: + - type: Transform + pos: -31.5,24.5 + parent: 4812 + - uid: 7058 + components: + - type: Transform + pos: -25.5,24.5 + parent: 4812 +- proto: SuitStorageHOS + entities: + - uid: 740 + components: + - type: Transform + pos: -23.5,22.5 + parent: 4812 +- proto: SuitStorageRD + entities: + - uid: 735 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 4812 +- proto: SuitStorageSec + entities: + - uid: 736 + components: + - type: Transform + pos: -35.5,21.5 + parent: 4812 +- proto: SuitStorageWarden + entities: + - uid: 745 + components: + - type: Transform + pos: -36.5,21.5 + parent: 4812 +- proto: SurveillanceCameraCommand + entities: + - uid: 12081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,29.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Bedroom + - uid: 12082 + components: + - type: Transform + pos: -12.5,22.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Office + - uid: 12084 + components: + - type: Transform + pos: 1.5,32.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge + - uid: 12085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP's Room + - uid: 12086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,26.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP's Office + - uid: 12087 + components: + - type: Transform + pos: -1.5,22.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + - uid: 12090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,55.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core 2 + - uid: 12091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,50.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core 1 + - uid: 12092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,46.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core Entrance + - uid: 12522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,24.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoS office + - uid: 12523 + components: + - type: Transform + pos: -12.5,15.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Drone bay + - uid: 12524 + components: + - type: Transform + pos: 7.5,14.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EvA Storage +- proto: SurveillanceCameraEngineering + entities: + - uid: 12064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Grav Gen + - uid: 12065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Chief Engineer Room + - uid: 12066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-14.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME Room + - uid: 12067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Lobby + - uid: 12068 + components: + - type: Transform + pos: -42.5,0.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics +- proto: SurveillanceCameraGeneral + entities: + - uid: 12060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,12.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Security Hallway + - uid: 12528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of engineering + - uid: 12529 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hydro and medbay + - uid: 12530 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Science and detective + - uid: 12531 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of service + - uid: 12532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of medbay + - uid: 12533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of science + - uid: 12534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-31.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance 3 + - uid: 12535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-39.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance 2 + - uid: 12536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-53.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance 1 + - uid: 12537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of cargo + - uid: 12538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service and evac + - uid: 12539 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of evac + - uid: 12540 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evacuation 1 + - uid: 12541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evacuation 2 + - uid: 12542 + components: + - type: Transform + pos: 1.5,19.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance of bridge + - uid: 12543 + components: + - type: Transform + pos: -16.5,19.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Security and drones + - uid: 12544 + components: + - type: Transform + pos: -19.5,1.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dormitory +- proto: SurveillanceCameraMedical + entities: + - uid: 12072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 12105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-33.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 2732 + components: + - type: Transform + pos: -0.5,26.5 + parent: 4812 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 10668 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 4812 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 7396 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 4812 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 7448 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 4812 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 12045 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 4812 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 8372 + components: + - type: Transform + pos: -33.5,21.5 + parent: 4812 +- proto: SurveillanceCameraRouterService + entities: + - uid: 10658 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 4812 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 3578 + components: + - type: Transform + pos: 15.5,32.5 + parent: 4812 +- proto: SurveillanceCameraScience + entities: + - uid: 12075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Toxins + - uid: 12076 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Server Room + - uid: 12077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Research and Development + - uid: 12078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-23.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + - uid: 12079 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Research Director's Room +- proto: SurveillanceCameraSecurity + entities: + - uid: 12058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,20.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 12059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,15.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security + - uid: 12061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,15.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's Office + - uid: 12062 + components: + - type: Transform + pos: -35.5,10.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Sec Break Room + - uid: 12063 + components: + - type: Transform + pos: -28.5,29.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Brig + - uid: 12080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Checkpoint + - uid: 12521 + components: + - type: Transform + pos: -17.5,14.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer office + - uid: 12527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-15.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective office +- proto: SurveillanceCameraService + entities: + - uid: 12546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-5.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + - uid: 12547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-14.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Library + - uid: 12548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + - uid: 12549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 12550 + components: + - type: Transform + pos: 6.5,6.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bartenders room + - uid: 12551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Service 2 + - uid: 12552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Service 1 + - uid: 12553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Clowns room + - uid: 12554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Theater + - uid: 12555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-6.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitors room + - uid: 12556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-33.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chapel 1 +- proto: SurveillanceCameraSupply + entities: + - uid: 12088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,27.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Bay + - uid: 12089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Lobby + - uid: 12525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,35.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: QM Room + - uid: 12526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,12.5 + parent: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvagers +- proto: Syringe + entities: + - uid: 6248 + components: + - type: Transform + pos: 16.462831,-27.480993 + parent: 4812 + - uid: 7685 + components: + - type: Transform + pos: -14.597183,-25.438694 + parent: 4812 +- proto: SyringeInaprovaline + entities: + - uid: 7585 + components: + - type: Transform + pos: -15.483852,-23.427011 + parent: 4812 +- proto: Table + entities: + - uid: 1095 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 4812 + - uid: 1096 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 4812 + - uid: 1101 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 4812 + - uid: 1102 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 4812 + - uid: 1453 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 4812 + - uid: 1554 + components: + - type: Transform + pos: 7.5,0.5 + parent: 4812 + - uid: 1651 + components: + - type: Transform + pos: 7.5,8.5 + parent: 4812 + - uid: 1801 + components: + - type: Transform + pos: -4.5,14.5 + parent: 4812 + - uid: 2485 + components: + - type: Transform + pos: 10.5,22.5 + parent: 4812 + - uid: 2720 + components: + - type: Transform + pos: -1.5,24.5 + parent: 4812 + - uid: 2721 + components: + - type: Transform + pos: -3.5,24.5 + parent: 4812 + - uid: 3234 + components: + - type: Transform + pos: 20.5,17.5 + parent: 4812 + - uid: 3235 + components: + - type: Transform + pos: 14.5,18.5 + parent: 4812 + - uid: 3244 + components: + - type: Transform + pos: 17.5,13.5 + parent: 4812 + - uid: 3266 + components: + - type: Transform + pos: 22.5,12.5 + parent: 4812 + - uid: 3447 + components: + - type: Transform + pos: 22.5,3.5 + parent: 4812 + - uid: 3755 + components: + - type: Transform + pos: 15.5,35.5 + parent: 4812 + - uid: 3756 + components: + - type: Transform + pos: 17.5,31.5 + parent: 4812 + - uid: 3843 + components: + - type: Transform + pos: 13.5,44.5 + parent: 4812 + - uid: 3844 + components: + - type: Transform + pos: 15.5,47.5 + parent: 4812 + - uid: 3850 + components: + - type: Transform + pos: 10.5,43.5 + parent: 4812 + - uid: 3851 + components: + - type: Transform + pos: 9.5,56.5 + parent: 4812 + - uid: 3852 + components: + - type: Transform + pos: 11.5,56.5 + parent: 4812 + - uid: 3946 + components: + - type: Transform + pos: 9.5,48.5 + parent: 4812 + - uid: 3947 + components: + - type: Transform + pos: 11.5,48.5 + parent: 4812 + - uid: 4455 + components: + - type: Transform + pos: 14.5,6.5 + parent: 4812 + - uid: 4490 + components: + - type: Transform + pos: 20.5,2.5 + parent: 4812 + - uid: 4534 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 4812 + - uid: 4547 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 4812 + - uid: 4548 + components: + - type: Transform + pos: 27.5,0.5 + parent: 4812 + - uid: 4597 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 4812 + - uid: 4598 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 4812 + - uid: 4985 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 4812 + - uid: 6181 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 4812 + - uid: 6190 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 4812 + - uid: 6192 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 4812 + - uid: 6228 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 4812 + - uid: 6254 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 4812 + - uid: 6255 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 4812 + - uid: 6256 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 4812 + - uid: 6257 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 4812 + - uid: 6314 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 4812 + - uid: 6323 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 4812 + - uid: 6343 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 4812 + - uid: 6353 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 4812 + - uid: 6482 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 4812 + - uid: 7189 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 4812 + - uid: 7406 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 4812 + - uid: 8364 + components: + - type: Transform + pos: -26.5,10.5 + parent: 4812 + - uid: 8400 + components: + - type: Transform + pos: -28.5,30.5 + parent: 4812 + - uid: 8401 + components: + - type: Transform + pos: -29.5,30.5 + parent: 4812 + - uid: 8410 + components: + - type: Transform + pos: -31.5,26.5 + parent: 4812 + - uid: 8411 + components: + - type: Transform + pos: -27.5,26.5 + parent: 4812 + - uid: 8425 + components: + - type: Transform + pos: -38.5,12.5 + parent: 4812 + - uid: 8426 + components: + - type: Transform + pos: -39.5,12.5 + parent: 4812 + - uid: 8427 + components: + - type: Transform + pos: -39.5,11.5 + parent: 4812 + - uid: 8439 + components: + - type: Transform + pos: -37.5,10.5 + parent: 4812 + - uid: 9585 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 4812 + - uid: 10488 + components: + - type: Transform + pos: -37.5,-25.5 + parent: 4812 + - uid: 10489 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 4812 + - uid: 10490 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 4812 + - uid: 10491 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 4812 + - uid: 10709 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 4812 + - uid: 10729 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 4812 + - uid: 10730 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 4812 + - uid: 10731 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 4812 + - uid: 10857 + components: + - type: Transform + pos: -22.5,3.5 + parent: 4812 + - uid: 10858 + components: + - type: Transform + pos: -22.5,0.5 + parent: 4812 + - uid: 10859 + components: + - type: Transform + pos: -21.5,0.5 + parent: 4812 + - uid: 10907 + components: + - type: Transform + pos: -44.5,-24.5 + parent: 4812 + - uid: 10908 + components: + - type: Transform + pos: -44.5,-23.5 + parent: 4812 + - uid: 11466 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 4812 + - uid: 11662 + components: + - type: Transform + pos: 25.5,-40.5 + parent: 4812 + - uid: 11842 + components: + - type: Transform + pos: -7.5,12.5 + parent: 4812 + - uid: 11879 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 4812 + - uid: 12114 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 4812 + - uid: 12115 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 4812 + - uid: 12493 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 4812 +- proto: TableCarpet + entities: + - uid: 257 + components: + - type: Transform + pos: -18.5,5.5 + parent: 4812 + - uid: 7047 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 4812 + - uid: 7048 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 4812 + - uid: 7049 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 4812 + - uid: 7050 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 4812 + - uid: 10499 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 4812 + - uid: 10500 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 4812 + - uid: 10501 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 4812 +- proto: TableGlass + entities: + - uid: 1085 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 4812 + - uid: 1087 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 4812 + - uid: 1088 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 4812 + - uid: 1089 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 4812 + - uid: 1090 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 4812 + - uid: 6612 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 4812 + - uid: 6613 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 4812 + - uid: 6614 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 4812 + - uid: 6652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 4812 + - uid: 7426 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 4812 + - uid: 7443 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 4812 + - uid: 7457 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 4812 + - uid: 7576 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 4812 + - uid: 7577 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 4812 + - uid: 7578 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 4812 + - uid: 9023 + components: + - type: Transform + pos: -39.5,-35.5 + parent: 4812 + - uid: 9024 + components: + - type: Transform + pos: -40.5,-35.5 + parent: 4812 + - uid: 9025 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 4812 + - uid: 10659 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 4812 +- proto: TableReinforced + entities: + - uid: 144 + components: + - type: Transform + pos: -14.5,17.5 + parent: 4812 + - uid: 175 + components: + - type: Transform + pos: -14.5,16.5 + parent: 4812 + - uid: 311 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 4812 + - uid: 312 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 4812 + - uid: 313 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 4812 + - uid: 314 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 4812 + - uid: 315 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 4812 + - uid: 316 + components: + - type: Transform + pos: 3.5,4.5 + parent: 4812 + - uid: 317 + components: + - type: Transform + pos: 2.5,4.5 + parent: 4812 + - uid: 320 + components: + - type: Transform + pos: 1.5,6.5 + parent: 4812 + - uid: 321 + components: + - type: Transform + pos: 1.5,7.5 + parent: 4812 + - uid: 322 + components: + - type: Transform + pos: 1.5,8.5 + parent: 4812 + - uid: 323 + components: + - type: Transform + pos: 1.5,9.5 + parent: 4812 + - uid: 730 + components: + - type: Transform + pos: 5.5,17.5 + parent: 4812 + - uid: 731 + components: + - type: Transform + pos: 5.5,14.5 + parent: 4812 + - uid: 734 + components: + - type: Transform + pos: 7.5,16.5 + parent: 4812 + - uid: 1487 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 4812 + - uid: 1488 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 4812 + - uid: 1557 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 4812 + - uid: 1558 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 4812 + - uid: 1559 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 4812 + - uid: 1560 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 4812 + - uid: 2229 + components: + - type: Transform + pos: 9.5,23.5 + parent: 4812 + - uid: 2650 + components: + - type: Transform + pos: -3.5,34.5 + parent: 4812 + - uid: 2651 + components: + - type: Transform + pos: -3.5,35.5 + parent: 4812 + - uid: 2653 + components: + - type: Transform + pos: -1.5,35.5 + parent: 4812 + - uid: 2660 + components: + - type: Transform + pos: 1.5,34.5 + parent: 4812 + - uid: 2661 + components: + - type: Transform + pos: -6.5,34.5 + parent: 4812 + - uid: 2663 + components: + - type: Transform + pos: -8.5,34.5 + parent: 4812 + - uid: 2698 + components: + - type: Transform + pos: 0.5,26.5 + parent: 4812 + - uid: 2702 + components: + - type: Transform + pos: 0.5,22.5 + parent: 4812 + - uid: 2703 + components: + - type: Transform + pos: -5.5,22.5 + parent: 4812 + - uid: 2704 + components: + - type: Transform + pos: -5.5,23.5 + parent: 4812 + - uid: 2705 + components: + - type: Transform + pos: -5.5,24.5 + parent: 4812 + - uid: 2706 + components: + - type: Transform + pos: -5.5,25.5 + parent: 4812 + - uid: 2707 + components: + - type: Transform + pos: -5.5,26.5 + parent: 4812 + - uid: 2854 + components: + - type: Transform + pos: 15.5,16.5 + parent: 4812 + - uid: 3232 + components: + - type: Transform + pos: 19.5,21.5 + parent: 4812 + - uid: 3233 + components: + - type: Transform + pos: 20.5,21.5 + parent: 4812 + - uid: 4430 + components: + - type: Transform + pos: 28.5,1.5 + parent: 4812 + - uid: 4431 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 4812 + - uid: 4562 + components: + - type: Transform + pos: 27.5,3.5 + parent: 4812 + - uid: 4563 + components: + - type: Transform + pos: 27.5,4.5 + parent: 4812 + - uid: 4564 + components: + - type: Transform + pos: 28.5,4.5 + parent: 4812 + - uid: 4578 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 4812 + - uid: 5306 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 4812 + - uid: 5431 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 4812 + - uid: 5503 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 4812 + - uid: 5504 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 4812 + - uid: 6186 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 4812 + - uid: 6187 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 4812 + - uid: 6188 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 4812 + - uid: 6189 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 4812 + - uid: 6219 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 4812 + - uid: 6220 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 4812 + - uid: 6221 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 4812 + - uid: 6222 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 4812 + - uid: 6224 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 4812 + - uid: 6225 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 4812 + - uid: 6335 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 4812 + - uid: 6345 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 4812 + - uid: 6347 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 4812 + - uid: 6382 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 4812 + - uid: 6476 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 4812 + - uid: 6477 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 4812 + - uid: 6580 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 4812 + - uid: 6581 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 4812 + - uid: 6737 + components: + - type: Transform + pos: -26.5,22.5 + parent: 4812 + - uid: 7030 + components: + - type: Transform + pos: -28.5,22.5 + parent: 4812 + - uid: 7066 + components: + - type: Transform + pos: -27.5,22.5 + parent: 4812 + - uid: 7419 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 4812 + - uid: 7462 + components: + - type: Transform + pos: -14.5,-25.5 + parent: 4812 + - uid: 7752 + components: + - type: Transform + pos: -24.5,11.5 + parent: 4812 + - uid: 7777 + components: + - type: Transform + pos: -25.5,12.5 + parent: 4812 + - uid: 7778 + components: + - type: Transform + pos: -26.5,12.5 + parent: 4812 + - uid: 7787 + components: + - type: Transform + pos: -32.5,15.5 + parent: 4812 + - uid: 8333 + components: + - type: Transform + pos: -36.5,15.5 + parent: 4812 + - uid: 8334 + components: + - type: Transform + pos: -36.5,16.5 + parent: 4812 + - uid: 8335 + components: + - type: Transform + pos: -36.5,17.5 + parent: 4812 + - uid: 8343 + components: + - type: Transform + pos: -31.5,12.5 + parent: 4812 + - uid: 8344 + components: + - type: Transform + pos: -31.5,14.5 + parent: 4812 + - uid: 8347 + components: + - type: Transform + pos: -31.5,20.5 + parent: 4812 + - uid: 8447 + components: + - type: Transform + pos: -28.5,10.5 + parent: 4812 + - uid: 8448 + components: + - type: Transform + pos: -29.5,10.5 + parent: 4812 + - uid: 8449 + components: + - type: Transform + pos: -30.5,10.5 + parent: 4812 + - uid: 8564 + components: + - type: Transform + pos: -19.5,9.5 + parent: 4812 + - uid: 8565 + components: + - type: Transform + pos: -19.5,10.5 + parent: 4812 + - uid: 8566 + components: + - type: Transform + pos: -18.5,10.5 + parent: 4812 + - uid: 8567 + components: + - type: Transform + pos: -18.5,9.5 + parent: 4812 + - uid: 8568 + components: + - type: Transform + pos: -18.5,12.5 + parent: 4812 + - uid: 8569 + components: + - type: Transform + pos: -19.5,12.5 + parent: 4812 + - uid: 8570 + components: + - type: Transform + pos: -20.5,12.5 + parent: 4812 + - uid: 8571 + components: + - type: Transform + pos: -20.5,7.5 + parent: 4812 + - uid: 8572 + components: + - type: Transform + pos: -17.5,7.5 + parent: 4812 + - uid: 8573 + components: + - type: Transform + pos: -16.5,7.5 + parent: 4812 + - uid: 8574 + components: + - type: Transform + pos: -16.5,8.5 + parent: 4812 + - uid: 8628 + components: + - type: Transform + pos: -30.5,0.5 + parent: 4812 + - uid: 8682 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 4812 + - uid: 9568 + components: + - type: Transform + pos: -30.5,4.5 + parent: 4812 + - uid: 9569 + components: + - type: Transform + pos: -30.5,5.5 + parent: 4812 + - uid: 9573 + components: + - type: Transform + pos: -28.5,1.5 + parent: 4812 + - uid: 9724 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 4812 + - uid: 9729 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 4812 + - uid: 9730 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 4812 + - uid: 9731 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 4812 + - uid: 10633 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 4812 + - uid: 10634 + components: + - type: Transform + pos: -48.5,-8.5 + parent: 4812 + - uid: 10703 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 4812 + - uid: 10847 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 4812 + - uid: 10848 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 4812 + - uid: 11144 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 4812 + - uid: 11145 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 4812 + - uid: 11146 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 4812 + - uid: 11862 + components: + - type: Transform + pos: -14.5,4.5 + parent: 4812 + - uid: 11929 + components: + - type: Transform + pos: -14.5,15.5 + parent: 4812 + - uid: 11930 + components: + - type: Transform + pos: -10.5,15.5 + parent: 4812 + - uid: 11931 + components: + - type: Transform + pos: -10.5,16.5 + parent: 4812 + - uid: 11932 + components: + - type: Transform + pos: -10.5,17.5 + parent: 4812 + - uid: 12054 + components: + - type: Transform + pos: -33.5,20.5 + parent: 4812 +- proto: TableReinforcedGlass + entities: + - uid: 6303 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 4812 + - uid: 6304 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 4812 +- proto: TableWood + entities: + - uid: 259 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 4812 + - uid: 362 + components: + - type: Transform + pos: 3.5,8.5 + parent: 4812 + - uid: 363 + components: + - type: Transform + pos: 3.5,9.5 + parent: 4812 + - uid: 936 + components: + - type: Transform + pos: -6.5,8.5 + parent: 4812 + - uid: 939 + components: + - type: Transform + pos: -6.5,4.5 + parent: 4812 + - uid: 1040 + components: + - type: Transform + pos: -2.5,9.5 + parent: 4812 + - uid: 1041 + components: + - type: Transform + pos: -2.5,8.5 + parent: 4812 + - uid: 1042 + components: + - type: Transform + pos: -2.5,7.5 + parent: 4812 + - uid: 1043 + components: + - type: Transform + pos: -2.5,6.5 + parent: 4812 + - uid: 1044 + components: + - type: Transform + pos: -2.5,3.5 + parent: 4812 + - uid: 1045 + components: + - type: Transform + pos: -2.5,2.5 + parent: 4812 + - uid: 1046 + components: + - type: Transform + pos: -2.5,1.5 + parent: 4812 + - uid: 1047 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 4812 + - uid: 1048 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 4812 + - uid: 1049 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 4812 + - uid: 1050 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 4812 + - uid: 1694 + components: + - type: Transform + pos: -10.5,1.5 + parent: 4812 + - uid: 1695 + components: + - type: Transform + pos: -10.5,0.5 + parent: 4812 + - uid: 1696 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 4812 + - uid: 1697 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 4812 + - uid: 1698 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 4812 + - uid: 1732 + components: + - type: Transform + pos: -10.5,3.5 + parent: 4812 + - uid: 1733 + components: + - type: Transform + pos: -10.5,4.5 + parent: 4812 + - uid: 1734 + components: + - type: Transform + pos: -10.5,5.5 + parent: 4812 + - uid: 1735 + components: + - type: Transform + pos: -10.5,6.5 + parent: 4812 + - uid: 1736 + components: + - type: Transform + pos: -10.5,7.5 + parent: 4812 + - uid: 1737 + components: + - type: Transform + pos: -10.5,8.5 + parent: 4812 + - uid: 1738 + components: + - type: Transform + pos: -10.5,9.5 + parent: 4812 + - uid: 2498 + components: + - type: Transform + pos: 5.5,29.5 + parent: 4812 + - uid: 2506 + components: + - type: Transform + pos: 8.5,24.5 + parent: 4812 + - uid: 2509 + components: + - type: Transform + pos: 9.5,26.5 + parent: 4812 + - uid: 2516 + components: + - type: Transform + pos: 8.5,26.5 + parent: 4812 + - uid: 2537 + components: + - type: Transform + pos: 8.5,29.5 + parent: 4812 + - uid: 2579 + components: + - type: Transform + pos: -13.5,27.5 + parent: 4812 + - uid: 2583 + components: + - type: Transform + pos: -10.5,29.5 + parent: 4812 + - uid: 2586 + components: + - type: Transform + pos: -12.5,27.5 + parent: 4812 + - uid: 2596 + components: + - type: Transform + pos: -12.5,22.5 + parent: 4812 + - uid: 2597 + components: + - type: Transform + pos: -12.5,23.5 + parent: 4812 + - uid: 2599 + components: + - type: Transform + pos: -10.5,25.5 + parent: 4812 + - uid: 2634 + components: + - type: Transform + pos: -2.5,28.5 + parent: 4812 + - uid: 2645 + components: + - type: Transform + pos: -2.5,29.5 + parent: 4812 + - uid: 5043 + components: + - type: Transform + pos: 6.5,24.5 + parent: 4812 + - uid: 5365 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 4812 + - uid: 5367 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 4812 + - uid: 5368 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 4812 + - uid: 5369 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 4812 + - uid: 5373 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 4812 + - uid: 6282 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 4812 + - uid: 6283 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 4812 + - uid: 6284 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 4812 + - uid: 6285 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 4812 + - uid: 6386 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 4812 + - uid: 6387 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 4812 + - uid: 6388 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 4812 + - uid: 6389 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 4812 + - uid: 7002 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 4812 + - uid: 7004 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 4812 + - uid: 7017 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 4812 + - uid: 7018 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 4812 + - uid: 7039 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 4812 + - uid: 7040 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 4812 + - uid: 7051 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 4812 + - uid: 7052 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 4812 + - uid: 7055 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 4812 + - uid: 7056 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 4812 + - uid: 7057 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 4812 + - uid: 7125 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 4812 + - uid: 7126 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 4812 + - uid: 7127 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 4812 + - uid: 8246 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 4812 + - uid: 8255 + components: + - type: Transform + pos: -19.5,22.5 + parent: 4812 + - uid: 8256 + components: + - type: Transform + pos: -20.5,22.5 + parent: 4812 + - uid: 8257 + components: + - type: Transform + pos: -21.5,22.5 + parent: 4812 + - uid: 8258 + components: + - type: Transform + pos: -21.5,23.5 + parent: 4812 + - uid: 8259 + components: + - type: Transform + pos: -21.5,24.5 + parent: 4812 + - uid: 8271 + components: + - type: Transform + pos: -17.5,14.5 + parent: 4812 + - uid: 8273 + components: + - type: Transform + pos: -18.5,15.5 + parent: 4812 + - uid: 8274 + components: + - type: Transform + pos: -18.5,14.5 + parent: 4812 + - uid: 8294 + components: + - type: Transform + pos: -19.5,17.5 + parent: 4812 + - uid: 8394 + components: + - type: Transform + pos: -25.5,30.5 + parent: 4812 + - uid: 9051 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 4812 + - uid: 9052 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 4812 + - uid: 9078 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 4812 + - uid: 11803 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 4812 + - uid: 12420 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 4812 +- proto: TaikoInstrument + entities: + - uid: 4373 + components: + - type: Transform + pos: -27.5,32.5 + parent: 4812 +- proto: TargetHuman + entities: + - uid: 12422 + components: + - type: Transform + pos: -54.5,-16.5 + parent: 4812 +- proto: TelecomServer + entities: + - uid: 330 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 4812 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 331 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 4991 + components: + - type: Transform + pos: 17.5,32.5 + parent: 4812 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 4992 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 6662 + components: + - type: Transform + pos: -49.5,-13.5 + parent: 4812 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6663 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7247 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 4812 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7248 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7267 + components: + - type: Transform + pos: -1.5,26.5 + parent: 4812 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7268 + - 7269 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7290 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 4812 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7291 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: TintedWindow + entities: + - uid: 4859 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-13.5 + parent: 4812 + - uid: 5015 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-13.5 + parent: 4812 + - uid: 6679 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-16.5 + parent: 4812 + - uid: 6693 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-35.5 + parent: 4812 + - uid: 6757 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-37.5 + parent: 4812 + - uid: 6758 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-35.5 + parent: 4812 + - uid: 7192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-17.5 + parent: 4812 + - uid: 7193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-15.5 + parent: 4812 +- proto: ToiletDirtyWater + entities: + - uid: 7027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 4812 +- proto: ToiletEmpty + entities: + - uid: 2488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,29.5 + parent: 4812 + - uid: 2489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,27.5 + parent: 4812 + - uid: 3452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,34.5 + parent: 4812 + - uid: 4447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 4812 + - uid: 4448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 4812 + - uid: 8244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,28.5 + parent: 4812 +- proto: TomatoSeeds + entities: + - uid: 11297 + components: + - type: Transform + pos: 16.522455,-38.60528 + parent: 4812 +- proto: TomDrumsInstrument + entities: + - uid: 12367 + components: + - type: Transform + pos: -9.5,3.5 + parent: 4812 +- proto: ToolboxElectricalFilled + entities: + - uid: 3846 + components: + - type: Transform + pos: 15.560463,47.548717 + parent: 4812 + - uid: 6235 + components: + - type: Transform + pos: 11.595695,-23.434612 + parent: 4812 + - uid: 8584 + components: + - type: Transform + pos: -16.515034,8.474278 + parent: 4812 +- proto: ToolboxEmergencyFilled + entities: + - uid: 3271 + components: + - type: Transform + pos: 22.451836,13.667355 + parent: 4812 + - uid: 3272 + components: + - type: Transform + pos: 22.62371,13.52673 + parent: 4812 + - uid: 4541 + components: + - type: Transform + pos: 21.46411,-6.3464417 + parent: 4812 + - uid: 8596 + components: + - type: Transform + pos: -18.547379,10.53499 + parent: 4812 + - uid: 11777 + components: + - type: Transform + pos: -34.527054,-18.337584 + parent: 4812 +- proto: ToolboxGoldFilled + entities: + - uid: 2711 + components: + - type: Transform + pos: -5.514771,25.816704 + parent: 4812 +- proto: ToolboxMechanicalFilled + entities: + - uid: 2676 + components: + - type: Transform + pos: -3.4889355,35.56198 + parent: 4812 + - uid: 3845 + components: + - type: Transform + pos: 15.388588,47.767467 + parent: 4812 + - uid: 6234 + components: + - type: Transform + pos: 11.42382,-23.262737 + parent: 4812 + - uid: 8595 + components: + - type: Transform + pos: -19.484879,9.65999 + parent: 4812 +- proto: TorsoHuman + entities: + - uid: 12423 + components: + - type: Transform + pos: -53.589386,-16.742252 + parent: 4812 +- proto: ToyAi + entities: + - uid: 3962 + components: + - type: Transform + pos: 10.469682,53.04013 + parent: 4812 +- proto: ToyIan + entities: + - uid: 2503 + components: + - type: Transform + pos: 5.719586,29.52392 + parent: 4812 +- proto: ToyMouse + entities: + - uid: 7170 + components: + - type: Transform + pos: -23.706095,-17.394772 + parent: 4812 +- proto: ToyRubberDuck + entities: + - uid: 2496 + components: + - type: Transform + pos: -15.456392,28.433739 + parent: 4812 +- proto: ToySpawner + entities: + - uid: 10932 + components: + - type: Transform + pos: -10.5,11.5 + parent: 4812 +- proto: TrashBag + entities: + - uid: 1493 + components: + - type: Transform + pos: -23.716429,-6.4211965 + parent: 4812 + - uid: 1494 + components: + - type: Transform + pos: -23.466429,-6.4368215 + parent: 4812 + - uid: 11941 + components: + - type: Transform + pos: -10.701956,16.566319 + parent: 4812 + - uid: 11942 + components: + - type: Transform + pos: -10.498831,16.566319 + parent: 4812 + - uid: 11943 + components: + - type: Transform + pos: -10.280081,16.566319 + parent: 4812 +- proto: TrashBananaPeel + entities: + - uid: 1707 + components: + - type: Transform + pos: -9.550176,1.455398 + parent: 4812 + - uid: 11240 + components: + - type: Transform + pos: 8.641412,-38.54009 + parent: 4812 +- proto: trayScanner + entities: + - uid: 4492 + components: + - type: Transform + pos: 20.567461,2.6407971 + parent: 4812 + - uid: 11959 + components: + - type: Transform + pos: -10.545721,17.660069 + parent: 4812 +- proto: TubaInstrument + entities: + - uid: 1719 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 4812 +- proto: TwoWayLever + entities: + - uid: 3034 + components: + - type: Transform + pos: 19.5,23.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 3013: + - Left: Forward + - Right: Reverse + - Middle: Off + 3014: + - Left: Forward + - Right: Reverse + - Middle: Off + 3033: + - Left: Forward + - Right: Reverse + - Middle: Off + 3028: + - Left: Forward + - Right: Reverse + - Middle: Off + 3029: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 3188 + components: + - type: Transform + pos: 18.5,27.5 + parent: 4812 + - type: TwoWayLever + nextSignalLeft: True + - type: DeviceLinkSource + linkedPorts: + 2863: + - Left: Forward + - Right: Reverse + - Middle: Off + 3043: + - Left: Forward + - Right: Reverse + - Middle: Off + 3046: + - Left: Forward + - Right: Reverse + - Middle: Off + 2765: + - Left: Forward + - Right: Reverse + - Middle: Off + 2771: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 11245 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 11235: + - Left: Forward + - Right: Reverse + - Middle: Off + 11244: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UniformPrinter + entities: + - uid: 2513 + components: + - type: Transform + pos: 5.5,24.5 + parent: 4812 + - type: MaterialStorage + materialWhiteList: + - Cloth + - Durathread +- proto: UprightPianoInstrument + entities: + - uid: 10498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-29.5 + parent: 4812 +- proto: Vaccinator + entities: + - uid: 9019 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 4812 +- proto: VehicleKeyJanicart + entities: + - uid: 1482 + components: + - type: Transform + pos: -22.528929,-6.6977267 + parent: 4812 +- proto: VehicleKeySecway + entities: + - uid: 8349 + components: + - type: Transform + pos: -31.5,20.5 + parent: 4812 +- proto: VendingBarDrobe + entities: + - uid: 1647 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 5.5,6.5 + parent: 4812 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 9572 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -28.5,2.5 + parent: 4812 +- proto: VendingMachineBooze + entities: + - uid: 12 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 4.5,6.5 + parent: 4812 + - uid: 2606 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -15.5,25.5 + parent: 4812 + - uid: 10494 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -38.5,-22.5 + parent: 4812 +- proto: VendingMachineCargoDrobe + entities: + - uid: 3230 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 14.5,19.5 + parent: 4812 +- proto: VendingMachineCart + entities: + - uid: 2510 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 10.5,26.5 + parent: 4812 +- proto: VendingMachineChang + entities: + - uid: 923 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 0.5,-6.5 + parent: 4812 + - uid: 4538 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 23.5,-6.5 + parent: 4812 + - uid: 6422 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 2.5,-32.5 + parent: 4812 +- proto: VendingMachineChapel + entities: + - uid: 7036 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -27.5,-35.5 + parent: 4812 +- proto: VendingMachineChefDrobe + entities: + - uid: 1539 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 7.5,-3.5 + parent: 4812 +- proto: VendingMachineChefvend + entities: + - uid: 1124 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 3.5,-3.5 + parent: 4812 +- proto: VendingMachineChemDrobe + entities: + - uid: 6608 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -12.5,-15.5 + parent: 4812 +- proto: VendingMachineChemicals + entities: + - uid: 741 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -10.5,-14.5 + parent: 4812 +- proto: VendingMachineCigs + entities: + - uid: 917 + components: + - type: MetaData + flags: SessionSpecific + name: cigarette machine + - type: Transform + pos: -6.5,9.5 + parent: 4812 + - uid: 2672 + components: + - type: MetaData + flags: SessionSpecific + name: cigarette machine + - type: Transform + pos: 0.5,28.5 + parent: 4812 + - uid: 4536 + components: + - type: MetaData + flags: SessionSpecific + name: cigarette machine + - type: Transform + pos: 21.5,-4.5 + parent: 4812 + - uid: 5372 + components: + - type: MetaData + flags: SessionSpecific + name: cigarette machine + - type: Transform + pos: 18.5,-18.5 + parent: 4812 + - uid: 8268 + components: + - type: MetaData + flags: SessionSpecific + name: cigarette machine + - type: Transform + pos: -23.5,25.5 + parent: 4812 + - uid: 9077 + components: + - type: MetaData + flags: SessionSpecific + name: cigarette machine + - type: Transform + pos: -30.5,-28.5 + parent: 4812 + - uid: 10873 + components: + - type: MetaData + flags: SessionSpecific + name: cigarette machine + - type: Transform + pos: -27.5,7.5 + parent: 4812 +- proto: VendingMachineClothing + entities: + - uid: 10850 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -23.5,-1.5 + parent: 4812 +- proto: VendingMachineCoffee + entities: + - uid: 918 + components: + - type: MetaData + flags: SessionSpecific + name: Hot drinks machine + - type: Transform + pos: 0.5,10.5 + parent: 4812 + - uid: 1797 + components: + - type: MetaData + flags: SessionSpecific + name: Hot drinks machine + - type: Transform + pos: -5.5,16.5 + parent: 4812 + - uid: 2671 + components: + - type: MetaData + flags: SessionSpecific + name: Hot drinks machine + - type: Transform + pos: -5.5,28.5 + parent: 4812 + - uid: 4537 + components: + - type: MetaData + flags: SessionSpecific + name: Hot drinks machine + - type: Transform + pos: 23.5,-5.5 + parent: 4812 + - uid: 6356 + components: + - type: MetaData + flags: SessionSpecific + name: Hot drinks machine + - type: Transform + pos: 9.5,-28.5 + parent: 4812 + - uid: 10741 + components: + - type: MetaData + flags: SessionSpecific + name: Hot drinks machine + - type: Transform + pos: -45.5,-5.5 + parent: 4812 + - uid: 12150 + components: + - type: MetaData + flags: SessionSpecific + name: Hot drinks machine + - type: Transform + pos: -27.5,-12.5 + parent: 4812 +- proto: VendingMachineCola + entities: + - uid: 4533 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 13.5,2.5 + parent: 4812 + - uid: 5061 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -9.5,-46.5 + parent: 4812 +- proto: VendingMachineCondiments + entities: + - uid: 9584 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 0.5,-3.5 + parent: 4812 +- proto: VendingMachineCuraDrobe + entities: + - uid: 12510 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 4812 +- proto: VendingMachineDetDrobe + entities: + - uid: 5361 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 20.5,-14.5 + parent: 4812 +- proto: VendingMachineDinnerware + entities: + - uid: 1552 + components: + - type: MetaData + flags: SessionSpecific + name: Dinnerware + - type: Transform + pos: 2.5,-3.5 + parent: 4812 +- proto: VendingMachineDiscount + entities: + - uid: 919 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 0.5,11.5 + parent: 4812 +- proto: VendingMachineEngiDrobe + entities: + - uid: 12516 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -38.5,-7.5 + parent: 4812 +- proto: VendingMachineEngivend + entities: + - uid: 9722 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -31.5,-5.5 + parent: 4812 +- proto: VendingMachineGames + entities: + - uid: 7070 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -30.5,-14.5 + parent: 4812 +- proto: VendingMachineGeneDrobe + entities: + - uid: 2607 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -14.5,-18.5 + parent: 4812 +- proto: VendingMachineHappyHonk + entities: + - uid: 1565 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 6.5,-3.5 + parent: 4812 +- proto: VendingMachineHydrobe + entities: + - uid: 1094 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -18.5,-7.5 + parent: 4812 +- proto: VendingMachineJaniDrobe + entities: + - uid: 1480 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -20.5,-9.5 + parent: 4812 +- proto: VendingMachineLawDrobe + entities: + - uid: 8275 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -16.5,17.5 + parent: 4812 +- proto: VendingMachineMedical + entities: + - uid: 7188 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -8.5,-28.5 + parent: 4812 +- proto: VendingMachineMediDrobe + entities: + - uid: 7399 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -8.5,-25.5 + parent: 4812 +- proto: VendingMachineNutri + entities: + - uid: 1092 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -7.5,-5.5 + parent: 4812 + - uid: 11785 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 25.5,-32.5 + parent: 4812 +- proto: VendingMachineRoboDrobe + entities: + - uid: 6223 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 11.5,-26.5 + parent: 4812 +- proto: VendingMachineRobotics + entities: + - uid: 737 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 4.5,-23.5 + parent: 4812 +- proto: VendingMachineSalvage + entities: + - uid: 3434 + components: + - type: MetaData + flags: SessionSpecific + name: Salvage Equipment + - type: Transform + pos: 23.5,16.5 + parent: 4812 +- proto: VendingMachineSciDrobe + entities: + - uid: 5513 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 25.5,-26.5 + parent: 4812 +- proto: VendingMachineSec + entities: + - uid: 8342 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -31.5,13.5 + parent: 4812 + - uid: 8420 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -36.5,12.5 + parent: 4812 +- proto: VendingMachineSecDrobe + entities: + - uid: 6439 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -3.5,-29.5 + parent: 4812 + - uid: 12506 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -34.5,10.5 + parent: 4812 +- proto: VendingMachineSeeds + entities: + - uid: 1091 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -8.5,-5.5 + parent: 4812 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 6240 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -29.5,32.5 + parent: 4812 +- proto: VendingMachineSnack + entities: + - uid: 920 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 0.5,-7.5 + parent: 4812 + - uid: 4530 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 13.5,1.5 + parent: 4812 + - uid: 5060 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -9.5,-45.5 + parent: 4812 +- proto: VendingMachineSovietSoda + entities: + - uid: 11780 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 29.5,-32.5 + parent: 4812 +- proto: VendingMachineSustenance + entities: + - uid: 6165 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -28.5,32.5 + parent: 4812 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 739 + components: + - type: MetaData + flags: SessionSpecific + name: tank dispenser + - type: Transform + pos: 7.5,15.5 + parent: 4812 + - uid: 9577 + components: + - type: MetaData + flags: SessionSpecific + name: tank dispenser + - type: Transform + pos: -31.5,1.5 + parent: 4812 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 732 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 9.5,14.5 + parent: 4812 + - uid: 6312 + components: + - type: MetaData + flags: SessionSpecific + name: tank dispenser + - type: Transform + pos: 26.5,-26.5 + parent: 4812 + - uid: 10708 + components: + - type: MetaData + flags: SessionSpecific + name: tank dispenser + - type: Transform + pos: -35.5,-9.5 + parent: 4812 + - uid: 12113 + components: + - type: MetaData + flags: SessionSpecific + name: tank dispenser + - type: Transform + pos: -42.5,-3.5 + parent: 4812 +- proto: VendingMachineTheater + entities: + - uid: 1692 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -7.5,1.5 + parent: 4812 + - uid: 9045 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -26.5,-39.5 + parent: 4812 +- proto: VendingMachineVendomat + entities: + - uid: 8578 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -18.5,7.5 + parent: 4812 +- proto: VendingMachineViroDrobe + entities: + - uid: 8871 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -37.5,-33.5 + parent: 4812 +- proto: VendingMachineYouTool + entities: + - uid: 8577 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -19.5,7.5 + parent: 4812 + - uid: 9723 + components: + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -32.5,-5.5 + parent: 4812 +- proto: ViolinInstrument + entities: + - uid: 1756 + components: + - type: Transform + pos: -10.433632,4.545351 + parent: 4812 +- proto: WallmountGeneratorAPUElectronics + entities: + - uid: 10960 + components: + - type: Transform + pos: -37.468086,26.400969 + parent: 4812 +- proto: WallmountSubstationElectronics + entities: + - uid: 10978 + components: + - type: Transform + pos: -37.343086,26.182219 + parent: 4812 +- proto: WallmountTelescreen + entities: + - uid: 3422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,24.5 + parent: 4812 + - uid: 3775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-16.5 + parent: 4812 +- proto: WallReinforced + entities: + - uid: 32 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,15.5 + parent: 4812 + - uid: 35 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,15.5 + parent: 4812 + - uid: 122 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,18.5 + parent: 4812 + - uid: 123 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,18.5 + parent: 4812 + - uid: 124 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,15.5 + parent: 4812 + - uid: 125 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,18.5 + parent: 4812 + - uid: 126 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,18.5 + parent: 4812 + - uid: 127 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,15.5 + parent: 4812 + - uid: 138 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,18.5 + parent: 4812 + - uid: 160 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,18.5 + parent: 4812 + - uid: 170 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,17.5 + parent: 4812 + - uid: 171 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,16.5 + parent: 4812 + - uid: 172 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,15.5 + parent: 4812 + - uid: 173 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,14.5 + parent: 4812 + - uid: 174 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,13.5 + parent: 4812 + - uid: 176 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,18.5 + parent: 4812 + - uid: 297 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,17.5 + parent: 4812 + - uid: 298 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,16.5 + parent: 4812 + - uid: 299 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,15.5 + parent: 4812 + - uid: 300 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,14.5 + parent: 4812 + - uid: 301 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,14.5 + parent: 4812 + - uid: 302 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,14.5 + parent: 4812 + - uid: 303 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,14.5 + parent: 4812 + - uid: 304 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,14.5 + parent: 4812 + - uid: 305 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,14.5 + parent: 4812 + - uid: 306 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,14.5 + parent: 4812 + - uid: 721 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,14.5 + parent: 4812 + - uid: 722 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,13.5 + parent: 4812 + - uid: 724 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,13.5 + parent: 4812 + - uid: 725 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,13.5 + parent: 4812 + - uid: 726 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,13.5 + parent: 4812 + - uid: 727 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,13.5 + parent: 4812 + - uid: 728 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,13.5 + parent: 4812 + - uid: 772 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,18.5 + parent: 4812 + - uid: 773 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,18.5 + parent: 4812 + - uid: 1819 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,21.5 + parent: 4812 + - uid: 1820 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,21.5 + parent: 4812 + - uid: 1821 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,21.5 + parent: 4812 + - uid: 1822 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,21.5 + parent: 4812 + - uid: 1823 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,22.5 + parent: 4812 + - uid: 1824 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,23.5 + parent: 4812 + - uid: 1825 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,24.5 + parent: 4812 + - uid: 1826 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,25.5 + parent: 4812 + - uid: 1827 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,26.5 + parent: 4812 + - uid: 1828 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,27.5 + parent: 4812 + - uid: 1829 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,21.5 + parent: 4812 + - uid: 1830 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,21.5 + parent: 4812 + - uid: 1831 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,21.5 + parent: 4812 + - uid: 1832 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,21.5 + parent: 4812 + - uid: 1833 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,22.5 + parent: 4812 + - uid: 1834 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,23.5 + parent: 4812 + - uid: 1836 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,25.5 + parent: 4812 + - uid: 1837 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,26.5 + parent: 4812 + - uid: 1838 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,27.5 + parent: 4812 + - uid: 1839 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,27.5 + parent: 4812 + - uid: 1840 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,27.5 + parent: 4812 + - uid: 1841 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,27.5 + parent: 4812 + - uid: 1842 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,27.5 + parent: 4812 + - uid: 1857 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,31.5 + parent: 4812 + - uid: 1859 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,31.5 + parent: 4812 + - uid: 1861 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,31.5 + parent: 4812 + - uid: 1862 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,31.5 + parent: 4812 + - uid: 1863 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,33.5 + parent: 4812 + - uid: 1864 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,33.5 + parent: 4812 + - uid: 1865 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,35.5 + parent: 4812 + - uid: 1866 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,35.5 + parent: 4812 + - uid: 1867 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,36.5 + parent: 4812 + - uid: 1868 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,36.5 + parent: 4812 + - uid: 1885 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,33.5 + parent: 4812 + - uid: 1886 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,33.5 + parent: 4812 + - uid: 1887 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,32.5 + parent: 4812 + - uid: 1888 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,31.5 + parent: 4812 + - uid: 1889 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,30.5 + parent: 4812 + - uid: 1890 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,30.5 + parent: 4812 + - uid: 1891 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,30.5 + parent: 4812 + - uid: 1892 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,30.5 + parent: 4812 + - uid: 1893 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,21.5 + parent: 4812 + - uid: 1894 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,22.5 + parent: 4812 + - uid: 1895 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,23.5 + parent: 4812 + - uid: 1896 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,21.5 + parent: 4812 + - uid: 1899 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,27.5 + parent: 4812 + - uid: 1900 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,28.5 + parent: 4812 + - uid: 1901 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,29.5 + parent: 4812 + - uid: 1903 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,22.5 + parent: 4812 + - uid: 1904 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,23.5 + parent: 4812 + - uid: 1905 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,24.5 + parent: 4812 + - uid: 1906 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,25.5 + parent: 4812 + - uid: 1907 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,26.5 + parent: 4812 + - uid: 1908 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,27.5 + parent: 4812 + - uid: 1909 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,28.5 + parent: 4812 + - uid: 1910 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,29.5 + parent: 4812 + - uid: 1911 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,30.5 + parent: 4812 + - uid: 1912 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,31.5 + parent: 4812 + - uid: 1913 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,31.5 + parent: 4812 + - uid: 1914 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,31.5 + parent: 4812 + - uid: 1915 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,30.5 + parent: 4812 + - uid: 1916 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,30.5 + parent: 4812 + - uid: 1920 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,23.5 + parent: 4812 + - uid: 1921 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,23.5 + parent: 4812 + - uid: 1922 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,23.5 + parent: 4812 + - uid: 1923 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,21.5 + parent: 4812 + - uid: 1946 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,25.5 + parent: 4812 + - uid: 1947 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,26.5 + parent: 4812 + - uid: 1948 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,21.5 + parent: 4812 + - uid: 1949 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,21.5 + parent: 4812 + - uid: 1950 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,21.5 + parent: 4812 + - uid: 1951 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,21.5 + parent: 4812 + - uid: 1954 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,21.5 + parent: 4812 + - uid: 1955 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,21.5 + parent: 4812 + - uid: 1956 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,30.5 + parent: 4812 + - uid: 1957 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,30.5 + parent: 4812 + - uid: 1958 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,30.5 + parent: 4812 + - uid: 1959 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,30.5 + parent: 4812 + - uid: 1960 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,30.5 + parent: 4812 + - uid: 1961 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,30.5 + parent: 4812 + - uid: 1967 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,27.5 + parent: 4812 + - uid: 1968 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,28.5 + parent: 4812 + - uid: 1969 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,29.5 + parent: 4812 + - uid: 1970 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,29.5 + parent: 4812 + - uid: 1971 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,28.5 + parent: 4812 + - uid: 1972 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,27.5 + parent: 4812 + - uid: 1973 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,26.5 + parent: 4812 + - uid: 1974 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,25.5 + parent: 4812 + - uid: 1976 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,23.5 + parent: 4812 + - uid: 1977 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,22.5 + parent: 4812 + - uid: 2075 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,24.5 + parent: 4812 + - uid: 2609 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,21.5 + parent: 4812 + - uid: 2612 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,21.5 + parent: 4812 + - uid: 2746 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,36.5 + parent: 4812 + - uid: 2747 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,28.5 + parent: 4812 + - uid: 2748 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,29.5 + parent: 4812 + - uid: 2749 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,30.5 + parent: 4812 + - uid: 2750 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,31.5 + parent: 4812 + - uid: 2753 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,33.5 + parent: 4812 + - uid: 2755 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,23.5 + parent: 4812 + - uid: 2756 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,36.5 + parent: 4812 + - uid: 2757 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,32.5 + parent: 4812 + - uid: 2758 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,33.5 + parent: 4812 + - uid: 2766 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,32.5 + parent: 4812 + - uid: 2767 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,35.5 + parent: 4812 + - uid: 2769 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,32.5 + parent: 4812 + - uid: 2774 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,29.5 + parent: 4812 + - uid: 2778 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,34.5 + parent: 4812 + - uid: 2820 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,33.5 + parent: 4812 + - uid: 2822 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,22.5 + parent: 4812 + - uid: 2824 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,28.5 + parent: 4812 + - uid: 2825 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,29.5 + parent: 4812 + - uid: 2828 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,28.5 + parent: 4812 + - uid: 2829 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,20.5 + parent: 4812 + - uid: 2830 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,18.5 + parent: 4812 + - uid: 2831 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,17.5 + parent: 4812 + - uid: 2841 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,35.5 + parent: 4812 + - uid: 2896 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,12.5 + parent: 4812 + - uid: 2897 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,11.5 + parent: 4812 + - uid: 2898 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,11.5 + parent: 4812 + - uid: 2899 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,11.5 + parent: 4812 + - uid: 2900 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,11.5 + parent: 4812 + - uid: 2901 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,11.5 + parent: 4812 + - uid: 2903 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,16.5 + parent: 4812 + - uid: 2904 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,17.5 + parent: 4812 + - uid: 2905 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,17.5 + parent: 4812 + - uid: 2906 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,17.5 + parent: 4812 + - uid: 2942 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,29.5 + parent: 4812 + - uid: 3006 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,22.5 + parent: 4812 + - uid: 3042 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,23.5 + parent: 4812 + - uid: 3118 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,34.5 + parent: 4812 + - uid: 3150 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,33.5 + parent: 4812 + - uid: 3189 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,36.5 + parent: 4812 + - uid: 3193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,33.5 + parent: 4812 + - uid: 3212 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,9.5 + parent: 4812 + - uid: 3288 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,6.5 + parent: 4812 + - uid: 3352 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,9.5 + parent: 4812 + - uid: 3355 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,9.5 + parent: 4812 + - uid: 3356 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,9.5 + parent: 4812 + - uid: 3357 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,9.5 + parent: 4812 + - uid: 3391 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,6.5 + parent: 4812 + - uid: 3428 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,37.5 + parent: 4812 + - uid: 3429 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,37.5 + parent: 4812 + - uid: 3430 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,36.5 + parent: 4812 + - uid: 3431 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,36.5 + parent: 4812 + - uid: 3432 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,37.5 + parent: 4812 + - uid: 3436 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,33.5 + parent: 4812 + - uid: 3437 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,31.5 + parent: 4812 + - uid: 3486 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,43.5 + parent: 4812 + - uid: 3487 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,44.5 + parent: 4812 + - uid: 3488 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,45.5 + parent: 4812 + - uid: 3489 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,46.5 + parent: 4812 + - uid: 3490 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,47.5 + parent: 4812 + - uid: 3491 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,48.5 + parent: 4812 + - uid: 3492 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,43.5 + parent: 4812 + - uid: 3493 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,43.5 + parent: 4812 + - uid: 3494 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,43.5 + parent: 4812 + - uid: 3495 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,43.5 + parent: 4812 + - uid: 3496 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,42.5 + parent: 4812 + - uid: 3497 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,42.5 + parent: 4812 + - uid: 3498 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,42.5 + parent: 4812 + - uid: 3499 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,42.5 + parent: 4812 + - uid: 3500 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,42.5 + parent: 4812 + - uid: 3501 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,43.5 + parent: 4812 + - uid: 3502 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,43.5 + parent: 4812 + - uid: 3504 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,43.5 + parent: 4812 + - uid: 3505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,43.5 + parent: 4812 + - uid: 3506 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,44.5 + parent: 4812 + - uid: 3507 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,46.5 + parent: 4812 + - uid: 3508 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,44.5 + parent: 4812 + - uid: 3509 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,45.5 + parent: 4812 + - uid: 3510 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,46.5 + parent: 4812 + - uid: 3511 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,47.5 + parent: 4812 + - uid: 3512 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,47.5 + parent: 4812 + - uid: 3513 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,47.5 + parent: 4812 + - uid: 3514 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,48.5 + parent: 4812 + - uid: 3515 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,48.5 + parent: 4812 + - uid: 3516 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,49.5 + parent: 4812 + - uid: 3517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,50.5 + parent: 4812 + - uid: 3518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,51.5 + parent: 4812 + - uid: 3519 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,52.5 + parent: 4812 + - uid: 3520 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,53.5 + parent: 4812 + - uid: 3521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,54.5 + parent: 4812 + - uid: 3522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,55.5 + parent: 4812 + - uid: 3523 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,55.5 + parent: 4812 + - uid: 3524 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,56.5 + parent: 4812 + - uid: 3525 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,56.5 + parent: 4812 + - uid: 3526 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,57.5 + parent: 4812 + - uid: 3527 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,57.5 + parent: 4812 + - uid: 3528 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,58.5 + parent: 4812 + - uid: 3529 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,58.5 + parent: 4812 + - uid: 3530 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,58.5 + parent: 4812 + - uid: 3531 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,58.5 + parent: 4812 + - uid: 3532 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,58.5 + parent: 4812 + - uid: 3533 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,57.5 + parent: 4812 + - uid: 3534 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,57.5 + parent: 4812 + - uid: 3535 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,56.5 + parent: 4812 + - uid: 3536 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,56.5 + parent: 4812 + - uid: 3537 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,55.5 + parent: 4812 + - uid: 3538 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,55.5 + parent: 4812 + - uid: 3539 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,55.5 + parent: 4812 + - uid: 3540 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,54.5 + parent: 4812 + - uid: 3541 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,53.5 + parent: 4812 + - uid: 3542 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,52.5 + parent: 4812 + - uid: 3543 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,51.5 + parent: 4812 + - uid: 3544 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,50.5 + parent: 4812 + - uid: 3545 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,49.5 + parent: 4812 + - uid: 3546 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,48.5 + parent: 4812 + - uid: 3547 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,57.5 + parent: 4812 + - uid: 3548 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,57.5 + parent: 4812 + - uid: 3549 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,57.5 + parent: 4812 + - uid: 3550 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,56.5 + parent: 4812 + - uid: 3551 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,56.5 + parent: 4812 + - uid: 3552 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,48.5 + parent: 4812 + - uid: 3553 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,48.5 + parent: 4812 + - uid: 3554 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,48.5 + parent: 4812 + - uid: 3555 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,48.5 + parent: 4812 + - uid: 3556 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,48.5 + parent: 4812 + - uid: 3557 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,48.5 + parent: 4812 + - uid: 3558 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,47.5 + parent: 4812 + - uid: 3559 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,47.5 + parent: 4812 + - uid: 3560 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,44.5 + parent: 4812 + - uid: 3561 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,46.5 + parent: 4812 + - uid: 3562 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,47.5 + parent: 4812 + - uid: 3563 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,46.5 + parent: 4812 + - uid: 3564 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,44.5 + parent: 4812 + - uid: 3565 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,47.5 + parent: 4812 + - uid: 3566 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,49.5 + parent: 4812 + - uid: 3567 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,50.5 + parent: 4812 + - uid: 3568 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,51.5 + parent: 4812 + - uid: 3569 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,52.5 + parent: 4812 + - uid: 3570 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,53.5 + parent: 4812 + - uid: 3571 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,54.5 + parent: 4812 + - uid: 3572 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,54.5 + parent: 4812 + - uid: 3573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,53.5 + parent: 4812 + - uid: 3574 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,52.5 + parent: 4812 + - uid: 3575 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,51.5 + parent: 4812 + - uid: 3576 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,50.5 + parent: 4812 + - uid: 3577 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,49.5 + parent: 4812 + - uid: 3691 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,54.5 + parent: 4812 + - uid: 3692 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,54.5 + parent: 4812 + - uid: 3693 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,52.5 + parent: 4812 + - uid: 3694 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,51.5 + parent: 4812 + - uid: 3695 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,51.5 + parent: 4812 + - uid: 3696 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,51.5 + parent: 4812 + - uid: 3697 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,52.5 + parent: 4812 + - uid: 3717 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,3.5 + parent: 4812 + - uid: 3718 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,3.5 + parent: 4812 + - uid: 3719 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,4.5 + parent: 4812 + - uid: 3720 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,5.5 + parent: 4812 + - uid: 3721 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,2.5 + parent: 4812 + - uid: 3722 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,7.5 + parent: 4812 + - uid: 3723 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,2.5 + parent: 4812 + - uid: 3724 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,3.5 + parent: 4812 + - uid: 3725 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,4.5 + parent: 4812 + - uid: 3727 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,2.5 + parent: 4812 + - uid: 3728 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,8.5 + parent: 4812 + - uid: 3729 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,6.5 + parent: 4812 + - uid: 3730 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,2.5 + parent: 4812 + - uid: 3731 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,2.5 + parent: 4812 + - uid: 3990 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,8.5 + parent: 4812 + - uid: 3991 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,7.5 + parent: 4812 + - uid: 3992 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,6.5 + parent: 4812 + - uid: 3993 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,5.5 + parent: 4812 + - uid: 3994 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,5.5 + parent: 4812 + - uid: 3995 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,5.5 + parent: 4812 + - uid: 3996 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,5.5 + parent: 4812 + - uid: 3997 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,5.5 + parent: 4812 + - uid: 3998 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,5.5 + parent: 4812 + - uid: 3999 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,5.5 + parent: 4812 + - uid: 4000 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,5.5 + parent: 4812 + - uid: 4001 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,5.5 + parent: 4812 + - uid: 4081 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-4.5 + parent: 4812 + - uid: 4082 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-4.5 + parent: 4812 + - uid: 4083 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-4.5 + parent: 4812 + - uid: 4084 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-5.5 + parent: 4812 + - uid: 4085 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-5.5 + parent: 4812 + - uid: 4086 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-4.5 + parent: 4812 + - uid: 4087 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-10.5 + parent: 4812 + - uid: 4088 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-10.5 + parent: 4812 + - uid: 4089 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-10.5 + parent: 4812 + - uid: 4090 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-10.5 + parent: 4812 + - uid: 4091 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-10.5 + parent: 4812 + - uid: 4092 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-10.5 + parent: 4812 + - uid: 4093 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-9.5 + parent: 4812 + - uid: 4094 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-8.5 + parent: 4812 + - uid: 4095 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-8.5 + parent: 4812 + - uid: 4096 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-8.5 + parent: 4812 + - uid: 4097 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-8.5 + parent: 4812 + - uid: 4098 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-8.5 + parent: 4812 + - uid: 4101 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-8.5 + parent: 4812 + - uid: 4102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-8.5 + parent: 4812 + - uid: 4103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-8.5 + parent: 4812 + - uid: 4104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-8.5 + parent: 4812 + - uid: 4105 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-8.5 + parent: 4812 + - uid: 4106 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-9.5 + parent: 4812 + - uid: 4107 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-10.5 + parent: 4812 + - uid: 4108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-6.5 + parent: 4812 + - uid: 4109 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-6.5 + parent: 4812 + - uid: 4638 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-36.5 + parent: 4812 + - uid: 4639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-36.5 + parent: 4812 + - uid: 4640 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-36.5 + parent: 4812 + - uid: 4641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-36.5 + parent: 4812 + - uid: 4642 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-36.5 + parent: 4812 + - uid: 4643 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-36.5 + parent: 4812 + - uid: 4681 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-40.5 + parent: 4812 + - uid: 4685 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-53.5 + parent: 4812 + - uid: 4686 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-53.5 + parent: 4812 + - uid: 4693 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-39.5 + parent: 4812 + - uid: 4694 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-37.5 + parent: 4812 + - uid: 4696 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-40.5 + parent: 4812 + - uid: 4789 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-29.5 + parent: 4812 + - uid: 4790 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-29.5 + parent: 4812 + - uid: 4791 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-30.5 + parent: 4812 + - uid: 4792 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-31.5 + parent: 4812 + - uid: 4828 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,23.5 + parent: 4812 + - uid: 4829 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,23.5 + parent: 4812 + - uid: 4830 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,23.5 + parent: 4812 + - uid: 4831 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,23.5 + parent: 4812 + - uid: 4832 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,23.5 + parent: 4812 + - uid: 4886 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,23.5 + parent: 4812 + - uid: 4887 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,22.5 + parent: 4812 + - uid: 4898 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,21.5 + parent: 4812 + - uid: 4917 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-29.5 + parent: 4812 + - uid: 4936 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-27.5 + parent: 4812 + - uid: 5016 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-24.5 + parent: 4812 + - uid: 5027 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,19.5 + parent: 4812 + - uid: 5042 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-59.5 + parent: 4812 + - uid: 5126 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,20.5 + parent: 4812 + - uid: 5285 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-24.5 + parent: 4812 + - uid: 5286 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-23.5 + parent: 4812 + - uid: 5287 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-23.5 + parent: 4812 + - uid: 5288 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-23.5 + parent: 4812 + - uid: 5289 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-23.5 + parent: 4812 + - uid: 5290 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-24.5 + parent: 4812 + - uid: 5291 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-25.5 + parent: 4812 + - uid: 5292 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-26.5 + parent: 4812 + - uid: 5293 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-30.5 + parent: 4812 + - uid: 5294 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-30.5 + parent: 4812 + - uid: 5295 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-29.5 + parent: 4812 + - uid: 5296 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-30.5 + parent: 4812 + - uid: 5297 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-30.5 + parent: 4812 + - uid: 5298 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-29.5 + parent: 4812 + - uid: 5299 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-28.5 + parent: 4812 + - uid: 5312 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-13.5 + parent: 4812 + - uid: 5314 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-13.5 + parent: 4812 + - uid: 5316 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-13.5 + parent: 4812 + - uid: 5330 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-13.5 + parent: 4812 + - uid: 5331 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-19.5 + parent: 4812 + - uid: 5332 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-19.5 + parent: 4812 + - uid: 5336 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-19.5 + parent: 4812 + - uid: 5337 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-19.5 + parent: 4812 + - uid: 5395 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-22.5 + parent: 4812 + - uid: 5397 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-22.5 + parent: 4812 + - uid: 5398 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-18.5 + parent: 4812 + - uid: 5400 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-19.5 + parent: 4812 + - uid: 5401 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-17.5 + parent: 4812 + - uid: 5402 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-16.5 + parent: 4812 + - uid: 5403 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-16.5 + parent: 4812 + - uid: 5404 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-16.5 + parent: 4812 + - uid: 5405 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-16.5 + parent: 4812 + - uid: 5406 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-16.5 + parent: 4812 + - uid: 5407 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-13.5 + parent: 4812 + - uid: 5408 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-14.5 + parent: 4812 + - uid: 5409 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-13.5 + parent: 4812 + - uid: 5410 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-13.5 + parent: 4812 + - uid: 5411 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-13.5 + parent: 4812 + - uid: 5412 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-17.5 + parent: 4812 + - uid: 5413 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-19.5 + parent: 4812 + - uid: 5414 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-22.5 + parent: 4812 + - uid: 5432 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-24.5 + parent: 4812 + - uid: 5433 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-28.5 + parent: 4812 + - uid: 5434 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-29.5 + parent: 4812 + - uid: 5435 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-29.5 + parent: 4812 + - uid: 5436 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-29.5 + parent: 4812 + - uid: 5437 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-29.5 + parent: 4812 + - uid: 5438 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-29.5 + parent: 4812 + - uid: 5439 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-29.5 + parent: 4812 + - uid: 5440 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-29.5 + parent: 4812 + - uid: 5441 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-29.5 + parent: 4812 + - uid: 5442 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-29.5 + parent: 4812 + - uid: 5443 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-29.5 + parent: 4812 + - uid: 5444 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-29.5 + parent: 4812 + - uid: 5445 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-29.5 + parent: 4812 + - uid: 5446 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-29.5 + parent: 4812 + - uid: 5447 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-28.5 + parent: 4812 + - uid: 5448 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-27.5 + parent: 4812 + - uid: 5449 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-26.5 + parent: 4812 + - uid: 5450 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-25.5 + parent: 4812 + - uid: 5451 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-26.5 + parent: 4812 + - uid: 5452 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-23.5 + parent: 4812 + - uid: 5453 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-22.5 + parent: 4812 + - uid: 5454 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-22.5 + parent: 4812 + - uid: 5455 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-22.5 + parent: 4812 + - uid: 5456 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-22.5 + parent: 4812 + - uid: 5469 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-17.5 + parent: 4812 + - uid: 5470 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-18.5 + parent: 4812 + - uid: 5471 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-19.5 + parent: 4812 + - uid: 5473 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-22.5 + parent: 4812 + - uid: 5479 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-27.5 + parent: 4812 + - uid: 5480 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-27.5 + parent: 4812 + - uid: 5500 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-29.5 + parent: 4812 + - uid: 5501 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-22.5 + parent: 4812 + - uid: 5502 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-22.5 + parent: 4812 + - uid: 5505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-21.5 + parent: 4812 + - uid: 5506 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-21.5 + parent: 4812 + - uid: 5510 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-21.5 + parent: 4812 + - uid: 5511 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-19.5 + parent: 4812 + - uid: 5512 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-27.5 + parent: 4812 + - uid: 5515 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-27.5 + parent: 4812 + - uid: 5516 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-27.5 + parent: 4812 + - uid: 5517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-27.5 + parent: 4812 + - uid: 5518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-28.5 + parent: 4812 + - uid: 5519 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-28.5 + parent: 4812 + - uid: 5520 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-30.5 + parent: 4812 + - uid: 5521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-30.5 + parent: 4812 + - uid: 5522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-31.5 + parent: 4812 + - uid: 5523 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-31.5 + parent: 4812 + - uid: 5524 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-31.5 + parent: 4812 + - uid: 5525 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-31.5 + parent: 4812 + - uid: 5526 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-31.5 + parent: 4812 + - uid: 5527 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-31.5 + parent: 4812 + - uid: 5528 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-31.5 + parent: 4812 + - uid: 5529 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-31.5 + parent: 4812 + - uid: 5530 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-21.5 + parent: 4812 + - uid: 5531 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-20.5 + parent: 4812 + - uid: 5532 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-19.5 + parent: 4812 + - uid: 5556 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-31.5 + parent: 4812 + - uid: 5557 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-31.5 + parent: 4812 + - uid: 5558 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-31.5 + parent: 4812 + - uid: 5559 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-31.5 + parent: 4812 + - uid: 5560 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-30.5 + parent: 4812 + - uid: 5561 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-29.5 + parent: 4812 + - uid: 5568 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-22.5 + parent: 4812 + - uid: 5569 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-21.5 + parent: 4812 + - uid: 5595 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,18.5 + parent: 4812 + - uid: 5769 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-29.5 + parent: 4812 + - uid: 5770 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-29.5 + parent: 4812 + - uid: 5772 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-29.5 + parent: 4812 + - uid: 5773 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-29.5 + parent: 4812 + - uid: 5774 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-29.5 + parent: 4812 + - uid: 5775 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-28.5 + parent: 4812 + - uid: 5776 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-27.5 + parent: 4812 + - uid: 5777 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-26.5 + parent: 4812 + - uid: 5778 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-25.5 + parent: 4812 + - uid: 5779 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-24.5 + parent: 4812 + - uid: 5780 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-23.5 + parent: 4812 + - uid: 5781 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-22.5 + parent: 4812 + - uid: 5785 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-22.5 + parent: 4812 + - uid: 5786 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-22.5 + parent: 4812 + - uid: 5826 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-59.5 + parent: 4812 + - uid: 5904 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 4812 + - uid: 5905 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 4812 + - uid: 5906 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-30.5 + parent: 4812 + - uid: 5907 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-31.5 + parent: 4812 + - uid: 5908 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 4812 + - uid: 5909 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-32.5 + parent: 4812 + - uid: 5910 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 4812 + - uid: 5911 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 4812 + - uid: 6546 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-26.5 + parent: 4812 + - uid: 6547 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-25.5 + parent: 4812 + - uid: 6559 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-13.5 + parent: 4812 + - uid: 6560 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-18.5 + parent: 4812 + - uid: 6561 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-16.5 + parent: 4812 + - uid: 6562 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-14.5 + parent: 4812 + - uid: 6563 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-13.5 + parent: 4812 + - uid: 6564 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-19.5 + parent: 4812 + - uid: 6565 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-19.5 + parent: 4812 + - uid: 6566 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-19.5 + parent: 4812 + - uid: 6567 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-17.5 + parent: 4812 + - uid: 6568 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-15.5 + parent: 4812 + - uid: 6569 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-13.5 + parent: 4812 + - uid: 6696 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-37.5 + parent: 4812 + - uid: 6697 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-37.5 + parent: 4812 + - uid: 6698 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-37.5 + parent: 4812 + - uid: 6699 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-38.5 + parent: 4812 + - uid: 6700 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-39.5 + parent: 4812 + - uid: 6701 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-40.5 + parent: 4812 + - uid: 6702 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-40.5 + parent: 4812 + - uid: 6704 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-40.5 + parent: 4812 + - uid: 6705 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-40.5 + parent: 4812 + - uid: 6706 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-40.5 + parent: 4812 + - uid: 6707 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-40.5 + parent: 4812 + - uid: 6759 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-29.5 + parent: 4812 + - uid: 6760 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-30.5 + parent: 4812 + - uid: 6761 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-31.5 + parent: 4812 + - uid: 6762 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-32.5 + parent: 4812 + - uid: 6763 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-33.5 + parent: 4812 + - uid: 6900 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-33.5 + parent: 4812 + - uid: 6901 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-33.5 + parent: 4812 + - uid: 7281 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-28.5 + parent: 4812 + - uid: 7289 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-29.5 + parent: 4812 + - uid: 7292 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-29.5 + parent: 4812 + - uid: 7293 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-29.5 + parent: 4812 + - uid: 7294 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-29.5 + parent: 4812 + - uid: 7337 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-24.5 + parent: 4812 + - uid: 7635 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,30.5 + parent: 4812 + - uid: 7636 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,29.5 + parent: 4812 + - uid: 7637 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,30.5 + parent: 4812 + - uid: 7638 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,30.5 + parent: 4812 + - uid: 7639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,30.5 + parent: 4812 + - uid: 7640 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,29.5 + parent: 4812 + - uid: 7641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,21.5 + parent: 4812 + - uid: 7642 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,22.5 + parent: 4812 + - uid: 7643 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,23.5 + parent: 4812 + - uid: 7644 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,24.5 + parent: 4812 + - uid: 7645 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,26.5 + parent: 4812 + - uid: 7646 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,27.5 + parent: 4812 + - uid: 7647 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,28.5 + parent: 4812 + - uid: 7648 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,30.5 + parent: 4812 + - uid: 7649 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,29.5 + parent: 4812 + - uid: 7650 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,29.5 + parent: 4812 + - uid: 7651 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,29.5 + parent: 4812 + - uid: 7652 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,21.5 + parent: 4812 + - uid: 7653 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,21.5 + parent: 4812 + - uid: 7654 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,22.5 + parent: 4812 + - uid: 7656 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,24.5 + parent: 4812 + - uid: 7657 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,25.5 + parent: 4812 + - uid: 7658 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,26.5 + parent: 4812 + - uid: 7659 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,27.5 + parent: 4812 + - uid: 7660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,28.5 + parent: 4812 + - uid: 7661 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,32.5 + parent: 4812 + - uid: 7662 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,33.5 + parent: 4812 + - uid: 7663 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,33.5 + parent: 4812 + - uid: 7664 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,33.5 + parent: 4812 + - uid: 7670 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,33.5 + parent: 4812 + - uid: 7671 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,33.5 + parent: 4812 + - uid: 7672 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,33.5 + parent: 4812 + - uid: 7673 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,33.5 + parent: 4812 + - uid: 7674 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,28.5 + parent: 4812 + - uid: 7675 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,29.5 + parent: 4812 + - uid: 7676 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,30.5 + parent: 4812 + - uid: 7677 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,31.5 + parent: 4812 + - uid: 7678 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,32.5 + parent: 4812 + - uid: 7679 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,28.5 + parent: 4812 + - uid: 7680 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,21.5 + parent: 4812 + - uid: 7681 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,21.5 + parent: 4812 + - uid: 7686 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,21.5 + parent: 4812 + - uid: 7687 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,21.5 + parent: 4812 + - uid: 7688 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,21.5 + parent: 4812 + - uid: 7689 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,23.5 + parent: 4812 + - uid: 7690 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,25.5 + parent: 4812 + - uid: 7691 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,25.5 + parent: 4812 + - uid: 7692 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,22.5 + parent: 4812 + - uid: 7693 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,25.5 + parent: 4812 + - uid: 7694 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,25.5 + parent: 4812 + - uid: 7695 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,21.5 + parent: 4812 + - uid: 7696 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,27.5 + parent: 4812 + - uid: 7697 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,26.5 + parent: 4812 + - uid: 7698 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,25.5 + parent: 4812 + - uid: 7699 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,24.5 + parent: 4812 + - uid: 7700 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,25.5 + parent: 4812 + - uid: 7701 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,26.5 + parent: 4812 + - uid: 7702 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,27.5 + parent: 4812 + - uid: 7703 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,28.5 + parent: 4812 + - uid: 7704 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,28.5 + parent: 4812 + - uid: 7705 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,28.5 + parent: 4812 + - uid: 7706 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,28.5 + parent: 4812 + - uid: 7707 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,28.5 + parent: 4812 + - uid: 7712 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,9.5 + parent: 4812 + - uid: 7713 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,9.5 + parent: 4812 + - uid: 7714 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,9.5 + parent: 4812 + - uid: 7715 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,9.5 + parent: 4812 + - uid: 7718 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,18.5 + parent: 4812 + - uid: 7719 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,15.5 + parent: 4812 + - uid: 7720 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,15.5 + parent: 4812 + - uid: 7721 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,15.5 + parent: 4812 + - uid: 7722 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,15.5 + parent: 4812 + - uid: 7723 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,12.5 + parent: 4812 + - uid: 7724 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,12.5 + parent: 4812 + - uid: 7732 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,18.5 + parent: 4812 + - uid: 7733 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,22.5 + parent: 4812 + - uid: 7734 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,22.5 + parent: 4812 + - uid: 7735 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,22.5 + parent: 4812 + - uid: 7736 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,22.5 + parent: 4812 + - uid: 7737 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,18.5 + parent: 4812 + - uid: 7738 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,19.5 + parent: 4812 + - uid: 7739 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,20.5 + parent: 4812 + - uid: 7740 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,18.5 + parent: 4812 + - uid: 7743 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,16.5 + parent: 4812 + - uid: 7744 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,13.5 + parent: 4812 + - uid: 7749 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,9.5 + parent: 4812 + - uid: 7750 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,9.5 + parent: 4812 + - uid: 7751 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,9.5 + parent: 4812 + - uid: 7753 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,9.5 + parent: 4812 + - uid: 7754 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,9.5 + parent: 4812 + - uid: 7755 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,9.5 + parent: 4812 + - uid: 7756 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,21.5 + parent: 4812 + - uid: 7757 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,22.5 + parent: 4812 + - uid: 7758 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,17.5 + parent: 4812 + - uid: 7759 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,16.5 + parent: 4812 + - uid: 7760 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,15.5 + parent: 4812 + - uid: 7761 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,14.5 + parent: 4812 + - uid: 7762 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,13.5 + parent: 4812 + - uid: 7763 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,13.5 + parent: 4812 + - uid: 7765 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,13.5 + parent: 4812 + - uid: 7766 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,13.5 + parent: 4812 + - uid: 7767 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,13.5 + parent: 4812 + - uid: 7768 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,9.5 + parent: 4812 + - uid: 7769 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,9.5 + parent: 4812 + - uid: 7770 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,9.5 + parent: 4812 + - uid: 7771 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,9.5 + parent: 4812 + - uid: 7772 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,9.5 + parent: 4812 + - uid: 7773 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,9.5 + parent: 4812 + - uid: 7774 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,10.5 + parent: 4812 + - uid: 7775 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,11.5 + parent: 4812 + - uid: 7776 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,12.5 + parent: 4812 + - uid: 7937 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,6.5 + parent: 4812 + - uid: 7938 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,6.5 + parent: 4812 + - uid: 7939 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,6.5 + parent: 4812 + - uid: 7940 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,6.5 + parent: 4812 + - uid: 7941 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,6.5 + parent: 4812 + - uid: 7942 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,6.5 + parent: 4812 + - uid: 7943 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,6.5 + parent: 4812 + - uid: 7944 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,6.5 + parent: 4812 + - uid: 7945 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,6.5 + parent: 4812 + - uid: 7946 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,6.5 + parent: 4812 + - uid: 7947 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,6.5 + parent: 4812 + - uid: 7948 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,6.5 + parent: 4812 + - uid: 7950 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,6.5 + parent: 4812 + - uid: 7951 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,7.5 + parent: 4812 + - uid: 7952 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,8.5 + parent: 4812 + - uid: 7955 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,8.5 + parent: 4812 + - uid: 8621 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,0.5 + parent: 4812 + - uid: 8623 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,0.5 + parent: 4812 + - uid: 8624 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,0.5 + parent: 4812 + - uid: 8625 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,1.5 + parent: 4812 + - uid: 8626 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,5.5 + parent: 4812 + - uid: 8635 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,0.5 + parent: 4812 + - uid: 8639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,4.5 + parent: 4812 + - uid: 8641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-0.5 + parent: 4812 + - uid: 8642 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-1.5 + parent: 4812 + - uid: 8643 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-2.5 + parent: 4812 + - uid: 8644 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-3.5 + parent: 4812 + - uid: 8645 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-4.5 + parent: 4812 + - uid: 8646 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-5.5 + parent: 4812 + - uid: 8647 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-6.5 + parent: 4812 + - uid: 8648 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-4.5 + parent: 4812 + - uid: 8649 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-4.5 + parent: 4812 + - uid: 8650 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-4.5 + parent: 4812 + - uid: 8651 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-4.5 + parent: 4812 + - uid: 8652 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-5.5 + parent: 4812 + - uid: 8653 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-9.5 + parent: 4812 + - uid: 8654 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-10.5 + parent: 4812 + - uid: 8655 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-10.5 + parent: 4812 + - uid: 8656 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-10.5 + parent: 4812 + - uid: 8657 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-10.5 + parent: 4812 + - uid: 8658 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-10.5 + parent: 4812 + - uid: 8659 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-10.5 + parent: 4812 + - uid: 8660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-10.5 + parent: 4812 + - uid: 8661 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-9.5 + parent: 4812 + - uid: 8662 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-7.5 + parent: 4812 + - uid: 8663 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-6.5 + parent: 4812 + - uid: 8664 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-10.5 + parent: 4812 + - uid: 8665 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-10.5 + parent: 4812 + - uid: 8666 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-9.5 + parent: 4812 + - uid: 8667 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-7.5 + parent: 4812 + - uid: 8668 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-6.5 + parent: 4812 + - uid: 8669 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-5.5 + parent: 4812 + - uid: 8670 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-4.5 + parent: 4812 + - uid: 8671 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-3.5 + parent: 4812 + - uid: 8672 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-2.5 + parent: 4812 + - uid: 8673 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-1.5 + parent: 4812 + - uid: 8674 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-0.5 + parent: 4812 + - uid: 8675 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,0.5 + parent: 4812 + - uid: 8712 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-0.5 + parent: 4812 + - uid: 8713 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,-0.5 + parent: 4812 + - uid: 8714 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-0.5 + parent: 4812 + - uid: 8715 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-1.5 + parent: 4812 + - uid: 8716 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-2.5 + parent: 4812 + - uid: 8717 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-3.5 + parent: 4812 + - uid: 8718 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,-4.5 + parent: 4812 + - uid: 8719 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-4.5 + parent: 4812 + - uid: 8720 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-4.5 + parent: 4812 + - uid: 8724 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-4.5 + parent: 4812 + - uid: 8726 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-2.5 + parent: 4812 + - uid: 8727 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-1.5 + parent: 4812 + - uid: 8728 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-0.5 + parent: 4812 + - uid: 8729 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,-0.5 + parent: 4812 + - uid: 8730 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,-0.5 + parent: 4812 + - uid: 8731 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-0.5 + parent: 4812 + - uid: 8732 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-0.5 + parent: 4812 + - uid: 8733 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,-4.5 + parent: 4812 + - uid: 8751 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-3.5 + parent: 4812 + - uid: 8789 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-41.5 + parent: 4812 + - uid: 8790 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-41.5 + parent: 4812 + - uid: 8791 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-41.5 + parent: 4812 + - uid: 8793 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-41.5 + parent: 4812 + - uid: 8794 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-41.5 + parent: 4812 + - uid: 8795 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-41.5 + parent: 4812 + - uid: 8796 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-41.5 + parent: 4812 + - uid: 8797 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-40.5 + parent: 4812 + - uid: 8798 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-39.5 + parent: 4812 + - uid: 8799 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-38.5 + parent: 4812 + - uid: 8800 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-38.5 + parent: 4812 + - uid: 8801 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-38.5 + parent: 4812 + - uid: 8802 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-38.5 + parent: 4812 + - uid: 8809 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-38.5 + parent: 4812 + - uid: 8811 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-36.5 + parent: 4812 + - uid: 8812 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-34.5 + parent: 4812 + - uid: 8813 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-33.5 + parent: 4812 + - uid: 8814 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-32.5 + parent: 4812 + - uid: 8815 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-35.5 + parent: 4812 + - uid: 8816 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-37.5 + parent: 4812 + - uid: 8817 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-36.5 + parent: 4812 + - uid: 8818 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-35.5 + parent: 4812 + - uid: 8819 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-34.5 + parent: 4812 + - uid: 8820 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-35.5 + parent: 4812 + - uid: 8821 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-35.5 + parent: 4812 + - uid: 8822 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-34.5 + parent: 4812 + - uid: 8823 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-32.5 + parent: 4812 + - uid: 8824 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-32.5 + parent: 4812 + - uid: 8825 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-32.5 + parent: 4812 + - uid: 8826 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-32.5 + parent: 4812 + - uid: 8827 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-32.5 + parent: 4812 + - uid: 8828 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-32.5 + parent: 4812 + - uid: 8829 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-32.5 + parent: 4812 + - uid: 8830 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-32.5 + parent: 4812 + - uid: 8831 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,-32.5 + parent: 4812 + - uid: 8873 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-11.5 + parent: 4812 + - uid: 8874 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-12.5 + parent: 4812 + - uid: 8875 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-13.5 + parent: 4812 + - uid: 8876 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-14.5 + parent: 4812 + - uid: 8877 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-15.5 + parent: 4812 + - uid: 9022 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,2.5 + parent: 4812 + - uid: 9091 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,12.5 + parent: 4812 + - uid: 9092 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,11.5 + parent: 4812 + - uid: 9093 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,10.5 + parent: 4812 + - uid: 9094 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,9.5 + parent: 4812 + - uid: 9095 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,8.5 + parent: 4812 + - uid: 9096 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,7.5 + parent: 4812 + - uid: 9097 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,6.5 + parent: 4812 + - uid: 9098 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,5.5 + parent: 4812 + - uid: 9100 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,3.5 + parent: 4812 + - uid: 9101 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,2.5 + parent: 4812 + - uid: 9102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,1.5 + parent: 4812 + - uid: 9103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,12.5 + parent: 4812 + - uid: 9104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,11.5 + parent: 4812 + - uid: 9105 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,10.5 + parent: 4812 + - uid: 9106 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,9.5 + parent: 4812 + - uid: 9107 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,8.5 + parent: 4812 + - uid: 9108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,7.5 + parent: 4812 + - uid: 9109 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,6.5 + parent: 4812 + - uid: 9110 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,5.5 + parent: 4812 + - uid: 9111 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,4.5 + parent: 4812 + - uid: 9112 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,3.5 + parent: 4812 + - uid: 9113 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,2.5 + parent: 4812 + - uid: 9114 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,1.5 + parent: 4812 + - uid: 9139 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,0.5 + parent: 4812 + - uid: 9140 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,0.5 + parent: 4812 + - uid: 9141 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,0.5 + parent: 4812 + - uid: 9142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,0.5 + parent: 4812 + - uid: 9143 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,0.5 + parent: 4812 + - uid: 9144 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,0.5 + parent: 4812 + - uid: 9239 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,6.5 + parent: 4812 + - uid: 9240 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,4.5 + parent: 4812 + - uid: 9242 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,2.5 + parent: 4812 + - uid: 9243 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,2.5 + parent: 4812 + - uid: 9244 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,6.5 + parent: 4812 + - uid: 9245 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,2.5 + parent: 4812 + - uid: 9248 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,6.5 + parent: 4812 + - uid: 9256 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,4.5 + parent: 4812 + - uid: 9258 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,4.5 + parent: 4812 + - uid: 9260 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,4.5 + parent: 4812 + - uid: 9265 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,6.5 + parent: 4812 + - uid: 9266 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,8.5 + parent: 4812 + - uid: 9267 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,8.5 + parent: 4812 + - uid: 9268 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,8.5 + parent: 4812 + - uid: 9269 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,8.5 + parent: 4812 + - uid: 9270 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,10.5 + parent: 4812 + - uid: 9271 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,10.5 + parent: 4812 + - uid: 9272 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,10.5 + parent: 4812 + - uid: 9273 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,10.5 + parent: 4812 + - uid: 9274 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,12.5 + parent: 4812 + - uid: 9275 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,12.5 + parent: 4812 + - uid: 9276 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,12.5 + parent: 4812 + - uid: 9277 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,12.5 + parent: 4812 + - uid: 9284 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-5.5 + parent: 4812 + - uid: 9285 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,-3.5 + parent: 4812 + - uid: 9286 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,-2.5 + parent: 4812 + - uid: 9469 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,18.5 + parent: 4812 + - uid: 9470 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,18.5 + parent: 4812 + - uid: 9471 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,18.5 + parent: 4812 + - uid: 9472 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,18.5 + parent: 4812 + - uid: 9473 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,15.5 + parent: 4812 + - uid: 9474 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,15.5 + parent: 4812 + - uid: 9511 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,13.5 + parent: 4812 + - uid: 9517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-5.5 + parent: 4812 + - uid: 9518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,-5.5 + parent: 4812 + - uid: 9519 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-5.5 + parent: 4812 + - uid: 9520 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-3.5 + parent: 4812 + - uid: 9521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-5.5 + parent: 4812 + - uid: 9522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-3.5 + parent: 4812 + - uid: 9579 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-32.5 + parent: 4812 + - uid: 9590 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-25.5 + parent: 4812 + - uid: 9591 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-24.5 + parent: 4812 + - uid: 9592 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,-24.5 + parent: 4812 + - uid: 9594 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-24.5 + parent: 4812 + - uid: 9595 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-25.5 + parent: 4812 + - uid: 9596 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-26.5 + parent: 4812 + - uid: 9597 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-26.5 + parent: 4812 + - uid: 9598 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-26.5 + parent: 4812 + - uid: 9604 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,-24.5 + parent: 4812 + - uid: 9605 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-24.5 + parent: 4812 + - uid: 9606 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-24.5 + parent: 4812 + - uid: 9607 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -56.5,-21.5 + parent: 4812 + - uid: 9644 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-56.5 + parent: 4812 + - uid: 9645 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-56.5 + parent: 4812 + - uid: 9824 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-16.5 + parent: 4812 + - uid: 9825 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-17.5 + parent: 4812 + - uid: 9826 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-18.5 + parent: 4812 + - uid: 9827 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-19.5 + parent: 4812 + - uid: 9828 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-19.5 + parent: 4812 + - uid: 9829 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-15.5 + parent: 4812 + - uid: 9831 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,-15.5 + parent: 4812 + - uid: 9836 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-10.5 + parent: 4812 + - uid: 9837 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-5.5 + parent: 4812 + - uid: 9840 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-14.5 + parent: 4812 + - uid: 9841 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-15.5 + parent: 4812 + - uid: 9842 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-5.5 + parent: 4812 + - uid: 9844 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-6.5 + parent: 4812 + - uid: 9845 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-7.5 + parent: 4812 + - uid: 9846 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-14.5 + parent: 4812 + - uid: 9847 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-13.5 + parent: 4812 + - uid: 9848 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-12.5 + parent: 4812 + - uid: 9849 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-11.5 + parent: 4812 + - uid: 9850 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-10.5 + parent: 4812 + - uid: 9851 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-9.5 + parent: 4812 + - uid: 9852 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-8.5 + parent: 4812 + - uid: 9853 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,-14.5 + parent: 4812 + - uid: 9854 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,-14.5 + parent: 4812 + - uid: 9855 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,-14.5 + parent: 4812 + - uid: 9856 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-14.5 + parent: 4812 + - uid: 9857 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-14.5 + parent: 4812 + - uid: 9858 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-14.5 + parent: 4812 + - uid: 9859 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,-14.5 + parent: 4812 + - uid: 9860 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-14.5 + parent: 4812 + - uid: 9864 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-10.5 + parent: 4812 + - uid: 9865 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-9.5 + parent: 4812 + - uid: 9866 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-8.5 + parent: 4812 + - uid: 9867 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-7.5 + parent: 4812 + - uid: 9868 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-6.5 + parent: 4812 + - uid: 9873 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-9.5 + parent: 4812 + - uid: 9876 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-10.5 + parent: 4812 + - uid: 9890 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-9.5 + parent: 4812 + - uid: 9891 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-10.5 + parent: 4812 + - uid: 9895 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-14.5 + parent: 4812 + - uid: 9896 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-9.5 + parent: 4812 + - uid: 9900 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-9.5 + parent: 4812 + - uid: 9901 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-19.5 + parent: 4812 + - uid: 9902 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,-19.5 + parent: 4812 + - uid: 9903 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-19.5 + parent: 4812 + - uid: 9904 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-19.5 + parent: 4812 + - uid: 9905 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-19.5 + parent: 4812 + - uid: 9906 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-18.5 + parent: 4812 + - uid: 9907 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-17.5 + parent: 4812 + - uid: 9908 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-16.5 + parent: 4812 + - uid: 9939 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -55.5,-21.5 + parent: 4812 + - uid: 9940 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,-21.5 + parent: 4812 + - uid: 9941 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,-21.5 + parent: 4812 + - uid: 9942 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,-21.5 + parent: 4812 + - uid: 9943 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-21.5 + parent: 4812 + - uid: 9944 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-21.5 + parent: 4812 + - uid: 9945 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-21.5 + parent: 4812 + - uid: 9946 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,-21.5 + parent: 4812 + - uid: 9947 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-21.5 + parent: 4812 + - uid: 9948 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-21.5 + parent: 4812 + - uid: 9949 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-16.5 + parent: 4812 + - uid: 9950 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-17.5 + parent: 4812 + - uid: 9951 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-18.5 + parent: 4812 + - uid: 9952 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-18.5 + parent: 4812 + - uid: 9953 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -48.5,-18.5 + parent: 4812 + - uid: 9954 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-18.5 + parent: 4812 + - uid: 9955 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-19.5 + parent: 4812 + - uid: 9956 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-20.5 + parent: 4812 + - uid: 9957 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -46.5,-19.5 + parent: 4812 + - uid: 10635 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-10.5 + parent: 4812 + - uid: 10964 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-37.5 + parent: 4812 + - uid: 10989 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-41.5 + parent: 4812 + - uid: 11006 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-40.5 + parent: 4812 + - uid: 11007 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-39.5 + parent: 4812 + - uid: 11008 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-38.5 + parent: 4812 + - uid: 11030 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-42.5 + parent: 4812 + - uid: 11031 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-43.5 + parent: 4812 + - uid: 11032 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-43.5 + parent: 4812 + - uid: 11033 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-43.5 + parent: 4812 + - uid: 11034 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-43.5 + parent: 4812 + - uid: 11035 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-44.5 + parent: 4812 + - uid: 11036 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-45.5 + parent: 4812 + - uid: 11037 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-45.5 + parent: 4812 + - uid: 11038 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-45.5 + parent: 4812 + - uid: 11039 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-45.5 + parent: 4812 + - uid: 11040 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-45.5 + parent: 4812 + - uid: 11041 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-45.5 + parent: 4812 + - uid: 11042 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-43.5 + parent: 4812 + - uid: 11043 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-44.5 + parent: 4812 + - uid: 11044 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-43.5 + parent: 4812 + - uid: 11045 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-43.5 + parent: 4812 + - uid: 11046 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-43.5 + parent: 4812 + - uid: 11110 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-43.5 + parent: 4812 + - uid: 11111 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-42.5 + parent: 4812 + - uid: 11112 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-41.5 + parent: 4812 + - uid: 11113 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-40.5 + parent: 4812 + - uid: 11114 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-39.5 + parent: 4812 + - uid: 11115 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-38.5 + parent: 4812 + - uid: 11116 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-37.5 + parent: 4812 + - uid: 11117 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-36.5 + parent: 4812 + - uid: 11118 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-35.5 + parent: 4812 + - uid: 11119 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-30.5 + parent: 4812 + - uid: 11120 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-31.5 + parent: 4812 + - uid: 11125 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-39.5 + parent: 4812 + - uid: 11128 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-39.5 + parent: 4812 + - uid: 11131 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-39.5 + parent: 4812 + - uid: 11132 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-37.5 + parent: 4812 + - uid: 11133 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-37.5 + parent: 4812 + - uid: 11134 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-38.5 + parent: 4812 + - uid: 11135 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-35.5 + parent: 4812 + - uid: 11136 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-38.5 + parent: 4812 + - uid: 11137 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-38.5 + parent: 4812 + - uid: 11138 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-37.5 + parent: 4812 + - uid: 11140 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-37.5 + parent: 4812 + - uid: 11142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-39.5 + parent: 4812 + - uid: 11263 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-37.5 + parent: 4812 + - uid: 11264 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-37.5 + parent: 4812 + - uid: 11265 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-36.5 + parent: 4812 + - uid: 11340 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-35.5 + parent: 4812 + - uid: 11341 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-34.5 + parent: 4812 + - uid: 11342 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-33.5 + parent: 4812 + - uid: 11344 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-31.5 + parent: 4812 + - uid: 11345 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-31.5 + parent: 4812 + - uid: 11371 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-39.5 + parent: 4812 + - uid: 11372 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-40.5 + parent: 4812 + - uid: 11373 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-40.5 + parent: 4812 + - uid: 11374 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-40.5 + parent: 4812 + - uid: 11375 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-40.5 + parent: 4812 + - uid: 11376 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-40.5 + parent: 4812 + - uid: 11377 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-40.5 + parent: 4812 + - uid: 11378 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-40.5 + parent: 4812 + - uid: 11379 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-39.5 + parent: 4812 + - uid: 11380 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-38.5 + parent: 4812 + - uid: 11381 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-37.5 + parent: 4812 + - uid: 11382 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-37.5 + parent: 4812 +- proto: WallSolid + entities: + - uid: 1 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-9.5 + parent: 4812 + - uid: 2 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-10.5 + parent: 4812 + - uid: 3 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-4.5 + parent: 4812 + - uid: 4 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-3.5 + parent: 4812 + - uid: 5 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,0.5 + parent: 4812 + - uid: 6 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,1.5 + parent: 4812 + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,1.5 + parent: 4812 + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,3.5 + parent: 4812 + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,9.5 + parent: 4812 + - uid: 10 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,8.5 + parent: 4812 + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,4.5 + parent: 4812 + - uid: 13 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,5.5 + parent: 4812 + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,5.5 + parent: 4812 + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,5.5 + parent: 4812 + - uid: 16 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,5.5 + parent: 4812 + - uid: 17 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,5.5 + parent: 4812 + - uid: 18 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,6.5 + parent: 4812 + - uid: 19 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,8.5 + parent: 4812 + - uid: 20 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,9.5 + parent: 4812 + - uid: 21 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,10.5 + parent: 4812 + - uid: 22 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,10.5 + parent: 4812 + - uid: 23 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,10.5 + parent: 4812 + - uid: 24 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,10.5 + parent: 4812 + - uid: 25 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,10.5 + parent: 4812 + - uid: 26 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,10.5 + parent: 4812 + - uid: 27 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,10.5 + parent: 4812 + - uid: 28 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,10.5 + parent: 4812 + - uid: 29 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,11.5 + parent: 4812 + - uid: 30 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,12.5 + parent: 4812 + - uid: 31 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,12.5 + parent: 4812 + - uid: 33 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,15.5 + parent: 4812 + - uid: 34 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,14.5 + parent: 4812 + - uid: 36 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,15.5 + parent: 4812 + - uid: 37 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,13.5 + parent: 4812 + - uid: 38 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,12.5 + parent: 4812 + - uid: 39 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,12.5 + parent: 4812 + - uid: 40 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,11.5 + parent: 4812 + - uid: 41 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,10.5 + parent: 4812 + - uid: 42 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-9.5 + parent: 4812 + - uid: 43 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-9.5 + parent: 4812 + - uid: 44 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-10.5 + parent: 4812 + - uid: 45 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-7.5 + parent: 4812 + - uid: 46 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-6.5 + parent: 4812 + - uid: 47 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-5.5 + parent: 4812 + - uid: 48 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-10.5 + parent: 4812 + - uid: 49 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-9.5 + parent: 4812 + - uid: 50 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-8.5 + parent: 4812 + - uid: 51 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-8.5 + parent: 4812 + - uid: 52 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-4.5 + parent: 4812 + - uid: 53 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-2.5 + parent: 4812 + - uid: 54 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-1.5 + parent: 4812 + - uid: 55 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,0.5 + parent: 4812 + - uid: 56 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,1.5 + parent: 4812 + - uid: 57 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,2.5 + parent: 4812 + - uid: 58 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,2.5 + parent: 4812 + - uid: 59 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,10.5 + parent: 4812 + - uid: 60 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,10.5 + parent: 4812 + - uid: 61 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,10.5 + parent: 4812 + - uid: 62 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,10.5 + parent: 4812 + - uid: 63 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,9.5 + parent: 4812 + - uid: 64 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,8.5 + parent: 4812 + - uid: 65 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,7.5 + parent: 4812 + - uid: 66 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,6.5 + parent: 4812 + - uid: 67 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,5.5 + parent: 4812 + - uid: 68 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,4.5 + parent: 4812 + - uid: 69 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,3.5 + parent: 4812 + - uid: 70 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,2.5 + parent: 4812 + - uid: 71 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,1.5 + parent: 4812 + - uid: 72 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,0.5 + parent: 4812 + - uid: 73 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-0.5 + parent: 4812 + - uid: 74 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-1.5 + parent: 4812 + - uid: 75 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-2.5 + parent: 4812 + - uid: 76 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-2.5 + parent: 4812 + - uid: 77 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-2.5 + parent: 4812 + - uid: 78 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-2.5 + parent: 4812 + - uid: 79 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-2.5 + parent: 4812 + - uid: 80 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,2.5 + parent: 4812 + - uid: 81 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,2.5 + parent: 4812 + - uid: 82 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-0.5 + parent: 4812 + - uid: 83 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,0.5 + parent: 4812 + - uid: 84 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,1.5 + parent: 4812 + - uid: 85 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,1.5 + parent: 4812 + - uid: 86 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,1.5 + parent: 4812 + - uid: 87 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,1.5 + parent: 4812 + - uid: 88 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-2.5 + parent: 4812 + - uid: 89 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-3.5 + parent: 4812 + - uid: 90 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-4.5 + parent: 4812 + - uid: 91 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-4.5 + parent: 4812 + - uid: 92 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-4.5 + parent: 4812 + - uid: 93 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-4.5 + parent: 4812 + - uid: 94 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-4.5 + parent: 4812 + - uid: 95 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-4.5 + parent: 4812 + - uid: 96 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-7.5 + parent: 4812 + - uid: 97 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-7.5 + parent: 4812 + - uid: 98 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-7.5 + parent: 4812 + - uid: 99 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-8.5 + parent: 4812 + - uid: 100 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-8.5 + parent: 4812 + - uid: 101 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-8.5 + parent: 4812 + - uid: 102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-8.5 + parent: 4812 + - uid: 103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-8.5 + parent: 4812 + - uid: 104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-7.5 + parent: 4812 + - uid: 105 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-5.5 + parent: 4812 + - uid: 139 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-10.5 + parent: 4812 + - uid: 140 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-10.5 + parent: 4812 + - uid: 141 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-10.5 + parent: 4812 + - uid: 142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-10.5 + parent: 4812 + - uid: 143 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-10.5 + parent: 4812 + - uid: 145 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-10.5 + parent: 4812 + - uid: 146 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-10.5 + parent: 4812 + - uid: 147 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-9.5 + parent: 4812 + - uid: 148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-8.5 + parent: 4812 + - uid: 149 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-7.5 + parent: 4812 + - uid: 150 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-6.5 + parent: 4812 + - uid: 151 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-5.5 + parent: 4812 + - uid: 152 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-4.5 + parent: 4812 + - uid: 153 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-3.5 + parent: 4812 + - uid: 154 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-2.5 + parent: 4812 + - uid: 155 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-1.5 + parent: 4812 + - uid: 156 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-0.5 + parent: 4812 + - uid: 157 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,0.5 + parent: 4812 + - uid: 158 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,1.5 + parent: 4812 + - uid: 159 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,2.5 + parent: 4812 + - uid: 161 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,4.5 + parent: 4812 + - uid: 162 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,5.5 + parent: 4812 + - uid: 163 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,6.5 + parent: 4812 + - uid: 164 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,7.5 + parent: 4812 + - uid: 165 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,8.5 + parent: 4812 + - uid: 166 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,9.5 + parent: 4812 + - uid: 167 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,10.5 + parent: 4812 + - uid: 168 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,11.5 + parent: 4812 + - uid: 169 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,12.5 + parent: 4812 + - uid: 177 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,13.5 + parent: 4812 + - uid: 180 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,15.5 + parent: 4812 + - uid: 181 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,18.5 + parent: 4812 + - uid: 182 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,17.5 + parent: 4812 + - uid: 183 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,18.5 + parent: 4812 + - uid: 185 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,18.5 + parent: 4812 + - uid: 186 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,12.5 + parent: 4812 + - uid: 189 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,7.5 + parent: 4812 + - uid: 190 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,6.5 + parent: 4812 + - uid: 191 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,6.5 + parent: 4812 + - uid: 192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,6.5 + parent: 4812 + - uid: 193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,6.5 + parent: 4812 + - uid: 194 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,5.5 + parent: 4812 + - uid: 195 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-1.5 + parent: 4812 + - uid: 196 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-2.5 + parent: 4812 + - uid: 197 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-2.5 + parent: 4812 + - uid: 198 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-3.5 + parent: 4812 + - uid: 199 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-5.5 + parent: 4812 + - uid: 200 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-6.5 + parent: 4812 + - uid: 201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-5.5 + parent: 4812 + - uid: 202 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-7.5 + parent: 4812 + - uid: 203 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-8.5 + parent: 4812 + - uid: 204 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-9.5 + parent: 4812 + - uid: 205 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-10.5 + parent: 4812 + - uid: 206 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-10.5 + parent: 4812 + - uid: 207 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-10.5 + parent: 4812 + - uid: 208 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-10.5 + parent: 4812 + - uid: 209 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-10.5 + parent: 4812 + - uid: 210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-10.5 + parent: 4812 + - uid: 211 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-10.5 + parent: 4812 + - uid: 212 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-10.5 + parent: 4812 + - uid: 213 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-10.5 + parent: 4812 + - uid: 214 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-10.5 + parent: 4812 + - uid: 225 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-9.5 + parent: 4812 + - uid: 226 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-8.5 + parent: 4812 + - uid: 227 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-7.5 + parent: 4812 + - uid: 228 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-6.5 + parent: 4812 + - uid: 229 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-5.5 + parent: 4812 + - uid: 230 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-5.5 + parent: 4812 + - uid: 231 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-5.5 + parent: 4812 + - uid: 232 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-4.5 + parent: 4812 + - uid: 233 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-4.5 + parent: 4812 + - uid: 234 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-4.5 + parent: 4812 + - uid: 235 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-4.5 + parent: 4812 + - uid: 236 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-4.5 + parent: 4812 + - uid: 237 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-4.5 + parent: 4812 + - uid: 238 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-4.5 + parent: 4812 + - uid: 239 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-4.5 + parent: 4812 + - uid: 240 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-4.5 + parent: 4812 + - uid: 241 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-4.5 + parent: 4812 + - uid: 242 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-4.5 + parent: 4812 + - uid: 243 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-4.5 + parent: 4812 + - uid: 244 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-2.5 + parent: 4812 + - uid: 245 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-2.5 + parent: 4812 + - uid: 246 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-2.5 + parent: 4812 + - uid: 247 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-2.5 + parent: 4812 + - uid: 248 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-2.5 + parent: 4812 + - uid: 249 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-2.5 + parent: 4812 + - uid: 250 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-2.5 + parent: 4812 + - uid: 262 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,6.5 + parent: 4812 + - uid: 263 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,6.5 + parent: 4812 + - uid: 264 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,6.5 + parent: 4812 + - uid: 265 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,6.5 + parent: 4812 + - uid: 266 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,6.5 + parent: 4812 + - uid: 267 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,6.5 + parent: 4812 + - uid: 268 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,6.5 + parent: 4812 + - uid: 269 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,6.5 + parent: 4812 + - uid: 270 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,3.5 + parent: 4812 + - uid: 271 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,4.5 + parent: 4812 + - uid: 272 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,5.5 + parent: 4812 + - uid: 273 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,3.5 + parent: 4812 + - uid: 274 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,3.5 + parent: 4812 + - uid: 275 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,4.5 + parent: 4812 + - uid: 276 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,5.5 + parent: 4812 + - uid: 279 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-1.5 + parent: 4812 + - uid: 280 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-0.5 + parent: 4812 + - uid: 281 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,0.5 + parent: 4812 + - uid: 282 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,0.5 + parent: 4812 + - uid: 283 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-1.5 + parent: 4812 + - uid: 284 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-0.5 + parent: 4812 + - uid: 285 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,0.5 + parent: 4812 + - uid: 286 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,7.5 + parent: 4812 + - uid: 287 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,8.5 + parent: 4812 + - uid: 288 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,9.5 + parent: 4812 + - uid: 289 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,11.5 + parent: 4812 + - uid: 290 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,12.5 + parent: 4812 + - uid: 291 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,13.5 + parent: 4812 + - uid: 292 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,13.5 + parent: 4812 + - uid: 293 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,13.5 + parent: 4812 + - uid: 294 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,13.5 + parent: 4812 + - uid: 295 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,13.5 + parent: 4812 + - uid: 296 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,13.5 + parent: 4812 + - uid: 318 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,4.5 + parent: 4812 + - uid: 429 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,9.5 + parent: 4812 + - uid: 898 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,7.5 + parent: 4812 + - uid: 899 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,8.5 + parent: 4812 + - uid: 900 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,9.5 + parent: 4812 + - uid: 1253 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,1.5 + parent: 4812 + - uid: 1917 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,29.5 + parent: 4812 + - uid: 1918 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,27.5 + parent: 4812 + - uid: 1919 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,27.5 + parent: 4812 + - uid: 1978 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,26.5 + parent: 4812 + - uid: 1979 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,26.5 + parent: 4812 + - uid: 1980 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,25.5 + parent: 4812 + - uid: 1981 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,27.5 + parent: 4812 + - uid: 1982 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,29.5 + parent: 4812 + - uid: 2738 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,21.5 + parent: 4812 + - uid: 2739 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,22.5 + parent: 4812 + - uid: 2740 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,23.5 + parent: 4812 + - uid: 2742 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,25.5 + parent: 4812 + - uid: 2743 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,26.5 + parent: 4812 + - uid: 2744 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,27.5 + parent: 4812 + - uid: 2745 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,28.5 + parent: 4812 + - uid: 2788 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,16.5 + parent: 4812 + - uid: 2789 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,18.5 + parent: 4812 + - uid: 2790 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,16.5 + parent: 4812 + - uid: 2791 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,16.5 + parent: 4812 + - uid: 2792 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,12.5 + parent: 4812 + - uid: 2793 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,12.5 + parent: 4812 + - uid: 2794 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,12.5 + parent: 4812 + - uid: 2795 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,12.5 + parent: 4812 + - uid: 2796 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,12.5 + parent: 4812 + - uid: 2797 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,12.5 + parent: 4812 + - uid: 2798 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,12.5 + parent: 4812 + - uid: 2799 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,12.5 + parent: 4812 + - uid: 2800 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,12.5 + parent: 4812 + - uid: 2851 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,22.5 + parent: 4812 + - uid: 3348 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,11.5 + parent: 4812 + - uid: 3351 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,11.5 + parent: 4812 + - uid: 3354 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,9.5 + parent: 4812 + - uid: 3435 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,33.5 + parent: 4812 + - uid: 3462 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,34.5 + parent: 4812 + - uid: 3463 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,33.5 + parent: 4812 + - uid: 3474 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,44.5 + parent: 4812 + - uid: 3475 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,41.5 + parent: 4812 + - uid: 3476 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,40.5 + parent: 4812 + - uid: 3980 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,37.5 + parent: 4812 + - uid: 3981 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,33.5 + parent: 4812 + - uid: 3983 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,8.5 + parent: 4812 + - uid: 3984 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,6.5 + parent: 4812 + - uid: 3985 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,5.5 + parent: 4812 + - uid: 3986 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,9.5 + parent: 4812 + - uid: 3987 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,9.5 + parent: 4812 + - uid: 3988 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,9.5 + parent: 4812 + - uid: 3989 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,9.5 + parent: 4812 + - uid: 4006 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,5.5 + parent: 4812 + - uid: 4013 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,-31.5 + parent: 4812 + - uid: 4014 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-31.5 + parent: 4812 + - uid: 4015 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,3.5 + parent: 4812 + - uid: 4016 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,1.5 + parent: 4812 + - uid: 4017 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,1.5 + parent: 4812 + - uid: 4018 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,0.5 + parent: 4812 + - uid: 4019 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,0.5 + parent: 4812 + - uid: 4020 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,0.5 + parent: 4812 + - uid: 4021 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,0.5 + parent: 4812 + - uid: 4022 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,1.5 + parent: 4812 + - uid: 4023 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,2.5 + parent: 4812 + - uid: 4024 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,3.5 + parent: 4812 + - uid: 4025 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,4.5 + parent: 4812 + - uid: 4026 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,5.5 + parent: 4812 + - uid: 4027 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,5.5 + parent: 4812 + - uid: 4028 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,5.5 + parent: 4812 + - uid: 4029 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,5.5 + parent: 4812 + - uid: 4030 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,6.5 + parent: 4812 + - uid: 4031 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,7.5 + parent: 4812 + - uid: 4032 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,8.5 + parent: 4812 + - uid: 4033 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,2.5 + parent: 4812 + - uid: 4034 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,1.5 + parent: 4812 + - uid: 4035 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,0.5 + parent: 4812 + - uid: 4036 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-0.5 + parent: 4812 + - uid: 4037 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-1.5 + parent: 4812 + - uid: 4038 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-0.5 + parent: 4812 + - uid: 4039 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-1.5 + parent: 4812 + - uid: 4040 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-1.5 + parent: 4812 + - uid: 4041 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-1.5 + parent: 4812 + - uid: 4042 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-1.5 + parent: 4812 + - uid: 4043 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-1.5 + parent: 4812 + - uid: 4044 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-1.5 + parent: 4812 + - uid: 4045 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-1.5 + parent: 4812 + - uid: 4046 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-1.5 + parent: 4812 + - uid: 4047 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-1.5 + parent: 4812 + - uid: 4049 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,0.5 + parent: 4812 + - uid: 4118 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-6.5 + parent: 4812 + - uid: 4119 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-5.5 + parent: 4812 + - uid: 4120 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,0.5 + parent: 4812 + - uid: 4121 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,1.5 + parent: 4812 + - uid: 4123 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-4.5 + parent: 4812 + - uid: 4124 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-4.5 + parent: 4812 + - uid: 4125 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-5.5 + parent: 4812 + - uid: 4126 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-5.5 + parent: 4812 + - uid: 4127 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-6.5 + parent: 4812 + - uid: 4128 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-5.5 + parent: 4812 + - uid: 4129 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-5.5 + parent: 4812 + - uid: 4130 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-4.5 + parent: 4812 + - uid: 4131 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-4.5 + parent: 4812 + - uid: 4132 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-6.5 + parent: 4812 + - uid: 4133 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-10.5 + parent: 4812 + - uid: 4649 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-14.5 + parent: 4812 + - uid: 4650 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-14.5 + parent: 4812 + - uid: 4651 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-20.5 + parent: 4812 + - uid: 4652 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-20.5 + parent: 4812 + - uid: 4653 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-20.5 + parent: 4812 + - uid: 4654 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-20.5 + parent: 4812 + - uid: 4655 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-20.5 + parent: 4812 + - uid: 4717 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,-26.5 + parent: 4812 + - uid: 4756 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,-28.5 + parent: 4812 + - uid: 4757 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,-29.5 + parent: 4812 + - uid: 4783 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-35.5 + parent: 4812 + - uid: 4784 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-34.5 + parent: 4812 + - uid: 4785 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-33.5 + parent: 4812 + - uid: 4786 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-33.5 + parent: 4812 + - uid: 4787 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-33.5 + parent: 4812 + - uid: 4788 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-33.5 + parent: 4812 + - uid: 4793 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-33.5 + parent: 4812 + - uid: 4794 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-33.5 + parent: 4812 + - uid: 4795 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-36.5 + parent: 4812 + - uid: 4797 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,-29.5 + parent: 4812 + - uid: 4814 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-28.5 + parent: 4812 + - uid: 4916 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-24.5 + parent: 4812 + - uid: 4918 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-25.5 + parent: 4812 + - uid: 4919 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-26.5 + parent: 4812 + - uid: 4922 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-28.5 + parent: 4812 + - uid: 4937 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-29.5 + parent: 4812 + - uid: 5024 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-19.5 + parent: 4812 + - uid: 5050 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-25.5 + parent: 4812 + - uid: 5333 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-13.5 + parent: 4812 + - uid: 5334 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-14.5 + parent: 4812 + - uid: 5335 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-13.5 + parent: 4812 + - uid: 5338 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-19.5 + parent: 4812 + - uid: 5339 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-19.5 + parent: 4812 + - uid: 5340 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-18.5 + parent: 4812 + - uid: 5341 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-16.5 + parent: 4812 + - uid: 5342 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-15.5 + parent: 4812 + - uid: 5390 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-13.5 + parent: 4812 + - uid: 5425 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-19.5 + parent: 4812 + - uid: 5426 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-19.5 + parent: 4812 + - uid: 5427 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-19.5 + parent: 4812 + - uid: 5430 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-14.5 + parent: 4812 + - uid: 5457 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-27.5 + parent: 4812 + - uid: 5465 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-22.5 + parent: 4812 + - uid: 5466 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-22.5 + parent: 4812 + - uid: 5467 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-22.5 + parent: 4812 + - uid: 5468 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-27.5 + parent: 4812 + - uid: 5562 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-23.5 + parent: 4812 + - uid: 5563 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-27.5 + parent: 4812 + - uid: 5567 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-28.5 + parent: 4812 + - uid: 5619 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-16.5 + parent: 4812 + - uid: 5620 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-18.5 + parent: 4812 + - uid: 5836 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-32.5 + parent: 4812 + - uid: 5837 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-31.5 + parent: 4812 + - uid: 6498 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-12.5 + parent: 4812 + - uid: 6501 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-13.5 + parent: 4812 + - uid: 6502 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-13.5 + parent: 4812 + - uid: 6503 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-13.5 + parent: 4812 + - uid: 6504 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-13.5 + parent: 4812 + - uid: 6505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-14.5 + parent: 4812 + - uid: 6506 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-15.5 + parent: 4812 + - uid: 6507 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-16.5 + parent: 4812 + - uid: 6508 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-17.5 + parent: 4812 + - uid: 6509 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-18.5 + parent: 4812 + - uid: 6510 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-19.5 + parent: 4812 + - uid: 6511 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-20.5 + parent: 4812 + - uid: 6512 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-21.5 + parent: 4812 + - uid: 6513 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-21.5 + parent: 4812 + - uid: 6514 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-21.5 + parent: 4812 + - uid: 6515 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-21.5 + parent: 4812 + - uid: 6516 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-21.5 + parent: 4812 + - uid: 6517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-21.5 + parent: 4812 + - uid: 6518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-21.5 + parent: 4812 + - uid: 6520 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-21.5 + parent: 4812 + - uid: 6521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-20.5 + parent: 4812 + - uid: 6522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-20.5 + parent: 4812 + - uid: 6523 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-22.5 + parent: 4812 + - uid: 6524 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-23.5 + parent: 4812 + - uid: 6525 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-24.5 + parent: 4812 + - uid: 6526 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-24.5 + parent: 4812 + - uid: 6527 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-24.5 + parent: 4812 + - uid: 6528 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-24.5 + parent: 4812 + - uid: 6529 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-24.5 + parent: 4812 + - uid: 6530 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-23.5 + parent: 4812 + - uid: 6531 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-22.5 + parent: 4812 + - uid: 6532 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-21.5 + parent: 4812 + - uid: 6533 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-20.5 + parent: 4812 + - uid: 6534 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-19.5 + parent: 4812 + - uid: 6535 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-18.5 + parent: 4812 + - uid: 6536 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-17.5 + parent: 4812 + - uid: 6537 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-16.5 + parent: 4812 + - uid: 6538 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-15.5 + parent: 4812 + - uid: 6539 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-14.5 + parent: 4812 + - uid: 6540 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-13.5 + parent: 4812 + - uid: 6541 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-13.5 + parent: 4812 + - uid: 6542 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-13.5 + parent: 4812 + - uid: 6543 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-13.5 + parent: 4812 + - uid: 6544 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-13.5 + parent: 4812 + - uid: 6545 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-20.5 + parent: 4812 + - uid: 6549 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-13.5 + parent: 4812 + - uid: 6654 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-24.5 + parent: 4812 + - uid: 6683 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-24.5 + parent: 4812 + - uid: 6711 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-37.5 + parent: 4812 + - uid: 6712 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-37.5 + parent: 4812 + - uid: 6713 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-38.5 + parent: 4812 + - uid: 6714 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-39.5 + parent: 4812 + - uid: 6715 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-38.5 + parent: 4812 + - uid: 6716 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-38.5 + parent: 4812 + - uid: 6717 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-38.5 + parent: 4812 + - uid: 6718 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-38.5 + parent: 4812 + - uid: 6719 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-37.5 + parent: 4812 + - uid: 6720 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-36.5 + parent: 4812 + - uid: 6721 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-35.5 + parent: 4812 + - uid: 6722 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-34.5 + parent: 4812 + - uid: 6723 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-35.5 + parent: 4812 + - uid: 6724 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-34.5 + parent: 4812 + - uid: 6725 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-33.5 + parent: 4812 + - uid: 6726 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-32.5 + parent: 4812 + - uid: 6727 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-34.5 + parent: 4812 + - uid: 6728 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-34.5 + parent: 4812 + - uid: 6729 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-33.5 + parent: 4812 + - uid: 6730 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-34.5 + parent: 4812 + - uid: 6731 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-34.5 + parent: 4812 + - uid: 6732 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-33.5 + parent: 4812 + - uid: 6733 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-32.5 + parent: 4812 + - uid: 6734 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-31.5 + parent: 4812 + - uid: 6739 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-32.5 + parent: 4812 + - uid: 6740 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-33.5 + parent: 4812 + - uid: 6741 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-33.5 + parent: 4812 + - uid: 6742 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-32.5 + parent: 4812 + - uid: 6743 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-31.5 + parent: 4812 + - uid: 6744 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-31.5 + parent: 4812 + - uid: 6745 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-31.5 + parent: 4812 + - uid: 6746 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-31.5 + parent: 4812 + - uid: 6747 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-32.5 + parent: 4812 + - uid: 6748 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-31.5 + parent: 4812 + - uid: 6749 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-31.5 + parent: 4812 + - uid: 6750 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-31.5 + parent: 4812 + - uid: 6751 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-31.5 + parent: 4812 + - uid: 6752 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-31.5 + parent: 4812 + - uid: 6753 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-31.5 + parent: 4812 + - uid: 6766 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-29.5 + parent: 4812 + - uid: 6767 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-29.5 + parent: 4812 + - uid: 6768 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-29.5 + parent: 4812 + - uid: 6769 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-29.5 + parent: 4812 + - uid: 6770 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-29.5 + parent: 4812 + - uid: 6771 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-29.5 + parent: 4812 + - uid: 6772 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-29.5 + parent: 4812 + - uid: 6773 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-29.5 + parent: 4812 + - uid: 6774 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-29.5 + parent: 4812 + - uid: 6775 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-29.5 + parent: 4812 + - uid: 6776 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-29.5 + parent: 4812 + - uid: 6789 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-22.5 + parent: 4812 + - uid: 7060 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-19.5 + parent: 4812 + - uid: 7063 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-15.5 + parent: 4812 + - uid: 7184 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-23.5 + parent: 4812 + - uid: 7185 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-24.5 + parent: 4812 + - uid: 7187 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-31.5 + parent: 4812 + - uid: 7194 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-27.5 + parent: 4812 + - uid: 7195 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-28.5 + parent: 4812 + - uid: 7212 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-24.5 + parent: 4812 + - uid: 7213 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-24.5 + parent: 4812 + - uid: 7215 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-25.5 + parent: 4812 + - uid: 7217 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-27.5 + parent: 4812 + - uid: 7218 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-28.5 + parent: 4812 + - uid: 7235 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-19.5 + parent: 4812 + - uid: 7246 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-18.5 + parent: 4812 + - uid: 7314 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-25.5 + parent: 4812 + - uid: 7315 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,-25.5 + parent: 4812 + - uid: 7317 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-29.5 + parent: 4812 + - uid: 7318 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-31.5 + parent: 4812 + - uid: 7319 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-14.5 + parent: 4812 + - uid: 7320 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-14.5 + parent: 4812 + - uid: 7321 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-14.5 + parent: 4812 + - uid: 7322 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-14.5 + parent: 4812 + - uid: 7727 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,18.5 + parent: 4812 + - uid: 7728 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,18.5 + parent: 4812 + - uid: 7729 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,18.5 + parent: 4812 + - uid: 7953 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,7.5 + parent: 4812 + - uid: 8162 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,26.5 + parent: 4812 + - uid: 8163 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,26.5 + parent: 4812 + - uid: 8164 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,28.5 + parent: 4812 + - uid: 8456 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,37.5 + parent: 4812 + - uid: 8457 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,37.5 + parent: 4812 + - uid: 8833 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-37.5 + parent: 4812 + - uid: 8834 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-34.5 + parent: 4812 + - uid: 8835 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-34.5 + parent: 4812 + - uid: 8837 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-32.5 + parent: 4812 + - uid: 8840 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-40.5 + parent: 4812 + - uid: 8852 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-28.5 + parent: 4812 + - uid: 8854 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-26.5 + parent: 4812 + - uid: 8855 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-26.5 + parent: 4812 + - uid: 8856 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-26.5 + parent: 4812 + - uid: 8857 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-26.5 + parent: 4812 + - uid: 8903 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-26.5 + parent: 4812 + - uid: 8904 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-27.5 + parent: 4812 + - uid: 8905 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-25.5 + parent: 4812 + - uid: 8907 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-23.5 + parent: 4812 + - uid: 9968 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-29.5 + parent: 4812 + - uid: 9969 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-30.5 + parent: 4812 + - uid: 9970 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-30.5 + parent: 4812 + - uid: 9973 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-30.5 + parent: 4812 + - uid: 9985 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-22.5 + parent: 4812 + - uid: 9986 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-21.5 + parent: 4812 + - uid: 9987 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-25.5 + parent: 4812 + - uid: 9988 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-24.5 + parent: 4812 + - uid: 9989 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-23.5 + parent: 4812 + - uid: 9994 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-21.5 + parent: 4812 + - uid: 10153 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,-23.5 + parent: 4812 + - uid: 10155 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -49.5,-23.5 + parent: 4812 + - uid: 10156 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-23.5 + parent: 4812 + - uid: 10224 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-22.5 + parent: 4812 + - uid: 10404 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -47.5,-28.5 + parent: 4812 + - uid: 10613 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-24.5 + parent: 4812 + - uid: 10614 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-23.5 + parent: 4812 + - uid: 11049 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-39.5 + parent: 4812 + - uid: 11050 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-39.5 + parent: 4812 + - uid: 11051 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-39.5 + parent: 4812 + - uid: 11052 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-39.5 + parent: 4812 + - uid: 11053 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-35.5 + parent: 4812 + - uid: 11054 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-35.5 + parent: 4812 + - uid: 11055 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-35.5 + parent: 4812 + - uid: 11056 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-35.5 + parent: 4812 + - uid: 11057 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-31.5 + parent: 4812 + - uid: 11058 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-31.5 + parent: 4812 + - uid: 11059 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-31.5 + parent: 4812 + - uid: 11060 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-31.5 + parent: 4812 + - uid: 11061 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-35.5 + parent: 4812 + - uid: 11062 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-35.5 + parent: 4812 + - uid: 11063 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-35.5 + parent: 4812 + - uid: 11064 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-35.5 + parent: 4812 + - uid: 11066 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-39.5 + parent: 4812 + - uid: 11067 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-39.5 + parent: 4812 + - uid: 11068 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-39.5 + parent: 4812 + - uid: 11069 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-39.5 + parent: 4812 + - uid: 11070 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-39.5 + parent: 4812 + - uid: 11121 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-35.5 + parent: 4812 + - uid: 11122 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-35.5 + parent: 4812 + - uid: 11123 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-35.5 + parent: 4812 + - uid: 11124 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-35.5 + parent: 4812 + - uid: 11266 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-36.5 + parent: 4812 + - uid: 11267 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-35.5 + parent: 4812 + - uid: 11268 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-35.5 + parent: 4812 + - uid: 11269 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-35.5 + parent: 4812 + - uid: 11270 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-35.5 + parent: 4812 + - uid: 11271 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-35.5 + parent: 4812 + - uid: 11272 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-35.5 + parent: 4812 + - uid: 11273 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-35.5 + parent: 4812 + - uid: 11302 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-34.5 + parent: 4812 + - uid: 11303 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-34.5 + parent: 4812 + - uid: 11304 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-34.5 + parent: 4812 + - uid: 11305 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-34.5 + parent: 4812 + - uid: 11348 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-33.5 + parent: 4812 + - uid: 11349 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-32.5 + parent: 4812 + - uid: 11366 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-38.5 + parent: 4812 + - uid: 11367 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-37.5 + parent: 4812 + - uid: 11368 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-35.5 + parent: 4812 + - uid: 11369 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-35.5 + parent: 4812 + - uid: 11370 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-36.5 + parent: 4812 + - uid: 11383 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-35.5 + parent: 4812 + - uid: 11384 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-35.5 + parent: 4812 + - uid: 11385 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-37.5 + parent: 4812 + - uid: 11389 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-37.5 + parent: 4812 + - uid: 11475 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 4812 + - uid: 11646 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 4812 + - uid: 11706 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-42.5 + parent: 4812 + - uid: 11794 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,1.5 + parent: 4812 + - uid: 11795 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,1.5 + parent: 4812 + - uid: 11796 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,1.5 + parent: 4812 + - uid: 11797 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,0.5 + parent: 4812 + - uid: 11798 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-0.5 + parent: 4812 + - uid: 11799 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-1.5 + parent: 4812 + - uid: 11800 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-2.5 + parent: 4812 + - uid: 11801 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-2.5 + parent: 4812 + - uid: 11848 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,12.5 + parent: 4812 +- proto: WallSolidRust + entities: + - uid: 7302 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-29.5 + parent: 4812 + - uid: 7305 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-26.5 + parent: 4812 + - uid: 7312 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-25.5 + parent: 4812 + - uid: 7313 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-30.5 + parent: 4812 + - uid: 7316 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,-25.5 + parent: 4812 + - uid: 7335 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-31.5 + parent: 4812 + - uid: 7350 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-33.5 + parent: 4812 + - uid: 7351 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-32.5 + parent: 4812 + - uid: 7353 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-30.5 + parent: 4812 + - uid: 7354 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-30.5 + parent: 4812 + - uid: 7355 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-29.5 + parent: 4812 + - uid: 7356 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-27.5 + parent: 4812 + - uid: 7357 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-30.5 + parent: 4812 + - uid: 7358 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-28.5 + parent: 4812 + - uid: 7359 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-24.5 + parent: 4812 + - uid: 7360 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-30.5 + parent: 4812 + - uid: 7361 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-30.5 + parent: 4812 + - uid: 7362 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-22.5 + parent: 4812 + - uid: 7363 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-21.5 + parent: 4812 + - uid: 7364 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-21.5 + parent: 4812 + - uid: 7365 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-13.5 + parent: 4812 +- proto: WardrobeBlackFilled + entities: + - uid: 11351 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeFormal + entities: + - uid: 10921 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: + - 10924 + - 10923 + - 10922 + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeMixedFilled + entities: + - uid: 10852 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobePrisonFilled + entities: + - uid: 8354 + components: + - type: Transform + pos: -26.5,20.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8355 + components: + - type: Transform + pos: -26.5,17.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8383 + components: + - type: Transform + pos: -29.5,26.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8384 + components: + - type: Transform + pos: -25.5,26.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeYellowFilled + entities: + - uid: 12169 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 4812 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6033952 + - 6.031821 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WarningCO2 + entities: + - uid: 9280 + components: + - type: Transform + pos: -50.5,6.5 + parent: 4812 +- proto: WarningN2 + entities: + - uid: 9278 + components: + - type: Transform + pos: -50.5,2.5 + parent: 4812 +- proto: WarningO2 + entities: + - uid: 9279 + components: + - type: Transform + pos: -50.5,4.5 + parent: 4812 +- proto: WarningPlasma + entities: + - uid: 9282 + components: + - type: Transform + pos: -50.5,10.5 + parent: 4812 +- proto: WarningTritium + entities: + - uid: 9283 + components: + - type: Transform + pos: -50.5,12.5 + parent: 4812 +- proto: WarningWaste + entities: + - uid: 9281 + components: + - type: Transform + pos: -50.5,8.5 + parent: 4812 +- proto: WarpPoint + entities: + - uid: 12485 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 4812 + - type: WarpPoint + location: sci +- proto: WaterCooler + entities: + - uid: 2673 + components: + - type: Transform + pos: 0.5,31.5 + parent: 4812 + - uid: 3245 + components: + - type: Transform + pos: 14.5,13.5 + parent: 4812 + - uid: 8433 + components: + - type: Transform + pos: -39.5,10.5 + parent: 4812 + - uid: 10759 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 4812 +- proto: WaterTankFull + entities: + - uid: 1484 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 4812 + - uid: 3358 + components: + - type: Transform + pos: 13.5,30.5 + parent: 4812 + - uid: 6241 + components: + - type: Transform + pos: -11.5,15.5 + parent: 4812 + - uid: 8409 + components: + - type: Transform + pos: -32.5,32.5 + parent: 4812 + - uid: 8576 + components: + - type: Transform + pos: -16.5,12.5 + parent: 4812 + - uid: 9069 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 4812 + - uid: 9818 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 4812 + - uid: 10702 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 4812 + - uid: 11883 + components: + - type: Transform + pos: 7.5,12.5 + parent: 4812 + - uid: 11927 + components: + - type: Transform + pos: -42.5,-21.5 + parent: 4812 +- proto: WaterTankHighCapacity + entities: + - uid: 1093 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 4812 + - uid: 3678 + components: + - type: Transform + pos: 4.5,51.5 + parent: 4812 +- proto: WaterVaporCanister + entities: + - uid: 9455 + components: + - type: Transform + pos: -53.5,7.5 + parent: 4812 + - type: AtmosDevice + joinedGrid: 4812 +- proto: WeaponCapacitorRecharger + entities: + - uid: 2515 + components: + - type: Transform + pos: 9.5,26.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 2608 + components: + - type: Transform + pos: -10.5,25.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 4572 + components: + - type: Transform + pos: 27.5,3.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 6306 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 6483 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 8266 + components: + - type: Transform + pos: -20.5,22.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 8345 + components: + - type: Transform + pos: -31.5,12.5 + parent: 4812 + - type: Physics + canCollide: False + - uid: 8346 + components: + - type: Transform + pos: -31.5,14.5 + parent: 4812 + - type: Physics + canCollide: False +- proto: WeaponDisabler + entities: + - uid: 3738 + components: + - type: Transform + pos: -39.515656,11.630442 + parent: 4812 + - uid: 3753 + components: + - type: Transform + pos: -39.609406,11.771067 + parent: 4812 + - uid: 3754 + components: + - type: Transform + pos: -33.40336,20.459352 + parent: 4812 + - uid: 3759 + components: + - type: Transform + pos: -33.40336,20.459352 + parent: 4812 +- proto: WeaponLaserCarbine + entities: + - uid: 12470 + components: + - type: Transform + pos: -33.4461,20.270079 + parent: 4812 + - uid: 12471 + components: + - type: Transform + pos: -33.4461,20.218811 + parent: 4812 +- proto: WeaponShotgunKammerer + entities: + - uid: 12052 + components: + - type: Transform + pos: -35.535385,19.569157 + parent: 4812 + - type: BallisticAmmoProvider + unspawnedCount: 4 + - uid: 12053 + components: + - type: Transform + pos: -35.410385,19.412907 + parent: 4812 + - type: BallisticAmmoProvider + unspawnedCount: 4 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 12268 + components: + - type: Transform + pos: 7.5,49.5 + parent: 4812 + - uid: 12269 + components: + - type: Transform + pos: 13.5,49.5 + parent: 4812 + - uid: 12270 + components: + - type: Transform + pos: 13.5,55.5 + parent: 4812 + - uid: 12271 + components: + - type: Transform + pos: 7.5,55.5 + parent: 4812 +- proto: WeedSpray + entities: + - uid: 1476 + components: + - type: Transform + pos: -8.252506,-7.3833528 + parent: 4812 +- proto: Welder + entities: + - uid: 8592 + components: + - type: Transform + pos: -20.391129,12.56624 + parent: 4812 +- proto: WelderIndustrial + entities: + - uid: 10715 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 4812 +- proto: WelderIndustrialAdvanced + entities: + - uid: 3453 + components: + - type: Transform + pos: 35.616592,-30.437298 + parent: 4812 + - uid: 10724 + components: + - type: Transform + pos: -36.35727,8.431009 + parent: 4812 +- proto: WelderMini + entities: + - uid: 6239 + components: + - type: Transform + pos: 15.765093,-23.454037 + parent: 4812 + - uid: 11470 + components: + - type: Transform + pos: 28.545038,-35.383316 + parent: 4812 +- proto: WeldingFuelTankFull + entities: + - uid: 3261 + components: + - type: Transform + pos: 26.5,13.5 + parent: 4812 + - uid: 6214 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 4812 + - uid: 8575 + components: + - type: Transform + pos: -17.5,12.5 + parent: 4812 + - uid: 9070 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 4812 + - uid: 9682 + components: + - type: Transform + pos: -36.5,5.5 + parent: 4812 + - uid: 10701 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 4812 + - uid: 11463 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 4812 + - uid: 11852 + components: + - type: Transform + pos: 8.5,12.5 + parent: 4812 +- proto: WheatBushel + entities: + - uid: 11294 + components: + - type: Transform + pos: 18.50683,-38.558407 + parent: 4812 +- proto: WheatSeeds + entities: + - uid: 1521 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 4812 +- proto: Windoor + entities: + - uid: 2230 + components: + - type: Transform + pos: 9.5,23.5 + parent: 4812 + - uid: 4451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 4812 + - uid: 4452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 4812 + - uid: 4453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 4812 + - uid: 7134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-18.5 + parent: 4812 + - uid: 7805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,15.5 + parent: 4812 + - uid: 9071 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 4812 + - uid: 10523 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 4812 +- proto: WindoorBarLocked + entities: + - uid: 319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 4812 +- proto: WindoorCargoLocked + entities: + - uid: 12255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 4812 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 4812 + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 4812 +- proto: WindoorSecure + entities: + - uid: 11101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 4812 + - uid: 11102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 4812 + - uid: 11103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 4812 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 7804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,15.5 + parent: 4812 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 7369 + components: + - type: Transform + pos: -32.5,1.5 + parent: 4812 + - uid: 8688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,0.5 + parent: 4812 +- proto: WindoorSecureCargoLocked + entities: + - uid: 2855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 4812 + - uid: 4433 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 4812 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 6582 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 4812 + - uid: 6583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-19.5 + parent: 4812 +- proto: WindoorSecureCommandLocked + entities: + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,53.5 + parent: 4812 + - uid: 3703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,53.5 + parent: 4812 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 8689 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 4812 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 1926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,23.5 + parent: 4812 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 8807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-24.5 + parent: 4812 + - uid: 8808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-24.5 + parent: 4812 + - uid: 8810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 4812 + - uid: 8832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 4812 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 12248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 4812 +- proto: WindoorSecureScienceLocked + entities: + - uid: 5788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 4812 + - uid: 5789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 4812 + - uid: 5790 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 4812 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 4434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 4812 + - uid: 5307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 4812 + - uid: 7779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,11.5 + parent: 4812 + - uid: 7780 + components: + - type: Transform + pos: -25.5,12.5 + parent: 4812 + - uid: 7781 + components: + - type: Transform + pos: -26.5,12.5 + parent: 4812 + - uid: 7785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,16.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 4811 + - uid: 7786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,19.5 + parent: 4812 + - type: DeviceLinkSink + links: + - 4810 +- proto: WindoorTheatreLocked + entities: + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 4812 +- proto: Window + entities: + - uid: 187 + components: + - type: Transform + pos: -21.5,8.5 + parent: 4812 + - uid: 188 + components: + - type: Transform + pos: -21.5,11.5 + parent: 4812 + - uid: 221 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 4812 + - uid: 222 + components: + - type: Transform + pos: -24.5,0.5 + parent: 4812 + - uid: 223 + components: + - type: Transform + pos: -24.5,3.5 + parent: 4812 + - uid: 224 + components: + - type: Transform + pos: -24.5,4.5 + parent: 4812 + - uid: 4656 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 4812 + - uid: 4657 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 4812 + - uid: 4658 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 4812 + - uid: 5761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 4812 + - uid: 5762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 4812 + - uid: 6669 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 4812 + - uid: 6670 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 4812 + - uid: 7431 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 4812 + - uid: 8859 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 4812 +- proto: WindowDirectional + entities: + - uid: 890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 4812 + - uid: 891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 4812 + - uid: 892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 4812 + - uid: 893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 4812 + - uid: 894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 4812 + - uid: 895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 4812 + - uid: 4449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 4812 + - uid: 4450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 4812 + - uid: 7135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 4812 +- proto: WindowFrostedDirectional + entities: + - uid: 6708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-39.5 + parent: 4812 + - uid: 6709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-38.5 + parent: 4812 + - uid: 8455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 4812 +- proto: WindowReinforcedDirectional + entities: + - uid: 2477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 4812 + - uid: 2478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 4812 + - uid: 2479 + components: + - type: Transform + pos: 8.5,21.5 + parent: 4812 + - uid: 2480 + components: + - type: Transform + pos: 7.5,21.5 + parent: 4812 + - uid: 2481 + components: + - type: Transform + pos: 6.5,21.5 + parent: 4812 + - uid: 2482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 4812 + - uid: 2483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 4812 + - uid: 2484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 4812 + - uid: 4675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 4812 + - uid: 4676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 4812 + - uid: 4705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-47.5 + parent: 4812 + - uid: 4706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-48.5 + parent: 4812 + - uid: 4738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-48.5 + parent: 4812 + - uid: 4739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 4812 + - uid: 4754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 4812 + - uid: 4755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-45.5 + parent: 4812 + - uid: 4878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-48.5 + parent: 4812 + - uid: 4879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-47.5 + parent: 4812 + - uid: 4880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 4812 + - uid: 4881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 4812 + - uid: 4882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-48.5 + parent: 4812 + - uid: 4883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 4812 + - uid: 4884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 4812 + - uid: 4885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-45.5 + parent: 4812 + - uid: 6230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 4812 + - uid: 6231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-27.5 + parent: 4812 + - uid: 6317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-26.5 + parent: 4812 + - uid: 6321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 4812 + - uid: 6329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 4812 + - uid: 6330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 4812 + - uid: 8283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,14.5 + parent: 4812 + - uid: 8284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,15.5 + parent: 4812 + - uid: 8285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,16.5 + parent: 4812 + - uid: 8286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,17.5 + parent: 4812 + - uid: 8287 + components: + - type: Transform + pos: -18.5,16.5 + parent: 4812 + - uid: 9880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 4812 + - uid: 9881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 4812 + - uid: 9882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 4812 + - uid: 9883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 4812 + - uid: 9884 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 4812 + - uid: 9885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-13.5 + parent: 4812 + - uid: 11864 + components: + - type: Transform + pos: -14.5,5.5 + parent: 4812 + - uid: 11865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,4.5 + parent: 4812 + - uid: 11866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,3.5 + parent: 4812 + - uid: 11867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,4.5 + parent: 4812 +- proto: WoodDoor + entities: + - uid: 6795 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-37.5 + parent: 4812 + - uid: 6796 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-39.5 + parent: 4812 +- proto: Wrench + entities: + - uid: 4498 + components: + - type: Transform + pos: 19.554443,8.592699 + parent: 4812 + - uid: 4574 + components: + - type: Transform + pos: 27.5,4.5 + parent: 4812 + - uid: 6213 + components: + - type: Transform + pos: 3.4989405,-14.41828 + parent: 4812 + - uid: 6237 + components: + - type: Transform + pos: 15.546343,-23.407162 + parent: 4812 + - uid: 7839 + components: + - type: Transform + pos: -14.514914,-25.438694 + parent: 4812 + - uid: 8589 + components: + - type: Transform + pos: -18.546284,12.599279 + parent: 4812 + - uid: 9080 + components: + - type: Transform + pos: -30.517597,-29.561436 + parent: 4812 + - uid: 11331 + components: + - type: Transform + pos: 26.494213,-35.426273 + parent: 4812 +- proto: YellowOxygenTankFilled + entities: + - uid: 11791 + components: + - type: Transform + pos: 19.452671,-32.41012 + parent: 4812 +... diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 646afa206a2..38aa269fbf1 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -101,7 +101,7 @@ entities: version: 6 1,1: ind: 1,1 - tiles: dgAAAAAAeQAAAAAAYwAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAdgAAAAABdgAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADdgAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: dgAAAAAAeQAAAAAAYwAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAdgAAAAABdgAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADdgAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,0: ind: 2,0 @@ -10048,16 +10048,6 @@ entities: - type: Transform pos: 77.5,-12.5 parent: 2 - - uid: 6936 - components: - - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 6942 - components: - - type: Transform - pos: 22.5,17.5 - parent: 2 - uid: 9623 components: - type: Transform @@ -10276,16 +10266,6 @@ entities: - type: Transform pos: 71.5,39.5 parent: 2 - - uid: 6934 - components: - - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 6937 - components: - - type: Transform - pos: 22.5,17.5 - parent: 2 - uid: 12271 components: - type: Transform @@ -29188,26 +29168,6 @@ entities: rot: 3.141592653589793 rad pos: 67.5,33.5 parent: 2 - - uid: 6938 - components: - - type: Transform - pos: 21.5,17.5 - parent: 2 - - uid: 6939 - components: - - type: Transform - pos: 21.5,18.5 - parent: 2 - - uid: 6940 - components: - - type: Transform - pos: 22.5,17.5 - parent: 2 - - uid: 6941 - components: - - type: Transform - pos: 22.5,18.5 - parent: 2 - uid: 12679 components: - type: Transform @@ -32047,12 +32007,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-12.5 parent: 2 - - uid: 6943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,18.5 - parent: 2 - uid: 8644 components: - type: Transform @@ -34980,6 +34934,28 @@ entities: - type: Transform pos: 54.629898,-15.278217 parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 6934 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 6935 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 6936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,17.5 + parent: 2 - proto: CryoPod entities: - uid: 11462 @@ -59268,11 +59244,6 @@ entities: parent: 2 - proto: MaintenanceFluffSpawner entities: - - uid: 6944 - components: - - type: Transform - pos: 22.5,18.5 - parent: 2 - uid: 12286 components: - type: Transform @@ -71863,11 +71834,6 @@ entities: - type: Transform pos: 29.5,-5.5 parent: 2 - - uid: 6935 - components: - - type: Transform - pos: 22.5,18.5 - parent: 2 - proto: TableCounterWood entities: - uid: 9735 diff --git a/Resources/Maps/reach.yml b/Resources/Maps/reach.yml index 5516aad56df..a4d369582ba 100644 --- a/Resources/Maps/reach.yml +++ b/Resources/Maps/reach.yml @@ -5623,11 +5623,6 @@ entities: - type: Transform pos: -1.5,-11.5 parent: 407 - - uid: 1753 - components: - - type: Transform - pos: 2.5,1.5 - parent: 407 - uid: 1754 components: - type: Transform @@ -6394,6 +6389,14 @@ entities: - type: Transform pos: 2.5,-2.5 parent: 407 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 1753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 407 - proto: DefaultStationBeaconArrivals entities: - uid: 2238 @@ -9953,6 +9956,11 @@ entities: - type: Transform pos: 26.518682,2.5202096 parent: 407 + - uid: 2277 + components: + - type: Transform + pos: -16.322409,-2.5030437 + parent: 407 - proto: NitrogenCanister entities: - uid: 1533 @@ -11236,6 +11244,9 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-0.5 parent: 407 + - type: DeviceLinkSink + links: + - 1255 - uid: 1253 components: - type: MetaData @@ -11244,6 +11255,9 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,0.5 parent: 407 + - type: DeviceLinkSink + links: + - 1255 - uid: 1254 components: - type: MetaData @@ -11252,6 +11266,9 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,1.5 parent: 407 + - type: DeviceLinkSink + links: + - 1255 - proto: ShuttersWindowOpen entities: - uid: 1650 @@ -11691,6 +11708,14 @@ entities: - type: Transform pos: -19.5,2.5 parent: 407 + - type: DeviceLinkSource + linkedPorts: + 1254: + - Pressed: Toggle + 1253: + - Pressed: Toggle + 1252: + - Pressed: Toggle - proto: SignalButtonDirectional entities: - uid: 1759 diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index c3f158b9857..c97509c513c 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -49,9 +49,10 @@ entities: - uid: 31 components: - type: MetaData - - parent: 658 - type: Transform - - chunks: + - type: Transform + parent: 658 + - type: MapGrid + chunks: -1,-1: ind: -1,-1 tiles: WQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAADdgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAABdgAAAAABaAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAABeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAWQAAAAADdgAAAAACdgAAAAADdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAACdgAAAAADdgAAAAABdgAAAAAB @@ -142,7 +143,7 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAALQAAAAAAWQAAAAADWQAAAAAAWQAAAAACLQAAAAAALQAAAAAALQAAAAAAWQAAAAAAWQAAAAACLQAAAAAALQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAALQAAAAAALQAAAAAAWQAAAAADWQAAAAAAWQAAAAACLQAAAAAALQAAAAAALQAAAAAAWQAAAAAAWQAAAAACLQAAAAAALQAAAAAALQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAABZAAAAAADZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAA version: 6 3,-1: ind: 3,-1 @@ -224,19 +225,19 @@ entities: ind: -4,-1 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: MapGrid - type: Broadphase - - bodyStatus: InAir + - type: Physics + bodyStatus: InAir angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - id: Saltern - type: BecomesStation - - version: 2 + - type: Fixtures + fixtures: {} + - type: BecomesStation + id: Saltern + - type: GridAtmosphere + version: 2 data: tiles: -4,-4: @@ -760,8 +761,7 @@ entities: -9,-2: 0: 65535 -9,-1: - 0: 61439 - 2: 4096 + 0: 65535 -9,-4: 0: 65519 12,-4: @@ -885,43 +885,42 @@ entities: 7,4: 0: 65535 7,5: - 0: 65471 - 3: 64 + 0: 65535 7,6: 0: 61422 8,4: 0: 65535 8,5: 0: 48063 - 4: 17472 + 2: 17472 8,6: 0: 65535 9,4: 0: 65535 9,5: 0: 43695 - 5: 4368 - 6: 17472 + 3: 4368 + 4: 17472 9,6: 0: 8191 10,4: 0: 65535 10,5: 0: 43695 - 6: 4368 - 7: 17472 + 4: 4368 + 5: 17472 11,4: 0: 65535 11,5: 0: 43695 - 6: 21840 + 4: 21840 12,4: 0: 65535 12,5: 0: 13183 13,4: 0: 65399 - 6: 136 + 4: 136 13,5: 0: 7 -8,7: @@ -1023,21 +1022,18 @@ entities: 13,1: 0: 65535 13,2: - 0: 62463 - 6: 3072 + 0: 65535 13,3: - 0: 32755 - 6: 32780 + 0: 32767 + 4: 32768 14,0: 0: 65535 14,2: - 0: 62719 - 6: 2816 + 0: 65535 14,1: 0: 65535 14,3: - 0: 30581 - 6: 138 + 0: 30719 -8,-5: 0: 65535 -5,-8: @@ -1071,8 +1067,7 @@ entities: 15,1: 0: 62451 15,2: - 0: 62003 - 6: 256 + 0: 62259 8,-4: 0: 61166 9,-4: @@ -1217,14 +1212,17 @@ entities: 0: 136 -12,-1: 0: 34944 + 4: 8 -11,-1: 0: 65162 + 4: 117 -11,-4: 0: 65528 -11,-3: 0: 65535 -11,-2: 0: 43695 + 4: 21840 -10,-4: 0: 65432 0,-10: @@ -1273,6 +1271,7 @@ entities: 0: 65535 -12,-2: 0: 8 + 4: 128 -10,-5: 0: 32810 -9,-5: @@ -1336,8 +1335,7 @@ entities: -13,-3: 0: 65535 15,3: - 0: 15 - 6: 16 + 0: 31 20,3: 0: 3 16,-3: @@ -1385,36 +1383,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -1476,11 +1444,11 @@ entities: - 0 - 0 chunkSize: 4 - type: GridAtmosphere - - gravityShakeSound: !type:SoundPathSpecifier + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: + - type: DecalGrid + chunkCollection: version: 2 nodes: - node: @@ -3120,6 +3088,26 @@ entities: id: WarnBox decals: 393: -26,24 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 842: -41,-6 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 843: -43,-6 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 844: -41,-4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 845: -43,-4 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -3169,6 +3157,7 @@ entities: 797: 39,15 798: 38,15 799: 37,15 + 846: -42,-4 - node: color: '#FFFFFFFF' id: WarnLineS @@ -3190,6 +3179,7 @@ entities: 800: 37,13 801: 38,13 802: 39,13 + 847: -42,-6 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -3319,7 +3309,6 @@ entities: id: WoodTrimThinLineS decals: 787: -36,19 - type: DecalGrid - type: OccluderTree - type: SpreaderGrid - type: Shuttle @@ -3341,28 +3330,29 @@ entities: entities: - uid: 3146 components: - - pos: 38.38827,-0.43327445 + - type: Transform + pos: 38.38827,-0.43327445 parent: 31 - type: Transform - uid: 6684 components: - - pos: -37.568184,29.675117 + - type: Transform + pos: -37.568184,29.675117 parent: 31 - type: Transform - uid: 7907 components: - - pos: -11.470391,11.486723 + - type: Transform + pos: -11.470391,11.486723 parent: 31 - type: Transform - proto: AirAlarm entities: - uid: 5107 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,-6.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 10900 - 10958 - 6294 @@ -3376,32 +3366,32 @@ entities: - 10909 - 10960 - 8384 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 7104 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,18.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 11091 - 6910 - 4279 - 4267 - 9965 - 9966 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 7345 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-23.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 4013 - 408 - 10420 @@ -3410,15 +3400,15 @@ entities: - 1481 - 7335 - 8438 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 7904 components: - - pos: -2.5,-24.5 + - type: Transform + pos: -2.5,-24.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 2891 - 2872 - 7379 @@ -3426,16 +3416,16 @@ entities: - 10375 - 4921 - 3724 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 8476 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -13.5,2.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 9972 - 9971 - 9970 @@ -3444,16 +3434,16 @@ entities: - 337 - 6080 - 6071 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9042 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,2.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 3928 - 3934 - 3935 @@ -3468,30 +3458,30 @@ entities: - 6120 - 6117 - 6118 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9164 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 30.5,11.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 7099 - 6552 - 7382 - 11092 - 9961 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9975 components: - - pos: 47.5,6.5 + - type: Transform + pos: 47.5,6.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 8880 - 8879 - 6197 @@ -3502,15 +3492,15 @@ entities: - 9958 - 9959 - 9960 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9976 components: - - pos: 59.5,5.5 + - type: Transform + pos: 59.5,5.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 7211 - 7185 - 9973 @@ -3519,16 +3509,16 @@ entities: - 4480 - 4603 - 4481 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9977 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 36.5,2.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 1542 - 6184 - 9963 @@ -3540,15 +3530,15 @@ entities: - 9959 - 9960 - 9961 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9978 components: - - pos: 17.5,6.5 + - type: Transform + pos: 17.5,6.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 4028 - 4030 - 4026 @@ -3561,16 +3551,16 @@ entities: - 5474 - 8876 - 8875 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9979 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,8.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 8954 - 8956 - 852 @@ -3597,29 +3587,29 @@ entities: - 5543 - 5544 - 7460 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9983 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-24.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 5704 - 4783 - 5698 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9991 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-13.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 9988 - 9989 - 9990 @@ -3627,16 +3617,16 @@ entities: - 100 - 5365 - 5332 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9996 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,-1.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 3977 - 3976 - 3975 @@ -3646,16 +3636,16 @@ entities: - 7745 - 7746 - 6169 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9998 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,16.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 8794 - 8795 - 5765 @@ -3665,16 +3655,16 @@ entities: - 4185 - 10000 - 9999 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10001 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,27.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 8816 - 8813 - 8810 @@ -3688,16 +3678,16 @@ entities: - 5869 - 5864 - 716 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10003 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,18.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 8885 - 8883 - 8884 @@ -3707,16 +3697,16 @@ entities: - 5883 - 1230 - 8417 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10005 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 25.5,11.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 3117 - 6262 - 5479 @@ -3724,16 +3714,16 @@ entities: - 3116 - 3118 - 1505 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10015 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,16.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 9968 - 9967 - 9966 @@ -3743,32 +3733,32 @@ entities: - 24 - 1185 - 10099 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10016 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,-7.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 65 - 95 - 5605 - 5597 - 5104 - 10017 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10018 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 65 - 95 - 5605 @@ -3782,16 +3772,16 @@ entities: - 5495 - 5606 - 5607 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10021 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,-1.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 7042 - 5545 - 5546 @@ -3801,24 +3791,24 @@ entities: - 4528 - 4525 - 10022 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10031 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -21.5,-21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10238 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -25.5,-12.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 10406 - 10407 - 10239 @@ -3828,16 +3818,16 @@ entities: - 10240 - 10241 - 10242 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10371 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-32.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 10424 - 10425 - 10534 @@ -3846,29 +3836,29 @@ entities: - 3857 - 3724 - 3428 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10373 components: - - pos: -13.5,-20.5 + - type: Transform + pos: -13.5,-20.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 10428 - 4617 - 4718 - 10427 - 10426 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10408 components: - - pos: -10.5,-13.5 + - type: Transform + pos: -10.5,-13.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 10318 - 10317 - 10316 @@ -3876,16 +3866,16 @@ entities: - 10313 - 10314 - 10315 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11002 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-7.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 4334 - 4345 - 5606 @@ -3895,2442 +3885,2447 @@ entities: - 11000 - 673 - 8940 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11098 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 51.5,14.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 11097 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: AirCanister entities: - uid: 1279 components: - - pos: -2.5,-8.5 + - type: Transform + pos: -2.5,-8.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 6582 components: - - pos: 36.5,8.5 + - type: Transform + pos: 36.5,8.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10112 components: - - pos: 35.5,8.5 + - type: Transform + pos: 35.5,8.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: Airlock entities: - uid: 4082 components: - - flags: PvsPriority + - type: MetaData + flags: PvsPriority name: Dorms 1 - type: MetaData - - pos: -26.5,0.5 + - type: Transform + pos: -26.5,0.5 parent: 31 - type: Transform - uid: 4083 components: - - flags: PvsPriority + - type: MetaData + flags: PvsPriority name: Dorms 2 - type: MetaData - - pos: -26.5,-2.5 + - type: Transform + pos: -26.5,-2.5 parent: 31 - type: Transform - uid: 4084 components: - - flags: PvsPriority + - type: MetaData + flags: PvsPriority name: Dorms 3 - type: MetaData - - pos: -26.5,-5.5 + - type: Transform + pos: -26.5,-5.5 parent: 31 - type: Transform - proto: AirlockArmoryGlassLocked entities: - uid: 446 components: - - pos: -12.5,17.5 + - type: Transform + pos: -12.5,17.5 parent: 31 - type: Transform - proto: AirlockAtmosphericsGlassLocked entities: - uid: 647 components: - - pos: 33.5,7.5 + - type: Transform + pos: 33.5,7.5 parent: 31 - type: Transform - proto: AirlockBarLocked entities: - uid: 2272 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-6.5 parent: 31 - type: Transform - proto: AirlockBrigGlassLocked entities: - uid: 30 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,9.5 parent: 31 - type: Transform - uid: 574 components: - - pos: -4.5,9.5 + - type: Transform + pos: -4.5,9.5 parent: 31 - type: Transform - uid: 1417 components: - - pos: -5.5,9.5 + - type: Transform + pos: -5.5,9.5 parent: 31 - type: Transform - uid: 1995 components: - - pos: -5.5,6.5 + - type: Transform + pos: -5.5,6.5 parent: 31 - type: Transform - uid: 4893 components: - - pos: -4.5,6.5 + - type: Transform + pos: -4.5,6.5 parent: 31 - type: Transform - proto: AirlockCaptainGlassLocked entities: - uid: 1494 components: - - name: Captain's Office - type: MetaData - - pos: 5.5,25.5 + - type: MetaData + name: Captain's Office + - type: Transform + pos: 5.5,25.5 parent: 31 - type: Transform - proto: AirlockCaptainLocked entities: - uid: 149 components: - - flags: PvsPriority + - type: MetaData + flags: PvsPriority name: Captain's Bathroom - type: MetaData - - pos: 12.5,25.5 + - type: Transform + pos: 12.5,25.5 parent: 31 - type: Transform - uid: 731 components: - - flags: PvsPriority + - type: MetaData + flags: PvsPriority name: Captain's Bedroom - type: MetaData - - pos: 9.5,25.5 + - type: Transform + pos: 9.5,25.5 parent: 31 - type: Transform - proto: AirlockCargoGlassLocked entities: - uid: 565 components: - - name: Cargo Bay - type: MetaData - - pos: 17.5,11.5 + - type: MetaData + name: Cargo Bay + - type: Transform + pos: 17.5,11.5 parent: 31 - type: Transform - uid: 566 components: - - name: Cargo Bay - type: MetaData - - pos: 17.5,10.5 + - type: MetaData + name: Cargo Bay + - type: Transform + pos: 17.5,10.5 parent: 31 - type: Transform - uid: 567 components: - - name: Cargo Office - type: MetaData - - pos: 13.5,8.5 + - type: MetaData + name: Cargo Office + - type: Transform + pos: 13.5,8.5 parent: 31 - type: Transform - uid: 1735 components: - - pos: 20.5,14.5 + - type: Transform + pos: 20.5,14.5 parent: 31 - type: Transform - uid: 1737 components: - - pos: 21.5,14.5 + - type: Transform + pos: 21.5,14.5 parent: 31 - type: Transform - proto: AirlockChapelLocked entities: - uid: 10439 components: - - flags: PvsPriority - type: MetaData - - pos: -38.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,16.5 parent: 31 - type: Transform - proto: AirlockChemistryLocked entities: - uid: 2128 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-3.5 parent: 31 - type: Transform - proto: AirlockChiefEngineerGlassLocked entities: - uid: 6255 components: - - pos: 38.5,1.5 + - type: Transform + pos: 38.5,1.5 parent: 31 - type: Transform - proto: AirlockChiefMedicalOfficerGlassLocked entities: - uid: 9582 components: - - pos: 20.5,-11.5 + - type: Transform + pos: 20.5,-11.5 parent: 31 - type: Transform - proto: AirlockCommandGlassLocked entities: - uid: 639 components: - - name: Heads of Staff Meeting Room - type: MetaData - - pos: 1.5,25.5 + - type: MetaData + name: Heads of Staff Meeting Room + - type: Transform + pos: 1.5,25.5 parent: 31 - type: Transform - uid: 640 components: - - name: Heads of Staff Meeting Room - type: MetaData - - pos: 1.5,24.5 + - type: MetaData + name: Heads of Staff Meeting Room + - type: Transform + pos: 1.5,24.5 parent: 31 - type: Transform - uid: 8832 components: - - pos: 3.5,26.5 + - type: Transform + pos: 3.5,26.5 parent: 31 - type: Transform - uid: 8833 components: - - name: Bridge - type: MetaData - - pos: 3.5,22.5 + - type: MetaData + name: Bridge + - type: Transform + pos: 3.5,22.5 parent: 31 - type: Transform - proto: AirlockCommandLocked entities: - uid: 15 components: - - flags: PvsPriority - type: MetaData - - pos: 27.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,2.5 parent: 31 - type: Transform - uid: 92 components: - - flags: PvsPriority - type: MetaData - - pos: 9.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,6.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 276 - type: DeviceLinkSink - uid: 116 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,6.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 276 - type: DeviceLinkSink - proto: AirlockEngineeringGlassLocked entities: - uid: 598 components: - - name: Engineering - type: MetaData - - pos: 30.5,3.5 + - type: MetaData + name: Engineering + - type: Transform + pos: 30.5,3.5 parent: 31 - type: Transform - uid: 648 components: - - name: Engineering Equipment - type: MetaData - - pos: 33.5,1.5 + - type: MetaData + name: Engineering Equipment + - type: Transform + pos: 33.5,1.5 parent: 31 - type: Transform - uid: 3980 components: - - pos: 36.5,3.5 + - type: Transform + pos: 36.5,3.5 parent: 31 - type: Transform - uid: 3981 components: - - pos: 36.5,4.5 + - type: Transform + pos: 36.5,4.5 parent: 31 - type: Transform - uid: 4011 components: - - pos: 36.5,5.5 + - type: Transform + pos: 36.5,5.5 parent: 31 - type: Transform - uid: 4402 components: - - pos: 54.5,2.5 + - type: Transform + pos: 54.5,2.5 parent: 31 - type: Transform - uid: 4440 components: - - pos: 53.5,-2.5 + - type: Transform + pos: 53.5,-2.5 parent: 31 - type: Transform - uid: 6827 components: - - pos: 45.5,8.5 + - type: Transform + pos: 45.5,8.5 parent: 31 - type: Transform - proto: AirlockEngineeringLocked entities: - uid: 649 components: - - flags: PvsPriority + - type: MetaData + flags: PvsPriority name: Gravity Generator - type: MetaData - - pos: 49.5,-1.5 + - type: Transform + pos: 49.5,-1.5 parent: 31 - type: Transform - uid: 1178 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,20.5 parent: 31 - type: Transform - uid: 2010 components: - - flags: PvsPriority + - type: MetaData + flags: PvsPriority name: Southern Solars - type: MetaData - - pos: 15.5,-26.5 + - type: Transform + pos: 15.5,-26.5 parent: 31 - type: Transform - uid: 2050 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -32.5,8.5 parent: 31 - type: Transform - uid: 3423 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,-34.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-34.5 parent: 31 - type: Transform - uid: 3852 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,16.5 parent: 31 - type: Transform - uid: 4172 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-9.5 parent: 31 - type: Transform - uid: 4405 components: - - flags: PvsPriority - type: MetaData - - pos: 50.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,-6.5 parent: 31 - type: Transform - uid: 4424 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,-4.5 parent: 31 - type: Transform - uid: 4982 components: - - flags: PvsPriority + - type: MetaData + flags: PvsPriority name: Northern Solars - type: MetaData - - pos: -22.5,21.5 + - type: Transform + pos: -22.5,21.5 parent: 31 - type: Transform - uid: 6451 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,9.5 parent: 31 - type: Transform - uid: 9592 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-13.5 parent: 31 - type: Transform - uid: 9986 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -27.5,-11.5 parent: 31 - type: Transform - proto: AirlockExternal entities: - uid: 8456 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-26.5 parent: 31 - type: Transform - uid: 8525 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-26.5 parent: 31 - type: Transform - proto: AirlockExternalGlass entities: - uid: 245 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-26.5 parent: 31 - type: Transform - uid: 297 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -25.5,-26.5 parent: 31 - type: Transform - uid: 1012 components: - - pos: -40.5,2.5 + - type: Transform + pos: -40.5,2.5 parent: 31 - type: Transform - uid: 1459 components: - - pos: -40.5,0.5 + - type: Transform + pos: -40.5,0.5 parent: 31 - type: Transform - uid: 4009 components: - - pos: -40.5,8.5 + - type: Transform + pos: -40.5,8.5 parent: 31 - type: Transform - uid: 9162 components: - - pos: -40.5,10.5 + - type: Transform + pos: -40.5,10.5 parent: 31 - type: Transform - uid: 9290 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-29.5 parent: 31 - type: Transform - uid: 10127 components: - - pos: -8.5,-40.5 + - type: Transform + pos: -8.5,-40.5 parent: 31 - type: Transform - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 3052 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 32.5,19.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 11307 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 11306: - DoorStatus: InputB - type: DeviceLinkSource - uid: 9068 components: - - pos: 31.5,18.5 + - type: Transform + pos: 31.5,18.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 11306 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 11307: - DoorStatus: InputB - type: DeviceLinkSource - proto: AirlockExternalGlassCargoLocked entities: - uid: 6522 components: - - pos: 29.5,20.5 + - type: Transform + pos: 29.5,20.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 11306 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 11307: - DoorStatus: InputA - type: DeviceLinkSource - uid: 9067 components: - - pos: 31.5,23.5 + - type: Transform + pos: 31.5,23.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 11307 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 11306: - DoorStatus: InputA - type: DeviceLinkSource - uid: 10094 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,25.5 parent: 31 - type: Transform - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 72 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 58.5,7.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 175 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 175: - DoorStatus: DoorBolt - type: DeviceLinkSource - uid: 145 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,24.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 151 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 151: - DoorStatus: DoorBolt - type: DeviceLinkSource - uid: 151 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -26.5,24.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 145 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 145: - DoorStatus: DoorBolt - type: DeviceLinkSource - uid: 172 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 17.5,-31.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 173 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 173: - DoorStatus: DoorBolt - type: DeviceLinkSource - uid: 173 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,-30.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 172 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 172: - DoorStatus: DoorBolt - type: DeviceLinkSource - uid: 174 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,8.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 9974 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 9974: - DoorStatus: DoorBolt - type: DeviceLinkSource - uid: 175 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 61.5,7.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 72 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 72: - DoorStatus: DoorBolt - type: DeviceLinkSource - uid: 9974 components: - - pos: 53.5,4.5 + - type: Transform + pos: 53.5,4.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 174 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 174: - DoorStatus: DoorBolt - type: DeviceLinkSource - proto: AirlockExternalGlassLocked entities: - uid: 182 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-32.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 183 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 183: - DoorStatus: DoorBolt - type: DeviceLinkSource - uid: 183 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -21.5,-32.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 182 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 182: - DoorStatus: DoorBolt - type: DeviceLinkSource - uid: 1594 components: - - pos: 16.5,19.5 + - type: Transform + pos: 16.5,19.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 2465 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 2465: - DoorStatus: DoorBolt - type: DeviceLinkSource - uid: 2465 components: - - pos: 16.5,22.5 + - type: Transform + pos: 16.5,22.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1594 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 1594: - DoorStatus: DoorBolt - type: DeviceLinkSource - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 1755 components: - - pos: -51.5,-12.5 + - type: Transform + pos: -51.5,-12.5 parent: 31 - type: Transform - uid: 9843 components: - - pos: -44.5,-12.5 + - type: Transform + pos: -44.5,-12.5 parent: 31 - type: Transform - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 9377 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,8.5 parent: 31 - type: Transform - uid: 9388 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,2.5 parent: 31 - type: Transform - uid: 9391 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,10.5 parent: 31 - type: Transform - uid: 9392 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,0.5 parent: 31 - type: Transform - proto: AirlockExternalGlassShuttleEscape entities: - uid: 6947 components: - - pos: -8.5,-42.5 + - type: Transform + pos: -8.5,-42.5 parent: 31 - type: Transform - proto: AirlockExternalGlassShuttleLocked entities: - uid: 6995 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,28.5 parent: 31 - type: Transform - uid: 10087 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 20.5,28.5 parent: 31 - type: Transform - proto: AirlockFreezer entities: - uid: 599 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-4.5 parent: 31 - type: Transform - uid: 820 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-2.5 parent: 31 - type: Transform - proto: AirlockGlass entities: - uid: 588 components: - - name: Tool Storage - type: MetaData - - pos: -25.5,8.5 + - type: MetaData + name: Tool Storage + - type: Transform + pos: -25.5,8.5 parent: 31 - type: Transform - uid: 589 components: - - name: Tool Storage - type: MetaData - - pos: -25.5,10.5 + - type: MetaData + name: Tool Storage + - type: Transform + pos: -25.5,10.5 parent: 31 - type: Transform - uid: 660 components: - - pos: -35.5,-2.5 + - type: Transform + pos: -35.5,-2.5 parent: 31 - type: Transform - uid: 1767 components: - - pos: 39.5,-24.5 + - type: Transform + pos: 39.5,-24.5 parent: 31 - type: Transform - uid: 1808 components: - - pos: 39.5,-23.5 + - type: Transform + pos: 39.5,-23.5 parent: 31 - type: Transform - uid: 2278 components: - - pos: -22.5,-10.5 + - type: Transform + pos: -22.5,-10.5 parent: 31 - type: Transform - uid: 2331 components: - - pos: 0.5,-15.5 + - type: Transform + pos: 0.5,-15.5 parent: 31 - type: Transform - uid: 3929 components: - - pos: -21.5,5.5 + - type: Transform + pos: -21.5,5.5 parent: 31 - type: Transform - uid: 3930 components: - - pos: -21.5,4.5 + - type: Transform + pos: -21.5,4.5 parent: 31 - type: Transform - uid: 3933 components: - - pos: 4.5,-12.5 + - type: Transform + pos: 4.5,-12.5 parent: 31 - type: Transform - uid: 3936 components: - - pos: -21.5,3.5 + - type: Transform + pos: -21.5,3.5 parent: 31 - type: Transform - uid: 3974 components: - - pos: -23.5,1.5 + - type: Transform + pos: -23.5,1.5 parent: 31 - type: Transform - uid: 3997 components: - - pos: -24.5,1.5 + - type: Transform + pos: -24.5,1.5 parent: 31 - type: Transform - uid: 3999 components: - - pos: 3.5,15.5 + - type: Transform + pos: 3.5,15.5 parent: 31 - type: Transform - uid: 4000 components: - - pos: 4.5,15.5 + - type: Transform + pos: 4.5,15.5 parent: 31 - type: Transform - uid: 4001 components: - - pos: 2.5,15.5 + - type: Transform + pos: 2.5,15.5 parent: 31 - type: Transform - uid: 4017 components: - - pos: 2.5,-12.5 + - type: Transform + pos: 2.5,-12.5 parent: 31 - type: Transform - uid: 4018 components: - - pos: 3.5,-12.5 + - type: Transform + pos: 3.5,-12.5 parent: 31 - type: Transform - uid: 4248 components: - - pos: 5.5,-25.5 + - type: Transform + pos: 5.5,-25.5 parent: 31 - type: Transform - uid: 4683 components: - - pos: 39.5,-25.5 + - type: Transform + pos: 39.5,-25.5 parent: 31 - type: Transform - uid: 4724 components: - - pos: 5.5,-26.5 + - type: Transform + pos: 5.5,-26.5 parent: 31 - type: Transform - uid: 4784 components: - - pos: 5.5,-27.5 + - type: Transform + pos: 5.5,-27.5 parent: 31 - type: Transform - uid: 4820 components: - - pos: -23.5,-10.5 + - type: Transform + pos: -23.5,-10.5 parent: 31 - type: Transform - uid: 4823 components: - - pos: -24.5,-10.5 + - type: Transform + pos: -24.5,-10.5 parent: 31 - type: Transform - uid: 5105 components: - - pos: 0.5,-14.5 + - type: Transform + pos: 0.5,-14.5 parent: 31 - type: Transform - uid: 5106 components: - - pos: 0.5,-16.5 + - type: Transform + pos: 0.5,-16.5 parent: 31 - type: Transform - uid: 7036 components: - - pos: 32.5,-18.5 + - type: Transform + pos: 32.5,-18.5 parent: 31 - type: Transform - uid: 7037 components: - - pos: 33.5,-18.5 + - type: Transform + pos: 33.5,-18.5 parent: 31 - type: Transform - uid: 7708 components: - - pos: -36.5,11.5 + - type: Transform + pos: -36.5,11.5 parent: 31 - type: Transform - uid: 8200 components: - - pos: 43.5,-25.5 + - type: Transform + pos: 43.5,-25.5 parent: 31 - type: Transform - uid: 8201 components: - - pos: 43.5,-24.5 + - type: Transform + pos: 43.5,-24.5 parent: 31 - type: Transform - uid: 8202 components: - - pos: 43.5,-23.5 + - type: Transform + pos: 43.5,-23.5 parent: 31 - type: Transform - uid: 8719 components: - - pos: -33.5,-30.5 + - type: Transform + pos: -33.5,-30.5 parent: 31 - type: Transform - uid: 8910 components: - - pos: -26.5,-8.5 + - type: Transform + pos: -26.5,-8.5 parent: 31 - type: Transform - uid: 9180 components: - - pos: -37.5,-2.5 + - type: Transform + pos: -37.5,-2.5 parent: 31 - type: Transform - uid: 9181 components: - - pos: -36.5,-2.5 + - type: Transform + pos: -36.5,-2.5 + parent: 31 + - uid: 11398 + components: + - type: Transform + pos: -39.5,-4.5 parent: 31 - type: Transform - proto: AirlockHeadOfPersonnelLocked entities: - uid: 1852 components: - - flags: PvsPriority + - type: MetaData + flags: PvsPriority name: 'Head Of Personnel ' - type: MetaData - - pos: 6.5,17.5 + - type: Transform + pos: 6.5,17.5 parent: 31 - type: Transform - proto: AirlockHeadOfSecurityGlassLocked entities: - uid: 560 components: - - pos: -8.5,18.5 + - type: Transform + pos: -8.5,18.5 parent: 31 - type: Transform - uid: 573 components: - - pos: -10.5,20.5 + - type: Transform + pos: -10.5,20.5 parent: 31 - type: Transform - proto: AirlockHydroGlassLocked entities: - uid: 523 components: - - pos: -16.5,2.5 + - type: Transform + pos: -16.5,2.5 parent: 31 - type: Transform - proto: AirlockJanitorLocked entities: - uid: 2709 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-12.5 parent: 31 - type: Transform - proto: AirlockKitchenGlassLocked entities: - uid: 3219 components: - - pos: -10.5,-1.5 + - type: Transform + pos: -10.5,-1.5 parent: 31 - type: Transform - proto: AirlockMaint entities: - uid: 1675 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-24.5 parent: 31 - type: Transform - uid: 4858 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-9.5 parent: 31 - type: Transform - uid: 4948 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-23.5 parent: 31 - type: Transform - uid: 4974 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-19.5 parent: 31 - type: Transform - uid: 5216 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,16.5 parent: 31 - type: Transform - proto: AirlockMaintAtmoLocked entities: - uid: 6575 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,12.5 parent: 31 - type: Transform - proto: AirlockMaintBarLocked entities: - uid: 615 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-8.5 parent: 31 - type: Transform - proto: AirlockMaintCargoLocked entities: - uid: 564 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,12.5 parent: 31 - type: Transform - proto: AirlockMaintCommandLocked entities: - uid: 154 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,12.5 parent: 31 - type: Transform - uid: 635 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,22.5 parent: 31 - type: Transform - proto: AirlockMaintCommonLocked entities: - uid: 186 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-18.5 parent: 31 - type: Transform - uid: 600 components: - - flags: PvsPriority - type: MetaData - - pos: -32.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,2.5 parent: 31 - type: Transform - uid: 614 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-6.5 parent: 31 - type: Transform - uid: 627 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,20.5 parent: 31 - type: Transform - uid: 636 components: - - flags: PvsPriority - type: MetaData - - pos: 21.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,2.5 parent: 31 - type: Transform - uid: 897 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-16.5 parent: 31 - type: Transform - uid: 2354 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -32.5,-12.5 parent: 31 - type: Transform - uid: 5757 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -29.5,-18.5 parent: 31 - type: Transform - uid: 9220 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-13.5 parent: 31 - type: Transform - uid: 9402 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-31.5 parent: 31 - type: Transform - uid: 9445 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -19.5,-33.5 parent: 31 - type: Transform - uid: 9450 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,-36.5 parent: 31 - type: Transform - uid: 9453 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-38.5 parent: 31 - type: Transform - uid: 9671 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,-41.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-41.5 parent: 31 - type: Transform - uid: 9733 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-39.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-39.5 parent: 31 - type: Transform - uid: 9933 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,26.5 parent: 31 - type: Transform - proto: AirlockMaintEngiLocked entities: - uid: 2230 components: - - flags: PvsPriority - type: MetaData - - pos: 33.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-5.5 parent: 31 - type: Transform - uid: 2237 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,0.5 parent: 31 - type: Transform - proto: AirlockMaintGlass entities: - uid: 9729 components: - - pos: -21.5,-22.5 + - type: Transform + pos: -21.5,-22.5 parent: 31 - type: Transform - proto: AirlockMaintHOPLocked entities: - uid: 4143 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,19.5 parent: 31 - type: Transform - proto: AirlockMaintHydroLocked entities: - uid: 524 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-3.5 parent: 31 - type: Transform - proto: AirlockMaintJanitorLocked entities: - uid: 3137 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-12.5 parent: 31 - type: Transform - proto: AirlockMaintLocked entities: - uid: 543 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-19.5 parent: 31 - type: Transform - uid: 604 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,13.5 parent: 31 - type: Transform - uid: 1334 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,12.5 parent: 31 - type: Transform - uid: 2026 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-24.5 parent: 31 - type: Transform - uid: 2053 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,14.5 parent: 31 - type: Transform - uid: 2454 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-8.5 parent: 31 - type: Transform - uid: 4170 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-10.5 parent: 31 - type: Transform - uid: 4508 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-9.5 parent: 31 - type: Transform - uid: 6166 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,19.5 parent: 31 - type: Transform - uid: 6452 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,15.5 parent: 31 - type: Transform - uid: 7378 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -33.5,9.5 parent: 31 - type: Transform - uid: 10224 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,-5.5 parent: 31 - type: Transform - proto: AirlockMaintMedLocked entities: - uid: 9516 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-18.5 parent: 31 - type: Transform - proto: AirlockMaintRnDLocked entities: - uid: 184 components: - - flags: PvsPriority - type: MetaData - - pos: -9.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-33.5 parent: 31 - type: Transform - uid: 8448 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-27.5 parent: 31 - type: Transform - proto: AirlockMaintSalvageLocked entities: - uid: 58 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,14.5 parent: 31 - type: Transform - proto: AirlockMaintSecLocked entities: - uid: 9132 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,14.5 parent: 31 - type: Transform - proto: AirlockMaintTheatreLocked entities: - uid: 525 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-7.5 parent: 31 - type: Transform - proto: AirlockMedicalGlassLocked entities: - uid: 44 components: - - pos: 9.5,-6.5 + - type: Transform + pos: 9.5,-6.5 parent: 31 - type: Transform - uid: 124 components: - - pos: 10.5,-6.5 + - type: Transform + pos: 10.5,-6.5 parent: 31 - type: Transform - uid: 632 components: - - name: Medical Storage - type: MetaData - - pos: 20.5,-6.5 + - type: MetaData + name: Medical Storage + - type: Transform + pos: 20.5,-6.5 parent: 31 - type: Transform - uid: 2033 components: - - pos: 18.5,-14.5 + - type: Transform + pos: 18.5,-14.5 parent: 31 - type: Transform - uid: 4906 components: - - pos: 11.5,-14.5 + - type: Transform + pos: 11.5,-14.5 parent: 31 - type: Transform - uid: 7278 components: - - pos: 13.5,-9.5 + - type: Transform + pos: 13.5,-9.5 parent: 31 - type: Transform - uid: 8855 components: - - pos: 9.5,-12.5 + - type: Transform + pos: 9.5,-12.5 parent: 31 - type: Transform - proto: AirlockMedicalLocked entities: - uid: 4146 components: - - flags: PvsPriority + - type: MetaData + flags: PvsPriority name: Morgue - type: MetaData - - pos: 16.5,-15.5 + - type: Transform + pos: 16.5,-15.5 parent: 31 - type: Transform - proto: AirlockQuartermasterGlassLocked entities: - uid: 1744 components: - - name: Quartermaster's Room - type: MetaData - - pos: 25.5,9.5 + - type: MetaData + name: Quartermaster's Room + - type: Transform + pos: 25.5,9.5 parent: 31 - type: Transform - proto: AirlockResearchDirectorGlassLocked entities: - uid: 9613 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 31 - type: Transform - proto: AirlockResearchDirectorLocked entities: - uid: 9590 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-22.5 parent: 31 - type: Transform - proto: AirlockSalvageGlassLocked entities: - uid: 4317 components: - - pos: 25.5,16.5 + - type: Transform + pos: 25.5,16.5 parent: 31 - type: Transform - uid: 6212 components: - - pos: 25.5,17.5 + - type: Transform + pos: 25.5,17.5 parent: 31 - type: Transform - proto: AirlockScienceGlassLocked entities: - uid: 613 components: - - pos: -12.5,-25.5 + - type: Transform + pos: -12.5,-25.5 parent: 31 - type: Transform - uid: 1280 components: - - pos: -4.5,-27.5 + - type: Transform + pos: -4.5,-27.5 parent: 31 - type: Transform - uid: 2323 components: - - pos: -13.5,-18.5 + - type: Transform + pos: -13.5,-18.5 parent: 31 - type: Transform - uid: 3952 components: - - pos: -10.5,-23.5 + - type: Transform + pos: -10.5,-23.5 parent: 31 - type: Transform - uid: 5219 components: - - pos: 1.5,-28.5 + - type: Transform + pos: 1.5,-28.5 parent: 31 - type: Transform - proto: AirlockSecurityGlassLocked entities: - uid: 1203 components: - - pos: -12.5,9.5 + - type: Transform + pos: -12.5,9.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 9952 - type: DeviceLinkSink - uid: 1411 components: - - pos: 0.5,9.5 + - type: Transform + pos: 0.5,9.5 parent: 31 - type: Transform - uid: 5068 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 31 - type: Transform - uid: 5069 components: - - pos: -10.5,15.5 + - type: Transform + pos: -10.5,15.5 parent: 31 - type: Transform - uid: 5070 components: - - pos: -8.5,9.5 + - type: Transform + pos: -8.5,9.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 9951 - type: DeviceLinkSink - uid: 7786 components: - - name: Perma - type: MetaData - - pos: -14.5,10.5 + - type: MetaData + name: Perma + - type: Transform + pos: -14.5,10.5 parent: 31 - type: Transform - proto: AirlockServiceLocked entities: - uid: 4719 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-30.5 parent: 31 - type: Transform - proto: AirlockTheatreLocked entities: - uid: 7337 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-8.5 parent: 31 - type: Transform - proto: AirSensor entities: - uid: 408 components: - - pos: -11.5,-20.5 + - type: Transform + pos: -11.5,-20.5 parent: 31 - type: Transform - uid: 1481 components: - - pos: -5.5,-22.5 + - type: Transform + pos: -5.5,-22.5 parent: 31 - type: Transform - uid: 4921 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-26.5 parent: 31 - type: Transform - uid: 6910 components: - - pos: 27.5,20.5 + - type: Transform + pos: 27.5,20.5 parent: 31 - type: Transform - uid: 7382 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 43.5,12.5 parent: 31 - type: Transform - uid: 10022 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-3.5 parent: 31 - type: Transform - uid: 10042 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,-11.5 parent: 31 - type: Transform - uid: 10239 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -21.5,-16.5 parent: 31 - type: Transform - uid: 10428 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-21.5 parent: 31 - type: Transform - uid: 10431 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-14.5 parent: 31 - type: Transform - uid: 10534 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-27.5 parent: 31 - type: Transform - uid: 10958 components: - - pos: 50.5,-2.5 + - type: Transform + pos: 50.5,-2.5 parent: 31 - type: Transform - uid: 10959 components: - - pos: 60.5,-4.5 + - type: Transform + pos: 60.5,-4.5 parent: 31 - type: Transform - uid: 10960 components: - - pos: 50.5,-11.5 + - type: Transform + pos: 50.5,-11.5 parent: 31 - type: Transform - uid: 10961 components: - - pos: 56.5,-11.5 + - type: Transform + pos: 56.5,-11.5 parent: 31 - type: Transform - uid: 10999 components: - - pos: 11.5,-3.5 + - type: Transform + pos: 11.5,-3.5 parent: 31 - type: Transform - uid: 11001 components: - - pos: 11.5,-8.5 + - type: Transform + pos: 11.5,-8.5 parent: 31 - type: Transform - uid: 11097 components: - - pos: 55.5,15.5 + - type: Transform + pos: 55.5,15.5 parent: 31 - type: Transform - proto: AltarDruid entities: - uid: 4586 components: - - pos: 49.5,-25.5 + - type: Transform + pos: 49.5,-25.5 parent: 31 - type: Transform - proto: AltarSpawner entities: - uid: 5771 components: - - pos: -36.5,13.5 + - type: Transform + pos: -36.5,13.5 parent: 31 - type: Transform - proto: AmeController entities: - uid: 6636 components: - - pos: 50.5,7.5 + - type: Transform + pos: 50.5,7.5 parent: 31 - type: Transform - proto: AmePart entities: - uid: 3475 components: - - flags: InContainer - type: MetaData - - parent: 6603 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 6603 + - type: Physics + canCollide: False - uid: 3476 components: - - flags: InContainer - type: MetaData - - parent: 6603 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 6603 + - type: Physics + canCollide: False - uid: 7777 components: - - flags: InContainer - type: MetaData - - parent: 6603 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 6603 + - type: Physics + canCollide: False - proto: AnomalyScanner entities: - uid: 3425 components: - - pos: -4.503751,-31.320293 + - type: Transform + pos: -4.503751,-31.320293 parent: 31 - type: Transform - uid: 4821 components: - - pos: -4.4447207,-31.61528 + - type: Transform + pos: -4.4447207,-31.61528 parent: 31 - type: Transform - proto: AnomalyVesselCircuitboard entities: - uid: 9267 components: - - pos: -5.3662663,-32.323242 + - type: Transform + pos: -5.3662663,-32.323242 parent: 31 - type: Transform - proto: APCBasic entities: - uid: 106 components: - - name: Cargo APC - type: MetaData - - pos: 14.5,13.5 + - type: MetaData + name: Cargo APC + - type: Transform + pos: 14.5,13.5 parent: 31 - type: Transform - uid: 770 components: - - name: Vault APC - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + name: Vault APC + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,17.5 parent: 31 - type: Transform - uid: 771 components: - - name: Medical APC - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + name: Medical APC + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 31 - type: Transform - uid: 1049 components: - - name: Security APC - type: MetaData - - pos: -4.5,15.5 + - type: MetaData + name: Security APC + - type: Transform + pos: -4.5,15.5 parent: 31 - type: Transform - uid: 1233 components: - - name: Bar APC - type: MetaData - - pos: -5.5,-7.5 + - type: MetaData + name: Bar APC + - type: Transform + pos: -5.5,-7.5 parent: 31 - type: Transform - - startingCharge: 11999.417 - type: Battery + - type: Battery + startingCharge: 11999.417 - uid: 1488 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 37.5,10.5 parent: 31 - type: Transform - uid: 2041 components: - - name: Dorms APC - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + name: Dorms APC + - type: Transform + rot: 1.5707963267948966 rad pos: -26.5,-4.5 parent: 31 - type: Transform - uid: 2154 components: - - name: Captain's Quarters APC - type: MetaData - - pos: 8.5,27.5 + - type: MetaData + name: Captain's Quarters APC + - type: Transform + pos: 8.5,27.5 parent: 31 - type: Transform - uid: 2484 components: - - name: Bridge APC - type: MetaData - - pos: -2.5,27.5 + - type: MetaData + name: Bridge APC + - type: Transform + pos: -2.5,27.5 parent: 31 - type: Transform - - startingCharge: 11999.3 - type: Battery + - type: Battery + startingCharge: 11999.3 - uid: 2485 components: - - name: HoP's Office APC - type: MetaData - - pos: 9.5,22.5 + - type: MetaData + name: HoP's Office APC + - type: Transform + pos: 9.5,22.5 parent: 31 - type: Transform - - startingCharge: 11999.066 - type: Battery + - type: Battery + startingCharge: 11999.066 - uid: 2489 components: - - name: Engi Lockers APC - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + name: Engi Lockers APC + - type: Transform + rot: 3.141592653589793 rad pos: 31.5,1.5 parent: 31 - type: Transform - uid: 2492 components: - - pos: 22.5,-3.5 + - type: Transform + pos: 22.5,-3.5 parent: 31 - type: Transform - - startingCharge: 11999.066 - type: Battery + - type: Battery + startingCharge: 11999.066 - uid: 2493 components: - - name: Chemistry APC - type: MetaData - - pos: 16.5,2.5 + - type: MetaData + name: Chemistry APC + - type: Transform + pos: 16.5,2.5 parent: 31 - type: Transform - - startingCharge: 11999.467 - type: Battery + - type: Battery + startingCharge: 11999.467 - uid: 2497 components: - - name: Chapel APC - type: MetaData - - pos: -39.5,11.5 + - type: MetaData + name: Chapel APC + - type: Transform + pos: -39.5,11.5 parent: 31 - type: Transform - - startingCharge: 11999.4 - type: Battery + - type: Battery + startingCharge: 11999.4 - uid: 2498 components: - - name: Kitchen APC - type: MetaData - - pos: -11.5,2.5 + - type: MetaData + name: Kitchen APC + - type: Transform + pos: -11.5,2.5 parent: 31 - type: Transform - - startingCharge: 11998.483 - type: Battery + - type: Battery + startingCharge: 11998.483 - uid: 2526 components: - - name: Tool Room APC - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + name: Tool Room APC + - type: Transform + rot: 1.5707963267948966 rad pos: -30.5,9.5 parent: 31 - type: Transform - uid: 2739 components: - - name: Janitorial APC - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + name: Janitorial APC + - type: Transform + rot: 1.5707963267948966 rad pos: -26.5,-14.5 parent: 31 - type: Transform - uid: 2767 components: - - name: Theatre APC - type: MetaData - - pos: -15.5,-9.5 + - type: MetaData + name: Theatre APC + - type: Transform + pos: -15.5,-9.5 parent: 31 - type: Transform - - startingCharge: 11999.45 - type: Battery + - type: Battery + startingCharge: 11999.45 - uid: 2853 components: - - name: Disposals APC - type: MetaData - - pos: -31.5,-12.5 + - type: MetaData + name: Disposals APC + - type: Transform + pos: -31.5,-12.5 parent: 31 - type: Transform - uid: 3355 components: - - name: Library APC - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + name: Library APC + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-23.5 parent: 31 - type: Transform - uid: 3625 components: - - name: Salvage APC - type: MetaData - - pos: 24.5,18.5 + - type: MetaData + name: Salvage APC + - type: Transform + pos: 24.5,18.5 parent: 31 - type: Transform - uid: 3797 components: - - name: Arrivals APC - type: MetaData - - pos: -38.5,-8.5 + - type: MetaData + name: Arrivals APC + - type: Transform + pos: -38.5,-8.5 parent: 31 - type: Transform - uid: 3895 components: - - name: Brig APC - type: MetaData - - pos: -12.5,12.5 + - type: MetaData + name: Brig APC + - type: Transform + pos: -12.5,12.5 parent: 31 - type: Transform - - startingCharge: 11999.217 - type: Battery + - type: Battery + startingCharge: 11999.217 - uid: 4085 components: - - name: North Maints APC - type: MetaData - - pos: -20.5,15.5 + - type: MetaData + name: North Maints APC + - type: Transform + pos: -20.5,15.5 parent: 31 - type: Transform - uid: 4261 components: - - name: Telecomms APC - type: MetaData - - pos: 55.5,-6.5 + - type: MetaData + name: Telecomms APC + - type: Transform + pos: 55.5,-6.5 parent: 31 - type: Transform - uid: 4550 components: - - name: Morgue APC - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + name: Morgue APC + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,-13.5 parent: 31 - type: Transform - uid: 5093 components: - - name: EVA Room APC - type: MetaData - - pos: 7.5,12.5 + - type: MetaData + name: EVA Room APC + - type: Transform + pos: 7.5,12.5 parent: 31 - type: Transform - uid: 5527 components: - - name: Botany APC - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + name: Botany APC + - type: Transform + rot: 3.141592653589793 rad pos: -18.5,-3.5 parent: 31 - type: Transform - uid: 5785 components: - - name: South Maints APC - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + name: South Maints APC + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-36.5 parent: 31 - type: Transform - uid: 6100 components: - - name: Xenoarch APC - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + name: Xenoarch APC + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-27.5 parent: 31 - type: Transform - uid: 6888 components: - - name: Engineering APC - type: MetaData - - pos: 43.5,10.5 + - type: MetaData + name: Engineering APC + - type: Transform + pos: 43.5,10.5 parent: 31 - type: Transform - uid: 7250 components: - - name: CMO's Room APC - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + name: CMO's Room APC + - type: Transform + rot: 3.141592653589793 rad pos: 23.5,-12.5 parent: 31 - type: Transform - uid: 7787 components: - - name: Science APC - type: MetaData - - pos: -11.5,-17.5 + - type: MetaData + name: Science APC + - type: Transform + pos: -11.5,-17.5 parent: 31 - type: Transform - uid: 8439 components: - - name: RD's Room APC - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + name: RD's Room APC + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-21.5 parent: 31 - type: Transform - uid: 8668 components: - - name: Southwest Solars APC - type: MetaData - - pos: -32.5,-25.5 + - type: MetaData + name: Southwest Solars APC + - type: Transform + pos: -32.5,-25.5 parent: 31 - type: Transform - uid: 10268 components: - - name: Gravity APC - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + name: Gravity APC + - type: Transform + rot: 1.5707963267948966 rad pos: 55.5,-3.5 parent: 31 - type: Transform - uid: 10327 components: - - name: R&D APC - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + name: R&D APC + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-23.5 parent: 31 - type: Transform - uid: 10328 components: - - name: Robotics APC - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + name: Robotics APC + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-30.5 parent: 31 - type: Transform - uid: 10962 components: - - pos: 51.5,-2.5 + - type: Transform + pos: 51.5,-2.5 parent: 31 - type: Transform - uid: 11344 components: - - name: East Maints APC - type: MetaData - - pos: 20.5,-23.5 + - type: MetaData + name: East Maints APC + - type: Transform + pos: 20.5,-23.5 parent: 31 - type: Transform - uid: 11351 components: - - name: QM's Office APC - type: MetaData - - pos: 26.5,11.5 + - type: MetaData + name: QM's Office APC + - type: Transform + pos: 26.5,11.5 parent: 31 - type: Transform - proto: APCElectronics entities: - uid: 86 components: - - pos: -29.64044,9.647711 + - type: Transform + pos: -29.64044,9.647711 parent: 31 - type: Transform - uid: 88 components: - - pos: -29.406065,9.491461 + - type: Transform + pos: -29.406065,9.491461 parent: 31 - type: Transform - uid: 5760 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -17.445856,-23.57463 parent: 31 - type: Transform - uid: 7872 components: - - pos: 29.64934,-1.6702437 + - type: Transform + pos: 29.64934,-1.6702437 parent: 31 - type: Transform - uid: 7873 components: - - pos: 29.46184,-1.6702437 + - type: Transform + pos: 29.46184,-1.6702437 parent: 31 - type: Transform - proto: AppraisalTool entities: - uid: 7119 components: - - pos: 22.3458,13.704067 + - type: Transform + pos: 22.3458,13.704067 parent: 31 - type: Transform - proto: AsteroidRock entities: - uid: 6326 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-35.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-35.5 parent: 31 - type: Transform - uid: 10807 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-35.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-35.5 parent: 31 - type: Transform - uid: 10810 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-34.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-34.5 parent: 31 - type: Transform - uid: 10811 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-32.5 parent: 31 - type: Transform - uid: 10812 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-32.5 parent: 31 - type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 5157 components: - - pos: -14.5,-4.5 + - type: Transform + pos: -14.5,-4.5 parent: 31 - type: Transform - uid: 6694 components: - - pos: -44.5,0.5 + - type: Transform + pos: -44.5,0.5 parent: 31 - type: Transform - uid: 7138 components: - - pos: -44.5,2.5 + - type: Transform + pos: -44.5,2.5 parent: 31 - type: Transform - uid: 7346 components: - - pos: -44.5,8.5 + - type: Transform + pos: -44.5,8.5 parent: 31 - type: Transform - uid: 7566 components: - - pos: -44.5,10.5 + - type: Transform + pos: -44.5,10.5 parent: 31 - type: Transform - uid: 7567 components: - - pos: 22.5,28.5 + - type: Transform + pos: 22.5,28.5 parent: 31 - type: Transform - uid: 7943 components: - - pos: 20.5,28.5 + - type: Transform + pos: 20.5,28.5 parent: 31 - type: Transform - uid: 9923 components: - - pos: -12.5,-2.5 + - type: Transform + pos: -12.5,-2.5 parent: 31 - type: Transform - uid: 10583 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-42.5 parent: 31 - type: Transform - uid: 10765 components: - - pos: -44.5,-12.5 + - type: Transform + pos: -44.5,-12.5 parent: 31 - type: Transform - uid: 10766 components: - - pos: -51.5,-12.5 + - type: Transform + pos: -51.5,-12.5 parent: 31 - type: Transform - proto: AtmosFixBlockerMarker entities: - uid: 87 components: - - pos: 44.5,21.5 + - type: Transform + pos: 44.5,21.5 parent: 31 - type: Transform - uid: 93 components: - - pos: 44.5,22.5 + - type: Transform + pos: 44.5,22.5 parent: 31 - type: Transform - uid: 98 components: - - pos: 44.5,23.5 + - type: Transform + pos: 44.5,23.5 parent: 31 - type: Transform - uid: 448 components: - - pos: 38.5,23.5 + - type: Transform + pos: 38.5,23.5 parent: 31 - type: Transform - uid: 476 components: - - pos: 38.5,22.5 + - type: Transform + pos: 38.5,22.5 parent: 31 - type: Transform - uid: 514 components: - - pos: 38.5,21.5 + - type: Transform + pos: 38.5,21.5 parent: 31 - type: Transform - uid: 720 components: - - pos: 40.5,22.5 + - type: Transform + pos: 40.5,22.5 parent: 31 - type: Transform - uid: 728 components: - - pos: 40.5,23.5 + - type: Transform + pos: 40.5,23.5 parent: 31 - type: Transform - uid: 806 components: - - pos: 40.5,21.5 + - type: Transform + pos: 40.5,21.5 parent: 31 - type: Transform - uid: 1878 components: - - pos: 46.5,22.5 + - type: Transform + pos: 46.5,22.5 parent: 31 - type: Transform - uid: 4886 components: - - pos: 55.5,16.5 + - type: Transform + pos: 55.5,16.5 parent: 31 - type: Transform - uid: 5140 components: - - pos: 46.5,23.5 + - type: Transform + pos: 46.5,23.5 parent: 31 - type: Transform - uid: 8210 components: - - pos: 46.5,21.5 + - type: Transform + pos: 46.5,21.5 parent: 31 - type: Transform - uid: 11077 components: - - pos: 55.5,17.5 + - type: Transform + pos: 55.5,17.5 parent: 31 - type: Transform - uid: 11096 components: - - pos: 55.5,15.5 + - type: Transform + pos: 55.5,15.5 parent: 31 - type: Transform - proto: AtmosFixFreezerMarker entities: - uid: 5895 components: - - pos: -13.5,-4.5 + - type: Transform + pos: -13.5,-4.5 parent: 31 - type: Transform - uid: 11029 components: - - pos: -13.5,-3.5 + - type: Transform + pos: -13.5,-3.5 parent: 31 - type: Transform - uid: 11030 components: - - pos: -12.5,-3.5 + - type: Transform + pos: -12.5,-3.5 parent: 31 - type: Transform - uid: 11031 components: - - pos: -12.5,-4.5 + - type: Transform + pos: -12.5,-4.5 parent: 31 - type: Transform - uid: 11032 components: - - pos: -11.5,-4.5 + - type: Transform + pos: -11.5,-4.5 parent: 31 - type: Transform - uid: 11033 components: - - pos: -11.5,-3.5 + - type: Transform + pos: -11.5,-3.5 parent: 31 - type: Transform - uid: 11034 components: - - pos: -10.5,-3.5 + - type: Transform + pos: -10.5,-3.5 parent: 31 - type: Transform - uid: 11035 components: - - pos: -10.5,-4.5 + - type: Transform + pos: -10.5,-4.5 parent: 31 - type: Transform - uid: 11036 components: - - pos: -9.5,-4.5 + - type: Transform + pos: -9.5,-4.5 parent: 31 - type: Transform - uid: 11037 components: - - pos: -9.5,-3.5 + - type: Transform + pos: -9.5,-3.5 parent: 31 - type: Transform - proto: AtmosFixNitrogenMarker entities: - uid: 634 components: - - pos: 34.5,21.5 + - type: Transform + pos: 34.5,21.5 parent: 31 - type: Transform - uid: 656 components: - - pos: 34.5,22.5 + - type: Transform + pos: 34.5,22.5 parent: 31 - type: Transform - uid: 689 components: - - pos: 34.5,23.5 + - type: Transform + pos: 34.5,23.5 parent: 31 - type: Transform - proto: AtmosFixOxygenMarker entities: - uid: 62 components: - - pos: 36.5,23.5 + - type: Transform + pos: 36.5,23.5 parent: 31 - type: Transform - uid: 81 components: - - pos: 36.5,22.5 + - type: Transform + pos: 36.5,22.5 parent: 31 - type: Transform - uid: 85 components: - - pos: 36.5,21.5 + - type: Transform + pos: 36.5,21.5 parent: 31 - type: Transform - proto: AtmosFixPlasmaMarker entities: - uid: 114 components: - - pos: 42.5,23.5 + - type: Transform + pos: 42.5,23.5 parent: 31 - type: Transform - uid: 137 components: - - pos: 42.5,22.5 + - type: Transform + pos: 42.5,22.5 parent: 31 - type: Transform - uid: 252 components: - - pos: 42.5,21.5 + - type: Transform + pos: 42.5,21.5 parent: 31 - type: Transform - proto: Autolathe entities: - uid: 1435 components: - - pos: -17.5,-21.5 + - type: Transform + pos: -17.5,-21.5 parent: 31 - type: Transform - uid: 3904 components: - - pos: 12.5,9.5 + - type: Transform + pos: 12.5,9.5 parent: 31 - type: Transform - - materialWhiteList: + - type: MaterialStorage + materialWhiteList: - Steel - Plastic - Wood - Glass - Cloth - type: MaterialStorage - uid: 4238 components: - - pos: 47.5,5.5 + - type: Transform + pos: 47.5,5.5 parent: 31 - type: Transform - proto: BannerNanotrasen entities: - uid: 3677 components: - - pos: 53.5,-28.5 + - type: Transform + pos: 53.5,-28.5 parent: 31 - type: Transform - uid: 8995 components: - - pos: 53.5,-20.5 + - type: Transform + pos: 53.5,-20.5 parent: 31 - type: Transform - proto: Barricade entities: - uid: 28 components: - - pos: -20.5,16.5 + - type: Transform + pos: -20.5,16.5 parent: 31 - type: Transform - uid: 413 components: - - pos: -4.5,-11.5 + - type: Transform + pos: -4.5,-11.5 parent: 31 - type: Transform - proto: BarricadeBlock entities: - uid: 10 components: - - pos: -21.5,-22.5 + - type: Transform + pos: -21.5,-22.5 parent: 31 - type: Transform - uid: 769 components: - - pos: -12.5,-8.5 + - type: Transform + pos: -12.5,-8.5 parent: 31 - type: Transform - uid: 3577 components: - - pos: -14.5,-9.5 + - type: Transform + pos: -14.5,-9.5 parent: 31 - type: Transform - proto: BarSignEngineChange entities: - uid: 9334 components: - - pos: -9.5,2.5 + - type: Transform + pos: -9.5,2.5 parent: 31 - type: Transform - proto: BaseGasCondenser entities: - uid: 2949 components: - - pos: 32.5,17.5 + - type: Transform + pos: 32.5,17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: Beaker entities: - uid: 2276 components: - - pos: 7.7243433,-13.122412 + - type: Transform + pos: 7.7243433,-13.122412 parent: 31 - type: Transform - - solutions: + - type: SolutionContainerManager + solutions: beaker: temperature: 293.15 canMix: True @@ -6341,572 +6336,572 @@ entities: - data: null ReagentId: Leporazine Quantity: 40 - type: SolutionContainerManager - uid: 10800 components: - - pos: -16.041546,11.552583 + - type: Transform + pos: -16.041546,11.552583 parent: 31 - type: Transform - proto: Bed entities: - uid: 4 components: - - pos: 29.5,8.5 + - type: Transform + pos: 29.5,8.5 parent: 31 - type: Transform - uid: 475 components: - - pos: -7.5,22.5 + - type: Transform + pos: -7.5,22.5 parent: 31 - type: Transform - uid: 704 components: - - pos: -15.5,8.5 + - type: Transform + pos: -15.5,8.5 parent: 31 - type: Transform - uid: 938 components: - - pos: -3.5,-23.5 + - type: Transform + pos: -3.5,-23.5 parent: 31 - type: Transform - uid: 1621 components: - - pos: 41.5,-1.5 + - type: Transform + pos: 41.5,-1.5 parent: 31 - type: Transform - uid: 1956 components: - - pos: -12.5,7.5 + - type: Transform + pos: -12.5,7.5 parent: 31 - type: Transform - uid: 1997 components: - - pos: -7.5,7.5 + - type: Transform + pos: -7.5,7.5 parent: 31 - type: Transform - uid: 2011 components: - - pos: 18.5,-20.5 + - type: Transform + pos: 18.5,-20.5 parent: 31 - type: Transform - uid: 2186 components: - - pos: 25.5,-10.5 + - type: Transform + pos: 25.5,-10.5 parent: 31 - type: Transform - uid: 3196 components: - - pos: 12.5,23.5 + - type: Transform + pos: 12.5,23.5 parent: 31 - type: Transform - uid: 3902 components: - - pos: -33.5,18.5 + - type: Transform + pos: -33.5,18.5 parent: 31 - type: Transform - uid: 4086 components: - - pos: -27.5,-1.5 + - type: Transform + pos: -27.5,-1.5 parent: 31 - type: Transform - uid: 4087 components: - - pos: -27.5,1.5 + - type: Transform + pos: -27.5,1.5 parent: 31 - type: Transform - uid: 4088 components: - - pos: -27.5,-4.5 + - type: Transform + pos: -27.5,-4.5 parent: 31 - type: Transform - uid: 7059 components: - - pos: 32.5,-10.5 + - type: Transform + pos: 32.5,-10.5 parent: 31 - type: Transform - uid: 7163 components: - - pos: 12.5,-29.5 + - type: Transform + pos: 12.5,-29.5 parent: 31 - type: Transform - uid: 7356 components: - - pos: -36.5,17.5 + - type: Transform + pos: -36.5,17.5 parent: 31 - type: Transform - uid: 7829 components: - - pos: -15.5,9.5 + - type: Transform + pos: -15.5,9.5 parent: 31 - type: Transform - uid: 8409 components: - - pos: 10.5,16.5 + - type: Transform + pos: 10.5,16.5 parent: 31 - type: Transform - uid: 9455 components: - - pos: -13.5,-37.5 + - type: Transform + pos: -13.5,-37.5 parent: 31 - type: Transform - proto: BedsheetBlack entities: - uid: 2223 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -36.5,17.5 parent: 31 - type: Transform - proto: BedsheetCaptain entities: - uid: 515 components: - - pos: 12.5,23.5 + - type: Transform + pos: 12.5,23.5 parent: 31 - type: Transform - proto: BedsheetCE entities: - uid: 609 components: - - pos: 41.5,-1.5 + - type: Transform + pos: 41.5,-1.5 parent: 31 - type: Transform - proto: BedsheetCMO entities: - uid: 2188 components: - - pos: 25.5,-10.5 + - type: Transform + pos: 25.5,-10.5 parent: 31 - type: Transform - proto: BedsheetCosmos entities: - uid: 9081 components: - - pos: -33.5,18.5 + - type: Transform + pos: -33.5,18.5 parent: 31 - type: Transform - proto: BedsheetHOP entities: - uid: 1495 components: - - pos: 10.5,16.5 + - type: Transform + pos: 10.5,16.5 parent: 31 - type: Transform - proto: BedsheetHOS entities: - uid: 425 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,22.5 parent: 31 - type: Transform - proto: BedsheetMedical entities: - uid: 7813 components: - - pos: 7.5,-11.5 + - type: Transform + pos: 7.5,-11.5 parent: 31 - type: Transform - uid: 7814 components: - - pos: 7.5,-7.5 + - type: Transform + pos: 7.5,-7.5 parent: 31 - type: Transform - proto: BedsheetOrange entities: - uid: 1998 components: - - pos: -12.5,7.5 + - type: Transform + pos: -12.5,7.5 parent: 31 - type: Transform - uid: 1999 components: - - pos: -7.5,7.5 + - type: Transform + pos: -7.5,7.5 parent: 31 - type: Transform - proto: BedsheetQM entities: - uid: 9140 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 29.5,8.5 parent: 31 - type: Transform - proto: BedsheetRD entities: - uid: 9707 components: - - pos: -3.5,-23.5 + - type: Transform + pos: -3.5,-23.5 parent: 31 - type: Transform - proto: BedsheetRed entities: - uid: 9464 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-37.5 parent: 31 - type: Transform - proto: BedsheetSpawner entities: - uid: 553 components: - - pos: -27.5,1.5 + - type: Transform + pos: -27.5,1.5 parent: 31 - type: Transform - uid: 1056 components: - - pos: 32.5,-10.5 + - type: Transform + pos: 32.5,-10.5 parent: 31 - type: Transform - uid: 3591 components: - - pos: -27.5,-4.5 + - type: Transform + pos: -27.5,-4.5 parent: 31 - type: Transform - uid: 3893 components: - - pos: -27.5,-1.5 + - type: Transform + pos: -27.5,-1.5 parent: 31 - type: Transform - uid: 4845 components: - - pos: 12.5,-29.5 + - type: Transform + pos: 12.5,-29.5 parent: 31 - type: Transform - uid: 5629 components: - - pos: -15.5,8.5 + - type: Transform + pos: -15.5,8.5 parent: 31 - type: Transform - proto: BedsheetYellow entities: - uid: 1387 components: - - pos: -15.5,9.5 + - type: Transform + pos: -15.5,9.5 parent: 31 - type: Transform - proto: BikeHornInstrument entities: - uid: 441 components: - - pos: -19.612082,-6.8995214 + - type: Transform + pos: -19.612082,-6.8995214 parent: 31 - type: Transform - proto: BlastDoor entities: - uid: 66 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,28.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 1561 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-16.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10218 - type: DeviceLinkSink - uid: 1756 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,12.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 2515 - type: DeviceLinkSink - uid: 3905 components: - - flags: PvsPriority - type: MetaData - - pos: 19.5,28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,28.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 6557 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,14.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10449 - type: DeviceLinkSink - uid: 7588 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-31.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10325 - type: DeviceLinkSink - uid: 10095 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,25.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 10096 components: - - flags: PvsPriority - type: MetaData - - pos: 22.5,25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,25.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 10201 components: - - flags: PvsPriority - type: MetaData - - pos: -35.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-16.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10218 - type: DeviceLinkSink - uid: 11369 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,10.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 11372 - type: DeviceLinkSink - uid: 11370 components: - - flags: PvsPriority - type: MetaData - - pos: 56.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 56.5,9.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 11371 - type: DeviceLinkSink - proto: BlockGameArcade entities: - uid: 9569 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -19.5,10.5 parent: 31 - type: Transform - proto: Bloodpack entities: - uid: 4705 components: - - pos: 6.4227285,-11.38916 + - type: Transform + pos: 6.4227285,-11.38916 parent: 31 - type: Transform - proto: BookHowToRockAndStone entities: - uid: 10817 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.582772,-34.702827 parent: 31 - type: Transform - proto: BookHowToSurvive entities: - uid: 570 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.460378,1.5181434 parent: 31 - type: Transform - proto: BookIanOcean entities: - uid: 9373 components: - - flags: InContainer - type: MetaData - - parent: 9372 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 9372 + - type: Physics + canCollide: False - proto: BookRandom entities: - uid: 7320 components: - - pos: 8.832731,-28.412178 + - type: Transform + pos: 8.832731,-28.412178 parent: 31 - type: Transform - proto: Bookshelf entities: - uid: 9372 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-21.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: storagebase: !type:Container showEnts: False occludes: True ents: - 9373 - type: ContainerContainer - proto: BookshelfFilled entities: - uid: 135 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-23.5 parent: 31 - type: Transform - uid: 333 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-23.5 parent: 31 - type: Transform - uid: 625 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-22.5 parent: 31 - type: Transform - uid: 662 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-25.5 parent: 31 - type: Transform - uid: 666 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-24.5 parent: 31 - type: Transform - uid: 668 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-24.5 parent: 31 - type: Transform - uid: 669 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-28.5 parent: 31 - type: Transform - uid: 741 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-26.5 parent: 31 - type: Transform - uid: 957 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-26.5 parent: 31 - type: Transform - uid: 1037 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-26.5 parent: 31 - type: Transform - uid: 1519 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-30.5 parent: 31 - type: Transform - proto: BoozeDispenser entities: - uid: 4180 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,-6.5 parent: 31 - type: Transform - uid: 10624 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 43.5,-10.5 parent: 31 - type: Transform - proto: BorgCharger entities: - uid: 2046 components: - - pos: -2.5,-30.5 + - type: Transform + pos: -2.5,-30.5 parent: 31 - type: Transform - proto: BorgModuleFireExtinguisher entities: - uid: 2856 components: - - pos: 0.53372324,-27.321005 + - type: Transform + pos: 0.53372324,-27.321005 parent: 31 - type: Transform - proto: BoxBeanbag entities: - uid: 2222 components: - - pos: -10.5,-6.5 + - type: Transform + pos: -10.5,-6.5 parent: 31 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider + - type: BallisticAmmoProvider + unspawnedCount: 12 - uid: 11280 components: - - pos: -11.305756,18.242832 + - type: Transform + pos: -11.305756,18.242832 parent: 31 - type: Transform - proto: BoxBodyBag entities: - uid: 10548 components: - - pos: 13.470278,-15.320015 + - type: Transform + pos: 13.470278,-15.320015 parent: 31 - type: Transform - proto: BoxCartridgeCap entities: - uid: 8868 components: - - pos: -27.474358,-13.511151 + - type: Transform + pos: -27.474358,-13.511151 parent: 31 - type: Transform - - unspawnedCount: 20 - type: BallisticAmmoProvider - - containers: + - type: BallisticAmmoProvider + unspawnedCount: 20 + - type: ContainerContainer + containers: AmmoBox-container: !type:Container showEnts: False occludes: True @@ -6915,19619 +6910,19634 @@ entities: showEnts: False occludes: True ents: [] - type: ContainerContainer - proto: BoxFlare entities: - uid: 6824 components: - - pos: 27.20631,21.76909 + - type: Transform + pos: 27.20631,21.76909 parent: 31 - type: Transform - proto: BoxFlashbang entities: - uid: 9115 components: - - pos: -14.653477,16.079796 + - type: Transform + pos: -14.653477,16.079796 parent: 31 - type: Transform - proto: BoxFolderBase entities: - uid: 10831 components: - - pos: 14.666493,-5.595451 + - type: Transform + pos: 14.666493,-5.595451 parent: 31 - type: Transform - proto: BoxFolderBlack entities: - uid: 2851 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.395054,13.6322155 parent: 31 - type: Transform - uid: 4167 components: - - pos: -16.331966,-25.440334 + - type: Transform + pos: -16.331966,-25.440334 parent: 31 - type: Transform - uid: 4187 components: - - name: Secret Documents - type: MetaData - - pos: -1.5007826,16.646563 + - type: MetaData + name: Secret Documents + - type: Transform + pos: -1.5007826,16.646563 parent: 31 - type: Transform - uid: 7133 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.356403,-20.931307 parent: 31 - type: Transform - uid: 7232 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -19.671114,-5.542589 parent: 31 - type: Transform - uid: 9048 components: - - pos: 7.6804676,19.441128 + - type: Transform + pos: 7.6804676,19.441128 parent: 31 - type: Transform - proto: BoxFolderBlue entities: - uid: 8742 components: - - name: lizard secrets - type: MetaData - - pos: -35.410393,-24.380575 + - type: MetaData + name: lizard secrets + - type: Transform + pos: -35.410393,-24.380575 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: storagebase: !type:Container showEnts: False occludes: True ents: - 8743 - type: ContainerContainer - uid: 9047 components: - - pos: 7.4773426,19.456753 + - type: Transform + pos: 7.4773426,19.456753 parent: 31 - type: Transform - proto: BoxFolderGrey entities: - uid: 6932 components: - - pos: 28.689556,10.2061405 + - type: Transform + pos: 28.689556,10.2061405 parent: 31 - type: Transform - uid: 7536 components: - - pos: -10.371262,-31.421198 + - type: Transform + pos: -10.371262,-31.421198 parent: 31 - type: Transform - uid: 7799 components: - - pos: 14.501501,-15.43846 + - type: Transform + pos: 14.501501,-15.43846 parent: 31 - type: Transform - proto: BoxFolderRed entities: - uid: 7329 components: - - pos: 12.104875,-31.361996 + - type: Transform + pos: 12.104875,-31.361996 parent: 31 - type: Transform - uid: 8801 components: - - pos: 9.497662,30.598364 + - type: Transform + pos: 9.497662,30.598364 parent: 31 - type: Transform - uid: 9046 components: - - pos: 7.2742176,19.456753 + - type: Transform + pos: 7.2742176,19.456753 parent: 31 - type: Transform - uid: 10804 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.660394,7.554576 parent: 31 - type: Transform - proto: BoxFolderWhite entities: - uid: 2852 components: - - pos: 8.345051,-3.970902 + - type: Transform + pos: 8.345051,-3.970902 parent: 31 - type: Transform - uid: 8451 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 22.685759,-10.428317 parent: 31 - type: Transform - proto: BoxFolderYellow entities: - uid: 4188 components: - - pos: -1.4738462,25.430975 + - type: Transform + pos: -1.4738462,25.430975 parent: 31 - type: Transform - uid: 8866 components: - - pos: 31.472767,6.568101 + - type: Transform + pos: 31.472767,6.568101 parent: 31 - type: Transform - uid: 10788 components: - - pos: 14.649738,12.601002 + - type: Transform + pos: 14.649738,12.601002 parent: 31 - type: Transform - proto: BoxHandcuff entities: - uid: 9836 components: - - pos: -4.276994,14.694162 + - type: Transform + pos: -4.276994,14.694162 parent: 31 - type: Transform - proto: BoxLatexGloves entities: - uid: 5611 components: - - pos: 21.87704,-4.324789 + - type: Transform + pos: 21.87704,-4.324789 parent: 31 - type: Transform - uid: 7117 components: - - pos: 13.942519,-15.320015 + - type: Transform + pos: 13.942519,-15.320015 parent: 31 - type: Transform - proto: BoxLethalshot entities: - uid: 11281 components: - - pos: -11.600906,18.242832 + - type: Transform + pos: -11.600906,18.242832 parent: 31 - type: Transform - proto: BoxLightMixed entities: - uid: 4519 components: - - pos: 29.483162,-10.500006 + - type: Transform + pos: 29.483162,-10.500006 parent: 31 - type: Transform - uid: 7783 components: - - pos: -26.527897,20.237007 + - type: Transform + pos: -26.527897,20.237007 parent: 31 - type: Transform - proto: BoxMouthSwab entities: - uid: 10805 components: - - pos: 16.63732,-6.2062087 + - type: Transform + pos: 16.63732,-6.2062087 parent: 31 - type: Transform - proto: BoxMRE entities: - uid: 7434 components: - - pos: 28.560026,15.665409 + - type: Transform + pos: 28.560026,15.665409 parent: 31 - type: Transform - proto: BoxShotgunFlare entities: - uid: 2219 components: - - pos: -10.5,-6.5 + - type: Transform + pos: -10.5,-6.5 parent: 31 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider + - type: BallisticAmmoProvider + unspawnedCount: 12 - proto: BoxSterileMask entities: - uid: 680 components: - - pos: 21.375284,-4.324789 + - type: Transform + pos: 21.375284,-4.324789 parent: 31 - type: Transform - proto: BoxZiptie entities: - uid: 7737 components: - - pos: -4.6902046,14.635165 + - type: Transform + pos: -4.6902046,14.635165 parent: 31 - type: Transform - proto: BrbSign entities: - uid: 9093 components: - - pos: 7.4759226,20.405302 + - type: Transform + pos: 7.4759226,20.405302 parent: 31 - type: Transform - proto: BrigTimer entities: - uid: 9951 components: - - pos: -9.5,9.5 + - type: Transform + pos: -9.5,9.5 parent: 31 - type: Transform - - label: cell2 - type: SignalTimer - - linkedPorts: + - type: SignalTimer + label: cell2 + - type: DeviceLinkSource + linkedPorts: 5070: - Start: Close - Timer: AutoClose - Timer: Open - type: DeviceLinkSource - uid: 9952 components: - - pos: -11.5,9.5 + - type: Transform + pos: -11.5,9.5 parent: 31 - type: Transform - - label: cell1 - type: SignalTimer - - linkedPorts: + - type: SignalTimer + label: cell1 + - type: DeviceLinkSource + linkedPorts: 1203: - Start: Close - Timer: AutoClose - Timer: Open - type: DeviceLinkSource - proto: BrokenBottle entities: - uid: 10591 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.286806,-11.665175 parent: 31 - type: Transform - proto: Brutepack entities: - uid: 2191 components: - - pos: 6.355952,-7.3615913 + - type: Transform + pos: 6.355952,-7.3615913 parent: 31 - type: Transform - proto: Bucket entities: - uid: 4129 components: - - pos: -19.764086,1.4415555 + - type: Transform + pos: -19.764086,1.4415555 parent: 31 - type: Transform - uid: 5631 components: - - pos: -18.884306,9.451485 + - type: Transform + pos: -18.884306,9.451485 parent: 31 - type: Transform - uid: 8955 components: - - pos: -18.329012,-10.212495 + - type: Transform + pos: -18.329012,-10.212495 parent: 31 - type: Transform - uid: 10647 components: - - pos: 41.43901,-13.360281 + - type: Transform + pos: 41.43901,-13.360281 parent: 31 - type: Transform - proto: CableApcExtension entities: - uid: 8 components: - - pos: 9.5,-14.5 + - type: Transform + pos: 9.5,-14.5 parent: 31 - type: Transform - uid: 9 components: - - pos: 56.5,3.5 + - type: Transform + pos: 56.5,3.5 parent: 31 - type: Transform - uid: 18 components: - - pos: -13.5,10.5 + - type: Transform + pos: -13.5,10.5 parent: 31 - type: Transform - uid: 35 components: - - pos: -9.5,-15.5 + - type: Transform + pos: -9.5,-15.5 parent: 31 - type: Transform - uid: 51 components: - - pos: 12.5,-9.5 + - type: Transform + pos: 12.5,-9.5 parent: 31 - type: Transform - uid: 69 components: - - pos: 44.5,24.5 + - type: Transform + pos: 44.5,24.5 parent: 31 - type: Transform - uid: 103 components: - - pos: 28.5,1.5 + - type: Transform + pos: 28.5,1.5 parent: 31 - type: Transform - uid: 131 components: - - pos: 29.5,12.5 + - type: Transform + pos: 29.5,12.5 parent: 31 - type: Transform - uid: 164 components: - - pos: 16.5,-1.5 + - type: Transform + pos: 16.5,-1.5 parent: 31 - type: Transform - uid: 167 components: - - pos: -26.5,16.5 + - type: Transform + pos: -26.5,16.5 parent: 31 - type: Transform - uid: 168 components: - - pos: 13.5,1.5 + - type: Transform + pos: 13.5,1.5 parent: 31 - type: Transform - uid: 198 components: - - pos: -27.5,16.5 + - type: Transform + pos: -27.5,16.5 parent: 31 - type: Transform - uid: 199 components: - - pos: -28.5,16.5 + - type: Transform + pos: -28.5,16.5 parent: 31 - type: Transform - uid: 200 components: - - pos: -37.5,17.5 + - type: Transform + pos: -37.5,17.5 parent: 31 - type: Transform - uid: 201 components: - - pos: -36.5,17.5 + - type: Transform + pos: -36.5,17.5 parent: 31 - type: Transform - uid: 204 components: - - pos: 53.5,-28.5 + - type: Transform + pos: 53.5,-28.5 parent: 31 - type: Transform - uid: 207 components: - - pos: 45.5,-28.5 + - type: Transform + pos: 45.5,-28.5 parent: 31 - type: Transform - uid: 208 components: - - pos: 45.5,-20.5 + - type: Transform + pos: 45.5,-20.5 parent: 31 - type: Transform - uid: 209 components: - - pos: 53.5,-20.5 + - type: Transform + pos: 53.5,-20.5 parent: 31 - type: Transform - uid: 218 components: - - pos: -6.5,4.5 + - type: Transform + pos: -6.5,4.5 parent: 31 - type: Transform - uid: 222 components: - - pos: -13.5,-38.5 + - type: Transform + pos: -13.5,-38.5 parent: 31 - type: Transform - uid: 248 components: - - pos: 16.5,-13.5 + - type: Transform + pos: 16.5,-13.5 parent: 31 - type: Transform - uid: 269 components: - - pos: -8.5,-19.5 + - type: Transform + pos: -8.5,-19.5 parent: 31 - type: Transform - uid: 298 components: - - pos: 62.5,7.5 + - type: Transform + pos: 62.5,7.5 parent: 31 - type: Transform - uid: 299 components: - - pos: -8.5,-15.5 + - type: Transform + pos: -8.5,-15.5 parent: 31 - type: Transform - uid: 300 components: - - pos: -7.5,-15.5 + - type: Transform + pos: -7.5,-15.5 parent: 31 - type: Transform - uid: 312 components: - - pos: -5.5,-38.5 + - type: Transform + pos: -5.5,-38.5 parent: 31 - type: Transform - uid: 329 components: - - pos: 9.5,-38.5 + - type: Transform + pos: 9.5,-38.5 parent: 31 - type: Transform - uid: 331 components: - - pos: 10.5,-38.5 + - type: Transform + pos: 10.5,-38.5 parent: 31 - type: Transform - uid: 340 components: - - pos: 1.5,-15.5 + - type: Transform + pos: 1.5,-15.5 parent: 31 - type: Transform - uid: 341 components: - - pos: 8.5,-33.5 + - type: Transform + pos: 8.5,-33.5 parent: 31 - type: Transform - uid: 345 components: - - pos: -9.5,-19.5 + - type: Transform + pos: -9.5,-19.5 parent: 31 - type: Transform - uid: 397 components: - - pos: 0.5,-15.5 + - type: Transform + pos: 0.5,-15.5 parent: 31 - type: Transform - uid: 398 components: - - pos: -0.5,-15.5 + - type: Transform + pos: -0.5,-15.5 parent: 31 - type: Transform - uid: 403 components: - - pos: -23.5,-13.5 + - type: Transform + pos: -23.5,-13.5 parent: 31 - type: Transform - uid: 531 components: - - pos: 16.5,-10.5 + - type: Transform + pos: 16.5,-10.5 parent: 31 - type: Transform - uid: 537 components: - - pos: 7.5,-10.5 + - type: Transform + pos: 7.5,-10.5 parent: 31 - type: Transform - uid: 549 components: - - pos: 27.5,1.5 + - type: Transform + pos: 27.5,1.5 parent: 31 - type: Transform - uid: 563 components: - - pos: 31.5,24.5 + - type: Transform + pos: 31.5,24.5 parent: 31 - type: Transform - uid: 569 components: - - pos: -20.5,-12.5 + - type: Transform + pos: -20.5,-12.5 parent: 31 - type: Transform - uid: 581 components: - - pos: 31.5,20.5 + - type: Transform + pos: 31.5,20.5 parent: 31 - type: Transform - uid: 594 components: - - pos: -10.5,-15.5 + - type: Transform + pos: -10.5,-15.5 parent: 31 - type: Transform - uid: 607 components: - - pos: -4.5,4.5 + - type: Transform + pos: -4.5,4.5 parent: 31 - type: Transform - uid: 645 components: - - pos: 16.5,16.5 + - type: Transform + pos: 16.5,16.5 parent: 31 - type: Transform - uid: 646 components: - - pos: 16.5,15.5 + - type: Transform + pos: 16.5,15.5 parent: 31 - type: Transform - uid: 650 components: - - pos: -2.5,12.5 + - type: Transform + pos: -2.5,12.5 parent: 31 - type: Transform - uid: 652 components: - - pos: -2.5,13.5 + - type: Transform + pos: -2.5,13.5 parent: 31 - type: Transform - uid: 664 components: - - pos: -24.5,-13.5 + - type: Transform + pos: -24.5,-13.5 parent: 31 - type: Transform - uid: 682 components: - - pos: -37.5,2.5 + - type: Transform + pos: -37.5,2.5 parent: 31 - type: Transform - uid: 703 components: - - pos: -5.5,-31.5 + - type: Transform + pos: -5.5,-31.5 parent: 31 - type: Transform - uid: 719 components: - - pos: 9.5,-5.5 + - type: Transform + pos: 9.5,-5.5 parent: 31 - type: Transform - uid: 729 components: - - pos: -9.5,-31.5 + - type: Transform + pos: -9.5,-31.5 parent: 31 - type: Transform - uid: 742 components: - - pos: -23.5,-22.5 + - type: Transform + pos: -23.5,-22.5 parent: 31 - type: Transform - uid: 767 components: - - pos: 8.5,-17.5 + - type: Transform + pos: 8.5,-17.5 parent: 31 - type: Transform - uid: 780 components: - - pos: 21.5,22.5 + - type: Transform + pos: 21.5,22.5 parent: 31 - type: Transform - uid: 783 components: - - pos: 13.5,-8.5 + - type: Transform + pos: 13.5,-8.5 parent: 31 - type: Transform - uid: 795 components: - - pos: 19.5,16.5 + - type: Transform + pos: 19.5,16.5 parent: 31 - type: Transform - uid: 814 components: - - pos: 22.5,16.5 + - type: Transform + pos: 22.5,16.5 parent: 31 - type: Transform - uid: 815 components: - - pos: 21.5,16.5 + - type: Transform + pos: 21.5,16.5 parent: 31 - type: Transform - uid: 862 components: - - pos: 16.5,19.5 + - type: Transform + pos: 16.5,19.5 parent: 31 - type: Transform - uid: 866 components: - - pos: 16.5,20.5 + - type: Transform + pos: 16.5,20.5 parent: 31 - type: Transform - uid: 939 components: - - pos: 8.5,27.5 + - type: Transform + pos: 8.5,27.5 parent: 31 - type: Transform - uid: 948 components: - - pos: -23.5,-23.5 + - type: Transform + pos: -23.5,-23.5 parent: 31 - type: Transform - uid: 949 components: - - pos: -41.5,2.5 + - type: Transform + pos: -41.5,2.5 parent: 31 - type: Transform - uid: 971 components: - - pos: -40.5,2.5 + - type: Transform + pos: -40.5,2.5 parent: 31 - type: Transform - uid: 992 components: - - pos: 1.5,1.5 + - type: Transform + pos: 1.5,1.5 parent: 31 - type: Transform - uid: 996 components: - - pos: 1.5,2.5 + - type: Transform + pos: 1.5,2.5 parent: 31 - type: Transform - uid: 998 components: - - pos: 6.5,18.5 + - type: Transform + pos: 6.5,18.5 parent: 31 - type: Transform - uid: 999 components: - - pos: 3.5,28.5 + - type: Transform + pos: 3.5,28.5 parent: 31 - type: Transform - uid: 1000 components: - - pos: 26.5,4.5 + - type: Transform + pos: 26.5,4.5 parent: 31 - type: Transform - uid: 1001 components: - - pos: 25.5,4.5 + - type: Transform + pos: 25.5,4.5 parent: 31 - type: Transform - uid: 1004 components: - - pos: 27.5,4.5 + - type: Transform + pos: 27.5,4.5 parent: 31 - type: Transform - uid: 1005 components: - - pos: 27.5,6.5 + - type: Transform + pos: 27.5,6.5 parent: 31 - type: Transform - uid: 1006 components: - - pos: 27.5,5.5 + - type: Transform + pos: 27.5,5.5 parent: 31 - type: Transform - uid: 1007 components: - - pos: 3.5,29.5 + - type: Transform + pos: 3.5,29.5 parent: 31 - type: Transform - uid: 1008 components: - - pos: 16.5,-2.5 + - type: Transform + pos: 16.5,-2.5 parent: 31 - type: Transform - uid: 1010 components: - - pos: 22.5,-18.5 + - type: Transform + pos: 22.5,-18.5 parent: 31 - type: Transform - uid: 1011 components: - - pos: 9.5,-17.5 + - type: Transform + pos: 9.5,-17.5 parent: 31 - type: Transform - uid: 1017 components: - - pos: -4.5,-11.5 + - type: Transform + pos: -4.5,-11.5 parent: 31 - type: Transform - uid: 1023 components: - - pos: 15.5,-16.5 + - type: Transform + pos: 15.5,-16.5 parent: 31 - type: Transform - uid: 1024 components: - - pos: -37.5,0.5 + - type: Transform + pos: -37.5,0.5 parent: 31 - type: Transform - uid: 1041 components: - - pos: 14.5,-14.5 + - type: Transform + pos: 14.5,-14.5 parent: 31 - type: Transform - uid: 1043 components: - - pos: 15.5,-15.5 + - type: Transform + pos: 15.5,-15.5 parent: 31 - type: Transform - uid: 1044 components: - - pos: 10.5,-14.5 + - type: Transform + pos: 10.5,-14.5 parent: 31 - type: Transform - uid: 1047 components: - - pos: 21.5,-23.5 + - type: Transform + pos: 21.5,-23.5 parent: 31 - type: Transform - uid: 1050 components: - - pos: -28.5,-2.5 + - type: Transform + pos: -28.5,-2.5 parent: 31 - type: Transform - uid: 1065 components: - - pos: -26.5,-5.5 + - type: Transform + pos: -26.5,-5.5 parent: 31 - type: Transform - uid: 1079 components: - - pos: -27.5,-5.5 + - type: Transform + pos: -27.5,-5.5 parent: 31 - type: Transform - uid: 1081 components: - - pos: 9.5,-6.5 + - type: Transform + pos: 9.5,-6.5 parent: 31 - type: Transform - uid: 1082 components: - - pos: -6.5,-25.5 + - type: Transform + pos: -6.5,-25.5 parent: 31 - type: Transform - uid: 1083 components: - - pos: -6.5,-26.5 + - type: Transform + pos: -6.5,-26.5 parent: 31 - type: Transform - uid: 1097 components: - - pos: -26.5,0.5 + - type: Transform + pos: -26.5,0.5 parent: 31 - type: Transform - uid: 1111 components: - - pos: 31.5,25.5 + - type: Transform + pos: 31.5,25.5 parent: 31 - type: Transform - uid: 1114 components: - - pos: -3.5,-19.5 + - type: Transform + pos: -3.5,-19.5 parent: 31 - type: Transform - uid: 1116 components: - - pos: -1.5,-22.5 + - type: Transform + pos: -1.5,-22.5 parent: 31 - type: Transform - uid: 1118 components: - - pos: 31.5,21.5 + - type: Transform + pos: 31.5,21.5 parent: 31 - type: Transform - uid: 1126 components: - - pos: -1.5,-21.5 + - type: Transform + pos: -1.5,-21.5 parent: 31 - type: Transform - uid: 1127 components: - - pos: -36.5,18.5 + - type: Transform + pos: -36.5,18.5 parent: 31 - type: Transform - uid: 1128 components: - - pos: 14.5,-17.5 + - type: Transform + pos: 14.5,-17.5 parent: 31 - type: Transform - uid: 1130 components: - - pos: 61.5,7.5 + - type: Transform + pos: 61.5,7.5 parent: 31 - type: Transform - uid: 1134 components: - - pos: 56.5,5.5 + - type: Transform + pos: 56.5,5.5 parent: 31 - type: Transform - uid: 1139 components: - - pos: 32.5,17.5 + - type: Transform + pos: 32.5,17.5 parent: 31 - type: Transform - uid: 1145 components: - - pos: 22.5,-4.5 + - type: Transform + pos: 22.5,-4.5 parent: 31 - type: Transform - uid: 1159 components: - - pos: 20.5,21.5 + - type: Transform + pos: 20.5,21.5 parent: 31 - type: Transform - uid: 1164 components: - - pos: 31.5,15.5 + - type: Transform + pos: 31.5,15.5 parent: 31 - type: Transform - uid: 1172 components: - - pos: -6.5,5.5 + - type: Transform + pos: -6.5,5.5 parent: 31 - type: Transform - uid: 1173 components: - - pos: 51.5,15.5 + - type: Transform + pos: 51.5,15.5 parent: 31 - type: Transform - uid: 1174 components: - - pos: 11.5,24.5 + - type: Transform + pos: 11.5,24.5 parent: 31 - type: Transform - uid: 1176 components: - - pos: 8.5,25.5 + - type: Transform + pos: 8.5,25.5 parent: 31 - type: Transform - uid: 1181 components: - - pos: -43.5,2.5 + - type: Transform + pos: -43.5,2.5 parent: 31 - type: Transform - uid: 1198 components: - - pos: 33.5,17.5 + - type: Transform + pos: 33.5,17.5 parent: 31 - type: Transform - uid: 1201 components: - - pos: 27.5,3.5 + - type: Transform + pos: 27.5,3.5 parent: 31 - type: Transform - uid: 1214 components: - - pos: 21.5,21.5 + - type: Transform + pos: 21.5,21.5 parent: 31 - type: Transform - uid: 1223 components: - - pos: 27.5,2.5 + - type: Transform + pos: 27.5,2.5 parent: 31 - type: Transform - uid: 1239 components: - - pos: 31.5,16.5 + - type: Transform + pos: 31.5,16.5 parent: 31 - type: Transform - uid: 1240 components: - - pos: -15.5,-23.5 + - type: Transform + pos: -15.5,-23.5 parent: 31 - type: Transform - uid: 1241 components: - - pos: 6.5,-0.5 + - type: Transform + pos: 6.5,-0.5 parent: 31 - type: Transform - uid: 1243 components: - - pos: 6.5,0.5 + - type: Transform + pos: 6.5,0.5 parent: 31 - type: Transform - uid: 1249 components: - - pos: -6.5,-27.5 + - type: Transform + pos: -6.5,-27.5 parent: 31 - type: Transform - uid: 1251 components: - - pos: -5.5,4.5 + - type: Transform + pos: -5.5,4.5 parent: 31 - type: Transform - uid: 1282 components: - - pos: -21.5,-15.5 + - type: Transform + pos: -21.5,-15.5 parent: 31 - type: Transform - uid: 1298 components: - - pos: -31.5,-12.5 + - type: Transform + pos: -31.5,-12.5 parent: 31 - type: Transform - uid: 1327 components: - - pos: 16.5,22.5 + - type: Transform + pos: 16.5,22.5 parent: 31 - type: Transform - uid: 1341 components: - - pos: -12.5,8.5 + - type: Transform + pos: -12.5,8.5 parent: 31 - type: Transform - uid: 1369 components: - - pos: -4.5,5.5 + - type: Transform + pos: -4.5,5.5 parent: 31 - type: Transform - uid: 1382 components: - - pos: 3.5,27.5 + - type: Transform + pos: 3.5,27.5 parent: 31 - type: Transform - uid: 1386 components: - - pos: 52.5,15.5 + - type: Transform + pos: 52.5,15.5 parent: 31 - type: Transform - uid: 1421 components: - - pos: -40.5,0.5 + - type: Transform + pos: -40.5,0.5 parent: 31 - type: Transform - uid: 1428 components: - - pos: -42.5,0.5 + - type: Transform + pos: -42.5,0.5 parent: 31 - type: Transform - uid: 1429 components: - - pos: -43.5,0.5 + - type: Transform + pos: -43.5,0.5 parent: 31 - type: Transform - uid: 1431 components: - - pos: -41.5,10.5 + - type: Transform + pos: -41.5,10.5 parent: 31 - type: Transform - uid: 1433 components: - - pos: -43.5,10.5 + - type: Transform + pos: -43.5,10.5 parent: 31 - type: Transform - uid: 1450 components: - - pos: -23.5,-24.5 + - type: Transform + pos: -23.5,-24.5 parent: 31 - type: Transform - uid: 1466 components: - - pos: -7.5,-27.5 + - type: Transform + pos: -7.5,-27.5 parent: 31 - type: Transform - uid: 1467 components: - - pos: -16.5,-21.5 + - type: Transform + pos: -16.5,-21.5 parent: 31 - type: Transform - uid: 1472 components: - - pos: -16.5,-20.5 + - type: Transform + pos: -16.5,-20.5 parent: 31 - type: Transform - uid: 1477 components: - - pos: 10.5,-8.5 + - type: Transform + pos: 10.5,-8.5 parent: 31 - type: Transform - uid: 1480 components: - - pos: -4.5,-22.5 + - type: Transform + pos: -4.5,-22.5 parent: 31 - type: Transform - uid: 1528 components: - - pos: 18.5,16.5 + - type: Transform + pos: 18.5,16.5 parent: 31 - type: Transform - uid: 1531 components: - - pos: 31.5,19.5 + - type: Transform + pos: 31.5,19.5 parent: 31 - type: Transform - uid: 1532 components: - - pos: 30.5,20.5 + - type: Transform + pos: 30.5,20.5 parent: 31 - type: Transform - uid: 1535 components: - - pos: -12.5,6.5 + - type: Transform + pos: -12.5,6.5 parent: 31 - type: Transform - uid: 1539 components: - - pos: 29.5,20.5 + - type: Transform + pos: 29.5,20.5 parent: 31 - type: Transform - uid: 1553 components: - - pos: 31.5,22.5 + - type: Transform + pos: 31.5,22.5 parent: 31 - type: Transform - uid: 1554 components: - - pos: -7.5,8.5 + - type: Transform + pos: -7.5,8.5 parent: 31 - type: Transform - uid: 1556 components: - - pos: -7.5,7.5 + - type: Transform + pos: -7.5,7.5 parent: 31 - type: Transform - uid: 1558 components: - - pos: 26.5,1.5 + - type: Transform + pos: 26.5,1.5 parent: 31 - type: Transform - uid: 1563 components: - - pos: 28.5,20.5 + - type: Transform + pos: 28.5,20.5 parent: 31 - type: Transform - uid: 1576 components: - - pos: -13.5,-29.5 + - type: Transform + pos: -13.5,-29.5 parent: 31 - type: Transform - uid: 1578 components: - - pos: -38.5,0.5 + - type: Transform + pos: -38.5,0.5 parent: 31 - type: Transform - uid: 1580 components: - - pos: 16.5,17.5 + - type: Transform + pos: 16.5,17.5 parent: 31 - type: Transform - uid: 1581 components: - - pos: 16.5,18.5 + - type: Transform + pos: 16.5,18.5 parent: 31 - type: Transform - uid: 1591 components: - - pos: -39.5,0.5 + - type: Transform + pos: -39.5,0.5 parent: 31 - type: Transform - uid: 1593 components: - - pos: -41.5,0.5 + - type: Transform + pos: -41.5,0.5 parent: 31 - type: Transform - uid: 1597 components: - - pos: 13.5,18.5 + - type: Transform + pos: 13.5,18.5 parent: 31 - type: Transform - uid: 1598 components: - - pos: 13.5,19.5 + - type: Transform + pos: 13.5,19.5 parent: 31 - type: Transform - uid: 1654 components: - - pos: -18.5,15.5 + - type: Transform + pos: -18.5,15.5 parent: 31 - type: Transform - uid: 1659 components: - - pos: -10.5,-25.5 + - type: Transform + pos: -10.5,-25.5 parent: 31 - type: Transform - uid: 1668 components: - - pos: -9.5,-27.5 + - type: Transform + pos: -9.5,-27.5 parent: 31 - type: Transform - uid: 1693 components: - - pos: -18.5,18.5 + - type: Transform + pos: -18.5,18.5 parent: 31 - type: Transform - uid: 1694 components: - - pos: -18.5,16.5 + - type: Transform + pos: -18.5,16.5 parent: 31 - type: Transform - uid: 1702 components: - - pos: -11.5,-27.5 + - type: Transform + pos: -11.5,-27.5 parent: 31 - type: Transform - uid: 1703 components: - - pos: -40.5,10.5 + - type: Transform + pos: -40.5,10.5 parent: 31 - type: Transform - uid: 1704 components: - - pos: -42.5,10.5 + - type: Transform + pos: -42.5,10.5 parent: 31 - type: Transform - uid: 1705 components: - - pos: -39.5,8.5 + - type: Transform + pos: -39.5,8.5 parent: 31 - type: Transform - uid: 1707 components: - - pos: -1.5,-24.5 + - type: Transform + pos: -1.5,-24.5 parent: 31 - type: Transform - uid: 1734 components: - - pos: 0.5,-25.5 + - type: Transform + pos: 0.5,-25.5 parent: 31 - type: Transform - uid: 1743 components: - - pos: -13.5,7.5 + - type: Transform + pos: -13.5,7.5 parent: 31 - type: Transform - uid: 1748 components: - - pos: -11.5,11.5 + - type: Transform + pos: -11.5,11.5 parent: 31 - type: Transform - uid: 1754 components: - - pos: -13.5,8.5 + - type: Transform + pos: -13.5,8.5 parent: 31 - type: Transform - uid: 1764 components: - - pos: 44.5,-24.5 + - type: Transform + pos: 44.5,-24.5 parent: 31 - type: Transform - uid: 1769 components: - - pos: -16.5,-27.5 + - type: Transform + pos: -16.5,-27.5 parent: 31 - type: Transform - uid: 1770 components: - - pos: -8.5,-38.5 + - type: Transform + pos: -8.5,-38.5 parent: 31 - type: Transform - uid: 1778 components: - - pos: 31.5,13.5 + - type: Transform + pos: 31.5,13.5 parent: 31 - type: Transform - uid: 1779 components: - - pos: -10.5,-38.5 + - type: Transform + pos: -10.5,-38.5 parent: 31 - type: Transform - uid: 1838 components: - - pos: 22.5,21.5 + - type: Transform + pos: 22.5,21.5 parent: 31 - type: Transform - uid: 1847 components: - - pos: -12.5,-38.5 + - type: Transform + pos: -12.5,-38.5 parent: 31 - type: Transform - uid: 1870 components: - - pos: 3.5,26.5 + - type: Transform + pos: 3.5,26.5 parent: 31 - type: Transform - uid: 1888 components: - - pos: -14.5,-38.5 + - type: Transform + pos: -14.5,-38.5 parent: 31 - type: Transform - uid: 1973 components: - - pos: -8.5,-26.5 + - type: Transform + pos: -8.5,-26.5 parent: 31 - type: Transform - uid: 2005 components: - - pos: -24.5,4.5 + - type: Transform + pos: -24.5,4.5 parent: 31 - type: Transform - uid: 2052 components: - - pos: 0.5,-28.5 + - type: Transform + pos: 0.5,-28.5 parent: 31 - type: Transform - uid: 2054 components: - - pos: 0.5,-30.5 + - type: Transform + pos: 0.5,-30.5 parent: 31 - type: Transform - uid: 2069 components: - - pos: 1.5,6.5 + - type: Transform + pos: 1.5,6.5 parent: 31 - type: Transform - uid: 2082 components: - - pos: -33.5,9.5 + - type: Transform + pos: -33.5,9.5 parent: 31 - type: Transform - uid: 2126 components: - - pos: -8.5,8.5 + - type: Transform + pos: -8.5,8.5 parent: 31 - type: Transform - uid: 2127 components: - - pos: 20.5,16.5 + - type: Transform + pos: 20.5,16.5 parent: 31 - type: Transform - uid: 2183 components: - - pos: -11.5,-17.5 + - type: Transform + pos: -11.5,-17.5 parent: 31 - type: Transform - uid: 2200 components: - - pos: 0.5,-24.5 + - type: Transform + pos: 0.5,-24.5 parent: 31 - type: Transform - uid: 2203 components: - - pos: 16.5,21.5 + - type: Transform + pos: 16.5,21.5 parent: 31 - type: Transform - uid: 2269 components: - - pos: -18.5,-11.5 + - type: Transform + pos: -18.5,-11.5 parent: 31 - type: Transform - uid: 2292 components: - - pos: -5.5,-21.5 + - type: Transform + pos: -5.5,-21.5 parent: 31 - type: Transform - uid: 2304 components: - - pos: -4.5,-23.5 + - type: Transform + pos: -4.5,-23.5 parent: 31 - type: Transform - uid: 2312 components: - - pos: -4.5,-21.5 + - type: Transform + pos: -4.5,-21.5 parent: 31 - type: Transform - uid: 2330 components: - - pos: 13.5,17.5 + - type: Transform + pos: 13.5,17.5 parent: 31 - type: Transform - uid: 2339 components: - - pos: -1.5,-27.5 + - type: Transform + pos: -1.5,-27.5 parent: 31 - type: Transform - uid: 2341 components: - - pos: -27.5,-2.5 + - type: Transform + pos: -27.5,-2.5 parent: 31 - type: Transform - uid: 2342 components: - - pos: -17.5,-27.5 + - type: Transform + pos: -17.5,-27.5 parent: 31 - type: Transform - uid: 2344 components: - - pos: 9.5,-41.5 + - type: Transform + pos: 9.5,-41.5 parent: 31 - type: Transform - uid: 2345 components: - - pos: 10.5,-41.5 + - type: Transform + pos: 10.5,-41.5 parent: 31 - type: Transform - uid: 2350 components: - - pos: 10.5,-40.5 + - type: Transform + pos: 10.5,-40.5 parent: 31 - type: Transform - uid: 2367 components: - - pos: -8.5,-30.5 + - type: Transform + pos: -8.5,-30.5 parent: 31 - type: Transform - uid: 2383 components: - - pos: -9.5,-30.5 + - type: Transform + pos: -9.5,-30.5 parent: 31 - type: Transform - uid: 2389 components: - - pos: -1.5,6.5 + - type: Transform + pos: -1.5,6.5 parent: 31 - type: Transform - uid: 2393 components: - - pos: -8.5,-21.5 + - type: Transform + pos: -8.5,-21.5 parent: 31 - type: Transform - uid: 2394 components: - - pos: -3.5,6.5 + - type: Transform + pos: -3.5,6.5 parent: 31 - type: Transform - uid: 2395 components: - - pos: -2.5,6.5 + - type: Transform + pos: -2.5,6.5 parent: 31 - type: Transform - uid: 2398 components: - - pos: -4.5,6.5 + - type: Transform + pos: -4.5,6.5 parent: 31 - type: Transform - uid: 2402 components: - - pos: -15.5,-9.5 + - type: Transform + pos: -15.5,-9.5 parent: 31 - type: Transform - uid: 2453 components: - - pos: 10.5,-39.5 + - type: Transform + pos: 10.5,-39.5 parent: 31 - type: Transform - uid: 2482 components: - - pos: -17.5,16.5 + - type: Transform + pos: -17.5,16.5 parent: 31 - type: Transform - uid: 2483 components: - - pos: 12.5,25.5 + - type: Transform + pos: 12.5,25.5 parent: 31 - type: Transform - uid: 2486 components: - - pos: 26.5,11.5 + - type: Transform + pos: 26.5,11.5 parent: 31 - type: Transform - uid: 2488 components: - - pos: 43.5,-5.5 + - type: Transform + pos: 43.5,-5.5 parent: 31 - type: Transform - uid: 2491 components: - - pos: 6.5,29.5 + - type: Transform + pos: 6.5,29.5 parent: 31 - type: Transform - uid: 2495 components: - - pos: -24.5,0.5 + - type: Transform + pos: -24.5,0.5 parent: 31 - type: Transform - uid: 2496 components: - - pos: 14.5,15.5 + - type: Transform + pos: 14.5,15.5 parent: 31 - type: Transform - uid: 2506 components: - - pos: -20.5,15.5 + - type: Transform + pos: -20.5,15.5 parent: 31 - type: Transform - uid: 2507 components: - - pos: -28.5,11.5 + - type: Transform + pos: -28.5,11.5 parent: 31 - type: Transform - uid: 2508 components: - - pos: -28.5,10.5 + - type: Transform + pos: -28.5,10.5 parent: 31 - type: Transform - uid: 2509 components: - - pos: -28.5,9.5 + - type: Transform + pos: -28.5,9.5 parent: 31 - type: Transform - uid: 2510 components: - - pos: -28.5,8.5 + - type: Transform + pos: -28.5,8.5 parent: 31 - type: Transform - uid: 2511 components: - - pos: -27.5,9.5 + - type: Transform + pos: -27.5,9.5 parent: 31 - type: Transform - uid: 2512 components: - - pos: -26.5,9.5 + - type: Transform + pos: -26.5,9.5 parent: 31 - type: Transform - uid: 2513 components: - - pos: -25.5,9.5 + - type: Transform + pos: -25.5,9.5 parent: 31 - type: Transform - uid: 2514 components: - - pos: -26.5,8.5 + - type: Transform + pos: -26.5,8.5 parent: 31 - type: Transform - uid: 2516 components: - - pos: -24.5,9.5 + - type: Transform + pos: -24.5,9.5 parent: 31 - type: Transform - uid: 2517 components: - - pos: -23.5,9.5 + - type: Transform + pos: -23.5,9.5 parent: 31 - type: Transform - uid: 2518 components: - - pos: -22.5,9.5 + - type: Transform + pos: -22.5,9.5 parent: 31 - type: Transform - uid: 2519 components: - - pos: -21.5,9.5 + - type: Transform + pos: -21.5,9.5 parent: 31 - type: Transform - uid: 2522 components: - - pos: -23.5,8.5 + - type: Transform + pos: -23.5,8.5 parent: 31 - type: Transform - uid: 2524 components: - - pos: -23.5,7.5 + - type: Transform + pos: -23.5,7.5 parent: 31 - type: Transform - uid: 2525 components: - - pos: -23.5,6.5 + - type: Transform + pos: -23.5,6.5 parent: 31 - type: Transform - uid: 2528 components: - - pos: -22.5,13.5 + - type: Transform + pos: -22.5,13.5 parent: 31 - type: Transform - uid: 2529 components: - - pos: -23.5,13.5 + - type: Transform + pos: -23.5,13.5 parent: 31 - type: Transform - uid: 2530 components: - - pos: -24.5,12.5 + - type: Transform + pos: -24.5,12.5 parent: 31 - type: Transform - uid: 2532 components: - - pos: -18.5,14.5 + - type: Transform + pos: -18.5,14.5 parent: 31 - type: Transform - uid: 2536 components: - - pos: -13.5,14.5 + - type: Transform + pos: -13.5,14.5 parent: 31 - type: Transform - uid: 2538 components: - - pos: -17.5,19.5 + - type: Transform + pos: -17.5,19.5 parent: 31 - type: Transform - uid: 2539 components: - - pos: -17.5,20.5 + - type: Transform + pos: -17.5,20.5 parent: 31 - type: Transform - uid: 2540 components: - - pos: -17.5,21.5 + - type: Transform + pos: -17.5,21.5 parent: 31 - type: Transform - uid: 2541 components: - - pos: -17.5,22.5 + - type: Transform + pos: -17.5,22.5 parent: 31 - type: Transform - uid: 2542 components: - - pos: -17.5,23.5 + - type: Transform + pos: -17.5,23.5 parent: 31 - type: Transform - uid: 2543 components: - - pos: -17.5,24.5 + - type: Transform + pos: -17.5,24.5 parent: 31 - type: Transform - uid: 2544 components: - - pos: -16.5,24.5 + - type: Transform + pos: -16.5,24.5 parent: 31 - type: Transform - uid: 2545 components: - - pos: -15.5,24.5 + - type: Transform + pos: -15.5,24.5 parent: 31 - type: Transform - uid: 2546 components: - - pos: -14.5,24.5 + - type: Transform + pos: -14.5,24.5 parent: 31 - type: Transform - uid: 2547 components: - - pos: -13.5,24.5 + - type: Transform + pos: -13.5,24.5 parent: 31 - type: Transform - uid: 2548 components: - - pos: -12.5,24.5 + - type: Transform + pos: -12.5,24.5 parent: 31 - type: Transform - uid: 2549 components: - - pos: -11.5,24.5 + - type: Transform + pos: -11.5,24.5 parent: 31 - type: Transform - uid: 2550 components: - - pos: -10.5,24.5 + - type: Transform + pos: -10.5,24.5 parent: 31 - type: Transform - uid: 2551 components: - - pos: -9.5,24.5 + - type: Transform + pos: -9.5,24.5 parent: 31 - type: Transform - uid: 2552 components: - - pos: -8.5,24.5 + - type: Transform + pos: -8.5,24.5 parent: 31 - type: Transform - uid: 2553 components: - - pos: -7.5,24.5 + - type: Transform + pos: -7.5,24.5 parent: 31 - type: Transform - uid: 2554 components: - - pos: -12.5,12.5 + - type: Transform + pos: -12.5,12.5 parent: 31 - type: Transform - uid: 2555 components: - - pos: -12.5,11.5 + - type: Transform + pos: -12.5,11.5 parent: 31 - type: Transform - uid: 2556 components: - - pos: -13.5,11.5 + - type: Transform + pos: -13.5,11.5 parent: 31 - type: Transform - uid: 2558 components: - - pos: -9.5,8.5 + - type: Transform + pos: -9.5,8.5 parent: 31 - type: Transform - uid: 2560 components: - - pos: 6.5,19.5 + - type: Transform + pos: 6.5,19.5 parent: 31 - type: Transform - uid: 2561 components: - - pos: 8.5,-38.5 + - type: Transform + pos: 8.5,-38.5 parent: 31 - type: Transform - uid: 2562 components: - - pos: -11.5,10.5 + - type: Transform + pos: -11.5,10.5 parent: 31 - type: Transform - uid: 2563 components: - - pos: -9.5,10.5 + - type: Transform + pos: -9.5,10.5 parent: 31 - type: Transform - uid: 2564 components: - - pos: -10.5,10.5 + - type: Transform + pos: -10.5,10.5 parent: 31 - type: Transform - uid: 2565 components: - - pos: -8.5,10.5 + - type: Transform + pos: -8.5,10.5 parent: 31 - type: Transform - uid: 2567 components: - - pos: -6.5,10.5 + - type: Transform + pos: -6.5,10.5 parent: 31 - type: Transform - uid: 2568 components: - - pos: -5.5,10.5 + - type: Transform + pos: -5.5,10.5 parent: 31 - type: Transform - uid: 2569 components: - - pos: -4.5,10.5 + - type: Transform + pos: -4.5,10.5 parent: 31 - type: Transform - uid: 2570 components: - - pos: -3.5,10.5 + - type: Transform + pos: -3.5,10.5 parent: 31 - type: Transform - uid: 2571 components: - - pos: -2.5,10.5 + - type: Transform + pos: -2.5,10.5 parent: 31 - type: Transform - uid: 2572 components: - - pos: -1.5,10.5 + - type: Transform + pos: -1.5,10.5 parent: 31 - type: Transform - uid: 2573 components: - - pos: -0.5,10.5 + - type: Transform + pos: -0.5,10.5 parent: 31 - type: Transform - uid: 2574 components: - - pos: 0.5,10.5 + - type: Transform + pos: 0.5,10.5 parent: 31 - type: Transform - uid: 2575 components: - - pos: -5.5,9.5 + - type: Transform + pos: -5.5,9.5 parent: 31 - type: Transform - uid: 2576 components: - - pos: -5.5,8.5 + - type: Transform + pos: -5.5,8.5 parent: 31 - type: Transform - uid: 2577 components: - - pos: -5.5,7.5 + - type: Transform + pos: -5.5,7.5 parent: 31 - type: Transform - uid: 2578 components: - - pos: 0.5,9.5 + - type: Transform + pos: 0.5,9.5 parent: 31 - type: Transform - uid: 2579 components: - - pos: 0.5,8.5 + - type: Transform + pos: 0.5,8.5 parent: 31 - type: Transform - uid: 2580 components: - - pos: 0.5,7.5 + - type: Transform + pos: 0.5,7.5 parent: 31 - type: Transform - uid: 2582 components: - - pos: -25.5,19.5 + - type: Transform + pos: -25.5,19.5 parent: 31 - type: Transform - uid: 2583 components: - - pos: 8.5,-36.5 + - type: Transform + pos: 8.5,-36.5 parent: 31 - type: Transform - uid: 2584 components: - - pos: -26.5,-2.5 + - type: Transform + pos: -26.5,-2.5 parent: 31 - type: Transform - uid: 2585 components: - - pos: -3.5,16.5 + - type: Transform + pos: -3.5,16.5 parent: 31 - type: Transform - uid: 2586 components: - - pos: -3.5,17.5 + - type: Transform + pos: -3.5,17.5 parent: 31 - type: Transform - uid: 2587 components: - - pos: -3.5,18.5 + - type: Transform + pos: -3.5,18.5 parent: 31 - type: Transform - uid: 2588 components: - - pos: -2.5,18.5 + - type: Transform + pos: -2.5,18.5 parent: 31 - type: Transform - uid: 2589 components: - - pos: -1.5,18.5 + - type: Transform + pos: -1.5,18.5 parent: 31 - type: Transform - uid: 2590 components: - - pos: -0.5,18.5 + - type: Transform + pos: -0.5,18.5 parent: 31 - type: Transform - uid: 2591 components: - - pos: -43.5,-11.5 + - type: Transform + pos: -43.5,-11.5 parent: 31 - type: Transform - uid: 2592 components: - - pos: -3.5,14.5 + - type: Transform + pos: -3.5,14.5 parent: 31 - type: Transform - uid: 2593 components: - - pos: -4.5,14.5 + - type: Transform + pos: -4.5,14.5 parent: 31 - type: Transform - uid: 2594 components: - - pos: -5.5,14.5 + - type: Transform + pos: -5.5,14.5 parent: 31 - type: Transform - uid: 2595 components: - - pos: -6.5,14.5 + - type: Transform + pos: -6.5,14.5 parent: 31 - type: Transform - uid: 2596 components: - - pos: -7.5,14.5 + - type: Transform + pos: -7.5,14.5 parent: 31 - type: Transform - uid: 2597 components: - - pos: -8.5,14.5 + - type: Transform + pos: -8.5,14.5 parent: 31 - type: Transform - uid: 2598 components: - - pos: -9.5,14.5 + - type: Transform + pos: -9.5,14.5 parent: 31 - type: Transform - uid: 2599 components: - - pos: -10.5,14.5 + - type: Transform + pos: -10.5,14.5 parent: 31 - type: Transform - uid: 2600 components: - - pos: -11.5,14.5 + - type: Transform + pos: -11.5,14.5 parent: 31 - type: Transform - uid: 2601 components: - - pos: -12.5,14.5 + - type: Transform + pos: -12.5,14.5 parent: 31 - type: Transform - uid: 2602 components: - - pos: -12.5,15.5 + - type: Transform + pos: -12.5,15.5 parent: 31 - type: Transform - uid: 2603 components: - - pos: -12.5,16.5 + - type: Transform + pos: -12.5,16.5 parent: 31 - type: Transform - uid: 2604 components: - - pos: -7.5,15.5 + - type: Transform + pos: -7.5,15.5 parent: 31 - type: Transform - uid: 2605 components: - - pos: -7.5,16.5 + - type: Transform + pos: -7.5,16.5 parent: 31 - type: Transform - uid: 2606 components: - - pos: -7.5,17.5 + - type: Transform + pos: -7.5,17.5 parent: 31 - type: Transform - uid: 2607 components: - - pos: -6.5,17.5 + - type: Transform + pos: -6.5,17.5 parent: 31 - type: Transform - uid: 2608 components: - - pos: -8.5,17.5 + - type: Transform + pos: -8.5,17.5 parent: 31 - type: Transform - uid: 2609 components: - - pos: -8.5,18.5 + - type: Transform + pos: -8.5,18.5 parent: 31 - type: Transform - uid: 2610 components: - - pos: -8.5,19.5 + - type: Transform + pos: -8.5,19.5 parent: 31 - type: Transform - uid: 2611 components: - - pos: -8.5,20.5 + - type: Transform + pos: -8.5,20.5 parent: 31 - type: Transform - uid: 2612 components: - - pos: -9.5,20.5 + - type: Transform + pos: -9.5,20.5 parent: 31 - type: Transform - uid: 2613 components: - - pos: -8.5,21.5 + - type: Transform + pos: -8.5,21.5 parent: 31 - type: Transform - uid: 2614 components: - - pos: -7.5,21.5 + - type: Transform + pos: -7.5,21.5 parent: 31 - type: Transform - uid: 2615 components: - - pos: -12.5,17.5 + - type: Transform + pos: -12.5,17.5 parent: 31 - type: Transform - uid: 2616 components: - - pos: -12.5,18.5 + - type: Transform + pos: -12.5,18.5 parent: 31 - type: Transform - uid: 2617 components: - - pos: -12.5,19.5 + - type: Transform + pos: -12.5,19.5 parent: 31 - type: Transform - uid: 2618 components: - - pos: -12.5,20.5 + - type: Transform + pos: -12.5,20.5 parent: 31 - type: Transform - uid: 2619 components: - - pos: -13.5,20.5 + - type: Transform + pos: -13.5,20.5 parent: 31 - type: Transform - uid: 2620 components: - - pos: -14.5,20.5 + - type: Transform + pos: -14.5,20.5 parent: 31 - type: Transform - uid: 2622 components: - - pos: -2.5,14.5 + - type: Transform + pos: -2.5,14.5 parent: 31 - type: Transform - uid: 2623 components: - - pos: -1.5,14.5 + - type: Transform + pos: -1.5,14.5 parent: 31 - type: Transform - uid: 2624 components: - - pos: -0.5,14.5 + - type: Transform + pos: -0.5,14.5 parent: 31 - type: Transform - uid: 2625 components: - - pos: 0.5,14.5 + - type: Transform + pos: 0.5,14.5 parent: 31 - type: Transform - uid: 2626 components: - - pos: 1.5,14.5 + - type: Transform + pos: 1.5,14.5 parent: 31 - type: Transform - uid: 2627 components: - - pos: 0.5,13.5 + - type: Transform + pos: 0.5,13.5 parent: 31 - type: Transform - uid: 2628 components: - - pos: 0.5,12.5 + - type: Transform + pos: 0.5,12.5 parent: 31 - type: Transform - uid: 2629 components: - - pos: -39.5,11.5 + - type: Transform + pos: -39.5,11.5 parent: 31 - type: Transform - uid: 2630 components: - - pos: -39.5,10.5 + - type: Transform + pos: -39.5,10.5 parent: 31 - type: Transform - uid: 2631 components: - - pos: -38.5,10.5 + - type: Transform + pos: -38.5,10.5 parent: 31 - type: Transform - uid: 2632 components: - - pos: -37.5,10.5 + - type: Transform + pos: -37.5,10.5 parent: 31 - type: Transform - uid: 2633 components: - - pos: -36.5,10.5 + - type: Transform + pos: -36.5,10.5 parent: 31 - type: Transform - uid: 2634 components: - - pos: -36.5,9.5 + - type: Transform + pos: -36.5,9.5 parent: 31 - type: Transform - uid: 2635 components: - - pos: -36.5,8.5 + - type: Transform + pos: -36.5,8.5 parent: 31 - type: Transform - uid: 2636 components: - - pos: -36.5,7.5 + - type: Transform + pos: -36.5,7.5 parent: 31 - type: Transform - uid: 2637 components: - - pos: -36.5,6.5 + - type: Transform + pos: -36.5,6.5 parent: 31 - type: Transform - uid: 2638 components: - - pos: -36.5,5.5 + - type: Transform + pos: -36.5,5.5 parent: 31 - type: Transform - uid: 2639 components: - - pos: -36.5,4.5 + - type: Transform + pos: -36.5,4.5 parent: 31 - type: Transform - uid: 2640 components: - - pos: -36.5,3.5 + - type: Transform + pos: -36.5,3.5 parent: 31 - type: Transform - uid: 2641 components: - - pos: -36.5,2.5 + - type: Transform + pos: -36.5,2.5 parent: 31 - type: Transform - uid: 2642 components: - - pos: -36.5,1.5 + - type: Transform + pos: -36.5,1.5 parent: 31 - type: Transform - uid: 2643 components: - - pos: -36.5,0.5 + - type: Transform + pos: -36.5,0.5 parent: 31 - type: Transform - uid: 2644 components: - - pos: -36.5,-0.5 + - type: Transform + pos: -36.5,-0.5 parent: 31 - type: Transform - uid: 2646 components: - - pos: -36.5,-2.5 + - type: Transform + pos: -36.5,-2.5 parent: 31 - type: Transform - uid: 2647 components: - - pos: -36.5,-3.5 + - type: Transform + pos: -36.5,-3.5 parent: 31 - type: Transform - uid: 2648 components: - - pos: -36.5,-4.5 + - type: Transform + pos: -36.5,-4.5 parent: 31 - type: Transform - uid: 2649 components: - - pos: -36.5,-5.5 + - type: Transform + pos: -36.5,-5.5 parent: 31 - type: Transform - uid: 2650 components: - - pos: -36.5,-6.5 + - type: Transform + pos: -36.5,-6.5 parent: 31 - type: Transform - uid: 2651 components: - - pos: -35.5,-6.5 + - type: Transform + pos: -35.5,-6.5 parent: 31 - type: Transform - uid: 2652 components: - - pos: -35.5,2.5 + - type: Transform + pos: -35.5,2.5 parent: 31 - type: Transform - uid: 2653 components: - - pos: -35.5,5.5 + - type: Transform + pos: -35.5,5.5 parent: 31 - type: Transform - uid: 2654 components: - - pos: -34.5,5.5 + - type: Transform + pos: -34.5,5.5 parent: 31 - type: Transform - uid: 2655 components: - - pos: -33.5,5.5 + - type: Transform + pos: -33.5,5.5 parent: 31 - type: Transform - uid: 2656 components: - - pos: -32.5,5.5 + - type: Transform + pos: -32.5,5.5 parent: 31 - type: Transform - uid: 2657 components: - - pos: -35.5,8.5 + - type: Transform + pos: -35.5,8.5 parent: 31 - type: Transform - uid: 2658 components: - - pos: -34.5,8.5 + - type: Transform + pos: -34.5,8.5 parent: 31 - type: Transform - uid: 2659 components: - - pos: -37.5,8.5 + - type: Transform + pos: -37.5,8.5 parent: 31 - type: Transform - uid: 2660 components: - - pos: -38.5,8.5 + - type: Transform + pos: -38.5,8.5 parent: 31 - type: Transform - uid: 2663 components: - - pos: -37.5,4.5 + - type: Transform + pos: -37.5,4.5 parent: 31 - type: Transform - uid: 2664 components: - - pos: -38.5,4.5 + - type: Transform + pos: -38.5,4.5 parent: 31 - type: Transform - uid: 2672 components: - - pos: -25.5,-2.5 + - type: Transform + pos: -25.5,-2.5 parent: 31 - type: Transform - uid: 2673 components: - - pos: -25.5,-1.5 + - type: Transform + pos: -25.5,-1.5 parent: 31 - type: Transform - uid: 2674 components: - - pos: -25.5,-0.5 + - type: Transform + pos: -25.5,-0.5 parent: 31 - type: Transform - uid: 2675 components: - - pos: -25.5,0.5 + - type: Transform + pos: -25.5,0.5 parent: 31 - type: Transform - uid: 2676 components: - - pos: -30.5,-7.5 + - type: Transform + pos: -30.5,-7.5 parent: 31 - type: Transform - uid: 2677 components: - - pos: -29.5,-7.5 + - type: Transform + pos: -29.5,-7.5 parent: 31 - type: Transform - uid: 2678 components: - - pos: -28.5,-7.5 + - type: Transform + pos: -28.5,-7.5 parent: 31 - type: Transform - uid: 2679 components: - - pos: -27.5,-7.5 + - type: Transform + pos: -27.5,-7.5 parent: 31 - type: Transform - uid: 2680 components: - - pos: -26.5,-7.5 + - type: Transform + pos: -26.5,-7.5 parent: 31 - type: Transform - uid: 2681 components: - - pos: -25.5,-7.5 + - type: Transform + pos: -25.5,-7.5 parent: 31 - type: Transform - uid: 2682 components: - - pos: -25.5,-8.5 + - type: Transform + pos: -25.5,-8.5 parent: 31 - type: Transform - uid: 2683 components: - - pos: -24.5,-7.5 + - type: Transform + pos: -24.5,-7.5 parent: 31 - type: Transform - uid: 2684 components: - - pos: -23.5,-7.5 + - type: Transform + pos: -23.5,-7.5 parent: 31 - type: Transform - uid: 2685 components: - - pos: -23.5,-8.5 + - type: Transform + pos: -23.5,-8.5 parent: 31 - type: Transform - uid: 2686 components: - - pos: 0.5,6.5 + - type: Transform + pos: 0.5,6.5 parent: 31 - type: Transform - uid: 2687 components: - - pos: -29.5,-2.5 + - type: Transform + pos: -29.5,-2.5 parent: 31 - type: Transform - uid: 2688 components: - - pos: -18.5,-3.5 + - type: Transform + pos: -18.5,-3.5 parent: 31 - type: Transform - uid: 2689 components: - - pos: -18.5,-2.5 + - type: Transform + pos: -18.5,-2.5 parent: 31 - type: Transform - uid: 2690 components: - - pos: -18.5,-1.5 + - type: Transform + pos: -18.5,-1.5 parent: 31 - type: Transform - uid: 2691 components: - - pos: -18.5,-0.5 + - type: Transform + pos: -18.5,-0.5 parent: 31 - type: Transform - uid: 2692 components: - - pos: -29.5,0.5 + - type: Transform + pos: -29.5,0.5 parent: 31 - type: Transform - uid: 2693 components: - - pos: -28.5,0.5 + - type: Transform + pos: -28.5,0.5 parent: 31 - type: Transform - uid: 2694 components: - - pos: -27.5,0.5 + - type: Transform + pos: -27.5,0.5 parent: 31 - type: Transform - uid: 2695 components: - - pos: -8.5,-36.5 + - type: Transform + pos: -8.5,-36.5 parent: 31 - type: Transform - uid: 2697 components: - - pos: 8.5,-35.5 + - type: Transform + pos: 8.5,-35.5 parent: 31 - type: Transform - uid: 2699 components: - - pos: -0.5,6.5 + - type: Transform + pos: -0.5,6.5 parent: 31 - type: Transform - uid: 2700 components: - - pos: -32.5,-5.5 + - type: Transform + pos: -32.5,-5.5 parent: 31 - type: Transform - uid: 2701 components: - - pos: -32.5,-4.5 + - type: Transform + pos: -32.5,-4.5 parent: 31 - type: Transform - uid: 2702 components: - - pos: -32.5,-3.5 + - type: Transform + pos: -32.5,-3.5 parent: 31 - type: Transform - uid: 2703 components: - - pos: -32.5,-2.5 + - type: Transform + pos: -32.5,-2.5 parent: 31 - type: Transform - uid: 2704 components: - - pos: -32.5,-1.5 + - type: Transform + pos: -32.5,-1.5 parent: 31 - type: Transform - uid: 2705 components: - - pos: -32.5,-0.5 + - type: Transform + pos: -32.5,-0.5 parent: 31 - type: Transform - uid: 2706 components: - - pos: -32.5,0.5 + - type: Transform + pos: -32.5,0.5 parent: 31 - type: Transform - uid: 2710 components: - - pos: -7.5,-30.5 + - type: Transform + pos: -7.5,-30.5 parent: 31 - type: Transform - uid: 2711 components: - - pos: -22.5,-12.5 + - type: Transform + pos: -22.5,-12.5 parent: 31 - type: Transform - uid: 2717 components: - - pos: -14.5,-8.5 + - type: Transform + pos: -14.5,-8.5 parent: 31 - type: Transform - uid: 2718 components: - - pos: -14.5,-9.5 + - type: Transform + pos: -14.5,-9.5 parent: 31 - type: Transform - uid: 2719 components: - - pos: -11.5,8.5 + - type: Transform + pos: -11.5,8.5 parent: 31 - type: Transform - uid: 2720 components: - - pos: -14.5,-10.5 + - type: Transform + pos: -14.5,-10.5 parent: 31 - type: Transform - uid: 2722 components: - - pos: -13.5,-11.5 + - type: Transform + pos: -13.5,-11.5 parent: 31 - type: Transform - uid: 2723 components: - - pos: -12.5,-11.5 + - type: Transform + pos: -12.5,-11.5 parent: 31 - type: Transform - uid: 2724 components: - - pos: -11.5,-11.5 + - type: Transform + pos: -11.5,-11.5 parent: 31 - type: Transform - uid: 2725 components: - - pos: -12.5,-10.5 + - type: Transform + pos: -12.5,-10.5 parent: 31 - type: Transform - uid: 2726 components: - - pos: -12.5,-9.5 + - type: Transform + pos: -12.5,-9.5 parent: 31 - type: Transform - uid: 2727 components: - - pos: -13.5,-12.5 + - type: Transform + pos: -13.5,-12.5 parent: 31 - type: Transform - uid: 2728 components: - - pos: -12.5,-8.5 + - type: Transform + pos: -12.5,-8.5 parent: 31 - type: Transform - uid: 2729 components: - - pos: -16.5,-7.5 + - type: Transform + pos: -16.5,-7.5 parent: 31 - type: Transform - uid: 2730 components: - - pos: -15.5,-7.5 + - type: Transform + pos: -15.5,-7.5 parent: 31 - type: Transform - uid: 2731 components: - - pos: -14.5,-7.5 + - type: Transform + pos: -14.5,-7.5 parent: 31 - type: Transform - uid: 2732 components: - - pos: -17.5,-7.5 + - type: Transform + pos: -17.5,-7.5 parent: 31 - type: Transform - uid: 2733 components: - - pos: -18.5,-7.5 + - type: Transform + pos: -18.5,-7.5 parent: 31 - type: Transform - uid: 2734 components: - - pos: -19.5,-7.5 + - type: Transform + pos: -19.5,-7.5 parent: 31 - type: Transform - uid: 2735 components: - - pos: -20.5,-7.5 + - type: Transform + pos: -20.5,-7.5 parent: 31 - type: Transform - uid: 2736 components: - - pos: -18.5,-6.5 + - type: Transform + pos: -18.5,-6.5 parent: 31 - type: Transform - uid: 2737 components: - - pos: -18.5,-5.5 + - type: Transform + pos: -18.5,-5.5 parent: 31 - type: Transform - uid: 2740 components: - - pos: -4.5,-38.5 + - type: Transform + pos: -4.5,-38.5 parent: 31 - type: Transform - uid: 2742 components: - - pos: -22.5,-4.5 + - type: Transform + pos: -22.5,-4.5 parent: 31 - type: Transform - uid: 2743 components: - - pos: -22.5,-3.5 + - type: Transform + pos: -22.5,-3.5 parent: 31 - type: Transform - uid: 2745 components: - - pos: -22.5,-2.5 + - type: Transform + pos: -22.5,-2.5 parent: 31 - type: Transform - uid: 2746 components: - - pos: -22.5,-1.5 + - type: Transform + pos: -22.5,-1.5 parent: 31 - type: Transform - uid: 2747 components: - - pos: -22.5,-0.5 + - type: Transform + pos: -22.5,-0.5 parent: 31 - type: Transform - uid: 2748 components: - - pos: -22.5,0.5 + - type: Transform + pos: -22.5,0.5 parent: 31 - type: Transform - uid: 2750 components: - - pos: -23.5,0.5 + - type: Transform + pos: -23.5,0.5 parent: 31 - type: Transform - uid: 2751 components: - - pos: -15.5,-6.5 + - type: Transform + pos: -15.5,-6.5 parent: 31 - type: Transform - uid: 2752 components: - - pos: -15.5,-5.5 + - type: Transform + pos: -15.5,-5.5 parent: 31 - type: Transform - uid: 2753 components: - - pos: -15.5,-4.5 + - type: Transform + pos: -15.5,-4.5 parent: 31 - type: Transform - uid: 2754 components: - - pos: -11.5,2.5 + - type: Transform + pos: -11.5,2.5 parent: 31 - type: Transform - uid: 2755 components: - - pos: -11.5,1.5 + - type: Transform + pos: -11.5,1.5 parent: 31 - type: Transform - uid: 2756 components: - - pos: -11.5,0.5 + - type: Transform + pos: -11.5,0.5 parent: 31 - type: Transform - uid: 2757 components: - - pos: -11.5,-0.5 + - type: Transform + pos: -11.5,-0.5 parent: 31 - type: Transform - uid: 2758 components: - - pos: -11.5,-1.5 + - type: Transform + pos: -11.5,-1.5 parent: 31 - type: Transform - uid: 2759 components: - - pos: -11.5,-2.5 + - type: Transform + pos: -11.5,-2.5 parent: 31 - type: Transform - uid: 2760 components: - - pos: -11.5,-3.5 + - type: Transform + pos: -11.5,-3.5 parent: 31 - type: Transform - uid: 2761 components: - - pos: -11.5,-4.5 + - type: Transform + pos: -11.5,-4.5 parent: 31 - type: Transform - uid: 2762 components: - - pos: -12.5,-4.5 + - type: Transform + pos: -12.5,-4.5 parent: 31 - type: Transform - uid: 2763 components: - - pos: -12.5,0.5 + - type: Transform + pos: -12.5,0.5 parent: 31 - type: Transform - uid: 2764 components: - - pos: -13.5,0.5 + - type: Transform + pos: -13.5,0.5 parent: 31 - type: Transform - uid: 2765 components: - - pos: -14.5,0.5 + - type: Transform + pos: -14.5,0.5 parent: 31 - type: Transform - uid: 2768 components: - - pos: -15.5,0.5 + - type: Transform + pos: -15.5,0.5 parent: 31 - type: Transform - uid: 2769 components: - - pos: -16.5,0.5 + - type: Transform + pos: -16.5,0.5 parent: 31 - type: Transform - uid: 2770 components: - - pos: -17.5,0.5 + - type: Transform + pos: -17.5,0.5 parent: 31 - type: Transform - uid: 2771 components: - - pos: -18.5,0.5 + - type: Transform + pos: -18.5,0.5 parent: 31 - type: Transform - uid: 2772 components: - - pos: -19.5,0.5 + - type: Transform + pos: -19.5,0.5 parent: 31 - type: Transform - uid: 2773 components: - - pos: -20.5,0.5 + - type: Transform + pos: -20.5,0.5 parent: 31 - type: Transform - uid: 2774 components: - - pos: -20.5,1.5 + - type: Transform + pos: -20.5,1.5 parent: 31 - type: Transform - uid: 2775 components: - - pos: -16.5,-0.5 + - type: Transform + pos: -16.5,-0.5 parent: 31 - type: Transform - uid: 2776 components: - - pos: -16.5,-1.5 + - type: Transform + pos: -16.5,-1.5 parent: 31 - type: Transform - uid: 2778 components: - - pos: -12.5,-1.5 + - type: Transform + pos: -12.5,-1.5 parent: 31 - type: Transform - uid: 2779 components: - - pos: -13.5,-1.5 + - type: Transform + pos: -13.5,-1.5 parent: 31 - type: Transform - uid: 2781 components: - - pos: -20.5,-0.5 + - type: Transform + pos: -20.5,-0.5 parent: 31 - type: Transform - uid: 2782 components: - - pos: -20.5,-1.5 + - type: Transform + pos: -20.5,-1.5 parent: 31 - type: Transform - uid: 2783 components: - - pos: -20.5,-2.5 + - type: Transform + pos: -20.5,-2.5 parent: 31 - type: Transform - uid: 2784 components: - - pos: -10.5,0.5 + - type: Transform + pos: -10.5,0.5 parent: 31 - type: Transform - uid: 2785 components: - - pos: -9.5,0.5 + - type: Transform + pos: -9.5,0.5 parent: 31 - type: Transform - uid: 2786 components: - - pos: -8.5,0.5 + - type: Transform + pos: -8.5,0.5 parent: 31 - type: Transform - uid: 2787 components: - - pos: -7.5,0.5 + - type: Transform + pos: -7.5,0.5 parent: 31 - type: Transform - uid: 2788 components: - - pos: -6.5,0.5 + - type: Transform + pos: -6.5,0.5 parent: 31 - type: Transform - uid: 2789 components: - - pos: -5.5,0.5 + - type: Transform + pos: -5.5,0.5 parent: 31 - type: Transform - uid: 2790 components: - - pos: -4.5,0.5 + - type: Transform + pos: -4.5,0.5 parent: 31 - type: Transform - uid: 2791 components: - - pos: -3.5,0.5 + - type: Transform + pos: -3.5,0.5 parent: 31 - type: Transform - uid: 2792 components: - - pos: -2.5,0.5 + - type: Transform + pos: -2.5,0.5 parent: 31 - type: Transform - uid: 2793 components: - - pos: -1.5,0.5 + - type: Transform + pos: -1.5,0.5 parent: 31 - type: Transform - uid: 2794 components: - - pos: -0.5,0.5 + - type: Transform + pos: -0.5,0.5 parent: 31 - type: Transform - uid: 2795 components: - - pos: 0.5,0.5 + - type: Transform + pos: 0.5,0.5 parent: 31 - type: Transform - uid: 2796 components: - - pos: -0.5,0.5 + - type: Transform + pos: -0.5,0.5 parent: 31 - type: Transform - uid: 2797 components: - - pos: -0.5,-0.5 + - type: Transform + pos: -0.5,-0.5 parent: 31 - type: Transform - uid: 2798 components: - - pos: -0.5,-1.5 + - type: Transform + pos: -0.5,-1.5 parent: 31 - type: Transform - uid: 2799 components: - - pos: -0.5,-2.5 + - type: Transform + pos: -0.5,-2.5 parent: 31 - type: Transform - uid: 2800 components: - - pos: -0.5,-3.5 + - type: Transform + pos: -0.5,-3.5 parent: 31 - type: Transform - uid: 2801 components: - - pos: -0.5,-4.5 + - type: Transform + pos: -0.5,-4.5 parent: 31 - type: Transform - uid: 2802 components: - - pos: 0.5,-4.5 - parent: 31 - type: Transform + - type: Transform + pos: 0.5,-4.5 + parent: 31 - uid: 2803 components: - - pos: -5.5,-8.5 + - type: Transform + pos: -5.5,-8.5 parent: 31 - type: Transform - uid: 2804 components: - - pos: -5.5,-7.5 + - type: Transform + pos: -5.5,-7.5 parent: 31 - type: Transform - uid: 2805 components: - - pos: -4.5,-7.5 + - type: Transform + pos: -4.5,-7.5 parent: 31 - type: Transform - uid: 2806 components: - - pos: -3.5,-7.5 + - type: Transform + pos: -3.5,-7.5 parent: 31 - type: Transform - uid: 2808 components: - - pos: -6.5,-7.5 + - type: Transform + pos: -6.5,-7.5 parent: 31 - type: Transform - uid: 2809 components: - - pos: -7.5,-7.5 + - type: Transform + pos: -7.5,-7.5 parent: 31 - type: Transform - uid: 2810 components: - - pos: -6.5,-6.5 + - type: Transform + pos: -6.5,-6.5 parent: 31 - type: Transform - uid: 2811 components: - - pos: -6.5,-5.5 + - type: Transform + pos: -6.5,-5.5 parent: 31 - type: Transform - uid: 2812 components: - - pos: -6.5,-4.5 + - type: Transform + pos: -6.5,-4.5 parent: 31 - type: Transform - uid: 2813 components: - - pos: -5.5,-9.5 + - type: Transform + pos: -5.5,-9.5 parent: 31 - type: Transform - uid: 2814 components: - - pos: -5.5,-10.5 + - type: Transform + pos: -5.5,-10.5 parent: 31 - type: Transform - uid: 2816 components: - - pos: -4.5,-10.5 + - type: Transform + pos: -4.5,-10.5 parent: 31 - type: Transform - uid: 2817 components: - - pos: -3.5,-10.5 + - type: Transform + pos: -3.5,-10.5 parent: 31 - type: Transform - uid: 2818 components: - - pos: -2.5,-10.5 + - type: Transform + pos: -2.5,-10.5 parent: 31 - type: Transform - uid: 2819 components: - - pos: -1.5,-10.5 + - type: Transform + pos: -1.5,-10.5 parent: 31 - type: Transform - uid: 2820 components: - - pos: -0.5,-10.5 + - type: Transform + pos: -0.5,-10.5 parent: 31 - type: Transform - uid: 2821 components: - - pos: 0.5,-10.5 + - type: Transform + pos: 0.5,-10.5 parent: 31 - type: Transform - uid: 2825 components: - - pos: -0.5,-11.5 + - type: Transform + pos: -0.5,-11.5 parent: 31 - type: Transform - uid: 2826 components: - - pos: -2.5,-27.5 + - type: Transform + pos: -2.5,-27.5 parent: 31 - type: Transform - uid: 2828 components: - - pos: -15.5,-27.5 + - type: Transform + pos: -15.5,-27.5 parent: 31 - type: Transform - uid: 2830 components: - - pos: -10.5,-27.5 + - type: Transform + pos: -10.5,-27.5 parent: 31 - type: Transform - uid: 2831 components: - - pos: -11.5,-29.5 + - type: Transform + pos: -11.5,-29.5 parent: 31 - type: Transform - uid: 2832 components: - - pos: -10.5,-28.5 + - type: Transform + pos: -10.5,-28.5 parent: 31 - type: Transform - uid: 2833 components: - - pos: -9.5,-32.5 + - type: Transform + pos: -9.5,-32.5 parent: 31 - type: Transform - uid: 2835 components: - - pos: -15.5,-35.5 + - type: Transform + pos: -15.5,-35.5 parent: 31 - type: Transform - uid: 2836 components: - - pos: -14.5,-35.5 + - type: Transform + pos: -14.5,-35.5 parent: 31 - type: Transform - uid: 2837 components: - - pos: -9.5,-36.5 + - type: Transform + pos: -9.5,-36.5 parent: 31 - type: Transform - uid: 2838 components: - - pos: -0.5,-30.5 + - type: Transform + pos: -0.5,-30.5 parent: 31 - type: Transform - uid: 2860 components: - - pos: -3.5,-12.5 + - type: Transform + pos: -3.5,-12.5 parent: 31 - type: Transform - uid: 2865 components: - - pos: -14.5,-29.5 + - type: Transform + pos: -14.5,-29.5 parent: 31 - type: Transform - uid: 2867 components: - - pos: -4.5,-12.5 + - type: Transform + pos: -4.5,-12.5 parent: 31 - type: Transform - uid: 2869 components: - - pos: -5.5,-12.5 + - type: Transform + pos: -5.5,-12.5 parent: 31 - type: Transform - uid: 2870 components: - - pos: 0.5,-29.5 + - type: Transform + pos: 0.5,-29.5 parent: 31 - type: Transform - uid: 2871 components: - - pos: -0.5,-27.5 + - type: Transform + pos: -0.5,-27.5 parent: 31 - type: Transform - uid: 2873 components: - - pos: -13.5,-35.5 + - type: Transform + pos: -13.5,-35.5 parent: 31 - type: Transform - uid: 2875 components: - - pos: -6.5,-31.5 + - type: Transform + pos: -6.5,-31.5 parent: 31 - type: Transform - uid: 2876 components: - - pos: -3.5,-27.5 + - type: Transform + pos: -3.5,-27.5 parent: 31 - type: Transform - uid: 2879 components: - - pos: -2.5,-30.5 + - type: Transform + pos: -2.5,-30.5 parent: 31 - type: Transform - uid: 2880 components: - - pos: 0.5,-27.5 + - type: Transform + pos: 0.5,-27.5 parent: 31 - type: Transform - uid: 2881 components: - - pos: -10.5,-30.5 + - type: Transform + pos: -10.5,-30.5 parent: 31 - type: Transform - uid: 2882 components: - - pos: -10.5,-26.5 + - type: Transform + pos: -10.5,-26.5 parent: 31 - type: Transform - uid: 2883 components: - - pos: -16.5,-25.5 + - type: Transform + pos: -16.5,-25.5 parent: 31 - type: Transform - uid: 2890 components: - - pos: 7.5,-17.5 + - type: Transform + pos: 7.5,-17.5 parent: 31 - type: Transform - uid: 2894 components: - - pos: 10.5,-19.5 + - type: Transform + pos: 10.5,-19.5 parent: 31 - type: Transform - uid: 2895 components: - - pos: 11.5,-19.5 + - type: Transform + pos: 11.5,-19.5 parent: 31 - type: Transform - uid: 2896 components: - - pos: 12.5,-19.5 + - type: Transform + pos: 12.5,-19.5 parent: 31 - type: Transform - uid: 2897 components: - - pos: 13.5,-19.5 + - type: Transform + pos: 13.5,-19.5 parent: 31 - type: Transform - uid: 2898 components: - - pos: 14.5,-19.5 + - type: Transform + pos: 14.5,-19.5 parent: 31 - type: Transform - uid: 2899 components: - - pos: 14.5,-18.5 + - type: Transform + pos: 14.5,-18.5 parent: 31 - type: Transform - uid: 2900 components: - - pos: 7.5,-16.5 + - type: Transform + pos: 7.5,-16.5 parent: 31 - type: Transform - uid: 2901 components: - - pos: 7.5,-15.5 + - type: Transform + pos: 7.5,-15.5 parent: 31 - type: Transform - uid: 2902 components: - - pos: 7.5,-14.5 + - type: Transform + pos: 7.5,-14.5 parent: 31 - type: Transform - uid: 2903 components: - - pos: 7.5,-13.5 + - type: Transform + pos: 7.5,-13.5 parent: 31 - type: Transform - uid: 2906 components: - - pos: 8.5,-13.5 + - type: Transform + pos: 8.5,-13.5 parent: 31 - type: Transform - uid: 2907 components: - - pos: 9.5,-13.5 + - type: Transform + pos: 9.5,-13.5 parent: 31 - type: Transform - uid: 2911 components: - - pos: 22.5,-5.5 + - type: Transform + pos: 22.5,-5.5 parent: 31 - type: Transform - uid: 2912 components: - - pos: 23.5,-4.5 + - type: Transform + pos: 23.5,-4.5 parent: 31 - type: Transform - uid: 2913 components: - - pos: 24.5,-4.5 + - type: Transform + pos: 24.5,-4.5 parent: 31 - type: Transform - uid: 2914 components: - - pos: 25.5,-4.5 + - type: Transform + pos: 25.5,-4.5 parent: 31 - type: Transform - uid: 2915 components: - - pos: 22.5,-2.5 + - type: Transform + pos: 22.5,-2.5 parent: 31 - type: Transform - uid: 2916 components: - - pos: 22.5,-1.5 + - type: Transform + pos: 22.5,-1.5 parent: 31 - type: Transform - uid: 2917 components: - - pos: 22.5,-0.5 + - type: Transform + pos: 22.5,-0.5 parent: 31 - type: Transform - uid: 2918 components: - - pos: 22.5,0.5 + - type: Transform + pos: 22.5,0.5 parent: 31 - type: Transform - uid: 2919 components: - - pos: 22.5,1.5 + - type: Transform + pos: 22.5,1.5 parent: 31 - type: Transform - uid: 2920 components: - - pos: 21.5,1.5 + - type: Transform + pos: 21.5,1.5 parent: 31 - type: Transform - uid: 2921 components: - - pos: 23.5,0.5 + - type: Transform + pos: 23.5,0.5 parent: 31 - type: Transform - uid: 2922 components: - - pos: 23.5,-1.5 + - type: Transform + pos: 23.5,-1.5 parent: 31 - type: Transform - uid: 2923 components: - - pos: 24.5,-1.5 + - type: Transform + pos: 24.5,-1.5 parent: 31 - type: Transform - uid: 2924 components: - - pos: 25.5,-1.5 + - type: Transform + pos: 25.5,-1.5 parent: 31 - type: Transform - uid: 2925 components: - - pos: 22.5,-6.5 + - type: Transform + pos: 22.5,-6.5 parent: 31 - type: Transform - uid: 2926 components: - - pos: 21.5,-6.5 + - type: Transform + pos: 21.5,-6.5 parent: 31 - type: Transform - uid: 2927 components: - - pos: 20.5,-6.5 + - type: Transform + pos: 20.5,-6.5 parent: 31 - type: Transform - uid: 2928 components: - - pos: 19.5,-6.5 + - type: Transform + pos: 19.5,-6.5 parent: 31 - type: Transform - uid: 2929 components: - - pos: 18.5,-6.5 + - type: Transform + pos: 18.5,-6.5 parent: 31 - type: Transform - uid: 2930 components: - - pos: 18.5,-5.5 + - type: Transform + pos: 18.5,-5.5 parent: 31 - type: Transform - uid: 2931 components: - - pos: 18.5,-4.5 + - type: Transform + pos: 18.5,-4.5 parent: 31 - type: Transform - uid: 2933 components: - - pos: 18.5,-8.5 + - type: Transform + pos: 18.5,-8.5 parent: 31 - type: Transform - uid: 2934 components: - - pos: 18.5,-9.5 + - type: Transform + pos: 18.5,-9.5 parent: 31 - type: Transform - uid: 2935 components: - - pos: 18.5,-10.5 + - type: Transform + pos: 18.5,-10.5 parent: 31 - type: Transform - uid: 2936 components: - - pos: 18.5,-11.5 + - type: Transform + pos: 18.5,-11.5 parent: 31 - type: Transform - uid: 2938 components: - - pos: 18.5,-13.5 + - type: Transform + pos: 18.5,-13.5 parent: 31 - type: Transform - uid: 2939 components: - - pos: 18.5,-14.5 + - type: Transform + pos: 18.5,-14.5 parent: 31 - type: Transform - uid: 2940 components: - - pos: 18.5,-15.5 + - type: Transform + pos: 18.5,-15.5 parent: 31 - type: Transform - uid: 2941 components: - - pos: 18.5,-16.5 + - type: Transform + pos: 18.5,-16.5 parent: 31 - type: Transform - uid: 2942 components: - - pos: 18.5,-17.5 + - type: Transform + pos: 18.5,-17.5 parent: 31 - type: Transform - uid: 2944 components: - - pos: -22.5,-8.5 + - type: Transform + pos: -22.5,-8.5 parent: 31 - type: Transform - uid: 2946 components: - - pos: 19.5,-13.5 + - type: Transform + pos: 19.5,-13.5 parent: 31 - type: Transform - uid: 2954 components: - - pos: 8.5,-11.5 + - type: Transform + pos: 8.5,-11.5 parent: 31 - type: Transform - uid: 2955 components: - - pos: 7.5,-11.5 + - type: Transform + pos: 7.5,-11.5 parent: 31 - type: Transform - uid: 2956 components: - - pos: 9.5,-11.5 + - type: Transform + pos: 9.5,-11.5 parent: 31 - type: Transform - uid: 2957 components: - - pos: 10.5,-11.5 + - type: Transform + pos: 10.5,-11.5 parent: 31 - type: Transform - uid: 2958 components: - - pos: 7.5,-7.5 + - type: Transform + pos: 7.5,-7.5 parent: 31 - type: Transform - uid: 2959 components: - - pos: 8.5,-7.5 + - type: Transform + pos: 8.5,-7.5 parent: 31 - type: Transform - uid: 2960 components: - - pos: 9.5,-7.5 + - type: Transform + pos: 9.5,-7.5 parent: 31 - type: Transform - uid: 2961 components: - - pos: 10.5,-7.5 + - type: Transform + pos: 10.5,-7.5 parent: 31 - type: Transform - uid: 2962 components: - - pos: 11.5,-7.5 + - type: Transform + pos: 11.5,-7.5 parent: 31 - type: Transform - uid: 2963 components: - - pos: 12.5,-7.5 + - type: Transform + pos: 12.5,-7.5 parent: 31 - type: Transform - uid: 2965 components: - - pos: 14.5,-7.5 + - type: Transform + pos: 14.5,-7.5 parent: 31 - type: Transform - uid: 2966 components: - - pos: 15.5,-7.5 + - type: Transform + pos: 15.5,-7.5 parent: 31 - type: Transform - uid: 2967 components: - - pos: 16.5,-7.5 + - type: Transform + pos: 16.5,-7.5 parent: 31 - type: Transform - uid: 2968 components: - - pos: 17.5,-7.5 + - type: Transform + pos: 17.5,-7.5 parent: 31 - type: Transform - uid: 2969 components: - - pos: 18.5,-7.5 + - type: Transform + pos: 18.5,-7.5 parent: 31 - type: Transform - uid: 2970 components: - - pos: 17.5,-17.5 + - type: Transform + pos: 17.5,-17.5 parent: 31 - type: Transform - uid: 2971 components: - - pos: 16.5,-17.5 + - type: Transform + pos: 16.5,-17.5 parent: 31 - type: Transform - uid: 2972 components: - - pos: 15.5,-17.5 + - type: Transform + pos: 15.5,-17.5 parent: 31 - type: Transform - uid: 2973 components: - - pos: 16.5,2.5 + - type: Transform + pos: 16.5,2.5 parent: 31 - type: Transform - uid: 2974 components: - - pos: 16.5,1.5 + - type: Transform + pos: 16.5,1.5 parent: 31 - type: Transform - uid: 2975 components: - - pos: 17.5,1.5 + - type: Transform + pos: 17.5,1.5 parent: 31 - type: Transform - uid: 2976 components: - - pos: 18.5,1.5 + - type: Transform + pos: 18.5,1.5 parent: 31 - type: Transform - uid: 2977 components: - - pos: 15.5,1.5 + - type: Transform + pos: 15.5,1.5 parent: 31 - type: Transform - uid: 2978 components: - - pos: 14.5,1.5 + - type: Transform + pos: 14.5,1.5 parent: 31 - type: Transform - uid: 2980 components: - - pos: 12.5,1.5 + - type: Transform + pos: 12.5,1.5 parent: 31 - type: Transform - uid: 2981 components: - - pos: 11.5,1.5 + - type: Transform + pos: 11.5,1.5 parent: 31 - type: Transform - uid: 2982 components: - - pos: 10.5,1.5 + - type: Transform + pos: 10.5,1.5 parent: 31 - type: Transform - uid: 2983 components: - - pos: 9.5,1.5 + - type: Transform + pos: 9.5,1.5 parent: 31 - type: Transform - uid: 2984 components: - - pos: 8.5,1.5 + - type: Transform + pos: 8.5,1.5 parent: 31 - type: Transform - uid: 2985 components: - - pos: 7.5,1.5 + - type: Transform + pos: 7.5,1.5 parent: 31 - type: Transform - uid: 2986 components: - - pos: 6.5,1.5 + - type: Transform + pos: 6.5,1.5 parent: 31 - type: Transform - uid: 2987 components: - - pos: 16.5,0.5 + - type: Transform + pos: 16.5,0.5 parent: 31 - type: Transform - uid: 2988 components: - - pos: 16.5,-0.5 + - type: Transform + pos: 16.5,-0.5 parent: 31 - type: Transform - uid: 2989 components: - - pos: 17.5,-0.5 + - type: Transform + pos: 17.5,-0.5 parent: 31 - type: Transform - uid: 2990 components: - - pos: 18.5,-0.5 + - type: Transform + pos: 18.5,-0.5 parent: 31 - type: Transform - uid: 2991 components: - - pos: 9.5,0.5 + - type: Transform + pos: 9.5,0.5 parent: 31 - type: Transform - uid: 2992 components: - - pos: 9.5,-0.5 + - type: Transform + pos: 9.5,-0.5 parent: 31 - type: Transform - uid: 2993 components: - - pos: 9.5,-1.5 + - type: Transform + pos: 9.5,-1.5 parent: 31 - type: Transform - uid: 2994 components: - - pos: 9.5,-2.5 + - type: Transform + pos: 9.5,-2.5 parent: 31 - type: Transform - uid: 2995 components: - - pos: 9.5,-3.5 + - type: Transform + pos: 9.5,-3.5 parent: 31 - type: Transform - uid: 2996 components: - - pos: 9.5,-4.5 + - type: Transform + pos: 9.5,-4.5 parent: 31 - type: Transform - uid: 2997 components: - - pos: 8.5,-4.5 + - type: Transform + pos: 8.5,-4.5 parent: 31 - type: Transform - uid: 2998 components: - - pos: 7.5,-4.5 + - type: Transform + pos: 7.5,-4.5 parent: 31 - type: Transform - uid: 2999 components: - - pos: 6.5,-4.5 + - type: Transform + pos: 6.5,-4.5 parent: 31 - type: Transform - uid: 3000 components: - - pos: 10.5,-2.5 + - type: Transform + pos: 10.5,-2.5 parent: 31 - type: Transform - uid: 3001 components: - - pos: 11.5,-2.5 + - type: Transform + pos: 11.5,-2.5 parent: 31 - type: Transform - uid: 3002 components: - - pos: 6.5,-17.5 + - type: Transform + pos: 6.5,-17.5 parent: 31 - type: Transform - uid: 3004 components: - - pos: 2.5,-23.5 + - type: Transform + pos: 2.5,-23.5 parent: 31 - type: Transform - uid: 3005 components: - - pos: 3.5,-23.5 + - type: Transform + pos: 3.5,-23.5 parent: 31 - type: Transform - uid: 3006 components: - - pos: 3.5,-22.5 + - type: Transform + pos: 3.5,-22.5 parent: 31 - type: Transform - uid: 3007 components: - - pos: 3.5,-21.5 + - type: Transform + pos: 3.5,-21.5 parent: 31 - type: Transform - uid: 3008 components: - - pos: 2.5,-21.5 + - type: Transform + pos: 2.5,-21.5 parent: 31 - type: Transform - uid: 3009 components: - - pos: 4.5,-21.5 + - type: Transform + pos: 4.5,-21.5 parent: 31 - type: Transform - uid: 3010 components: - - pos: 22.5,-3.5 + - type: Transform + pos: 22.5,-3.5 parent: 31 - type: Transform - uid: 3012 components: - - pos: 31.5,0.5 + - type: Transform + pos: 31.5,0.5 parent: 31 - type: Transform - uid: 3013 components: - - pos: 31.5,-0.5 + - type: Transform + pos: 31.5,-0.5 parent: 31 - type: Transform - uid: 3014 components: - - pos: 31.5,-1.5 + - type: Transform + pos: 31.5,-1.5 parent: 31 - type: Transform - uid: 3015 components: - - pos: 31.5,-3.5 + - type: Transform + pos: 31.5,-3.5 parent: 31 - type: Transform - uid: 3016 components: - - pos: 31.5,-2.5 + - type: Transform + pos: 31.5,-2.5 parent: 31 - type: Transform - uid: 3017 components: - - pos: 30.5,-2.5 + - type: Transform + pos: 30.5,-2.5 parent: 31 - type: Transform - uid: 3018 components: - - pos: 29.5,-2.5 + - type: Transform + pos: 29.5,-2.5 parent: 31 - type: Transform - uid: 3019 components: - - pos: 32.5,-2.5 + - type: Transform + pos: 32.5,-2.5 parent: 31 - type: Transform - uid: 3020 components: - - pos: 33.5,-2.5 + - type: Transform + pos: 33.5,-2.5 parent: 31 - type: Transform - uid: 3021 components: - - pos: 34.5,-2.5 + - type: Transform + pos: 34.5,-2.5 parent: 31 - type: Transform - uid: 3022 components: - - pos: 35.5,-2.5 + - type: Transform + pos: 35.5,-2.5 parent: 31 - type: Transform - uid: 3023 components: - - pos: 31.5,1.5 + - type: Transform + pos: 31.5,1.5 parent: 31 - type: Transform - uid: 3024 components: - - pos: 31.5,2.5 + - type: Transform + pos: 31.5,2.5 parent: 31 - type: Transform - uid: 3025 components: - - pos: 31.5,3.5 + - type: Transform + pos: 31.5,3.5 parent: 31 - type: Transform - uid: 3026 components: - - pos: 31.5,4.5 + - type: Transform + pos: 31.5,4.5 parent: 31 - type: Transform - uid: 3027 components: - - pos: 32.5,4.5 + - type: Transform + pos: 32.5,4.5 parent: 31 - type: Transform - uid: 3028 components: - - pos: 33.5,4.5 + - type: Transform + pos: 33.5,4.5 parent: 31 - type: Transform - uid: 3029 components: - - pos: 34.5,4.5 + - type: Transform + pos: 34.5,4.5 parent: 31 - type: Transform - uid: 3030 components: - - pos: 35.5,4.5 + - type: Transform + pos: 35.5,4.5 parent: 31 - type: Transform - uid: 3031 components: - - pos: 36.5,4.5 + - type: Transform + pos: 36.5,4.5 parent: 31 - type: Transform - uid: 3032 components: - - pos: 37.5,4.5 + - type: Transform + pos: 37.5,4.5 parent: 31 - type: Transform - uid: 3033 components: - - pos: 38.5,4.5 + - type: Transform + pos: 38.5,4.5 parent: 31 - type: Transform - uid: 3034 components: - - pos: 38.5,3.5 + - type: Transform + pos: 38.5,3.5 parent: 31 - type: Transform - uid: 3035 components: - - pos: 38.5,2.5 + - type: Transform + pos: 38.5,2.5 parent: 31 - type: Transform - uid: 3036 components: - - pos: 38.5,1.5 + - type: Transform + pos: 38.5,1.5 parent: 31 - type: Transform - uid: 3037 components: - - pos: 38.5,0.5 + - type: Transform + pos: 38.5,0.5 parent: 31 - type: Transform - uid: 3038 components: - - pos: 38.5,-0.5 + - type: Transform + pos: 38.5,-0.5 parent: 31 - type: Transform - uid: 3039 components: - - pos: 38.5,-1.5 + - type: Transform + pos: 38.5,-1.5 parent: 31 - type: Transform - uid: 3054 components: - - pos: 44.5,5.5 + - type: Transform + pos: 44.5,5.5 parent: 31 - type: Transform - uid: 3055 components: - - pos: 44.5,4.5 + - type: Transform + pos: 44.5,4.5 parent: 31 - type: Transform - uid: 3056 components: - - pos: 45.5,4.5 + - type: Transform + pos: 45.5,4.5 parent: 31 - type: Transform - uid: 3057 components: - - pos: 46.5,4.5 + - type: Transform + pos: 46.5,4.5 parent: 31 - type: Transform - uid: 3058 components: - - pos: 47.5,4.5 + - type: Transform + pos: 47.5,4.5 parent: 31 - type: Transform - uid: 3059 components: - - pos: 48.5,4.5 + - type: Transform + pos: 48.5,4.5 parent: 31 - type: Transform - uid: 3060 components: - - pos: 49.5,4.5 + - type: Transform + pos: 49.5,4.5 parent: 31 - type: Transform - uid: 3061 components: - - pos: 33.5,-3.5 + - type: Transform + pos: 33.5,-3.5 parent: 31 - type: Transform - uid: 3062 components: - - pos: 33.5,-4.5 + - type: Transform + pos: 33.5,-4.5 parent: 31 - type: Transform - uid: 3063 components: - - pos: 43.5,4.5 + - type: Transform + pos: 43.5,4.5 parent: 31 - type: Transform - uid: 3064 components: - - pos: 43.5,3.5 + - type: Transform + pos: 43.5,3.5 parent: 31 - type: Transform - uid: 3065 components: - - pos: 43.5,2.5 + - type: Transform + pos: 43.5,2.5 parent: 31 - type: Transform - uid: 3066 components: - - pos: 43.5,1.5 + - type: Transform + pos: 43.5,1.5 parent: 31 - type: Transform - uid: 3067 components: - - pos: 43.5,0.5 + - type: Transform + pos: 43.5,0.5 parent: 31 - type: Transform - uid: 3069 components: - - pos: 43.5,-1.5 + - type: Transform + pos: 43.5,-1.5 parent: 31 - type: Transform - uid: 3070 components: - - pos: 43.5,-2.5 + - type: Transform + pos: 43.5,-2.5 parent: 31 - type: Transform - uid: 3071 components: - - pos: 43.5,-3.5 + - type: Transform + pos: 43.5,-3.5 parent: 31 - type: Transform - uid: 3072 components: - - pos: 42.5,-3.5 + - type: Transform + pos: 42.5,-3.5 parent: 31 - type: Transform - uid: 3073 components: - - pos: 41.5,-3.5 + - type: Transform + pos: 41.5,-3.5 parent: 31 - type: Transform - uid: 3074 components: - - pos: 40.5,-3.5 + - type: Transform + pos: 40.5,-3.5 parent: 31 - type: Transform - uid: 3075 components: - - pos: 39.5,-3.5 + - type: Transform + pos: 39.5,-3.5 parent: 31 - type: Transform - uid: 3076 components: - - pos: 38.5,-3.5 + - type: Transform + pos: 38.5,-3.5 parent: 31 - type: Transform - uid: 3077 components: - - pos: 37.5,-3.5 + - type: Transform + pos: 37.5,-3.5 parent: 31 - type: Transform - uid: 3078 components: - - pos: 37.5,-4.5 + - type: Transform + pos: 37.5,-4.5 parent: 31 - type: Transform - uid: 3079 components: - - pos: 37.5,-5.5 + - type: Transform + pos: 37.5,-5.5 parent: 31 - type: Transform - uid: 3080 components: - - pos: 37.5,-6.5 + - type: Transform + pos: 37.5,-6.5 parent: 31 - type: Transform - uid: 3081 components: - - pos: 36.5,-6.5 + - type: Transform + pos: 36.5,-6.5 parent: 31 - type: Transform - uid: 3082 components: - - pos: 35.5,-6.5 + - type: Transform + pos: 35.5,-6.5 parent: 31 - type: Transform - uid: 3083 components: - - pos: 34.5,-6.5 + - type: Transform + pos: 34.5,-6.5 parent: 31 - type: Transform - uid: 3084 components: - - pos: 33.5,-6.5 + - type: Transform + pos: 33.5,-6.5 parent: 31 - type: Transform - uid: 3085 components: - - pos: 32.5,-6.5 + - type: Transform + pos: 32.5,-6.5 parent: 31 - type: Transform - uid: 3086 components: - - pos: 31.5,-6.5 + - type: Transform + pos: 31.5,-6.5 parent: 31 - type: Transform - uid: 3087 components: - - pos: 30.5,-6.5 + - type: Transform + pos: 30.5,-6.5 parent: 31 - type: Transform - uid: 3088 components: - - pos: 29.5,-6.5 + - type: Transform + pos: 29.5,-6.5 parent: 31 - type: Transform - uid: 3089 components: - - pos: 28.5,-6.5 + - type: Transform + pos: 28.5,-6.5 parent: 31 - type: Transform - uid: 3090 components: - - pos: 27.5,-6.5 + - type: Transform + pos: 27.5,-6.5 parent: 31 - type: Transform - uid: 3091 components: - - pos: 27.5,-7.5 + - type: Transform + pos: 27.5,-7.5 parent: 31 - type: Transform - uid: 3092 components: - - pos: 27.5,-8.5 + - type: Transform + pos: 27.5,-8.5 parent: 31 - type: Transform - uid: 3093 components: - - pos: 27.5,-9.5 + - type: Transform + pos: 27.5,-9.5 parent: 31 - type: Transform - uid: 3094 components: - - pos: 27.5,-10.5 + - type: Transform + pos: 27.5,-10.5 parent: 31 - type: Transform - uid: 3095 components: - - pos: 27.5,-11.5 + - type: Transform + pos: 27.5,-11.5 parent: 31 - type: Transform - uid: 3096 components: - - pos: 27.5,-12.5 + - type: Transform + pos: 27.5,-12.5 parent: 31 - type: Transform - uid: 3097 components: - - pos: 27.5,-13.5 + - type: Transform + pos: 27.5,-13.5 parent: 31 - type: Transform - uid: 3098 components: - - pos: 27.5,-14.5 + - type: Transform + pos: 27.5,-14.5 parent: 31 - type: Transform - uid: 3099 components: - - pos: 27.5,-15.5 + - type: Transform + pos: 27.5,-15.5 parent: 31 - type: Transform - uid: 3100 components: - - pos: 27.5,-16.5 + - type: Transform + pos: 27.5,-16.5 parent: 31 - type: Transform - uid: 3101 components: - - pos: 27.5,-17.5 + - type: Transform + pos: 27.5,-17.5 parent: 31 - type: Transform - uid: 3102 components: - - pos: 27.5,-18.5 + - type: Transform + pos: 27.5,-18.5 parent: 31 - type: Transform - uid: 3103 components: - - pos: 26.5,-18.5 + - type: Transform + pos: 26.5,-18.5 parent: 31 - type: Transform - uid: 3104 components: - - pos: 25.5,-18.5 + - type: Transform + pos: 25.5,-18.5 parent: 31 - type: Transform - uid: 3105 components: - - pos: 24.5,-18.5 + - type: Transform + pos: 24.5,-18.5 parent: 31 - type: Transform - uid: 3119 components: - - pos: 28.5,14.5 + - type: Transform + pos: 28.5,14.5 parent: 31 - type: Transform - uid: 3120 components: - - pos: 28.5,13.5 + - type: Transform + pos: 28.5,13.5 parent: 31 - type: Transform - uid: 3121 components: - - pos: 28.5,12.5 + - type: Transform + pos: 28.5,12.5 parent: 31 - type: Transform - uid: 3122 components: - - pos: 23.5,9.5 + - type: Transform + pos: 23.5,9.5 parent: 31 - type: Transform - uid: 3125 components: - - pos: 28.5,9.5 + - type: Transform + pos: 28.5,9.5 parent: 31 - type: Transform - uid: 3126 components: - - pos: 27.5,9.5 + - type: Transform + pos: 27.5,9.5 parent: 31 - type: Transform - uid: 3127 components: - - pos: 26.5,9.5 + - type: Transform + pos: 26.5,9.5 parent: 31 - type: Transform - uid: 3128 components: - - pos: 25.5,9.5 + - type: Transform + pos: 25.5,9.5 parent: 31 - type: Transform - uid: 3129 components: - - pos: 26.5,10.5 + - type: Transform + pos: 26.5,10.5 parent: 31 - type: Transform - uid: 3131 components: - - pos: 27.5,8.5 + - type: Transform + pos: 27.5,8.5 parent: 31 - type: Transform - uid: 3132 components: - - pos: 27.5,7.5 + - type: Transform + pos: 27.5,7.5 parent: 31 - type: Transform - uid: 3149 components: - - pos: 24.5,13.5 + - type: Transform + pos: 24.5,13.5 parent: 31 - type: Transform - uid: 3150 components: - - pos: 23.5,13.5 + - type: Transform + pos: 23.5,13.5 parent: 31 - type: Transform - uid: 3151 components: - - pos: 22.5,13.5 + - type: Transform + pos: 22.5,13.5 parent: 31 - type: Transform - uid: 3155 components: - - pos: 21.5,13.5 + - type: Transform + pos: 21.5,13.5 parent: 31 - type: Transform - uid: 3156 components: - - pos: 20.5,13.5 + - type: Transform + pos: 20.5,13.5 parent: 31 - type: Transform - uid: 3159 components: - - pos: 19.5,13.5 + - type: Transform + pos: 19.5,13.5 parent: 31 - type: Transform - uid: 3160 components: - - pos: 18.5,13.5 + - type: Transform + pos: 18.5,13.5 parent: 31 - type: Transform - uid: 3161 components: - - pos: 21.5,12.5 + - type: Transform + pos: 21.5,12.5 parent: 31 - type: Transform - uid: 3162 components: - - pos: 21.5,11.5 + - type: Transform + pos: 21.5,11.5 parent: 31 - type: Transform - uid: 3163 components: - - pos: 21.5,10.5 + - type: Transform + pos: 21.5,10.5 parent: 31 - type: Transform - uid: 3164 components: - - pos: 21.5,9.5 + - type: Transform + pos: 21.5,9.5 parent: 31 - type: Transform - uid: 3165 components: - - pos: 21.5,8.5 + - type: Transform + pos: 21.5,8.5 parent: 31 - type: Transform - uid: 3166 components: - - pos: 22.5,8.5 + - type: Transform + pos: 22.5,8.5 parent: 31 - type: Transform - uid: 3167 components: - - pos: 23.5,8.5 + - type: Transform + pos: 23.5,8.5 parent: 31 - type: Transform - uid: 3168 components: - - pos: 20.5,8.5 + - type: Transform + pos: 20.5,8.5 parent: 31 - type: Transform - uid: 3169 components: - - pos: 19.5,8.5 + - type: Transform + pos: 19.5,8.5 parent: 31 - type: Transform - uid: 3170 components: - - pos: 18.5,8.5 + - type: Transform + pos: 18.5,8.5 parent: 31 - type: Transform - uid: 3171 components: - - pos: 17.5,8.5 + - type: Transform + pos: 17.5,8.5 parent: 31 - type: Transform - uid: 3172 components: - - pos: 18.5,12.5 + - type: Transform + pos: 18.5,12.5 parent: 31 - type: Transform - uid: 3173 components: - - pos: 18.5,11.5 + - type: Transform + pos: 18.5,11.5 parent: 31 - type: Transform - uid: 3175 components: - - pos: 12.5,12.5 + - type: Transform + pos: 12.5,12.5 parent: 31 - type: Transform - uid: 3176 components: - - pos: 12.5,11.5 + - type: Transform + pos: 12.5,11.5 parent: 31 - type: Transform - uid: 3177 components: - - pos: 13.5,11.5 + - type: Transform + pos: 13.5,11.5 parent: 31 - type: Transform - uid: 3178 components: - - pos: 14.5,9.5 + - type: Transform + pos: 14.5,9.5 parent: 31 - type: Transform - uid: 3179 components: - - pos: 16.5,11.5 + - type: Transform + pos: 16.5,11.5 parent: 31 - type: Transform - uid: 3180 components: - - pos: 14.5,10.5 + - type: Transform + pos: 14.5,10.5 parent: 31 - type: Transform - uid: 3181 components: - - pos: 14.5,12.5 + - type: Transform + pos: 14.5,12.5 parent: 31 - type: Transform - uid: 3182 components: - - pos: 15.5,11.5 + - type: Transform + pos: 15.5,11.5 parent: 31 - type: Transform - uid: 3183 components: - - pos: 14.5,11.5 + - type: Transform + pos: 14.5,11.5 parent: 31 - type: Transform - uid: 3185 components: - - pos: 10.5,10.5 + - type: Transform + pos: 10.5,10.5 parent: 31 - type: Transform - uid: 3186 components: - - pos: 9.5,10.5 + - type: Transform + pos: 9.5,10.5 parent: 31 - type: Transform - uid: 3187 components: - - pos: 8.5,10.5 + - type: Transform + pos: 8.5,10.5 parent: 31 - type: Transform - uid: 3188 components: - - pos: 7.5,10.5 + - type: Transform + pos: 7.5,10.5 parent: 31 - type: Transform - uid: 3189 components: - - pos: 6.5,10.5 + - type: Transform + pos: 6.5,10.5 parent: 31 - type: Transform - uid: 3191 components: - - pos: 8.5,9.5 + - type: Transform + pos: 8.5,9.5 parent: 31 - type: Transform - uid: 3192 components: - - pos: 8.5,8.5 + - type: Transform + pos: 8.5,8.5 parent: 31 - type: Transform - uid: 3193 components: - - pos: 8.5,7.5 + - type: Transform + pos: 8.5,7.5 parent: 31 - type: Transform - uid: 3194 components: - - pos: 8.5,6.5 + - type: Transform + pos: 8.5,6.5 parent: 31 - type: Transform - uid: 3195 components: - - pos: 14.5,13.5 + - type: Transform + pos: 14.5,13.5 parent: 31 - type: Transform - uid: 3197 components: - - pos: 11.5,14.5 + - type: Transform + pos: 11.5,14.5 parent: 31 - type: Transform - uid: 3198 components: - - pos: 10.5,14.5 + - type: Transform + pos: 10.5,14.5 parent: 31 - type: Transform - uid: 3199 components: - - pos: 9.5,14.5 + - type: Transform + pos: 9.5,14.5 parent: 31 - type: Transform - uid: 3200 components: - - pos: 8.5,14.5 + - type: Transform + pos: 8.5,14.5 parent: 31 - type: Transform - uid: 3201 components: - - pos: 7.5,14.5 + - type: Transform + pos: 7.5,14.5 parent: 31 - type: Transform - uid: 3202 components: - - pos: 6.5,14.5 + - type: Transform + pos: 6.5,14.5 parent: 31 - type: Transform - uid: 3203 components: - - pos: 12.5,14.5 + - type: Transform + pos: 12.5,14.5 parent: 31 - type: Transform - uid: 3204 components: - - pos: 13.5,14.5 + - type: Transform + pos: 13.5,14.5 parent: 31 - type: Transform - uid: 3208 components: - - pos: 13.5,16.5 + - type: Transform + pos: 13.5,16.5 parent: 31 - type: Transform - uid: 3209 components: - - pos: 13.5,15.5 + - type: Transform + pos: 13.5,15.5 parent: 31 - type: Transform - uid: 3210 components: - - pos: 9.5,22.5 + - type: Transform + pos: 9.5,22.5 parent: 31 - type: Transform - uid: 3211 components: - - pos: 9.5,21.5 + - type: Transform + pos: 9.5,21.5 parent: 31 - type: Transform - uid: 3212 components: - - pos: 9.5,20.5 + - type: Transform + pos: 9.5,20.5 parent: 31 - type: Transform - uid: 3213 components: - - pos: 9.5,19.5 + - type: Transform + pos: 9.5,19.5 parent: 31 - type: Transform - uid: 3214 components: - - pos: 9.5,18.5 + - type: Transform + pos: 9.5,18.5 parent: 31 - type: Transform - uid: 3215 components: - - pos: 9.5,17.5 + - type: Transform + pos: 9.5,17.5 parent: 31 - type: Transform - uid: 3216 components: - - pos: 9.5,16.5 + - type: Transform + pos: 9.5,16.5 parent: 31 - type: Transform - uid: 3217 components: - - pos: 10.5,20.5 + - type: Transform + pos: 10.5,20.5 parent: 31 - type: Transform - uid: 3218 components: - - pos: 8.5,17.5 + - type: Transform + pos: 8.5,17.5 parent: 31 - type: Transform - uid: 3220 components: - - pos: 7.5,17.5 + - type: Transform + pos: 7.5,17.5 parent: 31 - type: Transform - uid: 3222 components: - - pos: 6.5,17.5 + - type: Transform + pos: 6.5,17.5 parent: 31 - type: Transform - uid: 3223 components: - - pos: 5.5,17.5 + - type: Transform + pos: 5.5,17.5 parent: 31 - type: Transform - uid: 3224 components: - - pos: 5.5,16.5 + - type: Transform + pos: 5.5,16.5 parent: 31 - type: Transform - uid: 3225 components: - - pos: 4.5,17.5 + - type: Transform + pos: 4.5,17.5 parent: 31 - type: Transform - uid: 3226 components: - - pos: 3.5,17.5 + - type: Transform + pos: 3.5,17.5 parent: 31 - type: Transform - uid: 3227 components: - - pos: 3.5,18.5 + - type: Transform + pos: 3.5,18.5 parent: 31 - type: Transform - uid: 3228 components: - - pos: 3.5,19.5 + - type: Transform + pos: 3.5,19.5 parent: 31 - type: Transform - uid: 3230 components: - - pos: 3.5,20.5 + - type: Transform + pos: 3.5,20.5 parent: 31 - type: Transform - uid: 3231 components: - - pos: 3.5,21.5 + - type: Transform + pos: 3.5,21.5 parent: 31 - type: Transform - uid: 3232 components: - - pos: 3.5,22.5 + - type: Transform + pos: 3.5,22.5 parent: 31 - type: Transform - uid: 3233 components: - - pos: 2.5,20.5 + - type: Transform + pos: 2.5,20.5 parent: 31 - type: Transform - uid: 3234 components: - - pos: 1.5,20.5 + - type: Transform + pos: 1.5,20.5 parent: 31 - type: Transform - uid: 3236 components: - - pos: 10.5,24.5 + - type: Transform + pos: 10.5,24.5 parent: 31 - type: Transform - uid: 3237 components: - - pos: 9.5,25.5 + - type: Transform + pos: 9.5,25.5 parent: 31 - type: Transform - uid: 3239 components: - - pos: 8.5,24.5 + - type: Transform + pos: 8.5,24.5 parent: 31 - type: Transform - uid: 3240 components: - - pos: 7.5,24.5 + - type: Transform + pos: 7.5,24.5 parent: 31 - type: Transform - uid: 3241 components: - - pos: 6.5,24.5 + - type: Transform + pos: 6.5,24.5 parent: 31 - type: Transform - uid: 3242 components: - - pos: 9.5,28.5 + - type: Transform + pos: 9.5,28.5 parent: 31 - type: Transform - uid: 3243 components: - - pos: 9.5,29.5 + - type: Transform + pos: 9.5,29.5 parent: 31 - type: Transform - uid: 3244 components: - - pos: 9.5,30.5 + - type: Transform + pos: 9.5,30.5 parent: 31 - type: Transform - uid: 3245 components: - - pos: 8.5,30.5 + - type: Transform + pos: 8.5,30.5 parent: 31 - type: Transform - uid: 3246 components: - - pos: 7.5,30.5 + - type: Transform + pos: 7.5,30.5 parent: 31 - type: Transform - uid: 3247 components: - - pos: 6.5,30.5 + - type: Transform + pos: 6.5,30.5 parent: 31 - type: Transform - uid: 3248 components: - - pos: 6.5,31.5 + - type: Transform + pos: 6.5,31.5 parent: 31 - type: Transform - uid: 3249 components: - - pos: -2.5,27.5 + - type: Transform + pos: -2.5,27.5 parent: 31 - type: Transform - uid: 3250 components: - - pos: -2.5,28.5 + - type: Transform + pos: -2.5,28.5 parent: 31 - type: Transform - uid: 3251 components: - - pos: -2.5,29.5 + - type: Transform + pos: -2.5,29.5 parent: 31 - type: Transform - uid: 3252 components: - - pos: -2.5,30.5 + - type: Transform + pos: -2.5,30.5 parent: 31 - type: Transform - uid: 3253 components: - - pos: -1.5,30.5 + - type: Transform + pos: -1.5,30.5 parent: 31 - type: Transform - uid: 3254 components: - - pos: -0.5,30.5 + - type: Transform + pos: -0.5,30.5 parent: 31 - type: Transform - uid: 3255 components: - - pos: 0.5,30.5 + - type: Transform + pos: 0.5,30.5 parent: 31 - type: Transform - uid: 3256 components: - - pos: 1.5,30.5 + - type: Transform + pos: 1.5,30.5 parent: 31 - type: Transform - uid: 3257 components: - - pos: 2.5,30.5 + - type: Transform + pos: 2.5,30.5 parent: 31 - type: Transform - uid: 3258 components: - - pos: 3.5,30.5 + - type: Transform + pos: 3.5,30.5 parent: 31 - type: Transform - uid: 3259 components: - - pos: 0.5,31.5 + - type: Transform + pos: 0.5,31.5 parent: 31 - type: Transform - uid: 3260 components: - - pos: 3.5,31.5 + - type: Transform + pos: 3.5,31.5 parent: 31 - type: Transform - uid: 3261 components: - - pos: -2.5,26.5 + - type: Transform + pos: -2.5,26.5 parent: 31 - type: Transform - uid: 3262 components: - - pos: -2.5,25.5 + - type: Transform + pos: -2.5,25.5 parent: 31 - type: Transform - uid: 3263 components: - - pos: -1.5,25.5 + - type: Transform + pos: -1.5,25.5 parent: 31 - type: Transform - uid: 3264 components: - - pos: -0.5,25.5 + - type: Transform + pos: -0.5,25.5 parent: 31 - type: Transform - uid: 3265 components: - - pos: 0.5,25.5 + - type: Transform + pos: 0.5,25.5 parent: 31 - type: Transform - uid: 3266 components: - - pos: 0.5,24.5 + - type: Transform + pos: 0.5,24.5 parent: 31 - type: Transform - uid: 3267 components: - - pos: -2.5,24.5 + - type: Transform + pos: -2.5,24.5 parent: 31 - type: Transform - uid: 3268 components: - - pos: -2.5,23.5 + - type: Transform + pos: -2.5,23.5 parent: 31 - type: Transform - uid: 3269 components: - - pos: -1.5,23.5 + - type: Transform + pos: -1.5,23.5 parent: 31 - type: Transform - uid: 3305 components: - - pos: 31.5,26.5 + - type: Transform + pos: 31.5,26.5 parent: 31 - type: Transform - uid: 3318 components: - - pos: 13.5,-14.5 + - type: Transform + pos: 13.5,-14.5 parent: 31 - type: Transform - uid: 3384 components: - - pos: -6.5,-28.5 + - type: Transform + pos: -6.5,-28.5 parent: 31 - type: Transform - uid: 3388 components: - - pos: -7.5,-19.5 + - type: Transform + pos: -7.5,-19.5 parent: 31 - type: Transform - uid: 3418 components: - - pos: 15.5,-14.5 + - type: Transform + pos: 15.5,-14.5 parent: 31 - type: Transform - uid: 3536 components: - - pos: 12.5,19.5 + - type: Transform + pos: 12.5,19.5 parent: 31 - type: Transform - uid: 3599 components: - - pos: 24.5,18.5 + - type: Transform + pos: 24.5,18.5 parent: 31 - type: Transform - uid: 3601 components: - - pos: 24.5,17.5 + - type: Transform + pos: 24.5,17.5 parent: 31 - type: Transform - uid: 3617 components: - - pos: -26.5,-4.5 + - type: Transform + pos: -26.5,-4.5 parent: 31 - type: Transform - uid: 3619 components: - - pos: -4.5,25.5 + - type: Transform + pos: -4.5,25.5 parent: 31 - type: Transform - uid: 3626 components: - - pos: 10.5,25.5 + - type: Transform + pos: 10.5,25.5 parent: 31 - type: Transform - uid: 3638 components: - - pos: 25.5,9.5 + - type: Transform + pos: 25.5,9.5 parent: 31 - type: Transform - uid: 3703 components: - - pos: -4.5,15.5 + - type: Transform + pos: -4.5,15.5 parent: 31 - type: Transform - uid: 3727 components: - - pos: -16.5,16.5 + - type: Transform + pos: -16.5,16.5 parent: 31 - type: Transform - uid: 3768 components: - - pos: -28.5,-5.5 + - type: Transform + pos: -28.5,-5.5 parent: 31 - type: Transform - uid: 3769 components: - - pos: -29.5,-5.5 + - type: Transform + pos: -29.5,-5.5 parent: 31 - type: Transform - uid: 3787 components: - - pos: -30.5,9.5 + - type: Transform + pos: -30.5,9.5 parent: 31 - type: Transform - uid: 3788 components: - - pos: -29.5,9.5 + - type: Transform + pos: -29.5,9.5 parent: 31 - type: Transform - uid: 3830 components: - - pos: -18.5,17.5 + - type: Transform + pos: -18.5,17.5 parent: 31 - type: Transform - uid: 3843 components: - - pos: -4.5,12.5 + - type: Transform + pos: -4.5,12.5 parent: 31 - type: Transform - uid: 3845 components: - - pos: -4.5,13.5 + - type: Transform + pos: -4.5,13.5 parent: 31 - type: Transform - uid: 3853 components: - - pos: 22.5,-7.5 + - type: Transform + pos: 22.5,-7.5 parent: 31 - type: Transform - uid: 3885 components: - - pos: -24.5,10.5 + - type: Transform + pos: -24.5,10.5 parent: 31 - type: Transform - uid: 3886 components: - - pos: -24.5,11.5 + - type: Transform + pos: -24.5,11.5 parent: 31 - type: Transform - uid: 3891 components: - - pos: 21.5,17.5 + - type: Transform + pos: 21.5,17.5 parent: 31 - type: Transform - uid: 3909 components: - - pos: 15.5,15.5 + - type: Transform + pos: 15.5,15.5 parent: 31 - type: Transform - uid: 3918 components: - - pos: 3.5,0.5 + - type: Transform + pos: 3.5,0.5 parent: 31 - type: Transform - uid: 3921 components: - - pos: 8.5,20.5 + - type: Transform + pos: 8.5,20.5 parent: 31 - type: Transform - uid: 3924 components: - - pos: 3.5,1.5 + - type: Transform + pos: 3.5,1.5 parent: 31 - type: Transform - uid: 3931 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 31 - type: Transform - uid: 3932 components: - - pos: 1.5,0.5 - parent: 31 - type: Transform + - type: Transform + pos: 1.5,0.5 + parent: 31 - uid: 3937 components: - - pos: -31.5,5.5 + - type: Transform + pos: -31.5,5.5 parent: 31 - type: Transform - uid: 3938 components: - - pos: 7.5,20.5 + - type: Transform + pos: 7.5,20.5 parent: 31 - type: Transform - uid: 3941 components: - - pos: -30.5,5.5 + - type: Transform + pos: -30.5,5.5 parent: 31 - type: Transform - uid: 3942 components: - - pos: -23.5,5.5 + - type: Transform + pos: -23.5,5.5 parent: 31 - type: Transform - uid: 3945 components: - - pos: 12.5,-8.5 + - type: Transform + pos: 12.5,-8.5 parent: 31 - type: Transform - uid: 3948 components: - - pos: 2.5,6.5 + - type: Transform + pos: 2.5,6.5 parent: 31 - type: Transform - uid: 3949 components: - - pos: -26.5,7.5 + - type: Transform + pos: -26.5,7.5 parent: 31 - type: Transform - uid: 3950 components: - - pos: 27.5,12.5 + - type: Transform + pos: 27.5,12.5 parent: 31 - type: Transform - uid: 3951 components: - - pos: -21.5,13.5 + - type: Transform + pos: -21.5,13.5 parent: 31 - type: Transform - uid: 3953 components: - - pos: -26.5,6.5 + - type: Transform + pos: -26.5,6.5 parent: 31 - type: Transform - uid: 3954 components: - - pos: -26.5,5.5 + - type: Transform + pos: -26.5,5.5 parent: 31 - type: Transform - uid: 3956 components: - - pos: 3.5,6.5 + - type: Transform + pos: 3.5,6.5 parent: 31 - type: Transform - uid: 3957 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 31 - type: Transform - uid: 3960 components: - - pos: 12.5,-9.5 + - type: Transform + pos: 12.5,-9.5 parent: 31 - type: Transform - uid: 3965 components: - - pos: -32.5,-8.5 + - type: Transform + pos: -32.5,-8.5 parent: 31 - type: Transform - uid: 3966 components: - - pos: 21.5,19.5 + - type: Transform + pos: 21.5,19.5 parent: 31 - type: Transform - uid: 3979 components: - - pos: -32.5,-7.5 + - type: Transform + pos: -32.5,-7.5 parent: 31 - type: Transform - uid: 3995 components: - - pos: 23.5,-18.5 + - type: Transform + pos: 23.5,-18.5 parent: 31 - type: Transform - uid: 4008 components: - - pos: -22.5,-22.5 + - type: Transform + pos: -22.5,-22.5 parent: 31 - type: Transform - uid: 4012 components: - - pos: 11.5,-14.5 + - type: Transform + pos: 11.5,-14.5 parent: 31 - type: Transform - uid: 4022 components: - - pos: -18.5,13.5 + - type: Transform + pos: -18.5,13.5 parent: 31 - type: Transform - uid: 4023 components: - - pos: 13.5,-29.5 + - type: Transform + pos: 13.5,-29.5 parent: 31 - type: Transform - uid: 4035 components: - - pos: -6.5,3.5 + - type: Transform + pos: -6.5,3.5 parent: 31 - type: Transform - uid: 4037 components: - - pos: -20.5,13.5 + - type: Transform + pos: -20.5,13.5 parent: 31 - type: Transform - uid: 4039 components: - - pos: -8.5,-7.5 + - type: Transform + pos: -8.5,-7.5 parent: 31 - type: Transform - uid: 4040 components: - - pos: -32.5,-6.5 + - type: Transform + pos: -32.5,-6.5 parent: 31 - type: Transform - uid: 4043 components: - - pos: -26.5,4.5 + - type: Transform + pos: -26.5,4.5 parent: 31 - type: Transform - uid: 4047 components: - - pos: -19.5,13.5 + - type: Transform + pos: -19.5,13.5 parent: 31 - type: Transform - uid: 4048 components: - - pos: -24.5,19.5 + - type: Transform + pos: -24.5,19.5 parent: 31 - type: Transform - uid: 4049 components: - - pos: -22.5,19.5 + - type: Transform + pos: -22.5,19.5 parent: 31 - type: Transform - uid: 4111 components: - - pos: 27.5,16.5 + - type: Transform + pos: 27.5,16.5 parent: 31 - type: Transform - uid: 4132 components: - - pos: -41.5,8.5 + - type: Transform + pos: -41.5,8.5 parent: 31 - type: Transform - uid: 4159 components: - - pos: -42.5,8.5 + - type: Transform + pos: -42.5,8.5 parent: 31 - type: Transform - uid: 4208 components: - - pos: -38.5,-11.5 + - type: Transform + pos: -38.5,-11.5 parent: 31 - type: Transform - uid: 4212 components: - - pos: -22.5,-15.5 + - type: Transform + pos: -22.5,-15.5 parent: 31 - type: Transform - uid: 4213 components: - - pos: -4.5,-19.5 + - type: Transform + pos: -4.5,-19.5 parent: 31 - type: Transform - uid: 4224 components: - - pos: -4.5,-20.5 + - type: Transform + pos: -4.5,-20.5 parent: 31 - type: Transform - uid: 4228 components: - - pos: 15.5,-13.5 + - type: Transform + pos: 15.5,-13.5 parent: 31 - type: Transform - uid: 4252 components: - - pos: 12.5,-14.5 + - type: Transform + pos: 12.5,-14.5 parent: 31 - type: Transform - uid: 4253 components: - - pos: 17.5,-10.5 + - type: Transform + pos: 17.5,-10.5 parent: 31 - type: Transform - uid: 4280 components: - - pos: 28.5,16.5 + - type: Transform + pos: 28.5,16.5 parent: 31 - type: Transform - uid: 4281 components: - - pos: 23.5,16.5 + - type: Transform + pos: 23.5,16.5 parent: 31 - type: Transform - uid: 4283 components: - - pos: 47.5,2.5 + - type: Transform + pos: 47.5,2.5 parent: 31 - type: Transform - uid: 4310 components: - - pos: -40.5,8.5 + - type: Transform + pos: -40.5,8.5 parent: 31 - type: Transform - uid: 4379 components: - - pos: 36.5,-12.5 + - type: Transform + pos: 36.5,-12.5 parent: 31 - type: Transform - uid: 4383 components: - - pos: 33.5,-22.5 + - type: Transform + pos: 33.5,-22.5 parent: 31 - type: Transform - uid: 4491 components: - - pos: 29.5,-17.5 + - type: Transform + pos: 29.5,-17.5 parent: 31 - type: Transform - uid: 4492 components: - - pos: 28.5,-17.5 + - type: Transform + pos: 28.5,-17.5 parent: 31 - type: Transform - uid: 4495 components: - - pos: 38.5,-12.5 + - type: Transform + pos: 38.5,-12.5 parent: 31 - type: Transform - uid: 4496 components: - - pos: 37.5,-7.5 + - type: Transform + pos: 37.5,-7.5 parent: 31 - type: Transform - uid: 4497 components: - - pos: 36.5,-11.5 + - type: Transform + pos: 36.5,-11.5 parent: 31 - type: Transform - uid: 4498 components: - - pos: 38.5,-10.5 + - type: Transform + pos: 38.5,-10.5 parent: 31 - type: Transform - uid: 4505 components: - - pos: 29.5,-9.5 + - type: Transform + pos: 29.5,-9.5 parent: 31 - type: Transform - uid: 4591 components: - - pos: 36.5,-14.5 + - type: Transform + pos: 36.5,-14.5 parent: 31 - type: Transform - uid: 4592 components: - - pos: 33.5,-9.5 + - type: Transform + pos: 33.5,-9.5 parent: 31 - type: Transform - uid: 4593 components: - - pos: 34.5,-9.5 + - type: Transform + pos: 34.5,-9.5 parent: 31 - type: Transform - uid: 4623 components: - - pos: 37.5,-9.5 + - type: Transform + pos: 37.5,-9.5 parent: 31 - type: Transform - uid: 4630 components: - - pos: 42.5,-24.5 + - type: Transform + pos: 42.5,-24.5 parent: 31 - type: Transform - uid: 4633 components: - - pos: 43.5,-24.5 + - type: Transform + pos: 43.5,-24.5 parent: 31 - type: Transform - uid: 4643 components: - - pos: 30.5,-9.5 + - type: Transform + pos: 30.5,-9.5 parent: 31 - type: Transform - uid: 4644 components: - - pos: 38.5,-11.5 + - type: Transform + pos: 38.5,-11.5 parent: 31 - type: Transform - uid: 4645 components: - - pos: 37.5,-8.5 + - type: Transform + pos: 37.5,-8.5 parent: 31 - type: Transform - uid: 4647 components: - - pos: 32.5,-9.5 + - type: Transform + pos: 32.5,-9.5 parent: 31 - type: Transform - uid: 4665 components: - - pos: 39.5,-24.5 + - type: Transform + pos: 39.5,-24.5 parent: 31 - type: Transform - uid: 4666 components: - - pos: 38.5,-24.5 + - type: Transform + pos: 38.5,-24.5 parent: 31 - type: Transform - uid: 4667 components: - - pos: 37.5,-24.5 + - type: Transform + pos: 37.5,-24.5 parent: 31 - type: Transform - uid: 4668 components: - - pos: 36.5,-24.5 + - type: Transform + pos: 36.5,-24.5 parent: 31 - type: Transform - uid: 4669 components: - - pos: 35.5,-24.5 + - type: Transform + pos: 35.5,-24.5 parent: 31 - type: Transform - uid: 4670 components: - - pos: 34.5,-24.5 + - type: Transform + pos: 34.5,-24.5 parent: 31 - type: Transform - uid: 4671 components: - - pos: 33.5,-24.5 + - type: Transform + pos: 33.5,-24.5 parent: 31 - type: Transform - uid: 4672 components: - - pos: 33.5,-23.5 + - type: Transform + pos: 33.5,-23.5 parent: 31 - type: Transform - uid: 4720 components: - - pos: 7.5,-29.5 + - type: Transform + pos: 7.5,-29.5 parent: 31 - type: Transform - uid: 4736 components: - - pos: 21.5,18.5 + - type: Transform + pos: 21.5,18.5 parent: 31 - type: Transform - uid: 4743 components: - - pos: 8.5,-29.5 + - type: Transform + pos: 8.5,-29.5 parent: 31 - type: Transform - uid: 4745 components: - - pos: 5.5,-25.5 + - type: Transform + pos: 5.5,-25.5 parent: 31 - type: Transform - uid: 4746 components: - - pos: 6.5,-28.5 + - type: Transform + pos: 6.5,-28.5 parent: 31 - type: Transform - uid: 4752 components: - - pos: 6.5,-29.5 + - type: Transform + pos: 6.5,-29.5 parent: 31 - type: Transform - uid: 4753 components: - - pos: 4.5,-29.5 + - type: Transform + pos: 4.5,-29.5 parent: 31 - type: Transform - uid: 4754 components: - - pos: 5.5,-29.5 + - type: Transform + pos: 5.5,-29.5 parent: 31 - type: Transform - uid: 4755 components: - - pos: 6.5,-27.5 + - type: Transform + pos: 6.5,-27.5 parent: 31 - type: Transform - uid: 4758 components: - - pos: 13.5,-23.5 + - type: Transform + pos: 13.5,-23.5 parent: 31 - type: Transform - uid: 4759 components: - - pos: 10.5,-23.5 + - type: Transform + pos: 10.5,-23.5 parent: 31 - type: Transform - uid: 4760 components: - - pos: 8.5,-23.5 + - type: Transform + pos: 8.5,-23.5 parent: 31 - type: Transform - uid: 4761 components: - - pos: 9.5,-23.5 + - type: Transform + pos: 9.5,-23.5 parent: 31 - type: Transform - uid: 4762 components: - - pos: 9.5,-29.5 + - type: Transform + pos: 9.5,-29.5 parent: 31 - type: Transform - uid: 4763 components: - - pos: 11.5,-29.5 + - type: Transform + pos: 11.5,-29.5 parent: 31 - type: Transform - uid: 4764 components: - - pos: 11.5,-23.5 + - type: Transform + pos: 11.5,-23.5 parent: 31 - type: Transform - uid: 4765 components: - - pos: 12.5,-23.5 + - type: Transform + pos: 12.5,-23.5 parent: 31 - type: Transform - uid: 4766 components: - - pos: 12.5,-29.5 + - type: Transform + pos: 12.5,-29.5 parent: 31 - type: Transform - uid: 4767 components: - - pos: 12.5,-24.5 + - type: Transform + pos: 12.5,-24.5 parent: 31 - type: Transform - uid: 4768 components: - - pos: 12.5,-28.5 + - type: Transform + pos: 12.5,-28.5 parent: 31 - type: Transform - uid: 4769 components: - - pos: 22.5,-19.5 + - type: Transform + pos: 22.5,-19.5 parent: 31 - type: Transform - uid: 4770 components: - - pos: 12.5,-25.5 + - type: Transform + pos: 12.5,-25.5 parent: 31 - type: Transform - uid: 4771 components: - - pos: 10.5,-29.5 + - type: Transform + pos: 10.5,-29.5 parent: 31 - type: Transform - uid: 4786 components: - - pos: 12.5,-26.5 + - type: Transform + pos: 12.5,-26.5 parent: 31 - type: Transform - uid: 4794 components: - - pos: 12.5,-27.5 + - type: Transform + pos: 12.5,-27.5 parent: 31 - type: Transform - uid: 4808 components: - - pos: 12.5,24.5 + - type: Transform + pos: 12.5,24.5 parent: 31 - type: Transform - uid: 4824 components: - - pos: 6.5,-26.5 + - type: Transform + pos: 6.5,-26.5 parent: 31 - type: Transform - uid: 4825 components: - - pos: 6.5,-25.5 + - type: Transform + pos: 6.5,-25.5 parent: 31 - type: Transform - uid: 4829 components: - - pos: 31.5,23.5 + - type: Transform + pos: 31.5,23.5 parent: 31 - type: Transform - uid: 4832 components: - - pos: 4.5,-25.5 + - type: Transform + pos: 4.5,-25.5 parent: 31 - type: Transform - uid: 4835 components: - - pos: -15.5,-36.5 + - type: Transform + pos: -15.5,-36.5 parent: 31 - type: Transform - uid: 4859 components: - - pos: -15.5,-10.5 + - type: Transform + pos: -15.5,-10.5 parent: 31 - type: Transform - uid: 4861 components: - - pos: -13.5,-10.5 + - type: Transform + pos: -13.5,-10.5 parent: 31 - type: Transform - uid: 4864 components: - - pos: 12.5,20.5 + - type: Transform + pos: 12.5,20.5 parent: 31 - type: Transform - uid: 4865 components: - - pos: 12.5,21.5 + - type: Transform + pos: 12.5,21.5 parent: 31 - type: Transform - uid: 4866 components: - - pos: 12.5,22.5 + - type: Transform + pos: 12.5,22.5 parent: 31 - type: Transform - uid: 4869 components: - - pos: -15.5,-38.5 + - type: Transform + pos: -15.5,-38.5 parent: 31 - type: Transform - uid: 4903 components: - - pos: -15.5,-37.5 + - type: Transform + pos: -15.5,-37.5 parent: 31 - type: Transform - uid: 4919 components: - - pos: 12.5,26.5 + - type: Transform + pos: 12.5,26.5 parent: 31 - type: Transform - uid: 4929 components: - - pos: 21.5,20.5 + - type: Transform + pos: 21.5,20.5 parent: 31 - type: Transform - uid: 4961 components: - - pos: 26.5,-19.5 + - type: Transform + pos: 26.5,-19.5 parent: 31 - type: Transform - uid: 4962 components: - - pos: 26.5,-20.5 + - type: Transform + pos: 26.5,-20.5 parent: 31 - type: Transform - uid: 4963 components: - - pos: 22.5,-24.5 + - type: Transform + pos: 22.5,-24.5 parent: 31 - type: Transform - uid: 4964 components: - - pos: 23.5,-24.5 + - type: Transform + pos: 23.5,-24.5 parent: 31 - type: Transform - uid: 4965 components: - - pos: 22.5,-23.5 + - type: Transform + pos: 22.5,-23.5 parent: 31 - type: Transform - uid: 4966 components: - - pos: 22.5,-22.5 + - type: Transform + pos: 22.5,-22.5 parent: 31 - type: Transform - uid: 4967 components: - - pos: 22.5,-20.5 + - type: Transform + pos: 22.5,-20.5 parent: 31 - type: Transform - uid: 4968 components: - - pos: 22.5,-21.5 + - type: Transform + pos: 22.5,-21.5 parent: 31 - type: Transform - uid: 4970 components: - - pos: 24.5,-24.5 + - type: Transform + pos: 24.5,-24.5 parent: 31 - type: Transform - uid: 4971 components: - - pos: 47.5,24.5 + - type: Transform + pos: 47.5,24.5 parent: 31 - type: Transform - uid: 4972 components: - - pos: 26.5,-24.5 + - type: Transform + pos: 26.5,-24.5 parent: 31 - type: Transform - uid: 4973 components: - - pos: 27.5,-24.5 + - type: Transform + pos: 27.5,-24.5 parent: 31 - type: Transform - uid: 4996 components: - - pos: -20.5,19.5 + - type: Transform + pos: -20.5,19.5 parent: 31 - type: Transform - uid: 4997 components: - - pos: -21.5,19.5 + - type: Transform + pos: -21.5,19.5 parent: 31 - type: Transform - uid: 4998 components: - - pos: -23.5,19.5 + - type: Transform + pos: -23.5,19.5 parent: 31 - type: Transform - uid: 5000 components: - - pos: -19.5,19.5 + - type: Transform + pos: -19.5,19.5 parent: 31 - type: Transform - uid: 5001 components: - - pos: -18.5,19.5 + - type: Transform + pos: -18.5,19.5 parent: 31 - type: Transform - uid: 5023 components: - - pos: 25.5,-24.5 + - type: Transform + pos: 25.5,-24.5 parent: 31 - type: Transform - uid: 5025 components: - - pos: -25.5,16.5 + - type: Transform + pos: -25.5,16.5 parent: 31 - type: Transform - uid: 5026 components: - - pos: -25.5,17.5 + - type: Transform + pos: -25.5,17.5 parent: 31 - type: Transform - uid: 5027 components: - - pos: -25.5,18.5 + - type: Transform + pos: -25.5,18.5 parent: 31 - type: Transform - uid: 5125 components: - - pos: 52.5,17.5 + - type: Transform + pos: 52.5,17.5 parent: 31 - type: Transform - uid: 5128 components: - - pos: -23.5,-15.5 + - type: Transform + pos: -23.5,-15.5 parent: 31 - type: Transform - uid: 5134 components: - - pos: 15.5,-10.5 + - type: Transform + pos: 15.5,-10.5 parent: 31 - type: Transform - uid: 5135 components: - - pos: 10.5,-9.5 + - type: Transform + pos: 10.5,-9.5 parent: 31 - type: Transform - uid: 5136 components: - - pos: 10.5,-10.5 + - type: Transform + pos: 10.5,-10.5 parent: 31 - type: Transform - uid: 5185 components: - - pos: -22.5,21.5 + - type: Transform + pos: -22.5,21.5 parent: 31 - type: Transform - uid: 5186 components: - - pos: -22.5,22.5 + - type: Transform + pos: -22.5,22.5 parent: 31 - type: Transform - uid: 5187 components: - - pos: -22.5,23.5 + - type: Transform + pos: -22.5,23.5 parent: 31 - type: Transform - uid: 5188 components: - - pos: -22.5,24.5 + - type: Transform + pos: -22.5,24.5 parent: 31 - type: Transform - uid: 5189 components: - - pos: -23.5,24.5 + - type: Transform + pos: -23.5,24.5 parent: 31 - type: Transform - uid: 5197 components: - - pos: -25.5,24.5 + - type: Transform + pos: -25.5,24.5 parent: 31 - type: Transform - uid: 5207 components: - - pos: -24.5,24.5 + - type: Transform + pos: -24.5,24.5 parent: 31 - type: Transform - uid: 5208 components: - - pos: -22.5,20.5 + - type: Transform + pos: -22.5,20.5 parent: 31 - type: Transform - uid: 5243 components: - - pos: -21.5,24.5 + - type: Transform + pos: -21.5,24.5 parent: 31 - type: Transform - uid: 5248 components: - - pos: 7.5,13.5 + - type: Transform + pos: 7.5,13.5 parent: 31 - type: Transform - uid: 5258 components: - - pos: 8.5,-30.5 + - type: Transform + pos: 8.5,-30.5 parent: 31 - type: Transform - uid: 5285 components: - - pos: 14.5,-29.5 + - type: Transform + pos: 14.5,-29.5 parent: 31 - type: Transform - uid: 5286 components: - - pos: 15.5,-29.5 + - type: Transform + pos: 15.5,-29.5 parent: 31 - type: Transform - uid: 5287 components: - - pos: 16.5,-29.5 + - type: Transform + pos: 16.5,-29.5 parent: 31 - type: Transform - uid: 5288 components: - - pos: 16.5,-28.5 + - type: Transform + pos: 16.5,-28.5 parent: 31 - type: Transform - uid: 5289 components: - - pos: 16.5,-27.5 + - type: Transform + pos: 16.5,-27.5 parent: 31 - type: Transform - uid: 5290 components: - - pos: 15.5,-27.5 + - type: Transform + pos: 15.5,-27.5 parent: 31 - type: Transform - uid: 5293 components: - - pos: -12.5,-29.5 + - type: Transform + pos: -12.5,-29.5 parent: 31 - type: Transform - uid: 5302 components: - - pos: 15.5,-30.5 + - type: Transform + pos: 15.5,-30.5 parent: 31 - type: Transform - uid: 5303 components: - - pos: 15.5,-31.5 + - type: Transform + pos: 15.5,-31.5 parent: 31 - type: Transform - uid: 5304 components: - - pos: 16.5,-31.5 + - type: Transform + pos: 16.5,-31.5 parent: 31 - type: Transform - uid: 5317 components: - - pos: 24.5,-23.5 + - type: Transform + pos: 24.5,-23.5 parent: 31 - type: Transform - uid: 5345 components: - - pos: -7.5,-38.5 + - type: Transform + pos: -7.5,-38.5 parent: 31 - type: Transform - uid: 5349 components: - - pos: -17.5,-35.5 + - type: Transform + pos: -17.5,-35.5 parent: 31 - type: Transform - uid: 5707 components: - - pos: -18.5,-35.5 + - type: Transform + pos: -18.5,-35.5 parent: 31 - type: Transform - uid: 5711 components: - - pos: -9.5,-38.5 + - type: Transform + pos: -9.5,-38.5 parent: 31 - type: Transform - uid: 5746 components: - - pos: -14.5,-25.5 + - type: Transform + pos: -14.5,-25.5 parent: 31 - type: Transform - uid: 5764 components: - - pos: -15.5,-26.5 + - type: Transform + pos: -15.5,-26.5 parent: 31 - type: Transform - uid: 5773 components: - - pos: -39.5,-11.5 + - type: Transform + pos: -39.5,-11.5 parent: 31 - type: Transform - uid: 5938 components: - - pos: 46.5,24.5 + - type: Transform + pos: 46.5,24.5 parent: 31 - type: Transform - uid: 5976 components: - - pos: -22.5,-9.5 + - type: Transform + pos: -22.5,-9.5 parent: 31 - type: Transform - uid: 5977 components: - - pos: -40.5,-11.5 + - type: Transform + pos: -40.5,-11.5 parent: 31 - type: Transform - uid: 5979 components: - - pos: -37.5,-11.5 + - type: Transform + pos: -37.5,-11.5 parent: 31 - type: Transform - uid: 5993 components: - - pos: -11.5,-18.5 + - type: Transform + pos: -11.5,-18.5 parent: 31 - type: Transform - uid: 6115 components: - - pos: -21.5,-12.5 + - type: Transform + pos: -21.5,-12.5 parent: 31 - type: Transform - uid: 6116 components: - - pos: -26.5,-14.5 + - type: Transform + pos: -26.5,-14.5 parent: 31 - type: Transform - uid: 6127 components: - - pos: -11.5,-38.5 + - type: Transform + pos: -11.5,-38.5 parent: 31 - type: Transform - uid: 6129 components: - - pos: -8.5,-29.5 + - type: Transform + pos: -8.5,-29.5 parent: 31 - type: Transform - uid: 6130 components: - - pos: 1.5,-30.5 + - type: Transform + pos: 1.5,-30.5 parent: 31 - type: Transform - uid: 6316 components: - - pos: -14.5,-23.5 + - type: Transform + pos: -14.5,-23.5 parent: 31 - type: Transform - uid: 6322 components: - - pos: -15.5,-24.5 + - type: Transform + pos: -15.5,-24.5 parent: 31 - type: Transform - uid: 6323 components: - - pos: -16.5,-22.5 + - type: Transform + pos: -16.5,-22.5 parent: 31 - type: Transform - uid: 6324 components: - - pos: -15.5,-21.5 + - type: Transform + pos: -15.5,-21.5 parent: 31 - type: Transform - uid: 6331 components: - - pos: 47.5,15.5 + - type: Transform + pos: 47.5,15.5 parent: 31 - type: Transform - uid: 6333 components: - - pos: 45.5,15.5 + - type: Transform + pos: 45.5,15.5 parent: 31 - type: Transform - uid: 6336 components: - - pos: 44.5,15.5 + - type: Transform + pos: 44.5,15.5 parent: 31 - type: Transform - uid: 6337 components: - - pos: 44.5,14.5 + - type: Transform + pos: 44.5,14.5 parent: 31 - type: Transform - uid: 6338 components: - - pos: 42.5,11.5 + - type: Transform + pos: 42.5,11.5 parent: 31 - type: Transform - uid: 6339 components: - - pos: 44.5,11.5 + - type: Transform + pos: 44.5,11.5 parent: 31 - type: Transform - uid: 6340 components: - - pos: 48.5,15.5 + - type: Transform + pos: 48.5,15.5 parent: 31 - type: Transform - uid: 6342 components: - - pos: 48.5,16.5 + - type: Transform + pos: 48.5,16.5 parent: 31 - type: Transform - uid: 6343 components: - - pos: 48.5,18.5 + - type: Transform + pos: 48.5,18.5 parent: 31 - type: Transform - uid: 6344 components: - - pos: 49.5,15.5 + - type: Transform + pos: 49.5,15.5 parent: 31 - type: Transform - uid: 6345 components: - - pos: 47.5,11.5 + - type: Transform + pos: 47.5,11.5 parent: 31 - type: Transform - uid: 6346 components: - - pos: 37.5,10.5 + - type: Transform + pos: 37.5,10.5 parent: 31 - type: Transform - uid: 6347 components: - - pos: 44.5,18.5 + - type: Transform + pos: 44.5,18.5 parent: 31 - type: Transform - uid: 6350 components: - - pos: 45.5,18.5 + - type: Transform + pos: 45.5,18.5 parent: 31 - type: Transform - uid: 6355 components: - - pos: 40.5,9.5 + - type: Transform + pos: 40.5,9.5 parent: 31 - type: Transform - uid: 6358 components: - - pos: 38.5,8.5 + - type: Transform + pos: 38.5,8.5 parent: 31 - type: Transform - uid: 6359 components: - - pos: 43.5,6.5 + - type: Transform + pos: 43.5,6.5 parent: 31 - type: Transform - uid: 6374 components: - - pos: 35.5,10.5 + - type: Transform + pos: 35.5,10.5 parent: 31 - type: Transform - uid: 6375 components: - - pos: 35.5,8.5 + - type: Transform + pos: 35.5,8.5 parent: 31 - type: Transform - uid: 6376 components: - - pos: 32.5,8.5 + - type: Transform + pos: 32.5,8.5 parent: 31 - type: Transform - uid: 6377 components: - - pos: 49.5,0.5 + - type: Transform + pos: 49.5,0.5 parent: 31 - type: Transform - uid: 6378 components: - - pos: 47.5,9.5 + - type: Transform + pos: 47.5,9.5 parent: 31 - type: Transform - uid: 6379 components: - - pos: 49.5,1.5 + - type: Transform + pos: 49.5,1.5 parent: 31 - type: Transform - uid: 6386 components: - - pos: 44.5,12.5 + - type: Transform + pos: 44.5,12.5 parent: 31 - type: Transform - uid: 6396 components: - - pos: 49.5,2.5 + - type: Transform + pos: 49.5,2.5 parent: 31 - type: Transform - uid: 6397 components: - - pos: 48.5,2.5 + - type: Transform + pos: 48.5,2.5 parent: 31 - type: Transform - uid: 6398 components: - - pos: 46.5,18.5 + - type: Transform + pos: 46.5,18.5 parent: 31 - type: Transform - uid: 6399 components: - - pos: 34.5,8.5 + - type: Transform + pos: 34.5,8.5 parent: 31 - type: Transform - uid: 6400 components: - - pos: 33.5,8.5 + - type: Transform + pos: 33.5,8.5 parent: 31 - type: Transform - uid: 6402 components: - - pos: 49.5,12.5 + - type: Transform + pos: 49.5,12.5 parent: 31 - type: Transform - uid: 6403 components: - - pos: 24.5,16.5 + - type: Transform + pos: 24.5,16.5 parent: 31 - type: Transform - uid: 6404 components: - - pos: 25.5,16.5 + - type: Transform + pos: 25.5,16.5 parent: 31 - type: Transform - uid: 6408 components: - - pos: 49.5,10.5 + - type: Transform + pos: 49.5,10.5 parent: 31 - type: Transform - uid: 6418 components: - - pos: 41.5,18.5 + - type: Transform + pos: 41.5,18.5 parent: 31 - type: Transform - uid: 6419 components: - - pos: 40.5,18.5 + - type: Transform + pos: 40.5,18.5 parent: 31 - type: Transform - uid: 6420 components: - - pos: 31.5,8.5 + - type: Transform + pos: 31.5,8.5 parent: 31 - type: Transform - uid: 6421 components: - - pos: 37.5,18.5 + - type: Transform + pos: 37.5,18.5 parent: 31 - type: Transform - uid: 6423 components: - - pos: 35.5,11.5 + - type: Transform + pos: 35.5,11.5 parent: 31 - type: Transform - uid: 6424 components: - - pos: 35.5,12.5 + - type: Transform + pos: 35.5,12.5 parent: 31 - type: Transform - uid: 6426 components: - - pos: 31.5,17.5 + - type: Transform + pos: 31.5,17.5 parent: 31 - type: Transform - uid: 6428 components: - - pos: 35.5,13.5 + - type: Transform + pos: 35.5,13.5 parent: 31 - type: Transform - uid: 6429 components: - - pos: 31.5,14.5 + - type: Transform + pos: 31.5,14.5 parent: 31 - type: Transform - uid: 6430 components: - - pos: 35.5,14.5 + - type: Transform + pos: 35.5,14.5 parent: 31 - type: Transform - uid: 6431 components: - - pos: 34.5,14.5 + - type: Transform + pos: 34.5,14.5 parent: 31 - type: Transform - uid: 6433 components: - - pos: 35.5,9.5 + - type: Transform + pos: 35.5,9.5 parent: 31 - type: Transform - uid: 6434 components: - - pos: 36.5,10.5 + - type: Transform + pos: 36.5,10.5 parent: 31 - type: Transform - uid: 6437 components: - - pos: 49.5,9.5 + - type: Transform + pos: 49.5,9.5 parent: 31 - type: Transform - uid: 6442 components: - - pos: 49.5,13.5 + - type: Transform + pos: 49.5,13.5 parent: 31 - type: Transform - uid: 6443 components: - - pos: 49.5,11.5 + - type: Transform + pos: 49.5,11.5 parent: 31 - type: Transform - uid: 6457 components: - - pos: 44.5,9.5 + - type: Transform + pos: 44.5,9.5 parent: 31 - type: Transform - uid: 6459 components: - - pos: 43.5,9.5 + - type: Transform + pos: 43.5,9.5 parent: 31 - type: Transform - uid: 6466 components: - - pos: 40.5,11.5 + - type: Transform + pos: 40.5,11.5 parent: 31 - type: Transform - uid: 6473 components: - - pos: 38.5,11.5 + - type: Transform + pos: 38.5,11.5 parent: 31 - type: Transform - uid: 6477 components: - - pos: -25.5,-14.5 + - type: Transform + pos: -25.5,-14.5 parent: 31 - type: Transform - uid: 6501 components: - - pos: 52.5,16.5 + - type: Transform + pos: 52.5,16.5 parent: 31 - type: Transform - uid: 6507 components: - - pos: 49.5,8.5 + - type: Transform + pos: 49.5,8.5 parent: 31 - type: Transform - uid: 6510 components: - - pos: 37.5,11.5 + - type: Transform + pos: 37.5,11.5 parent: 31 - type: Transform - uid: 6513 components: - - pos: 42.5,18.5 + - type: Transform + pos: 42.5,18.5 parent: 31 - type: Transform - uid: 6515 components: - - pos: 43.5,18.5 + - type: Transform + pos: 43.5,18.5 parent: 31 - type: Transform - uid: 6516 components: - - pos: 39.5,18.5 + - type: Transform + pos: 39.5,18.5 parent: 31 - type: Transform - uid: 6517 components: - - pos: 38.5,18.5 + - type: Transform + pos: 38.5,18.5 parent: 31 - type: Transform - uid: 6518 components: - - pos: 36.5,18.5 + - type: Transform + pos: 36.5,18.5 parent: 31 - type: Transform - uid: 6519 components: - - pos: 35.5,18.5 + - type: Transform + pos: 35.5,18.5 parent: 31 - type: Transform - uid: 6520 components: - - pos: 34.5,18.5 + - type: Transform + pos: 34.5,18.5 parent: 31 - type: Transform - uid: 6521 components: - - pos: 33.5,18.5 + - type: Transform + pos: 33.5,18.5 parent: 31 - type: Transform - uid: 6525 components: - - pos: 30.5,14.5 + - type: Transform + pos: 30.5,14.5 parent: 31 - type: Transform - uid: 6526 components: - - pos: 32.5,14.5 + - type: Transform + pos: 32.5,14.5 parent: 31 - type: Transform - uid: 6529 components: - - pos: 33.5,14.5 + - type: Transform + pos: 33.5,14.5 parent: 31 - type: Transform - uid: 6543 components: - - pos: 39.5,9.5 + - type: Transform + pos: 39.5,9.5 parent: 31 - type: Transform - uid: 6544 components: - - pos: 46.5,8.5 + - type: Transform + pos: 46.5,8.5 parent: 31 - type: Transform - uid: 6546 components: - - pos: 45.5,8.5 + - type: Transform + pos: 45.5,8.5 parent: 31 - type: Transform - uid: 6547 components: - - pos: 47.5,8.5 + - type: Transform + pos: 47.5,8.5 parent: 31 - type: Transform - uid: 6550 components: - - pos: 46.5,15.5 + - type: Transform + pos: 46.5,15.5 parent: 31 - type: Transform - uid: 6560 components: - - pos: 47.5,18.5 + - type: Transform + pos: 47.5,18.5 parent: 31 - type: Transform - uid: 6561 components: - - pos: 48.5,17.5 + - type: Transform + pos: 48.5,17.5 parent: 31 - type: Transform - uid: 6574 components: - - pos: 50.5,18.5 + - type: Transform + pos: 50.5,18.5 parent: 31 - type: Transform - uid: 6596 components: - - pos: 44.5,6.5 + - type: Transform + pos: 44.5,6.5 parent: 31 - type: Transform - uid: 6597 components: - - pos: 44.5,7.5 + - type: Transform + pos: 44.5,7.5 parent: 31 - type: Transform - uid: 6598 components: - - pos: 44.5,8.5 + - type: Transform + pos: 44.5,8.5 parent: 31 - type: Transform - uid: 6605 components: - - pos: 47.5,12.5 + - type: Transform + pos: 47.5,12.5 parent: 31 - type: Transform - uid: 6606 components: - - pos: 47.5,13.5 + - type: Transform + pos: 47.5,13.5 parent: 31 - type: Transform - uid: 6611 components: - - pos: 26.5,16.5 + - type: Transform + pos: 26.5,16.5 parent: 31 - type: Transform - uid: 6620 components: - - pos: 42.5,6.5 + - type: Transform + pos: 42.5,6.5 parent: 31 - type: Transform - uid: 6621 components: - - pos: 41.5,11.5 + - type: Transform + pos: 41.5,11.5 parent: 31 - type: Transform - uid: 6623 components: - - pos: 44.5,2.5 + - type: Transform + pos: 44.5,2.5 parent: 31 - type: Transform - uid: 6624 components: - - pos: 42.5,9.5 + - type: Transform + pos: 42.5,9.5 parent: 31 - type: Transform - uid: 6625 components: - - pos: 38.5,9.5 + - type: Transform + pos: 38.5,9.5 parent: 31 - type: Transform - uid: 6630 components: - - pos: 50.5,2.5 + - type: Transform + pos: 50.5,2.5 parent: 31 - type: Transform - uid: 6631 components: - - pos: 52.5,2.5 + - type: Transform + pos: 52.5,2.5 parent: 31 - type: Transform - uid: 6685 components: - - pos: 7.5,12.5 + - type: Transform + pos: 7.5,12.5 parent: 31 - type: Transform - uid: 6686 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 31 - type: Transform - uid: 6722 components: - - pos: 41.5,9.5 + - type: Transform + pos: 41.5,9.5 parent: 31 - type: Transform - uid: 6723 components: - - pos: 44.5,13.5 + - type: Transform + pos: 44.5,13.5 parent: 31 - type: Transform - uid: 6724 components: - - pos: 39.5,11.5 + - type: Transform + pos: 39.5,11.5 parent: 31 - type: Transform - uid: 6816 components: - - pos: 43.5,10.5 + - type: Transform + pos: 43.5,10.5 parent: 31 - type: Transform - uid: 6825 components: - - pos: 50.5,15.5 + - type: Transform + pos: 50.5,15.5 parent: 31 - type: Transform - uid: 6829 components: - - pos: 41.5,6.5 + - type: Transform + pos: 41.5,6.5 parent: 31 - type: Transform - uid: 6831 components: - - pos: 45.5,2.5 + - type: Transform + pos: 45.5,2.5 parent: 31 - type: Transform - uid: 6832 components: - - pos: 46.5,2.5 + - type: Transform + pos: 46.5,2.5 parent: 31 - type: Transform - uid: 6843 components: - - pos: 53.5,2.5 + - type: Transform + pos: 53.5,2.5 parent: 31 - type: Transform - uid: 6844 components: - - pos: 47.5,10.5 + - type: Transform + pos: 47.5,10.5 parent: 31 - type: Transform - uid: 6848 components: - - pos: 51.5,2.5 + - type: Transform + pos: 51.5,2.5 parent: 31 - type: Transform - uid: 6880 components: - - pos: 31.5,11.5 + - type: Transform + pos: 31.5,11.5 parent: 31 - type: Transform - uid: 6887 components: - - pos: 48.5,13.5 + - type: Transform + pos: 48.5,13.5 parent: 31 - type: Transform - uid: 6891 components: - - pos: -16.5,-23.5 + - type: Transform + pos: -16.5,-23.5 parent: 31 - type: Transform - uid: 6960 components: - - pos: -9.5,-37.5 + - type: Transform + pos: -9.5,-37.5 parent: 31 - type: Transform - uid: 6981 components: - - pos: 41.5,-24.5 + - type: Transform + pos: 41.5,-24.5 parent: 31 - type: Transform - uid: 6982 components: - - pos: 40.5,-24.5 + - type: Transform + pos: 40.5,-24.5 parent: 31 - type: Transform - uid: 7010 components: - - pos: 45.5,-24.5 + - type: Transform + pos: 45.5,-24.5 parent: 31 - type: Transform - uid: 7026 components: - - pos: 37.5,-10.5 + - type: Transform + pos: 37.5,-10.5 parent: 31 - type: Transform - uid: 7030 components: - - pos: 31.5,-9.5 + - type: Transform + pos: 31.5,-9.5 parent: 31 - type: Transform - uid: 7031 components: - - pos: 36.5,-13.5 + - type: Transform + pos: 36.5,-13.5 parent: 31 - type: Transform - uid: 7032 components: - - pos: 36.5,-10.5 + - type: Transform + pos: 36.5,-10.5 parent: 31 - type: Transform - uid: 7033 components: - - pos: 36.5,-9.5 + - type: Transform + pos: 36.5,-9.5 parent: 31 - type: Transform - uid: 7054 components: - - pos: 33.5,-21.5 + - type: Transform + pos: 33.5,-21.5 parent: 31 - type: Transform - uid: 7064 components: - - pos: 29.5,-10.5 + - type: Transform + pos: 29.5,-10.5 parent: 31 - type: Transform - uid: 7066 components: - - pos: 35.5,-9.5 + - type: Transform + pos: 35.5,-9.5 parent: 31 - type: Transform - uid: 7144 components: - - pos: 8.5,26.5 + - type: Transform + pos: 8.5,26.5 parent: 31 - type: Transform - uid: 7148 components: - - pos: -32.5,1.5 + - type: Transform + pos: -32.5,1.5 parent: 31 - type: Transform - uid: 7243 components: - - pos: 23.5,-12.5 + - type: Transform + pos: 23.5,-12.5 parent: 31 - type: Transform - uid: 7251 components: - - pos: -18.5,9.5 + - type: Transform + pos: -18.5,9.5 parent: 31 - type: Transform - uid: 7258 components: - - pos: 23.5,-9.5 + - type: Transform + pos: 23.5,-9.5 parent: 31 - type: Transform - uid: 7284 components: - - pos: 23.5,-10.5 + - type: Transform + pos: 23.5,-10.5 parent: 31 - type: Transform - uid: 7338 components: - - pos: -18.5,-12.5 + - type: Transform + pos: -18.5,-12.5 parent: 31 - type: Transform - uid: 7359 components: - - pos: -19.5,-12.5 + - type: Transform + pos: -19.5,-12.5 parent: 31 - type: Transform - uid: 7383 components: - - pos: -24.5,-14.5 + - type: Transform + pos: -24.5,-14.5 parent: 31 - type: Transform - uid: 7386 components: - - pos: -7.5,-31.5 + - type: Transform + pos: -7.5,-31.5 parent: 31 - type: Transform - uid: 7387 components: - - pos: -1.5,-30.5 + - type: Transform + pos: -1.5,-30.5 parent: 31 - type: Transform - uid: 7388 components: - - pos: 0.5,-26.5 + - type: Transform + pos: 0.5,-26.5 parent: 31 - type: Transform - uid: 7389 components: - - pos: -11.5,-15.5 + - type: Transform + pos: -11.5,-15.5 parent: 31 - type: Transform - uid: 7390 components: - - pos: -12.5,-19.5 + - type: Transform + pos: -12.5,-19.5 parent: 31 - type: Transform - uid: 7391 components: - - pos: -8.5,-20.5 + - type: Transform + pos: -8.5,-20.5 parent: 31 - type: Transform - uid: 7392 components: - - pos: -10.5,-21.5 + - type: Transform + pos: -10.5,-21.5 parent: 31 - type: Transform - uid: 7393 components: - - pos: -10.5,-20.5 + - type: Transform + pos: -10.5,-20.5 parent: 31 - type: Transform - uid: 7394 components: - - pos: 8.5,-31.5 + - type: Transform + pos: 8.5,-31.5 parent: 31 - type: Transform - uid: 7395 components: - - pos: 8.5,-34.5 + - type: Transform + pos: 8.5,-34.5 parent: 31 - type: Transform - uid: 7396 components: - - pos: -10.5,-29.5 + - type: Transform + pos: -10.5,-29.5 parent: 31 - type: Transform - uid: 7397 components: - - pos: -8.5,-27.5 + - type: Transform + pos: -8.5,-27.5 parent: 31 - type: Transform - uid: 7398 components: - - pos: -10.5,-35.5 + - type: Transform + pos: -10.5,-35.5 parent: 31 - type: Transform - uid: 7399 components: - - pos: -11.5,-35.5 + - type: Transform + pos: -11.5,-35.5 parent: 31 - type: Transform - uid: 7400 components: - - pos: -12.5,-35.5 + - type: Transform + pos: -12.5,-35.5 parent: 31 - type: Transform - uid: 7401 components: - - pos: -9.5,-33.5 + - type: Transform + pos: -9.5,-33.5 parent: 31 - type: Transform - uid: 7402 components: - - pos: -9.5,-35.5 + - type: Transform + pos: -9.5,-35.5 parent: 31 - type: Transform - uid: 7403 components: - - pos: -16.5,-35.5 + - type: Transform + pos: -16.5,-35.5 parent: 31 - type: Transform - uid: 7408 components: - - pos: -10.5,-19.5 + - type: Transform + pos: -10.5,-19.5 parent: 31 - type: Transform - uid: 7411 components: - - pos: -11.5,-19.5 + - type: Transform + pos: -11.5,-19.5 parent: 31 - type: Transform - uid: 7418 components: - - pos: 8.5,-37.5 + - type: Transform + pos: 8.5,-37.5 parent: 31 - type: Transform - uid: 7423 components: - - pos: -20.5,16.5 + - type: Transform + pos: -20.5,16.5 parent: 31 - type: Transform - uid: 7424 components: - - pos: -15.5,-25.5 + - type: Transform + pos: -15.5,-25.5 parent: 31 - type: Transform - uid: 7428 components: - - pos: -19.5,16.5 + - type: Transform + pos: -19.5,16.5 parent: 31 - type: Transform - uid: 7439 components: - - pos: -8.5,-22.5 + - type: Transform + pos: -8.5,-22.5 parent: 31 - type: Transform - uid: 7440 components: - - pos: -6.5,-38.5 + - type: Transform + pos: -6.5,-38.5 parent: 31 - type: Transform - uid: 7466 components: - - pos: -22.5,-13.5 + - type: Transform + pos: -22.5,-13.5 parent: 31 - type: Transform - uid: 7474 components: - - pos: 3.5,-29.5 + - type: Transform + pos: 3.5,-29.5 parent: 31 - type: Transform - uid: 7637 components: - - pos: -37.5,-9.5 + - type: Transform + pos: -37.5,-9.5 parent: 31 - type: Transform - uid: 7639 components: - - pos: -38.5,-9.5 + - type: Transform + pos: -38.5,-9.5 parent: 31 - type: Transform - uid: 7648 components: - - pos: -25.5,-6.5 + - type: Transform + pos: -25.5,-6.5 parent: 31 - type: Transform - uid: 7649 components: - - pos: -25.5,-5.5 + - type: Transform + pos: -25.5,-5.5 parent: 31 - type: Transform - uid: 7650 components: - - pos: -25.5,-4.5 + - type: Transform + pos: -25.5,-4.5 parent: 31 - type: Transform - uid: 7671 components: - - pos: -14.5,14.5 + - type: Transform + pos: -14.5,14.5 parent: 31 - type: Transform - uid: 7680 components: - - pos: -1.5,-15.5 + - type: Transform + pos: -1.5,-15.5 parent: 31 - type: Transform - uid: 7695 components: - - pos: 49.5,18.5 + - type: Transform + pos: 49.5,18.5 parent: 31 - type: Transform - uid: 7714 components: - - pos: -36.5,11.5 + - type: Transform + pos: -36.5,11.5 parent: 31 - type: Transform - uid: 7715 components: - - pos: -36.5,12.5 + - type: Transform + pos: -36.5,12.5 parent: 31 - type: Transform - uid: 7716 components: - - pos: -36.5,13.5 + - type: Transform + pos: -36.5,13.5 parent: 31 - type: Transform - uid: 7717 components: - - pos: -36.5,14.5 + - type: Transform + pos: -36.5,14.5 parent: 31 - type: Transform - uid: 7718 components: - - pos: -37.5,14.5 + - type: Transform + pos: -37.5,14.5 parent: 31 - type: Transform - uid: 7719 components: - - pos: -38.5,14.5 + - type: Transform + pos: -38.5,14.5 parent: 31 - type: Transform - uid: 7720 components: - - pos: -38.5,15.5 + - type: Transform + pos: -38.5,15.5 parent: 31 - type: Transform - uid: 7721 components: - - pos: -38.5,16.5 + - type: Transform + pos: -38.5,16.5 parent: 31 - type: Transform - uid: 7722 components: - - pos: -38.5,17.5 + - type: Transform + pos: -38.5,17.5 parent: 31 - type: Transform - uid: 7753 components: - - pos: -16.5,4.5 + - type: Transform + pos: -16.5,4.5 parent: 31 - type: Transform - uid: 7754 components: - - pos: -15.5,4.5 + - type: Transform + pos: -15.5,4.5 parent: 31 - type: Transform - uid: 7755 components: - - pos: -14.5,4.5 + - type: Transform + pos: -14.5,4.5 parent: 31 - type: Transform - uid: 7756 components: - - pos: -13.5,4.5 + - type: Transform + pos: -13.5,4.5 parent: 31 - type: Transform - uid: 7757 components: - - pos: -12.5,4.5 + - type: Transform + pos: -12.5,4.5 parent: 31 - type: Transform - uid: 7758 components: - - pos: -11.5,4.5 + - type: Transform + pos: -11.5,4.5 parent: 31 - type: Transform - uid: 7759 components: - - pos: -10.5,4.5 + - type: Transform + pos: -10.5,4.5 parent: 31 - type: Transform - uid: 7760 components: - - pos: -9.5,4.5 + - type: Transform + pos: -9.5,4.5 parent: 31 - type: Transform - uid: 7761 components: - - pos: -8.5,4.5 + - type: Transform + pos: -8.5,4.5 parent: 31 - type: Transform - uid: 7762 components: - - pos: -17.5,4.5 + - type: Transform + pos: -17.5,4.5 parent: 31 - type: Transform - uid: 7763 components: - - pos: -18.5,4.5 + - type: Transform + pos: -18.5,4.5 parent: 31 - type: Transform - uid: 7764 components: - - pos: -19.5,4.5 + - type: Transform + pos: -19.5,4.5 parent: 31 - type: Transform - uid: 7765 components: - - pos: -20.5,4.5 + - type: Transform + pos: -20.5,4.5 parent: 31 - type: Transform - uid: 7766 components: - - pos: -21.5,4.5 + - type: Transform + pos: -21.5,4.5 parent: 31 - type: Transform - uid: 7767 components: - - pos: -22.5,4.5 + - type: Transform + pos: -22.5,4.5 parent: 31 - type: Transform - uid: 7768 components: - - pos: -25.5,4.5 + - type: Transform + pos: -25.5,4.5 parent: 31 - type: Transform - uid: 7769 components: - - pos: -27.5,4.5 + - type: Transform + pos: -27.5,4.5 parent: 31 - type: Transform - uid: 7770 components: - - pos: -28.5,4.5 + - type: Transform + pos: -28.5,4.5 parent: 31 - type: Transform - uid: 7771 components: - - pos: -29.5,4.5 + - type: Transform + pos: -29.5,4.5 parent: 31 - type: Transform - uid: 7772 components: - - pos: -24.5,3.5 + - type: Transform + pos: -24.5,3.5 parent: 31 - type: Transform - uid: 7773 components: - - pos: -24.5,2.5 + - type: Transform + pos: -24.5,2.5 parent: 31 - type: Transform - uid: 7833 components: - - pos: -24.5,13.5 + - type: Transform + pos: -24.5,13.5 parent: 31 - type: Transform - uid: 7845 components: - - pos: -17.5,-12.5 + - type: Transform + pos: -17.5,-12.5 parent: 31 - type: Transform - uid: 7861 components: - - pos: -5.5,25.5 + - type: Transform + pos: -5.5,25.5 parent: 31 - type: Transform - uid: 7862 components: - - pos: -6.5,25.5 + - type: Transform + pos: -6.5,25.5 parent: 31 - type: Transform - uid: 7863 components: - - pos: -7.5,25.5 + - type: Transform + pos: -7.5,25.5 parent: 31 - type: Transform - uid: 7897 components: - - pos: -0.5,-24.5 + - type: Transform + pos: -0.5,-24.5 parent: 31 - type: Transform - uid: 7906 components: - - pos: -17.5,9.5 + - type: Transform + pos: -17.5,9.5 parent: 31 - type: Transform - uid: 7925 components: - - pos: 53.5,16.5 + - type: Transform + pos: 53.5,16.5 parent: 31 - type: Transform - uid: 8040 components: - - pos: -38.5,-8.5 + - type: Transform + pos: -38.5,-8.5 parent: 31 - type: Transform - uid: 8053 components: - - pos: -42.5,2.5 + - type: Transform + pos: -42.5,2.5 parent: 31 - type: Transform - uid: 8054 components: - - pos: -38.5,2.5 + - type: Transform + pos: -38.5,2.5 parent: 31 - type: Transform - uid: 8055 components: - - pos: -39.5,2.5 + - type: Transform + pos: -39.5,2.5 parent: 31 - type: Transform - uid: 8059 components: - - pos: 33.5,24.5 + - type: Transform + pos: 33.5,24.5 parent: 31 - type: Transform - uid: 8060 components: - - pos: 34.5,24.5 + - type: Transform + pos: 34.5,24.5 parent: 31 - type: Transform - uid: 8061 components: - - pos: 35.5,24.5 + - type: Transform + pos: 35.5,24.5 parent: 31 - type: Transform - uid: 8062 components: - - pos: 36.5,24.5 + - type: Transform + pos: 36.5,24.5 parent: 31 - type: Transform - uid: 8063 components: - - pos: 37.5,24.5 + - type: Transform + pos: 37.5,24.5 parent: 31 - type: Transform - uid: 8064 components: - - pos: 38.5,24.5 + - type: Transform + pos: 38.5,24.5 parent: 31 - type: Transform - uid: 8065 components: - - pos: 39.5,24.5 + - type: Transform + pos: 39.5,24.5 parent: 31 - type: Transform - uid: 8066 components: - - pos: 40.5,24.5 + - type: Transform + pos: 40.5,24.5 parent: 31 - type: Transform - uid: 8067 components: - - pos: 41.5,24.5 + - type: Transform + pos: 41.5,24.5 parent: 31 - type: Transform - uid: 8068 components: - - pos: 42.5,24.5 + - type: Transform + pos: 42.5,24.5 parent: 31 - type: Transform - uid: 8069 components: - - pos: 43.5,24.5 + - type: Transform + pos: 43.5,24.5 parent: 31 - type: Transform - uid: 8070 components: - - pos: 45.5,24.5 + - type: Transform + pos: 45.5,24.5 parent: 31 - type: Transform - uid: 8073 components: - - pos: 43.5,24.5 + - type: Transform + pos: 43.5,24.5 parent: 31 - type: Transform - uid: 8087 components: - - pos: -35.5,14.5 + - type: Transform + pos: -35.5,14.5 parent: 31 - type: Transform - uid: 8088 components: - - pos: -34.5,14.5 + - type: Transform + pos: -34.5,14.5 parent: 31 - type: Transform - uid: 8147 components: - - pos: 49.5,-1.5 + - type: Transform + pos: 49.5,-1.5 parent: 31 - type: Transform - uid: 8152 components: - - pos: 54.5,2.5 + - type: Transform + pos: 54.5,2.5 parent: 31 - type: Transform - uid: 8153 components: - - pos: 55.5,2.5 + - type: Transform + pos: 55.5,2.5 parent: 31 - type: Transform - uid: 8154 components: - - pos: 55.5,1.5 + - type: Transform + pos: 55.5,1.5 parent: 31 - type: Transform - uid: 8155 components: - - pos: 55.5,0.5 + - type: Transform + pos: 55.5,0.5 parent: 31 - type: Transform - uid: 8156 components: - - pos: 56.5,0.5 + - type: Transform + pos: 56.5,0.5 parent: 31 - type: Transform - uid: 8157 components: - - pos: 57.5,0.5 + - type: Transform + pos: 57.5,0.5 parent: 31 - type: Transform - uid: 8158 components: - - pos: 58.5,0.5 + - type: Transform + pos: 58.5,0.5 parent: 31 - type: Transform - uid: 8159 components: - - pos: 59.5,0.5 + - type: Transform + pos: 59.5,0.5 parent: 31 - type: Transform - uid: 8160 components: - - pos: 60.5,0.5 + - type: Transform + pos: 60.5,0.5 parent: 31 - type: Transform - uid: 8165 components: - - pos: 53.5,3.5 + - type: Transform + pos: 53.5,3.5 parent: 31 - type: Transform - uid: 8166 components: - - pos: 53.5,4.5 + - type: Transform + pos: 53.5,4.5 parent: 31 - type: Transform - uid: 8167 components: - - pos: 53.5,5.5 + - type: Transform + pos: 53.5,5.5 parent: 31 - type: Transform - uid: 8168 components: - - pos: 53.5,6.5 + - type: Transform + pos: 53.5,6.5 parent: 31 - type: Transform - uid: 8169 components: - - pos: 53.5,7.5 + - type: Transform + pos: 53.5,7.5 parent: 31 - type: Transform - uid: 8170 components: - - pos: 55.5,3.5 + - type: Transform + pos: 55.5,3.5 parent: 31 - type: Transform - uid: 8173 components: - - pos: 55.5,6.5 + - type: Transform + pos: 55.5,6.5 parent: 31 - type: Transform - uid: 8174 components: - - pos: 56.5,6.5 + - type: Transform + pos: 56.5,6.5 parent: 31 - type: Transform - uid: 8175 components: - - pos: 57.5,6.5 + - type: Transform + pos: 57.5,6.5 parent: 31 - type: Transform - uid: 8176 components: - - pos: 58.5,6.5 + - type: Transform + pos: 58.5,6.5 parent: 31 - type: Transform - uid: 8177 components: - - pos: 59.5,6.5 + - type: Transform + pos: 59.5,6.5 parent: 31 - type: Transform - uid: 8178 components: - - pos: 60.5,6.5 + - type: Transform + pos: 60.5,6.5 parent: 31 - type: Transform - uid: 8179 components: - - pos: 60.5,7.5 + - type: Transform + pos: 60.5,7.5 parent: 31 - type: Transform - uid: 8180 components: - - pos: 56.5,4.5 + - type: Transform + pos: 56.5,4.5 parent: 31 - type: Transform - uid: 8181 components: - - pos: 57.5,4.5 + - type: Transform + pos: 57.5,4.5 parent: 31 - type: Transform - uid: 8182 components: - - pos: 58.5,4.5 + - type: Transform + pos: 58.5,4.5 parent: 31 - type: Transform - uid: 8183 components: - - pos: 59.5,4.5 + - type: Transform + pos: 59.5,4.5 parent: 31 - type: Transform - uid: 8184 components: - - pos: 60.5,4.5 + - type: Transform + pos: 60.5,4.5 parent: 31 - type: Transform - uid: 8226 components: - - pos: 53.5,-24.5 + - type: Transform + pos: 53.5,-24.5 parent: 31 - type: Transform - uid: 8227 components: - - pos: 54.5,-24.5 + - type: Transform + pos: 54.5,-24.5 parent: 31 - type: Transform - uid: 8228 components: - - pos: 54.5,-23.5 + - type: Transform + pos: 54.5,-23.5 parent: 31 - type: Transform - uid: 8229 components: - - pos: 54.5,-22.5 + - type: Transform + pos: 54.5,-22.5 parent: 31 - type: Transform - uid: 8230 components: - - pos: 54.5,-25.5 + - type: Transform + pos: 54.5,-25.5 parent: 31 - type: Transform - uid: 8231 components: - - pos: 54.5,-26.5 + - type: Transform + pos: 54.5,-26.5 parent: 31 - type: Transform - uid: 8233 components: - - pos: 49.5,-28.5 + - type: Transform + pos: 49.5,-28.5 parent: 31 - type: Transform - uid: 8234 components: - - pos: 49.5,-29.5 + - type: Transform + pos: 49.5,-29.5 parent: 31 - type: Transform - uid: 8235 components: - - pos: 48.5,-29.5 + - type: Transform + pos: 48.5,-29.5 parent: 31 - type: Transform - uid: 8236 components: - - pos: 47.5,-29.5 + - type: Transform + pos: 47.5,-29.5 parent: 31 - type: Transform - uid: 8237 components: - - pos: 50.5,-29.5 + - type: Transform + pos: 50.5,-29.5 parent: 31 - type: Transform - uid: 8238 components: - - pos: 51.5,-29.5 + - type: Transform + pos: 51.5,-29.5 parent: 31 - type: Transform - uid: 8240 components: - - pos: 49.5,-20.5 + - type: Transform + pos: 49.5,-20.5 parent: 31 - type: Transform - uid: 8241 components: - - pos: 49.5,-19.5 + - type: Transform + pos: 49.5,-19.5 parent: 31 - type: Transform - uid: 8242 components: - - pos: 48.5,-19.5 + - type: Transform + pos: 48.5,-19.5 parent: 31 - type: Transform - uid: 8243 components: - - pos: 47.5,-19.5 + - type: Transform + pos: 47.5,-19.5 parent: 31 - type: Transform - uid: 8244 components: - - pos: 50.5,-19.5 + - type: Transform + pos: 50.5,-19.5 parent: 31 - type: Transform - uid: 8245 components: - - pos: 51.5,-19.5 + - type: Transform + pos: 51.5,-19.5 parent: 31 - type: Transform - uid: 8246 components: - - pos: 44.5,-25.5 + - type: Transform + pos: 44.5,-25.5 parent: 31 - type: Transform - uid: 8247 components: - - pos: 44.5,-26.5 + - type: Transform + pos: 44.5,-26.5 parent: 31 - type: Transform - uid: 8248 components: - - pos: 44.5,-23.5 + - type: Transform + pos: 44.5,-23.5 parent: 31 - type: Transform - uid: 8249 components: - - pos: 44.5,-22.5 + - type: Transform + pos: 44.5,-22.5 parent: 31 - type: Transform - uid: 8250 components: - - pos: 45.5,-22.5 + - type: Transform + pos: 45.5,-22.5 parent: 31 - type: Transform - uid: 8251 components: - - pos: 45.5,-21.5 + - type: Transform + pos: 45.5,-21.5 parent: 31 - type: Transform - uid: 8252 components: - - pos: 47.5,-20.5 + - type: Transform + pos: 47.5,-20.5 parent: 31 - type: Transform - uid: 8253 components: - - pos: 46.5,-20.5 + - type: Transform + pos: 46.5,-20.5 parent: 31 - type: Transform - uid: 8254 components: - - pos: 51.5,-20.5 + - type: Transform + pos: 51.5,-20.5 parent: 31 - type: Transform - uid: 8255 components: - - pos: 52.5,-20.5 + - type: Transform + pos: 52.5,-20.5 parent: 31 - type: Transform - uid: 8256 components: - - pos: 53.5,-22.5 + - type: Transform + pos: 53.5,-22.5 parent: 31 - type: Transform - uid: 8257 components: - - pos: 53.5,-21.5 + - type: Transform + pos: 53.5,-21.5 parent: 31 - type: Transform - uid: 8258 components: - - pos: 53.5,-26.5 + - type: Transform + pos: 53.5,-26.5 parent: 31 - type: Transform - uid: 8259 components: - - pos: 53.5,-27.5 + - type: Transform + pos: 53.5,-27.5 parent: 31 - type: Transform - uid: 8260 components: - - pos: 51.5,-28.5 + - type: Transform + pos: 51.5,-28.5 parent: 31 - type: Transform - uid: 8261 components: - - pos: 52.5,-28.5 + - type: Transform + pos: 52.5,-28.5 parent: 31 - type: Transform - uid: 8262 components: - - pos: 47.5,-28.5 + - type: Transform + pos: 47.5,-28.5 parent: 31 - type: Transform - uid: 8263 components: - - pos: 46.5,-28.5 + - type: Transform + pos: 46.5,-28.5 parent: 31 - type: Transform - uid: 8264 components: - - pos: 45.5,-26.5 + - type: Transform + pos: 45.5,-26.5 parent: 31 - type: Transform - uid: 8265 components: - - pos: 45.5,-27.5 + - type: Transform + pos: 45.5,-27.5 parent: 31 - type: Transform - uid: 8282 components: - - pos: 38.5,-13.5 + - type: Transform + pos: 38.5,-13.5 parent: 31 - type: Transform - uid: 8295 components: - - pos: -2.5,-26.5 + - type: Transform + pos: -2.5,-26.5 parent: 31 - type: Transform - uid: 8297 components: - - pos: -40.5,-9.5 + - type: Transform + pos: -40.5,-9.5 parent: 31 - type: Transform - uid: 8298 components: - - pos: -39.5,-9.5 + - type: Transform + pos: -39.5,-9.5 parent: 31 - type: Transform - uid: 8348 components: - - pos: 33.5,19.5 + - type: Transform + pos: 33.5,19.5 parent: 31 - type: Transform - uid: 8359 components: - - pos: 33.5,23.5 + - type: Transform + pos: 33.5,23.5 parent: 31 - type: Transform - uid: 8360 components: - - pos: 33.5,20.5 + - type: Transform + pos: 33.5,20.5 parent: 31 - type: Transform - uid: 8361 components: - - pos: 33.5,21.5 + - type: Transform + pos: 33.5,21.5 parent: 31 - type: Transform - uid: 8403 components: - - pos: 33.5,-20.5 + - type: Transform + pos: 33.5,-20.5 parent: 31 - type: Transform - uid: 8404 components: - - pos: 33.5,-19.5 + - type: Transform + pos: 33.5,-19.5 parent: 31 - type: Transform - uid: 8405 components: - - pos: 33.5,-18.5 + - type: Transform + pos: 33.5,-18.5 parent: 31 - type: Transform - uid: 8406 components: - - pos: -23.5,4.5 + - type: Transform + pos: -23.5,4.5 parent: 31 - type: Transform - uid: 8407 components: - - pos: -29.5,5.5 + - type: Transform + pos: -29.5,5.5 parent: 31 - type: Transform - uid: 8450 components: - - pos: -20.5,-22.5 + - type: Transform + pos: -20.5,-22.5 parent: 31 - type: Transform - uid: 8483 components: - - pos: -21.5,-22.5 + - type: Transform + pos: -21.5,-22.5 parent: 31 - type: Transform - uid: 8497 components: - - pos: -19.5,-18.5 + - type: Transform + pos: -19.5,-18.5 parent: 31 - type: Transform - uid: 8498 components: - - pos: -19.5,-19.5 + - type: Transform + pos: -19.5,-19.5 parent: 31 - type: Transform - uid: 8499 components: - - pos: -19.5,-20.5 + - type: Transform + pos: -19.5,-20.5 parent: 31 - type: Transform - uid: 8500 components: - - pos: -19.5,-21.5 + - type: Transform + pos: -19.5,-21.5 parent: 31 - type: Transform - uid: 8501 components: - - pos: -19.5,-22.5 + - type: Transform + pos: -19.5,-22.5 parent: 31 - type: Transform - uid: 8502 components: - - pos: -19.5,-23.5 + - type: Transform + pos: -19.5,-23.5 parent: 31 - type: Transform - uid: 8503 components: - - pos: -19.5,-24.5 + - type: Transform + pos: -19.5,-24.5 parent: 31 - type: Transform - uid: 8504 components: - - pos: -19.5,-25.5 + - type: Transform + pos: -19.5,-25.5 parent: 31 - type: Transform - uid: 8505 components: - - pos: -19.5,-26.5 + - type: Transform + pos: -19.5,-26.5 parent: 31 - type: Transform - uid: 8506 components: - - pos: -19.5,-27.5 + - type: Transform + pos: -19.5,-27.5 parent: 31 - type: Transform - uid: 8507 components: - - pos: -19.5,-28.5 + - type: Transform + pos: -19.5,-28.5 parent: 31 - type: Transform - uid: 8508 components: - - pos: -19.5,-29.5 + - type: Transform + pos: -19.5,-29.5 parent: 31 - type: Transform - uid: 8509 components: - - pos: -19.5,-30.5 + - type: Transform + pos: -19.5,-30.5 parent: 31 - type: Transform - uid: 8510 components: - - pos: -20.5,-26.5 + - type: Transform + pos: -20.5,-26.5 parent: 31 - type: Transform - uid: 8511 components: - - pos: -21.5,-26.5 + - type: Transform + pos: -21.5,-26.5 parent: 31 - type: Transform - uid: 8512 components: - - pos: -22.5,-26.5 + - type: Transform + pos: -22.5,-26.5 parent: 31 - type: Transform - uid: 8513 components: - - pos: -23.5,-26.5 + - type: Transform + pos: -23.5,-26.5 parent: 31 - type: Transform - uid: 8514 components: - - pos: -24.5,-26.5 + - type: Transform + pos: -24.5,-26.5 parent: 31 - type: Transform - uid: 8677 components: - - pos: -32.5,-25.5 + - type: Transform + pos: -32.5,-25.5 parent: 31 - type: Transform - uid: 8678 components: - - pos: -32.5,-26.5 + - type: Transform + pos: -32.5,-26.5 parent: 31 - type: Transform - uid: 8679 components: - - pos: -31.5,-26.5 + - type: Transform + pos: -31.5,-26.5 parent: 31 - type: Transform - uid: 8680 components: - - pos: -30.5,-26.5 + - type: Transform + pos: -30.5,-26.5 parent: 31 - type: Transform - uid: 8681 components: - - pos: -29.5,-26.5 + - type: Transform + pos: -29.5,-26.5 parent: 31 - type: Transform - uid: 8682 components: - - pos: -33.5,-26.5 + - type: Transform + pos: -33.5,-26.5 parent: 31 - type: Transform - uid: 8683 components: - - pos: -34.5,-26.5 + - type: Transform + pos: -34.5,-26.5 parent: 31 - type: Transform - uid: 8684 components: - - pos: -35.5,-26.5 + - type: Transform + pos: -35.5,-26.5 parent: 31 - type: Transform - uid: 8685 components: - - pos: -35.5,-25.5 + - type: Transform + pos: -35.5,-25.5 parent: 31 - type: Transform - uid: 8686 components: - - pos: -35.5,-24.5 + - type: Transform + pos: -35.5,-24.5 parent: 31 - type: Transform - uid: 8687 components: - - pos: -35.5,-23.5 + - type: Transform + pos: -35.5,-23.5 parent: 31 - type: Transform - uid: 8688 components: - - pos: -35.5,-27.5 + - type: Transform + pos: -35.5,-27.5 parent: 31 - type: Transform - uid: 8689 components: - - pos: -35.5,-28.5 + - type: Transform + pos: -35.5,-28.5 parent: 31 - type: Transform - uid: 8690 components: - - pos: -35.5,-29.5 + - type: Transform + pos: -35.5,-29.5 parent: 31 - type: Transform - uid: 8691 components: - - pos: -33.5,-27.5 + - type: Transform + pos: -33.5,-27.5 parent: 31 - type: Transform - uid: 8692 components: - - pos: -33.5,-28.5 + - type: Transform + pos: -33.5,-28.5 parent: 31 - type: Transform - uid: 8693 components: - - pos: -33.5,-29.5 + - type: Transform + pos: -33.5,-29.5 parent: 31 - type: Transform - uid: 8694 components: - - pos: -33.5,-30.5 + - type: Transform + pos: -33.5,-30.5 parent: 31 - type: Transform - uid: 8696 components: - - pos: -33.5,-31.5 + - type: Transform + pos: -33.5,-31.5 parent: 31 - type: Transform - uid: 8697 components: - - pos: -33.5,-32.5 + - type: Transform + pos: -33.5,-32.5 parent: 31 - type: Transform - uid: 8698 components: - - pos: -32.5,-32.5 + - type: Transform + pos: -32.5,-32.5 parent: 31 - type: Transform - uid: 8699 components: - - pos: -31.5,-32.5 + - type: Transform + pos: -31.5,-32.5 parent: 31 - type: Transform - uid: 8700 components: - - pos: -30.5,-32.5 + - type: Transform + pos: -30.5,-32.5 parent: 31 - type: Transform - uid: 8757 components: - - pos: -20.5,12.5 + - type: Transform + pos: -20.5,12.5 parent: 31 - type: Transform - uid: 8761 components: - - pos: -14.5,10.5 + - type: Transform + pos: -14.5,10.5 parent: 31 - type: Transform - uid: 8762 components: - - pos: -15.5,10.5 + - type: Transform + pos: -15.5,10.5 parent: 31 - type: Transform - uid: 8763 components: - - pos: -16.5,10.5 + - type: Transform + pos: -16.5,10.5 parent: 31 - type: Transform - uid: 8764 components: - - pos: -16.5,9.5 + - type: Transform + pos: -16.5,9.5 parent: 31 - type: Transform - uid: 8765 components: - - pos: -16.5,8.5 + - type: Transform + pos: -16.5,8.5 parent: 31 - type: Transform - uid: 8821 components: - - pos: 3.5,25.5 + - type: Transform + pos: 3.5,25.5 parent: 31 - type: Transform - uid: 8822 components: - - pos: 3.5,24.5 + - type: Transform + pos: 3.5,24.5 parent: 31 - type: Transform - uid: 8823 components: - - pos: 4.5,25.5 + - type: Transform + pos: 4.5,25.5 parent: 31 - type: Transform - uid: 8824 components: - - pos: 5.5,25.5 + - type: Transform + pos: 5.5,25.5 parent: 31 - type: Transform - uid: 8825 components: - - pos: 2.5,25.5 + - type: Transform + pos: 2.5,25.5 parent: 31 - type: Transform - uid: 8826 components: - - pos: 2.5,28.5 + - type: Transform + pos: 2.5,28.5 parent: 31 - type: Transform - uid: 8827 components: - - pos: 1.5,28.5 + - type: Transform + pos: 1.5,28.5 parent: 31 - type: Transform - uid: 8828 components: - - pos: 0.5,28.5 + - type: Transform + pos: 0.5,28.5 parent: 31 - type: Transform - uid: 8829 components: - - pos: 4.5,28.5 + - type: Transform + pos: 4.5,28.5 parent: 31 - type: Transform - uid: 8830 components: - - pos: 5.5,28.5 + - type: Transform + pos: 5.5,28.5 parent: 31 - type: Transform - uid: 8831 components: - - pos: 6.5,28.5 + - type: Transform + pos: 6.5,28.5 parent: 31 - type: Transform - uid: 8882 components: - - pos: -13.5,6.5 + - type: Transform + pos: -13.5,6.5 parent: 31 - type: Transform - uid: 8957 components: - - pos: 1.5,-10.5 + - type: Transform + pos: 1.5,-10.5 parent: 31 - type: Transform - uid: 8958 components: - - pos: 2.5,-10.5 + - type: Transform + pos: 2.5,-10.5 parent: 31 - type: Transform - uid: 8959 components: - - pos: 3.5,-10.5 + - type: Transform + pos: 3.5,-10.5 parent: 31 - type: Transform - uid: 8960 components: - - pos: 3.5,-11.5 + - type: Transform + pos: 3.5,-11.5 parent: 31 - type: Transform - uid: 8961 components: - - pos: 3.5,-12.5 + - type: Transform + pos: 3.5,-12.5 parent: 31 - type: Transform - uid: 8962 components: - - pos: 3.5,-13.5 + - type: Transform + pos: 3.5,-13.5 parent: 31 - type: Transform - uid: 8963 components: - - pos: 3.5,-14.5 + - type: Transform + pos: 3.5,-14.5 parent: 31 - type: Transform - uid: 8964 components: - - pos: 3.5,-15.5 + - type: Transform + pos: 3.5,-15.5 parent: 31 - type: Transform - uid: 8965 components: - - pos: 3.5,-16.5 + - type: Transform + pos: 3.5,-16.5 parent: 31 - type: Transform - uid: 8966 components: - - pos: 3.5,-17.5 + - type: Transform + pos: 3.5,-17.5 parent: 31 - type: Transform - uid: 8967 components: - - pos: 3.5,-18.5 + - type: Transform + pos: 3.5,-18.5 parent: 31 - type: Transform - uid: 8968 components: - - pos: 3.5,-19.5 + - type: Transform + pos: 3.5,-19.5 parent: 31 - type: Transform - uid: 8969 components: - - pos: 9.5,-19.5 + - type: Transform + pos: 9.5,-19.5 parent: 31 - type: Transform - uid: 8970 components: - - pos: 8.5,-19.5 + - type: Transform + pos: 8.5,-19.5 parent: 31 - type: Transform - uid: 8971 components: - - pos: 3.5,-9.5 + - type: Transform + pos: 3.5,-9.5 parent: 31 - type: Transform - uid: 8972 components: - - pos: 3.5,-8.5 + - type: Transform + pos: 3.5,-8.5 parent: 31 - type: Transform - uid: 8973 components: - - pos: 3.5,-7.5 + - type: Transform + pos: 3.5,-7.5 parent: 31 - type: Transform - uid: 8974 components: - - pos: 3.5,-6.5 + - type: Transform + pos: 3.5,-6.5 parent: 31 - type: Transform - uid: 8975 components: - - pos: 3.5,-5.5 + - type: Transform + pos: 3.5,-5.5 parent: 31 - type: Transform - uid: 8976 components: - - pos: 3.5,-4.5 + - type: Transform + pos: 3.5,-4.5 parent: 31 - type: Transform - uid: 8977 components: - - pos: 3.5,-3.5 + - type: Transform + pos: 3.5,-3.5 parent: 31 - type: Transform - uid: 8978 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 31 - type: Transform - uid: 8979 components: - - pos: 3.5,16.5 + - type: Transform + pos: 3.5,16.5 parent: 31 - type: Transform - uid: 8980 components: - - pos: 3.5,15.5 + - type: Transform + pos: 3.5,15.5 parent: 31 - type: Transform - uid: 8981 components: - - pos: 3.5,14.5 + - type: Transform + pos: 3.5,14.5 parent: 31 - type: Transform - uid: 8982 components: - - pos: 3.5,13.5 + - type: Transform + pos: 3.5,13.5 parent: 31 - type: Transform - uid: 8983 components: - - pos: 3.5,12.5 + - type: Transform + pos: 3.5,12.5 parent: 31 - type: Transform - uid: 8984 components: - - pos: 3.5,11.5 + - type: Transform + pos: 3.5,11.5 parent: 31 - type: Transform - uid: 8985 components: - - pos: 3.5,10.5 + - type: Transform + pos: 3.5,10.5 parent: 31 - type: Transform - uid: 8986 components: - - pos: 3.5,9.5 + - type: Transform + pos: 3.5,9.5 parent: 31 - type: Transform - uid: 8987 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 31 - type: Transform - uid: 9033 components: - - pos: -22.5,-10.5 + - type: Transform + pos: -22.5,-10.5 parent: 31 - type: Transform - uid: 9133 components: - - pos: -12.5,-27.5 + - type: Transform + pos: -12.5,-27.5 parent: 31 - type: Transform - uid: 9142 components: - - pos: 21.5,-10.5 + - type: Transform + pos: 21.5,-10.5 parent: 31 - type: Transform - uid: 9156 components: - - pos: 23.5,-11.5 + - type: Transform + pos: 23.5,-11.5 parent: 31 - type: Transform - uid: 9167 components: - - pos: -43.5,8.5 + - type: Transform + pos: -43.5,8.5 parent: 31 - type: Transform - uid: 9210 components: - - pos: -36.5,-7.5 + - type: Transform + pos: -36.5,-7.5 parent: 31 - type: Transform - uid: 9211 components: - - pos: -36.5,-8.5 + - type: Transform + pos: -36.5,-8.5 parent: 31 - type: Transform - uid: 9212 components: - - pos: -36.5,-9.5 + - type: Transform + pos: -36.5,-9.5 parent: 31 - type: Transform - uid: 9213 components: - - pos: -36.5,-10.5 + - type: Transform + pos: -36.5,-10.5 parent: 31 - type: Transform - uid: 9214 components: - - pos: -36.5,-11.5 + - type: Transform + pos: -36.5,-11.5 parent: 31 - type: Transform - uid: 9215 components: - - pos: -37.5,-4.5 + - type: Transform + pos: -37.5,-4.5 parent: 31 - type: Transform - uid: 9216 components: - - pos: -37.5,6.5 + - type: Transform + pos: -37.5,6.5 parent: 31 - type: Transform - uid: 9217 components: - - pos: -38.5,6.5 + - type: Transform + pos: -38.5,6.5 parent: 31 - type: Transform - uid: 9218 components: - - pos: -39.5,6.5 + - type: Transform + pos: -39.5,6.5 parent: 31 - type: Transform - uid: 9262 components: - - pos: -2.5,-21.5 + - type: Transform + pos: -2.5,-21.5 parent: 31 - type: Transform - uid: 9269 components: - - pos: -23.5,-18.5 + - type: Transform + pos: -23.5,-18.5 parent: 31 - type: Transform - uid: 9270 components: - - pos: -23.5,-19.5 + - type: Transform + pos: -23.5,-19.5 parent: 31 - type: Transform - uid: 9271 components: - - pos: -24.5,-18.5 + - type: Transform + pos: -24.5,-18.5 parent: 31 - type: Transform - uid: 9272 components: - - pos: -25.5,-18.5 + - type: Transform + pos: -25.5,-18.5 parent: 31 - type: Transform - uid: 9273 components: - - pos: -26.5,-18.5 + - type: Transform + pos: -26.5,-18.5 parent: 31 - type: Transform - uid: 9367 components: - - pos: 26.5,20.5 + - type: Transform + pos: 26.5,20.5 parent: 31 - type: Transform - uid: 9411 components: - - pos: -19.5,-31.5 + - type: Transform + pos: -19.5,-31.5 parent: 31 - type: Transform - uid: 9412 components: - - pos: -18.5,-31.5 + - type: Transform + pos: -18.5,-31.5 parent: 31 - type: Transform - uid: 9439 components: - - pos: -19.5,-32.5 + - type: Transform + pos: -19.5,-32.5 parent: 31 - type: Transform - uid: 9440 components: - - pos: -20.5,-32.5 + - type: Transform + pos: -20.5,-32.5 parent: 31 - type: Transform - uid: 9441 components: - - pos: -21.5,-32.5 + - type: Transform + pos: -21.5,-32.5 parent: 31 - type: Transform - uid: 9442 components: - - pos: -22.5,-32.5 + - type: Transform + pos: -22.5,-32.5 parent: 31 - type: Transform - uid: 9443 components: - - pos: -23.5,-32.5 + - type: Transform + pos: -23.5,-32.5 parent: 31 - type: Transform - uid: 9504 components: - - pos: -3.5,-21.5 + - type: Transform + pos: -3.5,-21.5 parent: 31 - type: Transform - uid: 9575 components: - - pos: 31.5,12.5 + - type: Transform + pos: 31.5,12.5 parent: 31 - type: Transform - uid: 9583 components: - - pos: 24.5,20.5 + - type: Transform + pos: 24.5,20.5 parent: 31 - type: Transform - uid: 9629 components: - - pos: -41.5,-9.5 + - type: Transform + pos: -41.5,-9.5 parent: 31 - type: Transform - uid: 9630 components: - - pos: -42.5,-9.5 + - type: Transform + pos: -42.5,-9.5 parent: 31 - type: Transform - uid: 9631 components: - - pos: -41.5,-11.5 + - type: Transform + pos: -41.5,-11.5 parent: 31 - type: Transform - uid: 9632 components: - - pos: -42.5,-11.5 + - type: Transform + pos: -42.5,-11.5 parent: 31 - type: Transform - uid: 9727 components: - - pos: -21.5,16.5 + - type: Transform + pos: -21.5,16.5 parent: 31 - type: Transform - uid: 9828 components: - - pos: 30.5,-17.5 + - type: Transform + pos: 30.5,-17.5 parent: 31 - type: Transform - uid: 9829 components: - - pos: 31.5,-17.5 + - type: Transform + pos: 31.5,-17.5 parent: 31 - type: Transform - uid: 9830 components: - - pos: 32.5,-17.5 + - type: Transform + pos: 32.5,-17.5 parent: 31 - type: Transform - uid: 9831 components: - - pos: 33.5,-17.5 + - type: Transform + pos: 33.5,-17.5 parent: 31 - type: Transform - uid: 9927 components: - - pos: 27.5,17.5 + - type: Transform + pos: 27.5,17.5 parent: 31 - type: Transform - uid: 9928 components: - - pos: 27.5,18.5 + - type: Transform + pos: 27.5,18.5 parent: 31 - type: Transform - uid: 9929 components: - - pos: 27.5,19.5 + - type: Transform + pos: 27.5,19.5 parent: 31 - type: Transform - uid: 9930 components: - - pos: 27.5,20.5 + - type: Transform + pos: 27.5,20.5 parent: 31 - type: Transform - uid: 9931 components: - - pos: 27.5,21.5 + - type: Transform + pos: 27.5,21.5 parent: 31 - type: Transform - uid: 9935 components: - - pos: 33.5,22.5 + - type: Transform + pos: 33.5,22.5 parent: 31 - type: Transform - uid: 9937 components: - - pos: 33.5,27.5 + - type: Transform + pos: 33.5,27.5 parent: 31 - type: Transform - uid: 9938 components: - - pos: 34.5,28.5 + - type: Transform + pos: 34.5,28.5 parent: 31 - type: Transform - uid: 9939 components: - - pos: 34.5,27.5 + - type: Transform + pos: 34.5,27.5 parent: 31 - type: Transform - uid: 9945 components: - - pos: 34.5,29.5 + - type: Transform + pos: 34.5,29.5 parent: 31 - type: Transform - uid: 9947 components: - - pos: 25.5,20.5 + - type: Transform + pos: 25.5,20.5 parent: 31 - type: Transform - uid: 9955 components: - - pos: 34.5,37.5 + - type: Transform + pos: 34.5,37.5 parent: 31 - type: Transform - uid: 9956 components: - - pos: 34.5,36.5 + - type: Transform + pos: 34.5,36.5 parent: 31 - type: Transform - uid: 10055 components: - - pos: 21.5,23.5 + - type: Transform + pos: 21.5,23.5 parent: 31 - type: Transform - uid: 10056 components: - - pos: 21.5,24.5 + - type: Transform + pos: 21.5,24.5 parent: 31 - type: Transform - uid: 10057 components: - - pos: 21.5,25.5 + - type: Transform + pos: 21.5,25.5 parent: 31 - type: Transform - uid: 10058 components: - - pos: 21.5,26.5 + - type: Transform + pos: 21.5,26.5 parent: 31 - type: Transform - uid: 10059 components: - - pos: 20.5,26.5 + - type: Transform + pos: 20.5,26.5 parent: 31 - type: Transform - uid: 10060 components: - - pos: 22.5,26.5 + - type: Transform + pos: 22.5,26.5 parent: 31 - type: Transform - uid: 10100 components: - - pos: 31.5,27.5 + - type: Transform + pos: 31.5,27.5 parent: 31 - type: Transform - uid: 10101 components: - - pos: 32.5,27.5 + - type: Transform + pos: 32.5,27.5 parent: 31 - type: Transform - uid: 10102 components: - - pos: 34.5,30.5 + - type: Transform + pos: 34.5,30.5 parent: 31 - type: Transform - uid: 10103 components: - - pos: 34.5,31.5 + - type: Transform + pos: 34.5,31.5 parent: 31 - type: Transform - uid: 10104 components: - - pos: 34.5,32.5 + - type: Transform + pos: 34.5,32.5 parent: 31 - type: Transform - uid: 10105 components: - - pos: 34.5,33.5 + - type: Transform + pos: 34.5,33.5 parent: 31 - type: Transform - uid: 10106 components: - - pos: 34.5,34.5 + - type: Transform + pos: 34.5,34.5 parent: 31 - type: Transform - uid: 10107 components: - - pos: 34.5,35.5 + - type: Transform + pos: 34.5,35.5 parent: 31 - type: Transform - uid: 10222 components: - - pos: -38.5,18.5 + - type: Transform + pos: -38.5,18.5 parent: 31 - type: Transform - uid: 10299 components: - - pos: -34.5,9.5 + - type: Transform + pos: -34.5,9.5 parent: 31 - type: Transform - uid: 10329 components: - - pos: 8.5,-41.5 + - type: Transform + pos: 8.5,-41.5 parent: 31 - type: Transform - uid: 10330 components: - - pos: 7.5,-41.5 + - type: Transform + pos: 7.5,-41.5 parent: 31 - type: Transform - uid: 10331 components: - - pos: 7.5,-38.5 + - type: Transform + pos: 7.5,-38.5 parent: 31 - type: Transform - uid: 10332 components: - - pos: 6.5,-38.5 + - type: Transform + pos: 6.5,-38.5 parent: 31 - type: Transform - uid: 10333 components: - - pos: 5.5,-38.5 + - type: Transform + pos: 5.5,-38.5 parent: 31 - type: Transform - uid: 10334 components: - - pos: 4.5,-38.5 + - type: Transform + pos: 4.5,-38.5 parent: 31 - type: Transform - uid: 10335 components: - - pos: 3.5,-38.5 + - type: Transform + pos: 3.5,-38.5 parent: 31 - type: Transform - uid: 10336 components: - - pos: 2.5,-38.5 + - type: Transform + pos: 2.5,-38.5 parent: 31 - type: Transform - uid: 10337 components: - - pos: 1.5,-38.5 + - type: Transform + pos: 1.5,-38.5 parent: 31 - type: Transform - uid: 10338 components: - - pos: 0.5,-38.5 + - type: Transform + pos: 0.5,-38.5 parent: 31 - type: Transform - uid: 10339 components: - - pos: -0.5,-38.5 + - type: Transform + pos: -0.5,-38.5 parent: 31 - type: Transform - uid: 10340 components: - - pos: -1.5,-38.5 + - type: Transform + pos: -1.5,-38.5 parent: 31 - type: Transform - uid: 10341 components: - - pos: -2.5,-38.5 + - type: Transform + pos: -2.5,-38.5 parent: 31 - type: Transform - uid: 10342 components: - - pos: 0.5,-39.5 + - type: Transform + pos: 0.5,-39.5 parent: 31 - type: Transform - uid: 10343 components: - - pos: 0.5,-40.5 + - type: Transform + pos: 0.5,-40.5 parent: 31 - type: Transform - uid: 10344 components: - - pos: 0.5,-41.5 + - type: Transform + pos: 0.5,-41.5 parent: 31 - type: Transform - uid: 10345 components: - - pos: 0.5,-42.5 + - type: Transform + pos: 0.5,-42.5 parent: 31 - type: Transform - uid: 10346 components: - - pos: 0.5,-43.5 + - type: Transform + pos: 0.5,-43.5 parent: 31 - type: Transform - uid: 10347 components: - - pos: -0.5,-43.5 + - type: Transform + pos: -0.5,-43.5 parent: 31 - type: Transform - uid: 10348 components: - - pos: -1.5,-43.5 + - type: Transform + pos: -1.5,-43.5 parent: 31 - type: Transform - uid: 10349 components: - - pos: -2.5,-43.5 + - type: Transform + pos: -2.5,-43.5 parent: 31 - type: Transform - uid: 10350 components: - - pos: -2.5,-42.5 + - type: Transform + pos: -2.5,-42.5 parent: 31 - type: Transform - uid: 10351 components: - - pos: -3.5,-38.5 + - type: Transform + pos: -3.5,-38.5 parent: 31 - type: Transform - uid: 10496 components: - - pos: -31.5,-13.5 + - type: Transform + pos: -31.5,-13.5 parent: 31 - type: Transform - uid: 10497 components: - - pos: -31.5,-14.5 + - type: Transform + pos: -31.5,-14.5 parent: 31 - type: Transform - uid: 10501 components: - - pos: -30.5,-14.5 + - type: Transform + pos: -30.5,-14.5 parent: 31 - type: Transform - uid: 10502 components: - - pos: -30.5,-15.5 + - type: Transform + pos: -30.5,-15.5 parent: 31 - type: Transform - uid: 10556 components: - - pos: 22.5,-10.5 + - type: Transform + pos: 22.5,-10.5 parent: 31 - type: Transform - uid: 10562 components: - - pos: -30.5,-16.5 + - type: Transform + pos: -30.5,-16.5 parent: 31 - type: Transform - uid: 10563 components: - - pos: -30.5,-17.5 + - type: Transform + pos: -30.5,-17.5 parent: 31 - type: Transform - uid: 10564 components: - - pos: -30.5,-18.5 + - type: Transform + pos: -30.5,-18.5 parent: 31 - type: Transform - uid: 10565 components: - - pos: -30.5,-19.5 + - type: Transform + pos: -30.5,-19.5 parent: 31 - type: Transform - uid: 10566 components: - - pos: -31.5,-16.5 + - type: Transform + pos: -31.5,-16.5 parent: 31 - type: Transform - uid: 10567 components: - - pos: -32.5,-16.5 + - type: Transform + pos: -32.5,-16.5 parent: 31 - type: Transform - uid: 10568 components: - - pos: -33.5,-16.5 + - type: Transform + pos: -33.5,-16.5 parent: 31 - type: Transform - uid: 10569 components: - - pos: -34.5,-16.5 + - type: Transform + pos: -34.5,-16.5 parent: 31 - type: Transform - uid: 10570 components: - - pos: -35.5,-16.5 + - type: Transform + pos: -35.5,-16.5 parent: 31 - type: Transform - uid: 10571 components: - - pos: -31.5,-11.5 + - type: Transform + pos: -31.5,-11.5 parent: 31 - type: Transform - uid: 10572 components: - - pos: -32.5,-11.5 + - type: Transform + pos: -32.5,-11.5 parent: 31 - type: Transform - uid: 10573 components: - - pos: -33.5,-11.5 + - type: Transform + pos: -33.5,-11.5 parent: 31 - type: Transform - uid: 10574 components: - - pos: -30.5,-11.5 + - type: Transform + pos: -30.5,-11.5 parent: 31 - type: Transform - uid: 10575 components: - - pos: -29.5,-11.5 + - type: Transform + pos: -29.5,-11.5 parent: 31 - type: Transform - uid: 10576 components: - - pos: -28.5,-11.5 + - type: Transform + pos: -28.5,-11.5 parent: 31 - type: Transform - uid: 10577 components: - - pos: -27.5,-11.5 + - type: Transform + pos: -27.5,-11.5 parent: 31 - type: Transform - uid: 10578 components: - - pos: -26.5,-11.5 + - type: Transform + pos: -26.5,-11.5 parent: 31 - type: Transform - uid: 10579 components: - - pos: -29.5,-18.5 + - type: Transform + pos: -29.5,-18.5 parent: 31 - type: Transform - uid: 10580 components: - - pos: -28.5,-18.5 + - type: Transform + pos: -28.5,-18.5 parent: 31 - type: Transform - uid: 10608 components: - - pos: 51.5,-2.5 + - type: Transform + pos: 51.5,-2.5 parent: 31 - type: Transform - uid: 10615 components: - - pos: 55.5,-3.5 + - type: Transform + pos: 55.5,-3.5 parent: 31 - type: Transform - uid: 10659 components: - - pos: 56.5,-3.5 + - type: Transform + pos: 56.5,-3.5 parent: 31 - type: Transform - uid: 10664 components: - - pos: 39.5,-12.5 + - type: Transform + pos: 39.5,-12.5 parent: 31 - type: Transform - uid: 10665 components: - - pos: 40.5,-12.5 + - type: Transform + pos: 40.5,-12.5 parent: 31 - type: Transform - uid: 10666 components: - - pos: 41.5,-12.5 + - type: Transform + pos: 41.5,-12.5 parent: 31 - type: Transform - uid: 10667 components: - - pos: 42.5,-12.5 + - type: Transform + pos: 42.5,-12.5 parent: 31 - type: Transform - uid: 10668 components: - - pos: 43.5,-12.5 + - type: Transform + pos: 43.5,-12.5 parent: 31 - type: Transform - uid: 10669 components: - - pos: 44.5,-12.5 + - type: Transform + pos: 44.5,-12.5 parent: 31 - type: Transform - uid: 10670 components: - - pos: 45.5,-12.5 + - type: Transform + pos: 45.5,-12.5 parent: 31 - type: Transform - uid: 10671 components: - - pos: 56.5,-4.5 + - type: Transform + pos: 56.5,-4.5 parent: 31 - type: Transform - uid: 10672 components: - - pos: 57.5,-4.5 + - type: Transform + pos: 57.5,-4.5 parent: 31 - type: Transform - uid: 10673 components: - - pos: 43.5,-4.5 + - type: Transform + pos: 43.5,-4.5 parent: 31 - type: Transform - uid: 10674 components: - - pos: 44.5,-4.5 + - type: Transform + pos: 44.5,-4.5 parent: 31 - type: Transform - uid: 10675 components: - - pos: 45.5,-4.5 + - type: Transform + pos: 45.5,-4.5 parent: 31 - type: Transform - uid: 10676 components: - - pos: 45.5,-5.5 + - type: Transform + pos: 45.5,-5.5 parent: 31 - type: Transform - uid: 10677 components: - - pos: 45.5,-6.5 + - type: Transform + pos: 45.5,-6.5 parent: 31 - type: Transform - uid: 10678 components: - - pos: 45.5,-7.5 + - type: Transform + pos: 45.5,-7.5 parent: 31 - type: Transform - uid: 10679 components: - - pos: 45.5,-8.5 + - type: Transform + pos: 45.5,-8.5 parent: 31 - type: Transform - uid: 10680 components: - - pos: 45.5,-9.5 + - type: Transform + pos: 45.5,-9.5 parent: 31 - type: Transform - uid: 10681 components: - - pos: 58.5,-4.5 + - type: Transform + pos: 58.5,-4.5 parent: 31 - type: Transform - uid: 10682 components: - - pos: 43.5,-6.5 + - type: Transform + pos: 43.5,-6.5 parent: 31 - type: Transform - uid: 10683 components: - - pos: 42.5,-6.5 + - type: Transform + pos: 42.5,-6.5 parent: 31 - type: Transform - uid: 10684 components: - - pos: 41.5,-6.5 + - type: Transform + pos: 41.5,-6.5 parent: 31 - type: Transform - uid: 10685 components: - - pos: 41.5,-7.5 + - type: Transform + pos: 41.5,-7.5 parent: 31 - type: Transform - uid: 10686 components: - - pos: 41.5,-8.5 + - type: Transform + pos: 41.5,-8.5 parent: 31 - type: Transform - uid: 10687 components: - - pos: 41.5,-9.5 + - type: Transform + pos: 41.5,-9.5 parent: 31 - type: Transform - uid: 10688 components: - - pos: 42.5,-9.5 + - type: Transform + pos: 42.5,-9.5 parent: 31 - type: Transform - uid: 10739 components: - - pos: -13.5,9.5 + - type: Transform + pos: -13.5,9.5 parent: 31 - type: Transform - uid: 10740 components: - - pos: -11.5,7.5 + - type: Transform + pos: -11.5,7.5 parent: 31 - type: Transform - uid: 10741 components: - - pos: -9.5,7.5 + - type: Transform + pos: -9.5,7.5 parent: 31 - type: Transform - uid: 10742 components: - - pos: -7.5,9.5 + - type: Transform + pos: -7.5,9.5 parent: 31 - type: Transform - uid: 10743 components: - - pos: -8.5,6.5 + - type: Transform + pos: -8.5,6.5 parent: 31 - type: Transform - uid: 10744 components: - - pos: -7.5,6.5 + - type: Transform + pos: -7.5,6.5 parent: 31 - type: Transform - uid: 10745 components: - - pos: -12.5,6.5 + - type: Transform + pos: -12.5,6.5 parent: 31 - type: Transform - uid: 10746 components: - - pos: -13.5,6.5 + - type: Transform + pos: -13.5,6.5 parent: 31 - type: Transform - uid: 10750 components: - - pos: -7.5,10.5 + - type: Transform + pos: -7.5,10.5 parent: 31 - type: Transform - uid: 10768 components: - - pos: -44.5,-11.5 + - type: Transform + pos: -44.5,-11.5 parent: 31 - type: Transform - uid: 10769 components: - - pos: -45.5,-11.5 + - type: Transform + pos: -45.5,-11.5 parent: 31 - type: Transform - uid: 10770 components: - - pos: -46.5,-11.5 + - type: Transform + pos: -46.5,-11.5 parent: 31 - type: Transform - uid: 10771 components: - - pos: -47.5,-11.5 + - type: Transform + pos: -47.5,-11.5 parent: 31 - type: Transform - uid: 10772 components: - - pos: -48.5,-11.5 + - type: Transform + pos: -48.5,-11.5 parent: 31 - type: Transform - uid: 10773 components: - - pos: -49.5,-11.5 + - type: Transform + pos: -49.5,-11.5 parent: 31 - type: Transform - uid: 10774 components: - - pos: -50.5,-11.5 + - type: Transform + pos: -50.5,-11.5 parent: 31 - type: Transform - uid: 10775 components: - - pos: -51.5,-11.5 + - type: Transform + pos: -51.5,-11.5 parent: 31 - type: Transform - uid: 10776 components: - - pos: -52.5,-11.5 + - type: Transform + pos: -52.5,-11.5 parent: 31 - type: Transform - uid: 10777 components: - - pos: -43.5,-9.5 + - type: Transform + pos: -43.5,-9.5 parent: 31 - type: Transform - uid: 10778 components: - - pos: -44.5,-9.5 + - type: Transform + pos: -44.5,-9.5 parent: 31 - type: Transform - uid: 10779 components: - - pos: -45.5,-9.5 + - type: Transform + pos: -45.5,-9.5 parent: 31 - type: Transform - uid: 10780 components: - - pos: -46.5,-9.5 + - type: Transform + pos: -46.5,-9.5 parent: 31 - type: Transform - uid: 10781 components: - - pos: -47.5,-9.5 + - type: Transform + pos: -47.5,-9.5 parent: 31 - type: Transform - uid: 10782 components: - - pos: -48.5,-9.5 + - type: Transform + pos: -48.5,-9.5 parent: 31 - type: Transform - uid: 10783 components: - - pos: -49.5,-9.5 + - type: Transform + pos: -49.5,-9.5 parent: 31 - type: Transform - uid: 10784 components: - - pos: -50.5,-9.5 + - type: Transform + pos: -50.5,-9.5 parent: 31 - type: Transform - uid: 10785 components: - - pos: -51.5,-9.5 + - type: Transform + pos: -51.5,-9.5 parent: 31 - type: Transform - uid: 10787 components: - - pos: 3.5,-25.5 + - type: Transform + pos: 3.5,-25.5 parent: 31 - type: Transform - uid: 10832 components: - - pos: 59.5,-4.5 + - type: Transform + pos: 59.5,-4.5 parent: 31 - type: Transform - uid: 10833 components: - - pos: 60.5,-4.5 + - type: Transform + pos: 60.5,-4.5 parent: 31 - type: Transform - uid: 10834 components: - - pos: 60.5,-3.5 + - type: Transform + pos: 60.5,-3.5 parent: 31 - type: Transform - uid: 10835 components: - - pos: 60.5,-2.5 + - type: Transform + pos: 60.5,-2.5 parent: 31 - type: Transform - uid: 10836 components: - - pos: 60.5,-1.5 + - type: Transform + pos: 60.5,-1.5 parent: 31 - type: Transform - uid: 10837 components: - - pos: 56.5,-2.5 + - type: Transform + pos: 56.5,-2.5 parent: 31 - type: Transform - uid: 10838 components: - - pos: 56.5,-1.5 + - type: Transform + pos: 56.5,-1.5 parent: 31 - type: Transform - uid: 10839 components: - - pos: 57.5,-1.5 + - type: Transform + pos: 57.5,-1.5 parent: 31 - type: Transform - uid: 10840 components: - - pos: 59.5,-1.5 + - type: Transform + pos: 59.5,-1.5 parent: 31 - type: Transform - uid: 10841 components: - - pos: 57.5,-5.5 + - type: Transform + pos: 57.5,-5.5 parent: 31 - type: Transform - uid: 10842 components: - - pos: 59.5,-5.5 + - type: Transform + pos: 59.5,-5.5 parent: 31 - type: Transform - uid: 10843 components: - - pos: 53.5,-7.5 + - type: Transform + pos: 53.5,-7.5 parent: 31 - type: Transform - uid: 10844 components: - - pos: 53.5,-8.5 + - type: Transform + pos: 53.5,-8.5 parent: 31 - type: Transform - uid: 10845 components: - - pos: 53.5,-9.5 + - type: Transform + pos: 53.5,-9.5 parent: 31 - type: Transform - uid: 10846 components: - - pos: 53.5,-10.5 + - type: Transform + pos: 53.5,-10.5 parent: 31 - type: Transform - uid: 10847 components: - - pos: 53.5,-11.5 + - type: Transform + pos: 53.5,-11.5 parent: 31 - type: Transform - uid: 10849 components: - - pos: 52.5,-10.5 + - type: Transform + pos: 52.5,-10.5 parent: 31 - type: Transform - uid: 10850 components: - - pos: 51.5,-10.5 + - type: Transform + pos: 51.5,-10.5 parent: 31 - type: Transform - uid: 10851 components: - - pos: 50.5,-10.5 + - type: Transform + pos: 50.5,-10.5 parent: 31 - type: Transform - uid: 10852 components: - - pos: 49.5,-10.5 + - type: Transform + pos: 49.5,-10.5 parent: 31 - type: Transform - uid: 10853 components: - - pos: 48.5,-10.5 + - type: Transform + pos: 48.5,-10.5 parent: 31 - type: Transform - uid: 10854 components: - - pos: 47.5,-10.5 - parent: 31 - type: Transform + - type: Transform + pos: 47.5,-10.5 + parent: 31 - uid: 10855 components: - - pos: 47.5,-8.5 + - type: Transform + pos: 47.5,-8.5 parent: 31 - type: Transform - uid: 10856 components: - - pos: 48.5,-8.5 + - type: Transform + pos: 48.5,-8.5 parent: 31 - type: Transform - uid: 10857 components: - - pos: 49.5,-8.5 + - type: Transform + pos: 49.5,-8.5 parent: 31 - type: Transform - uid: 10858 components: - - pos: 50.5,-8.5 + - type: Transform + pos: 50.5,-8.5 parent: 31 - type: Transform - uid: 10859 components: - - pos: 51.5,-8.5 + - type: Transform + pos: 51.5,-8.5 parent: 31 - type: Transform - uid: 10860 components: - - pos: 52.5,-8.5 + - type: Transform + pos: 52.5,-8.5 parent: 31 - type: Transform - uid: 10861 components: - - pos: 55.5,-7.5 + - type: Transform + pos: 55.5,-7.5 parent: 31 - type: Transform - uid: 10862 components: - - pos: 55.5,-9.5 + - type: Transform + pos: 55.5,-9.5 parent: 31 - type: Transform - uid: 10863 components: - - pos: 55.5,-8.5 + - type: Transform + pos: 55.5,-8.5 parent: 31 - type: Transform - uid: 10864 components: - - pos: 56.5,-8.5 + - type: Transform + pos: 56.5,-8.5 parent: 31 - type: Transform - uid: 10865 components: - - pos: 55.5,-10.5 + - type: Transform + pos: 55.5,-10.5 parent: 31 - type: Transform - uid: 10866 components: - - pos: 56.5,-10.5 + - type: Transform + pos: 56.5,-10.5 parent: 31 - type: Transform - uid: 10870 components: - - pos: 54.5,-9.5 + - type: Transform + pos: 54.5,-9.5 parent: 31 - type: Transform - uid: 10876 components: - - pos: 55.5,-6.5 + - type: Transform + pos: 55.5,-6.5 parent: 31 - type: Transform - uid: 10966 components: - - pos: 51.5,-3.5 + - type: Transform + pos: 51.5,-3.5 parent: 31 - type: Transform - uid: 10967 components: - - pos: 51.5,-4.5 + - type: Transform + pos: 51.5,-4.5 parent: 31 - type: Transform - uid: 10968 components: - - pos: 52.5,-4.5 + - type: Transform + pos: 52.5,-4.5 parent: 31 - type: Transform - uid: 10969 components: - - pos: 53.5,-4.5 + - type: Transform + pos: 53.5,-4.5 parent: 31 - type: Transform - uid: 10970 components: - - pos: 54.5,-4.5 + - type: Transform + pos: 54.5,-4.5 parent: 31 - type: Transform - uid: 10971 components: - - pos: 53.5,-3.5 + - type: Transform + pos: 53.5,-3.5 parent: 31 - type: Transform - uid: 10972 components: - - pos: 53.5,-2.5 + - type: Transform + pos: 53.5,-2.5 parent: 31 - type: Transform - uid: 10973 components: - - pos: 53.5,-1.5 + - type: Transform + pos: 53.5,-1.5 parent: 31 - type: Transform - uid: 10974 components: - - pos: 50.5,-4.5 + - type: Transform + pos: 50.5,-4.5 parent: 31 - type: Transform - uid: 10975 components: - - pos: 49.5,-4.5 + - type: Transform + pos: 49.5,-4.5 parent: 31 - type: Transform - uid: 10976 components: - - pos: 49.5,-3.5 + - type: Transform + pos: 49.5,-3.5 parent: 31 - type: Transform - uid: 10977 components: - - pos: 49.5,-2.5 + - type: Transform + pos: 49.5,-2.5 parent: 31 - type: Transform - uid: 11195 components: - - pos: -4.5,26.5 + - type: Transform + pos: -4.5,26.5 parent: 31 - type: Transform - uid: 11196 components: - - pos: -4.5,27.5 + - type: Transform + pos: -4.5,27.5 parent: 31 - type: Transform - uid: 11197 components: - - pos: -4.5,28.5 + - type: Transform + pos: -4.5,28.5 parent: 31 - type: Transform - uid: 11198 components: - - pos: -5.5,28.5 + - type: Transform + pos: -5.5,28.5 parent: 31 - type: Transform - uid: 11199 components: - - pos: -6.5,28.5 + - type: Transform + pos: -6.5,28.5 parent: 31 - type: Transform - uid: 11205 components: - - pos: 2.5,-15.5 + - type: Transform + pos: 2.5,-15.5 parent: 31 - type: Transform - uid: 11213 components: - - pos: -28.5,-12.5 + - type: Transform + pos: -28.5,-12.5 parent: 31 - type: Transform - uid: 11214 components: - - pos: -28.5,-13.5 + - type: Transform + pos: -28.5,-13.5 parent: 31 - type: Transform - uid: 11215 components: - - pos: -28.5,-14.5 + - type: Transform + pos: -28.5,-14.5 parent: 31 - type: Transform - uid: 11216 components: - - pos: -28.5,-15.5 + - type: Transform + pos: -28.5,-15.5 parent: 31 - type: Transform - uid: 11232 components: - - pos: -2.5,-15.5 + - type: Transform + pos: -2.5,-15.5 parent: 31 - type: Transform - uid: 11233 components: - - pos: -3.5,-15.5 + - type: Transform + pos: -3.5,-15.5 parent: 31 - type: Transform - uid: 11234 components: - - pos: -4.5,-15.5 + - type: Transform + pos: -4.5,-15.5 parent: 31 - type: Transform - uid: 11235 components: - - pos: -12.5,-15.5 + - type: Transform + pos: -12.5,-15.5 parent: 31 - type: Transform - uid: 11236 components: - - pos: -14.5,-15.5 + - type: Transform + pos: -14.5,-15.5 parent: 31 - type: Transform - uid: 11237 components: - - pos: -13.5,-15.5 + - type: Transform + pos: -13.5,-15.5 parent: 31 - type: Transform - uid: 11238 components: - - pos: -15.5,-15.5 + - type: Transform + pos: -15.5,-15.5 parent: 31 - type: Transform - uid: 11239 components: - - pos: -16.5,-15.5 + - type: Transform + pos: -16.5,-15.5 parent: 31 - type: Transform - uid: 11240 components: - - pos: -17.5,-15.5 + - type: Transform + pos: -17.5,-15.5 parent: 31 - type: Transform - uid: 11241 components: - - pos: -18.5,-15.5 + - type: Transform + pos: -18.5,-15.5 parent: 31 - type: Transform - uid: 11242 components: - - pos: -19.5,-15.5 + - type: Transform + pos: -19.5,-15.5 parent: 31 - type: Transform - uid: 11243 components: - - pos: -20.5,-15.5 + - type: Transform + pos: -20.5,-15.5 parent: 31 - type: Transform - uid: 11251 components: - - pos: -32.5,9.5 + - type: Transform + pos: -32.5,9.5 parent: 31 - type: Transform - uid: 11252 components: - - pos: -32.5,8.5 + - type: Transform + pos: -32.5,8.5 parent: 31 - type: Transform - uid: 11253 components: - - pos: -32.5,7.5 + - type: Transform + pos: -32.5,7.5 parent: 31 - type: Transform - uid: 11257 components: - - pos: 3.5,-24.5 + - type: Transform + pos: 3.5,-24.5 parent: 31 - type: Transform - uid: 11270 components: - - pos: 36.5,14.5 + - type: Transform + pos: 36.5,14.5 parent: 31 - type: Transform - uid: 11274 components: - - pos: -24.5,-15.5 + - type: Transform + pos: -24.5,-15.5 parent: 31 - type: Transform - uid: 11275 components: - - pos: -24.5,-16.5 + - type: Transform + pos: -24.5,-16.5 parent: 31 - type: Transform - uid: 11276 components: - - pos: -25.5,-16.5 + - type: Transform + pos: -25.5,-16.5 parent: 31 - type: Transform - uid: 11277 components: - - pos: -26.5,-16.5 + - type: Transform + pos: -26.5,-16.5 parent: 31 - type: Transform - uid: 11278 components: - - pos: -16.5,-16.5 + - type: Transform + pos: -16.5,-16.5 parent: 31 - type: Transform - uid: 11279 components: - - pos: -27.5,-18.5 + - type: Transform + pos: -27.5,-18.5 parent: 31 - type: Transform - uid: 11328 components: - - pos: -4.5,17.5 + - type: Transform + pos: -4.5,17.5 parent: 31 - type: Transform - uid: 11329 components: - - pos: -19.5,-35.5 + - type: Transform + pos: -19.5,-35.5 parent: 31 - type: Transform - uid: 11330 components: - - pos: -19.5,-34.5 + - type: Transform + pos: -19.5,-34.5 parent: 31 - type: Transform - uid: 11331 components: - - pos: -19.5,-33.5 + - type: Transform + pos: -19.5,-33.5 parent: 31 - type: Transform - uid: 11332 components: - - pos: 20.5,-23.5 + - type: Transform + pos: 20.5,-23.5 parent: 31 - type: Transform - uid: 11350 components: - - pos: 30.5,12.5 + - type: Transform + pos: 30.5,12.5 parent: 31 - type: Transform - uid: 11381 components: - - pos: 17.5,11.5 + - type: Transform + pos: 17.5,11.5 + parent: 31 + - uid: 11415 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 31 + - uid: 11416 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 31 + - uid: 11417 + components: + - type: Transform + pos: -40.5,-4.5 parent: 31 - type: Transform - proto: CableApcStack entities: - uid: 94 components: - - pos: 48.373375,5.713002 + - type: Transform + pos: 48.373375,5.713002 parent: 31 - type: Transform - uid: 134 components: - - pos: 29.54536,1.2261796 + - type: Transform + pos: 29.54536,1.2261796 parent: 31 - type: Transform - uid: 1021 components: - - pos: 48.373375,5.713002 + - type: Transform + pos: 48.373375,5.713002 parent: 31 - type: Transform - uid: 4539 components: - - pos: 60.253426,4.5485425 + - type: Transform + pos: 60.253426,4.5485425 parent: 31 - type: Transform - proto: CableApcStack1 entities: - uid: 4263 components: - - pos: 49.699306,-5.6046276 + - type: Transform + pos: 49.699306,-5.6046276 parent: 31 - type: Transform - uid: 9664 components: - - pos: -3.5609899,-43.099728 + - type: Transform + pos: -3.5609899,-43.099728 parent: 31 - type: Transform - uid: 9669 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.0297182,-43.247223 parent: 31 - type: Transform - uid: 10901 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 49.31561,-5.6046276 parent: 31 - type: Transform - proto: CableApcStack10 entities: - uid: 2048 components: - - pos: -2.4564042,-31.599945 + - type: Transform + pos: -2.4564042,-31.599945 parent: 31 - type: Transform - proto: CableHV entities: - uid: 23 components: - - pos: 19.5,-30.5 + - type: Transform + pos: 19.5,-30.5 parent: 31 - type: Transform - uid: 29 components: - - pos: 19.5,-29.5 + - type: Transform + pos: 19.5,-29.5 parent: 31 - type: Transform - uid: 104 components: - - pos: 21.5,-29.5 + - type: Transform + pos: 21.5,-29.5 parent: 31 - type: Transform - uid: 128 components: - - pos: -25.5,18.5 + - type: Transform + pos: -25.5,18.5 parent: 31 - type: Transform - uid: 130 components: - - pos: 21.5,-28.5 + - type: Transform + pos: 21.5,-28.5 parent: 31 - type: Transform - uid: 140 components: - - pos: -22.5,21.5 + - type: Transform + pos: -22.5,21.5 parent: 31 - type: Transform - uid: 202 components: - - pos: 55.5,5.5 + - type: Transform + pos: 55.5,5.5 parent: 31 - type: Transform - uid: 290 components: - - pos: 3.5,-20.5 + - type: Transform + pos: 3.5,-20.5 parent: 31 - type: Transform - uid: 412 components: - - pos: -21.5,22.5 + - type: Transform + pos: -21.5,22.5 parent: 31 - type: Transform - uid: 420 components: - - pos: 21.5,-34.5 + - type: Transform + pos: 21.5,-34.5 parent: 31 - type: Transform - uid: 421 components: - - pos: 21.5,-33.5 + - type: Transform + pos: 21.5,-33.5 parent: 31 - type: Transform - uid: 422 components: - - pos: 21.5,-32.5 + - type: Transform + pos: 21.5,-32.5 parent: 31 - type: Transform - uid: 437 components: - - pos: 19.5,-34.5 + - type: Transform + pos: 19.5,-34.5 parent: 31 - type: Transform - uid: 442 components: - - pos: -35.5,22.5 + - type: Transform + pos: -35.5,22.5 parent: 31 - type: Transform - uid: 443 components: - - pos: -35.5,23.5 + - type: Transform + pos: -35.5,23.5 parent: 31 - type: Transform - uid: 444 components: - - pos: -37.5,21.5 + - type: Transform + pos: -37.5,21.5 parent: 31 - type: Transform - uid: 445 components: - - pos: -37.5,22.5 + - type: Transform + pos: -37.5,22.5 parent: 31 - type: Transform - uid: 450 components: - - pos: -38.5,24.5 + - type: Transform + pos: -38.5,24.5 parent: 31 - type: Transform - uid: 451 components: - - pos: -37.5,23.5 + - type: Transform + pos: -37.5,23.5 parent: 31 - type: Transform - uid: 452 components: - - pos: -35.5,21.5 + - type: Transform + pos: -35.5,21.5 parent: 31 - type: Transform - uid: 453 components: - - pos: -33.5,23.5 + - type: Transform + pos: -33.5,23.5 parent: 31 - type: Transform - uid: 455 components: - - pos: -31.5,23.5 + - type: Transform + pos: -31.5,23.5 parent: 31 - type: Transform - uid: 456 components: - - pos: -33.5,21.5 + - type: Transform + pos: -33.5,21.5 parent: 31 - type: Transform - uid: 457 components: - - pos: -33.5,22.5 + - type: Transform + pos: -33.5,22.5 parent: 31 - type: Transform - uid: 458 components: - - pos: -35.5,26.5 + - type: Transform + pos: -35.5,26.5 parent: 31 - type: Transform - uid: 459 components: - - pos: -35.5,25.5 + - type: Transform + pos: -35.5,25.5 parent: 31 - type: Transform - uid: 460 components: - - pos: -37.5,27.5 + - type: Transform + pos: -37.5,27.5 parent: 31 - type: Transform - uid: 461 components: - - pos: -37.5,26.5 + - type: Transform + pos: -37.5,26.5 parent: 31 - type: Transform - uid: 464 components: - - pos: -37.5,25.5 + - type: Transform + pos: -37.5,25.5 parent: 31 - type: Transform - uid: 465 components: - - pos: 32.5,-31.5 + - type: Transform + pos: 32.5,-31.5 parent: 31 - type: Transform - uid: 466 components: - - pos: 30.5,-31.5 + - type: Transform + pos: 30.5,-31.5 parent: 31 - type: Transform - uid: 468 components: - - pos: 29.5,-33.5 + - type: Transform + pos: 29.5,-33.5 parent: 31 - type: Transform - uid: 470 components: - - pos: 31.5,-31.5 + - type: Transform + pos: 31.5,-31.5 parent: 31 - type: Transform - uid: 471 components: - - pos: 29.5,-30.5 + - type: Transform + pos: 29.5,-30.5 parent: 31 - type: Transform - uid: 479 components: - - pos: 27.5,-29.5 + - type: Transform + pos: 27.5,-29.5 parent: 31 - type: Transform - uid: 480 components: - - pos: 27.5,-28.5 + - type: Transform + pos: 27.5,-28.5 parent: 31 - type: Transform - uid: 481 components: - - pos: 29.5,-28.5 + - type: Transform + pos: 29.5,-28.5 parent: 31 - type: Transform - uid: 482 components: - - pos: 29.5,-29.5 + - type: Transform + pos: 29.5,-29.5 parent: 31 - type: Transform - uid: 483 components: - - pos: 27.5,-30.5 + - type: Transform + pos: 27.5,-30.5 parent: 31 - type: Transform - uid: 485 components: - - pos: 27.5,-32.5 + - type: Transform + pos: 27.5,-32.5 parent: 31 - type: Transform - uid: 486 components: - - pos: 25.5,-32.5 + - type: Transform + pos: 25.5,-32.5 parent: 31 - type: Transform - uid: 487 components: - - pos: 27.5,-33.5 + - type: Transform + pos: 27.5,-33.5 parent: 31 - type: Transform - uid: 488 components: - - pos: 27.5,-34.5 + - type: Transform + pos: 27.5,-34.5 parent: 31 - type: Transform - uid: 489 components: - - pos: 25.5,-33.5 + - type: Transform + pos: 25.5,-33.5 parent: 31 - type: Transform - uid: 495 components: - - pos: -19.5,-22.5 + - type: Transform + pos: -19.5,-22.5 parent: 31 - type: Transform - uid: 499 components: - - pos: 23.5,-35.5 + - type: Transform + pos: 23.5,-35.5 parent: 31 - type: Transform - uid: 500 components: - - pos: 23.5,-34.5 + - type: Transform + pos: 23.5,-34.5 parent: 31 - type: Transform - uid: 502 components: - - pos: 23.5,-33.5 + - type: Transform + pos: 23.5,-33.5 parent: 31 - type: Transform - uid: 504 components: - - pos: 23.5,-32.5 + - type: Transform + pos: 23.5,-32.5 parent: 31 - type: Transform - uid: 505 components: - - pos: 23.5,-30.5 + - type: Transform + pos: 23.5,-30.5 parent: 31 - type: Transform - uid: 506 components: - - pos: 23.5,-28.5 + - type: Transform + pos: 23.5,-28.5 parent: 31 - type: Transform - uid: 507 components: - - pos: 23.5,-29.5 + - type: Transform + pos: 23.5,-29.5 parent: 31 - type: Transform - uid: 508 components: - - pos: 23.5,-27.5 + - type: Transform + pos: 23.5,-27.5 parent: 31 - type: Transform - uid: 509 components: - - pos: 25.5,-28.5 + - type: Transform + pos: 25.5,-28.5 parent: 31 - type: Transform - uid: 510 components: - - pos: 25.5,-29.5 + - type: Transform + pos: 25.5,-29.5 parent: 31 - type: Transform - uid: 511 components: - - pos: 25.5,-30.5 + - type: Transform + pos: 25.5,-30.5 parent: 31 - type: Transform - uid: 512 components: - - pos: 25.5,-35.5 + - type: Transform + pos: 25.5,-35.5 parent: 31 - type: Transform - uid: 513 components: - - pos: 25.5,-34.5 + - type: Transform + pos: 25.5,-34.5 parent: 31 - type: Transform - uid: 544 components: - - pos: -24.5,19.5 + - type: Transform + pos: -24.5,19.5 parent: 31 - type: Transform - uid: 562 components: - - pos: -23.5,-16.5 + - type: Transform + pos: -23.5,-16.5 parent: 31 - type: Transform - uid: 608 components: - - pos: -19.5,-28.5 + - type: Transform + pos: -19.5,-28.5 parent: 31 - type: Transform - uid: 617 components: - - pos: 10.5,19.5 + - type: Transform + pos: 10.5,19.5 parent: 31 - type: Transform - uid: 620 components: - - pos: -28.5,-18.5 + - type: Transform + pos: -28.5,-18.5 parent: 31 - type: Transform - uid: 637 components: - - pos: 3.5,-23.5 + - type: Transform + pos: 3.5,-23.5 parent: 31 - type: Transform - uid: 642 components: - - pos: 25.5,12.5 + - type: Transform + pos: 25.5,12.5 parent: 31 - type: Transform - uid: 686 components: - - pos: -19.5,-27.5 + - type: Transform + pos: -19.5,-27.5 parent: 31 - type: Transform - uid: 692 components: - - pos: -0.5,-8.5 + - type: Transform + pos: -0.5,-8.5 parent: 31 - type: Transform - uid: 700 components: - - pos: 3.5,-22.5 + - type: Transform + pos: 3.5,-22.5 parent: 31 - type: Transform - uid: 702 components: - - pos: 3.5,-21.5 + - type: Transform + pos: 3.5,-21.5 parent: 31 - type: Transform - uid: 744 components: - - pos: -18.5,-35.5 + - type: Transform + pos: -18.5,-35.5 parent: 31 - type: Transform - uid: 746 components: - - pos: -19.5,-33.5 + - type: Transform + pos: -19.5,-33.5 parent: 31 - type: Transform - uid: 756 components: - - pos: 14.5,11.5 + - type: Transform + pos: 14.5,11.5 parent: 31 - type: Transform - uid: 760 components: - - pos: -19.5,-30.5 + - type: Transform + pos: -19.5,-30.5 parent: 31 - type: Transform - uid: 785 components: - - pos: -26.5,-18.5 + - type: Transform + pos: -26.5,-18.5 parent: 31 - type: Transform - uid: 805 components: - - pos: -21.5,-18.5 + - type: Transform + pos: -21.5,-18.5 parent: 31 - type: Transform - uid: 840 components: - - pos: -12.5,-10.5 + - type: Transform + pos: -12.5,-10.5 parent: 31 - type: Transform - uid: 878 components: - - pos: 51.5,3.5 + - type: Transform + pos: 51.5,3.5 parent: 31 - type: Transform - uid: 932 components: - - pos: 19.5,-32.5 + - type: Transform + pos: 19.5,-32.5 parent: 31 - type: Transform - uid: 972 components: - - pos: 29.5,-34.5 + - type: Transform + pos: 29.5,-34.5 parent: 31 - type: Transform - uid: 1057 components: - - pos: -12.5,-12.5 + - type: Transform + pos: -12.5,-12.5 parent: 31 - type: Transform - uid: 1078 components: - - pos: -24.5,-16.5 + - type: Transform + pos: -24.5,-16.5 parent: 31 - type: Transform - uid: 1112 components: - - pos: 32.5,6.5 + - type: Transform + pos: 32.5,6.5 parent: 31 - type: Transform - uid: 1117 components: - - pos: 32.5,7.5 + - type: Transform + pos: 32.5,7.5 parent: 31 - type: Transform - uid: 1119 components: - - pos: 34.5,8.5 + - type: Transform + pos: 34.5,8.5 parent: 31 - type: Transform - uid: 1141 components: - - pos: 34.5,6.5 + - type: Transform + pos: 34.5,6.5 parent: 31 - type: Transform - uid: 1157 components: - - pos: -9.5,-14.5 + - type: Transform + pos: -9.5,-14.5 parent: 31 - type: Transform - uid: 1175 components: - - pos: -9.5,-15.5 + - type: Transform + pos: -9.5,-15.5 parent: 31 - type: Transform - uid: 1197 components: - - pos: -21.5,-15.5 + - type: Transform + pos: -21.5,-15.5 parent: 31 - type: Transform - uid: 1273 components: - - pos: 43.5,-0.5 + - type: Transform + pos: 43.5,-0.5 parent: 31 - type: Transform - uid: 1307 components: - - pos: -20.5,-15.5 + - type: Transform + pos: -20.5,-15.5 parent: 31 - type: Transform - uid: 1308 components: - - pos: -19.5,-15.5 + - type: Transform + pos: -19.5,-15.5 parent: 31 - type: Transform - uid: 1315 components: - - pos: -12.5,-15.5 + - type: Transform + pos: -12.5,-15.5 parent: 31 - type: Transform - uid: 1319 components: - - pos: -11.5,-15.5 + - type: Transform + pos: -11.5,-15.5 parent: 31 - type: Transform - uid: 1328 components: - - pos: -9.5,-13.5 + - type: Transform + pos: -9.5,-13.5 parent: 31 - type: Transform - uid: 1333 components: - - pos: -22.5,-15.5 + - type: Transform + pos: -22.5,-15.5 parent: 31 - type: Transform - uid: 1336 components: - - pos: -13.5,-15.5 + - type: Transform + pos: -13.5,-15.5 parent: 31 - type: Transform - uid: 1346 components: - - pos: 32.5,5.5 + - type: Transform + pos: 32.5,5.5 parent: 31 - type: Transform - uid: 1347 components: - - pos: 32.5,4.5 + - type: Transform + pos: 32.5,4.5 parent: 31 - type: Transform - uid: 1380 components: - - pos: 64.5,-2.5 + - type: Transform + pos: 64.5,-2.5 parent: 31 - type: Transform - uid: 1518 components: - - pos: -10.5,-15.5 + - type: Transform + pos: -10.5,-15.5 parent: 31 - type: Transform - uid: 1525 components: - - pos: -15.5,-15.5 + - type: Transform + pos: -15.5,-15.5 parent: 31 - type: Transform - uid: 1527 components: - - pos: -14.5,-15.5 + - type: Transform + pos: -14.5,-15.5 parent: 31 - type: Transform - uid: 1577 components: - - pos: 64.5,1.5 + - type: Transform + pos: 64.5,1.5 parent: 31 - type: Transform - uid: 1609 components: - - pos: 32.5,3.5 + - type: Transform + pos: 32.5,3.5 parent: 31 - type: Transform - uid: 1614 components: - - pos: 70.5,-4.5 + - type: Transform + pos: 70.5,-4.5 parent: 31 - type: Transform - uid: 1615 components: - - pos: 64.5,-3.5 + - type: Transform + pos: 64.5,-3.5 parent: 31 - type: Transform - uid: 1623 components: - - pos: 43.5,-3.5 + - type: Transform + pos: 43.5,-3.5 parent: 31 - type: Transform - uid: 1631 components: - - pos: 65.5,-4.5 + - type: Transform + pos: 65.5,-4.5 parent: 31 - type: Transform - uid: 1640 components: - - pos: -29.5,22.5 + - type: Transform + pos: -29.5,22.5 parent: 31 - type: Transform - uid: 1665 components: - - pos: -5.5,25.5 + - type: Transform + pos: -5.5,25.5 parent: 31 - type: Transform - uid: 1696 components: - - pos: 8.5,13.5 + - type: Transform + pos: 8.5,13.5 parent: 31 - type: Transform - uid: 1700 components: - - pos: 27.5,-8.5 + - type: Transform + pos: 27.5,-8.5 parent: 31 - type: Transform - uid: 1727 components: - - pos: 27.5,-13.5 + - type: Transform + pos: 27.5,-13.5 parent: 31 - type: Transform - uid: 1728 components: - - pos: 56.5,0.5 + - type: Transform + pos: 56.5,0.5 parent: 31 - type: Transform - uid: 1740 components: - - pos: 33.5,3.5 + - type: Transform + pos: 33.5,3.5 parent: 31 - type: Transform - uid: 1742 components: - - pos: 28.5,12.5 + - type: Transform + pos: 28.5,12.5 parent: 31 - type: Transform - uid: 1772 components: - - pos: 27.5,-11.5 + - type: Transform + pos: 27.5,-11.5 parent: 31 - type: Transform - uid: 2000 components: - - pos: -17.5,14.5 + - type: Transform + pos: -17.5,14.5 parent: 31 - type: Transform - uid: 2001 components: - - pos: -16.5,14.5 + - type: Transform + pos: -16.5,14.5 parent: 31 - type: Transform - uid: 2009 components: - - pos: -18.5,14.5 + - type: Transform + pos: -18.5,14.5 parent: 31 - type: Transform - uid: 2055 components: - - pos: -26.5,-13.5 + - type: Transform + pos: -26.5,-13.5 parent: 31 - type: Transform - uid: 2202 components: - - pos: 53.5,7.5 + - type: Transform + pos: 53.5,7.5 parent: 31 - type: Transform - uid: 2281 components: - - pos: 27.5,-12.5 + - type: Transform + pos: 27.5,-12.5 parent: 31 - type: Transform - uid: 2302 components: - - pos: -18.5,-15.5 + - type: Transform + pos: -18.5,-15.5 parent: 31 - type: Transform - uid: 2328 components: - - pos: 27.5,-9.5 + - type: Transform + pos: 27.5,-9.5 parent: 31 - type: Transform - uid: 2353 components: - - pos: 34.5,3.5 + - type: Transform + pos: 34.5,3.5 parent: 31 - type: Transform - uid: 2384 components: - - pos: 27.5,-10.5 + - type: Transform + pos: 27.5,-10.5 parent: 31 - type: Transform - uid: 2534 components: - - pos: -18.5,15.5 + - type: Transform + pos: -18.5,15.5 parent: 31 - type: Transform - uid: 2707 components: - - pos: -27.5,-11.5 + - type: Transform + pos: -27.5,-11.5 parent: 31 - type: Transform - uid: 2713 components: - - pos: -13.5,-12.5 + - type: Transform + pos: -13.5,-12.5 parent: 31 - type: Transform - uid: 2714 components: - - pos: -14.5,-12.5 + - type: Transform + pos: -14.5,-12.5 parent: 31 - type: Transform - uid: 2834 components: - - pos: 6.5,-19.5 + - type: Transform + pos: 6.5,-19.5 parent: 31 - type: Transform - uid: 2839 components: - - pos: -26.5,-16.5 + - type: Transform + pos: -26.5,-16.5 parent: 31 - type: Transform - uid: 2840 components: - - pos: -19.5,-31.5 + - type: Transform + pos: -19.5,-31.5 parent: 31 - type: Transform - uid: 2841 components: - - pos: -25.5,-18.5 + - type: Transform + pos: -25.5,-18.5 parent: 31 - type: Transform - uid: 2850 components: - - pos: -15.5,-12.5 + - type: Transform + pos: -15.5,-12.5 parent: 31 - type: Transform - uid: 2937 components: - - pos: -17.5,-15.5 + - type: Transform + pos: -17.5,-15.5 parent: 31 - type: Transform - uid: 2943 components: - - pos: -16.5,-15.5 + - type: Transform + pos: -16.5,-15.5 parent: 31 - type: Transform - uid: 3003 components: - - pos: -23.5,-15.5 + - type: Transform + pos: -23.5,-15.5 parent: 31 - type: Transform - uid: 3112 components: - - pos: 53.5,4.5 + - type: Transform + pos: 53.5,4.5 parent: 31 - type: Transform - uid: 3123 components: - - pos: 29.5,12.5 + - type: Transform + pos: 29.5,12.5 parent: 31 - type: Transform - uid: 3143 components: - - pos: 32.5,8.5 + - type: Transform + pos: 32.5,8.5 parent: 31 - type: Transform - uid: 3272 components: - - pos: 41.5,4.5 + - type: Transform + pos: 41.5,4.5 parent: 31 - type: Transform - uid: 3275 components: - - pos: 42.5,3.5 + - type: Transform + pos: 42.5,3.5 parent: 31 - type: Transform - uid: 3276 components: - - pos: 42.5,2.5 + - type: Transform + pos: 42.5,2.5 parent: 31 - type: Transform - uid: 3277 components: - - pos: 42.5,1.5 + - type: Transform + pos: 42.5,1.5 parent: 31 - type: Transform - uid: 3278 components: - - pos: -12.5,-35.5 + - type: Transform + pos: -12.5,-35.5 parent: 31 - type: Transform - uid: 3281 components: - - pos: 43.5,-2.5 + - type: Transform + pos: 43.5,-2.5 parent: 31 - type: Transform - uid: 3282 components: - - pos: 43.5,-1.5 + - type: Transform + pos: 43.5,-1.5 parent: 31 - type: Transform - uid: 3284 components: - - pos: 42.5,-4.5 + - type: Transform + pos: 42.5,-4.5 parent: 31 - type: Transform - uid: 3285 components: - - pos: 41.5,-4.5 + - type: Transform + pos: 41.5,-4.5 parent: 31 - type: Transform - uid: 3286 components: - - pos: 40.5,-4.5 + - type: Transform + pos: 40.5,-4.5 parent: 31 - type: Transform - uid: 3287 components: - - pos: 39.5,-4.5 + - type: Transform + pos: 39.5,-4.5 parent: 31 - type: Transform - uid: 3288 components: - - pos: 38.5,-4.5 + - type: Transform + pos: 38.5,-4.5 parent: 31 - type: Transform - uid: 3289 components: - - pos: 38.5,-5.5 + - type: Transform + pos: 38.5,-5.5 parent: 31 - type: Transform - uid: 3290 components: - - pos: 38.5,-6.5 + - type: Transform + pos: 38.5,-6.5 parent: 31 - type: Transform - uid: 3291 components: - - pos: 38.5,-7.5 + - type: Transform + pos: 38.5,-7.5 parent: 31 - type: Transform - uid: 3292 components: - - pos: 37.5,-7.5 + - type: Transform + pos: 37.5,-7.5 parent: 31 - type: Transform - uid: 3293 components: - - pos: 36.5,-7.5 + - type: Transform + pos: 36.5,-7.5 parent: 31 - type: Transform - uid: 3294 components: - - pos: 35.5,-7.5 + - type: Transform + pos: 35.5,-7.5 parent: 31 - type: Transform - uid: 3295 components: - - pos: 34.5,-7.5 + - type: Transform + pos: 34.5,-7.5 parent: 31 - type: Transform - uid: 3296 components: - - pos: 33.5,-7.5 + - type: Transform + pos: 33.5,-7.5 parent: 31 - type: Transform - uid: 3297 components: - - pos: 32.5,-7.5 + - type: Transform + pos: 32.5,-7.5 parent: 31 - type: Transform - uid: 3298 components: - - pos: 31.5,-7.5 + - type: Transform + pos: 31.5,-7.5 parent: 31 - type: Transform - uid: 3299 components: - - pos: 30.5,-7.5 + - type: Transform + pos: 30.5,-7.5 parent: 31 - type: Transform - uid: 3300 components: - - pos: 29.5,-7.5 + - type: Transform + pos: 29.5,-7.5 parent: 31 - type: Transform - uid: 3301 components: - - pos: 28.5,-7.5 + - type: Transform + pos: 28.5,-7.5 parent: 31 - type: Transform - uid: 3302 components: - - pos: 27.5,-7.5 + - type: Transform + pos: 27.5,-7.5 parent: 31 - type: Transform - uid: 3309 components: - - pos: 26.5,-13.5 + - type: Transform + pos: 26.5,-13.5 parent: 31 - type: Transform - uid: 3310 components: - - pos: 26.5,-14.5 + - type: Transform + pos: 26.5,-14.5 parent: 31 - type: Transform - uid: 3311 components: - - pos: 26.5,-15.5 + - type: Transform + pos: 26.5,-15.5 parent: 31 - type: Transform - uid: 3312 components: - - pos: 26.5,-16.5 + - type: Transform + pos: 26.5,-16.5 parent: 31 - type: Transform - uid: 3313 components: - - pos: 26.5,-17.5 + - type: Transform + pos: 26.5,-17.5 parent: 31 - type: Transform - uid: 3315 components: - - pos: 6.5,13.5 + - type: Transform + pos: 6.5,13.5 parent: 31 - type: Transform - uid: 3316 components: - - pos: 9.5,13.5 + - type: Transform + pos: 9.5,13.5 parent: 31 - type: Transform - uid: 3317 components: - - pos: 7.5,13.5 + - type: Transform + pos: 7.5,13.5 parent: 31 - type: Transform - uid: 3319 components: - - pos: 25.5,-17.5 + - type: Transform + pos: 25.5,-17.5 parent: 31 - type: Transform - uid: 3320 components: - - pos: 24.5,-17.5 + - type: Transform + pos: 24.5,-17.5 parent: 31 - type: Transform - uid: 3321 components: - - pos: 23.5,-17.5 + - type: Transform + pos: 23.5,-17.5 parent: 31 - type: Transform - uid: 3322 components: - - pos: 22.5,-17.5 + - type: Transform + pos: 22.5,-17.5 parent: 31 - type: Transform - uid: 3323 components: - - pos: 22.5,-18.5 + - type: Transform + pos: 22.5,-18.5 parent: 31 - type: Transform - uid: 3324 components: - - pos: 22.5,-19.5 + - type: Transform + pos: 22.5,-19.5 parent: 31 - type: Transform - uid: 3325 components: - - pos: 22.5,-20.5 + - type: Transform + pos: 22.5,-20.5 parent: 31 - type: Transform - uid: 3326 components: - - pos: 22.5,-21.5 + - type: Transform + pos: 22.5,-21.5 parent: 31 - type: Transform - uid: 3327 components: - - pos: 22.5,-22.5 + - type: Transform + pos: 22.5,-22.5 parent: 31 - type: Transform - uid: 3328 components: - - pos: 22.5,-23.5 + - type: Transform + pos: 22.5,-23.5 parent: 31 - type: Transform - uid: 3329 components: - - pos: 22.5,-24.5 + - type: Transform + pos: 22.5,-24.5 parent: 31 - type: Transform - uid: 3330 components: - - pos: 22.5,-25.5 + - type: Transform + pos: 22.5,-25.5 parent: 31 - type: Transform - uid: 3331 components: - - pos: 21.5,-25.5 + - type: Transform + pos: 21.5,-25.5 parent: 31 - type: Transform - uid: 3332 components: - - pos: 20.5,-25.5 + - type: Transform + pos: 20.5,-25.5 parent: 31 - type: Transform - uid: 3333 components: - - pos: 19.5,-25.5 + - type: Transform + pos: 19.5,-25.5 parent: 31 - type: Transform - uid: 3334 components: - - pos: 18.5,-25.5 + - type: Transform + pos: 18.5,-25.5 parent: 31 - type: Transform - uid: 3335 components: - - pos: 17.5,-25.5 + - type: Transform + pos: 17.5,-25.5 parent: 31 - type: Transform - uid: 3336 components: - - pos: 16.5,-25.5 + - type: Transform + pos: 16.5,-25.5 parent: 31 - type: Transform - uid: 3337 components: - - pos: 15.5,-25.5 + - type: Transform + pos: 15.5,-25.5 parent: 31 - type: Transform - uid: 3338 components: - - pos: 14.5,-25.5 + - type: Transform + pos: 14.5,-25.5 parent: 31 - type: Transform - uid: 3339 components: - - pos: 14.5,-24.5 + - type: Transform + pos: 14.5,-24.5 parent: 31 - type: Transform - uid: 3340 components: - - pos: 14.5,-23.5 + - type: Transform + pos: 14.5,-23.5 parent: 31 - type: Transform - uid: 3341 components: - - pos: 14.5,-22.5 + - type: Transform + pos: 14.5,-22.5 parent: 31 - type: Transform - uid: 3342 components: - - pos: 14.5,-21.5 + - type: Transform + pos: 14.5,-21.5 parent: 31 - type: Transform - uid: 3343 components: - - pos: 14.5,-20.5 + - type: Transform + pos: 14.5,-20.5 parent: 31 - type: Transform - uid: 3344 components: - - pos: 13.5,-20.5 + - type: Transform + pos: 13.5,-20.5 parent: 31 - type: Transform - uid: 3345 components: - - pos: 12.5,-20.5 + - type: Transform + pos: 12.5,-20.5 parent: 31 - type: Transform - uid: 3346 components: - - pos: 11.5,-20.5 + - type: Transform + pos: 11.5,-20.5 parent: 31 - type: Transform - uid: 3347 components: - - pos: 10.5,-20.5 + - type: Transform + pos: 10.5,-20.5 parent: 31 - type: Transform - uid: 3348 components: - - pos: 9.5,-20.5 + - type: Transform + pos: 9.5,-20.5 parent: 31 - type: Transform - uid: 3349 components: - - pos: 8.5,-20.5 + - type: Transform + pos: 8.5,-20.5 parent: 31 - type: Transform - uid: 3350 components: - - pos: 7.5,-20.5 + - type: Transform + pos: 7.5,-20.5 parent: 31 - type: Transform - uid: 3358 components: - - pos: 2.5,-23.5 + - type: Transform + pos: 2.5,-23.5 parent: 31 - type: Transform - uid: 3359 components: - - pos: -13.5,-35.5 + - type: Transform + pos: -13.5,-35.5 parent: 31 - type: Transform - uid: 3360 components: - - pos: -14.5,-35.5 + - type: Transform + pos: -14.5,-35.5 parent: 31 - type: Transform - uid: 3361 components: - - pos: -15.5,-35.5 + - type: Transform + pos: -15.5,-35.5 parent: 31 - type: Transform - uid: 3362 components: - - pos: -16.5,-35.5 + - type: Transform + pos: -16.5,-35.5 parent: 31 - type: Transform - uid: 3363 components: - - pos: -19.5,-29.5 + - type: Transform + pos: -19.5,-29.5 parent: 31 - type: Transform - uid: 3364 components: - - pos: -19.5,-34.5 + - type: Transform + pos: -19.5,-34.5 parent: 31 - type: Transform - uid: 3365 components: - - pos: -10.5,-10.5 + - type: Transform + pos: -10.5,-10.5 parent: 31 - type: Transform - uid: 3374 components: - - pos: -11.5,-10.5 + - type: Transform + pos: -11.5,-10.5 parent: 31 - type: Transform - uid: 3391 components: - - pos: -25.5,-16.5 + - type: Transform + pos: -25.5,-16.5 parent: 31 - type: Transform - uid: 3392 components: - - pos: -9.5,-12.5 + - type: Transform + pos: -9.5,-12.5 parent: 31 - type: Transform - uid: 3393 components: - - pos: -9.5,-11.5 + - type: Transform + pos: -9.5,-11.5 parent: 31 - type: Transform - uid: 3394 components: - - pos: -9.5,-10.5 + - type: Transform + pos: -9.5,-10.5 parent: 31 - type: Transform - uid: 3395 components: - - pos: -8.5,-10.5 + - type: Transform + pos: -8.5,-10.5 parent: 31 - type: Transform - uid: 3396 components: - - pos: -7.5,-10.5 + - type: Transform + pos: -7.5,-10.5 parent: 31 - type: Transform - uid: 3397 components: - - pos: -6.5,-10.5 + - type: Transform + pos: -6.5,-10.5 parent: 31 - type: Transform - uid: 3398 components: - - pos: -5.5,-10.5 + - type: Transform + pos: -5.5,-10.5 parent: 31 - type: Transform - uid: 3399 components: - - pos: -4.5,-10.5 + - type: Transform + pos: -4.5,-10.5 parent: 31 - type: Transform - uid: 3400 components: - - pos: -3.5,-10.5 + - type: Transform + pos: -3.5,-10.5 parent: 31 - type: Transform - uid: 3401 components: - - pos: -2.5,-10.5 + - type: Transform + pos: -2.5,-10.5 parent: 31 - type: Transform - uid: 3402 components: - - pos: -1.5,-10.5 + - type: Transform + pos: -1.5,-10.5 parent: 31 - type: Transform - uid: 3403 components: - - pos: -0.5,-10.5 + - type: Transform + pos: -0.5,-10.5 parent: 31 - type: Transform - uid: 3404 components: - - pos: -0.5,-9.5 + - type: Transform + pos: -0.5,-9.5 parent: 31 - type: Transform - uid: 3426 components: - - pos: -26.5,-11.5 + - type: Transform + pos: -26.5,-11.5 parent: 31 - type: Transform - uid: 3429 components: - - pos: -28.5,-11.5 + - type: Transform + pos: -28.5,-11.5 parent: 31 - type: Transform - uid: 3430 components: - - pos: -29.5,-11.5 + - type: Transform + pos: -29.5,-11.5 parent: 31 - type: Transform - uid: 3431 components: - - pos: -30.5,-11.5 + - type: Transform + pos: -30.5,-11.5 parent: 31 - type: Transform - uid: 3432 components: - - pos: -31.5,-11.5 + - type: Transform + pos: -31.5,-11.5 parent: 31 - type: Transform - uid: 3433 components: - - pos: -32.5,-11.5 + - type: Transform + pos: -32.5,-11.5 parent: 31 - type: Transform - uid: 3434 components: - - pos: -33.5,-11.5 + - type: Transform + pos: -33.5,-11.5 parent: 31 - type: Transform - uid: 3435 components: - - pos: -33.5,-10.5 + - type: Transform + pos: -33.5,-10.5 parent: 31 - type: Transform - uid: 3436 components: - - pos: -33.5,-9.5 + - type: Transform + pos: -33.5,-9.5 parent: 31 - type: Transform - uid: 3437 components: - - pos: -33.5,-8.5 + - type: Transform + pos: -33.5,-8.5 parent: 31 - type: Transform - uid: 3438 components: - - pos: -33.5,-7.5 + - type: Transform + pos: -33.5,-7.5 parent: 31 - type: Transform - uid: 3439 components: - - pos: -33.5,-6.5 + - type: Transform + pos: -33.5,-6.5 parent: 31 - type: Transform - uid: 3440 components: - - pos: -33.5,-5.5 + - type: Transform + pos: -33.5,-5.5 parent: 31 - type: Transform - uid: 3441 components: - - pos: -33.5,-4.5 + - type: Transform + pos: -33.5,-4.5 parent: 31 - type: Transform - uid: 3442 components: - - pos: -33.5,-3.5 + - type: Transform + pos: -33.5,-3.5 parent: 31 - type: Transform - uid: 3443 components: - - pos: -33.5,-2.5 + - type: Transform + pos: -33.5,-2.5 parent: 31 - type: Transform - uid: 3444 components: - - pos: -33.5,-1.5 + - type: Transform + pos: -33.5,-1.5 parent: 31 - type: Transform - uid: 3445 components: - - pos: -33.5,-0.5 + - type: Transform + pos: -33.5,-0.5 parent: 31 - type: Transform - uid: 3446 components: - - pos: -33.5,0.5 + - type: Transform + pos: -33.5,0.5 parent: 31 - type: Transform - uid: 3447 components: - - pos: -32.5,0.5 + - type: Transform + pos: -32.5,0.5 parent: 31 - type: Transform - uid: 3448 components: - - pos: -32.5,1.5 + - type: Transform + pos: -32.5,1.5 parent: 31 - type: Transform - uid: 3449 components: - - pos: -32.5,2.5 + - type: Transform + pos: -32.5,2.5 parent: 31 - type: Transform - uid: 3450 components: - - pos: -32.5,3.5 + - type: Transform + pos: -32.5,3.5 parent: 31 - type: Transform - uid: 3451 components: - - pos: -32.5,4.5 + - type: Transform + pos: -32.5,4.5 parent: 31 - type: Transform - uid: 3452 components: - - pos: -32.5,5.5 + - type: Transform + pos: -32.5,5.5 parent: 31 - type: Transform - uid: 3453 components: - - pos: -32.5,6.5 + - type: Transform + pos: -32.5,6.5 parent: 31 - type: Transform - uid: 3454 components: - - pos: -32.5,7.5 + - type: Transform + pos: -32.5,7.5 parent: 31 - type: Transform - uid: 3455 components: - - pos: -32.5,8.5 + - type: Transform + pos: -32.5,8.5 parent: 31 - type: Transform - uid: 3456 components: - - pos: -32.5,9.5 + - type: Transform + pos: -32.5,9.5 parent: 31 - type: Transform - uid: 3457 components: - - pos: -32.5,10.5 + - type: Transform + pos: -32.5,10.5 parent: 31 - type: Transform - uid: 3458 components: - - pos: -32.5,11.5 + - type: Transform + pos: -32.5,11.5 parent: 31 - type: Transform - uid: 3459 components: - - pos: -32.5,12.5 + - type: Transform + pos: -32.5,12.5 parent: 31 - type: Transform - uid: 3460 components: - - pos: -32.5,13.5 + - type: Transform + pos: -32.5,13.5 parent: 31 - type: Transform - uid: 3462 components: - - pos: -32.5,14.5 + - type: Transform + pos: -32.5,14.5 parent: 31 - type: Transform - uid: 3463 components: - - pos: -31.5,14.5 + - type: Transform + pos: -31.5,14.5 parent: 31 - type: Transform - uid: 3464 components: - - pos: -30.5,14.5 + - type: Transform + pos: -30.5,14.5 parent: 31 - type: Transform - uid: 3465 components: - - pos: -29.5,14.5 + - type: Transform + pos: -29.5,14.5 parent: 31 - type: Transform - uid: 3466 components: - - pos: -28.5,14.5 + - type: Transform + pos: -28.5,14.5 parent: 31 - type: Transform - uid: 3467 components: - - pos: -27.5,14.5 + - type: Transform + pos: -27.5,14.5 parent: 31 - type: Transform - uid: 3468 components: - - pos: -26.5,14.5 + - type: Transform + pos: -26.5,14.5 parent: 31 - type: Transform - uid: 3469 components: - - pos: -25.5,14.5 + - type: Transform + pos: -25.5,14.5 parent: 31 - type: Transform - uid: 3470 components: - - pos: -24.5,14.5 + - type: Transform + pos: -24.5,14.5 parent: 31 - type: Transform - uid: 3471 components: - - pos: -23.5,14.5 + - type: Transform + pos: -23.5,14.5 parent: 31 - type: Transform - uid: 3472 components: - - pos: -22.5,14.5 + - type: Transform + pos: -22.5,14.5 parent: 31 - type: Transform - uid: 3473 components: - - pos: -21.5,14.5 + - type: Transform + pos: -21.5,14.5 parent: 31 - type: Transform - uid: 3474 components: - - pos: -20.5,14.5 + - type: Transform + pos: -20.5,14.5 parent: 31 - type: Transform - uid: 3478 components: - - pos: -19.5,14.5 + - type: Transform + pos: -19.5,14.5 parent: 31 - type: Transform - uid: 3482 components: - - pos: -18.5,16.5 + - type: Transform + pos: -18.5,16.5 parent: 31 - type: Transform - uid: 3483 components: - - pos: -17.5,16.5 + - type: Transform + pos: -17.5,16.5 parent: 31 - type: Transform - uid: 3484 components: - - pos: -16.5,16.5 + - type: Transform + pos: -16.5,16.5 parent: 31 - type: Transform - uid: 3486 components: - - pos: -18.5,17.5 + - type: Transform + pos: -18.5,17.5 parent: 31 - type: Transform - uid: 3487 components: - - pos: -18.5,18.5 + - type: Transform + pos: -18.5,18.5 parent: 31 - type: Transform - uid: 3488 components: - - pos: -18.5,19.5 + - type: Transform + pos: -18.5,19.5 parent: 31 - type: Transform - uid: 3489 components: - - pos: -18.5,20.5 + - type: Transform + pos: -18.5,20.5 parent: 31 - type: Transform - uid: 3490 components: - - pos: -18.5,21.5 + - type: Transform + pos: -18.5,21.5 parent: 31 - type: Transform - uid: 3491 components: - - pos: -18.5,22.5 + - type: Transform + pos: -18.5,22.5 parent: 31 - type: Transform - uid: 3492 components: - - pos: -18.5,23.5 + - type: Transform + pos: -18.5,23.5 parent: 31 - type: Transform - uid: 3493 components: - - pos: -18.5,24.5 + - type: Transform + pos: -18.5,24.5 parent: 31 - type: Transform - uid: 3494 components: - - pos: -18.5,25.5 + - type: Transform + pos: -18.5,25.5 parent: 31 - type: Transform - uid: 3495 components: - - pos: -17.5,25.5 + - type: Transform + pos: -17.5,25.5 parent: 31 - type: Transform - uid: 3496 components: - - pos: -16.5,25.5 + - type: Transform + pos: -16.5,25.5 parent: 31 - type: Transform - uid: 3497 components: - - pos: -15.5,25.5 + - type: Transform + pos: -15.5,25.5 parent: 31 - type: Transform - uid: 3498 components: - - pos: -14.5,25.5 + - type: Transform + pos: -14.5,25.5 parent: 31 - type: Transform - uid: 3499 components: - - pos: -13.5,25.5 + - type: Transform + pos: -13.5,25.5 parent: 31 - type: Transform - uid: 3500 components: - - pos: -12.5,25.5 + - type: Transform + pos: -12.5,25.5 parent: 31 - type: Transform - uid: 3501 components: - - pos: -11.5,25.5 + - type: Transform + pos: -11.5,25.5 parent: 31 - type: Transform - uid: 3502 components: - - pos: -10.5,25.5 + - type: Transform + pos: -10.5,25.5 parent: 31 - type: Transform - uid: 3503 components: - - pos: -9.5,25.5 + - type: Transform + pos: -9.5,25.5 parent: 31 - type: Transform - uid: 3504 components: - - pos: -8.5,25.5 + - type: Transform + pos: -8.5,25.5 parent: 31 - type: Transform - uid: 3505 components: - - pos: -7.5,25.5 + - type: Transform + pos: -7.5,25.5 parent: 31 - type: Transform - uid: 3510 components: - - pos: -4.5,24.5 + - type: Transform + pos: -4.5,24.5 parent: 31 - type: Transform - uid: 3511 components: - - pos: -4.5,23.5 + - type: Transform + pos: -4.5,23.5 parent: 31 - type: Transform - uid: 3512 components: - - pos: -4.5,22.5 + - type: Transform + pos: -4.5,22.5 parent: 31 - type: Transform - uid: 3514 components: - - pos: -4.5,21.5 + - type: Transform + pos: -4.5,21.5 parent: 31 - type: Transform - uid: 3515 components: - - pos: -3.5,21.5 + - type: Transform + pos: -3.5,21.5 parent: 31 - type: Transform - uid: 3516 components: - - pos: -2.5,21.5 + - type: Transform + pos: -2.5,21.5 parent: 31 - type: Transform - uid: 3517 components: - - pos: -1.5,21.5 + - type: Transform + pos: -1.5,21.5 parent: 31 - type: Transform - uid: 3518 components: - - pos: -0.5,21.5 + - type: Transform + pos: -0.5,21.5 parent: 31 - type: Transform - uid: 3519 components: - - pos: -0.5,20.5 + - type: Transform + pos: -0.5,20.5 parent: 31 - type: Transform - uid: 3520 components: - - pos: 0.5,20.5 + - type: Transform + pos: 0.5,20.5 parent: 31 - type: Transform - uid: 3521 components: - - pos: 1.5,20.5 + - type: Transform + pos: 1.5,20.5 parent: 31 - type: Transform - uid: 3522 components: - - pos: 2.5,20.5 + - type: Transform + pos: 2.5,20.5 parent: 31 - type: Transform - uid: 3523 components: - - pos: 3.5,20.5 + - type: Transform + pos: 3.5,20.5 parent: 31 - type: Transform - uid: 3524 components: - - pos: 4.5,20.5 + - type: Transform + pos: 4.5,20.5 parent: 31 - type: Transform - uid: 3525 components: - - pos: 5.5,20.5 + - type: Transform + pos: 5.5,20.5 parent: 31 - type: Transform - uid: 3526 components: - - pos: 6.5,20.5 + - type: Transform + pos: 6.5,20.5 parent: 31 - type: Transform - uid: 3527 components: - - pos: 7.5,20.5 + - type: Transform + pos: 7.5,20.5 parent: 31 - type: Transform - uid: 3528 components: - - pos: 8.5,20.5 + - type: Transform + pos: 8.5,20.5 parent: 31 - type: Transform - uid: 3529 components: - - pos: 9.5,20.5 + - type: Transform + pos: 9.5,20.5 parent: 31 - type: Transform - uid: 3530 components: - - pos: 10.5,20.5 + - type: Transform + pos: 10.5,20.5 parent: 31 - type: Transform - uid: 3531 components: - - pos: 11.5,19.5 + - type: Transform + pos: 11.5,19.5 parent: 31 - type: Transform - uid: 3532 components: - - pos: 12.5,20.5 + - type: Transform + pos: 12.5,20.5 parent: 31 - type: Transform - uid: 3533 components: - - pos: 12.5,21.5 + - type: Transform + pos: 12.5,21.5 parent: 31 - type: Transform - uid: 3534 components: - - pos: 12.5,22.5 + - type: Transform + pos: 12.5,22.5 parent: 31 - type: Transform - uid: 3539 components: - - pos: 12.5,19.5 + - type: Transform + pos: 12.5,19.5 parent: 31 - type: Transform - uid: 3540 components: - - pos: 12.5,18.5 + - type: Transform + pos: 12.5,18.5 parent: 31 - type: Transform - uid: 3541 components: - - pos: 12.5,17.5 + - type: Transform + pos: 12.5,17.5 parent: 31 - type: Transform - uid: 3542 components: - - pos: 12.5,16.5 + - type: Transform + pos: 12.5,16.5 parent: 31 - type: Transform - uid: 3543 components: - - pos: 12.5,15.5 + - type: Transform + pos: 12.5,15.5 parent: 31 - type: Transform - uid: 3544 components: - - pos: 12.5,14.5 + - type: Transform + pos: 12.5,14.5 parent: 31 - type: Transform - uid: 3545 components: - - pos: 11.5,14.5 + - type: Transform + pos: 11.5,14.5 parent: 31 - type: Transform - uid: 3546 components: - - pos: 10.5,14.5 + - type: Transform + pos: 10.5,14.5 parent: 31 - type: Transform - uid: 3547 components: - - pos: 10.5,13.5 + - type: Transform + pos: 10.5,13.5 parent: 31 - type: Transform - uid: 3552 components: - - pos: 13.5,11.5 + - type: Transform + pos: 13.5,11.5 parent: 31 - type: Transform - uid: 3554 components: - - pos: 15.5,11.5 + - type: Transform + pos: 15.5,11.5 parent: 31 - type: Transform - uid: 3555 components: - - pos: 16.5,11.5 + - type: Transform + pos: 16.5,11.5 parent: 31 - type: Transform - uid: 3556 components: - - pos: 17.5,11.5 + - type: Transform + pos: 17.5,11.5 parent: 31 - type: Transform - uid: 3557 components: - - pos: 18.5,11.5 + - type: Transform + pos: 18.5,11.5 parent: 31 - type: Transform - uid: 3558 components: - - pos: 19.5,11.5 + - type: Transform + pos: 19.5,11.5 parent: 31 - type: Transform - uid: 3559 components: - - pos: 20.5,11.5 + - type: Transform + pos: 20.5,11.5 parent: 31 - type: Transform - uid: 3560 components: - - pos: 21.5,11.5 + - type: Transform + pos: 21.5,11.5 parent: 31 - type: Transform - uid: 3561 components: - - pos: 22.5,11.5 + - type: Transform + pos: 22.5,11.5 parent: 31 - type: Transform - uid: 3562 components: - - pos: 23.5,11.5 + - type: Transform + pos: 23.5,11.5 parent: 31 - type: Transform - uid: 3563 components: - - pos: 24.5,11.5 + - type: Transform + pos: 24.5,11.5 parent: 31 - type: Transform - uid: 3564 components: - - pos: 26.5,12.5 + - type: Transform + pos: 26.5,12.5 parent: 31 - type: Transform - uid: 3566 components: - - pos: 24.5,12.5 + - type: Transform + pos: 24.5,12.5 parent: 31 - type: Transform - uid: 3567 components: - - pos: 27.5,12.5 + - type: Transform + pos: 27.5,12.5 parent: 31 - type: Transform - uid: 3568 components: - - pos: 27.5,13.5 + - type: Transform + pos: 27.5,13.5 parent: 31 - type: Transform - uid: 3569 components: - - pos: 30.5,12.5 + - type: Transform + pos: 30.5,12.5 parent: 31 - type: Transform - uid: 3572 components: - - pos: 31.5,11.5 + - type: Transform + pos: 31.5,11.5 parent: 31 - type: Transform - uid: 3573 components: - - pos: 31.5,10.5 + - type: Transform + pos: 31.5,10.5 parent: 31 - type: Transform - uid: 3574 components: - - pos: 31.5,9.5 + - type: Transform + pos: 31.5,9.5 parent: 31 - type: Transform - uid: 3575 components: - - pos: 31.5,8.5 + - type: Transform + pos: 31.5,8.5 parent: 31 - type: Transform - uid: 3578 components: - - pos: 35.5,3.5 + - type: Transform + pos: 35.5,3.5 parent: 31 - type: Transform - uid: 3579 components: - - pos: 34.5,7.5 + - type: Transform + pos: 34.5,7.5 parent: 31 - type: Transform - uid: 3580 components: - - pos: 36.5,3.5 + - type: Transform + pos: 36.5,3.5 parent: 31 - type: Transform - uid: 3581 components: - - pos: 37.5,3.5 + - type: Transform + pos: 37.5,3.5 parent: 31 - type: Transform - uid: 3582 components: - - pos: 38.5,3.5 + - type: Transform + pos: 38.5,3.5 parent: 31 - type: Transform - uid: 3583 components: - - pos: 36.5,5.5 + - type: Transform + pos: 36.5,5.5 parent: 31 - type: Transform - uid: 3584 components: - - pos: 39.5,3.5 + - type: Transform + pos: 39.5,3.5 parent: 31 - type: Transform - uid: 3585 components: - - pos: 40.5,3.5 + - type: Transform + pos: 40.5,3.5 parent: 31 - type: Transform - uid: 3708 components: - - pos: 5.5,-19.5 + - type: Transform + pos: 5.5,-19.5 parent: 31 - type: Transform - uid: 3710 components: - - pos: 3.5,-19.5 + - type: Transform + pos: 3.5,-19.5 parent: 31 - type: Transform - uid: 3764 components: - - pos: 4.5,-19.5 + - type: Transform + pos: 4.5,-19.5 parent: 31 - type: Transform - uid: 3767 components: - - pos: 7.5,-19.5 + - type: Transform + pos: 7.5,-19.5 parent: 31 - type: Transform - uid: 3851 components: - - pos: -21.5,19.5 + - type: Transform + pos: -21.5,19.5 parent: 31 - type: Transform - uid: 3900 components: - - pos: 34.5,5.5 + - type: Transform + pos: 34.5,5.5 parent: 31 - type: Transform - uid: 3912 components: - - pos: -21.5,23.5 + - type: Transform + pos: -21.5,23.5 parent: 31 - type: Transform - uid: 4218 components: - - pos: 19.5,-33.5 + - type: Transform + pos: 19.5,-33.5 parent: 31 - type: Transform - uid: 4226 components: - - pos: 19.5,-28.5 + - type: Transform + pos: 19.5,-28.5 parent: 31 - type: Transform - uid: 4227 components: - - pos: 21.5,-30.5 + - type: Transform + pos: 21.5,-30.5 parent: 31 - type: Transform - uid: 4233 components: - - pos: -21.5,24.5 + - type: Transform + pos: -21.5,24.5 parent: 31 - type: Transform - uid: 4242 components: - - pos: 35.5,5.5 + - type: Transform + pos: 35.5,5.5 parent: 31 - type: Transform - uid: 4243 components: - - pos: 37.5,5.5 + - type: Transform + pos: 37.5,5.5 parent: 31 - type: Transform - uid: 4255 components: - - pos: -22.5,22.5 + - type: Transform + pos: -22.5,22.5 parent: 31 - type: Transform - uid: 4259 components: - - pos: 55.5,7.5 + - type: Transform + pos: 55.5,7.5 parent: 31 - type: Transform - uid: 4297 components: - - pos: 43.5,-4.5 + - type: Transform + pos: 43.5,-4.5 parent: 31 - type: Transform - uid: 4307 components: - - pos: -6.5,25.5 + - type: Transform + pos: -6.5,25.5 parent: 31 - type: Transform - uid: 4314 components: - - pos: 47.5,7.5 + - type: Transform + pos: 47.5,7.5 parent: 31 - type: Transform - uid: 4333 components: - - pos: 14.5,-27.5 + - type: Transform + pos: 14.5,-27.5 parent: 31 - type: Transform - uid: 4341 components: - - pos: 14.5,-28.5 + - type: Transform + pos: 14.5,-28.5 parent: 31 - type: Transform - uid: 4342 components: - - pos: 14.5,-29.5 + - type: Transform + pos: 14.5,-29.5 parent: 31 - type: Transform - uid: 4343 components: - - pos: 19.5,-35.5 + - type: Transform + pos: 19.5,-35.5 parent: 31 - type: Transform - uid: 4412 components: - - pos: 21.5,-27.5 + - type: Transform + pos: 21.5,-27.5 parent: 31 - type: Transform - uid: 4413 components: - - pos: 19.5,-27.5 + - type: Transform + pos: 19.5,-27.5 parent: 31 - type: Transform - uid: 4442 components: - - pos: 48.5,-1.5 + - type: Transform + pos: 48.5,-1.5 parent: 31 - type: Transform - uid: 4443 components: - - pos: 57.5,2.5 + - type: Transform + pos: 57.5,2.5 parent: 31 - type: Transform - uid: 4446 components: - - pos: 55.5,3.5 + - type: Transform + pos: 55.5,3.5 parent: 31 - type: Transform - uid: 4448 components: - - pos: 53.5,3.5 + - type: Transform + pos: 53.5,3.5 parent: 31 - type: Transform - uid: 4449 components: - - pos: 52.5,3.5 + - type: Transform + pos: 52.5,3.5 parent: 31 - type: Transform - uid: 4454 components: - - pos: 27.5,-27.5 + - type: Transform + pos: 27.5,-27.5 parent: 31 - type: Transform - uid: 4462 components: - - pos: 25.5,-27.5 + - type: Transform + pos: 25.5,-27.5 parent: 31 - type: Transform - uid: 4465 components: - - pos: 38.5,5.5 + - type: Transform + pos: 38.5,5.5 parent: 31 - type: Transform - uid: 4479 components: - - pos: -25.5,17.5 + - type: Transform + pos: -25.5,17.5 parent: 31 - type: Transform - uid: 4483 components: - - pos: 55.5,2.5 + - type: Transform + pos: 55.5,2.5 parent: 31 - type: Transform - uid: 4534 components: - - pos: -25.5,16.5 + - type: Transform + pos: -25.5,16.5 parent: 31 - type: Transform - uid: 4563 components: - - pos: 46.5,1.5 + - type: Transform + pos: 46.5,1.5 parent: 31 - type: Transform - uid: 4564 components: - - pos: 21.5,-35.5 + - type: Transform + pos: 21.5,-35.5 parent: 31 - type: Transform - uid: 4565 components: - - pos: 45.5,1.5 + - type: Transform + pos: 45.5,1.5 parent: 31 - type: Transform - uid: 4566 components: - - pos: 51.5,1.5 + - type: Transform + pos: 51.5,1.5 parent: 31 - type: Transform - uid: 4567 components: - - pos: 53.5,1.5 + - type: Transform + pos: 53.5,1.5 parent: 31 - type: Transform - uid: 4568 components: - - pos: 55.5,1.5 + - type: Transform + pos: 55.5,1.5 parent: 31 - type: Transform - uid: 4655 components: - - pos: 49.5,1.5 + - type: Transform + pos: 49.5,1.5 parent: 31 - type: Transform - uid: 4688 components: - - pos: 38.5,6.5 + - type: Transform + pos: 38.5,6.5 parent: 31 - type: Transform - uid: 4691 components: - - pos: 39.5,6.5 + - type: Transform + pos: 39.5,6.5 parent: 31 - type: Transform - uid: 4692 components: - - pos: 35.5,8.5 + - type: Transform + pos: 35.5,8.5 parent: 31 - type: Transform - uid: 4744 components: - - pos: 29.5,-32.5 + - type: Transform + pos: 29.5,-32.5 parent: 31 - type: Transform - uid: 4774 components: - - pos: 3.5,-24.5 + - type: Transform + pos: 3.5,-24.5 parent: 31 - type: Transform - uid: 4775 components: - - pos: 3.5,-26.5 + - type: Transform + pos: 3.5,-26.5 parent: 31 - type: Transform - uid: 4776 components: - - pos: 3.5,-25.5 + - type: Transform + pos: 3.5,-25.5 parent: 31 - type: Transform - uid: 4809 components: - - pos: 3.5,-27.5 + - type: Transform + pos: 3.5,-27.5 parent: 31 - type: Transform - uid: 4810 components: - - pos: 3.5,-28.5 + - type: Transform + pos: 3.5,-28.5 parent: 31 - type: Transform - uid: 4873 components: - - pos: 29.5,-27.5 + - type: Transform + pos: 29.5,-27.5 parent: 31 - type: Transform - uid: 4875 components: - - pos: 29.5,-35.5 + - type: Transform + pos: 29.5,-35.5 parent: 31 - type: Transform - uid: 4876 components: - - pos: 27.5,-35.5 + - type: Transform + pos: 27.5,-35.5 parent: 31 - type: Transform - uid: 4947 components: - - pos: -22.5,19.5 + - type: Transform + pos: -22.5,19.5 parent: 31 - type: Transform - uid: 4953 components: - - pos: -29.5,26.5 + - type: Transform + pos: -29.5,26.5 parent: 31 - type: Transform - uid: 4955 components: - - pos: -29.5,27.5 + - type: Transform + pos: -29.5,27.5 parent: 31 - type: Transform - uid: 4956 components: - - pos: -29.5,23.5 + - type: Transform + pos: -29.5,23.5 parent: 31 - type: Transform - uid: 4960 components: - - pos: -33.5,27.5 + - type: Transform + pos: -33.5,27.5 parent: 31 - type: Transform - uid: 4992 components: - - pos: -22.5,20.5 + - type: Transform + pos: -22.5,20.5 parent: 31 - type: Transform - uid: 4994 components: - - pos: -25.5,15.5 + - type: Transform + pos: -25.5,15.5 parent: 31 - type: Transform - uid: 4995 components: - - pos: -25.5,19.5 + - type: Transform + pos: -25.5,19.5 parent: 31 - type: Transform - uid: 5007 components: - - pos: 35.5,9.5 + - type: Transform + pos: 35.5,9.5 parent: 31 - type: Transform - uid: 5028 components: - - pos: 35.5,10.5 + - type: Transform + pos: 35.5,10.5 parent: 31 - type: Transform - uid: 5032 components: - - pos: 35.5,11.5 + - type: Transform + pos: 35.5,11.5 parent: 31 - type: Transform - uid: 5033 components: - - pos: 35.5,12.5 + - type: Transform + pos: 35.5,12.5 parent: 31 - type: Transform - uid: 5038 components: - - pos: -31.5,25.5 + - type: Transform + pos: -31.5,25.5 parent: 31 - type: Transform - uid: 5039 components: - - pos: -35.5,27.5 + - type: Transform + pos: -35.5,27.5 parent: 31 - type: Transform - uid: 5040 components: - - pos: -29.5,25.5 + - type: Transform + pos: -29.5,25.5 parent: 31 - type: Transform - uid: 5041 components: - - pos: -28.5,24.5 + - type: Transform + pos: -28.5,24.5 parent: 31 - type: Transform - uid: 5042 components: - - pos: -31.5,26.5 + - type: Transform + pos: -31.5,26.5 parent: 31 - type: Transform - uid: 5043 components: - - pos: -31.5,27.5 + - type: Transform + pos: -31.5,27.5 parent: 31 - type: Transform - uid: 5051 components: - - pos: -29.5,21.5 + - type: Transform + pos: -29.5,21.5 parent: 31 - type: Transform - uid: 5052 components: - - pos: -31.5,21.5 + - type: Transform + pos: -31.5,21.5 parent: 31 - type: Transform - uid: 5053 components: - - pos: -31.5,22.5 + - type: Transform + pos: -31.5,22.5 parent: 31 - type: Transform - uid: 5054 components: - - pos: -33.5,26.5 + - type: Transform + pos: -33.5,26.5 parent: 31 - type: Transform - uid: 5055 components: - - pos: -33.5,25.5 + - type: Transform + pos: -33.5,25.5 parent: 31 - type: Transform - uid: 5098 components: - - pos: 36.5,12.5 + - type: Transform + pos: 36.5,12.5 parent: 31 - type: Transform - uid: 5200 components: - - pos: -23.5,25.5 + - type: Transform + pos: -23.5,25.5 parent: 31 - type: Transform - uid: 5201 components: - - pos: -22.5,25.5 + - type: Transform + pos: -22.5,25.5 parent: 31 - type: Transform - uid: 5202 components: - - pos: -23.5,24.5 + - type: Transform + pos: -23.5,24.5 parent: 31 - type: Transform - uid: 5203 components: - - pos: -24.5,24.5 + - type: Transform + pos: -24.5,24.5 parent: 31 - type: Transform - uid: 5204 components: - - pos: -25.5,24.5 + - type: Transform + pos: -25.5,24.5 parent: 31 - type: Transform - uid: 5205 components: - - pos: -26.5,24.5 + - type: Transform + pos: -26.5,24.5 parent: 31 - type: Transform - uid: 5206 components: - - pos: -27.5,24.5 + - type: Transform + pos: -27.5,24.5 parent: 31 - type: Transform - uid: 5209 components: - - pos: -20.5,19.5 + - type: Transform + pos: -20.5,19.5 parent: 31 - type: Transform - uid: 5210 components: - - pos: -19.5,19.5 + - type: Transform + pos: -19.5,19.5 parent: 31 - type: Transform - uid: 5213 components: - - pos: -21.5,25.5 + - type: Transform + pos: -21.5,25.5 parent: 31 - type: Transform - uid: 5259 components: - - pos: 15.5,-26.5 + - type: Transform + pos: 15.5,-26.5 parent: 31 - type: Transform - uid: 5260 components: - - pos: 15.5,-27.5 + - type: Transform + pos: 15.5,-27.5 parent: 31 - type: Transform - uid: 5262 components: - - pos: 15.5,-29.5 + - type: Transform + pos: 15.5,-29.5 parent: 31 - type: Transform - uid: 5263 components: - - pos: 15.5,-30.5 + - type: Transform + pos: 15.5,-30.5 parent: 31 - type: Transform - uid: 5264 components: - - pos: 15.5,-31.5 + - type: Transform + pos: 15.5,-31.5 parent: 31 - type: Transform - uid: 5299 components: - - pos: 16.5,-31.5 + - type: Transform + pos: 16.5,-31.5 parent: 31 - type: Transform - uid: 5300 components: - - pos: 17.5,-31.5 + - type: Transform + pos: 17.5,-31.5 parent: 31 - type: Transform - uid: 5301 components: - - pos: 18.5,-31.5 + - type: Transform + pos: 18.5,-31.5 parent: 31 - type: Transform - uid: 5307 components: - - pos: 37.5,12.5 + - type: Transform + pos: 37.5,12.5 parent: 31 - type: Transform - uid: 5706 components: - - pos: -19.5,-23.5 + - type: Transform + pos: -19.5,-23.5 parent: 31 - type: Transform - uid: 5729 components: - - pos: -19.5,-21.5 + - type: Transform + pos: -19.5,-21.5 parent: 31 - type: Transform - uid: 5730 components: - - pos: -19.5,-20.5 + - type: Transform + pos: -19.5,-20.5 parent: 31 - type: Transform - uid: 5731 components: - - pos: -19.5,-19.5 + - type: Transform + pos: -19.5,-19.5 parent: 31 - type: Transform - uid: 5732 components: - - pos: -20.5,-18.5 + - type: Transform + pos: -20.5,-18.5 parent: 31 - type: Transform - uid: 5733 components: - - pos: -22.5,-18.5 + - type: Transform + pos: -22.5,-18.5 parent: 31 - type: Transform - uid: 5734 components: - - pos: -24.5,-18.5 + - type: Transform + pos: -24.5,-18.5 parent: 31 - type: Transform - uid: 5735 components: - - pos: -27.5,-18.5 + - type: Transform + pos: -27.5,-18.5 parent: 31 - type: Transform - uid: 5738 components: - - pos: -11.5,-34.5 + - type: Transform + pos: -11.5,-34.5 parent: 31 - type: Transform - uid: 5739 components: - - pos: -11.5,-35.5 + - type: Transform + pos: -11.5,-35.5 parent: 31 - type: Transform - uid: 5740 components: - - pos: -19.5,-24.5 + - type: Transform + pos: -19.5,-24.5 parent: 31 - type: Transform - uid: 5741 components: - - pos: -19.5,-25.5 + - type: Transform + pos: -19.5,-25.5 parent: 31 - type: Transform - uid: 5742 components: - - pos: -19.5,-26.5 + - type: Transform + pos: -19.5,-26.5 parent: 31 - type: Transform - uid: 5743 components: - - pos: -17.5,-35.5 + - type: Transform + pos: -17.5,-35.5 parent: 31 - type: Transform - uid: 5747 components: - - pos: -11.5,-33.5 + - type: Transform + pos: -11.5,-33.5 parent: 31 - type: Transform - uid: 5763 components: - - pos: -23.5,-18.5 + - type: Transform + pos: -23.5,-18.5 parent: 31 - type: Transform - uid: 5893 components: - - pos: -4.5,25.5 + - type: Transform + pos: -4.5,25.5 parent: 31 - type: Transform - uid: 6198 components: - - pos: 42.5,6.5 + - type: Transform + pos: 42.5,6.5 parent: 31 - type: Transform - uid: 6232 components: - - pos: 57.5,1.5 + - type: Transform + pos: 57.5,1.5 parent: 31 - type: Transform - uid: 6282 components: - - pos: 55.5,3.5 + - type: Transform + pos: 55.5,3.5 parent: 31 - type: Transform - uid: 6297 components: - - pos: 56.5,2.5 + - type: Transform + pos: 56.5,2.5 parent: 31 - type: Transform - uid: 6301 components: - - pos: 43.5,1.5 + - type: Transform + pos: 43.5,1.5 parent: 31 - type: Transform - uid: 6302 components: - - pos: 44.5,1.5 + - type: Transform + pos: 44.5,1.5 parent: 31 - type: Transform - uid: 6304 components: - - pos: 55.5,0.5 + - type: Transform + pos: 55.5,0.5 parent: 31 - type: Transform - uid: 6305 components: - - pos: 47.5,1.5 + - type: Transform + pos: 47.5,1.5 parent: 31 - type: Transform - uid: 6312 components: - - pos: 54.5,1.5 + - type: Transform + pos: 54.5,1.5 parent: 31 - type: Transform - uid: 6313 components: - - pos: 52.5,1.5 + - type: Transform + pos: 52.5,1.5 parent: 31 - type: Transform - uid: 6314 components: - - pos: 50.5,1.5 + - type: Transform + pos: 50.5,1.5 parent: 31 - type: Transform - uid: 6320 components: - - pos: 48.5,1.5 + - type: Transform + pos: 48.5,1.5 parent: 31 - type: Transform - uid: 6352 components: - - pos: 66.5,-4.5 + - type: Transform + pos: 66.5,-4.5 parent: 31 - type: Transform - uid: 6360 components: - - pos: 64.5,0.5 + - type: Transform + pos: 64.5,0.5 parent: 31 - type: Transform - uid: 6365 components: - - pos: 48.5,5.5 + - type: Transform + pos: 48.5,5.5 parent: 31 - type: Transform - uid: 6409 components: - - pos: 64.5,-1.5 + - type: Transform + pos: 64.5,-1.5 parent: 31 - type: Transform - uid: 6410 components: - - pos: 48.5,11.5 + - type: Transform + pos: 48.5,11.5 parent: 31 - type: Transform - uid: 6439 components: - - pos: 68.5,-4.5 + - type: Transform + pos: 68.5,-4.5 parent: 31 - type: Transform - uid: 6465 components: - - pos: 78.5,6.5 + - type: Transform + pos: 78.5,6.5 parent: 31 - type: Transform - uid: 6476 components: - - pos: 31.5,12.5 + - type: Transform + pos: 31.5,12.5 parent: 31 - type: Transform - uid: 6490 components: - - pos: 69.5,-4.5 + - type: Transform + pos: 69.5,-4.5 parent: 31 - type: Transform - uid: 6530 components: - - pos: 48.5,12.5 + - type: Transform + pos: 48.5,12.5 parent: 31 - type: Transform - uid: 6571 components: - - pos: 56.5,2.5 + - type: Transform + pos: 56.5,2.5 parent: 31 - type: Transform - uid: 6604 components: - - pos: 64.5,-4.5 + - type: Transform + pos: 64.5,-4.5 parent: 31 - type: Transform - uid: 6610 components: - - pos: 49.5,5.5 + - type: Transform + pos: 49.5,5.5 parent: 31 - type: Transform - uid: 6619 components: - - pos: 64.5,-0.5 + - type: Transform + pos: 64.5,-0.5 parent: 31 - type: Transform - uid: 6635 components: - - pos: 48.5,10.5 + - type: Transform + pos: 48.5,10.5 parent: 31 - type: Transform - uid: 6642 components: - - pos: 78.5,-3.5 + - type: Transform + pos: 78.5,-3.5 parent: 31 - type: Transform - uid: 6749 components: - - pos: 71.5,-4.5 + - type: Transform + pos: 71.5,-4.5 parent: 31 - type: Transform - uid: 6817 components: - - pos: 47.5,5.5 + - type: Transform + pos: 47.5,5.5 parent: 31 - type: Transform - uid: 6818 components: - - pos: 45.5,7.5 + - type: Transform + pos: 45.5,7.5 parent: 31 - type: Transform - uid: 6819 components: - - pos: 50.5,5.5 + - type: Transform + pos: 50.5,5.5 parent: 31 - type: Transform - uid: 6820 components: - - pos: 48.5,9.5 + - type: Transform + pos: 48.5,9.5 parent: 31 - type: Transform - uid: 6821 components: - - pos: 44.5,6.5 + - type: Transform + pos: 44.5,6.5 parent: 31 - type: Transform - uid: 6823 components: - - pos: 45.5,5.5 + - type: Transform + pos: 45.5,5.5 parent: 31 - type: Transform - uid: 6830 components: - - pos: 74.5,-4.5 + - type: Transform + pos: 74.5,-4.5 parent: 31 - type: Transform - uid: 6833 components: - - pos: 44.5,7.5 + - type: Transform + pos: 44.5,7.5 parent: 31 - type: Transform - uid: 6834 components: - - pos: 48.5,8.5 + - type: Transform + pos: 48.5,8.5 parent: 31 - type: Transform - uid: 6835 components: - - pos: 48.5,7.5 + - type: Transform + pos: 48.5,7.5 parent: 31 - type: Transform - uid: 6842 components: - - pos: 78.5,-4.5 + - type: Transform + pos: 78.5,-4.5 parent: 31 - type: Transform - uid: 6846 components: - - pos: 78.5,5.5 + - type: Transform + pos: 78.5,5.5 parent: 31 - type: Transform - uid: 6849 components: - - pos: 46.5,7.5 + - type: Transform + pos: 46.5,7.5 parent: 31 - type: Transform - uid: 6850 components: - - pos: 78.5,4.5 + - type: Transform + pos: 78.5,4.5 parent: 31 - type: Transform - uid: 6854 components: - - pos: 78.5,-0.5 + - type: Transform + pos: 78.5,-0.5 parent: 31 - type: Transform - uid: 6855 components: - - pos: 78.5,-1.5 + - type: Transform + pos: 78.5,-1.5 parent: 31 - type: Transform - uid: 6864 components: - - pos: 78.5,2.5 + - type: Transform + pos: 78.5,2.5 parent: 31 - type: Transform - uid: 6866 components: - - pos: 78.5,-2.5 + - type: Transform + pos: 78.5,-2.5 parent: 31 - type: Transform - uid: 6867 components: - - pos: 77.5,-4.5 + - type: Transform + pos: 77.5,-4.5 parent: 31 - type: Transform - uid: 6868 components: - - pos: 76.5,-4.5 + - type: Transform + pos: 76.5,-4.5 parent: 31 - type: Transform - uid: 6869 components: - - pos: 75.5,-4.5 + - type: Transform + pos: 75.5,-4.5 parent: 31 - type: Transform - uid: 6871 components: - - pos: 72.5,-4.5 + - type: Transform + pos: 72.5,-4.5 parent: 31 - type: Transform - uid: 6872 components: - - pos: 73.5,-4.5 + - type: Transform + pos: 73.5,-4.5 parent: 31 - type: Transform - uid: 6911 components: - - pos: 41.5,6.5 + - type: Transform + pos: 41.5,6.5 parent: 31 - type: Transform - uid: 6912 components: - - pos: 78.5,3.5 + - type: Transform + pos: 78.5,3.5 parent: 31 - type: Transform - uid: 6913 components: - - pos: 46.5,5.5 + - type: Transform + pos: 46.5,5.5 parent: 31 - type: Transform - uid: 6914 components: - - pos: 44.5,5.5 + - type: Transform + pos: 44.5,5.5 parent: 31 - type: Transform - uid: 6915 components: - - pos: 78.5,1.5 + - type: Transform + pos: 78.5,1.5 parent: 31 - type: Transform - uid: 6917 components: - - pos: 78.5,0.5 + - type: Transform + pos: 78.5,0.5 parent: 31 - type: Transform - uid: 6918 components: - - pos: 67.5,-4.5 + - type: Transform + pos: 67.5,-4.5 parent: 31 - type: Transform - uid: 6934 components: - - pos: 40.5,5.5 + - type: Transform + pos: 40.5,5.5 parent: 31 - type: Transform - uid: 6935 components: - - pos: 40.5,6.5 + - type: Transform + pos: 40.5,6.5 parent: 31 - type: Transform - uid: 6936 components: - - pos: 42.5,5.5 + - type: Transform + pos: 42.5,5.5 parent: 31 - type: Transform - uid: 6937 components: - - pos: 41.5,5.5 + - type: Transform + pos: 41.5,5.5 parent: 31 - type: Transform - uid: 6938 components: - - pos: 42.5,4.5 + - type: Transform + pos: 42.5,4.5 parent: 31 - type: Transform - uid: 6940 components: - - pos: 40.5,4.5 + - type: Transform + pos: 40.5,4.5 parent: 31 - type: Transform - uid: 6942 components: - - pos: 50.5,3.5 + - type: Transform + pos: 50.5,3.5 parent: 31 - type: Transform - uid: 6946 components: - - pos: 57.5,0.5 + - type: Transform + pos: 57.5,0.5 parent: 31 - type: Transform - uid: 7173 components: - - pos: 50.5,4.5 + - type: Transform + pos: 50.5,4.5 parent: 31 - type: Transform - uid: 7174 components: - - pos: 43.5,6.5 + - type: Transform + pos: 43.5,6.5 parent: 31 - type: Transform - uid: 7186 components: - - pos: 64.5,2.5 + - type: Transform + pos: 64.5,2.5 parent: 31 - type: Transform - uid: 7187 components: - - pos: 64.5,6.5 + - type: Transform + pos: 64.5,6.5 parent: 31 - type: Transform - uid: 7188 components: - - pos: 64.5,7.5 + - type: Transform + pos: 64.5,7.5 parent: 31 - type: Transform - uid: 7189 components: - - pos: 64.5,5.5 + - type: Transform + pos: 64.5,5.5 parent: 31 - type: Transform - uid: 7190 components: - - pos: 65.5,9.5 + - type: Transform + pos: 65.5,9.5 parent: 31 - type: Transform - uid: 7191 components: - - pos: 64.5,9.5 + - type: Transform + pos: 64.5,9.5 parent: 31 - type: Transform - uid: 7192 components: - - pos: 64.5,3.5 + - type: Transform + pos: 64.5,3.5 parent: 31 - type: Transform - uid: 7193 components: - - pos: 66.5,9.5 + - type: Transform + pos: 66.5,9.5 parent: 31 - type: Transform - uid: 7194 components: - - pos: 67.5,9.5 + - type: Transform + pos: 67.5,9.5 parent: 31 - type: Transform - uid: 7195 components: - - pos: 68.5,9.5 + - type: Transform + pos: 68.5,9.5 parent: 31 - type: Transform - uid: 7196 components: - - pos: 70.5,9.5 + - type: Transform + pos: 70.5,9.5 parent: 31 - type: Transform - uid: 7197 components: - - pos: 71.5,9.5 + - type: Transform + pos: 71.5,9.5 parent: 31 - type: Transform - uid: 7198 components: - - pos: 73.5,9.5 + - type: Transform + pos: 73.5,9.5 parent: 31 - type: Transform - uid: 7199 components: - - pos: 74.5,9.5 + - type: Transform + pos: 74.5,9.5 parent: 31 - type: Transform - uid: 7200 components: - - pos: 75.5,9.5 + - type: Transform + pos: 75.5,9.5 parent: 31 - type: Transform - uid: 7201 components: - - pos: 77.5,9.5 + - type: Transform + pos: 77.5,9.5 parent: 31 - type: Transform - uid: 7202 components: - - pos: 78.5,7.5 + - type: Transform + pos: 78.5,7.5 parent: 31 - type: Transform - uid: 7203 components: - - pos: 78.5,9.5 + - type: Transform + pos: 78.5,9.5 parent: 31 - type: Transform - uid: 7204 components: - - pos: 78.5,8.5 + - type: Transform + pos: 78.5,8.5 parent: 31 - type: Transform - uid: 7213 components: - - pos: 64.5,4.5 + - type: Transform + pos: 64.5,4.5 parent: 31 - type: Transform - uid: 7214 components: - - pos: 69.5,9.5 + - type: Transform + pos: 69.5,9.5 parent: 31 - type: Transform - uid: 7215 components: - - pos: 72.5,9.5 + - type: Transform + pos: 72.5,9.5 parent: 31 - type: Transform - uid: 7216 components: - - pos: 76.5,9.5 + - type: Transform + pos: 76.5,9.5 parent: 31 - type: Transform - uid: 7217 components: - - pos: 64.5,8.5 + - type: Transform + pos: 64.5,8.5 parent: 31 - type: Transform - uid: 7370 components: - - pos: 22.5,-13.5 + - type: Transform + pos: 22.5,-13.5 parent: 31 - type: Transform - uid: 7371 components: - - pos: 0.5,-8.5 + - type: Transform + pos: 0.5,-8.5 parent: 31 - type: Transform - uid: 7384 components: - - pos: -12.5,-11.5 + - type: Transform + pos: -12.5,-11.5 parent: 31 - type: Transform - uid: 7385 components: - - pos: -27.5,-16.5 + - type: Transform + pos: -27.5,-16.5 parent: 31 - type: Transform - uid: 7415 components: - - pos: -19.5,-18.5 + - type: Transform + pos: -19.5,-18.5 parent: 31 - type: Transform - uid: 7416 components: - - pos: -19.5,-35.5 + - type: Transform + pos: -19.5,-35.5 parent: 31 - type: Transform - uid: 7417 components: - - pos: -19.5,-32.5 + - type: Transform + pos: -19.5,-32.5 parent: 31 - type: Transform - uid: 7950 components: - - pos: 55.5,4.5 + - type: Transform + pos: 55.5,4.5 parent: 31 - type: Transform - uid: 8131 components: - - pos: 57.5,7.5 + - type: Transform + pos: 57.5,7.5 parent: 31 - type: Transform - uid: 8132 components: - - pos: 56.5,7.5 + - type: Transform + pos: 56.5,7.5 parent: 31 - type: Transform - uid: 8134 components: - - pos: 57.5,3.5 + - type: Transform + pos: 57.5,3.5 parent: 31 - type: Transform - uid: 8135 components: - - pos: 59.5,7.5 + - type: Transform + pos: 59.5,7.5 parent: 31 - type: Transform - uid: 8136 components: - - pos: 58.5,7.5 + - type: Transform + pos: 58.5,7.5 parent: 31 - type: Transform - uid: 8140 components: - - pos: 60.5,7.5 + - type: Transform + pos: 60.5,7.5 parent: 31 - type: Transform - uid: 8141 components: - - pos: 61.5,7.5 + - type: Transform + pos: 61.5,7.5 parent: 31 - type: Transform - uid: 8142 components: - - pos: 62.5,7.5 + - type: Transform + pos: 62.5,7.5 parent: 31 - type: Transform - uid: 8143 components: - - pos: 63.5,7.5 + - type: Transform + pos: 63.5,7.5 parent: 31 - type: Transform - uid: 8303 components: - - pos: 38.5,12.5 + - type: Transform + pos: 38.5,12.5 parent: 31 - type: Transform - uid: 8602 components: - - pos: -30.5,-32.5 + - type: Transform + pos: -30.5,-32.5 parent: 31 - type: Transform - uid: 8603 components: - - pos: -29.5,-32.5 + - type: Transform + pos: -29.5,-32.5 parent: 31 - type: Transform - uid: 8604 components: - - pos: -28.5,-32.5 + - type: Transform + pos: -28.5,-32.5 parent: 31 - type: Transform - uid: 8605 components: - - pos: -28.5,-33.5 + - type: Transform + pos: -28.5,-33.5 parent: 31 - type: Transform - uid: 8606 components: - - pos: -28.5,-34.5 + - type: Transform + pos: -28.5,-34.5 parent: 31 - type: Transform - uid: 8607 components: - - pos: -29.5,-34.5 + - type: Transform + pos: -29.5,-34.5 parent: 31 - type: Transform - uid: 8608 components: - - pos: -31.5,-34.5 + - type: Transform + pos: -31.5,-34.5 parent: 31 - type: Transform - uid: 8609 components: - - pos: -30.5,-34.5 + - type: Transform + pos: -30.5,-34.5 parent: 31 - type: Transform - uid: 8610 components: - - pos: -32.5,-34.5 + - type: Transform + pos: -32.5,-34.5 parent: 31 - type: Transform - uid: 8611 components: - - pos: -33.5,-34.5 + - type: Transform + pos: -33.5,-34.5 parent: 31 - type: Transform - uid: 8612 components: - - pos: -34.5,-34.5 + - type: Transform + pos: -34.5,-34.5 parent: 31 - type: Transform - uid: 8613 components: - - pos: -35.5,-34.5 + - type: Transform + pos: -35.5,-34.5 parent: 31 - type: Transform - uid: 8614 components: - - pos: -35.5,-33.5 + - type: Transform + pos: -35.5,-33.5 parent: 31 - type: Transform - uid: 8615 components: - - pos: -35.5,-32.5 + - type: Transform + pos: -35.5,-32.5 parent: 31 - type: Transform - uid: 8616 components: - - pos: -35.5,-31.5 + - type: Transform + pos: -35.5,-31.5 parent: 31 - type: Transform - uid: 8617 components: - - pos: -36.5,-31.5 + - type: Transform + pos: -36.5,-31.5 parent: 31 - type: Transform - uid: 8618 components: - - pos: -37.5,-31.5 + - type: Transform + pos: -37.5,-31.5 parent: 31 - type: Transform - uid: 8619 components: - - pos: -38.5,-31.5 + - type: Transform + pos: -38.5,-31.5 parent: 31 - type: Transform - uid: 8620 components: - - pos: -38.5,-30.5 + - type: Transform + pos: -38.5,-30.5 parent: 31 - type: Transform - uid: 8621 components: - - pos: -38.5,-29.5 + - type: Transform + pos: -38.5,-29.5 parent: 31 - type: Transform - uid: 8622 components: - - pos: -38.5,-28.5 + - type: Transform + pos: -38.5,-28.5 parent: 31 - type: Transform - uid: 8623 components: - - pos: -39.5,-28.5 + - type: Transform + pos: -39.5,-28.5 parent: 31 - type: Transform - uid: 8624 components: - - pos: -40.5,-28.5 + - type: Transform + pos: -40.5,-28.5 parent: 31 - type: Transform - uid: 8625 components: - - pos: -41.5,-28.5 + - type: Transform + pos: -41.5,-28.5 parent: 31 - type: Transform - uid: 8626 components: - - pos: -42.5,-28.5 + - type: Transform + pos: -42.5,-28.5 parent: 31 - type: Transform - uid: 8627 components: - - pos: -42.5,-29.5 + - type: Transform + pos: -42.5,-29.5 parent: 31 - type: Transform - uid: 8628 components: - - pos: -42.5,-30.5 + - type: Transform + pos: -42.5,-30.5 parent: 31 - type: Transform - uid: 8629 components: - - pos: -42.5,-31.5 + - type: Transform + pos: -42.5,-31.5 parent: 31 - type: Transform - uid: 8630 components: - - pos: -40.5,-31.5 + - type: Transform + pos: -40.5,-31.5 parent: 31 - type: Transform - uid: 8631 components: - - pos: -40.5,-30.5 + - type: Transform + pos: -40.5,-30.5 parent: 31 - type: Transform - uid: 8632 components: - - pos: -40.5,-29.5 + - type: Transform + pos: -40.5,-29.5 parent: 31 - type: Transform - uid: 8633 components: - - pos: -40.5,-27.5 + - type: Transform + pos: -40.5,-27.5 parent: 31 - type: Transform - uid: 8634 components: - - pos: -40.5,-26.5 + - type: Transform + pos: -40.5,-26.5 parent: 31 - type: Transform - uid: 8635 components: - - pos: -40.5,-25.5 + - type: Transform + pos: -40.5,-25.5 parent: 31 - type: Transform - uid: 8636 components: - - pos: -42.5,-27.5 + - type: Transform + pos: -42.5,-27.5 parent: 31 - type: Transform - uid: 8637 components: - - pos: -42.5,-26.5 + - type: Transform + pos: -42.5,-26.5 parent: 31 - type: Transform - uid: 8638 components: - - pos: -42.5,-25.5 + - type: Transform + pos: -42.5,-25.5 parent: 31 - type: Transform - uid: 8639 components: - - pos: -32.5,-35.5 + - type: Transform + pos: -32.5,-35.5 parent: 31 - type: Transform - uid: 8640 components: - - pos: -32.5,-36.5 + - type: Transform + pos: -32.5,-36.5 parent: 31 - type: Transform - uid: 8641 components: - - pos: -32.5,-37.5 + - type: Transform + pos: -32.5,-37.5 parent: 31 - type: Transform - uid: 8642 components: - - pos: -32.5,-38.5 + - type: Transform + pos: -32.5,-38.5 parent: 31 - type: Transform - uid: 8643 components: - - pos: -33.5,-38.5 + - type: Transform + pos: -33.5,-38.5 parent: 31 - type: Transform - uid: 8644 components: - - pos: -34.5,-38.5 + - type: Transform + pos: -34.5,-38.5 parent: 31 - type: Transform - uid: 8645 components: - - pos: -35.5,-38.5 + - type: Transform + pos: -35.5,-38.5 parent: 31 - type: Transform - uid: 8646 components: - - pos: -31.5,-38.5 + - type: Transform + pos: -31.5,-38.5 parent: 31 - type: Transform - uid: 8647 components: - - pos: -30.5,-38.5 + - type: Transform + pos: -30.5,-38.5 parent: 31 - type: Transform - uid: 8648 components: - - pos: -29.5,-38.5 + - type: Transform + pos: -29.5,-38.5 parent: 31 - type: Transform - uid: 8649 components: - - pos: -29.5,-36.5 + - type: Transform + pos: -29.5,-36.5 parent: 31 - type: Transform - uid: 8650 components: - - pos: -30.5,-36.5 + - type: Transform + pos: -30.5,-36.5 parent: 31 - type: Transform - uid: 8651 components: - - pos: -31.5,-36.5 + - type: Transform + pos: -31.5,-36.5 parent: 31 - type: Transform - uid: 8652 components: - - pos: -33.5,-36.5 + - type: Transform + pos: -33.5,-36.5 parent: 31 - type: Transform - uid: 8653 components: - - pos: -34.5,-36.5 + - type: Transform + pos: -34.5,-36.5 parent: 31 - type: Transform - uid: 8654 components: - - pos: -35.5,-36.5 + - type: Transform + pos: -35.5,-36.5 parent: 31 - type: Transform - uid: 8665 components: - - pos: -30.5,-31.5 + - type: Transform + pos: -30.5,-31.5 parent: 31 - type: Transform - uid: 8666 components: - - pos: -31.5,-31.5 + - type: Transform + pos: -31.5,-31.5 parent: 31 - type: Transform - uid: 9000 components: - - pos: -23.5,19.5 + - type: Transform + pos: -23.5,19.5 parent: 31 - type: Transform - uid: 9077 components: - - pos: 38.5,14.5 + - type: Transform + pos: 38.5,14.5 parent: 31 - type: Transform - uid: 9079 components: - - pos: 38.5,13.5 + - type: Transform + pos: 38.5,13.5 parent: 31 - type: Transform - uid: 9166 components: - - pos: 5.5,13.5 + - type: Transform + pos: 5.5,13.5 parent: 31 - type: Transform - uid: 9196 components: - - pos: 54.5,7.5 + - type: Transform + pos: 54.5,7.5 parent: 31 - type: Transform - uid: 9390 components: - - pos: 4.5,13.5 + - type: Transform + pos: 4.5,13.5 parent: 31 - type: Transform - uid: 9393 components: - - pos: 13.5,10.5 + - type: Transform + pos: 13.5,10.5 parent: 31 - type: Transform - uid: 9394 components: - - pos: 13.5,9.5 + - type: Transform + pos: 13.5,9.5 parent: 31 - type: Transform - uid: 9474 components: - - pos: 13.5,8.5 + - type: Transform + pos: 13.5,8.5 parent: 31 - type: Transform - uid: 9481 components: - - pos: 13.5,7.5 + - type: Transform + pos: 13.5,7.5 parent: 31 - type: Transform - uid: 9482 components: - - pos: 13.5,6.5 + - type: Transform + pos: 13.5,6.5 parent: 31 - type: Transform - uid: 9483 components: - - pos: 13.5,5.5 + - type: Transform + pos: 13.5,5.5 parent: 31 - type: Transform - uid: 9484 components: - - pos: 13.5,4.5 + - type: Transform + pos: 13.5,4.5 parent: 31 - type: Transform - uid: 9485 components: - - pos: 12.5,4.5 + - type: Transform + pos: 12.5,4.5 parent: 31 - type: Transform - uid: 9486 components: - - pos: 11.5,4.5 + - type: Transform + pos: 11.5,4.5 parent: 31 - type: Transform - uid: 9487 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 31 - type: Transform - uid: 9488 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 31 - type: Transform - uid: 9489 components: - - pos: 8.5,4.5 + - type: Transform + pos: 8.5,4.5 parent: 31 - type: Transform - uid: 9490 components: - - pos: 7.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 31 - type: Transform - uid: 9491 components: - - pos: 6.5,4.5 + - type: Transform + pos: 6.5,4.5 parent: 31 - type: Transform - uid: 9492 components: - - pos: 5.5,4.5 + - type: Transform + pos: 5.5,4.5 parent: 31 - type: Transform - uid: 9493 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 31 - type: Transform - uid: 9494 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 31 - type: Transform - uid: 9495 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 31 - type: Transform - uid: 9496 components: - - pos: 3.5,6.5 + - type: Transform + pos: 3.5,6.5 parent: 31 - type: Transform - uid: 9497 components: - - pos: 3.5,7.5 + - type: Transform + pos: 3.5,7.5 parent: 31 - type: Transform - uid: 9498 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 31 - type: Transform - uid: 9499 components: - - pos: 3.5,9.5 + - type: Transform + pos: 3.5,9.5 parent: 31 - type: Transform - uid: 9500 components: - - pos: 3.5,10.5 + - type: Transform + pos: 3.5,10.5 parent: 31 - type: Transform - uid: 9501 components: - - pos: 3.5,11.5 + - type: Transform + pos: 3.5,11.5 parent: 31 - type: Transform - uid: 9502 components: - - pos: 3.5,12.5 + - type: Transform + pos: 3.5,12.5 parent: 31 - type: Transform - uid: 9503 components: - - pos: 3.5,13.5 + - type: Transform + pos: 3.5,13.5 parent: 31 - type: Transform - uid: 9509 components: - - pos: 43.5,0.5 + - type: Transform + pos: 43.5,0.5 parent: 31 - type: Transform - uid: 9591 components: - - pos: 25.5,-13.5 + - type: Transform + pos: 25.5,-13.5 parent: 31 - type: Transform - uid: 9593 components: - - pos: 23.5,-13.5 + - type: Transform + pos: 23.5,-13.5 parent: 31 - type: Transform - uid: 9594 components: - - pos: 21.5,-13.5 + - type: Transform + pos: 21.5,-13.5 parent: 31 - type: Transform - uid: 9710 components: - - pos: -7.5,25.5 + - type: Transform + pos: -7.5,25.5 parent: 31 - type: Transform - uid: 9788 components: - - pos: 24.5,-13.5 + - type: Transform + pos: 24.5,-13.5 parent: 31 - type: Transform - uid: 10230 components: - - pos: 53.5,5.5 + - type: Transform + pos: 53.5,5.5 parent: 31 - type: Transform - uid: 10236 components: - - pos: 53.5,6.5 + - type: Transform + pos: 53.5,6.5 parent: 31 - type: Transform - uid: 10256 components: - - pos: 49.5,0.5 + - type: Transform + pos: 49.5,0.5 parent: 31 - type: Transform - uid: 10257 components: - - pos: 49.5,-0.5 + - type: Transform + pos: 49.5,-0.5 parent: 31 - type: Transform - uid: 10258 components: - - pos: 49.5,-1.5 + - type: Transform + pos: 49.5,-1.5 parent: 31 - type: Transform - uid: 10259 components: - - pos: 49.5,-2.5 + - type: Transform + pos: 49.5,-2.5 parent: 31 - type: Transform - uid: 10260 components: - - pos: 49.5,-3.5 + - type: Transform + pos: 49.5,-3.5 parent: 31 - type: Transform - uid: 10261 components: - - pos: 50.5,-3.5 + - type: Transform + pos: 50.5,-3.5 parent: 31 - type: Transform - uid: 10262 components: - - pos: 51.5,-3.5 + - type: Transform + pos: 51.5,-3.5 parent: 31 - type: Transform - uid: 10263 components: - - pos: 52.5,-3.5 + - type: Transform + pos: 52.5,-3.5 parent: 31 - type: Transform - uid: 10264 components: - - pos: 52.5,-2.5 + - type: Transform + pos: 52.5,-2.5 parent: 31 - type: Transform - uid: 10265 components: - - pos: 52.5,-1.5 + - type: Transform + pos: 52.5,-1.5 parent: 31 - type: Transform - uid: 10266 components: - - pos: 52.5,-0.5 + - type: Transform + pos: 52.5,-0.5 parent: 31 - type: Transform - uid: 10267 components: - - pos: 53.5,-0.5 + - type: Transform + pos: 53.5,-0.5 parent: 31 - type: Transform - uid: 10713 components: - - pos: -15.5,14.5 + - type: Transform + pos: -15.5,14.5 parent: 31 - type: Transform - uid: 10714 components: - - pos: -14.5,14.5 + - type: Transform + pos: -14.5,14.5 parent: 31 - type: Transform - uid: 10715 components: - - pos: -13.5,14.5 + - type: Transform + pos: -13.5,14.5 parent: 31 - type: Transform - uid: 10716 components: - - pos: -12.5,14.5 + - type: Transform + pos: -12.5,14.5 parent: 31 - type: Transform - uid: 10717 components: - - pos: -12.5,15.5 + - type: Transform + pos: -12.5,15.5 parent: 31 - type: Transform - uid: 10718 components: - - pos: -11.5,15.5 + - type: Transform + pos: -11.5,15.5 parent: 31 - type: Transform - uid: 10719 components: - - pos: -10.5,15.5 + - type: Transform + pos: -10.5,15.5 parent: 31 - type: Transform - uid: 10720 components: - - pos: -9.5,15.5 + - type: Transform + pos: -9.5,15.5 parent: 31 - type: Transform - uid: 10721 components: - - pos: -8.5,15.5 + - type: Transform + pos: -8.5,15.5 parent: 31 - type: Transform - uid: 10722 components: - - pos: -8.5,14.5 + - type: Transform + pos: -8.5,14.5 parent: 31 - type: Transform - uid: 10723 components: - - pos: -8.5,13.5 + - type: Transform + pos: -8.5,13.5 parent: 31 - type: Transform - uid: 10724 components: - - pos: -8.5,12.5 + - type: Transform + pos: -8.5,12.5 parent: 31 - type: Transform - uid: 10725 components: - - pos: -8.5,11.5 + - type: Transform + pos: -8.5,11.5 parent: 31 - type: Transform - uid: 10726 components: - - pos: -8.5,10.5 + - type: Transform + pos: -8.5,10.5 parent: 31 - type: Transform - uid: 10727 components: - - pos: -9.5,10.5 + - type: Transform + pos: -9.5,10.5 parent: 31 - type: Transform - uid: 10728 components: - - pos: -10.5,10.5 + - type: Transform + pos: -10.5,10.5 parent: 31 - type: Transform - uid: 10729 components: - - pos: -11.5,10.5 + - type: Transform + pos: -11.5,10.5 parent: 31 - type: Transform - uid: 10730 components: - - pos: -12.5,10.5 + - type: Transform + pos: -12.5,10.5 parent: 31 - type: Transform - uid: 10731 components: - - pos: -13.5,10.5 + - type: Transform + pos: -13.5,10.5 parent: 31 - type: Transform - uid: 10732 components: - - pos: -14.5,10.5 + - type: Transform + pos: -14.5,10.5 parent: 31 - type: Transform - uid: 10733 components: - - pos: -15.5,10.5 + - type: Transform + pos: -15.5,10.5 parent: 31 - type: Transform - uid: 10734 components: - - pos: -16.5,10.5 + - type: Transform + pos: -16.5,10.5 parent: 31 - type: Transform - uid: 10735 components: - - pos: -16.5,9.5 + - type: Transform + pos: -16.5,9.5 parent: 31 - type: Transform - uid: 10736 components: - - pos: -16.5,8.5 + - type: Transform + pos: -16.5,8.5 parent: 31 - type: Transform - uid: 10737 components: - - pos: -16.5,7.5 + - type: Transform + pos: -16.5,7.5 parent: 31 - type: Transform - uid: 10738 components: - - pos: -16.5,6.5 + - type: Transform + pos: -16.5,6.5 parent: 31 - type: Transform - uid: 11204 components: - - pos: 16.5,-27.5 + - type: Transform + pos: 16.5,-27.5 parent: 31 - type: Transform - uid: 11217 components: - - pos: -28.5,-12.5 + - type: Transform + pos: -28.5,-12.5 parent: 31 - type: Transform - uid: 11218 components: - - pos: -28.5,-13.5 + - type: Transform + pos: -28.5,-13.5 parent: 31 - type: Transform - uid: 11219 components: - - pos: -28.5,-13.5 + - type: Transform + pos: -28.5,-13.5 parent: 31 - type: Transform - uid: 11220 components: - - pos: -28.5,-14.5 + - type: Transform + pos: -28.5,-14.5 parent: 31 - type: Transform - uid: 11221 components: - - pos: -28.5,-15.5 + - type: Transform + pos: -28.5,-15.5 parent: 31 - type: Transform - uid: 11222 components: - - pos: -28.5,-15.5 + - type: Transform + pos: -28.5,-15.5 parent: 31 - type: Transform - uid: 11223 components: - - pos: -28.5,-16.5 + - type: Transform + pos: -28.5,-16.5 parent: 31 - type: Transform - uid: 11224 components: - - pos: -28.5,-17.5 + - type: Transform + pos: -28.5,-17.5 parent: 31 - type: Transform - uid: 11247 components: - - pos: -31.5,7.5 + - type: Transform + pos: -31.5,7.5 parent: 31 - type: Transform - proto: CableHVStack entities: - uid: 538 components: - - pos: 29.54536,1.7105546 + - type: Transform + pos: 29.54536,1.7105546 parent: 31 - type: Transform - uid: 6023 components: - - pos: 48.339085,5.504549 + - type: Transform + pos: 48.339085,5.504549 parent: 31 - type: Transform - uid: 7634 components: - - pos: -20.539572,25.33725 + - type: Transform + pos: -20.539572,25.33725 parent: 31 - type: Transform - proto: CableMV entities: - uid: 96 components: - - pos: 42.5,1.5 + - type: Transform + pos: 42.5,1.5 parent: 31 - type: Transform - uid: 160 components: - - pos: -36.5,-6.5 + - type: Transform + pos: -36.5,-6.5 parent: 31 - type: Transform - uid: 407 components: - - pos: 13.5,-8.5 + - type: Transform + pos: 13.5,-8.5 parent: 31 - type: Transform - uid: 428 components: - - pos: -9.5,-28.5 + - type: Transform + pos: -9.5,-28.5 parent: 31 - type: Transform - uid: 429 components: - - pos: -9.5,-30.5 + - type: Transform + pos: -9.5,-30.5 parent: 31 - type: Transform - uid: 434 components: - - pos: -7.5,-27.5 + - type: Transform + pos: -7.5,-27.5 parent: 31 - type: Transform - uid: 440 components: - - pos: -6.5,-21.5 + - type: Transform + pos: -6.5,-21.5 parent: 31 - type: Transform - uid: 463 components: - - pos: -3.5,-27.5 + - type: Transform + pos: -3.5,-27.5 parent: 31 - type: Transform - uid: 577 components: - - pos: -11.5,-25.5 + - type: Transform + pos: -11.5,-25.5 parent: 31 - type: Transform - uid: 590 components: - - pos: -15.5,-25.5 + - type: Transform + pos: -15.5,-25.5 parent: 31 - type: Transform - uid: 601 components: - - pos: -14.5,-23.5 + - type: Transform + pos: -14.5,-23.5 parent: 31 - type: Transform - uid: 605 components: - - pos: -10.5,-23.5 + - type: Transform + pos: -10.5,-23.5 parent: 31 - type: Transform - uid: 618 components: - - pos: 37.5,3.5 + - type: Transform + pos: 37.5,3.5 parent: 31 - type: Transform - uid: 675 components: - - pos: -12.5,-10.5 + - type: Transform + pos: -12.5,-10.5 parent: 31 - type: Transform - uid: 678 components: - - pos: 22.5,-11.5 + - type: Transform + pos: 22.5,-11.5 parent: 31 - type: Transform - uid: 679 components: - - pos: -14.5,-10.5 + - type: Transform + pos: -14.5,-10.5 parent: 31 - type: Transform - uid: 694 components: - - pos: -13.5,-10.5 + - type: Transform + pos: -13.5,-10.5 parent: 31 - type: Transform - uid: 724 components: - - pos: -10.5,-22.5 + - type: Transform + pos: -10.5,-22.5 parent: 31 - type: Transform - uid: 725 components: - - pos: -10.5,-21.5 + - type: Transform + pos: -10.5,-21.5 parent: 31 - type: Transform - uid: 755 components: - - pos: 10.5,25.5 + - type: Transform + pos: 10.5,25.5 parent: 31 - type: Transform - uid: 843 components: - - pos: -2.5,-27.5 + - type: Transform + pos: -2.5,-27.5 parent: 31 - type: Transform - uid: 845 components: - - pos: 0.5,-28.5 + - type: Transform + pos: 0.5,-28.5 parent: 31 - type: Transform - uid: 890 components: - - pos: 12.5,21.5 + - type: Transform + pos: 12.5,21.5 parent: 31 - type: Transform - uid: 931 components: - - pos: 8.5,26.5 + - type: Transform + pos: 8.5,26.5 parent: 31 - type: Transform - uid: 986 components: - - pos: -0.5,-27.5 + - type: Transform + pos: -0.5,-27.5 parent: 31 - type: Transform - uid: 1080 components: - - pos: 16.5,-13.5 + - type: Transform + pos: 16.5,-13.5 parent: 31 - type: Transform - uid: 1196 components: - - pos: -1.5,-10.5 + - type: Transform + pos: -1.5,-10.5 parent: 31 - type: Transform - uid: 1242 components: - - pos: -28.5,-12.5 + - type: Transform + pos: -28.5,-12.5 parent: 31 - type: Transform - uid: 1297 components: - - pos: 12.5,22.5 + - type: Transform + pos: 12.5,22.5 parent: 31 - type: Transform - uid: 1569 components: - - pos: -15.5,-24.5 + - type: Transform + pos: -15.5,-24.5 parent: 31 - type: Transform - uid: 1571 components: - - pos: 36.5,3.5 + - type: Transform + pos: 36.5,3.5 parent: 31 - type: Transform - uid: 1572 components: - - pos: 35.5,3.5 + - type: Transform + pos: 35.5,3.5 parent: 31 - type: Transform - uid: 1599 components: - - pos: -20.5,15.5 + - type: Transform + pos: -20.5,15.5 parent: 31 - type: Transform - uid: 1601 components: - - pos: 21.5,-10.5 + - type: Transform + pos: 21.5,-10.5 parent: 31 - type: Transform - uid: 1726 components: - - pos: 55.5,7.5 + - type: Transform + pos: 55.5,7.5 parent: 31 - type: Transform - uid: 1729 components: - - pos: 64.5,0.5 + - type: Transform + pos: 64.5,0.5 parent: 31 - type: Transform - uid: 1731 components: - - pos: 56.5,7.5 + - type: Transform + pos: 56.5,7.5 parent: 31 - type: Transform - uid: 1844 components: - - pos: 57.5,7.5 + - type: Transform + pos: 57.5,7.5 parent: 31 - type: Transform - uid: 1873 components: - - pos: 60.5,7.5 + - type: Transform + pos: 60.5,7.5 parent: 31 - type: Transform - uid: 2182 components: - - pos: -11.5,-19.5 + - type: Transform + pos: -11.5,-19.5 parent: 31 - type: Transform - uid: 2194 components: - - pos: -12.5,-27.5 + - type: Transform + pos: -12.5,-27.5 parent: 31 - type: Transform - uid: 2264 components: - - pos: -11.5,-10.5 + - type: Transform + pos: -11.5,-10.5 parent: 31 - type: Transform - uid: 2406 components: - - pos: 65.5,-4.5 + - type: Transform + pos: 65.5,-4.5 parent: 31 - type: Transform - uid: 2432 components: - - pos: 15.5,-27.5 + - type: Transform + pos: 15.5,-27.5 parent: 31 - type: Transform - uid: 2433 components: - - pos: 15.5,-26.5 + - type: Transform + pos: 15.5,-26.5 parent: 31 - type: Transform - uid: 2487 components: - - pos: 26.5,12.5 + - type: Transform + pos: 26.5,12.5 parent: 31 - type: Transform - uid: 2645 components: - - pos: -32.5,-7.5 + - type: Transform + pos: -32.5,-7.5 parent: 31 - type: Transform - uid: 2696 components: - - pos: 20.5,-11.5 + - type: Transform + pos: 20.5,-11.5 parent: 31 - type: Transform - uid: 2698 components: - - pos: 19.5,-11.5 + - type: Transform + pos: 19.5,-11.5 parent: 31 - type: Transform - uid: 2715 components: - - pos: -11.5,-35.5 + - type: Transform + pos: -11.5,-35.5 parent: 31 - type: Transform - uid: 2738 components: - - pos: -16.5,-1.5 + - type: Transform + pos: -16.5,-1.5 parent: 31 - type: Transform - uid: 2744 components: - - pos: -3.5,-21.5 + - type: Transform + pos: -3.5,-21.5 parent: 31 - type: Transform - uid: 2822 components: - - pos: -0.5,-8.5 + - type: Transform + pos: -0.5,-8.5 parent: 31 - type: Transform - uid: 2823 components: - - pos: -0.5,-9.5 + - type: Transform + pos: -0.5,-9.5 parent: 31 - type: Transform - uid: 2842 components: - - pos: -11.5,-34.5 + - type: Transform + pos: -11.5,-34.5 parent: 31 - type: Transform - uid: 2884 components: - - pos: -9.5,-33.5 + - type: Transform + pos: -9.5,-33.5 parent: 31 - type: Transform - uid: 2885 components: - - pos: -9.5,-27.5 + - type: Transform + pos: -9.5,-27.5 parent: 31 - type: Transform - uid: 2887 components: - - pos: -9.5,-29.5 + - type: Transform + pos: -9.5,-29.5 parent: 31 - type: Transform - uid: 2888 components: - - pos: -9.5,-34.5 + - type: Transform + pos: -9.5,-34.5 parent: 31 - type: Transform - uid: 2892 components: - - pos: 20.5,-13.5 + - type: Transform + pos: 20.5,-13.5 parent: 31 - type: Transform - uid: 2904 components: - - pos: -9.5,-36.5 + - type: Transform + pos: -9.5,-36.5 parent: 31 - type: Transform - uid: 2905 components: - - pos: 14.5,-8.5 + - type: Transform + pos: 14.5,-8.5 parent: 31 - type: Transform - uid: 2908 components: - - pos: -12.5,-11.5 + - type: Transform + pos: -12.5,-11.5 parent: 31 - type: Transform - uid: 3068 components: - - pos: -4.5,17.5 + - type: Transform + pos: -4.5,17.5 parent: 31 - type: Transform - uid: 3108 components: - - pos: 59.5,7.5 + - type: Transform + pos: 59.5,7.5 parent: 31 - type: Transform - uid: 3111 components: - - pos: 58.5,7.5 + - type: Transform + pos: 58.5,7.5 parent: 31 - type: Transform - uid: 3140 components: - - pos: 64.5,-0.5 + - type: Transform + pos: 64.5,-0.5 parent: 31 - type: Transform - uid: 3144 components: - - pos: 43.5,10.5 + - type: Transform + pos: 43.5,10.5 parent: 31 - type: Transform - uid: 3147 components: - - pos: 19.5,-13.5 + - type: Transform + pos: 19.5,-13.5 parent: 31 - type: Transform - uid: 3148 components: - - pos: 26.5,11.5 + - type: Transform + pos: 26.5,11.5 parent: 31 - type: Transform - uid: 3174 components: - - pos: 18.5,-11.5 + - type: Transform + pos: 18.5,-11.5 parent: 31 - type: Transform - uid: 3184 components: - - pos: 12.5,15.5 + - type: Transform + pos: 12.5,15.5 parent: 31 - type: Transform - uid: 3190 components: - - pos: 12.5,14.5 + - type: Transform + pos: 12.5,14.5 parent: 31 - type: Transform - uid: 3205 components: - - pos: 14.5,13.5 + - type: Transform + pos: 14.5,13.5 parent: 31 - type: Transform - uid: 3221 components: - - pos: 18.5,-10.5 + - type: Transform + pos: 18.5,-10.5 parent: 31 - type: Transform - uid: 3351 components: - - pos: -3.5,17.5 + - type: Transform + pos: -3.5,17.5 parent: 31 - type: Transform - uid: 3352 components: - - pos: -2.5,17.5 + - type: Transform + pos: -2.5,17.5 parent: 31 - type: Transform - uid: 3353 components: - - pos: -1.5,17.5 + - type: Transform + pos: -1.5,17.5 parent: 31 - type: Transform - uid: 3356 components: - - pos: 14.5,-25.5 + - type: Transform + pos: 14.5,-25.5 parent: 31 - type: Transform - uid: 3357 components: - - pos: -0.5,17.5 + - type: Transform + pos: -0.5,17.5 parent: 31 - type: Transform - uid: 3366 components: - - pos: -9.5,-19.5 + - type: Transform + pos: -9.5,-19.5 parent: 31 - type: Transform - uid: 3370 components: - - pos: -8.5,-19.5 + - type: Transform + pos: -8.5,-19.5 parent: 31 - type: Transform - uid: 3372 components: - - pos: -11.5,-33.5 + - type: Transform + pos: -11.5,-33.5 parent: 31 - type: Transform - uid: 3373 components: - - pos: -10.5,-35.5 + - type: Transform + pos: -10.5,-35.5 parent: 31 - type: Transform - uid: 3479 components: - - pos: -19.5,15.5 + - type: Transform + pos: -19.5,15.5 parent: 31 - type: Transform - uid: 3481 components: - - pos: 12.5,16.5 + - type: Transform + pos: 12.5,16.5 parent: 31 - type: Transform - uid: 3589 components: - - pos: 12.5,24.5 + - type: Transform + pos: 12.5,24.5 parent: 31 - type: Transform - uid: 3597 components: - - pos: 27.5,13.5 + - type: Transform + pos: 27.5,13.5 parent: 31 - type: Transform - uid: 3598 components: - - pos: 28.5,13.5 + - type: Transform + pos: 28.5,13.5 parent: 31 - type: Transform - uid: 3600 components: - - pos: 26.5,13.5 + - type: Transform + pos: 26.5,13.5 parent: 31 - type: Transform - uid: 3603 components: - - pos: 25.5,12.5 + - type: Transform + pos: 25.5,12.5 parent: 31 - type: Transform - uid: 3604 components: - - pos: 24.5,12.5 + - type: Transform + pos: 24.5,12.5 parent: 31 - type: Transform - uid: 3605 components: - - pos: 23.5,12.5 + - type: Transform + pos: 23.5,12.5 parent: 31 - type: Transform - uid: 3606 components: - - pos: 22.5,12.5 + - type: Transform + pos: 22.5,12.5 parent: 31 - type: Transform - uid: 3607 components: - - pos: 21.5,12.5 + - type: Transform + pos: 21.5,12.5 parent: 31 - type: Transform - uid: 3608 components: - - pos: 20.5,12.5 + - type: Transform + pos: 20.5,12.5 parent: 31 - type: Transform - uid: 3609 components: - - pos: 19.5,12.5 + - type: Transform + pos: 19.5,12.5 parent: 31 - type: Transform - uid: 3610 components: - - pos: 18.5,12.5 + - type: Transform + pos: 18.5,12.5 parent: 31 - type: Transform - uid: 3611 components: - - pos: 17.5,12.5 + - type: Transform + pos: 17.5,12.5 parent: 31 - type: Transform - uid: 3612 components: - - pos: 16.5,12.5 + - type: Transform + pos: 16.5,12.5 parent: 31 - type: Transform - uid: 3613 components: - - pos: 15.5,12.5 + - type: Transform + pos: 15.5,12.5 parent: 31 - type: Transform - uid: 3614 components: - - pos: 14.5,12.5 + - type: Transform + pos: 14.5,12.5 parent: 31 - type: Transform - uid: 3615 components: - - pos: 12.5,17.5 + - type: Transform + pos: 12.5,17.5 parent: 31 - type: Transform - uid: 3616 components: - - pos: 12.5,18.5 + - type: Transform + pos: 12.5,18.5 parent: 31 - type: Transform - uid: 3618 components: - - pos: 11.5,24.5 + - type: Transform + pos: 11.5,24.5 parent: 31 - type: Transform - uid: 3620 components: - - pos: 10.5,24.5 + - type: Transform + pos: 10.5,24.5 parent: 31 - type: Transform - uid: 3621 components: - - pos: 9.5,23.5 + - type: Transform + pos: 9.5,23.5 parent: 31 - type: Transform - uid: 3622 components: - - pos: 9.5,22.5 + - type: Transform + pos: 9.5,22.5 parent: 31 - type: Transform - uid: 3624 components: - - pos: 9.5,25.5 + - type: Transform + pos: 9.5,25.5 parent: 31 - type: Transform - uid: 3628 components: - - pos: 8.5,25.5 + - type: Transform + pos: 8.5,25.5 parent: 31 - type: Transform - uid: 3629 components: - - pos: 7.5,25.5 + - type: Transform + pos: 7.5,25.5 parent: 31 - type: Transform - uid: 3630 components: - - pos: 6.5,25.5 + - type: Transform + pos: 6.5,25.5 parent: 31 - type: Transform - uid: 3631 components: - - pos: 5.5,25.5 + - type: Transform + pos: 5.5,25.5 parent: 31 - type: Transform - uid: 3632 components: - - pos: 4.5,25.5 + - type: Transform + pos: 4.5,25.5 parent: 31 - type: Transform - uid: 3633 components: - - pos: 3.5,25.5 + - type: Transform + pos: 3.5,25.5 parent: 31 - type: Transform - uid: 3634 components: - - pos: 2.5,25.5 + - type: Transform + pos: 2.5,25.5 parent: 31 - type: Transform - uid: 3635 components: - - pos: 1.5,25.5 + - type: Transform + pos: 1.5,25.5 parent: 31 - type: Transform - uid: 3636 components: - - pos: 0.5,25.5 + - type: Transform + pos: 0.5,25.5 parent: 31 - type: Transform - uid: 3637 components: - - pos: 0.5,26.5 + - type: Transform + pos: 0.5,26.5 parent: 31 - type: Transform - uid: 3639 components: - - pos: -0.5,26.5 + - type: Transform + pos: -0.5,26.5 parent: 31 - type: Transform - uid: 3640 components: - - pos: -1.5,26.5 + - type: Transform + pos: -1.5,26.5 parent: 31 - type: Transform - uid: 3641 components: - - pos: -2.5,26.5 + - type: Transform + pos: -2.5,26.5 parent: 31 - type: Transform - uid: 3642 components: - - pos: -2.5,27.5 + - type: Transform + pos: -2.5,27.5 parent: 31 - type: Transform - uid: 3643 components: - - pos: 41.5,2.5 + - type: Transform + pos: 41.5,2.5 parent: 31 - type: Transform - uid: 3644 components: - - pos: 42.5,2.5 + - type: Transform + pos: 42.5,2.5 parent: 31 - type: Transform - uid: 3645 components: - - pos: 43.5,0.5 + - type: Transform + pos: 43.5,0.5 parent: 31 - type: Transform - uid: 3646 components: - - pos: 43.5,1.5 + - type: Transform + pos: 43.5,1.5 parent: 31 - type: Transform - uid: 3647 components: - - pos: 44.5,1.5 + - type: Transform + pos: 44.5,1.5 parent: 31 - type: Transform - uid: 3648 components: - - pos: 45.5,1.5 + - type: Transform + pos: 45.5,1.5 parent: 31 - type: Transform - uid: 3649 components: - - pos: 46.5,1.5 + - type: Transform + pos: 46.5,1.5 parent: 31 - type: Transform - uid: 3650 components: - - pos: 47.5,1.5 + - type: Transform + pos: 47.5,1.5 parent: 31 - type: Transform - uid: 3651 components: - - pos: 48.5,1.5 + - type: Transform + pos: 48.5,1.5 parent: 31 - type: Transform - uid: 3652 components: - - pos: 48.5,0.5 + - type: Transform + pos: 48.5,0.5 parent: 31 - type: Transform - uid: 3653 components: - - pos: 48.5,-0.5 + - type: Transform + pos: 48.5,-0.5 parent: 31 - type: Transform - uid: 3654 components: - - pos: 48.5,-1.5 + - type: Transform + pos: 48.5,-1.5 parent: 31 - type: Transform - uid: 3657 components: - - pos: 47.5,-1.5 + - type: Transform + pos: 47.5,-1.5 parent: 31 - type: Transform - uid: 3659 components: - - pos: 40.5,2.5 + - type: Transform + pos: 40.5,2.5 parent: 31 - type: Transform - uid: 3660 components: - - pos: 39.5,-0.5 + - type: Transform + pos: 39.5,-0.5 parent: 31 - type: Transform - uid: 3661 components: - - pos: 39.5,2.5 + - type: Transform + pos: 39.5,2.5 parent: 31 - type: Transform - uid: 3662 components: - - pos: 38.5,2.5 + - type: Transform + pos: 38.5,2.5 parent: 31 - type: Transform - uid: 3664 components: - - pos: 37.5,2.5 + - type: Transform + pos: 37.5,2.5 parent: 31 - type: Transform - uid: 3665 components: - - pos: 34.5,-0.5 + - type: Transform + pos: 34.5,-0.5 parent: 31 - type: Transform - uid: 3666 components: - - pos: 33.5,-0.5 + - type: Transform + pos: 33.5,-0.5 parent: 31 - type: Transform - uid: 3667 components: - - pos: 32.5,-0.5 + - type: Transform + pos: 32.5,-0.5 parent: 31 - type: Transform - uid: 3668 components: - - pos: 32.5,0.5 + - type: Transform + pos: 32.5,0.5 parent: 31 - type: Transform - uid: 3669 components: - - pos: 31.5,0.5 + - type: Transform + pos: 31.5,0.5 parent: 31 - type: Transform - uid: 3670 components: - - pos: 31.5,1.5 + - type: Transform + pos: 31.5,1.5 parent: 31 - type: Transform - uid: 3671 components: - - pos: 43.5,2.5 + - type: Transform + pos: 43.5,2.5 parent: 31 - type: Transform - uid: 3672 components: - - pos: 43.5,3.5 + - type: Transform + pos: 43.5,3.5 parent: 31 - type: Transform - uid: 3673 components: - - pos: 43.5,4.5 + - type: Transform + pos: 43.5,4.5 parent: 31 - type: Transform - uid: 3674 components: - - pos: 43.5,5.5 + - type: Transform + pos: 43.5,5.5 parent: 31 - type: Transform - uid: 3680 components: - - pos: 24.5,18.5 + - type: Transform + pos: 24.5,18.5 parent: 31 - type: Transform - uid: 3681 components: - - pos: 21.5,-8.5 + - type: Transform + pos: 21.5,-8.5 parent: 31 - type: Transform - uid: 3682 components: - - pos: 21.5,-7.5 + - type: Transform + pos: 21.5,-7.5 parent: 31 - type: Transform - uid: 3683 components: - - pos: 21.5,-6.5 + - type: Transform + pos: 21.5,-6.5 parent: 31 - type: Transform - uid: 3684 components: - - pos: 21.5,-5.5 + - type: Transform + pos: 21.5,-5.5 parent: 31 - type: Transform - uid: 3685 components: - - pos: 21.5,-4.5 + - type: Transform + pos: 21.5,-4.5 parent: 31 - type: Transform - uid: 3686 components: - - pos: 22.5,-4.5 + - type: Transform + pos: 22.5,-4.5 parent: 31 - type: Transform - uid: 3687 components: - - pos: 22.5,-3.5 + - type: Transform + pos: 22.5,-3.5 parent: 31 - type: Transform - uid: 3688 components: - - pos: 20.5,-9.5 + - type: Transform + pos: 20.5,-9.5 parent: 31 - type: Transform - uid: 3689 components: - - pos: 19.5,-9.5 + - type: Transform + pos: 19.5,-9.5 parent: 31 - type: Transform - uid: 3690 components: - - pos: 21.5,-9.5 + - type: Transform + pos: 21.5,-9.5 parent: 31 - type: Transform - uid: 3691 components: - - pos: 18.5,-9.5 + - type: Transform + pos: 18.5,-9.5 parent: 31 - type: Transform - uid: 3692 components: - - pos: 17.5,-9.5 + - type: Transform + pos: 17.5,-9.5 parent: 31 - type: Transform - uid: 3693 components: - - pos: 16.5,-9.5 + - type: Transform + pos: 16.5,-9.5 parent: 31 - type: Transform - uid: 3694 components: - - pos: 15.5,-9.5 + - type: Transform + pos: 15.5,-9.5 parent: 31 - type: Transform - uid: 3695 components: - - pos: 0.5,17.5 + - type: Transform + pos: 0.5,17.5 parent: 31 - type: Transform - uid: 3696 components: - - pos: 1.5,17.5 + - type: Transform + pos: 1.5,17.5 parent: 31 - type: Transform - uid: 3697 components: - - pos: 2.5,17.5 + - type: Transform + pos: 2.5,17.5 parent: 31 - type: Transform - uid: 3698 components: - - pos: 3.5,17.5 + - type: Transform + pos: 3.5,17.5 parent: 31 - type: Transform - uid: 3699 components: - - pos: 3.5,16.5 + - type: Transform + pos: 3.5,16.5 parent: 31 - type: Transform - uid: 3700 components: - - pos: 3.5,15.5 + - type: Transform + pos: 3.5,15.5 parent: 31 - type: Transform - uid: 3701 components: - - pos: 8.5,-9.5 + - type: Transform + pos: 8.5,-9.5 parent: 31 - type: Transform - uid: 3702 components: - - pos: 3.5,14.5 + - type: Transform + pos: 3.5,14.5 parent: 31 - type: Transform - uid: 3704 components: - - pos: -8.5,-36.5 + - type: Transform + pos: -8.5,-36.5 parent: 31 - type: Transform - uid: 3705 components: - - pos: -27.5,-14.5 + - type: Transform + pos: -27.5,-14.5 parent: 31 - type: Transform - uid: 3706 components: - - pos: -26.5,-14.5 + - type: Transform + pos: -26.5,-14.5 parent: 31 - type: Transform - uid: 3711 components: - - pos: 15.5,-8.5 + - type: Transform + pos: 15.5,-8.5 parent: 31 - type: Transform - uid: 3712 components: - - pos: 15.5,-7.5 + - type: Transform + pos: 15.5,-7.5 parent: 31 - type: Transform - uid: 3713 components: - - pos: 15.5,-6.5 + - type: Transform + pos: 15.5,-6.5 parent: 31 - type: Transform - uid: 3714 components: - - pos: 15.5,-5.5 + - type: Transform + pos: 15.5,-5.5 parent: 31 - type: Transform - uid: 3715 components: - - pos: 15.5,-4.5 + - type: Transform + pos: 15.5,-4.5 parent: 31 - type: Transform - uid: 3716 components: - - pos: 15.5,-3.5 + - type: Transform + pos: 15.5,-3.5 parent: 31 - type: Transform - uid: 3717 components: - - pos: 15.5,-2.5 + - type: Transform + pos: 15.5,-2.5 parent: 31 - type: Transform - uid: 3718 components: - - pos: 15.5,-1.5 + - type: Transform + pos: 15.5,-1.5 parent: 31 - type: Transform - uid: 3719 components: - - pos: 15.5,-0.5 + - type: Transform + pos: 15.5,-0.5 parent: 31 - type: Transform - uid: 3720 components: - - pos: 15.5,0.5 + - type: Transform + pos: 15.5,0.5 parent: 31 - type: Transform - uid: 3721 components: - - pos: 15.5,1.5 + - type: Transform + pos: 15.5,1.5 parent: 31 - type: Transform - uid: 3722 components: - - pos: 16.5,1.5 + - type: Transform + pos: 16.5,1.5 parent: 31 - type: Transform - uid: 3723 components: - - pos: 16.5,2.5 + - type: Transform + pos: 16.5,2.5 parent: 31 - type: Transform - uid: 3746 components: - - pos: 17.5,-13.5 + - type: Transform + pos: 17.5,-13.5 parent: 31 - type: Transform - uid: 3754 components: - - pos: -2.5,-10.5 + - type: Transform + pos: -2.5,-10.5 parent: 31 - type: Transform - uid: 3755 components: - - pos: -2.5,-9.5 + - type: Transform + pos: -2.5,-9.5 parent: 31 - type: Transform - uid: 3756 components: - - pos: -3.5,-9.5 + - type: Transform + pos: -3.5,-9.5 parent: 31 - type: Transform - uid: 3757 components: - - pos: -4.5,-9.5 + - type: Transform + pos: -4.5,-9.5 parent: 31 - type: Transform - uid: 3758 components: - - pos: -5.5,-9.5 + - type: Transform + pos: -5.5,-9.5 parent: 31 - type: Transform - uid: 3759 components: - - pos: -5.5,-8.5 + - type: Transform + pos: -5.5,-8.5 parent: 31 - type: Transform - uid: 3760 components: - - pos: -6.5,-9.5 + - type: Transform + pos: -6.5,-9.5 parent: 31 - type: Transform - uid: 3761 components: - - pos: -7.5,-9.5 + - type: Transform + pos: -7.5,-9.5 parent: 31 - type: Transform - uid: 3762 components: - - pos: -8.5,-9.5 + - type: Transform + pos: -8.5,-9.5 parent: 31 - type: Transform - uid: 3763 components: - - pos: -9.5,-9.5 + - type: Transform + pos: -9.5,-9.5 parent: 31 - type: Transform - uid: 3770 components: - - pos: -18.5,-3.5 + - type: Transform + pos: -18.5,-3.5 parent: 31 - type: Transform - uid: 3771 components: - - pos: -18.5,-2.5 + - type: Transform + pos: -18.5,-2.5 parent: 31 - type: Transform - uid: 3772 components: - - pos: -17.5,-2.5 + - type: Transform + pos: -17.5,-2.5 parent: 31 - type: Transform - uid: 3773 components: - - pos: -16.5,-2.5 + - type: Transform + pos: -16.5,-2.5 parent: 31 - type: Transform - uid: 3774 components: - - pos: -16.5,-3.5 + - type: Transform + pos: -16.5,-3.5 parent: 31 - type: Transform - uid: 3775 components: - - pos: -16.5,-4.5 + - type: Transform + pos: -16.5,-4.5 parent: 31 - type: Transform - uid: 3776 components: - - pos: -12.5,0.5 + - type: Transform + pos: -12.5,0.5 parent: 31 - type: Transform - uid: 3777 components: - - pos: -12.5,1.5 + - type: Transform + pos: -12.5,1.5 parent: 31 - type: Transform - uid: 3778 components: - - pos: -11.5,1.5 + - type: Transform + pos: -11.5,1.5 parent: 31 - type: Transform - uid: 3779 components: - - pos: -11.5,2.5 + - type: Transform + pos: -11.5,2.5 parent: 31 - type: Transform - uid: 3781 components: - - pos: -26.5,-4.5 + - type: Transform + pos: -26.5,-4.5 parent: 31 - type: Transform - uid: 3782 components: - - pos: -25.5,-4.5 + - type: Transform + pos: -25.5,-4.5 parent: 31 - type: Transform - uid: 3783 components: - - pos: -25.5,-6.5 + - type: Transform + pos: -25.5,-6.5 parent: 31 - type: Transform - uid: 3784 components: - - pos: -25.5,-7.5 + - type: Transform + pos: -25.5,-7.5 parent: 31 - type: Transform - uid: 3785 components: - - pos: -25.5,-5.5 + - type: Transform + pos: -25.5,-5.5 parent: 31 - type: Transform - uid: 3786 components: - - pos: -30.5,9.5 + - type: Transform + pos: -30.5,9.5 parent: 31 - type: Transform - uid: 3789 components: - - pos: -15.5,-9.5 + - type: Transform + pos: -15.5,-9.5 parent: 31 - type: Transform - uid: 3790 components: - - pos: -14.5,-9.5 + - type: Transform + pos: -14.5,-9.5 parent: 31 - type: Transform - uid: 3791 components: - - pos: -14.5,-8.5 + - type: Transform + pos: -14.5,-8.5 parent: 31 - type: Transform - uid: 3792 components: - - pos: -32.5,-6.5 + - type: Transform + pos: -32.5,-6.5 parent: 31 - type: Transform - uid: 3796 components: - - pos: -33.5,-6.5 + - type: Transform + pos: -33.5,-6.5 parent: 31 - type: Transform - uid: 3798 components: - - pos: -25.5,-8.5 + - type: Transform + pos: -25.5,-8.5 parent: 31 - type: Transform - uid: 3799 components: - - pos: -26.5,-8.5 + - type: Transform + pos: -26.5,-8.5 parent: 31 - type: Transform - uid: 3800 components: - - pos: -27.5,-8.5 + - type: Transform + pos: -27.5,-8.5 parent: 31 - type: Transform - uid: 3801 components: - - pos: -28.5,-8.5 + - type: Transform + pos: -28.5,-8.5 parent: 31 - type: Transform - uid: 3802 components: - - pos: -29.5,-8.5 + - type: Transform + pos: -29.5,-8.5 parent: 31 - type: Transform - uid: 3803 components: - - pos: -34.5,-6.5 + - type: Transform + pos: -34.5,-6.5 parent: 31 - type: Transform - uid: 3804 components: - - pos: -35.5,-6.5 + - type: Transform + pos: -35.5,-6.5 parent: 31 - type: Transform - uid: 3809 components: - - pos: -32.5,7.5 + - type: Transform + pos: -32.5,7.5 parent: 31 - type: Transform - uid: 3810 components: - - pos: -32.5,8.5 + - type: Transform + pos: -32.5,8.5 parent: 31 - type: Transform - uid: 3811 components: - - pos: -32.5,9.5 + - type: Transform + pos: -32.5,9.5 parent: 31 - type: Transform - uid: 3812 components: - - pos: -33.5,9.5 + - type: Transform + pos: -33.5,9.5 parent: 31 - type: Transform - uid: 3813 components: - - pos: -34.5,9.5 + - type: Transform + pos: -34.5,9.5 parent: 31 - type: Transform - uid: 3814 components: - - pos: -35.5,9.5 + - type: Transform + pos: -35.5,9.5 parent: 31 - type: Transform - uid: 3815 components: - - pos: -36.5,9.5 + - type: Transform + pos: -36.5,9.5 parent: 31 - type: Transform - uid: 3816 components: - - pos: -37.5,9.5 + - type: Transform + pos: -37.5,9.5 parent: 31 - type: Transform - uid: 3817 components: - - pos: -38.5,9.5 + - type: Transform + pos: -38.5,9.5 parent: 31 - type: Transform - uid: 3818 components: - - pos: -38.5,10.5 + - type: Transform + pos: -38.5,10.5 parent: 31 - type: Transform - uid: 3819 components: - - pos: -39.5,10.5 + - type: Transform + pos: -39.5,10.5 parent: 31 - type: Transform - uid: 3820 components: - - pos: -39.5,11.5 + - type: Transform + pos: -39.5,11.5 parent: 31 - type: Transform - uid: 3822 components: - - pos: -31.5,9.5 + - type: Transform + pos: -31.5,9.5 parent: 31 - type: Transform - uid: 3837 components: - - pos: -12.5,12.5 + - type: Transform + pos: -12.5,12.5 parent: 31 - type: Transform - uid: 3839 components: - - pos: 21.5,-13.5 + - type: Transform + pos: 21.5,-13.5 parent: 31 - type: Transform - uid: 3846 components: - - pos: -6.5,15.5 + - type: Transform + pos: -6.5,15.5 parent: 31 - type: Transform - uid: 3847 components: - - pos: -5.5,15.5 + - type: Transform + pos: -5.5,15.5 parent: 31 - type: Transform - uid: 3848 components: - - pos: -15.5,-4.5 + - type: Transform + pos: -15.5,-4.5 parent: 31 - type: Transform - uid: 3850 components: - - pos: -16.5,16.5 + - type: Transform + pos: -16.5,16.5 parent: 31 - type: Transform - uid: 3870 components: - - pos: -4.5,15.5 + - type: Transform + pos: -4.5,15.5 parent: 31 - type: Transform - uid: 3879 components: - - pos: -31.5,-12.5 + - type: Transform + pos: -31.5,-12.5 parent: 31 - type: Transform - uid: 3896 components: - - pos: -7.5,15.5 + - type: Transform + pos: -7.5,15.5 parent: 31 - type: Transform - uid: 3919 components: - - pos: -15.5,-5.5 + - type: Transform + pos: -15.5,-5.5 parent: 31 - type: Transform - uid: 3920 components: - - pos: 13.5,-23.5 + - type: Transform + pos: 13.5,-23.5 parent: 31 - type: Transform - uid: 4054 components: - - pos: -5.5,-7.5 + - type: Transform + pos: -5.5,-7.5 parent: 31 - type: Transform - uid: 4139 components: - - pos: 8.5,27.5 + - type: Transform + pos: 8.5,27.5 parent: 31 - type: Transform - uid: 4201 components: - - pos: -10.5,15.5 + - type: Transform + pos: -10.5,15.5 parent: 31 - type: Transform - uid: 4332 components: - - pos: 78.5,-3.5 + - type: Transform + pos: 78.5,-3.5 parent: 31 - type: Transform - uid: 4335 components: - - pos: 78.5,4.5 + - type: Transform + pos: 78.5,4.5 parent: 31 - type: Transform - uid: 4338 components: - - pos: 18.5,-13.5 + - type: Transform + pos: 18.5,-13.5 parent: 31 - type: Transform - uid: 4348 components: - - pos: 78.5,8.5 + - type: Transform + pos: 78.5,8.5 parent: 31 - type: Transform - uid: 4349 components: - - pos: 78.5,7.5 + - type: Transform + pos: 78.5,7.5 parent: 31 - type: Transform - uid: 4350 components: - - pos: 78.5,5.5 + - type: Transform + pos: 78.5,5.5 parent: 31 - type: Transform - uid: 4351 components: - - pos: 64.5,6.5 + - type: Transform + pos: 64.5,6.5 parent: 31 - type: Transform - uid: 4352 components: - - pos: 64.5,8.5 + - type: Transform + pos: 64.5,8.5 parent: 31 - type: Transform - uid: 4354 components: - - pos: 66.5,9.5 + - type: Transform + pos: 66.5,9.5 parent: 31 - type: Transform - uid: 4355 components: - - pos: 67.5,9.5 + - type: Transform + pos: 67.5,9.5 parent: 31 - type: Transform - uid: 4356 components: - - pos: 69.5,9.5 + - type: Transform + pos: 69.5,9.5 parent: 31 - type: Transform - uid: 4357 components: - - pos: 71.5,9.5 + - type: Transform + pos: 71.5,9.5 parent: 31 - type: Transform - uid: 4358 components: - - pos: 73.5,9.5 + - type: Transform + pos: 73.5,9.5 parent: 31 - type: Transform - uid: 4359 components: - - pos: 75.5,9.5 + - type: Transform + pos: 75.5,9.5 parent: 31 - type: Transform - uid: 4360 components: - - pos: 77.5,9.5 + - type: Transform + pos: 77.5,9.5 parent: 31 - type: Transform - uid: 4362 components: - - pos: 64.5,7.5 + - type: Transform + pos: 64.5,7.5 parent: 31 - type: Transform - uid: 4363 components: - - pos: 64.5,9.5 + - type: Transform + pos: 64.5,9.5 parent: 31 - type: Transform - uid: 4365 components: - - pos: 65.5,9.5 + - type: Transform + pos: 65.5,9.5 parent: 31 - type: Transform - uid: 4366 components: - - pos: 68.5,9.5 + - type: Transform + pos: 68.5,9.5 parent: 31 - type: Transform - uid: 4367 components: - - pos: 78.5,9.5 + - type: Transform + pos: 78.5,9.5 parent: 31 - type: Transform - uid: 4369 components: - - pos: 76.5,9.5 + - type: Transform + pos: 76.5,9.5 parent: 31 - type: Transform - uid: 4370 components: - - pos: 74.5,9.5 + - type: Transform + pos: 74.5,9.5 parent: 31 - type: Transform - uid: 4371 components: - - pos: 72.5,9.5 + - type: Transform + pos: 72.5,9.5 parent: 31 - type: Transform - uid: 4372 components: - - pos: 70.5,9.5 - parent: 31 - type: Transform + - type: Transform + pos: 70.5,9.5 + parent: 31 - uid: 4373 components: - - pos: 64.5,5.5 + - type: Transform + pos: 64.5,5.5 parent: 31 - type: Transform - uid: 4450 components: - - pos: 74.5,-4.5 + - type: Transform + pos: 74.5,-4.5 parent: 31 - type: Transform - uid: 4467 components: - - pos: -15.5,-6.5 + - type: Transform + pos: -15.5,-6.5 parent: 31 - type: Transform - uid: 4543 components: - - pos: 73.5,-4.5 + - type: Transform + pos: 73.5,-4.5 parent: 31 - type: Transform - uid: 4544 components: - - pos: 77.5,-4.5 + - type: Transform + pos: 77.5,-4.5 parent: 31 - type: Transform - uid: 4545 components: - - pos: 76.5,-4.5 + - type: Transform + pos: 76.5,-4.5 parent: 31 - type: Transform - uid: 4546 components: - - pos: 78.5,-1.5 + - type: Transform + pos: 78.5,-1.5 parent: 31 - type: Transform - uid: 4547 components: - - pos: 78.5,-2.5 + - type: Transform + pos: 78.5,-2.5 parent: 31 - type: Transform - uid: 4553 components: - - pos: 78.5,-4.5 + - type: Transform + pos: 78.5,-4.5 parent: 31 - type: Transform - uid: 4651 components: - - pos: 64.5,-1.5 + - type: Transform + pos: 64.5,-1.5 parent: 31 - type: Transform - uid: 4652 components: - - pos: 64.5,-2.5 + - type: Transform + pos: 64.5,-2.5 parent: 31 - type: Transform - uid: 4653 components: - - pos: 64.5,-3.5 + - type: Transform + pos: 64.5,-3.5 parent: 31 - type: Transform - uid: 4822 components: - - pos: 23.5,-11.5 + - type: Transform + pos: 23.5,-11.5 parent: 31 - type: Transform - uid: 4841 components: - - pos: 0.5,-27.5 + - type: Transform + pos: 0.5,-27.5 parent: 31 - type: Transform - uid: 4863 components: - - pos: 12.5,23.5 + - type: Transform + pos: 12.5,23.5 parent: 31 - type: Transform - uid: 4868 components: - - pos: 1.5,-30.5 + - type: Transform + pos: 1.5,-30.5 parent: 31 - type: Transform - uid: 4911 components: - - pos: 78.5,6.5 + - type: Transform + pos: 78.5,6.5 parent: 31 - type: Transform - uid: 4999 components: - - pos: -0.5,-10.5 + - type: Transform + pos: -0.5,-10.5 parent: 31 - type: Transform - uid: 5014 components: - - pos: 64.5,-4.5 + - type: Transform + pos: 64.5,-4.5 parent: 31 - type: Transform - uid: 5108 components: - - pos: 66.5,-4.5 + - type: Transform + pos: 66.5,-4.5 parent: 31 - type: Transform - uid: 5122 components: - - pos: 67.5,-4.5 + - type: Transform + pos: 67.5,-4.5 parent: 31 - type: Transform - uid: 5261 components: - - pos: 68.5,-4.5 + - type: Transform + pos: 68.5,-4.5 parent: 31 - type: Transform - uid: 5377 components: - - pos: -15.5,-7.5 + - type: Transform + pos: -15.5,-7.5 parent: 31 - type: Transform - uid: 5379 components: - - pos: -14.5,-7.5 + - type: Transform + pos: -14.5,-7.5 parent: 31 - type: Transform - uid: 5650 components: - - pos: -4.5,-21.5 + - type: Transform + pos: -4.5,-21.5 parent: 31 - type: Transform - uid: 5692 components: - - pos: -9.5,-35.5 + - type: Transform + pos: -9.5,-35.5 parent: 31 - type: Transform - uid: 5701 components: - - pos: 14.5,-24.5 + - type: Transform + pos: 14.5,-24.5 parent: 31 - type: Transform - uid: 5720 components: - - pos: -9.5,-32.5 + - type: Transform + pos: -9.5,-32.5 parent: 31 - type: Transform - uid: 5721 components: - - pos: -9.5,-31.5 + - type: Transform + pos: -9.5,-31.5 parent: 31 - type: Transform - uid: 5725 components: - - pos: -6.5,-27.5 + - type: Transform + pos: -6.5,-27.5 parent: 31 - type: Transform - uid: 5726 components: - - pos: -8.5,-27.5 + - type: Transform + pos: -8.5,-27.5 parent: 31 - type: Transform - uid: 5728 components: - - pos: -5.5,-27.5 + - type: Transform + pos: -5.5,-27.5 parent: 31 - type: Transform - uid: 5736 components: - - pos: -7.5,-19.5 + - type: Transform + pos: -7.5,-19.5 parent: 31 - type: Transform - uid: 5744 components: - - pos: -10.5,-19.5 + - type: Transform + pos: -10.5,-19.5 parent: 31 - type: Transform - uid: 5748 components: - - pos: -10.5,-25.5 + - type: Transform + pos: -10.5,-25.5 parent: 31 - type: Transform - uid: 5749 components: - - pos: -13.5,-25.5 + - type: Transform + pos: -13.5,-25.5 parent: 31 - type: Transform - uid: 5750 components: - - pos: -12.5,-25.5 + - type: Transform + pos: -12.5,-25.5 parent: 31 - type: Transform - uid: 5751 components: - - pos: -15.5,-23.5 + - type: Transform + pos: -15.5,-23.5 parent: 31 - type: Transform - uid: 5753 components: - - pos: -4.5,-27.5 + - type: Transform + pos: -4.5,-27.5 parent: 31 - type: Transform - uid: 5755 components: - - pos: -1.5,-27.5 + - type: Transform + pos: -1.5,-27.5 parent: 31 - type: Transform - uid: 5759 components: - - pos: 0.5,-30.5 + - type: Transform + pos: 0.5,-30.5 parent: 31 - type: Transform - uid: 5761 components: - - pos: 0.5,-29.5 + - type: Transform + pos: 0.5,-29.5 parent: 31 - type: Transform - uid: 5782 components: - - pos: 14.5,-23.5 + - type: Transform + pos: 14.5,-23.5 parent: 31 - type: Transform - uid: 5981 components: - - pos: -12.5,15.5 + - type: Transform + pos: -12.5,15.5 parent: 31 - type: Transform - uid: 5982 components: - - pos: -9.5,15.5 + - type: Transform + pos: -9.5,15.5 parent: 31 - type: Transform - uid: 6099 components: - - pos: -11.5,-27.5 + - type: Transform + pos: -11.5,-27.5 parent: 31 - type: Transform - uid: 6175 components: - - pos: 64.5,1.5 + - type: Transform + pos: 64.5,1.5 parent: 31 - type: Transform - uid: 6296 components: - - pos: -10.5,-20.5 + - type: Transform + pos: -10.5,-20.5 parent: 31 - type: Transform - uid: 6317 components: - - pos: 78.5,0.5 + - type: Transform + pos: 78.5,0.5 parent: 31 - type: Transform - uid: 6318 components: - - pos: 78.5,1.5 + - type: Transform + pos: 78.5,1.5 parent: 31 - type: Transform - uid: 6319 components: - - pos: 78.5,3.5 + - type: Transform + pos: 78.5,3.5 parent: 31 - type: Transform - uid: 6325 components: - - pos: 78.5,2.5 + - type: Transform + pos: 78.5,2.5 parent: 31 - type: Transform - uid: 6371 components: - - pos: 34.5,10.5 + - type: Transform + pos: 34.5,10.5 parent: 31 - type: Transform - uid: 6372 components: - - pos: 35.5,10.5 + - type: Transform + pos: 35.5,10.5 parent: 31 - type: Transform - uid: 6373 components: - - pos: 37.5,10.5 + - type: Transform + pos: 37.5,10.5 parent: 31 - type: Transform - uid: 6450 components: - - pos: 43.5,6.5 + - type: Transform + pos: 43.5,6.5 parent: 31 - type: Transform - uid: 6460 components: - - pos: 43.5,8.5 + - type: Transform + pos: 43.5,8.5 parent: 31 - type: Transform - uid: 6461 components: - - pos: 43.5,7.5 + - type: Transform + pos: 43.5,7.5 parent: 31 - type: Transform - uid: 6554 components: - - pos: 36.5,10.5 + - type: Transform + pos: 36.5,10.5 parent: 31 - type: Transform - uid: 6555 components: - - pos: 34.5,9.5 + - type: Transform + pos: 34.5,9.5 parent: 31 - type: Transform - uid: 6556 components: - - pos: 34.5,8.5 + - type: Transform + pos: 34.5,8.5 parent: 31 - type: Transform - uid: 6588 components: - - pos: 34.5,7.5 + - type: Transform + pos: 34.5,7.5 parent: 31 - type: Transform - uid: 6589 components: - - pos: 34.5,6.5 + - type: Transform + pos: 34.5,6.5 parent: 31 - type: Transform - uid: 6590 components: - - pos: 34.5,5.5 + - type: Transform + pos: 34.5,5.5 parent: 31 - type: Transform - uid: 6591 components: - - pos: 34.5,4.5 + - type: Transform + pos: 34.5,4.5 parent: 31 - type: Transform - uid: 6592 components: - - pos: 34.5,3.5 + - type: Transform + pos: 34.5,3.5 parent: 31 - type: Transform - uid: 6593 components: - - pos: 34.5,2.5 + - type: Transform + pos: 34.5,2.5 parent: 31 - type: Transform - uid: 6594 components: - - pos: 34.5,1.5 + - type: Transform + pos: 34.5,1.5 parent: 31 - type: Transform - uid: 6595 components: - - pos: 34.5,0.5 + - type: Transform + pos: 34.5,0.5 parent: 31 - type: Transform - uid: 6638 components: - - pos: 43.5,9.5 + - type: Transform + pos: 43.5,9.5 parent: 31 - type: Transform - uid: 6687 components: - - pos: 11.5,14.5 + - type: Transform + pos: 11.5,14.5 parent: 31 - type: Transform - uid: 6688 components: - - pos: 10.5,14.5 + - type: Transform + pos: 10.5,14.5 parent: 31 - type: Transform - uid: 6689 components: - - pos: 9.5,14.5 + - type: Transform + pos: 9.5,14.5 parent: 31 - type: Transform - uid: 6750 components: - - pos: 64.5,3.5 + - type: Transform + pos: 64.5,3.5 parent: 31 - type: Transform - uid: 6856 components: - - pos: 64.5,2.5 + - type: Transform + pos: 64.5,2.5 parent: 31 - type: Transform - uid: 6882 components: - - pos: 64.5,4.5 + - type: Transform + pos: 64.5,4.5 parent: 31 - type: Transform - uid: 6922 components: - - pos: 69.5,-4.5 + - type: Transform + pos: 69.5,-4.5 parent: 31 - type: Transform - uid: 6923 components: - - pos: 70.5,-4.5 + - type: Transform + pos: 70.5,-4.5 parent: 31 - type: Transform - uid: 6924 components: - - pos: 71.5,-4.5 + - type: Transform + pos: 71.5,-4.5 parent: 31 - type: Transform - uid: 6925 components: - - pos: 72.5,-4.5 + - type: Transform + pos: 72.5,-4.5 parent: 31 - type: Transform - uid: 7057 components: - - pos: 8.5,14.5 + - type: Transform + pos: 8.5,14.5 parent: 31 - type: Transform - uid: 7106 components: - - pos: 24.5,17.5 + - type: Transform + pos: 24.5,17.5 parent: 31 - type: Transform - uid: 7128 components: - - pos: 7.5,14.5 + - type: Transform + pos: 7.5,14.5 parent: 31 - type: Transform - uid: 7136 components: - - pos: 23.5,-12.5 + - type: Transform + pos: 23.5,-12.5 parent: 31 - type: Transform - uid: 7168 components: - - pos: 0.5,-8.5 + - type: Transform + pos: 0.5,-8.5 parent: 31 - type: Transform - uid: 7177 components: - - pos: 75.5,-4.5 + - type: Transform + pos: 75.5,-4.5 parent: 31 - type: Transform - uid: 7209 components: - - pos: -26.5,-11.5 + - type: Transform + pos: -26.5,-11.5 parent: 31 - type: Transform - uid: 7255 components: - - pos: -11.5,-18.5 + - type: Transform + pos: -11.5,-18.5 parent: 31 - type: Transform - uid: 7260 components: - - pos: -5.5,-21.5 + - type: Transform + pos: -5.5,-21.5 parent: 31 - type: Transform - uid: 7404 components: - - pos: -16.5,-0.5 + - type: Transform + pos: -16.5,-0.5 parent: 31 - type: Transform - uid: 7456 components: - - pos: -10.5,-24.5 + - type: Transform + pos: -10.5,-24.5 parent: 31 - type: Transform - uid: 7469 components: - - pos: -14.5,-25.5 + - type: Transform + pos: -14.5,-25.5 parent: 31 - type: Transform - uid: 7589 components: - - pos: -10.5,-26.5 + - type: Transform + pos: -10.5,-26.5 parent: 31 - type: Transform - uid: 7590 components: - - pos: -10.5,-27.5 + - type: Transform + pos: -10.5,-27.5 parent: 31 - type: Transform - uid: 7606 components: - - pos: 15.5,-25.5 + - type: Transform + pos: 15.5,-25.5 parent: 31 - type: Transform - uid: 7635 components: - - pos: 7.5,13.5 + - type: Transform + pos: 7.5,13.5 parent: 31 - type: Transform - uid: 7860 components: - - pos: 7.5,12.5 + - type: Transform + pos: 7.5,12.5 parent: 31 - type: Transform - uid: 8029 components: - - pos: -36.5,-7.5 + - type: Transform + pos: -36.5,-7.5 parent: 31 - type: Transform - uid: 8030 components: - - pos: -36.5,-8.5 + - type: Transform + pos: -36.5,-8.5 parent: 31 - type: Transform - uid: 8031 components: - - pos: -37.5,-8.5 + - type: Transform + pos: -37.5,-8.5 parent: 31 - type: Transform - uid: 8039 components: - - pos: -38.5,-8.5 + - type: Transform + pos: -38.5,-8.5 parent: 31 - type: Transform - uid: 8041 components: - - pos: -16.5,0.5 + - type: Transform + pos: -16.5,0.5 parent: 31 - type: Transform - uid: 8071 components: - - pos: -18.5,16.5 + - type: Transform + pos: -18.5,16.5 parent: 31 - type: Transform - uid: 8077 components: - - pos: 12.5,20.5 + - type: Transform + pos: 12.5,20.5 parent: 31 - type: Transform - uid: 8078 components: - - pos: 12.5,19.5 + - type: Transform + pos: 12.5,19.5 parent: 31 - type: Transform - uid: 8079 components: - - pos: 11.5,19.5 + - type: Transform + pos: 11.5,19.5 parent: 31 - type: Transform - uid: 8080 components: - - pos: 10.5,19.5 + - type: Transform + pos: 10.5,19.5 parent: 31 - type: Transform - uid: 8081 components: - - pos: 9.5,19.5 + - type: Transform + pos: 9.5,19.5 parent: 31 - type: Transform - uid: 8082 components: - - pos: 9.5,20.5 + - type: Transform + pos: 9.5,20.5 parent: 31 - type: Transform - uid: 8083 components: - - pos: 9.5,21.5 + - type: Transform + pos: 9.5,21.5 parent: 31 - type: Transform - uid: 8133 components: - - pos: 49.5,1.5 + - type: Transform + pos: 49.5,1.5 parent: 31 - type: Transform - uid: 8144 components: - - pos: 61.5,7.5 + - type: Transform + pos: 61.5,7.5 parent: 31 - type: Transform - uid: 8162 components: - - pos: 55.5,5.5 + - type: Transform + pos: 55.5,5.5 parent: 31 - type: Transform - uid: 8185 components: - - pos: 50.5,1.5 + - type: Transform + pos: 50.5,1.5 parent: 31 - type: Transform - uid: 8186 components: - - pos: 51.5,1.5 + - type: Transform + pos: 51.5,1.5 parent: 31 - type: Transform - uid: 8187 components: - - pos: 52.5,1.5 + - type: Transform + pos: 52.5,1.5 parent: 31 - type: Transform - uid: 8188 components: - - pos: 53.5,1.5 + - type: Transform + pos: 53.5,1.5 parent: 31 - type: Transform - uid: 8189 components: - - pos: 54.5,1.5 + - type: Transform + pos: 54.5,1.5 parent: 31 - type: Transform - uid: 8190 components: - - pos: 55.5,1.5 + - type: Transform + pos: 55.5,1.5 parent: 31 - type: Transform - uid: 8191 components: - - pos: 56.5,1.5 + - type: Transform + pos: 56.5,1.5 parent: 31 - type: Transform - uid: 8192 components: - - pos: 57.5,1.5 + - type: Transform + pos: 57.5,1.5 parent: 31 - type: Transform - uid: 8193 components: - - pos: 58.5,1.5 + - type: Transform + pos: 58.5,1.5 parent: 31 - type: Transform - uid: 8194 components: - - pos: 59.5,1.5 + - type: Transform + pos: 59.5,1.5 parent: 31 - type: Transform - uid: 8195 components: - - pos: 60.5,1.5 + - type: Transform + pos: 60.5,1.5 parent: 31 - type: Transform - uid: 8196 components: - - pos: 60.5,2.5 + - type: Transform + pos: 60.5,2.5 parent: 31 - type: Transform - uid: 8197 components: - - pos: 61.5,2.5 + - type: Transform + pos: 61.5,2.5 parent: 31 - type: Transform - uid: 8198 components: - - pos: 62.5,2.5 + - type: Transform + pos: 62.5,2.5 parent: 31 - type: Transform - uid: 8199 components: - - pos: 63.5,2.5 + - type: Transform + pos: 63.5,2.5 parent: 31 - type: Transform - uid: 8205 components: - - pos: -6.5,-25.5 + - type: Transform + pos: -6.5,-25.5 parent: 31 - type: Transform - uid: 8208 components: - - pos: -6.5,-26.5 + - type: Transform + pos: -6.5,-26.5 parent: 31 - type: Transform - uid: 8491 components: - - pos: -11.5,-17.5 + - type: Transform + pos: -11.5,-17.5 parent: 31 - type: Transform - uid: 8669 components: - - pos: -31.5,-31.5 + - type: Transform + pos: -31.5,-31.5 parent: 31 - type: Transform - uid: 8670 components: - - pos: -32.5,-31.5 + - type: Transform + pos: -32.5,-31.5 parent: 31 - type: Transform - uid: 8671 components: - - pos: -32.5,-30.5 + - type: Transform + pos: -32.5,-30.5 parent: 31 - type: Transform - uid: 8672 components: - - pos: -32.5,-29.5 + - type: Transform + pos: -32.5,-29.5 parent: 31 - type: Transform - uid: 8673 components: - - pos: -32.5,-28.5 + - type: Transform + pos: -32.5,-28.5 parent: 31 - type: Transform - uid: 8674 components: - - pos: -32.5,-27.5 + - type: Transform + pos: -32.5,-27.5 parent: 31 - type: Transform - uid: 8675 components: - - pos: -32.5,-26.5 + - type: Transform + pos: -32.5,-26.5 parent: 31 - type: Transform - uid: 8676 components: - - pos: -32.5,-25.5 + - type: Transform + pos: -32.5,-25.5 parent: 31 - type: Transform - uid: 8782 components: - - pos: -8.5,15.5 + - type: Transform + pos: -8.5,15.5 parent: 31 - type: Transform - uid: 9050 components: - - pos: 18.5,-12.5 + - type: Transform + pos: 18.5,-12.5 parent: 31 - type: Transform - uid: 9055 components: - - pos: -18.5,15.5 + - type: Transform + pos: -18.5,15.5 parent: 31 - type: Transform - uid: 9076 components: - - pos: -15.5,0.5 + - type: Transform + pos: -15.5,0.5 parent: 31 - type: Transform - uid: 9082 components: - - pos: -18.5,14.5 + - type: Transform + pos: -18.5,14.5 parent: 31 - type: Transform - uid: 9083 components: - - pos: -17.5,16.5 + - type: Transform + pos: -17.5,16.5 parent: 31 - type: Transform - uid: 9084 components: - - pos: -17.5,14.5 + - type: Transform + pos: -17.5,14.5 parent: 31 - type: Transform - uid: 9141 components: - - pos: 21.5,-11.5 + - type: Transform + pos: 21.5,-11.5 parent: 31 - type: Transform - uid: 9202 components: - - pos: 55.5,6.5 + - type: Transform + pos: 55.5,6.5 parent: 31 - type: Transform - uid: 9276 components: - - pos: -9.5,-10.5 + - type: Transform + pos: -9.5,-10.5 parent: 31 - type: Transform - uid: 9278 components: - - pos: -10.5,-10.5 + - type: Transform + pos: -10.5,-10.5 parent: 31 - type: Transform - uid: 9505 components: - - pos: -2.5,-21.5 + - type: Transform + pos: -2.5,-21.5 parent: 31 - type: Transform - uid: 9618 components: - - pos: -16.5,14.5 + - type: Transform + pos: -16.5,14.5 parent: 31 - type: Transform - uid: 9619 components: - - pos: -15.5,14.5 + - type: Transform + pos: -15.5,14.5 parent: 31 - type: Transform - uid: 9620 components: - - pos: -14.5,14.5 + - type: Transform + pos: -14.5,14.5 parent: 31 - type: Transform - uid: 9621 components: - - pos: -13.5,14.5 + - type: Transform + pos: -13.5,14.5 parent: 31 - type: Transform - uid: 9625 components: - - pos: -7.5,-21.5 + - type: Transform + pos: -7.5,-21.5 parent: 31 - type: Transform - uid: 9627 components: - - pos: -14.5,0.5 + - type: Transform + pos: -14.5,0.5 parent: 31 - type: Transform - uid: 9684 components: - - pos: -7.5,-20.5 + - type: Transform + pos: -7.5,-20.5 parent: 31 - type: Transform - uid: 9734 components: - - pos: -11.5,15.5 + - type: Transform + pos: -11.5,15.5 parent: 31 - type: Transform - uid: 9747 components: - - pos: 44.5,8.5 + - type: Transform + pos: 44.5,8.5 parent: 31 - type: Transform - uid: 9869 components: - - pos: -12.5,14.5 + - type: Transform + pos: -12.5,14.5 parent: 31 - type: Transform - uid: 9870 components: - - pos: -12.5,13.5 + - type: Transform + pos: -12.5,13.5 parent: 31 - type: Transform - uid: 10229 components: - - pos: 62.5,7.5 + - type: Transform + pos: 62.5,7.5 parent: 31 - type: Transform - uid: 10235 components: - - pos: 63.5,7.5 + - type: Transform + pos: 63.5,7.5 parent: 31 - type: Transform - uid: 10269 components: - - pos: 50.5,-7.5 + - type: Transform + pos: 50.5,-7.5 parent: 31 - type: Transform - uid: 10270 components: - - pos: 53.5,-0.5 + - type: Transform + pos: 53.5,-0.5 parent: 31 - type: Transform - uid: 10305 components: - - pos: 53.5,-1.5 + - type: Transform + pos: 53.5,-1.5 parent: 31 - type: Transform - uid: 10306 components: - - pos: 53.5,-2.5 + - type: Transform + pos: 53.5,-2.5 parent: 31 - type: Transform - uid: 10356 components: - - pos: -15.5,-12.5 + - type: Transform + pos: -15.5,-12.5 parent: 31 - type: Transform - uid: 10357 components: - - pos: -26.5,-13.5 + - type: Transform + pos: -26.5,-13.5 parent: 31 - type: Transform - uid: 10360 components: - - pos: -27.5,-11.5 + - type: Transform + pos: -27.5,-11.5 parent: 31 - type: Transform - uid: 10361 components: - - pos: -28.5,-11.5 + - type: Transform + pos: -28.5,-11.5 parent: 31 - type: Transform - uid: 10362 components: - - pos: -29.5,-11.5 + - type: Transform + pos: -29.5,-11.5 parent: 31 - type: Transform - uid: 10363 components: - - pos: -30.5,-11.5 + - type: Transform + pos: -30.5,-11.5 parent: 31 - type: Transform - uid: 10364 components: - - pos: -31.5,-11.5 + - type: Transform + pos: -31.5,-11.5 parent: 31 - type: Transform - uid: 10365 components: - - pos: -32.5,-11.5 + - type: Transform + pos: -32.5,-11.5 parent: 31 - type: Transform - uid: 10366 components: - - pos: -32.5,-10.5 + - type: Transform + pos: -32.5,-10.5 parent: 31 - type: Transform - uid: 10367 components: - - pos: -32.5,-9.5 + - type: Transform + pos: -32.5,-9.5 parent: 31 - type: Transform - uid: 10368 components: - - pos: -32.5,-8.5 + - type: Transform + pos: -32.5,-8.5 parent: 31 - type: Transform - uid: 10369 components: - - pos: -31.5,-8.5 + - type: Transform + pos: -31.5,-8.5 parent: 31 - type: Transform - uid: 10370 components: - - pos: -30.5,-8.5 + - type: Transform + pos: -30.5,-8.5 parent: 31 - type: Transform - uid: 10442 components: - - pos: -12.5,-12.5 + - type: Transform + pos: -12.5,-12.5 parent: 31 - type: Transform - uid: 10445 components: - - pos: -14.5,-12.5 + - type: Transform + pos: -14.5,-12.5 parent: 31 - type: Transform - uid: 10447 components: - - pos: -13.5,-12.5 + - type: Transform + pos: -13.5,-12.5 parent: 31 - type: Transform - uid: 10525 components: - - pos: -13.5,0.5 + - type: Transform + pos: -13.5,0.5 parent: 31 - type: Transform - uid: 10592 components: - - pos: 53.5,-3.5 + - type: Transform + pos: 53.5,-3.5 parent: 31 - type: Transform - uid: 10594 components: - - pos: 53.5,-4.5 + - type: Transform + pos: 53.5,-4.5 parent: 31 - type: Transform - uid: 10595 components: - - pos: 54.5,-4.5 + - type: Transform + pos: 54.5,-4.5 parent: 31 - type: Transform - uid: 10596 components: - - pos: 55.5,-4.5 + - type: Transform + pos: 55.5,-4.5 parent: 31 - type: Transform - uid: 10607 components: - - pos: 55.5,-3.5 + - type: Transform + pos: 55.5,-3.5 parent: 31 - type: Transform - uid: 10609 components: - - pos: 50.5,-6.5 + - type: Transform + pos: 50.5,-6.5 parent: 31 - type: Transform - uid: 10610 components: - - pos: 52.5,-4.5 + - type: Transform + pos: 52.5,-4.5 parent: 31 - type: Transform - uid: 10611 components: - - pos: 51.5,-4.5 + - type: Transform + pos: 51.5,-4.5 parent: 31 - type: Transform - uid: 10612 components: - - pos: 50.5,-4.5 + - type: Transform + pos: 50.5,-4.5 parent: 31 - type: Transform - uid: 10614 components: - - pos: 49.5,-4.5 + - type: Transform + pos: 49.5,-4.5 parent: 31 - type: Transform - uid: 10848 components: - - pos: 50.5,-5.5 + - type: Transform + pos: 50.5,-5.5 parent: 31 - type: Transform - uid: 10867 components: - - pos: 55.5,-6.5 + - type: Transform + pos: 55.5,-6.5 parent: 31 - type: Transform - uid: 10868 components: - - pos: 53.5,-8.5 + - type: Transform + pos: 53.5,-8.5 parent: 31 - type: Transform - uid: 10869 components: - - pos: 53.5,-9.5 + - type: Transform + pos: 53.5,-9.5 parent: 31 - type: Transform - uid: 10871 components: - - pos: 55.5,-9.5 + - type: Transform + pos: 55.5,-9.5 parent: 31 - type: Transform - uid: 10872 components: - - pos: 52.5,-8.5 + - type: Transform + pos: 52.5,-8.5 parent: 31 - type: Transform - uid: 10873 components: - - pos: 51.5,-8.5 + - type: Transform + pos: 51.5,-8.5 parent: 31 - type: Transform - uid: 10874 components: - - pos: 50.5,-8.5 + - type: Transform + pos: 50.5,-8.5 parent: 31 - type: Transform - uid: 10877 components: - - pos: 55.5,-7.5 + - type: Transform + pos: 55.5,-7.5 parent: 31 - type: Transform - uid: 10878 components: - - pos: 55.5,-8.5 + - type: Transform + pos: 55.5,-8.5 parent: 31 - type: Transform - uid: 10963 components: - - pos: 51.5,-3.5 + - type: Transform + pos: 51.5,-3.5 parent: 31 - type: Transform - uid: 10964 components: - - pos: 51.5,-2.5 + - type: Transform + pos: 51.5,-2.5 parent: 31 - type: Transform - uid: 10965 components: - - pos: 54.5,-9.5 + - type: Transform + pos: 54.5,-9.5 parent: 31 - type: Transform - uid: 11073 components: - - pos: 3.5,13.5 + - type: Transform + pos: 3.5,13.5 parent: 31 - type: Transform - uid: 11202 components: - - pos: 16.5,-27.5 + - type: Transform + pos: 16.5,-27.5 parent: 31 - type: Transform - uid: 11203 components: - - pos: -28.5,-13.5 + - type: Transform + pos: -28.5,-13.5 parent: 31 - type: Transform - uid: 11210 components: - - pos: -28.5,-14.5 + - type: Transform + pos: -28.5,-14.5 parent: 31 - type: Transform - uid: 11211 components: - - pos: 4.5,13.5 + - type: Transform + pos: 4.5,13.5 parent: 31 - type: Transform - uid: 11212 components: - - pos: 5.5,13.5 + - type: Transform + pos: 5.5,13.5 parent: 31 - type: Transform - uid: 11248 components: - - pos: -31.5,7.5 + - type: Transform + pos: -31.5,7.5 parent: 31 - type: Transform - uid: 11260 components: - - pos: 58.5,2.5 + - type: Transform + pos: 58.5,2.5 parent: 31 - type: Transform - uid: 11285 components: - - pos: 45.5,8.5 + - type: Transform + pos: 45.5,8.5 parent: 31 - type: Transform - uid: 11286 components: - - pos: 46.5,8.5 + - type: Transform + pos: 46.5,8.5 parent: 31 - type: Transform - uid: 11287 components: - - pos: 47.5,8.5 + - type: Transform + pos: 47.5,8.5 parent: 31 - type: Transform - uid: 11288 components: - - pos: 47.5,9.5 + - type: Transform + pos: 47.5,9.5 parent: 31 - type: Transform - uid: 11289 components: - - pos: 47.5,10.5 + - type: Transform + pos: 47.5,10.5 parent: 31 - type: Transform - uid: 11290 components: - - pos: 47.5,11.5 + - type: Transform + pos: 47.5,11.5 parent: 31 - type: Transform - uid: 11291 components: - - pos: 47.5,12.5 + - type: Transform + pos: 47.5,12.5 parent: 31 - type: Transform - uid: 11292 components: - - pos: 47.5,13.5 + - type: Transform + pos: 47.5,13.5 parent: 31 - type: Transform - uid: 11293 components: - - pos: 48.5,13.5 + - type: Transform + pos: 48.5,13.5 parent: 31 - type: Transform - uid: 11294 components: - - pos: 49.5,13.5 + - type: Transform + pos: 49.5,13.5 parent: 31 - type: Transform - uid: 11295 components: - - pos: 50.5,12.5 + - type: Transform + pos: 50.5,12.5 parent: 31 - type: Transform - uid: 11296 components: - - pos: 50.5,9.5 + - type: Transform + pos: 50.5,9.5 parent: 31 - type: Transform - uid: 11297 components: - - pos: 51.5,12.5 + - type: Transform + pos: 51.5,12.5 parent: 31 - type: Transform - uid: 11298 components: - - pos: 51.5,11.5 + - type: Transform + pos: 51.5,11.5 parent: 31 - type: Transform - uid: 11299 components: - - pos: 51.5,10.5 + - type: Transform + pos: 51.5,10.5 parent: 31 - type: Transform - uid: 11300 components: - - pos: 51.5,9.5 + - type: Transform + pos: 51.5,9.5 parent: 31 - type: Transform - uid: 11301 components: - - pos: 49.5,12.5 + - type: Transform + pos: 49.5,12.5 parent: 31 - type: Transform - uid: 11302 components: - - pos: 49.5,9.5 + - type: Transform + pos: 49.5,9.5 parent: 31 - type: Transform - uid: 11303 components: - - pos: 49.5,8.5 + - type: Transform + pos: 49.5,8.5 parent: 31 - type: Transform - uid: 11304 components: - - pos: 49.5,7.5 + - type: Transform + pos: 49.5,7.5 parent: 31 - type: Transform - uid: 11327 components: - - pos: 6.5,13.5 + - type: Transform + pos: 6.5,13.5 parent: 31 - type: Transform - uid: 11333 components: - - pos: 20.5,-23.5 + - type: Transform + pos: 20.5,-23.5 parent: 31 - type: Transform - uid: 11337 components: - - pos: 20.5,-24.5 + - type: Transform + pos: 20.5,-24.5 parent: 31 - type: Transform - uid: 11339 components: - - pos: 20.5,-25.5 + - type: Transform + pos: 20.5,-25.5 parent: 31 - type: Transform - uid: 11340 components: - - pos: 19.5,-25.5 + - type: Transform + pos: 19.5,-25.5 parent: 31 - type: Transform - uid: 11341 components: - - pos: 18.5,-25.5 + - type: Transform + pos: 18.5,-25.5 parent: 31 - type: Transform - uid: 11342 components: - - pos: 17.5,-25.5 + - type: Transform + pos: 17.5,-25.5 parent: 31 - type: Transform - uid: 11343 components: - - pos: 16.5,-25.5 + - type: Transform + pos: 16.5,-25.5 parent: 31 - type: Transform - uid: 11345 components: - - pos: 24.5,16.5 + - type: Transform + pos: 24.5,16.5 parent: 31 - type: Transform - uid: 11346 components: - - pos: 25.5,16.5 + - type: Transform + pos: 25.5,16.5 parent: 31 - type: Transform - uid: 11347 components: - - pos: 26.5,16.5 + - type: Transform + pos: 26.5,16.5 parent: 31 - type: Transform - uid: 11348 components: - - pos: 26.5,15.5 + - type: Transform + pos: 26.5,15.5 parent: 31 - type: Transform - uid: 11349 components: - - pos: 26.5,14.5 + - type: Transform + pos: 26.5,14.5 parent: 31 - type: Transform - proto: CableMVStack entities: - uid: 48 components: - - pos: 48.35775,5.619252 + - type: Transform + pos: 48.35775,5.619252 parent: 31 - type: Transform - uid: 152 components: - - pos: 29.54536,1.4761796 + - type: Transform + pos: 29.54536,1.4761796 parent: 31 - type: Transform - uid: 712 components: - - pos: 48.35775,5.619252 + - type: Transform + pos: 48.35775,5.619252 parent: 31 - type: Transform - proto: CableTerminal entities: - uid: 4327 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-29.5 parent: 31 - type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} - uid: 4328 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -23.5,25.5 parent: 31 - type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} - uid: 6414 components: - - pos: 40.5,6.5 + - type: Transform + pos: 40.5,6.5 parent: 31 - type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} - uid: 6930 components: - - pos: 42.5,6.5 + - type: Transform + pos: 42.5,6.5 parent: 31 - type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} - uid: 6941 components: - - pos: 41.5,6.5 + - type: Transform + pos: 41.5,6.5 parent: 31 - type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} - uid: 7913 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 55.5,3.5 parent: 31 - type: Transform - uid: 8573 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -30.5,-32.5 parent: 31 - type: Transform - - canCollide: False - type: Physics - - fixtures: {} - type: Fixtures + - type: Physics + canCollide: False + - type: Fixtures + fixtures: {} - uid: 10255 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 52.5,-1.5 parent: 31 - type: Transform - proto: CandyBowl entities: - uid: 1105 components: - - pos: 5.4776692,21.540764 + - type: Transform + pos: 5.4776692,21.540764 parent: 31 - type: Transform - uid: 1912 components: - - pos: 6.4716253,-3.2451885 + - type: Transform + pos: 6.4716253,-3.2451885 parent: 31 - type: Transform - proto: CaptainIDCard entities: - uid: 4684 components: - - pos: 6.5105124,24.655684 + - type: Transform + pos: 6.5105124,24.655684 parent: 31 - type: Transform - proto: CarbonDioxideCanister entities: - uid: 6877 components: - - pos: 40.5,23.5 + - type: Transform + pos: 40.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10010 components: - - pos: 36.5,12.5 + - type: Transform + pos: 36.5,12.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: Carpet entities: - uid: 1275 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-4.5 parent: 31 - type: Transform - uid: 1376 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,21.5 parent: 31 - type: Transform - uid: 1916 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-6.5 parent: 31 - type: Transform - uid: 1917 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 31 - type: Transform - uid: 4059 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 31 - type: Transform - uid: 4160 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-6.5 parent: 31 - type: Transform - uid: 4161 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-5.5 parent: 31 - type: Transform - uid: 4700 components: - - pos: -7.5,21.5 + - type: Transform + pos: -7.5,21.5 parent: 31 - type: Transform - uid: 7302 components: - - pos: 9.5,-25.5 + - type: Transform + pos: 9.5,-25.5 parent: 31 - type: Transform - uid: 7303 components: - - pos: 9.5,-24.5 + - type: Transform + pos: 9.5,-24.5 parent: 31 - type: Transform - uid: 7304 components: - - pos: 9.5,-23.5 + - type: Transform + pos: 9.5,-23.5 parent: 31 - type: Transform - uid: 7305 components: - - pos: 9.5,-22.5 + - type: Transform + pos: 9.5,-22.5 parent: 31 - type: Transform - uid: 7306 components: - - pos: 10.5,-22.5 + - type: Transform + pos: 10.5,-22.5 parent: 31 - type: Transform - uid: 7307 components: - - pos: 12.5,-22.5 + - type: Transform + pos: 12.5,-22.5 parent: 31 - type: Transform - uid: 7308 components: - - pos: 11.5,-22.5 + - type: Transform + pos: 11.5,-22.5 parent: 31 - type: Transform - uid: 7309 components: - - pos: 12.5,-23.5 + - type: Transform + pos: 12.5,-23.5 parent: 31 - type: Transform - uid: 7310 components: - - pos: 12.5,-24.5 + - type: Transform + pos: 12.5,-24.5 parent: 31 - type: Transform - uid: 7311 components: - - pos: 12.5,-25.5 + - type: Transform + pos: 12.5,-25.5 parent: 31 - type: Transform - uid: 7312 components: - - pos: 11.5,-25.5 + - type: Transform + pos: 11.5,-25.5 parent: 31 - type: Transform - uid: 7313 components: - - pos: 10.5,-25.5 + - type: Transform + pos: 10.5,-25.5 parent: 31 - type: Transform - uid: 7314 components: - - pos: 10.5,-24.5 + - type: Transform + pos: 10.5,-24.5 parent: 31 - type: Transform - uid: 7315 components: - - pos: 10.5,-23.5 + - type: Transform + pos: 10.5,-23.5 parent: 31 - type: Transform - uid: 7316 components: - - pos: 11.5,-23.5 + - type: Transform + pos: 11.5,-23.5 parent: 31 - type: Transform - uid: 7317 components: - - pos: 11.5,-24.5 + - type: Transform + pos: 11.5,-24.5 parent: 31 - type: Transform - uid: 8271 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,22.5 parent: 31 - type: Transform - uid: 8919 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -25.5,-5.5 parent: 31 - type: Transform - uid: 8920 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -25.5,-6.5 parent: 31 - type: Transform - uid: 8921 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -25.5,-7.5 parent: 31 - type: Transform - uid: 8922 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -23.5,-7.5 parent: 31 - type: Transform - uid: 8923 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -24.5,-7.5 parent: 31 - type: Transform - uid: 8924 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -24.5,-6.5 parent: 31 - type: Transform - uid: 8925 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -23.5,-6.5 parent: 31 - type: Transform - uid: 8926 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -23.5,-5.5 parent: 31 - type: Transform - uid: 8927 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -24.5,-5.5 parent: 31 - type: Transform - uid: 8928 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -24.5,-4.5 parent: 31 - type: Transform - uid: 8929 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -23.5,-4.5 parent: 31 - type: Transform - uid: 8931 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,-5.5 parent: 31 - type: Transform - uid: 8932 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,-6.5 parent: 31 - type: Transform - uid: 8933 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,-7.5 parent: 31 - type: Transform - uid: 9887 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-38.5 parent: 31 - type: Transform - uid: 9888 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-39.5 parent: 31 - type: Transform - uid: 9890 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-38.5 parent: 31 - type: Transform - uid: 9891 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-39.5 parent: 31 - type: Transform - uid: 9914 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-38.5 parent: 31 - type: Transform - uid: 9936 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-39.5 parent: 31 - type: Transform - uid: 9940 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-39.5 parent: 31 - type: Transform - uid: 9942 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-39.5 parent: 31 - type: Transform - uid: 10321 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -24.5,-8.5 parent: 31 - type: Transform - uid: 10322 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -23.5,-8.5 parent: 31 - type: Transform - uid: 11039 components: - - pos: -8.5,22.5 + - type: Transform + pos: -8.5,22.5 parent: 31 - type: Transform - uid: 11040 components: - - pos: -9.5,22.5 + - type: Transform + pos: -9.5,22.5 parent: 31 - type: Transform - proto: CarpetBlack entities: - uid: 1449 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -23.5,16.5 parent: 31 - type: Transform - uid: 4184 components: - - pos: -1.5,24.5 + - type: Transform + pos: -1.5,24.5 parent: 31 - type: Transform - uid: 4189 components: - - pos: -1.5,25.5 + - type: Transform + pos: -1.5,25.5 parent: 31 - type: Transform - uid: 6281 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -23.5,17.5 parent: 31 - type: Transform - uid: 6309 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -22.5,17.5 parent: 31 - type: Transform - uid: 7360 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,-7.5 parent: 31 - type: Transform - uid: 7361 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,-6.5 parent: 31 - type: Transform - uid: 7362 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-6.5 parent: 31 - type: Transform - uid: 7363 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-7.5 parent: 31 - type: Transform - proto: CarpetBlue entities: - uid: 20 components: - - pos: 11.5,23.5 + - type: Transform + pos: 11.5,23.5 parent: 31 - type: Transform - uid: 63 components: - - pos: 7.5,23.5 + - type: Transform + pos: 7.5,23.5 parent: 31 - type: Transform - uid: 73 components: - - pos: 11.5,24.5 + - type: Transform + pos: 11.5,24.5 parent: 31 - type: Transform - uid: 491 components: - - pos: 6.5,24.5 + - type: Transform + pos: 6.5,24.5 parent: 31 - type: Transform - uid: 568 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,-10.5 parent: 31 - type: Transform - uid: 989 components: - - pos: 12.5,23.5 + - type: Transform + pos: 12.5,23.5 parent: 31 - type: Transform - uid: 2129 components: - - pos: 25.5,-9.5 + - type: Transform + pos: 25.5,-9.5 parent: 31 - type: Transform - uid: 3270 components: - - pos: 8.5,23.5 + - type: Transform + pos: 8.5,23.5 parent: 31 - type: Transform - uid: 3271 components: - - pos: 6.5,23.5 + - type: Transform + pos: 6.5,23.5 parent: 31 - type: Transform - uid: 3273 components: - - pos: 7.5,24.5 + - type: Transform + pos: 7.5,24.5 parent: 31 - type: Transform - uid: 4107 components: - - pos: -29.5,-1.5 + - type: Transform + pos: -29.5,-1.5 parent: 31 - type: Transform - uid: 4108 components: - - pos: -29.5,-2.5 + - type: Transform + pos: -29.5,-2.5 parent: 31 - type: Transform - uid: 4109 components: - - pos: -28.5,-1.5 + - type: Transform + pos: -28.5,-1.5 parent: 31 - type: Transform - uid: 4110 components: - - pos: -28.5,-2.5 + - type: Transform + pos: -28.5,-2.5 parent: 31 - type: Transform - uid: 4922 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,-10.5 parent: 31 - type: Transform - uid: 5121 components: - - pos: 8.5,24.5 + - type: Transform + pos: 8.5,24.5 parent: 31 - type: Transform - uid: 5137 components: - - pos: 12.5,24.5 + - type: Transform + pos: 12.5,24.5 parent: 31 - type: Transform - uid: 7074 components: - - pos: 25.5,-10.5 + - type: Transform + pos: 25.5,-10.5 parent: 31 - type: Transform - uid: 7463 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,-9.5 parent: 31 - type: Transform - uid: 8344 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,-9.5 parent: 31 - type: Transform - uid: 11074 components: - - pos: -33.5,18.5 + - type: Transform + pos: -33.5,18.5 parent: 31 - type: Transform - uid: 11075 components: - - pos: -33.5,17.5 + - type: Transform + pos: -33.5,17.5 parent: 31 - type: Transform - uid: 11076 components: - - pos: -34.5,17.5 + - type: Transform + pos: -34.5,17.5 parent: 31 - type: Transform - proto: CarpetChapel entities: - uid: 2118 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,15.5 parent: 31 - type: Transform - uid: 2120 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -34.5,15.5 parent: 31 - type: Transform - uid: 2125 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -38.5,15.5 parent: 31 - type: Transform - uid: 2134 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -34.5,14.5 parent: 31 - type: Transform - uid: 2161 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -37.5,14.5 parent: 31 - type: Transform - uid: 10697 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -34.5,12.5 parent: 31 - type: Transform - uid: 10698 components: - - pos: -35.5,12.5 - parent: 31 - type: Transform + - type: Transform + pos: -35.5,12.5 + parent: 31 - uid: 10699 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -37.5,12.5 parent: 31 - type: Transform - uid: 10700 components: - - pos: -38.5,12.5 + - type: Transform + pos: -38.5,12.5 parent: 31 - type: Transform - uid: 10701 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -38.5,13.5 parent: 31 - type: Transform - uid: 10702 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,13.5 parent: 31 - type: Transform - uid: 10703 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -34.5,13.5 parent: 31 - type: Transform - uid: 10704 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,13.5 parent: 31 - type: Transform - uid: 10705 components: - - pos: -35.5,14.5 + - type: Transform + pos: -35.5,14.5 parent: 31 - type: Transform - uid: 10706 components: - - pos: -38.5,14.5 + - type: Transform + pos: -38.5,14.5 parent: 31 - type: Transform - uid: 10707 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,15.5 parent: 31 - type: Transform - proto: CarpetGreen entities: - uid: 2452 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 31 - type: Transform - uid: 4058 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,0.5 parent: 31 - type: Transform - uid: 4062 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 31 - type: Transform - uid: 4099 components: - - pos: -29.5,1.5 + - type: Transform + pos: -29.5,1.5 parent: 31 - type: Transform - uid: 4100 components: - - pos: -29.5,0.5 + - type: Transform + pos: -29.5,0.5 parent: 31 - type: Transform - uid: 4101 components: - - pos: -28.5,1.5 + - type: Transform + pos: -28.5,1.5 parent: 31 - type: Transform - uid: 4102 components: - - pos: -28.5,0.5 + - type: Transform + pos: -28.5,0.5 parent: 31 - type: Transform - uid: 4155 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-29.5 parent: 31 - type: Transform - uid: 4721 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-30.5 parent: 31 - type: Transform - uid: 4722 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-29.5 parent: 31 - type: Transform - uid: 4780 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-30.5 parent: 31 - type: Transform - uid: 8423 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 31 - type: Transform - uid: 8726 components: - - pos: -34.5,-29.5 + - type: Transform + pos: -34.5,-29.5 parent: 31 - type: Transform - uid: 8727 components: - - pos: -34.5,-28.5 + - type: Transform + pos: -34.5,-28.5 parent: 31 - type: Transform - uid: 8728 components: - - pos: -35.5,-28.5 + - type: Transform + pos: -35.5,-28.5 parent: 31 - type: Transform - uid: 8729 components: - - pos: -36.5,-28.5 + - type: Transform + pos: -36.5,-28.5 parent: 31 - type: Transform - uid: 8730 components: - - pos: -36.5,-29.5 + - type: Transform + pos: -36.5,-29.5 parent: 31 - type: Transform - uid: 8731 components: - - pos: -35.5,-29.5 + - type: Transform + pos: -35.5,-29.5 parent: 31 - type: Transform - uid: 8911 components: - - pos: -24.5,-2.5 + - type: Transform + pos: -24.5,-2.5 parent: 31 - type: Transform - uid: 8912 components: - - pos: -23.5,-2.5 + - type: Transform + pos: -23.5,-2.5 parent: 31 - type: Transform - uid: 8913 components: - - pos: -23.5,-1.5 + - type: Transform + pos: -23.5,-1.5 parent: 31 - type: Transform - uid: 8914 components: - - pos: -24.5,-1.5 + - type: Transform + pos: -24.5,-1.5 parent: 31 - type: Transform - uid: 9014 components: - - pos: 7.5,-27.5 + - type: Transform + pos: 7.5,-27.5 parent: 31 - type: Transform - uid: 9015 components: - - pos: 8.5,-27.5 + - type: Transform + pos: 8.5,-27.5 parent: 31 - type: Transform - uid: 9016 components: - - pos: 8.5,-26.5 + - type: Transform + pos: 8.5,-26.5 parent: 31 - type: Transform - uid: 9017 components: - - pos: 7.5,-26.5 + - type: Transform + pos: 7.5,-26.5 parent: 31 - type: Transform - uid: 9018 components: - - pos: 6.5,-27.5 + - type: Transform + pos: 6.5,-27.5 parent: 31 - type: Transform - uid: 9019 components: - - pos: 6.5,-26.5 + - type: Transform + pos: 6.5,-26.5 parent: 31 - type: Transform - proto: CarpetOrange entities: - uid: 22 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-2.5 parent: 31 - type: Transform - uid: 40 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-1.5 parent: 31 - type: Transform - uid: 82 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-1.5 parent: 31 - type: Transform - uid: 102 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 31 - type: Transform - uid: 107 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-1.5 parent: 31 - type: Transform - uid: 119 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-2.5 parent: 31 - type: Transform - uid: 559 components: - - pos: -3.5,-0.5 + - type: Transform + pos: -3.5,-0.5 parent: 31 - type: Transform - uid: 832 components: - - pos: 29.5,8.5 + - type: Transform + pos: 29.5,8.5 parent: 31 - type: Transform - uid: 985 components: - - pos: 38.5,-0.5 + - type: Transform + pos: 38.5,-0.5 parent: 31 - type: Transform - uid: 1046 components: - - pos: -5.5,-0.5 + - type: Transform + pos: -5.5,-0.5 parent: 31 - type: Transform - uid: 1154 components: - - pos: 38.5,-1.5 + - type: Transform + pos: 38.5,-1.5 parent: 31 - type: Transform - uid: 1338 components: - - pos: -4.5,-0.5 + - type: Transform + pos: -4.5,-0.5 parent: 31 - type: Transform - uid: 1607 components: - - pos: 39.5,-0.5 + - type: Transform + pos: 39.5,-0.5 parent: 31 - type: Transform - uid: 1608 components: - - pos: 39.5,-1.5 + - type: Transform + pos: 39.5,-1.5 parent: 31 - type: Transform - uid: 2387 components: - - pos: -6.5,-0.5 + - type: Transform + pos: -6.5,-0.5 parent: 31 - type: Transform - uid: 2945 components: - - pos: 28.5,8.5 + - type: Transform + pos: 28.5,8.5 parent: 31 - type: Transform - uid: 3751 components: - - pos: -7.5,-0.5 + - type: Transform + pos: -7.5,-0.5 parent: 31 - type: Transform - uid: 3752 components: - - pos: -2.5,-0.5 + - type: Transform + pos: -2.5,-0.5 parent: 31 - type: Transform - uid: 6242 components: - - pos: 27.5,8.5 + - type: Transform + pos: 27.5,8.5 parent: 31 - type: Transform - uid: 8426 components: - - pos: -2.5,-2.5 + - type: Transform + pos: -2.5,-2.5 parent: 31 - type: Transform - uid: 8427 components: - - pos: -3.5,-2.5 + - type: Transform + pos: -3.5,-2.5 parent: 31 - type: Transform - uid: 8428 components: - - pos: -4.5,-2.5 + - type: Transform + pos: -4.5,-2.5 parent: 31 - type: Transform - uid: 8429 components: - - pos: -4.5,-1.5 + - type: Transform + pos: -4.5,-1.5 parent: 31 - type: Transform - uid: 8430 components: - - pos: -3.5,-1.5 + - type: Transform + pos: -3.5,-1.5 parent: 31 - type: Transform - uid: 8431 components: - - pos: -2.5,-1.5 + - type: Transform + pos: -2.5,-1.5 parent: 31 - type: Transform - uid: 11388 components: - - pos: 40.5,-1.5 + - type: Transform + pos: 40.5,-1.5 parent: 31 - type: Transform - uid: 11389 components: - - pos: 41.5,-1.5 + - type: Transform + pos: 41.5,-1.5 parent: 31 - type: Transform - proto: CarpetPink entities: - uid: 4103 components: - - pos: -29.5,-4.5 + - type: Transform + pos: -29.5,-4.5 parent: 31 - type: Transform - uid: 4104 components: - - pos: -29.5,-5.5 + - type: Transform + pos: -29.5,-5.5 parent: 31 - type: Transform - uid: 4105 components: - - pos: -28.5,-4.5 + - type: Transform + pos: -28.5,-4.5 parent: 31 - type: Transform - uid: 4106 components: - - pos: -28.5,-5.5 + - type: Transform + pos: -28.5,-5.5 parent: 31 - type: Transform - uid: 7298 components: - - pos: 8.5,-29.5 + - type: Transform + pos: 8.5,-29.5 parent: 31 - type: Transform - uid: 7299 components: - - pos: 8.5,-30.5 + - type: Transform + pos: 8.5,-30.5 parent: 31 - type: Transform - uid: 7300 components: - - pos: 9.5,-30.5 + - type: Transform + pos: 9.5,-30.5 parent: 31 - type: Transform - uid: 7301 components: - - pos: 9.5,-29.5 + - type: Transform + pos: 9.5,-29.5 parent: 31 - type: Transform - proto: CarpetPurple entities: - uid: 1698 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-23.5 parent: 31 - type: Transform - uid: 2087 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-23.5 parent: 31 - type: Transform - proto: CarpetSBlue entities: - uid: 91 components: - - pos: 9.5,19.5 + - type: Transform + pos: 9.5,19.5 parent: 31 - type: Transform - uid: 1177 components: - - pos: 8.5,19.5 + - type: Transform + pos: 8.5,19.5 parent: 31 - type: Transform - uid: 7155 components: - - pos: 9.5,20.5 + - type: Transform + pos: 9.5,20.5 parent: 31 - type: Transform - uid: 7432 components: - - pos: 10.5,16.5 + - type: Transform + pos: 10.5,16.5 parent: 31 - type: Transform - uid: 8418 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,20.5 parent: 31 - type: Transform - uid: 9052 components: - - pos: 9.5,16.5 + - type: Transform + pos: 9.5,16.5 parent: 31 - type: Transform - proto: Catwalk entities: - uid: 2 components: - - pos: -3.5,21.5 + - type: Transform + pos: -3.5,21.5 parent: 31 - type: Transform - uid: 25 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 33.5,38.5 parent: 31 - type: Transform - uid: 32 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 35.5,38.5 parent: 31 - type: Transform - uid: 402 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -27.5,-16.5 parent: 31 - type: Transform - uid: 529 components: - - pos: -1.5,21.5 + - type: Transform + pos: -1.5,21.5 parent: 31 - type: Transform - uid: 705 components: - - pos: -9.5,-10.5 + - type: Transform + pos: -9.5,-10.5 parent: 31 - type: Transform - uid: 710 components: - - pos: -7.5,-10.5 + - type: Transform + pos: -7.5,-10.5 parent: 31 - type: Transform - uid: 713 components: - - pos: -4.5,-10.5 + - type: Transform + pos: -4.5,-10.5 parent: 31 - type: Transform - uid: 722 components: - - pos: -2.5,-10.5 + - type: Transform + pos: -2.5,-10.5 parent: 31 - type: Transform - uid: 743 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-17.5 parent: 31 - type: Transform - uid: 764 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-12.5 parent: 31 - type: Transform - uid: 808 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-15.5 parent: 31 - type: Transform - uid: 833 components: - - pos: 47.5,-7.5 + - type: Transform + pos: 47.5,-7.5 parent: 31 - type: Transform - uid: 834 components: - - pos: 55.5,-8.5 + - type: Transform + pos: 55.5,-8.5 parent: 31 - type: Transform - uid: 850 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-13.5 parent: 31 - type: Transform - uid: 884 components: - - pos: 52.5,-10.5 + - type: Transform + pos: 52.5,-10.5 parent: 31 - type: Transform - uid: 885 components: - - pos: 53.5,-9.5 + - type: Transform + pos: 53.5,-9.5 parent: 31 - type: Transform - uid: 886 components: - - pos: 53.5,-8.5 + - type: Transform + pos: 53.5,-8.5 parent: 31 - type: Transform - uid: 887 components: - - pos: 51.5,-8.5 + - type: Transform + pos: 51.5,-8.5 parent: 31 - type: Transform - uid: 974 components: - - pos: -2.5,21.5 + - type: Transform + pos: -2.5,21.5 parent: 31 - type: Transform - uid: 1063 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-14.5 parent: 31 - type: Transform - uid: 1153 components: - - pos: -0.5,21.5 + - type: Transform + pos: -0.5,21.5 parent: 31 - type: Transform - uid: 1388 components: - - pos: 32.5,27.5 + - type: Transform + pos: 32.5,27.5 parent: 31 - type: Transform - uid: 1427 components: - - pos: -1.5,-10.5 + - type: Transform + pos: -1.5,-10.5 parent: 31 - type: Transform - uid: 1432 components: - - pos: -0.5,-10.5 + - type: Transform + pos: -0.5,-10.5 parent: 31 - type: Transform - uid: 1437 components: - - pos: -8.5,-10.5 + - type: Transform + pos: -8.5,-10.5 parent: 31 - type: Transform - uid: 1438 components: - - pos: -5.5,-10.5 + - type: Transform + pos: -5.5,-10.5 parent: 31 - type: Transform - uid: 1440 components: - - pos: -3.5,-10.5 + - type: Transform + pos: -3.5,-10.5 parent: 31 - type: Transform - uid: 1492 components: - - pos: 6.5,14.5 + - type: Transform + pos: 6.5,14.5 parent: 31 - type: Transform - uid: 1552 components: - - pos: -9.5,-8.5 + - type: Transform + pos: -9.5,-8.5 parent: 31 - type: Transform - uid: 1624 components: - - pos: 43.5,-4.5 + - type: Transform + pos: 43.5,-4.5 parent: 31 - type: Transform - uid: 1662 components: - - pos: 27.5,-8.5 + - type: Transform + pos: 27.5,-8.5 parent: 31 - type: Transform - uid: 1711 components: - - pos: 27.5,-12.5 + - type: Transform + pos: 27.5,-12.5 parent: 31 - type: Transform - uid: 2146 components: - - pos: 43.5,-3.5 + - type: Transform + pos: 43.5,-3.5 parent: 31 - type: Transform - uid: 2157 components: - - pos: 12.5,14.5 + - type: Transform + pos: 12.5,14.5 parent: 31 - type: Transform - uid: 2158 components: - - pos: 12.5,18.5 + - type: Transform + pos: 12.5,18.5 parent: 31 - type: Transform - uid: 2329 components: - - pos: 27.5,-13.5 + - type: Transform + pos: 27.5,-13.5 parent: 31 - type: Transform - uid: 2866 components: - - pos: 22.5,-19.5 + - type: Transform + pos: 22.5,-19.5 parent: 31 - type: Transform - uid: 3107 components: - - pos: 57.5,7.5 + - type: Transform + pos: 57.5,7.5 parent: 31 - type: Transform - uid: 3110 components: - - pos: 59.5,12.5 + - type: Transform + pos: 59.5,12.5 parent: 31 - type: Transform - uid: 3279 components: - - pos: 43.5,-2.5 + - type: Transform + pos: 43.5,-2.5 parent: 31 - type: Transform - uid: 3412 components: - - pos: -19.5,-31.5 + - type: Transform + pos: -19.5,-31.5 parent: 31 - type: Transform - uid: 3414 components: - - pos: -19.5,-30.5 + - type: Transform + pos: -19.5,-30.5 parent: 31 - type: Transform - uid: 3570 components: - - pos: 78.5,12.5 + - type: Transform + pos: 78.5,12.5 parent: 31 - type: Transform - uid: 3656 components: - - pos: 55.5,7.5 + - type: Transform + pos: 55.5,7.5 parent: 31 - type: Transform - uid: 3725 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-38.5 parent: 31 - type: Transform - uid: 3958 components: - - pos: 16.5,20.5 + - type: Transform + pos: 16.5,20.5 parent: 31 - type: Transform - uid: 4219 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-38.5 parent: 31 - type: Transform - uid: 4344 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 63.5,2.5 parent: 31 - type: Transform - uid: 4397 components: - - pos: 53.5,-10.5 + - type: Transform + pos: 53.5,-10.5 parent: 31 - type: Transform - uid: 4401 components: - - pos: 20.5,-35.5 + - type: Transform + pos: 20.5,-35.5 parent: 31 - type: Transform - uid: 4409 components: - - pos: 51.5,-10.5 + - type: Transform + pos: 51.5,-10.5 parent: 31 - type: Transform - uid: 4420 components: - - pos: 52.5,-8.5 + - type: Transform + pos: 52.5,-8.5 parent: 31 - type: Transform - uid: 4437 components: - - pos: 50.5,-7.5 + - type: Transform + pos: 50.5,-7.5 parent: 31 - type: Transform - uid: 4438 components: - - pos: 50.5,-8.5 + - type: Transform + pos: 50.5,-8.5 parent: 31 - type: Transform - uid: 4514 components: - - pos: 27.5,-11.5 + - type: Transform + pos: 27.5,-11.5 parent: 31 - type: Transform - uid: 4530 components: - - pos: 47.5,-9.5 + - type: Transform + pos: 47.5,-9.5 parent: 31 - type: Transform - uid: 4537 components: - - pos: 48.5,-8.5 + - type: Transform + pos: 48.5,-8.5 parent: 31 - type: Transform - uid: 4827 components: - - pos: -19.5,-29.5 + - type: Transform + pos: -19.5,-29.5 parent: 31 - type: Transform - uid: 4871 components: - - pos: 28.5,-35.5 + - type: Transform + pos: 28.5,-35.5 parent: 31 - type: Transform - uid: 4877 components: - - pos: 28.5,-27.5 + - type: Transform + pos: 28.5,-27.5 parent: 31 - type: Transform - uid: 5058 components: - - pos: 49.5,-8.5 + - type: Transform + pos: 49.5,-8.5 parent: 31 - type: Transform - uid: 5246 components: - - pos: 27.5,-31.5 + - type: Transform + pos: 27.5,-31.5 parent: 31 - type: Transform - uid: 5247 components: - - pos: 28.5,-31.5 + - type: Transform + pos: 28.5,-31.5 parent: 31 - type: Transform - uid: 5249 components: - - pos: 25.5,-31.5 + - type: Transform + pos: 25.5,-31.5 parent: 31 - type: Transform - uid: 5265 components: - - pos: 28.5,-29.5 + - type: Transform + pos: 28.5,-29.5 parent: 31 - type: Transform - uid: 5266 components: - - pos: 28.5,-28.5 + - type: Transform + pos: 28.5,-28.5 parent: 31 - type: Transform - uid: 5267 components: - - pos: 24.5,-29.5 + - type: Transform + pos: 24.5,-29.5 parent: 31 - type: Transform - uid: 5268 components: - - pos: 24.5,-32.5 + - type: Transform + pos: 24.5,-32.5 parent: 31 - type: Transform - uid: 5269 components: - - pos: 20.5,-34.5 + - type: Transform + pos: 20.5,-34.5 parent: 31 - type: Transform - uid: 5270 components: - - pos: 24.5,-28.5 + - type: Transform + pos: 24.5,-28.5 parent: 31 - type: Transform - uid: 5271 components: - - pos: 24.5,-33.5 + - type: Transform + pos: 24.5,-33.5 parent: 31 - type: Transform - uid: 5272 components: - - pos: 24.5,-30.5 + - type: Transform + pos: 24.5,-30.5 parent: 31 - type: Transform - uid: 5273 components: - - pos: 20.5,-30.5 + - type: Transform + pos: 20.5,-30.5 parent: 31 - type: Transform - uid: 5274 components: - - pos: 18.5,-31.5 + - type: Transform + pos: 18.5,-31.5 parent: 31 - type: Transform - uid: 5275 components: - - pos: 20.5,-29.5 + - type: Transform + pos: 20.5,-29.5 parent: 31 - type: Transform - uid: 5276 components: - - pos: 26.5,-31.5 + - type: Transform + pos: 26.5,-31.5 parent: 31 - type: Transform - uid: 5277 components: - - pos: 24.5,-34.5 + - type: Transform + pos: 24.5,-34.5 parent: 31 - type: Transform - uid: 5278 components: - - pos: 24.5,-35.5 + - type: Transform + pos: 24.5,-35.5 parent: 31 - type: Transform - uid: 5279 components: - - pos: 28.5,-34.5 + - type: Transform + pos: 28.5,-34.5 parent: 31 - type: Transform - uid: 5280 components: - - pos: 24.5,-31.5 + - type: Transform + pos: 24.5,-31.5 parent: 31 - type: Transform - uid: 5281 components: - - pos: 19.5,-31.5 + - type: Transform + pos: 19.5,-31.5 parent: 31 - type: Transform - uid: 5282 components: - - pos: 20.5,-31.5 + - type: Transform + pos: 20.5,-31.5 parent: 31 - type: Transform - uid: 5283 components: - - pos: 20.5,-28.5 + - type: Transform + pos: 20.5,-28.5 parent: 31 - type: Transform - uid: 5284 components: - - pos: 24.5,-27.5 + - type: Transform + pos: 24.5,-27.5 parent: 31 - type: Transform - uid: 5940 components: - - pos: 31.5,26.5 + - type: Transform + pos: 31.5,26.5 parent: 31 - type: Transform - uid: 6293 components: - - pos: 53.5,-7.5 + - type: Transform + pos: 53.5,-7.5 parent: 31 - type: Transform - uid: 6311 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 62.5,2.5 parent: 31 - type: Transform - uid: 6348 components: - - pos: 48.5,8.5 + - type: Transform + pos: 48.5,8.5 parent: 31 - type: Transform - uid: 6356 components: - - pos: 48.5,10.5 + - type: Transform + pos: 48.5,10.5 parent: 31 - type: Transform - uid: 6370 components: - - pos: 15.5,-28.5 + - type: Transform + pos: 15.5,-28.5 parent: 31 - type: Transform - uid: 6382 components: - - pos: 48.5,11.5 + - type: Transform + pos: 48.5,11.5 parent: 31 - type: Transform - uid: 6412 components: - - pos: 15.5,-29.5 + - type: Transform + pos: 15.5,-29.5 parent: 31 - type: Transform - uid: 6456 components: - - pos: 48.5,12.5 + - type: Transform + pos: 48.5,12.5 parent: 31 - type: Transform - uid: 6523 components: - - pos: 31.5,25.5 + - type: Transform + pos: 31.5,25.5 parent: 31 - type: Transform - uid: 6532 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,3.5 parent: 31 - type: Transform - uid: 6545 components: - - pos: 48.5,9.5 + - type: Transform + pos: 48.5,9.5 parent: 31 - type: Transform - uid: 6609 components: - - pos: 30.5,20.5 + - type: Transform + pos: 30.5,20.5 parent: 31 - type: Transform - uid: 6648 components: - - pos: -27.5,24.5 + - type: Transform + pos: -27.5,24.5 parent: 31 - type: Transform - uid: 6649 components: - - pos: -28.5,24.5 + - type: Transform + pos: -28.5,24.5 parent: 31 - type: Transform - uid: 6650 components: - - pos: -29.5,24.5 + - type: Transform + pos: -29.5,24.5 parent: 31 - type: Transform - uid: 6651 components: - - pos: -30.5,24.5 + - type: Transform + pos: -30.5,24.5 parent: 31 - type: Transform - uid: 6652 components: - - pos: -31.5,24.5 + - type: Transform + pos: -31.5,24.5 parent: 31 - type: Transform - uid: 6653 components: - - pos: -32.5,24.5 + - type: Transform + pos: -32.5,24.5 parent: 31 - type: Transform - uid: 6654 components: - - pos: -33.5,24.5 + - type: Transform + pos: -33.5,24.5 parent: 31 - type: Transform - uid: 6655 components: - - pos: -34.5,24.5 + - type: Transform + pos: -34.5,24.5 parent: 31 - type: Transform - uid: 6656 components: - - pos: -35.5,24.5 + - type: Transform + pos: -35.5,24.5 parent: 31 - type: Transform - uid: 6657 components: - - pos: -36.5,23.5 + - type: Transform + pos: -36.5,23.5 parent: 31 - type: Transform - uid: 6658 components: - - pos: -36.5,26.5 + - type: Transform + pos: -36.5,26.5 parent: 31 - type: Transform - uid: 6659 components: - - pos: -36.5,27.5 + - type: Transform + pos: -36.5,27.5 parent: 31 - type: Transform - uid: 6660 components: - - pos: -36.5,22.5 + - type: Transform + pos: -36.5,22.5 parent: 31 - type: Transform - uid: 6661 components: - - pos: -36.5,21.5 + - type: Transform + pos: -36.5,21.5 parent: 31 - type: Transform - uid: 6662 components: - - pos: -38.5,24.5 + - type: Transform + pos: -38.5,24.5 parent: 31 - type: Transform - uid: 6663 components: - - pos: -30.5,25.5 + - type: Transform + pos: -30.5,25.5 parent: 31 - type: Transform - uid: 6664 components: - - pos: -30.5,26.5 + - type: Transform + pos: -30.5,26.5 parent: 31 - type: Transform - uid: 6665 components: - - pos: -30.5,27.5 + - type: Transform + pos: -30.5,27.5 parent: 31 - type: Transform - uid: 6666 components: - - pos: -34.5,23.5 + - type: Transform + pos: -34.5,23.5 parent: 31 - type: Transform - uid: 6667 components: - - pos: -34.5,22.5 + - type: Transform + pos: -34.5,22.5 parent: 31 - type: Transform - uid: 6668 components: - - pos: -34.5,21.5 + - type: Transform + pos: -34.5,21.5 parent: 31 - type: Transform - uid: 6669 components: - - pos: -36.5,24.5 + - type: Transform + pos: -36.5,24.5 parent: 31 - type: Transform - uid: 6670 components: - - pos: -37.5,24.5 + - type: Transform + pos: -37.5,24.5 parent: 31 - type: Transform - uid: 6671 components: - - pos: -36.5,25.5 + - type: Transform + pos: -36.5,25.5 parent: 31 - type: Transform - uid: 6672 components: - - pos: -32.5,21.5 + - type: Transform + pos: -32.5,21.5 parent: 31 - type: Transform - uid: 6673 components: - - pos: -32.5,22.5 + - type: Transform + pos: -32.5,22.5 parent: 31 - type: Transform - uid: 6674 components: - - pos: -32.5,23.5 + - type: Transform + pos: -32.5,23.5 parent: 31 - type: Transform - uid: 6675 components: - - pos: -32.5,25.5 + - type: Transform + pos: -32.5,25.5 parent: 31 - type: Transform - uid: 6676 components: - - pos: -32.5,26.5 + - type: Transform + pos: -32.5,26.5 parent: 31 - type: Transform - uid: 6677 components: - - pos: -32.5,27.5 + - type: Transform + pos: -32.5,27.5 parent: 31 - type: Transform - uid: 6678 components: - - pos: -34.5,27.5 + - type: Transform + pos: -34.5,27.5 parent: 31 - type: Transform - uid: 6679 components: - - pos: -34.5,26.5 + - type: Transform + pos: -34.5,26.5 parent: 31 - type: Transform - uid: 6680 components: - - pos: -34.5,25.5 + - type: Transform + pos: -34.5,25.5 parent: 31 - type: Transform - uid: 6681 components: - - pos: -30.5,23.5 + - type: Transform + pos: -30.5,23.5 parent: 31 - type: Transform - uid: 6682 components: - - pos: -30.5,22.5 + - type: Transform + pos: -30.5,22.5 parent: 31 - type: Transform - uid: 6683 components: - - pos: -30.5,21.5 + - type: Transform + pos: -30.5,21.5 parent: 31 - type: Transform - uid: 6698 components: - - pos: 22.5,-31.5 + - type: Transform + pos: 22.5,-31.5 parent: 31 - type: Transform - uid: 6699 components: - - pos: 23.5,-31.5 + - type: Transform + pos: 23.5,-31.5 parent: 31 - type: Transform - uid: 6700 components: - - pos: 20.5,-33.5 + - type: Transform + pos: 20.5,-33.5 parent: 31 - type: Transform - uid: 6701 components: - - pos: 21.5,-31.5 + - type: Transform + pos: 21.5,-31.5 parent: 31 - type: Transform - uid: 6702 components: - - pos: 20.5,-32.5 + - type: Transform + pos: 20.5,-32.5 parent: 31 - type: Transform - uid: 6703 components: - - pos: 28.5,-33.5 + - type: Transform + pos: 28.5,-33.5 parent: 31 - type: Transform - uid: 6704 components: - - pos: 28.5,-32.5 + - type: Transform + pos: 28.5,-32.5 parent: 31 - type: Transform - uid: 6705 components: - - pos: 28.5,-30.5 + - type: Transform + pos: 28.5,-30.5 parent: 31 - type: Transform - uid: 6706 components: - - pos: 29.5,-31.5 + - type: Transform + pos: 29.5,-31.5 parent: 31 - type: Transform - uid: 6707 components: - - pos: 30.5,-31.5 + - type: Transform + pos: 30.5,-31.5 parent: 31 - type: Transform - uid: 6708 components: - - pos: 31.5,-31.5 + - type: Transform + pos: 31.5,-31.5 parent: 31 - type: Transform - uid: 6709 components: - - pos: 32.5,-31.5 + - type: Transform + pos: 32.5,-31.5 parent: 31 - type: Transform - uid: 6712 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 76.5,-4.5 parent: 31 - type: Transform - uid: 6713 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 77.5,-4.5 parent: 31 - type: Transform - uid: 6714 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,-4.5 parent: 31 - type: Transform - uid: 6715 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,-2.5 parent: 31 - type: Transform - uid: 6716 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,-3.5 parent: 31 - type: Transform - uid: 6717 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,-0.5 parent: 31 - type: Transform - uid: 6718 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,-1.5 parent: 31 - type: Transform - uid: 6719 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,0.5 parent: 31 - type: Transform - uid: 6720 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,1.5 parent: 31 - type: Transform - uid: 6721 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,4.5 parent: 31 - type: Transform - uid: 6732 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,7.5 parent: 31 - type: Transform - uid: 6733 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,6.5 parent: 31 - type: Transform - uid: 6734 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,5.5 parent: 31 - type: Transform - uid: 6735 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,3.5 parent: 31 - type: Transform - uid: 6736 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,2.5 parent: 31 - type: Transform - uid: 6737 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,8.5 parent: 31 - type: Transform - uid: 6738 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 78.5,9.5 parent: 31 - type: Transform - uid: 6739 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 75.5,9.5 parent: 31 - type: Transform - uid: 6740 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 77.5,9.5 parent: 31 - type: Transform - uid: 6741 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 76.5,9.5 parent: 31 - type: Transform - uid: 6752 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 69.5,9.5 parent: 31 - type: Transform - uid: 6753 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 71.5,9.5 parent: 31 - type: Transform - uid: 6754 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,4.5 parent: 31 - type: Transform - uid: 6755 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,7.5 parent: 31 - type: Transform - uid: 6756 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,6.5 parent: 31 - type: Transform - uid: 6757 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,8.5 parent: 31 - type: Transform - uid: 6758 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,9.5 parent: 31 - type: Transform - uid: 6759 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 65.5,9.5 parent: 31 - type: Transform - uid: 6760 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 66.5,9.5 parent: 31 - type: Transform - uid: 6761 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,5.5 parent: 31 - type: Transform - uid: 6762 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 67.5,9.5 parent: 31 - type: Transform - uid: 6763 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 68.5,9.5 parent: 31 - type: Transform - uid: 6764 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 70.5,9.5 parent: 31 - type: Transform - uid: 6765 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 73.5,9.5 parent: 31 - type: Transform - uid: 6766 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 72.5,9.5 parent: 31 - type: Transform - uid: 6767 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 74.5,9.5 parent: 31 - type: Transform - uid: 6861 components: - - pos: 31.5,22.5 + - type: Transform + pos: 31.5,22.5 parent: 31 - type: Transform - uid: 6884 components: - - pos: 60.5,12.5 + - type: Transform + pos: 60.5,12.5 parent: 31 - type: Transform - uid: 6908 components: - - pos: 31.5,20.5 + - type: Transform + pos: 31.5,20.5 parent: 31 - type: Transform - uid: 6919 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,2.5 parent: 31 - type: Transform - uid: 7045 components: - - pos: 42.5,-4.5 + - type: Transform + pos: 42.5,-4.5 parent: 31 - type: Transform - uid: 7116 components: - - pos: 55.5,-10.5 + - type: Transform + pos: 55.5,-10.5 parent: 31 - type: Transform - uid: 7176 components: - - pos: 31.5,21.5 + - type: Transform + pos: 31.5,21.5 parent: 31 - type: Transform - uid: 7234 components: - - pos: 12.5,15.5 + - type: Transform + pos: 12.5,15.5 parent: 31 - type: Transform - uid: 7235 components: - - pos: 7.5,14.5 + - type: Transform + pos: 7.5,14.5 parent: 31 - type: Transform - uid: 7236 components: - - pos: 12.5,17.5 + - type: Transform + pos: 12.5,17.5 parent: 31 - type: Transform - uid: 7237 components: - - pos: 10.5,14.5 + - type: Transform + pos: 10.5,14.5 parent: 31 - type: Transform - uid: 7238 components: - - pos: 8.5,14.5 + - type: Transform + pos: 8.5,14.5 parent: 31 - type: Transform - uid: 7239 components: - - pos: 12.5,16.5 + - type: Transform + pos: 12.5,16.5 parent: 31 - type: Transform - uid: 7240 components: - - pos: 9.5,14.5 + - type: Transform + pos: 9.5,14.5 parent: 31 - type: Transform - uid: 7241 components: - - pos: 12.5,19.5 + - type: Transform + pos: 12.5,19.5 parent: 31 - type: Transform - uid: 7494 components: - - pos: 15.5,-27.5 + - type: Transform + pos: 15.5,-27.5 parent: 31 - type: Transform - uid: 7495 components: - - pos: 14.5,-31.5 + - type: Transform + pos: 14.5,-31.5 parent: 31 - type: Transform - uid: 7499 components: - - pos: -9.5,-12.5 + - type: Transform + pos: -9.5,-12.5 parent: 31 - type: Transform - uid: 7500 components: - - pos: -9.5,-11.5 + - type: Transform + pos: -9.5,-11.5 parent: 31 - type: Transform - uid: 7510 components: - - pos: -26.5,-11.5 + - type: Transform + pos: -26.5,-11.5 parent: 31 - type: Transform - uid: 7511 components: - - pos: -27.5,-11.5 + - type: Transform + pos: -27.5,-11.5 parent: 31 - type: Transform - uid: 7512 components: - - pos: -28.5,-11.5 + - type: Transform + pos: -28.5,-11.5 parent: 31 - type: Transform - uid: 7513 components: - - pos: -29.5,-11.5 + - type: Transform + pos: -29.5,-11.5 parent: 31 - type: Transform - uid: 7514 components: - - pos: -31.5,-11.5 + - type: Transform + pos: -31.5,-11.5 parent: 31 - type: Transform - uid: 7515 components: - - pos: -30.5,-11.5 + - type: Transform + pos: -30.5,-11.5 parent: 31 - type: Transform - uid: 7516 components: - - pos: -32.5,-11.5 + - type: Transform + pos: -32.5,-11.5 parent: 31 - type: Transform - uid: 7517 components: - - pos: -33.5,-11.5 + - type: Transform + pos: -33.5,-11.5 parent: 31 - type: Transform - uid: 7520 components: - - pos: -33.5,0.5 + - type: Transform + pos: -33.5,0.5 parent: 31 - type: Transform - uid: 7521 components: - - pos: -33.5,-0.5 + - type: Transform + pos: -33.5,-0.5 parent: 31 - type: Transform - uid: 7522 components: - - pos: -33.5,-1.5 + - type: Transform + pos: -33.5,-1.5 parent: 31 - type: Transform - uid: 7523 components: - - pos: -33.5,-10.5 + - type: Transform + pos: -33.5,-10.5 parent: 31 - type: Transform - uid: 7524 components: - - pos: -33.5,-8.5 + - type: Transform + pos: -33.5,-8.5 parent: 31 - type: Transform - uid: 7525 components: - - pos: -33.5,-7.5 + - type: Transform + pos: -33.5,-7.5 parent: 31 - type: Transform - uid: 7526 components: - - pos: -33.5,-6.5 + - type: Transform + pos: -33.5,-6.5 parent: 31 - type: Transform - uid: 7527 components: - - pos: -33.5,-5.5 + - type: Transform + pos: -33.5,-5.5 parent: 31 - type: Transform - uid: 7528 components: - - pos: -33.5,-4.5 + - type: Transform + pos: -33.5,-4.5 parent: 31 - type: Transform - uid: 7529 components: - - pos: -33.5,-3.5 + - type: Transform + pos: -33.5,-3.5 parent: 31 - type: Transform - uid: 7530 components: - - pos: -33.5,-2.5 + - type: Transform + pos: -33.5,-2.5 parent: 31 - type: Transform - uid: 7609 components: - - pos: -32.5,8.5 + - type: Transform + pos: -32.5,8.5 parent: 31 - type: Transform - uid: 7610 components: - - pos: -32.5,9.5 + - type: Transform + pos: -32.5,9.5 parent: 31 - type: Transform - uid: 7611 components: - - pos: -32.5,10.5 + - type: Transform + pos: -32.5,10.5 parent: 31 - type: Transform - uid: 7612 components: - - pos: -32.5,11.5 + - type: Transform + pos: -32.5,11.5 parent: 31 - type: Transform - uid: 7613 components: - - pos: -32.5,12.5 + - type: Transform + pos: -32.5,12.5 parent: 31 - type: Transform - uid: 7614 components: - - pos: -32.5,13.5 + - type: Transform + pos: -32.5,13.5 parent: 31 - type: Transform - uid: 7616 components: - - pos: -31.5,14.5 + - type: Transform + pos: -31.5,14.5 parent: 31 - type: Transform - uid: 7617 components: - - pos: -30.5,14.5 + - type: Transform + pos: -30.5,14.5 parent: 31 - type: Transform - uid: 7618 components: - - pos: -29.5,14.5 + - type: Transform + pos: -29.5,14.5 parent: 31 - type: Transform - uid: 7619 components: - - pos: -28.5,14.5 + - type: Transform + pos: -28.5,14.5 parent: 31 - type: Transform - uid: 7620 components: - - pos: -27.5,14.5 + - type: Transform + pos: -27.5,14.5 parent: 31 - type: Transform - uid: 7621 components: - - pos: -26.5,14.5 + - type: Transform + pos: -26.5,14.5 parent: 31 - type: Transform - uid: 7622 components: - - pos: -25.5,14.5 + - type: Transform + pos: -25.5,14.5 parent: 31 - type: Transform - uid: 7623 components: - - pos: -24.5,14.5 + - type: Transform + pos: -24.5,14.5 parent: 31 - type: Transform - uid: 7624 components: - - pos: -23.5,14.5 + - type: Transform + pos: -23.5,14.5 parent: 31 - type: Transform - uid: 7638 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 33.5,37.5 parent: 31 - type: Transform - uid: 7654 components: - - pos: -8.5,25.5 + - type: Transform + pos: -8.5,25.5 parent: 31 - type: Transform - uid: 7655 components: - - pos: -9.5,25.5 + - type: Transform + pos: -9.5,25.5 parent: 31 - type: Transform - uid: 7656 components: - - pos: -11.5,25.5 + - type: Transform + pos: -11.5,25.5 parent: 31 - type: Transform - uid: 7657 components: - - pos: -12.5,25.5 + - type: Transform + pos: -12.5,25.5 parent: 31 - type: Transform - uid: 7658 components: - - pos: -13.5,25.5 + - type: Transform + pos: -13.5,25.5 parent: 31 - type: Transform - uid: 7659 components: - - pos: -14.5,25.5 + - type: Transform + pos: -14.5,25.5 parent: 31 - type: Transform - uid: 7660 components: - - pos: -15.5,25.5 + - type: Transform + pos: -15.5,25.5 parent: 31 - type: Transform - uid: 7661 components: - - pos: -16.5,25.5 + - type: Transform + pos: -16.5,25.5 parent: 31 - type: Transform - uid: 7662 components: - - pos: -17.5,25.5 + - type: Transform + pos: -17.5,25.5 parent: 31 - type: Transform - uid: 7664 components: - - pos: -18.5,18.5 + - type: Transform + pos: -18.5,18.5 parent: 31 - type: Transform - uid: 7665 components: - - pos: -18.5,19.5 + - type: Transform + pos: -18.5,19.5 parent: 31 - type: Transform - uid: 7666 components: - - pos: -18.5,20.5 + - type: Transform + pos: -18.5,20.5 parent: 31 - type: Transform - uid: 7667 components: - - pos: -18.5,21.5 + - type: Transform + pos: -18.5,21.5 parent: 31 - type: Transform - uid: 7668 components: - - pos: -18.5,22.5 + - type: Transform + pos: -18.5,22.5 parent: 31 - type: Transform - uid: 7669 components: - - pos: -18.5,23.5 + - type: Transform + pos: -18.5,23.5 parent: 31 - type: Transform - uid: 7670 components: - - pos: -18.5,24.5 + - type: Transform + pos: -18.5,24.5 parent: 31 - type: Transform - uid: 7779 components: - - pos: 14.5,-25.5 + - type: Transform + pos: 14.5,-25.5 parent: 31 - type: Transform - uid: 7874 components: - - pos: 7.5,-20.5 + - type: Transform + pos: 7.5,-20.5 parent: 31 - type: Transform - uid: 7875 components: - - pos: 9.5,-20.5 + - type: Transform + pos: 9.5,-20.5 parent: 31 - type: Transform - uid: 7876 components: - - pos: 8.5,-20.5 + - type: Transform + pos: 8.5,-20.5 parent: 31 - type: Transform - uid: 7877 components: - - pos: 10.5,-20.5 + - type: Transform + pos: 10.5,-20.5 parent: 31 - type: Transform - uid: 7878 components: - - pos: 11.5,-20.5 + - type: Transform + pos: 11.5,-20.5 parent: 31 - type: Transform - uid: 7879 components: - - pos: 12.5,-20.5 + - type: Transform + pos: 12.5,-20.5 parent: 31 - type: Transform - uid: 7880 components: - - pos: 14.5,-20.5 + - type: Transform + pos: 14.5,-20.5 parent: 31 - type: Transform - uid: 7881 components: - - pos: 14.5,-21.5 + - type: Transform + pos: 14.5,-21.5 parent: 31 - type: Transform - uid: 7882 components: - - pos: 14.5,-22.5 + - type: Transform + pos: 14.5,-22.5 parent: 31 - type: Transform - uid: 7883 components: - - pos: 14.5,-23.5 + - type: Transform + pos: 14.5,-23.5 parent: 31 - type: Transform - uid: 7884 components: - - pos: 14.5,-24.5 + - type: Transform + pos: 14.5,-24.5 parent: 31 - type: Transform - uid: 7885 components: - - pos: 15.5,-25.5 + - type: Transform + pos: 15.5,-25.5 parent: 31 - type: Transform - uid: 7886 components: - - pos: 17.5,-25.5 + - type: Transform + pos: 17.5,-25.5 parent: 31 - type: Transform - uid: 7887 components: - - pos: 16.5,-25.5 + - type: Transform + pos: 16.5,-25.5 parent: 31 - type: Transform - uid: 7888 components: - - pos: 18.5,-25.5 + - type: Transform + pos: 18.5,-25.5 parent: 31 - type: Transform - uid: 7889 components: - - pos: 19.5,-25.5 + - type: Transform + pos: 19.5,-25.5 parent: 31 - type: Transform - uid: 7890 components: - - pos: 20.5,-25.5 + - type: Transform + pos: 20.5,-25.5 parent: 31 - type: Transform - uid: 7891 components: - - pos: 21.5,-25.5 + - type: Transform + pos: 21.5,-25.5 parent: 31 - type: Transform - uid: 7892 components: - - pos: 22.5,-25.5 + - type: Transform + pos: 22.5,-25.5 parent: 31 - type: Transform - uid: 7893 components: - - pos: 22.5,-24.5 + - type: Transform + pos: 22.5,-24.5 parent: 31 - type: Transform - uid: 7894 components: - - pos: 22.5,-23.5 + - type: Transform + pos: 22.5,-23.5 parent: 31 - type: Transform - uid: 7915 components: - - pos: 22.5,-18.5 + - type: Transform + pos: 22.5,-18.5 parent: 31 - type: Transform - uid: 7916 components: - - pos: 22.5,-17.5 + - type: Transform + pos: 22.5,-17.5 parent: 31 - type: Transform - uid: 7917 components: - - pos: 23.5,-17.5 + - type: Transform + pos: 23.5,-17.5 parent: 31 - type: Transform - uid: 7918 components: - - pos: 24.5,-17.5 + - type: Transform + pos: 24.5,-17.5 parent: 31 - type: Transform - uid: 7919 components: - - pos: 25.5,-17.5 + - type: Transform + pos: 25.5,-17.5 parent: 31 - type: Transform - uid: 7920 components: - - pos: 26.5,-17.5 + - type: Transform + pos: 26.5,-17.5 parent: 31 - type: Transform - uid: 7921 components: - - pos: 26.5,-16.5 + - type: Transform + pos: 26.5,-16.5 parent: 31 - type: Transform - uid: 7922 components: - - pos: 26.5,-15.5 + - type: Transform + pos: 26.5,-15.5 parent: 31 - type: Transform - uid: 7923 components: - - pos: 26.5,-14.5 + - type: Transform + pos: 26.5,-14.5 parent: 31 - type: Transform - uid: 7924 components: - - pos: 26.5,-13.5 + - type: Transform + pos: 26.5,-13.5 parent: 31 - type: Transform - uid: 7926 components: - - pos: 38.5,-6.5 + - type: Transform + pos: 38.5,-6.5 parent: 31 - type: Transform - uid: 7927 components: - - pos: 38.5,-7.5 + - type: Transform + pos: 38.5,-7.5 parent: 31 - type: Transform - uid: 7928 components: - - pos: 37.5,-7.5 + - type: Transform + pos: 37.5,-7.5 parent: 31 - type: Transform - uid: 7929 components: - - pos: 36.5,-7.5 + - type: Transform + pos: 36.5,-7.5 parent: 31 - type: Transform - uid: 7930 components: - - pos: 34.5,-7.5 + - type: Transform + pos: 34.5,-7.5 parent: 31 - type: Transform - uid: 7931 components: - - pos: 35.5,-7.5 + - type: Transform + pos: 35.5,-7.5 parent: 31 - type: Transform - uid: 7932 components: - - pos: 33.5,-7.5 + - type: Transform + pos: 33.5,-7.5 parent: 31 - type: Transform - uid: 7933 components: - - pos: 32.5,-7.5 + - type: Transform + pos: 32.5,-7.5 parent: 31 - type: Transform - uid: 7934 components: - - pos: 31.5,-7.5 + - type: Transform + pos: 31.5,-7.5 parent: 31 - type: Transform - uid: 7935 components: - - pos: 30.5,-7.5 + - type: Transform + pos: 30.5,-7.5 parent: 31 - type: Transform - uid: 7936 components: - - pos: 29.5,-7.5 + - type: Transform + pos: 29.5,-7.5 parent: 31 - type: Transform - uid: 7937 components: - - pos: 28.5,-7.5 + - type: Transform + pos: 28.5,-7.5 parent: 31 - type: Transform - uid: 7938 components: - - pos: 27.5,-7.5 + - type: Transform + pos: 27.5,-7.5 parent: 31 - type: Transform - uid: 7939 components: - - pos: 26.5,-7.5 + - type: Transform + pos: 26.5,-7.5 parent: 31 - type: Transform - uid: 7951 components: - - pos: 23.5,-13.5 + - type: Transform + pos: 23.5,-13.5 parent: 31 - type: Transform - uid: 7974 components: - - pos: 24.5,-2.5 + - type: Transform + pos: 24.5,-2.5 parent: 31 - type: Transform - uid: 7975 components: - - pos: 23.5,-2.5 + - type: Transform + pos: 23.5,-2.5 parent: 31 - type: Transform - uid: 7976 components: - - pos: 22.5,-2.5 + - type: Transform + pos: 22.5,-2.5 parent: 31 - type: Transform - uid: 7978 components: - - pos: 21.5,-1.5 + - type: Transform + pos: 21.5,-1.5 parent: 31 - type: Transform - uid: 7979 components: - - pos: 21.5,-0.5 + - type: Transform + pos: 21.5,-0.5 parent: 31 - type: Transform - uid: 7980 components: - - pos: 21.5,0.5 + - type: Transform + pos: 21.5,0.5 parent: 31 - type: Transform - uid: 7981 components: - - pos: 21.5,1.5 + - type: Transform + pos: 21.5,1.5 parent: 31 - type: Transform - uid: 8043 components: - - pos: 20.5,-27.5 + - type: Transform + pos: 20.5,-27.5 parent: 31 - type: Transform - uid: 8049 components: - - pos: 78.5,-7.5 + - type: Transform + pos: 78.5,-7.5 parent: 31 - type: Transform - uid: 8089 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 75.5,-4.5 parent: 31 - type: Transform - uid: 8090 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 74.5,-4.5 parent: 31 - type: Transform - uid: 8091 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 73.5,-4.5 parent: 31 - type: Transform - uid: 8092 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 72.5,-4.5 parent: 31 - type: Transform - uid: 8093 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 71.5,-4.5 parent: 31 - type: Transform - uid: 8094 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 70.5,-4.5 parent: 31 - type: Transform - uid: 8095 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 69.5,-4.5 parent: 31 - type: Transform - uid: 8096 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 68.5,-4.5 parent: 31 - type: Transform - uid: 8097 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 67.5,-4.5 parent: 31 - type: Transform - uid: 8098 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 66.5,-4.5 parent: 31 - type: Transform - uid: 8099 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 65.5,-4.5 parent: 31 - type: Transform - uid: 8100 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,-4.5 parent: 31 - type: Transform - uid: 8101 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,-3.5 parent: 31 - type: Transform - uid: 8102 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,-2.5 parent: 31 - type: Transform - uid: 8103 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,-1.5 parent: 31 - type: Transform - uid: 8104 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,-0.5 parent: 31 - type: Transform - uid: 8105 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,0.5 parent: 31 - type: Transform - uid: 8106 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,1.5 parent: 31 - type: Transform - uid: 8119 components: - - pos: 56.5,-10.5 + - type: Transform + pos: 56.5,-10.5 parent: 31 - type: Transform - uid: 8139 components: - - pos: 47.5,-8.5 + - type: Transform + pos: 47.5,-8.5 parent: 31 - type: Transform - uid: 8151 components: - - pos: 56.5,7.5 + - type: Transform + pos: 56.5,7.5 parent: 31 - type: Transform - uid: 8655 components: - - pos: -38.5,-28.5 + - type: Transform + pos: -38.5,-28.5 parent: 31 - type: Transform - uid: 8656 components: - - pos: -39.5,-28.5 + - type: Transform + pos: -39.5,-28.5 parent: 31 - type: Transform - uid: 8657 components: - - pos: -40.5,-28.5 + - type: Transform + pos: -40.5,-28.5 parent: 31 - type: Transform - uid: 8658 components: - - pos: -41.5,-28.5 + - type: Transform + pos: -41.5,-28.5 parent: 31 - type: Transform - uid: 8659 components: - - pos: -42.5,-28.5 + - type: Transform + pos: -42.5,-28.5 parent: 31 - type: Transform - uid: 8660 components: - - pos: -32.5,-38.5 + - type: Transform + pos: -32.5,-38.5 parent: 31 - type: Transform - uid: 8661 components: - - pos: -32.5,-37.5 + - type: Transform + pos: -32.5,-37.5 parent: 31 - type: Transform - uid: 8662 components: - - pos: -32.5,-36.5 + - type: Transform + pos: -32.5,-36.5 parent: 31 - type: Transform - uid: 8663 components: - - pos: -32.5,-35.5 + - type: Transform + pos: -32.5,-35.5 parent: 31 - type: Transform - uid: 8664 components: - - pos: -32.5,-34.5 + - type: Transform + pos: -32.5,-34.5 parent: 31 - type: Transform - uid: 8909 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,25.5 parent: 31 - type: Transform - uid: 9007 components: - - pos: -22.5,-26.5 + - type: Transform + pos: -22.5,-26.5 parent: 31 - type: Transform - uid: 9008 components: - - pos: -23.5,-26.5 + - type: Transform + pos: -23.5,-26.5 parent: 31 - type: Transform - uid: 9009 components: - - pos: -30.5,-26.5 + - type: Transform + pos: -30.5,-26.5 parent: 31 - type: Transform - uid: 9010 components: - - pos: -29.5,-26.5 + - type: Transform + pos: -29.5,-26.5 parent: 31 - type: Transform - uid: 9060 components: - - pos: 16.5,21.5 + - type: Transform + pos: 16.5,21.5 parent: 31 - type: Transform - uid: 9061 components: - - pos: 53.5,6.5 + - type: Transform + pos: 53.5,6.5 parent: 31 - type: Transform - uid: 9062 components: - - pos: 53.5,7.5 + - type: Transform + pos: 53.5,7.5 parent: 31 - type: Transform - uid: 9063 components: - - pos: 60.5,7.5 + - type: Transform + pos: 60.5,7.5 parent: 31 - type: Transform - uid: 9064 components: - - pos: 59.5,7.5 + - type: Transform + pos: 59.5,7.5 parent: 31 - type: Transform - uid: 9263 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 33.5,36.5 parent: 31 - type: Transform - uid: 9280 components: - - pos: -1.5,-31.5 + - type: Transform + pos: -1.5,-31.5 parent: 31 - type: Transform - uid: 9281 components: - - pos: -0.5,-31.5 + - type: Transform + pos: -0.5,-31.5 parent: 31 - type: Transform - uid: 9285 components: - - pos: 0.5,-31.5 + - type: Transform + pos: 0.5,-31.5 parent: 31 - type: Transform - uid: 9375 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,5.5 parent: 31 - type: Transform - uid: 9451 components: - - pos: -22.5,-32.5 + - type: Transform + pos: -22.5,-32.5 parent: 31 - type: Transform - uid: 9452 components: - - pos: -23.5,-32.5 + - type: Transform + pos: -23.5,-32.5 parent: 31 - type: Transform - uid: 9456 components: - - pos: -19.5,-25.5 + - type: Transform + pos: -19.5,-25.5 parent: 31 - type: Transform - uid: 9457 components: - - pos: -19.5,-24.5 + - type: Transform + pos: -19.5,-24.5 parent: 31 - type: Transform - uid: 9458 components: - - pos: -19.5,-23.5 + - type: Transform + pos: -19.5,-23.5 parent: 31 - type: Transform - uid: 9459 components: - - pos: -19.5,-22.5 + - type: Transform + pos: -19.5,-22.5 parent: 31 - type: Transform - uid: 9460 components: - - pos: -19.5,-21.5 + - type: Transform + pos: -19.5,-21.5 parent: 31 - type: Transform - uid: 9461 components: - - pos: -19.5,-20.5 + - type: Transform + pos: -19.5,-20.5 parent: 31 - type: Transform - uid: 9462 components: - - pos: -19.5,-19.5 + - type: Transform + pos: -19.5,-19.5 parent: 31 - type: Transform - uid: 9463 components: - - pos: -19.5,-18.5 + - type: Transform + pos: -19.5,-18.5 parent: 31 - type: Transform - uid: 9556 components: - - pos: 59.5,13.5 + - type: Transform + pos: 59.5,13.5 parent: 31 - type: Transform - uid: 9597 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,25.5 parent: 31 - type: Transform - uid: 9706 components: - - pos: 55.5,6.5 + - type: Transform + pos: 55.5,6.5 parent: 31 - type: Transform - uid: 9728 components: - - pos: 53.5,-0.5 + - type: Transform + pos: 53.5,-0.5 parent: 31 - type: Transform - uid: 9763 components: - - pos: -17.5,-35.5 + - type: Transform + pos: -17.5,-35.5 parent: 31 - type: Transform - uid: 9764 components: - - pos: -16.5,-35.5 + - type: Transform + pos: -16.5,-35.5 parent: 31 - type: Transform - uid: 9766 components: - - pos: -15.5,-35.5 + - type: Transform + pos: -15.5,-35.5 parent: 31 - type: Transform - uid: 9767 components: - - pos: -14.5,-35.5 + - type: Transform + pos: -14.5,-35.5 parent: 31 - type: Transform - uid: 9768 components: - - pos: -18.5,-35.5 + - type: Transform + pos: -18.5,-35.5 parent: 31 - type: Transform - uid: 9770 components: - - pos: -3.5,-38.5 + - type: Transform + pos: -3.5,-38.5 parent: 31 - type: Transform - uid: 9771 components: - - pos: -2.5,-38.5 + - type: Transform + pos: -2.5,-38.5 parent: 31 - type: Transform - uid: 9772 components: - - pos: -1.5,-38.5 + - type: Transform + pos: -1.5,-38.5 parent: 31 - type: Transform - uid: 9773 components: - - pos: -0.5,-38.5 + - type: Transform + pos: -0.5,-38.5 parent: 31 - type: Transform - uid: 9774 components: - - pos: 0.5,-38.5 + - type: Transform + pos: 0.5,-38.5 parent: 31 - type: Transform - uid: 9775 components: - - pos: 1.5,-38.5 + - type: Transform + pos: 1.5,-38.5 parent: 31 - type: Transform - uid: 9776 components: - - pos: 2.5,-38.5 + - type: Transform + pos: 2.5,-38.5 parent: 31 - type: Transform - uid: 9777 components: - - pos: -4.5,-38.5 + - type: Transform + pos: -4.5,-38.5 parent: 31 - type: Transform - uid: 9778 components: - - pos: 8.5,-32.5 + - type: Transform + pos: 8.5,-32.5 parent: 31 - type: Transform - uid: 9779 components: - - pos: 8.5,-33.5 + - type: Transform + pos: 8.5,-33.5 parent: 31 - type: Transform - uid: 9780 components: - - pos: 8.5,-34.5 + - type: Transform + pos: 8.5,-34.5 parent: 31 - type: Transform - uid: 9781 components: - - pos: 8.5,-35.5 + - type: Transform + pos: 8.5,-35.5 parent: 31 - type: Transform - uid: 9784 components: - - pos: 5.5,-38.5 + - type: Transform + pos: 5.5,-38.5 parent: 31 - type: Transform - uid: 9785 components: - - pos: 6.5,-38.5 + - type: Transform + pos: 6.5,-38.5 parent: 31 - type: Transform - uid: 9943 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -23.5,-18.5 parent: 31 - type: Transform - uid: 9946 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -24.5,-18.5 parent: 31 - type: Transform - uid: 9954 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -25.5,-18.5 parent: 31 - type: Transform - uid: 9980 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -26.5,-18.5 parent: 31 - type: Transform - uid: 9981 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -27.5,-18.5 parent: 31 - type: Transform - uid: 9982 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -28.5,-18.5 parent: 31 - type: Transform - uid: 10011 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-16.5 parent: 31 - type: Transform - uid: 10231 components: - - pos: 50.5,-9.5 + - type: Transform + pos: 50.5,-9.5 parent: 31 - type: Transform - uid: 10253 components: - - pos: 52.5,-1.5 + - type: Transform + pos: 52.5,-1.5 parent: 31 - type: Transform - uid: 10254 components: - - pos: 52.5,-0.5 + - type: Transform + pos: 52.5,-0.5 parent: 31 - type: Transform - uid: 10277 components: - - pos: -30.5,-14.5 + - type: Transform + pos: -30.5,-14.5 parent: 31 - type: Transform - uid: 10278 components: - - pos: -30.5,-15.5 + - type: Transform + pos: -30.5,-15.5 parent: 31 - type: Transform - uid: 10279 components: - - pos: -30.5,-16.5 + - type: Transform + pos: -30.5,-16.5 parent: 31 - type: Transform - uid: 10503 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 35.5,37.5 parent: 31 - type: Transform - uid: 10504 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 35.5,36.5 parent: 31 - type: Transform - uid: 10505 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 36.5,36.5 parent: 31 - type: Transform - uid: 10506 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 36.5,35.5 parent: 31 - type: Transform - uid: 10507 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 36.5,34.5 parent: 31 - type: Transform - uid: 10508 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 32.5,36.5 parent: 31 - type: Transform - uid: 10509 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 32.5,35.5 parent: 31 - type: Transform - uid: 10510 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 32.5,34.5 parent: 31 - type: Transform - uid: 10511 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 33.5,34.5 parent: 31 - type: Transform - uid: 10512 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,34.5 parent: 31 - type: Transform - uid: 10513 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 35.5,34.5 parent: 31 - type: Transform - uid: 10514 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,33.5 parent: 31 - type: Transform - uid: 10515 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,32.5 parent: 31 - type: Transform - uid: 10516 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,31.5 parent: 31 - type: Transform - uid: 10517 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,30.5 parent: 31 - type: Transform - uid: 10519 components: - - pos: 31.5,19.5 + - type: Transform + pos: 31.5,19.5 parent: 31 - type: Transform - uid: 10653 components: - - pos: 45.5,-11.5 + - type: Transform + pos: 45.5,-11.5 parent: 31 - type: Transform - uid: 10654 components: - - pos: 45.5,-10.5 + - type: Transform + pos: 45.5,-10.5 parent: 31 - type: Transform - uid: 10655 components: - - pos: 45.5,-9.5 + - type: Transform + pos: 45.5,-9.5 parent: 31 - type: Transform - uid: 10656 components: - - pos: 45.5,-8.5 + - type: Transform + pos: 45.5,-8.5 parent: 31 - type: Transform - uid: 10657 components: - - pos: 45.5,-7.5 + - type: Transform + pos: 45.5,-7.5 parent: 31 - type: Transform - uid: 10711 components: - - pos: 31.5,27.5 + - type: Transform + pos: 31.5,27.5 parent: 31 - type: Transform - uid: 10799 components: - - pos: 25.5,-13.5 + - type: Transform + pos: 25.5,-13.5 parent: 31 - type: Transform - uid: 10883 components: - - pos: 47.5,-10.5 + - type: Transform + pos: 47.5,-10.5 parent: 31 - type: Transform - uid: 10884 components: - - pos: 48.5,-10.5 + - type: Transform + pos: 48.5,-10.5 parent: 31 - type: Transform - uid: 10885 components: - - pos: 49.5,-10.5 + - type: Transform + pos: 49.5,-10.5 parent: 31 - type: Transform - uid: 10886 components: - - pos: 50.5,-10.5 + - type: Transform + pos: 50.5,-10.5 parent: 31 - type: Transform - uid: 10888 components: - - pos: 50.5,-11.5 + - type: Transform + pos: 50.5,-11.5 parent: 31 - type: Transform - uid: 10891 components: - - pos: 56.5,-8.5 + - type: Transform + pos: 56.5,-8.5 parent: 31 - type: Transform - uid: 10893 components: - - pos: 55.5,-9.5 + - type: Transform + pos: 55.5,-9.5 parent: 31 - type: Transform - uid: 11018 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,25.5 parent: 31 - type: Transform - uid: 11019 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,25.5 parent: 31 - type: Transform - uid: 11020 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,24.5 parent: 31 - type: Transform - uid: 11021 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,23.5 parent: 31 - type: Transform - uid: 11022 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,22.5 parent: 31 - type: Transform - uid: 11023 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,21.5 parent: 31 - type: Transform - uid: 11079 components: - - pos: 53.5,18.5 + - type: Transform + pos: 53.5,18.5 parent: 31 - type: Transform - uid: 11080 components: - - pos: 53.5,14.5 + - type: Transform + pos: 53.5,14.5 parent: 31 - type: Transform - uid: 11081 components: - - pos: 53.5,19.5 + - type: Transform + pos: 53.5,19.5 parent: 31 - type: Transform - uid: 11082 components: - - pos: 52.5,19.5 + - type: Transform + pos: 52.5,19.5 parent: 31 - type: Transform - uid: 11083 components: - - pos: 54.5,19.5 + - type: Transform + pos: 54.5,19.5 parent: 31 - type: Transform - uid: 11085 components: - - pos: 53.5,10.5 + - type: Transform + pos: 53.5,10.5 parent: 31 - type: Transform - uid: 11086 components: - - pos: 53.5,11.5 + - type: Transform + pos: 53.5,11.5 parent: 31 - type: Transform - uid: 11087 components: - - pos: 53.5,12.5 + - type: Transform + pos: 53.5,12.5 parent: 31 - type: Transform - uid: 11099 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 55.5,13.5 parent: 31 - type: Transform - uid: 11100 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 56.5,13.5 parent: 31 - type: Transform - uid: 11102 components: - - pos: 26.5,-3.5 + - type: Transform + pos: 26.5,-3.5 parent: 31 - type: Transform - uid: 11103 components: - - pos: 26.5,-4.5 + - type: Transform + pos: 26.5,-4.5 parent: 31 - type: Transform - uid: 11104 components: - - pos: 26.5,-5.5 + - type: Transform + pos: 26.5,-5.5 parent: 31 - type: Transform - uid: 11105 components: - - pos: 26.5,-2.5 + - type: Transform + pos: 26.5,-2.5 parent: 31 - type: Transform - uid: 11140 components: - - pos: 61.5,12.5 + - type: Transform + pos: 61.5,12.5 parent: 31 - type: Transform - uid: 11141 components: - - pos: 81.5,5.5 + - type: Transform + pos: 81.5,5.5 parent: 31 - type: Transform - uid: 11142 components: - - pos: 81.5,-4.5 + - type: Transform + pos: 81.5,-4.5 parent: 31 - type: Transform - uid: 11143 components: - - pos: 64.5,12.5 + - type: Transform + pos: 64.5,12.5 parent: 31 - type: Transform - uid: 11144 components: - - pos: 65.5,12.5 + - type: Transform + pos: 65.5,12.5 parent: 31 - type: Transform - uid: 11145 components: - - pos: 66.5,12.5 + - type: Transform + pos: 66.5,12.5 parent: 31 - type: Transform - uid: 11146 components: - - pos: 67.5,12.5 + - type: Transform + pos: 67.5,12.5 parent: 31 - type: Transform - uid: 11147 components: - - pos: 68.5,12.5 + - type: Transform + pos: 68.5,12.5 parent: 31 - type: Transform - uid: 11148 components: - - pos: 81.5,4.5 + - type: Transform + pos: 81.5,4.5 parent: 31 - type: Transform - uid: 11149 components: - - pos: 74.5,12.5 + - type: Transform + pos: 74.5,12.5 parent: 31 - type: Transform - uid: 11150 components: - - pos: 75.5,12.5 + - type: Transform + pos: 75.5,12.5 parent: 31 - type: Transform - uid: 11151 components: - - pos: 76.5,12.5 + - type: Transform + pos: 76.5,12.5 parent: 31 - type: Transform - uid: 11152 components: - - pos: 77.5,12.5 + - type: Transform + pos: 77.5,12.5 parent: 31 - type: Transform - uid: 11153 components: - - pos: 81.5,3.5 + - type: Transform + pos: 81.5,3.5 parent: 31 - type: Transform - uid: 11154 components: - - pos: 81.5,1.5 + - type: Transform + pos: 81.5,1.5 parent: 31 - type: Transform - uid: 11155 components: - - pos: 80.5,12.5 + - type: Transform + pos: 80.5,12.5 parent: 31 - type: Transform - uid: 11156 components: - - pos: 81.5,12.5 + - type: Transform + pos: 81.5,12.5 parent: 31 - type: Transform - uid: 11157 components: - - pos: 81.5,11.5 + - type: Transform + pos: 81.5,11.5 parent: 31 - type: Transform - uid: 11158 components: - - pos: 81.5,10.5 + - type: Transform + pos: 81.5,10.5 parent: 31 - type: Transform - uid: 11159 components: - - pos: 81.5,9.5 + - type: Transform + pos: 81.5,9.5 parent: 31 - type: Transform - uid: 11160 components: - - pos: 81.5,0.5 + - type: Transform + pos: 81.5,0.5 parent: 31 - type: Transform - uid: 11161 components: - - pos: 81.5,-0.5 + - type: Transform + pos: 81.5,-0.5 parent: 31 - type: Transform - uid: 11162 components: - - pos: 81.5,-5.5 + - type: Transform + pos: 81.5,-5.5 parent: 31 - type: Transform - uid: 11163 components: - - pos: 81.5,-6.5 + - type: Transform + pos: 81.5,-6.5 parent: 31 - type: Transform - uid: 11164 components: - - pos: 81.5,-7.5 + - type: Transform + pos: 81.5,-7.5 parent: 31 - type: Transform - uid: 11165 components: - - pos: 77.5,-7.5 + - type: Transform + pos: 77.5,-7.5 parent: 31 - type: Transform - uid: 11166 components: - - pos: 80.5,-7.5 + - type: Transform + pos: 80.5,-7.5 parent: 31 - type: Transform - uid: 11167 components: - - pos: 67.5,-7.5 + - type: Transform + pos: 67.5,-7.5 parent: 31 - type: Transform - uid: 11168 components: - - pos: 76.5,-7.5 + - type: Transform + pos: 76.5,-7.5 parent: 31 - type: Transform - uid: 11169 components: - - pos: 75.5,-7.5 + - type: Transform + pos: 75.5,-7.5 parent: 31 - type: Transform - uid: 11170 components: - - pos: 74.5,-7.5 + - type: Transform + pos: 74.5,-7.5 parent: 31 - type: Transform - uid: 11171 components: - - pos: 66.5,-7.5 + - type: Transform + pos: 66.5,-7.5 parent: 31 - type: Transform - uid: 11172 components: - - pos: 65.5,-7.5 + - type: Transform + pos: 65.5,-7.5 parent: 31 - type: Transform - uid: 11176 components: - - pos: 68.5,-7.5 + - type: Transform + pos: 68.5,-7.5 parent: 31 - type: Transform - uid: 11189 components: - - pos: 64.5,-7.5 + - type: Transform + pos: 64.5,-7.5 parent: 31 - type: Transform - uid: 11249 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -32.5,7.5 parent: 31 - type: Transform - proto: Cautery entities: - uid: 3040 components: - - pos: 19.023205,-18.200846 + - type: Transform + pos: 19.023205,-18.200846 parent: 31 - type: Transform - proto: Chair entities: - uid: 423 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 16.5,15.5 parent: 31 - type: Transform - uid: 424 components: - - pos: 16.5,17.5 + - type: Transform + pos: 16.5,17.5 parent: 31 - type: Transform - uid: 629 components: - - pos: 45.5,-1.5 + - type: Transform + pos: 45.5,-1.5 parent: 31 - type: Transform - uid: 654 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,-0.5 parent: 31 - type: Transform - uid: 896 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 45.5,-3.5 parent: 31 - type: Transform - uid: 2003 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,14.5 parent: 31 - type: Transform - uid: 2047 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,13.5 parent: 31 - type: Transform - uid: 2051 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,12.5 parent: 31 - type: Transform - uid: 3379 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,-13.5 parent: 31 - type: Transform - uid: 3908 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 50.5,-30.5 parent: 31 - type: Transform - uid: 3961 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,-12.5 parent: 31 - type: Transform - uid: 4192 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,24.5 parent: 31 - type: Transform - uid: 4291 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 33.5,-3.5 parent: 31 - type: Transform - uid: 4380 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 35.5,-12.5 parent: 31 - type: Transform - uid: 4557 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -17.5,-18.5 parent: 31 - type: Transform - uid: 4709 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -17.5,-17.5 parent: 31 - type: Transform - uid: 4714 components: - - pos: -24.5,-4.5 + - type: Transform + pos: -24.5,-4.5 parent: 31 - type: Transform - uid: 4715 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,-7.5 parent: 31 - type: Transform - uid: 4853 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-30.5 parent: 31 - type: Transform - uid: 4854 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-30.5 parent: 31 - type: Transform - uid: 5004 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,-2.5 parent: 31 - type: Transform - uid: 6258 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 31.5,-3.5 parent: 31 - type: Transform - uid: 6259 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 31.5,-2.5 parent: 31 - type: Transform - uid: 6261 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 33.5,-2.5 parent: 31 - type: Transform - uid: 6617 components: - - pos: 22.5,-16.5 + - type: Transform + pos: 22.5,-16.5 parent: 31 - type: Transform - uid: 7027 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 35.5,-14.5 parent: 31 - type: Transform - uid: 7286 components: - - pos: 10.5,1.5 + - type: Transform + pos: 10.5,1.5 parent: 31 - type: Transform - uid: 7287 components: - - pos: 9.5,1.5 + - type: Transform + pos: 9.5,1.5 parent: 31 - type: Transform - uid: 7288 components: - - pos: 8.5,1.5 + - type: Transform + pos: 8.5,1.5 parent: 31 - type: Transform - uid: 7341 components: - - pos: -18.5,-4.5 + - type: Transform + pos: -18.5,-4.5 parent: 31 - type: Transform - uid: 7365 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 48.5,-30.5 parent: 31 - type: Transform - uid: 7477 components: - - pos: -0.5,14.5 + - type: Transform + pos: -0.5,14.5 parent: 31 - type: Transform - uid: 7627 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,17.5 parent: 31 - type: Transform - uid: 7646 components: - - pos: -28.5,-7.5 + - type: Transform + pos: -28.5,-7.5 parent: 31 - type: Transform - uid: 7774 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 31 - type: Transform - uid: 7775 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,18.5 parent: 31 - type: Transform - uid: 7841 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -15.5,24.5 parent: 31 - type: Transform - uid: 7842 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,24.5 parent: 31 - type: Transform - uid: 7960 components: - - pos: 27.5,6.5 + - type: Transform + pos: 27.5,6.5 parent: 31 - type: Transform - uid: 8283 components: - - pos: 50.5,-18.5 + - type: Transform + pos: 50.5,-18.5 parent: 31 - type: Transform - uid: 8284 components: - - pos: 48.5,-18.5 + - type: Transform + pos: 48.5,-18.5 parent: 31 - type: Transform - uid: 8285 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 55.5,-23.5 parent: 31 - type: Transform - uid: 8286 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 55.5,-25.5 parent: 31 - type: Transform - uid: 8290 components: - - pos: 37.5,-23.5 + - type: Transform + pos: 37.5,-23.5 parent: 31 - type: Transform - uid: 8291 components: - - pos: 35.5,-23.5 + - type: Transform + pos: 35.5,-23.5 parent: 31 - type: Transform - uid: 8299 components: - - pos: 36.5,-23.5 + - type: Transform + pos: 36.5,-23.5 parent: 31 - type: Transform - uid: 8812 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,29.5 parent: 31 - type: Transform - uid: 8869 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,6.5 parent: 31 - type: Transform - uid: 8870 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,7.5 parent: 31 - type: Transform - uid: 8938 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-15.5 parent: 31 - type: Transform - uid: 8939 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-14.5 parent: 31 - type: Transform - uid: 8952 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,8.5 parent: 31 - type: Transform - uid: 9239 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -40.5,4.5 parent: 31 - type: Transform - uid: 9240 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -40.5,5.5 parent: 31 - type: Transform - uid: 9241 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -40.5,6.5 parent: 31 - type: Transform - uid: 9242 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -38.5,4.5 parent: 31 - type: Transform - uid: 9243 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -38.5,5.5 parent: 31 - type: Transform - uid: 9244 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -38.5,6.5 parent: 31 - type: Transform - uid: 9245 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -37.5,4.5 parent: 31 - type: Transform - uid: 9246 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -37.5,5.5 parent: 31 - type: Transform - uid: 9247 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -37.5,6.5 parent: 31 - type: Transform - uid: 9336 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,0.5 parent: 31 - type: Transform - uid: 9337 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,1.5 parent: 31 - type: Transform - uid: 9804 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-39.5 parent: 31 - type: Transform - uid: 10319 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-14.5 parent: 31 - type: Transform - uid: 10320 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-14.5 parent: 31 - type: Transform - uid: 10823 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,15.5 parent: 31 - type: Transform - uid: 11088 components: - - pos: 46.5,-1.5 + - type: Transform + pos: 46.5,-1.5 parent: 31 - type: Transform - uid: 11089 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 46.5,-3.5 parent: 31 - type: Transform - proto: ChairFolding entities: - uid: 1042 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-19.5 parent: 31 - type: Transform - uid: 2309 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,-19.5 parent: 31 - type: Transform - uid: 7079 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 27.5,9.5 parent: 31 - type: Transform - uid: 10755 components: - - pos: -40.5,-9.5 + - type: Transform + pos: -40.5,-9.5 parent: 31 - type: Transform - uid: 10756 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -49.5,-9.5 parent: 31 - type: Transform - uid: 10757 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -46.5,-9.5 parent: 31 - type: Transform - uid: 10762 components: - - pos: -42.5,-9.5 + - type: Transform + pos: -42.5,-9.5 parent: 31 - type: Transform - uid: 10763 components: - - pos: -41.5,-9.5 + - type: Transform + pos: -41.5,-9.5 parent: 31 - type: Transform - proto: ChairOfficeDark entities: - uid: 953 components: - - pos: 49.5,4.5 + - type: Transform + pos: 49.5,4.5 parent: 31 - type: Transform - uid: 961 components: - - rot: 1.5707963705062866 rad + - type: Transform + rot: 1.5707963705062866 rad pos: -2.5,25.5 parent: 31 - type: Transform - uid: 962 components: - - rot: 1.5707963705062866 rad + - type: Transform + rot: 1.5707963705062866 rad pos: -2.5,24.5 parent: 31 - type: Transform - uid: 963 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -0.5,25.5 parent: 31 - type: Transform - uid: 964 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -0.5,24.5 parent: 31 - type: Transform - uid: 2211 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,9.5 parent: 31 - type: Transform - uid: 2298 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-26.5 parent: 31 - type: Transform - uid: 2777 components: - - pos: -29.5,-1.5 + - type: Transform + pos: -29.5,-1.5 parent: 31 - type: Transform - uid: 2815 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -30.5,0.5 parent: 31 - type: Transform - uid: 3154 components: - - pos: -1.5,26.5 + - type: Transform + pos: -1.5,26.5 parent: 31 - type: Transform - uid: 3308 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,19.5 parent: 31 - type: Transform - uid: 3991 components: - - pos: -1.5,7.5 + - type: Transform + pos: -1.5,7.5 parent: 31 - type: Transform - uid: 3994 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,23.5 parent: 31 - type: Transform - uid: 4150 components: - - pos: -10.5,8.5 + - type: Transform + pos: -10.5,8.5 parent: 31 - type: Transform - uid: 4179 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 23.5,12.5 parent: 31 - type: Transform - uid: 4186 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,31.5 parent: 31 - type: Transform - uid: 4191 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,31.5 parent: 31 - type: Transform - uid: 4268 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,-10.5 parent: 31 - type: Transform - uid: 4738 components: - - pos: 15.5,9.5 + - type: Transform + pos: 15.5,9.5 parent: 31 - type: Transform - uid: 4785 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-29.5 parent: 31 - type: Transform - uid: 4902 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 31 - type: Transform - uid: 6017 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-4.5 parent: 31 - type: Transform - uid: 6959 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,-7.5 parent: 31 - type: Transform - uid: 7153 components: - - pos: 7.5,20.5 + - type: Transform + pos: 7.5,20.5 parent: 31 - type: Transform - uid: 7294 components: - - pos: 9.5,-27.5 + - type: Transform + pos: 9.5,-27.5 parent: 31 - type: Transform - uid: 7364 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,9.5 parent: 31 - type: Transform - uid: 8211 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-31.5 parent: 31 - type: Transform - uid: 8695 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -36.5,-25.5 parent: 31 - type: Transform - uid: 8701 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,-25.5 parent: 31 - type: Transform - uid: 8702 components: - - pos: -35.5,-23.5 + - type: Transform + pos: -35.5,-23.5 parent: 31 - type: Transform - uid: 8706 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,-24.5 parent: 31 - type: Transform - uid: 8707 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -36.5,-24.5 parent: 31 - type: Transform - uid: 8769 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,13.5 parent: 31 - type: Transform - uid: 8811 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,29.5 parent: 31 - type: Transform - uid: 8865 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 31.5,5.5 parent: 31 - type: Transform - uid: 8893 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 31 - type: Transform - uid: 9002 components: - - pos: -20.5,-1.5 + - type: Transform + pos: -20.5,-1.5 parent: 31 - type: Transform - uid: 9023 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 13.5,11.5 parent: 31 - type: Transform - uid: 9113 components: - - pos: 38.5,0.5 + - type: Transform + pos: 38.5,0.5 parent: 31 - type: Transform - uid: 9466 components: - - pos: -15.5,-38.5 + - type: Transform + pos: -15.5,-38.5 parent: 31 - type: Transform - uid: 9726 components: - - pos: 49.5,-4.5 + - type: Transform + pos: 49.5,-4.5 parent: 31 - type: Transform - proto: ChairOfficeLight entities: - uid: 1383 components: - - pos: 15.5,-2.5 + - type: Transform + pos: 15.5,-2.5 parent: 31 - type: Transform - uid: 1439 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -15.5,-20.5 parent: 31 - type: Transform - uid: 2288 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -16.5,-23.5 parent: 31 - type: Transform - uid: 2829 components: - - pos: 15.5,-5.5 + - type: Transform + pos: 15.5,-5.5 parent: 31 - type: Transform - uid: 4697 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 31 - type: Transform - uid: 5095 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,0.5 parent: 31 - type: Transform - uid: 7077 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-16.5 parent: 31 - type: Transform - uid: 7272 components: - - pos: 0.5,-26.5 + - type: Transform + pos: 0.5,-26.5 parent: 31 - type: Transform - uid: 7615 components: - - pos: 6.5,-10.5 + - type: Transform + pos: 6.5,-10.5 parent: 31 - type: Transform - uid: 9120 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 31 - type: Transform - uid: 9294 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-30.5 parent: 31 - type: Transform - uid: 10404 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-20.5 parent: 31 - type: Transform - proto: ChairPilotSeat entities: - uid: 1039 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,31.5 parent: 31 - type: Transform - proto: ChairRitual entities: - uid: 9690 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-41.5 parent: 31 - type: Transform - uid: 9691 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-41.5 parent: 31 - type: Transform - proto: ChairWood entities: - uid: 1337 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-23.5 parent: 31 - type: Transform - uid: 2037 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-24.5 parent: 31 - type: Transform - uid: 2038 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-23.5 parent: 31 - type: Transform - uid: 2039 components: - - pos: 11.5,-22.5 + - type: Transform + pos: 11.5,-22.5 parent: 31 - type: Transform - uid: 2391 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-24.5 parent: 31 - type: Transform - uid: 2405 components: - - pos: 10.5,-22.5 + - type: Transform + pos: 10.5,-22.5 parent: 31 - type: Transform - uid: 2440 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-25.5 parent: 31 - type: Transform - uid: 3153 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-25.5 parent: 31 - type: Transform - uid: 3406 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 31 - type: Transform - uid: 4060 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-1.5 parent: 31 - type: Transform - uid: 7295 components: - - pos: 7.5,-22.5 + - type: Transform + pos: 7.5,-22.5 parent: 31 - type: Transform - uid: 7575 components: - - pos: -2.5,-0.5 + - type: Transform + pos: -2.5,-0.5 parent: 31 - type: Transform - uid: 7577 components: - - pos: -3.5,-0.5 + - type: Transform + pos: -3.5,-0.5 parent: 31 - type: Transform - uid: 7702 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,12.5 parent: 31 - type: Transform - uid: 7704 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 31 - type: Transform - uid: 7705 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,13.5 parent: 31 - type: Transform - uid: 7707 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,13.5 parent: 31 - type: Transform - uid: 8424 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-2.5 parent: 31 - type: Transform - uid: 8434 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-2.5 parent: 31 - type: Transform - proto: CheapRollerBed entities: - uid: 7252 components: - - pos: 24.47556,-5.97663 + - type: Transform + pos: 24.47556,-5.97663 parent: 31 - type: Transform - uid: 7253 components: - - pos: 24.491184,-6.41413 + - type: Transform + pos: 24.491184,-6.41413 parent: 31 - type: Transform - proto: CheckerBoard entities: - uid: 10764 components: - - pos: -48.183727,-9.500211 + - type: Transform + pos: -48.183727,-9.500211 parent: 31 - type: Transform - proto: chem_master entities: - uid: 606 components: - - pos: 19.5,-0.5 + - type: Transform + pos: 19.5,-0.5 parent: 31 - type: Transform - uid: 5075 components: - - pos: 15.5,1.5 + - type: Transform + pos: 15.5,1.5 parent: 31 - type: Transform - proto: ChemDispenser entities: - uid: 5076 components: - - pos: 19.5,-1.5 + - type: Transform + pos: 19.5,-1.5 parent: 31 - type: Transform - uid: 5079 components: - - pos: 16.5,1.5 + - type: Transform + pos: 16.5,1.5 parent: 31 - type: Transform - proto: ChemistryHotplate entities: - uid: 4207 components: - - pos: 18.5,1.5 + - type: Transform + pos: 18.5,1.5 parent: 31 - type: Transform - proto: ChessBoard entities: - uid: 841 components: - - pos: -21.49966,9.580566 + - type: Transform + pos: -21.49966,9.580566 parent: 31 - type: Transform - proto: ChurchOrganInstrument entities: - uid: 7700 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -34.5,13.5 parent: 31 - type: Transform - proto: Cigarette entities: - uid: 8903 components: - - pos: 31.747108,6.5736575 + - type: Transform + pos: 31.747108,6.5736575 parent: 31 - type: Transform - proto: CigarGold entities: - uid: 9753 components: - - pos: -15.382986,-39.43112 + - type: Transform + pos: -15.382986,-39.43112 parent: 31 - type: Transform - uid: 11134 components: - - pos: 28.739138,9.837011 + - type: Transform + pos: 28.739138,9.837011 parent: 31 - type: Transform - proto: CigarGoldCase entities: - uid: 1199 components: - - pos: -3.728004,16.448915 + - type: Transform + pos: -3.728004,16.448915 parent: 31 - type: Transform - proto: CigarSpent entities: - uid: 1889 components: - - pos: -14.523747,-38.67494 + - type: Transform + pos: -14.523747,-38.67494 parent: 31 - type: Transform - uid: 10689 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.940473,-37.966972 parent: 31 - type: Transform - proto: CigPackMixed entities: - uid: 3307 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 46.484562,-5.364609 parent: 31 - type: Transform - proto: CircuitImprinter entities: - uid: 821 components: - - pos: -13.5,-22.5 + - type: Transform + pos: -13.5,-22.5 parent: 31 - type: Transform - proto: CleanerDispenser entities: - uid: 554 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -18.5,-13.5 parent: 31 - type: Transform - proto: ClosetBase entities: - uid: 7853 components: - - pos: 27.5,-22.5 + - type: Transform + pos: 27.5,-22.5 parent: 31 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -26544,8 +26554,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -26559,202 +26569,202 @@ entities: showEnts: False occludes: True ent: null - type: ContainerContainer - proto: ClosetBombFilled entities: - uid: 5116 components: - - pos: -14.5,13.5 + - type: Transform + pos: -14.5,13.5 parent: 31 - type: Transform - proto: ClosetChefFilled entities: - uid: 799 components: - - pos: -12.5,1.5 + - type: Transform + pos: -12.5,1.5 parent: 31 - type: Transform - proto: ClosetEmergencyFilledRandom entities: - uid: 759 components: - - pos: 5.5,-21.5 + - type: Transform + pos: 5.5,-21.5 parent: 31 - type: Transform - uid: 761 components: - - pos: -23.5,11.5 + - type: Transform + pos: -23.5,11.5 parent: 31 - type: Transform - uid: 828 components: - - pos: 54.5,-5.5 + - type: Transform + pos: 54.5,-5.5 parent: 31 - type: Transform - uid: 2181 components: - - pos: 15.5,14.5 + - type: Transform + pos: 15.5,14.5 parent: 31 - type: Transform - uid: 3736 components: - - pos: -0.5,-17.5 + - type: Transform + pos: -0.5,-17.5 parent: 31 - type: Transform - uid: 4381 components: - - pos: 33.5,-10.5 + - type: Transform + pos: 33.5,-10.5 parent: 31 - type: Transform - uid: 6907 components: - - pos: 30.5,14.5 + - type: Transform + pos: 30.5,14.5 parent: 31 - type: Transform - uid: 7161 components: - - pos: 23.5,7.5 + - type: Transform + pos: 23.5,7.5 parent: 31 - type: Transform - uid: 7497 components: - - pos: 14.5,-29.5 + - type: Transform + pos: 14.5,-29.5 parent: 31 - type: Transform - uid: 7791 components: - - pos: -20.5,22.5 + - type: Transform + pos: -20.5,22.5 parent: 31 - type: Transform - uid: 7825 components: - - pos: -9.5,-25.5 + - type: Transform + pos: -9.5,-25.5 parent: 31 - type: Transform - uid: 8805 components: - - pos: 7.5,28.5 + - type: Transform + pos: 7.5,28.5 parent: 31 - type: Transform - uid: 9323 components: - - pos: -34.5,7.5 + - type: Transform + pos: -34.5,7.5 parent: 31 - type: Transform - uid: 9447 components: - - pos: -22.5,-31.5 + - type: Transform + pos: -22.5,-31.5 parent: 31 - type: Transform - uid: 9740 components: - - pos: 15.5,-21.5 + - type: Transform + pos: 15.5,-21.5 parent: 31 - type: Transform - uid: 9790 components: - - pos: -18.5,-36.5 + - type: Transform + pos: -18.5,-36.5 parent: 31 - type: Transform - uid: 9791 components: - - pos: 9.5,-32.5 + - type: Transform + pos: 9.5,-32.5 parent: 31 - type: Transform - uid: 10645 components: - - pos: 39.5,-14.5 + - type: Transform + pos: 39.5,-14.5 parent: 31 - type: Transform - uid: 10754 components: - - pos: -53.5,-9.5 + - type: Transform + pos: -53.5,-9.5 parent: 31 - type: Transform - proto: ClosetFireFilled entities: - uid: 221 components: - - pos: -7.5,-25.5 + - type: Transform + pos: -7.5,-25.5 parent: 31 - type: Transform - uid: 3507 components: - - pos: 30.5,13.5 + - type: Transform + pos: 30.5,13.5 parent: 31 - type: Transform - uid: 3922 components: - - pos: -1.5,-17.5 + - type: Transform + pos: -1.5,-17.5 parent: 31 - type: Transform - uid: 4237 components: - - pos: 54.5,-3.5 + - type: Transform + pos: 54.5,-3.5 parent: 31 - type: Transform - uid: 7792 components: - - pos: -20.5,23.5 + - type: Transform + pos: -20.5,23.5 parent: 31 - type: Transform - uid: 7912 components: - - pos: 23.5,0.5 + - type: Transform + pos: 23.5,0.5 parent: 31 - type: Transform - uid: 8804 components: - - pos: 8.5,28.5 + - type: Transform + pos: 8.5,28.5 parent: 31 - type: Transform - uid: 9739 components: - - pos: 15.5,-22.5 + - type: Transform + pos: 15.5,-22.5 parent: 31 - type: Transform - uid: 9792 components: - - pos: -6.5,-37.5 + - type: Transform + pos: -6.5,-37.5 parent: 31 - type: Transform - uid: 10132 components: - - pos: 16.5,14.5 + - type: Transform + pos: 16.5,14.5 parent: 31 - type: Transform - uid: 10753 components: - - pos: -53.5,-10.5 + - type: Transform + pos: -53.5,-10.5 parent: 31 - type: Transform - proto: ClosetJanitorFilled entities: - uid: 2189 components: - - pos: -17.5,-10.5 + - type: Transform + pos: -17.5,-10.5 parent: 31 - type: Transform - proto: ClosetL3VirologyFilled entities: - uid: 6695 components: - - pos: 14.5,-7.5 + - type: Transform + pos: 14.5,-7.5 parent: 31 - type: Transform - proto: ClosetMaintenanceFilledRandom entities: - uid: 550 components: - - pos: 46.5,-0.5 + - type: Transform + pos: 46.5,-0.5 parent: 31 - type: Transform - uid: 1412 components: - - pos: -7.5,-8.5 + - type: Transform + pos: -7.5,-8.5 parent: 31 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.14963 @@ -26771,93 +26781,93 @@ entities: - 0 - 0 - 0 - type: EntityStorage - uid: 7058 components: - - pos: 29.5,-9.5 + - type: Transform + pos: 29.5,-9.5 parent: 31 - type: Transform - uid: 7518 components: - - pos: -11.5,-12.5 + - type: Transform + pos: -11.5,-12.5 parent: 31 - type: Transform - uid: 7789 components: - - pos: -19.5,12.5 + - type: Transform + pos: -19.5,12.5 parent: 31 - type: Transform - uid: 7911 components: - - pos: 23.5,1.5 + - type: Transform + pos: 23.5,1.5 parent: 31 - type: Transform - uid: 7948 components: - - pos: 24.5,-25.5 + - type: Transform + pos: 24.5,-25.5 parent: 31 - type: Transform - uid: 9465 components: - - pos: -11.5,-39.5 + - type: Transform + pos: -11.5,-39.5 parent: 31 - type: Transform - uid: 9570 components: - - pos: -27.5,13.5 + - type: Transform + pos: -27.5,13.5 parent: 31 - type: Transform - uid: 9571 components: - - pos: -5.5,20.5 + - type: Transform + pos: -5.5,20.5 parent: 31 - type: Transform - uid: 9572 components: - - pos: 27.5,-18.5 + - type: Transform + pos: 27.5,-18.5 parent: 31 - type: Transform - uid: 9675 components: - - pos: -1.5,-41.5 + - type: Transform + pos: -1.5,-41.5 parent: 31 - type: Transform - uid: 9793 components: - - pos: 5.5,-37.5 + - type: Transform + pos: 5.5,-37.5 parent: 31 - type: Transform - uid: 9794 components: - - pos: -11.5,-36.5 + - type: Transform + pos: -11.5,-36.5 parent: 31 - type: Transform - uid: 9862 components: - - pos: 11.5,-19.5 + - type: Transform + pos: 11.5,-19.5 parent: 31 - type: Transform - uid: 10221 components: - - pos: -30.5,-13.5 + - type: Transform + pos: -30.5,-13.5 parent: 31 - type: Transform - uid: 10646 components: - - pos: 45.5,-13.5 + - type: Transform + pos: 45.5,-13.5 parent: 31 - type: Transform - uid: 11123 components: - - pos: -4.5,29.5 + - type: Transform + pos: -4.5,29.5 parent: 31 - type: Transform - uid: 11229 components: - - pos: -27.5,-15.5 + - type: Transform + pos: -27.5,-15.5 parent: 31 - type: Transform - - fixtures: + - type: Fixtures + fixtures: fix1: shape: !type:PolygonShape radius: 0.01 @@ -26877,1660 +26887,1660 @@ entities: hard: True restitution: 0 friction: 0.4 - type: Fixtures - - open: True + - type: EntityStorage + open: True removedMasks: 20 - type: EntityStorage - - isPlaceable: True - type: PlaceableSurface + - type: PlaceableSurface + isPlaceable: True - uid: 11244 components: - - pos: -31.5,9.5 + - type: Transform + pos: -31.5,9.5 parent: 31 - type: Transform - proto: ClosetRadiationSuitFilled entities: - uid: 5127 components: - - pos: 52.5,1.5 + - type: Transform + pos: 52.5,1.5 parent: 31 - type: Transform - uid: 7068 components: - - pos: 53.5,1.5 + - type: Transform + pos: 53.5,1.5 parent: 31 - type: Transform - uid: 7571 components: - - pos: -11.5,-11.5 + - type: Transform + pos: -11.5,-11.5 parent: 31 - type: Transform - uid: 8214 components: - - pos: -8.5,-25.5 + - type: Transform + pos: -8.5,-25.5 parent: 31 - type: Transform - proto: ClosetWallEmergency entities: - uid: 9865 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,0.5 parent: 31 - type: Transform - proto: ClosetWallEmergencyFilledRandom entities: - uid: 9868 components: - - pos: 28.5,7.5 + - type: Transform + pos: 28.5,7.5 parent: 31 - type: Transform - proto: ClosetWallFireFilledRandom entities: - uid: 339 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -33.5,8.5 parent: 31 - type: Transform - uid: 9867 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,-0.5 parent: 31 - type: Transform - - open: True - type: EntityStorage + - type: EntityStorage + open: True - proto: ClosetWallMaintenanceFilledRandom entities: - uid: 9863 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -21.5,-20.5 parent: 31 - type: Transform - uid: 9864 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -31.5,-3.5 parent: 31 - type: Transform - proto: ClothingBeltChampion entities: - uid: 4197 components: - - pos: -3.60061,17.54974 + - type: Transform + pos: -3.60061,17.54974 parent: 31 - type: Transform - proto: ClothingBeltMilitaryWebbing entities: - uid: 8755 components: - - pos: -22.377813,-28.339228 + - type: Transform + pos: -22.377813,-28.339228 parent: 31 - type: Transform - proto: ClothingBeltUtility entities: - uid: 4757 components: - - pos: 10.66112,-19.235216 + - type: Transform + pos: 10.66112,-19.235216 parent: 31 - type: Transform - proto: ClothingBeltUtilityFilled entities: - uid: 7482 components: - - pos: 35.56775,-3.545828 + - type: Transform + pos: 35.56775,-3.545828 parent: 31 - type: Transform - proto: ClothingEyesEyepatch entities: - uid: 3964 components: - - pos: 35.470943,-15.2492285 + - type: Transform + pos: 35.470943,-15.2492285 parent: 31 - type: Transform - proto: ClothingEyesGlasses entities: - uid: 7107 components: - - flags: InContainer - type: MetaData - - parent: 7110 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7110 + - type: Physics + canCollide: False - uid: 11264 components: - - pos: -9.178577,-18.39677 + - type: Transform + pos: -9.178577,-18.39677 parent: 31 - type: Transform - uid: 11265 components: - - pos: -9.162952,-18.61552 + - type: Transform + pos: -9.162952,-18.61552 parent: 31 - type: Transform - uid: 11266 components: - - pos: -9.162952,-18.20927 + - type: Transform + pos: -9.162952,-18.20927 parent: 31 - type: Transform - proto: ClothingEyesGlassesMeson entities: - uid: 7582 components: - - pos: 43.506165,13.466041 + - type: Transform + pos: 43.506165,13.466041 parent: 31 - type: Transform - uid: 8213 components: - - pos: 35.614624,-3.264578 + - type: Transform + pos: 35.614624,-3.264578 parent: 31 - type: Transform - proto: ClothingEyesGlassesSunglasses entities: - uid: 4235 components: - - pos: -10.276402,-6.3744125 + - type: Transform + pos: -10.276402,-6.3744125 parent: 31 - type: Transform - proto: ClothingEyesGlassesThermal entities: - uid: 1730 components: - - pos: 43.658943,13.563262 + - type: Transform + pos: 43.658943,13.563262 parent: 31 - type: Transform - proto: ClothingEyesHudDiagnostic entities: - uid: 7580 components: - - pos: 32.538,-3.0937886 + - type: Transform + pos: 32.538,-3.0937886 parent: 31 - type: Transform - proto: ClothingEyesHudMedical entities: - uid: 6512 components: - - pos: 16.646324,-6.5235434 + - type: Transform + pos: 16.646324,-6.5235434 parent: 31 - type: Transform - proto: ClothingHandsGlovesColorBlack entities: - uid: 11225 components: - - pos: -29.520256,-9.469171 + - type: Transform + pos: -29.520256,-9.469171 parent: 31 - type: Transform - proto: ClothingHandsGlovesColorYellow entities: - uid: 2523 components: - - pos: -29.506107,7.62424 + - type: Transform + pos: -29.506107,7.62424 parent: 31 - type: Transform - uid: 7572 components: - - pos: -11.565304,-10.576338 + - type: Transform + pos: -11.565304,-10.576338 parent: 31 - type: Transform - uid: 7581 components: - - pos: 32.479706,-2.7047698 + - type: Transform + pos: 32.479706,-2.7047698 parent: 31 - type: Transform - proto: ClothingHandsGlovesCombat entities: - uid: 8315 components: - - pos: 43.576782,13.655371 + - type: Transform + pos: 43.576782,13.655371 parent: 31 - type: Transform - proto: ClothingHandsGlovesLatex entities: - uid: 2212 components: - - pos: 19.45916,-20.403913 + - type: Transform + pos: 19.45916,-20.403913 parent: 31 - type: Transform - uid: 7102 components: - - flags: InContainer - type: MetaData - - parent: 7110 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7110 + - type: Physics + canCollide: False - proto: ClothingHandsGlovesLeather entities: - uid: 9670 components: - - pos: -4.544421,-41.335396 + - type: Transform + pos: -4.544421,-41.335396 parent: 31 - type: Transform - proto: ClothingHandsGlovesMercFingerless entities: - uid: 988 components: - - pos: 30.104523,-19.311977 + - type: Transform + pos: 30.104523,-19.311977 parent: 31 - type: Transform - proto: ClothingHandsGlovesNitrile entities: - uid: 10029 components: - - pos: 19.51705,-18.456926 + - type: Transform + pos: 19.51705,-18.456926 parent: 31 - type: Transform - proto: ClothingHeadHatAnimalCatBlack entities: - uid: 7971 components: - - pos: 26.502825,-1.4970446 + - type: Transform + pos: 26.502825,-1.4970446 parent: 31 - type: Transform - proto: ClothingHeadHatAnimalHeadslime entities: - uid: 3367 components: - - pos: -4.5089555,-12.629585 + - type: Transform + pos: -4.5089555,-12.629585 parent: 31 - type: Transform - proto: ClothingHeadHatBeret entities: - uid: 819 components: - - pos: -22.754051,9.462572 + - type: Transform + pos: -22.754051,9.462572 parent: 31 - type: Transform - proto: ClothingHeadHatBeretBrigmedic entities: - uid: 6607 components: - - pos: 14.371354,-5.1023016 + - type: Transform + pos: 14.371354,-5.1023016 parent: 31 - type: Transform - proto: ClothingHeadHatBowlerHat entities: - uid: 9261 components: - - pos: 0.36587167,-19.353008 + - type: Transform + pos: 0.36587167,-19.353008 parent: 31 - type: Transform - proto: ClothingHeadHatCone entities: - uid: 9344 components: - - pos: 81.74805,12.8173065 + - type: Transform + pos: 81.74805,12.8173065 parent: 31 - type: Transform - uid: 11283 components: - - pos: 81.68901,-7.648547 + - type: Transform + pos: 81.68901,-7.648547 parent: 31 - type: Transform - proto: ClothingHeadHatFedoraBrown entities: - uid: 7484 components: - - pos: -21.550486,17.73303 + - type: Transform + pos: -21.550486,17.73303 parent: 31 - type: Transform - uid: 7857 components: - - flags: InContainer - type: MetaData - - parent: 7853 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7853 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatFlowerCrown entities: - uid: 3235 components: - - pos: 49.449142,-25.427004 + - type: Transform + pos: 49.449142,-25.427004 parent: 31 - type: Transform - proto: ClothingHeadHatHairflower entities: - uid: 4196 components: - - pos: -3.75686,18.190365 + - type: Transform + pos: -3.75686,18.190365 parent: 31 - type: Transform - uid: 9762 components: - - pos: -16.570389,-38.390144 + - type: Transform + pos: -16.570389,-38.390144 parent: 31 - type: Transform - proto: ClothingHeadHatHardhatOrange entities: - uid: 10803 components: - - pos: 23.016964,-16.05082 + - type: Transform + pos: 23.016964,-16.05082 parent: 31 - type: Transform - proto: ClothingHeadHatPaper entities: - uid: 10801 components: - - pos: -15.392213,9.68141 + - type: Transform + pos: -15.392213,9.68141 parent: 31 - type: Transform - proto: ClothingHeadHatPirate entities: - uid: 4503 components: - - pos: 36.423782,-15.13722 + - type: Transform + pos: 36.423782,-15.13722 parent: 31 - type: Transform - proto: ClothingHeadHatPumpkin entities: - uid: 7407 components: - - pos: 48.273617,-26.666399 + - type: Transform + pos: 48.273617,-26.666399 parent: 31 - type: Transform - proto: ClothingHeadHatUshanka entities: - uid: 844 components: - - pos: -15.464306,-10.5187645 + - type: Transform + pos: -15.464306,-10.5187645 parent: 31 - type: Transform - uid: 7570 components: - - pos: -15.5245695,-10.430269 + - type: Transform + pos: -15.5245695,-10.430269 parent: 31 - type: Transform - proto: ClothingHeadHatWelding entities: - uid: 71 components: - - pos: -1.6376766,-24.290537 + - type: Transform + pos: -1.6376766,-24.290537 parent: 31 - type: Transform - uid: 8845 components: - - pos: 43.484886,13.560756 + - type: Transform + pos: 43.484886,13.560756 parent: 31 - type: Transform - proto: ClothingHeadsetGrey entities: - uid: 10480 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 49.173836,-5.2182446 parent: 31 - type: Transform - proto: ClothingMaskBreath entities: - uid: 4147 components: - - pos: -11.563622,-27.408012 + - type: Transform + pos: -11.563622,-27.408012 parent: 31 - type: Transform - uid: 10661 components: - - pos: 43.593338,-13.568842 + - type: Transform + pos: 43.593338,-13.568842 parent: 31 - type: Transform - proto: ClothingMaskBreathMedical entities: - uid: 10027 components: - - pos: 18.631598,-18.486423 + - type: Transform + pos: 18.631598,-18.486423 parent: 31 - type: Transform - proto: ClothingMaskGas entities: - uid: 2044 components: - - pos: -17.681976,-22.955162 + - type: Transform + pos: -17.681976,-22.955162 parent: 31 - type: Transform - uid: 7970 components: - - pos: 37.548763,-3.266727 + - type: Transform + pos: 37.548763,-3.266727 parent: 31 - type: Transform - proto: ClothingMaskGasMerc entities: - uid: 952 components: - - pos: 29.33713,-19.311977 + - type: Transform + pos: 29.33713,-19.311977 parent: 31 - type: Transform - proto: ClothingMaskGasSecurity entities: - uid: 7139 components: - - pos: 3.4708445,-42.623608 + - type: Transform + pos: 3.4708445,-42.623608 parent: 31 - type: Transform - proto: ClothingMaskNeckGaiter entities: - uid: 3141 components: - - pos: 4.570995,-42.497837 + - type: Transform + pos: 4.570995,-42.497837 parent: 31 - type: Transform - proto: ClothingMaskSterile entities: - uid: 7101 components: - - flags: InContainer - type: MetaData - - parent: 7110 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7110 + - type: Physics + canCollide: False - uid: 9034 components: - - pos: 19.448904,-20.24775 + - type: Transform + pos: 19.448904,-20.24775 parent: 31 - type: Transform - proto: ClothingNeckBling entities: - uid: 718 components: - - pos: -3.31936,17.67474 + - type: Transform + pos: -3.31936,17.67474 parent: 31 - type: Transform - proto: ClothingNeckCloakMiner entities: - uid: 10813 components: - - pos: 6.6956844,-33.563076 + - type: Transform + pos: 6.6956844,-33.563076 parent: 31 - type: Transform - proto: ClothingNeckCloakTrans entities: - uid: 9748 components: - - pos: -28.4315,17.631725 + - type: Transform + pos: -28.4315,17.631725 parent: 31 - type: Transform - proto: ClothingNeckNonBinaryPin entities: - uid: 11135 components: - - pos: 43.27403,-8.317395 + - type: Transform + pos: 43.27403,-8.317395 parent: 31 - type: Transform - proto: ClothingNeckScarfStripedBlue entities: - uid: 7843 components: - - pos: -13.566107,24.548891 + - type: Transform + pos: -13.566107,24.548891 parent: 31 - type: Transform - proto: ClothingNeckScarfStripedGreen entities: - uid: 9028 components: - - pos: 54.455875,-22.53784 + - type: Transform + pos: 54.455875,-22.53784 parent: 31 - type: Transform - proto: ClothingNeckScarfStripedRed entities: - uid: 10690 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.521442,-39.56699 parent: 31 - type: Transform - proto: ClothingNeckScarfStripedZebra entities: - uid: 7895 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -19.198872,-5.9850674 parent: 31 - type: Transform - proto: ClothingNeckTieRed entities: - uid: 7109 components: - - flags: InContainer - type: MetaData - - parent: 7110 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7110 + - type: Physics + canCollide: False - uid: 7856 components: - - flags: InContainer - type: MetaData - - parent: 7853 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7853 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingNeckTransPin entities: - uid: 11137 components: - - pos: -24.17542,-23.65307 + - type: Transform + pos: -24.17542,-23.65307 parent: 31 - type: Transform - proto: ClothingOuterArmorBasic entities: - uid: 1206 components: - - pos: -11.694116,19.672714 + - type: Transform + pos: -11.694116,19.672714 parent: 31 - type: Transform - uid: 9622 components: - - pos: -11.490991,19.672714 + - type: Transform + pos: -11.490991,19.672714 parent: 31 - type: Transform - proto: ClothingOuterArmorBulletproof entities: - uid: 36 components: - - pos: -11.170591,19.266254 + - type: Transform + pos: -11.170591,19.266254 parent: 31 - type: Transform - uid: 42 components: - - pos: -11.436216,19.297504 + - type: Transform + pos: -11.436216,19.297504 parent: 31 - type: Transform - uid: 43 components: - - pos: -11.733091,19.297504 + - type: Transform + pos: -11.733091,19.297504 parent: 31 - type: Transform - proto: ClothingOuterArmorReflective entities: - uid: 8020 components: - - pos: -11.209741,19.672714 + - type: Transform + pos: -11.209741,19.672714 parent: 31 - type: Transform - proto: ClothingOuterCoatInspector entities: - uid: 7480 components: - - pos: -21.602036,17.352358 + - type: Transform + pos: -21.602036,17.352358 parent: 31 - type: Transform - uid: 7854 components: - - flags: InContainer - type: MetaData - - parent: 7853 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7853 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingOuterCoatJensen entities: - uid: 9758 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.577541,-37.66867 parent: 31 - type: Transform - uid: 11245 components: - - pos: -31.464373,10.564828 + - type: Transform + pos: -31.464373,10.564828 parent: 31 - type: Transform - proto: ClothingOuterCoatLab entities: - uid: 4231 components: - - flags: InContainer - type: MetaData - - parent: 7110 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7110 + - type: Physics + canCollide: False - proto: ClothingOuterCoatPirate entities: - uid: 7065 components: - - pos: 36.486282,-15.465345 + - type: Transform + pos: 36.486282,-15.465345 parent: 31 - type: Transform - proto: ClothingOuterSanta entities: - uid: 108 components: - - pos: -11.396052,16.59143 + - type: Transform + pos: -11.396052,16.59143 parent: 31 - type: Transform - uid: 4166 components: - - pos: -11.396052,16.59143 + - type: Transform + pos: -11.396052,16.59143 parent: 31 - type: Transform - uid: 4457 components: - - pos: -11.396052,16.59143 + - type: Transform + pos: -11.396052,16.59143 parent: 31 - type: Transform - uid: 8422 components: - - pos: -11.396052,16.59143 + - type: Transform + pos: -11.396052,16.59143 parent: 31 - type: Transform - uid: 8447 components: - - pos: -11.396052,16.59143 + - type: Transform + pos: -11.396052,16.59143 parent: 31 - type: Transform - uid: 11334 components: - - pos: -11.396052,16.59143 + - type: Transform + pos: -11.396052,16.59143 parent: 31 - type: Transform - uid: 11335 components: - - pos: -11.396052,16.59143 + - type: Transform + pos: -11.396052,16.59143 parent: 31 - type: Transform - uid: 11336 components: - - pos: -11.396052,16.59143 + - type: Transform + pos: -11.396052,16.59143 parent: 31 - type: Transform - proto: ClothingOuterVestHazard entities: - uid: 10789 components: - - pos: 24.612627,13.574452 + - type: Transform + pos: 24.612627,13.574452 parent: 31 - type: Transform - uid: 10802 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.631699,-16.632479 parent: 31 - type: Transform - proto: ClothingOuterWinterCap entities: - uid: 9030 components: - - pos: 10.618964,23.658073 + - type: Transform + pos: 10.618964,23.658073 parent: 31 - type: Transform - proto: ClothingOuterWinterCE entities: - uid: 9035 components: - - pos: 38.383812,-0.3536343 + - type: Transform + pos: 38.383812,-0.3536343 parent: 31 - type: Transform - proto: ClothingOuterWinterCentcom entities: - uid: 9036 components: - - pos: 49.408,-22.48963 + - type: Transform + pos: 49.408,-22.48963 parent: 31 - type: Transform - proto: ClothingOuterWinterCMO entities: - uid: 7088 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 25.358017,-10.661482 parent: 31 - type: Transform - proto: ClothingOuterWinterCoat entities: - uid: 7644 components: - - pos: 7.310254,-13.535391 + - type: Transform + pos: 7.310254,-13.535391 parent: 31 - type: Transform - uid: 11226 components: - - pos: -30.51289,-9.469171 + - type: Transform + pos: -30.51289,-9.469171 parent: 31 - type: Transform - proto: ClothingOuterWinterHoP entities: - uid: 10828 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.3903475,16.346748 parent: 31 - type: Transform - proto: ClothingOuterWinterHoS entities: - uid: 9031 components: - - pos: -7.499014,20.716234 + - type: Transform + pos: -7.499014,20.716234 parent: 31 - type: Transform - proto: ClothingOuterWinterQM entities: - uid: 9925 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 29.360077,8.344849 parent: 31 - type: Transform - proto: ClothingOuterWinterRD entities: - uid: 9116 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.6681519,-23.621525 parent: 31 - type: Transform - proto: ClothingShoesBootsJack entities: - uid: 10692 components: - - pos: 41.713104,-10.668272 + - type: Transform + pos: 41.713104,-10.668272 parent: 31 - type: Transform - proto: ClothingShoesBootsMag entities: - uid: 1014 components: - - pos: 10.330068,10.623066 + - type: Transform + pos: 10.330068,10.623066 parent: 31 - type: Transform - uid: 1541 components: - - pos: 10.3269205,11.58763 + - type: Transform + pos: 10.3269205,11.58763 parent: 31 - type: Transform - uid: 3136 components: - - pos: 10.6550455,11.540755 + - type: Transform + pos: 10.6550455,11.540755 parent: 31 - type: Transform - uid: 7151 components: - - pos: 10.642568,10.482441 + - type: Transform + pos: 10.642568,10.482441 parent: 31 - type: Transform - uid: 10980 components: - - pos: 58.78938,-5.6705165 + - type: Transform + pos: 58.78938,-5.6705165 parent: 31 - type: Transform - proto: ClothingShoesBootsMerc entities: - uid: 1109 components: - - pos: -6.4295473,32.285225 + - type: Transform + pos: -6.4295473,32.285225 parent: 31 - type: Transform - proto: ClothingShoesBootsPerformer entities: - uid: 8319 components: - - pos: 29.355263,-21.266848 + - type: Transform + pos: 29.355263,-21.266848 parent: 31 - type: Transform - proto: ClothingShoesCult entities: - uid: 2066 components: - - pos: 4.5165205,-41.275776 + - type: Transform + pos: 4.5165205,-41.275776 parent: 31 - type: Transform - proto: ClothingShoesFlippers entities: - uid: 7969 components: - - pos: 37.55209,-3.407352 + - type: Transform + pos: 37.55209,-3.407352 parent: 31 - type: Transform - proto: ClothingShoesLeather entities: - uid: 7098 components: - - flags: InContainer - type: MetaData - - parent: 7110 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7110 + - type: Physics + canCollide: False - uid: 10585 components: - - pos: 30.458075,-9.757927 + - type: Transform + pos: 30.458075,-9.757927 parent: 31 - type: Transform - proto: ClothingShoeSlippersDuck entities: - uid: 7858 components: - - pos: 26.546747,-24.62174 + - type: Transform + pos: 26.546747,-24.62174 parent: 31 - type: Transform - uid: 9957 components: - - pos: -24.138485,-21.92873 + - type: Transform + pos: -24.138485,-21.92873 parent: 31 - type: Transform - uid: 11362 components: - - pos: -5.414235,-29.644104 + - type: Transform + pos: -5.414235,-29.644104 parent: 31 - type: Transform - proto: ClothingUnderSocksCoder entities: - uid: 8146 components: - - pos: 60.474884,-1.2823541 + - type: Transform + pos: 60.474884,-1.2823541 parent: 31 - type: Transform - proto: ClothingUniformColorRainbow entities: - uid: 8410 components: - - pos: 37.603355,-3.5149672 + - type: Transform + pos: 37.603355,-3.5149672 parent: 31 - type: Transform - proto: ClothingUniformJumpskirtDetective entities: - uid: 7972 components: - - pos: 14.57035,20.510712 + - type: Transform + pos: 14.57035,20.510712 parent: 31 - type: Transform - proto: ClothingUniformJumpsuitAncient entities: - uid: 8953 components: - - pos: -27.587215,7.5242066 + - type: Transform + pos: -27.587215,7.5242066 parent: 31 - type: Transform - proto: ClothingUniformJumpsuitBartender entities: - uid: 11109 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -34.617214,17.30891 parent: 31 - type: Transform - proto: ClothingUniformJumpsuitDetective entities: - uid: 7108 components: - - flags: InContainer - type: MetaData - - parent: 7110 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7110 + - type: Physics + canCollide: False - uid: 7458 components: - - pos: -23.237986,17.742983 + - type: Transform + pos: -23.237986,17.742983 parent: 31 - type: Transform - uid: 7973 components: - - pos: 14.460975,20.651337 + - type: Transform + pos: 14.460975,20.651337 parent: 31 - type: Transform - proto: ClothingUniformJumpsuitDetectiveGrey entities: - uid: 9190 components: - - pos: -23.456736,17.524233 + - type: Transform + pos: -23.456736,17.524233 parent: 31 - type: Transform - proto: ClothingUniformJumpsuitMercenary entities: - uid: 3571 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 30.429188,-19.665958 parent: 31 - type: Transform - proto: ComfyChair entities: - uid: 205 components: - - pos: -21.5,10.5 + - type: Transform + pos: -21.5,10.5 parent: 31 - type: Transform - uid: 417 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-20.5 parent: 31 - type: Transform - uid: 478 components: - - pos: 10.5,24.5 + - type: Transform + pos: 10.5,24.5 parent: 31 - type: Transform - uid: 519 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -31.5,16.5 parent: 31 - type: Transform - uid: 732 components: - - pos: -31.5,18.5 + - type: Transform + pos: -31.5,18.5 parent: 31 - type: Transform - uid: 736 components: - - pos: 7.5,25.5 + - type: Transform + pos: 7.5,25.5 parent: 31 - type: Transform - - edge: 0 - type: Construction + - type: Construction + edge: 0 - uid: 816 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -22.5,8.5 parent: 31 - type: Transform - uid: 1209 components: - - pos: -30.5,-4.5 + - type: Transform + pos: -30.5,-4.5 parent: 31 - type: Transform - uid: 1715 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 38.5,-1.5 parent: 31 - type: Transform - uid: 2131 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-7.5 parent: 31 - type: Transform - uid: 2439 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-6.5 parent: 31 - type: Transform - uid: 2824 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 31 - type: Transform - uid: 2893 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,17.5 parent: 31 - type: Transform - uid: 3594 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,0.5 parent: 31 - type: Transform - uid: 4007 components: - - pos: 0.5,-4.5 + - type: Transform + pos: 0.5,-4.5 parent: 31 - type: Transform - uid: 4164 components: - - pos: -0.5,1.5 + - type: Transform + pos: -0.5,1.5 parent: 31 - type: Transform - uid: 4882 components: - - pos: -8.5,21.5 + - type: Transform + pos: -8.5,21.5 parent: 31 - type: Transform - uid: 5065 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,23.5 parent: 31 - type: Transform - uid: 7165 components: - - pos: 12.5,-30.5 + - type: Transform + pos: 12.5,-30.5 parent: 31 - type: Transform - uid: 7331 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,-10.5 parent: 31 - type: Transform - uid: 7373 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-20.5 parent: 31 - type: Transform - uid: 7701 components: - - pos: -36.5,14.5 + - type: Transform + pos: -36.5,14.5 parent: 31 - type: Transform - uid: 7703 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -23.5,-23.5 parent: 31 - type: Transform - uid: 7851 components: - - pos: 27.5,-24.5 + - type: Transform + pos: 27.5,-24.5 parent: 31 - type: Transform - uid: 8721 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -36.5,-28.5 parent: 31 - type: Transform - uid: 8722 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,-29.5 parent: 31 - type: Transform - uid: 8723 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -34.5,-29.5 parent: 31 - type: Transform - uid: 10202 components: - - pos: -22.5,10.5 + - type: Transform + pos: -22.5,10.5 parent: 31 - type: Transform - uid: 10213 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -21.5,8.5 parent: 31 - type: Transform - proto: ComputerAlert entities: - uid: 8800 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,31.5 parent: 31 - type: Transform - proto: ComputerAnalysisConsole entities: - uid: 9292 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-30.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 9418: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - type: DeviceLinkSource - proto: computerBodyScanner entities: - uid: 7285 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,-15.5 parent: 31 - type: Transform - proto: ComputerCargoBounty entities: - uid: 8796 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,9.5 parent: 31 - type: Transform - proto: ComputerCargoOrders entities: - uid: 3602 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 26.5,8.5 parent: 31 - type: Transform - uid: 4309 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,9.5 parent: 31 - type: Transform - proto: ComputerCargoShuttle entities: - uid: 4254 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,15.5 parent: 31 - type: Transform - proto: ComputerComms entities: - uid: 1370 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,23.5 parent: 31 - type: Transform - uid: 2721 components: - - pos: 3.5,32.5 + - type: Transform + pos: 3.5,32.5 parent: 31 - type: Transform - proto: ComputerCrewMonitoring entities: - uid: 955 components: - - pos: 23.5,-9.5 + - type: Transform + pos: 23.5,-9.5 parent: 31 - type: Transform - uid: 2448 components: - - pos: 0.5,32.5 + - type: Transform + pos: 0.5,32.5 parent: 31 - type: Transform - uid: 7674 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 31 - type: Transform - proto: ComputerCriminalRecords entities: - uid: 2964 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 31 - type: Transform - uid: 8803 components: - - pos: 8.5,30.5 + - type: Transform + pos: 8.5,30.5 parent: 31 - type: Transform - proto: ComputerFrame entities: - uid: 7085 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-16.5 parent: 31 - type: Transform - proto: ComputerId entities: - uid: 810 components: - - pos: 7.5,21.5 + - type: Transform + pos: 7.5,21.5 parent: 31 - type: Transform - uid: 870 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,31.5 parent: 31 - type: Transform - uid: 1113 components: - - pos: -3.5,-19.5 + - type: Transform + pos: -3.5,-19.5 parent: 31 - type: Transform - uid: 2065 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,21.5 parent: 31 - type: Transform - uid: 2204 components: - - pos: 29.5,10.5 + - type: Transform + pos: 29.5,10.5 parent: 31 - type: Transform - uid: 6840 components: - - pos: 24.5,-9.5 + - type: Transform + pos: 24.5,-9.5 parent: 31 - type: Transform - uid: 11014 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 37.5,0.5 parent: 31 - type: Transform - proto: ComputerPowerMonitoring entities: - uid: 4306 components: - - pos: 42.5,4.5 + - type: Transform + pos: 42.5,4.5 parent: 31 - type: Transform - proto: ComputerRadar entities: - uid: 579 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 32.5,22.5 parent: 31 - type: Transform - uid: 2447 components: - - pos: 6.5,32.5 + - type: Transform + pos: 6.5,32.5 parent: 31 - type: Transform - proto: ComputerResearchAndDevelopment entities: - uid: 1070 components: - - pos: -13.5,-24.5 + - type: Transform + pos: -13.5,-24.5 parent: 31 - type: Transform - uid: 4244 components: - - pos: -4.5,-19.5 + - type: Transform + pos: -4.5,-19.5 parent: 31 - type: Transform - proto: ComputerSalvageExpedition entities: - uid: 33 components: - - pos: 28.5,21.5 + - type: Transform + pos: 28.5,21.5 parent: 31 - type: Transform - proto: ComputerShuttleCargo entities: - uid: 2374 components: - - pos: 23.5,13.5 + - type: Transform + pos: 23.5,13.5 parent: 31 - type: Transform - proto: ComputerShuttleSalvage entities: - uid: 3424 components: - - pos: 34.5,35.5 + - type: Transform + pos: 34.5,35.5 parent: 31 - type: Transform - proto: ComputerSolarControl entities: - uid: 4305 components: - - pos: 41.5,4.5 + - type: Transform + pos: 41.5,4.5 parent: 31 - type: Transform - uid: 5184 components: - - pos: -21.5,25.5 + - type: Transform + pos: -21.5,25.5 parent: 31 - type: Transform - uid: 11207 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-27.5 parent: 31 - type: Transform - proto: ComputerStationRecords entities: - uid: 8515 components: - - pos: -3.5,14.5 + - type: Transform + pos: -3.5,14.5 parent: 31 - type: Transform - uid: 9752 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,29.5 parent: 31 - type: Transform - proto: ComputerSurveillanceCameraMonitor entities: - uid: 534 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,29.5 parent: 31 - type: Transform - uid: 2218 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 31 - type: Transform - proto: ComputerTechnologyDiskTerminal entities: - uid: 591 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-24.5 parent: 31 - type: Transform - proto: ContainmentFieldGenerator entities: - uid: 4559 components: - - pos: 75.5,-1.5 + - type: Transform + pos: 75.5,-1.5 parent: 31 - type: Transform - uid: 4561 components: - - pos: 67.5,-1.5 + - type: Transform + pos: 67.5,-1.5 parent: 31 - type: Transform - uid: 6299 components: - - pos: 67.5,6.5 + - type: Transform + pos: 67.5,6.5 parent: 31 - type: Transform - uid: 6321 components: - - pos: 75.5,6.5 + - type: Transform + pos: 75.5,6.5 parent: 31 - type: Transform - uid: 6469 components: - - pos: 40.5,8.5 + - type: Transform + pos: 40.5,8.5 parent: 31 - type: Transform - uid: 6639 components: - - pos: 39.5,8.5 + - type: Transform + pos: 39.5,8.5 parent: 31 - type: Transform - proto: ConveyorBelt entities: - uid: 1771 components: - - pos: 20.5,20.5 + - type: Transform + pos: 20.5,20.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 3387 components: - - pos: 20.5,21.5 + - type: Transform + pos: 20.5,21.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 3548 components: - - pos: 20.5,23.5 + - type: Transform + pos: 20.5,23.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 3549 components: - - pos: 20.5,24.5 + - type: Transform + pos: 20.5,24.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 3550 components: - - pos: 20.5,22.5 + - type: Transform + pos: 20.5,22.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 7550 components: - - pos: 20.5,19.5 + - type: Transform + pos: 20.5,19.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 8899 components: - - pos: 20.5,18.5 + - type: Transform + pos: 20.5,18.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 9138 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 23.5,27.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 9139 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 23.5,26.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 9265 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,-16.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10218 - type: DeviceLinkSink - uid: 9886 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,-16.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10218 - type: DeviceLinkSink - uid: 10033 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -31.5,-18.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10218 - type: DeviceLinkSink - uid: 10040 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -31.5,-17.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10218 - type: DeviceLinkSink - uid: 10043 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -31.5,-16.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10218 - type: DeviceLinkSink - uid: 10045 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,25.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 10046 components: - - pos: 19.5,28.5 + - type: Transform + pos: 19.5,28.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 10047 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,18.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 10048 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,19.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 10049 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,20.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 10050 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,21.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 10051 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,22.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 10052 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,23.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 10053 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,24.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - 7945 - type: DeviceLinkSink - uid: 10054 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 23.5,28.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 10089 components: - - pos: 20.5,25.5 + - type: Transform + pos: 20.5,25.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 10090 components: - - pos: 20.5,26.5 + - type: Transform + pos: 20.5,26.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 10091 components: - - pos: 19.5,27.5 + - type: Transform + pos: 19.5,27.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 10092 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,26.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 1084 - type: DeviceLinkSink - uid: 10093 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 22.5,26.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 7945 - type: DeviceLinkSink - uid: 10109 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -32.5,-16.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10218 - type: DeviceLinkSink - uid: 10110 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -33.5,-16.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10218 - type: DeviceLinkSink - uid: 10215 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -36.5,-16.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10218 - type: DeviceLinkSink - proto: CrateCoffin entities: - uid: 9634 components: - - pos: -36.5,15.5 + - type: Transform + pos: -36.5,15.5 parent: 31 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -28547,47 +28557,47 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: CrateEmptySpawner entities: - uid: 3135 components: - - pos: -17.5,13.5 + - type: Transform + pos: -17.5,13.5 parent: 31 - type: Transform - uid: 8045 components: - - pos: 10.5,13.5 + - type: Transform + pos: 10.5,13.5 parent: 31 - type: Transform - uid: 10012 components: - - pos: 18.5,15.5 + - type: Transform + pos: 18.5,15.5 parent: 31 - type: Transform - proto: CrateEngineeringAMEJar entities: - uid: 6626 components: - - pos: 50.5,8.5 + - type: Transform + pos: 50.5,8.5 parent: 31 - type: Transform - - containers: + - type: Construction + containers: - EntityStorageComponent - entity_storage - type: Construction - proto: CrateEngineeringAMEShielding entities: - uid: 6603 components: - - pos: 50.5,9.5 + - type: Transform + pos: 50.5,9.5 parent: 31 - type: Transform - - containers: + - type: Construction + containers: - EntityStorageComponent - entity_storage - type: Construction - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -28599,25 +28609,25 @@ entities: showEnts: False occludes: True ent: null - type: ContainerContainer - proto: CrateEngineeringCableHV entities: - uid: 11208 components: - - pos: 16.5,-29.5 + - type: Transform + pos: 16.5,-29.5 parent: 31 - type: Transform - proto: CrateEngineeringSecure entities: - uid: 11305 components: - - desc: Stores logic gates that control the salvage-atmos airlocks. + - type: MetaData + desc: Stores logic gates that control the salvage-atmos airlocks. name: logic gate crate - type: MetaData - - pos: 30.5,21.5 + - type: Transform + pos: 30.5,21.5 parent: 31 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -28634,8 +28644,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -28646,99 +28656,99 @@ entities: showEnts: False occludes: True ent: null - type: ContainerContainer - proto: CrateEngineeringTeslaCoil entities: - uid: 11373 components: - - pos: 55.5,11.5 + - type: Transform + pos: 55.5,11.5 parent: 31 - type: Transform - uid: 11374 components: - - pos: 55.5,10.5 + - type: Transform + pos: 55.5,10.5 parent: 31 - type: Transform - uid: 11375 components: - - pos: 56.5,11.5 + - type: Transform + pos: 56.5,11.5 parent: 31 - type: Transform - uid: 11376 components: - - pos: 57.5,11.5 + - type: Transform + pos: 57.5,11.5 parent: 31 - type: Transform - proto: CrateEngineeringTeslaGenerator entities: - uid: 6748 components: - - pos: 60.5,10.5 + - type: Transform + pos: 60.5,10.5 parent: 31 - type: Transform - proto: CrateEngineeringTeslaGroundingRod entities: - uid: 11367 components: - - pos: 59.5,9.5 + - type: Transform + pos: 59.5,9.5 parent: 31 - type: Transform - uid: 11368 components: - - pos: 60.5,9.5 + - type: Transform + pos: 60.5,9.5 parent: 31 - type: Transform - proto: CrateFilledSpawner entities: - uid: 1637 components: - - pos: 22.5,7.5 + - type: Transform + pos: 22.5,7.5 parent: 31 - type: Transform - uid: 7140 components: - - pos: 20.5,7.5 + - type: Transform + pos: 20.5,7.5 parent: 31 - type: Transform - uid: 7141 components: - - pos: 21.5,7.5 + - type: Transform + pos: 21.5,7.5 parent: 31 - type: Transform - uid: 9796 components: - - pos: -19.5,-36.5 + - type: Transform + pos: -19.5,-36.5 parent: 31 - type: Transform - proto: CrateHydroponics entities: - uid: 9679 components: - - pos: 1.5,-42.5 + - type: Transform + pos: 1.5,-42.5 parent: 31 - type: Transform - proto: CrateMedicalSurgery entities: - uid: 7264 components: - - pos: 20.5,-17.5 + - type: Transform + pos: 20.5,-17.5 parent: 31 - type: Transform - proto: CrateNPCHamlet entities: - uid: 2458 components: - - pos: 0.5,29.5 + - type: Transform + pos: 0.5,29.5 parent: 31 - type: Transform - proto: CratePrivateSecure entities: - uid: 2363 components: - - pos: -2.5,16.5 + - type: Transform + pos: -2.5,16.5 parent: 31 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -28755,8 +28765,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -28771,4082 +28781,4115 @@ entities: showEnts: False occludes: True ent: null - type: ContainerContainer - proto: CrateTrashCart entities: - uid: 4318 components: - - pos: 40.5,-3.5 + - type: Transform + pos: 40.5,-3.5 parent: 31 - type: Transform - uid: 6904 components: - - pos: 23.5,-18.5 + - type: Transform + pos: 23.5,-18.5 parent: 31 - type: Transform - uid: 7087 components: - - pos: -7.5,-12.5 + - type: Transform + pos: -7.5,-12.5 parent: 31 - type: Transform - proto: CrateTrashCartFilled entities: - uid: 10468 components: - - pos: -31.5,-13.5 + - type: Transform + pos: -31.5,-13.5 parent: 31 - type: Transform - proto: CrateTrashCartJani entities: - uid: 125 components: - - pos: -20.5,-11.5 + - type: Transform + pos: -20.5,-11.5 parent: 31 - type: Transform - proto: CrayonBox entities: - uid: 263 components: - - pos: -19.62684,-5.2181053 + - type: Transform + pos: -19.62684,-5.2181053 parent: 31 - type: Transform - proto: Crematorium entities: - uid: 7631 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 31 - type: Transform - proto: CrewMonitoringServer entities: - uid: 879 components: - - pos: 57.5,-9.5 + - type: Transform + pos: 57.5,-9.5 parent: 31 - type: Transform - proto: CrowbarRed entities: - uid: 2093 components: - - pos: -3.7752368,12.511271 + - type: Transform + pos: -3.7752368,12.511271 parent: 31 - type: Transform - uid: 7562 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -52.74314,-11.621845 parent: 31 - type: Transform - uid: 8834 components: - - pos: 8.498364,31.458696 + - type: Transform + pos: 8.498364,31.458696 parent: 31 - type: Transform - uid: 9114 components: - - pos: -10.463156,-6.5336485 + - type: Transform + pos: -10.463156,-6.5336485 + parent: 31 +- proto: CryogenicSleepUnit + entities: + - uid: 9172 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 31 + - uid: 9184 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 31 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 9206 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 31 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 9197 + components: + - type: Transform + pos: -40.5,-5.5 parent: 31 - type: Transform - proto: CryoPod entities: - uid: 5231 components: - - pos: 7.5,-15.5 + - type: Transform + pos: 7.5,-15.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: CryoxadoneBeakerSmall entities: - uid: 6015 components: - - pos: 7.2794514,-13.17127 + - type: Transform + pos: 7.2794514,-13.17127 parent: 31 - type: Transform - proto: CrystalGrey entities: - uid: 4782 components: - - pos: 3.5,-35.5 + - type: Transform + pos: 3.5,-35.5 parent: 31 - type: Transform - proto: CultAltarSpawner entities: - uid: 9689 components: - - pos: 7.5,-41.5 + - type: Transform + pos: 7.5,-41.5 parent: 31 - type: Transform - proto: CyborgEndoskeleton entities: - uid: 942 components: - - pos: -0.49411595,-30.373203 + - type: Transform + pos: -0.49411595,-30.373203 parent: 31 - type: Transform - proto: d20Dice entities: - uid: 2357 components: - - pos: -23.834803,-5.3811545 + - type: Transform + pos: -23.834803,-5.3811545 parent: 31 - type: Transform - uid: 4723 components: - - pos: 11.36982,-23.570984 + - type: Transform + pos: 11.36982,-23.570984 parent: 31 - type: Transform - proto: d6Dice entities: - uid: 4249 components: - - pos: 10.80732,-23.477234 + - type: Transform + pos: 10.80732,-23.477234 parent: 31 - type: Transform - uid: 7292 components: - - pos: 10.46357,-23.664734 + - type: Transform + pos: 10.46357,-23.664734 parent: 31 - type: Transform - proto: d8Dice entities: - uid: 2358 components: - - pos: -24.287928,-6.3967795 + - type: Transform + pos: -24.287928,-6.3967795 parent: 31 - type: Transform - uid: 7293 components: - - pos: 11.27607,-24.265812 + - type: Transform + pos: 11.27607,-24.265812 parent: 31 - type: Transform - proto: DefaultStationBeacon entities: - uid: 774 components: - - pos: -39.5,5.5 + - type: Transform + pos: -39.5,5.5 parent: 31 - type: Transform - - text: evac - type: NavMapBeacon + - type: NavMapBeacon + text: evac - uid: 1374 components: - - pos: 44.5,-24.5 + - type: Transform + pos: 44.5,-24.5 + parent: 31 + - type: NavMapBeacon + text: observatory + - uid: 9207 + components: + - type: Transform + pos: -41.5,-4.5 parent: 31 - type: Transform - - text: observatory - type: NavMapBeacon + - type: NavMapBeacon + text: cryogenics - proto: DefaultStationBeaconAME entities: - uid: 7280 components: - - pos: 47.5,8.5 + - type: Transform + pos: 47.5,8.5 parent: 31 - type: Transform - proto: DefaultStationBeaconAnomalyGenerator entities: - uid: 11361 components: - - pos: -5.5,-30.5 + - type: Transform + pos: -5.5,-30.5 parent: 31 - type: Transform - proto: DefaultStationBeaconArmory entities: - uid: 10088 components: - - pos: -12.5,19.5 + - type: Transform + pos: -12.5,19.5 parent: 31 - type: Transform - proto: DefaultStationBeaconArrivals entities: - uid: 812 components: - - pos: -44.5,-10.5 + - type: Transform + pos: -44.5,-10.5 parent: 31 - type: Transform - proto: DefaultStationBeaconArtifactLab entities: - uid: 11363 components: - - pos: -12.5,-29.5 + - type: Transform + pos: -12.5,-29.5 parent: 31 - type: Transform - proto: DefaultStationBeaconAtmospherics entities: - uid: 11312 components: - - pos: 31.5,12.5 + - type: Transform + pos: 31.5,12.5 parent: 31 - type: Transform - proto: DefaultStationBeaconBar entities: - uid: 11319 components: - - pos: -5.5,-5.5 + - type: Transform + pos: -5.5,-5.5 parent: 31 - type: Transform - proto: DefaultStationBeaconBotany entities: - uid: 11320 components: - - pos: -18.5,-0.5 + - type: Transform + pos: -18.5,-0.5 parent: 31 - type: Transform - proto: DefaultStationBeaconBridge entities: - uid: 11269 components: - - pos: 3.5,30.5 + - type: Transform + pos: 3.5,30.5 parent: 31 - type: Transform - proto: DefaultStationBeaconBrig entities: - uid: 8881 components: - - pos: -10.5,8.5 + - type: Transform + pos: -10.5,8.5 parent: 31 - type: Transform - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 11268 components: - - pos: 8.5,25.5 + - type: Transform + pos: 8.5,25.5 parent: 31 - type: Transform - proto: DefaultStationBeaconCargoBay entities: - uid: 3509 components: - - pos: 21.5,16.5 + - type: Transform + pos: 21.5,16.5 parent: 31 - type: Transform - proto: DefaultStationBeaconCargoReception entities: - uid: 2494 components: - - pos: 14.5,10.5 + - type: Transform + pos: 14.5,10.5 parent: 31 - type: Transform - proto: DefaultStationBeaconCERoom entities: - uid: 3513 components: - - pos: 39.5,-0.5 + - type: Transform + pos: 39.5,-0.5 parent: 31 - type: Transform - proto: DefaultStationBeaconChapel entities: - uid: 11324 components: - - pos: -36.5,14.5 + - type: Transform + pos: -36.5,14.5 parent: 31 - type: Transform - proto: DefaultStationBeaconChemistry entities: - uid: 7256 components: - - pos: 16.5,-0.5 + - type: Transform + pos: 16.5,-0.5 parent: 31 - type: Transform - proto: DefaultStationBeaconCMORoom entities: - uid: 7276 components: - - pos: 23.5,-10.5 + - type: Transform + pos: 23.5,-10.5 parent: 31 - type: Transform - proto: DefaultStationBeaconCryonics entities: - uid: 8316 components: - - pos: 8.5,-15.5 + - type: Transform + pos: 8.5,-15.5 parent: 31 - type: Transform - proto: DefaultStationBeaconDisposals entities: - uid: 7954 components: - - pos: -30.5,-16.5 + - type: Transform + pos: -30.5,-16.5 parent: 31 - type: Transform - proto: DefaultStationBeaconEngineering entities: - uid: 7281 components: - - pos: 33.5,4.5 + - type: Transform + pos: 33.5,4.5 parent: 31 - type: Transform - proto: DefaultStationBeaconEVAStorage entities: - uid: 7640 components: - - pos: 8.5,9.5 + - type: Transform + pos: 8.5,9.5 parent: 31 - type: Transform - proto: DefaultStationBeaconHOPOffice entities: - uid: 2464 components: - - pos: 8.5,19.5 + - type: Transform + pos: 8.5,19.5 parent: 31 - type: Transform - proto: DefaultStationBeaconHOSRoom entities: - uid: 778 components: - - pos: -8.5,20.5 + - type: Transform + pos: -8.5,20.5 parent: 31 - type: Transform - proto: DefaultStationBeaconJanitorsCloset entities: - uid: 11323 components: - - pos: -18.5,-11.5 + - type: Transform + pos: -18.5,-11.5 parent: 31 - type: Transform - proto: DefaultStationBeaconKitchen entities: - uid: 11318 components: - - pos: -12.5,-0.5 + - type: Transform + pos: -12.5,-0.5 parent: 31 - type: Transform - proto: DefaultStationBeaconLibrary entities: - uid: 11325 components: - - pos: 9.5,-26.5 + - type: Transform + pos: 9.5,-26.5 parent: 31 - type: Transform - proto: DefaultStationBeaconMedbay entities: - uid: 5767 components: - - pos: 9.5,-9.5 + - type: Transform + pos: 9.5,-9.5 parent: 31 - type: Transform - proto: DefaultStationBeaconMedical entities: - uid: 1215 components: - - pos: 9.5,-2.5 + - type: Transform + pos: 9.5,-2.5 parent: 31 - type: Transform - proto: DefaultStationBeaconMorgue entities: - uid: 7275 components: - - pos: 13.5,-15.5 + - type: Transform + pos: 13.5,-15.5 parent: 31 - type: Transform - proto: DefaultStationBeaconPermaBrig entities: - uid: 11316 components: - - pos: -17.5,9.5 + - type: Transform + pos: -17.5,9.5 parent: 31 - type: Transform - proto: DefaultStationBeaconPowerBank entities: - uid: 11352 components: - - pos: 41.5,5.5 + - type: Transform + pos: 41.5,5.5 parent: 31 - type: Transform - proto: DefaultStationBeaconQMRoom entities: - uid: 11353 components: - - pos: 27.5,9.5 + - type: Transform + pos: 27.5,9.5 parent: 31 - type: Transform - proto: DefaultStationBeaconRDRoom entities: - uid: 11354 components: - - pos: -4.5,-21.5 + - type: Transform + pos: -4.5,-21.5 parent: 31 - type: Transform - proto: DefaultStationBeaconRND entities: - uid: 11355 components: - - pos: -15.5,-23.5 + - type: Transform + pos: -15.5,-23.5 parent: 31 - type: Transform - proto: DefaultStationBeaconRobotics entities: - uid: 11360 components: - - pos: -1.5,-27.5 + - type: Transform + pos: -1.5,-27.5 parent: 31 - type: Transform - proto: DefaultStationBeaconSalvage entities: - uid: 11321 components: - - pos: 27.5,18.5 + - type: Transform + pos: 27.5,18.5 parent: 31 - type: Transform - proto: DefaultStationBeaconScience entities: - uid: 1208 components: - - pos: -9.5,-20.5 + - type: Transform + pos: -9.5,-20.5 parent: 31 - type: Transform - proto: DefaultStationBeaconSecurity entities: - uid: 1136 components: - - pos: -7.5,11.5 + - type: Transform + pos: -7.5,11.5 parent: 31 - type: Transform - proto: DefaultStationBeaconServerRoom entities: - uid: 11356 components: - - pos: -1.5,-21.5 + - type: Transform + pos: -1.5,-21.5 parent: 31 - type: Transform - proto: DefaultStationBeaconSingularity entities: - uid: 11358 components: - - pos: 60.5,2.5 + - type: Transform + pos: 60.5,2.5 parent: 31 - type: Transform - proto: DefaultStationBeaconSolars entities: - uid: 11364 components: - - pos: 15.5,-29.5 + - type: Transform + pos: 15.5,-29.5 parent: 31 - type: Transform - uid: 11365 components: - - pos: -31.5,-32.5 + - type: Transform + pos: -31.5,-32.5 parent: 31 - type: Transform - uid: 11366 components: - - pos: -22.5,24.5 + - type: Transform + pos: -22.5,24.5 parent: 31 - type: Transform - proto: DefaultStationBeaconTechVault entities: - uid: 1316 components: - - pos: 27.5,1.5 + - type: Transform + pos: 27.5,1.5 parent: 31 - type: Transform - proto: DefaultStationBeaconTEG entities: - uid: 11314 components: - - pos: 38.5,14.5 + - type: Transform + pos: 38.5,14.5 parent: 31 - type: Transform - proto: DefaultStationBeaconTelecoms entities: - uid: 11357 components: - - pos: 50.5,-5.5 + - type: Transform + pos: 50.5,-5.5 parent: 31 - type: Transform - proto: DefaultStationBeaconTeslaEngine entities: - uid: 11380 components: - - pos: 56.5,10.5 + - type: Transform + pos: 56.5,10.5 parent: 31 - type: Transform - proto: DefaultStationBeaconToolRoom entities: - uid: 11317 components: - - pos: -27.5,9.5 + - type: Transform + pos: -27.5,9.5 parent: 31 - type: Transform - proto: DefaultStationBeaconVault entities: - uid: 11315 components: - - pos: -1.5,17.5 + - type: Transform + pos: -1.5,17.5 parent: 31 - type: Transform - proto: DefaultStationBeaconWardensOffice entities: - uid: 762 components: - - pos: -1.5,8.5 + - type: Transform + pos: -1.5,8.5 parent: 31 - type: Transform - proto: DefibrillatorCabinetFilled entities: - uid: 7340 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-12.5 parent: 31 - type: Transform - uid: 9834 components: - - pos: 1.5,29.5 + - type: Transform + pos: 1.5,29.5 parent: 31 - type: Transform - uid: 9835 components: - - pos: -32.5,6.5 + - type: Transform + pos: -32.5,6.5 parent: 31 - type: Transform - uid: 10032 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-17.5 parent: 31 - type: Transform - proto: DeployableBarrier entities: - uid: 2502 components: - - pos: -6.5,17.5 + - type: Transform + pos: -6.5,17.5 parent: 31 - type: Transform - uid: 9369 components: - - pos: -5.5,17.5 + - type: Transform + pos: -5.5,17.5 parent: 31 - type: Transform - proto: DeskBell entities: - uid: 2195 components: - - pos: 7.9000525,-3.1977162 + - type: Transform + pos: 7.9000525,-3.1977162 parent: 31 - type: Transform - proto: DiceBag entities: - uid: 10207 components: - - pos: 10.362751,-24.393734 + - type: Transform + pos: 10.362751,-24.393734 parent: 31 - type: Transform - uid: 10208 components: - - pos: 10.756269,-24.370586 + - type: Transform + pos: 10.756269,-24.370586 parent: 31 - type: Transform - proto: DiseaseDiagnoser entities: - uid: 8435 components: - - pos: 19.5,-5.5 + - type: Transform + pos: 19.5,-5.5 parent: 31 - type: Transform - proto: DisgustingSweptSoup entities: - uid: 9020 components: - - pos: -12.586034,24.541399 + - type: Transform + pos: -12.586034,24.541399 parent: 31 - type: Transform - proto: DisposalBend entities: - uid: 61 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-27.5 parent: 31 - type: Transform - uid: 238 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 37.5,3.5 parent: 31 - type: Transform - uid: 310 components: - - pos: 8.5,17.5 + - type: Transform + pos: 8.5,17.5 parent: 31 - type: Transform - uid: 399 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,-27.5 parent: 31 - type: Transform - uid: 838 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: -29.5,10.5 parent: 31 - type: Transform - uid: 839 components: - - pos: -28.5,10.5 + - type: Transform + pos: -28.5,10.5 parent: 31 - type: Transform - uid: 848 components: - - pos: -8.5,-25.5 + - type: Transform + pos: -8.5,-25.5 parent: 31 - type: Transform - uid: 849 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-20.5 parent: 31 - type: Transform - uid: 874 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 31 - type: Transform - uid: 927 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-16.5 parent: 31 - type: Transform - uid: 2012 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -25.5,-16.5 parent: 31 - type: Transform - uid: 2299 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-11.5 parent: 31 - type: Transform - uid: 2315 components: - - pos: -5.5,12.5 + - type: Transform + pos: -5.5,12.5 parent: 31 - type: Transform - uid: 2335 components: - - pos: -4.5,-16.5 + - type: Transform + pos: -4.5,-16.5 parent: 31 - type: Transform - uid: 2874 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -27.5,-8.5 parent: 31 - type: Transform - uid: 3780 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-27.5 parent: 31 - type: Transform - uid: 3793 components: - - pos: -19.5,-18.5 + - type: Transform + pos: -19.5,-18.5 parent: 31 - type: Transform - uid: 3883 components: - - pos: 3.5,28.5 + - type: Transform + pos: 3.5,28.5 parent: 31 - type: Transform - uid: 4056 components: - - pos: -10.5,-18.5 + - type: Transform + pos: -10.5,-18.5 parent: 31 - type: Transform - uid: 4090 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,-18.5 parent: 31 - type: Transform - uid: 4206 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -32.5,-14.5 parent: 31 - type: Transform - uid: 4703 components: - - pos: -30.5,-14.5 + - type: Transform + pos: -30.5,-14.5 parent: 31 - type: Transform - uid: 4790 components: - - pos: 6.5,-27.5 + - type: Transform + pos: 6.5,-27.5 parent: 31 - type: Transform - uid: 5100 components: - - pos: 14.5,-0.5 + - type: Transform + pos: 14.5,-0.5 parent: 31 - type: Transform - uid: 5292 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -28.5,-16.5 parent: 31 - type: Transform - uid: 6586 components: - - pos: 33.5,-17.5 + - type: Transform + pos: 33.5,-17.5 parent: 31 - type: Transform - uid: 7420 components: - - pos: 18.5,-10.5 + - type: Transform + pos: 18.5,-10.5 parent: 31 - type: Transform - uid: 7430 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 29.5,3.5 parent: 31 - type: Transform - uid: 8445 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 31 - type: Transform - uid: 9338 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -34.5,3.5 parent: 31 - type: Transform - uid: 10147 components: - - pos: 49.5,-29.5 + - type: Transform + pos: 49.5,-29.5 parent: 31 - type: Transform - uid: 10149 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 47.5,-29.5 parent: 31 - type: Transform - uid: 10150 components: - - pos: 47.5,-28.5 + - type: Transform + pos: 47.5,-28.5 parent: 31 - type: Transform - uid: 10151 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 45.5,-28.5 parent: 31 - type: Transform - uid: 10152 components: - - pos: 45.5,-26.5 + - type: Transform + pos: 45.5,-26.5 parent: 31 - type: Transform - uid: 10153 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,-26.5 parent: 31 - type: Transform - uid: 10154 components: - - pos: 44.5,-25.5 + - type: Transform + pos: 44.5,-25.5 parent: 31 - type: Transform - uid: 10167 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 33.5,-25.5 parent: 31 - type: Transform - uid: 10188 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 19.5,-17.5 parent: 31 - type: Transform - uid: 10194 components: - - pos: 19.5,-11.5 + - type: Transform + pos: 19.5,-11.5 parent: 31 - type: Transform - uid: 10195 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,-11.5 parent: 31 - type: Transform - uid: 10206 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-10.5 parent: 31 - type: Transform - uid: 10284 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,5.5 parent: 31 - type: Transform - uid: 10295 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -35.5,15.5 parent: 31 - type: Transform - proto: DisposalJunction entities: - uid: 176 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -28.5,3.5 parent: 31 - type: Transform - uid: 177 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -22.5,3.5 parent: 31 - type: Transform - uid: 945 components: - - pos: -34.5,5.5 + - type: Transform + pos: -34.5,5.5 parent: 31 - type: Transform - uid: 2016 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-11.5 parent: 31 - type: Transform - uid: 2290 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-0.5 parent: 31 - type: Transform - uid: 2386 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 14.5,-10.5 parent: 31 - type: Transform - uid: 4038 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-18.5 parent: 31 - type: Transform - uid: 4149 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 31 - type: Transform - uid: 4806 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-25.5 parent: 31 - type: Transform - uid: 4828 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-18.5 parent: 31 - type: Transform - uid: 7265 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,4.5 parent: 31 - type: Transform - uid: 9587 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,4.5 parent: 31 - type: Transform - uid: 10297 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -30.5,-18.5 parent: 31 - type: Transform - proto: DisposalJunctionFlipped entities: - uid: 166 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 34.5,3.5 parent: 31 - type: Transform - uid: 170 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 31 - type: Transform - uid: 313 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,4.5 parent: 31 - type: Transform - uid: 352 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,3.5 parent: 31 - type: Transform - uid: 365 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,3.5 parent: 31 - type: Transform - uid: 1026 components: - - pos: 3.5,17.5 + - type: Transform + pos: 3.5,17.5 parent: 31 - type: Transform - uid: 3408 components: - - pos: -32.5,-8.5 + - type: Transform + pos: -32.5,-8.5 parent: 31 - type: Transform - uid: 3794 components: - - pos: -15.5,-25.5 + - type: Transform + pos: -15.5,-25.5 parent: 31 - type: Transform - proto: DisposalPipe entities: - uid: 56 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 23.5,4.5 parent: 31 - type: Transform - uid: 169 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 31 - type: Transform - uid: 171 components: - - pos: 3.5,7.5 + - type: Transform + pos: 3.5,7.5 parent: 31 - type: Transform - uid: 180 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 31 - type: Transform - uid: 181 components: - - pos: 3.5,9.5 + - type: Transform + pos: 3.5,9.5 parent: 31 - type: Transform - uid: 189 components: - - pos: -28.5,5.5 + - type: Transform + pos: -28.5,5.5 parent: 31 - type: Transform - uid: 190 components: - - pos: -28.5,6.5 + - type: Transform + pos: -28.5,6.5 parent: 31 - type: Transform - uid: 191 components: - - pos: -28.5,7.5 + - type: Transform + pos: -28.5,7.5 parent: 31 - type: Transform - uid: 192 components: - - pos: -28.5,8.5 + - type: Transform + pos: -28.5,8.5 parent: 31 - type: Transform - uid: 193 components: - - pos: -28.5,9.5 + - type: Transform + pos: -28.5,9.5 parent: 31 - type: Transform - uid: 212 components: - - pos: 24.5,5.5 + - type: Transform + pos: 24.5,5.5 parent: 31 - type: Transform - uid: 213 components: - - pos: 24.5,6.5 + - type: Transform + pos: 24.5,6.5 parent: 31 - type: Transform - uid: 214 components: - - pos: 24.5,7.5 + - type: Transform + pos: 24.5,7.5 parent: 31 - type: Transform - uid: 223 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 34.5,1.5 parent: 31 - type: Transform - uid: 224 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 34.5,0.5 parent: 31 - type: Transform - uid: 225 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 34.5,-0.5 parent: 31 - type: Transform - uid: 226 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 34.5,-1.5 parent: 31 - type: Transform - uid: 227 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 34.5,-2.5 parent: 31 - type: Transform - uid: 228 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 34.5,-3.5 parent: 31 - type: Transform - uid: 231 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 30.5,3.5 parent: 31 - type: Transform - uid: 232 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 36.5,3.5 parent: 31 - type: Transform - uid: 233 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 35.5,3.5 parent: 31 - type: Transform - uid: 234 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 34.5,2.5 parent: 31 - type: Transform - uid: 235 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 33.5,3.5 parent: 31 - type: Transform - uid: 236 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 32.5,3.5 parent: 31 - type: Transform - uid: 237 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 31.5,3.5 parent: 31 - type: Transform - uid: 239 components: - - pos: 37.5,4.5 + - type: Transform + pos: 37.5,4.5 parent: 31 - type: Transform - uid: 240 components: - - pos: 37.5,5.5 + - type: Transform + pos: 37.5,5.5 parent: 31 - type: Transform - uid: 243 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,28.5 parent: 31 - type: Transform - uid: 244 components: - - pos: 3.5,10.5 + - type: Transform + pos: 3.5,10.5 parent: 31 - type: Transform - uid: 246 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,3.5 parent: 31 - type: Transform - uid: 265 components: - - pos: 3.5,27.5 + - type: Transform + pos: 3.5,27.5 parent: 31 - type: Transform - uid: 266 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -23.5,-18.5 parent: 31 - type: Transform - uid: 270 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,28.5 parent: 31 - type: Transform - uid: 271 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,28.5 parent: 31 - type: Transform - uid: 272 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,28.5 parent: 31 - type: Transform - uid: 277 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,-8.5 parent: 31 - type: Transform - uid: 278 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,-7.5 parent: 31 - type: Transform - uid: 279 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,-6.5 parent: 31 - type: Transform - uid: 280 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,-5.5 parent: 31 - type: Transform - uid: 281 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,-4.5 parent: 31 - type: Transform - uid: 282 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,-3.5 parent: 31 - type: Transform - uid: 283 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,-2.5 parent: 31 - type: Transform - uid: 284 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,-1.5 parent: 31 - type: Transform - uid: 285 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,-0.5 parent: 31 - type: Transform - uid: 286 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,0.5 parent: 31 - type: Transform - uid: 287 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,1.5 parent: 31 - type: Transform - uid: 288 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,2.5 parent: 31 - type: Transform - uid: 289 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,-10.5 parent: 31 - type: Transform - uid: 291 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 5.5,-11.5 parent: 31 - type: Transform - uid: 292 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 6.5,-11.5 parent: 31 - type: Transform - uid: 293 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 7.5,-11.5 parent: 31 - type: Transform - uid: 294 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 8.5,-11.5 parent: 31 - type: Transform - uid: 295 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 4.5,-11.5 parent: 31 - type: Transform - uid: 296 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 9.5,-11.5 parent: 31 - type: Transform - uid: 301 components: - - pos: -5.5,7.5 + - type: Transform + pos: -5.5,7.5 parent: 31 - type: Transform - uid: 302 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 12.5,0.5 parent: 31 - type: Transform - uid: 304 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-0.5 parent: 31 - type: Transform - uid: 311 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,17.5 parent: 31 - type: Transform - uid: 314 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,4.5 parent: 31 - type: Transform - uid: 315 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 12.5,2.5 parent: 31 - type: Transform - uid: 316 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,4.5 parent: 31 - type: Transform - uid: 317 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 15.5,4.5 parent: 31 - type: Transform - uid: 318 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,4.5 parent: 31 - type: Transform - uid: 319 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,4.5 parent: 31 - type: Transform - uid: 320 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,4.5 parent: 31 - type: Transform - uid: 321 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,4.5 parent: 31 - type: Transform - uid: 322 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,4.5 parent: 31 - type: Transform - uid: 323 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,4.5 parent: 31 - type: Transform - uid: 324 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 22.5,4.5 parent: 31 - type: Transform - uid: 325 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 27.5,4.5 parent: 31 - type: Transform - uid: 326 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 26.5,4.5 parent: 31 - type: Transform - uid: 327 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 28.5,4.5 parent: 31 - type: Transform - uid: 330 components: - - pos: 3.5,6.5 + - type: Transform + pos: 3.5,6.5 parent: 31 - type: Transform - uid: 334 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 3.5,-9.5 parent: 31 - type: Transform - uid: 342 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,2.5 parent: 31 - type: Transform - uid: 344 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,-27.5 parent: 31 - type: Transform - uid: 348 components: - - pos: -22.5,4.5 + - type: Transform + pos: -22.5,4.5 parent: 31 - type: Transform - uid: 349 components: - - pos: -22.5,5.5 + - type: Transform + pos: -22.5,5.5 parent: 31 - type: Transform - uid: 353 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -6.5,3.5 parent: 31 - type: Transform - uid: 355 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -4.5,3.5 parent: 31 - type: Transform - uid: 356 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -3.5,3.5 parent: 31 - type: Transform - uid: 357 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -2.5,3.5 parent: 31 - type: Transform - uid: 358 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -1.5,3.5 parent: 31 - type: Transform - uid: 359 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -0.5,3.5 parent: 31 - type: Transform - uid: 361 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: 1.5,3.5 parent: 31 - type: Transform - uid: 362 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -8.5,3.5 parent: 31 - type: Transform - uid: 363 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -9.5,3.5 parent: 31 - type: Transform - uid: 364 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -10.5,3.5 parent: 31 - type: Transform - uid: 367 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -13.5,3.5 parent: 31 - type: Transform - uid: 368 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -14.5,3.5 parent: 31 - type: Transform - uid: 369 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -15.5,3.5 parent: 31 - type: Transform - uid: 370 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -16.5,3.5 parent: 31 - type: Transform - uid: 371 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -17.5,3.5 parent: 31 - type: Transform - uid: 372 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -18.5,3.5 parent: 31 - type: Transform - uid: 373 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -19.5,3.5 parent: 31 - type: Transform - uid: 374 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -20.5,3.5 parent: 31 - type: Transform - uid: 375 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -21.5,3.5 parent: 31 - type: Transform - uid: 377 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -23.5,3.5 parent: 31 - type: Transform - uid: 378 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -24.5,3.5 parent: 31 - type: Transform - uid: 379 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -25.5,3.5 parent: 31 - type: Transform - uid: 380 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -26.5,3.5 parent: 31 - type: Transform - uid: 381 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -27.5,3.5 parent: 31 - type: Transform - uid: 382 components: - - pos: -28.5,4.5 + - type: Transform + pos: -28.5,4.5 parent: 31 - type: Transform - uid: 383 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -29.5,3.5 parent: 31 - type: Transform - uid: 384 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -30.5,3.5 parent: 31 - type: Transform - uid: 385 components: - - rot: 4.71238902409608 rad + - type: Transform + rot: 4.71238902409608 rad pos: -31.5,3.5 parent: 31 - type: Transform - uid: 386 components: - - pos: -32.5,2.5 + - type: Transform + pos: -32.5,2.5 parent: 31 - type: Transform - uid: 387 components: - - pos: -32.5,1.5 + - type: Transform + pos: -32.5,1.5 parent: 31 - type: Transform - uid: 388 components: - - pos: -32.5,0.5 + - type: Transform + pos: -32.5,0.5 parent: 31 - type: Transform - uid: 389 components: - - pos: -32.5,-0.5 + - type: Transform + pos: -32.5,-0.5 parent: 31 - type: Transform - uid: 390 components: - - pos: -32.5,-1.5 + - type: Transform + pos: -32.5,-1.5 parent: 31 - type: Transform - uid: 391 components: - - pos: -32.5,-2.5 + - type: Transform + pos: -32.5,-2.5 parent: 31 - type: Transform - uid: 392 components: - - pos: -32.5,-3.5 + - type: Transform + pos: -32.5,-3.5 parent: 31 - type: Transform - uid: 393 components: - - pos: -32.5,-4.5 + - type: Transform + pos: -32.5,-4.5 parent: 31 - type: Transform - uid: 394 components: - - pos: -32.5,-5.5 + - type: Transform + pos: -32.5,-5.5 parent: 31 - type: Transform - uid: 395 components: - - pos: -32.5,-6.5 + - type: Transform + pos: -32.5,-6.5 parent: 31 - type: Transform - uid: 396 components: - - pos: -32.5,-7.5 + - type: Transform + pos: -32.5,-7.5 parent: 31 - type: Transform - uid: 405 components: - - pos: -15.5,-23.5 + - type: Transform + pos: -15.5,-23.5 parent: 31 - type: Transform - uid: 406 components: - - pos: -15.5,-24.5 + - type: Transform + pos: -15.5,-24.5 parent: 31 - type: Transform - uid: 414 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,-25.5 parent: 31 - type: Transform - uid: 624 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-10.5 parent: 31 - type: Transform - uid: 758 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 15.5,-10.5 parent: 31 - type: Transform - uid: 788 components: - - pos: -14.5,-17.5 + - type: Transform + pos: -14.5,-17.5 parent: 31 - type: Transform - uid: 846 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -16.5,-27.5 parent: 31 - type: Transform - uid: 847 components: - - pos: -15.5,-26.5 + - type: Transform + pos: -15.5,-26.5 parent: 31 - type: Transform - uid: 851 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-23.5 parent: 31 - type: Transform - uid: 872 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-24.5 parent: 31 - type: Transform - uid: 921 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,3.5 parent: 31 - type: Transform - uid: 946 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-25.5 parent: 31 - type: Transform - uid: 947 components: - - pos: -15.5,-21.5 + - type: Transform + pos: -15.5,-21.5 parent: 31 - type: Transform - uid: 1031 components: - - pos: -15.5,-22.5 + - type: Transform + pos: -15.5,-22.5 parent: 31 - type: Transform - uid: 1062 components: - - pos: 7.5,5.5 + - type: Transform + pos: 7.5,5.5 parent: 31 - type: Transform - uid: 1101 components: - - pos: 7.5,6.5 + - type: Transform + pos: 7.5,6.5 parent: 31 - type: Transform - uid: 1221 components: - - pos: 7.5,7.5 + - type: Transform + pos: 7.5,7.5 parent: 31 - type: Transform - uid: 1362 components: - - pos: 7.5,8.5 + - type: Transform + pos: 7.5,8.5 parent: 31 - type: Transform - uid: 1375 components: - - pos: 7.5,10.5 + - type: Transform + pos: 7.5,10.5 parent: 31 - type: Transform - uid: 1493 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,-18.5 parent: 31 - type: Transform - uid: 1684 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-26.5 parent: 31 - type: Transform - uid: 1701 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -18.5,-27.5 parent: 31 - type: Transform - uid: 2014 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 31 - type: Transform - uid: 2015 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-12.5 parent: 31 - type: Transform - uid: 2141 components: - - pos: -8.5,-27.5 + - type: Transform + pos: -8.5,-27.5 parent: 31 - type: Transform - uid: 2143 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,17.5 parent: 31 - type: Transform - uid: 2160 components: - - pos: 3.5,21.5 + - type: Transform + pos: 3.5,21.5 parent: 31 - type: Transform - uid: 2190 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -25.5,-18.5 parent: 31 - type: Transform - uid: 2260 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -24.5,-18.5 parent: 31 - type: Transform - uid: 2296 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-16.5 parent: 31 - type: Transform - uid: 2305 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,12.5 parent: 31 - type: Transform - uid: 2306 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,12.5 parent: 31 - type: Transform - uid: 2308 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,12.5 parent: 31 - type: Transform - uid: 2314 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-16.5 parent: 31 - type: Transform - uid: 2337 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-16.5 parent: 31 - type: Transform - uid: 2385 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-9.5 parent: 31 - type: Transform - uid: 2390 components: - - pos: -10.5,-19.5 + - type: Transform + pos: -10.5,-19.5 parent: 31 - type: Transform - uid: 2456 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-16.5 parent: 31 - type: Transform - uid: 2527 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,17.5 parent: 31 - type: Transform - uid: 2843 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-20.5 parent: 31 - type: Transform - uid: 2845 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -20.5,-18.5 parent: 31 - type: Transform - uid: 2846 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-19.5 parent: 31 - type: Transform - uid: 2847 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-21.5 parent: 31 - type: Transform - uid: 2848 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -21.5,-18.5 parent: 31 - type: Transform - uid: 2849 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -22.5,-18.5 parent: 31 - type: Transform - uid: 2855 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -26.5,-18.5 parent: 31 - type: Transform - uid: 2857 components: - - pos: -8.5,-26.5 + - type: Transform + pos: -8.5,-26.5 parent: 31 - type: Transform - uid: 2858 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-24.5 parent: 31 - type: Transform - uid: 2859 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-23.5 parent: 31 - type: Transform - uid: 2861 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-22.5 parent: 31 - type: Transform - uid: 2862 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -26.5,-16.5 parent: 31 - type: Transform - uid: 2863 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -29.5,-8.5 parent: 31 - type: Transform - uid: 2864 components: - - pos: -8.5,-30.5 + - type: Transform + pos: -8.5,-30.5 parent: 31 - type: Transform - uid: 3354 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -33.5,-10.5 parent: 31 - type: Transform - uid: 3377 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 25.5,4.5 parent: 31 - type: Transform - uid: 3381 components: - - pos: -8.5,-29.5 + - type: Transform + pos: -8.5,-29.5 parent: 31 - type: Transform - uid: 3382 components: - - pos: -8.5,-28.5 + - type: Transform + pos: -8.5,-28.5 parent: 31 - type: Transform - uid: 3383 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,-25.5 parent: 31 - type: Transform - uid: 3593 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -30.5,-8.5 parent: 31 - type: Transform - uid: 3596 components: - - pos: -32.5,-10.5 + - type: Transform + pos: -32.5,-10.5 parent: 31 - type: Transform - uid: 3731 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -27.5,-16.5 parent: 31 - type: Transform - uid: 3741 components: - - pos: -32.5,-13.5 + - type: Transform + pos: -32.5,-13.5 parent: 31 - type: Transform - uid: 3745 components: - - pos: -8.5,-31.5 + - type: Transform + pos: -8.5,-31.5 parent: 31 - type: Transform - uid: 3747 components: - - pos: -32.5,-12.5 + - type: Transform + pos: -32.5,-12.5 parent: 31 - type: Transform - uid: 3748 components: - - pos: -32.5,-11.5 + - type: Transform + pos: -32.5,-11.5 parent: 31 - type: Transform - uid: 3868 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,17.5 parent: 31 - type: Transform - uid: 3876 components: - - pos: -28.5,-17.5 + - type: Transform + pos: -28.5,-17.5 parent: 31 - type: Transform - uid: 3877 components: - - pos: 3.5,20.5 + - type: Transform + pos: 3.5,20.5 parent: 31 - type: Transform - uid: 3939 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,28.5 parent: 31 - type: Transform - uid: 4036 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-16.5 parent: 31 - type: Transform - uid: 4118 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 31 - type: Transform - uid: 4158 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-16.5 parent: 31 - type: Transform - uid: 4183 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,-16.5 parent: 31 - type: Transform - uid: 4199 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-16.5 parent: 31 - type: Transform - uid: 4211 components: - - pos: -5.5,9.5 + - type: Transform + pos: -5.5,9.5 parent: 31 - type: Transform - uid: 4325 components: - - pos: 12.5,1.5 + - type: Transform + pos: 12.5,1.5 parent: 31 - type: Transform - uid: 4329 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-16.5 parent: 31 - type: Transform - uid: 4664 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -27.5,-18.5 parent: 31 - type: Transform - uid: 4728 components: - - pos: 3.5,-21.5 + - type: Transform + pos: 3.5,-21.5 parent: 31 - type: Transform - uid: 4739 components: - - pos: 3.5,-20.5 + - type: Transform + pos: 3.5,-20.5 parent: 31 - type: Transform - uid: 4747 components: - - pos: 3.5,-24.5 + - type: Transform + pos: 3.5,-24.5 parent: 31 - type: Transform - uid: 4748 components: - - pos: 3.5,-23.5 + - type: Transform + pos: 3.5,-23.5 parent: 31 - type: Transform - uid: 4749 components: - - pos: 3.5,-22.5 + - type: Transform + pos: 3.5,-22.5 parent: 31 - type: Transform - uid: 4792 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-28.5 parent: 31 - type: Transform - uid: 4793 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-29.5 parent: 31 - type: Transform - uid: 4798 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-27.5 parent: 31 - type: Transform - uid: 4799 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 31 - type: Transform - uid: 4800 components: - - pos: 3.5,-16.5 + - type: Transform + pos: 3.5,-16.5 parent: 31 - type: Transform - uid: 4801 components: - - pos: 3.5,-14.5 + - type: Transform + pos: 3.5,-14.5 parent: 31 - type: Transform - uid: 4802 components: - - pos: 3.5,-15.5 + - type: Transform + pos: 3.5,-15.5 parent: 31 - type: Transform - uid: 4803 components: - - pos: 3.5,-18.5 + - type: Transform + pos: 3.5,-18.5 parent: 31 - type: Transform - uid: 4804 components: - - pos: 3.5,-17.5 + - type: Transform + pos: 3.5,-17.5 parent: 31 - type: Transform - uid: 4805 components: - - pos: 3.5,-19.5 + - type: Transform + pos: 3.5,-19.5 parent: 31 - type: Transform - uid: 4811 components: - - pos: 3.5,-26.5 + - type: Transform + pos: 3.5,-26.5 parent: 31 - type: Transform - uid: 4812 components: - - pos: 3.5,-25.5 + - type: Transform + pos: 3.5,-25.5 parent: 31 - type: Transform - uid: 4878 components: - - pos: -5.5,8.5 + - type: Transform + pos: -5.5,8.5 parent: 31 - type: Transform - uid: 4969 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-21.5 parent: 31 - type: Transform - uid: 5085 components: - - pos: -5.5,11.5 + - type: Transform + pos: -5.5,11.5 parent: 31 - type: Transform - uid: 5099 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-1.5 parent: 31 - type: Transform - uid: 5144 components: - - pos: -5.5,10.5 + - type: Transform + pos: -5.5,10.5 parent: 31 - type: Transform - uid: 5191 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-25.5 parent: 31 - type: Transform - uid: 5232 components: - - pos: -5.5,6.5 + - type: Transform + pos: -5.5,6.5 parent: 31 - type: Transform - uid: 5234 components: - - pos: -5.5,4.5 + - type: Transform + pos: -5.5,4.5 parent: 31 - type: Transform - uid: 5235 components: - - pos: -5.5,5.5 + - type: Transform + pos: -5.5,5.5 parent: 31 - type: Transform - uid: 5250 components: - - pos: -32.5,-9.5 + - type: Transform + pos: -32.5,-9.5 parent: 31 - type: Transform - uid: 5291 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-8.5 parent: 31 - type: Transform - uid: 5758 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-22.5 parent: 31 - type: Transform - uid: 7380 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-20.5 parent: 31 - type: Transform - uid: 7381 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-25.5 parent: 31 - type: Transform - uid: 7421 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,-10.5 parent: 31 - type: Transform - uid: 7427 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-25.5 parent: 31 - type: Transform - uid: 7451 components: - - pos: 7.5,9.5 + - type: Transform + pos: 7.5,9.5 parent: 31 - type: Transform - uid: 7452 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 31 - type: Transform - uid: 7962 components: - - pos: 29.5,5.5 + - type: Transform + pos: 29.5,5.5 parent: 31 - type: Transform - uid: 8171 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-2.5 parent: 31 - type: Transform - uid: 8442 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 31 - type: Transform - uid: 8446 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,2.5 parent: 31 - type: Transform - uid: 9171 components: - - pos: -4.5,6.5 + - type: Transform + pos: -4.5,6.5 parent: 31 - type: Transform - uid: 9221 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,9.5 parent: 31 - type: Transform - uid: 9229 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 31 - type: Transform - uid: 9230 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,13.5 parent: 31 - type: Transform - uid: 9324 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,16.5 parent: 31 - type: Transform - uid: 9340 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -33.5,3.5 parent: 31 - type: Transform - uid: 9341 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -34.5,4.5 parent: 31 - type: Transform - uid: 9378 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,15.5 parent: 31 - type: Transform - uid: 9513 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,14.5 parent: 31 - type: Transform - uid: 9520 components: - - pos: 3.5,22.5 + - type: Transform + pos: 3.5,22.5 parent: 31 - type: Transform - uid: 9521 components: - - pos: 3.5,23.5 + - type: Transform + pos: 3.5,23.5 parent: 31 - type: Transform - uid: 9522 components: - - pos: 3.5,24.5 + - type: Transform + pos: 3.5,24.5 parent: 31 - type: Transform - uid: 9523 components: - - pos: 3.5,25.5 + - type: Transform + pos: 3.5,25.5 parent: 31 - type: Transform - uid: 9524 components: - - pos: 3.5,26.5 + - type: Transform + pos: 3.5,26.5 parent: 31 - type: Transform - uid: 9544 components: - - pos: 10.5,-6.5 + - type: Transform + pos: 10.5,-6.5 parent: 31 - type: Transform - uid: 9559 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,4.5 parent: 31 - type: Transform - uid: 9588 components: - - pos: 12.5,3.5 + - type: Transform + pos: 12.5,3.5 parent: 31 - type: Transform - uid: 9599 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,4.5 parent: 31 - type: Transform - uid: 9633 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,10.5 parent: 31 - type: Transform - uid: 9638 components: - - pos: 13.5,8.5 + - type: Transform + pos: 13.5,8.5 parent: 31 - type: Transform - uid: 9649 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,4.5 parent: 31 - type: Transform - uid: 9650 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,4.5 parent: 31 - type: Transform - uid: 9651 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,4.5 parent: 31 - type: Transform - uid: 9652 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,4.5 parent: 31 - type: Transform - uid: 9653 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,4.5 parent: 31 - type: Transform - uid: 9655 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,4.5 parent: 31 - type: Transform - uid: 9847 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,18.5 parent: 31 - type: Transform - uid: 9849 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,19.5 parent: 31 - type: Transform - uid: 10148 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 48.5,-29.5 parent: 31 - type: Transform - uid: 10155 components: - - pos: 45.5,-27.5 + - type: Transform + pos: 45.5,-27.5 parent: 31 - type: Transform - uid: 10156 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 46.5,-28.5 parent: 31 - type: Transform - uid: 10157 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 43.5,-25.5 parent: 31 - type: Transform - uid: 10158 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 42.5,-25.5 parent: 31 - type: Transform - uid: 10159 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 41.5,-25.5 parent: 31 - type: Transform - uid: 10160 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 40.5,-25.5 parent: 31 - type: Transform - uid: 10161 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 39.5,-25.5 parent: 31 - type: Transform - uid: 10162 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 38.5,-25.5 parent: 31 - type: Transform - uid: 10163 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 37.5,-25.5 parent: 31 - type: Transform - uid: 10164 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 36.5,-25.5 parent: 31 - type: Transform - uid: 10165 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 35.5,-25.5 parent: 31 - type: Transform - uid: 10166 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 34.5,-25.5 parent: 31 - type: Transform - uid: 10168 components: - - pos: 33.5,-24.5 + - type: Transform + pos: 33.5,-24.5 parent: 31 - type: Transform - uid: 10169 components: - - pos: 33.5,-23.5 + - type: Transform + pos: 33.5,-23.5 parent: 31 - type: Transform - uid: 10170 components: - - pos: 33.5,-22.5 + - type: Transform + pos: 33.5,-22.5 parent: 31 - type: Transform - uid: 10171 components: - - pos: 33.5,-21.5 + - type: Transform + pos: 33.5,-21.5 parent: 31 - type: Transform - uid: 10172 components: - - pos: 33.5,-20.5 + - type: Transform + pos: 33.5,-20.5 parent: 31 - type: Transform - uid: 10173 components: - - pos: 33.5,-19.5 + - type: Transform + pos: 33.5,-19.5 parent: 31 - type: Transform - uid: 10174 components: - - pos: 33.5,-18.5 + - type: Transform + pos: 33.5,-18.5 parent: 31 - type: Transform - uid: 10175 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 32.5,-17.5 parent: 31 - type: Transform - uid: 10176 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 31.5,-17.5 parent: 31 - type: Transform - uid: 10177 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 30.5,-17.5 parent: 31 - type: Transform - uid: 10178 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,-17.5 parent: 31 - type: Transform - uid: 10179 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 31 - type: Transform - uid: 10180 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 27.5,-17.5 parent: 31 - type: Transform - uid: 10181 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 26.5,-17.5 parent: 31 - type: Transform - uid: 10182 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 25.5,-17.5 parent: 31 - type: Transform - uid: 10183 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,-17.5 parent: 31 - type: Transform - uid: 10184 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,-17.5 parent: 31 - type: Transform - uid: 10185 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 22.5,-17.5 parent: 31 - type: Transform - uid: 10186 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.5,-17.5 parent: 31 - type: Transform - uid: 10187 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,-17.5 parent: 31 - type: Transform - uid: 10189 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 19.5,-16.5 parent: 31 - type: Transform - uid: 10190 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 19.5,-15.5 parent: 31 - type: Transform - uid: 10191 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 19.5,-14.5 parent: 31 - type: Transform - uid: 10192 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 19.5,-13.5 parent: 31 - type: Transform - uid: 10193 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 19.5,-12.5 parent: 31 - type: Transform - uid: 10203 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-10.5 parent: 31 - type: Transform - uid: 10204 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-10.5 parent: 31 - type: Transform - uid: 10205 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,-10.5 parent: 31 - type: Transform - uid: 10280 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -31.5,-14.5 parent: 31 - type: Transform - uid: 10281 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -30.5,-15.5 parent: 31 - type: Transform - uid: 10282 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -30.5,-16.5 parent: 31 - type: Transform - uid: 10283 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -30.5,-17.5 parent: 31 - type: Transform - uid: 10285 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,6.5 parent: 31 - type: Transform - uid: 10286 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,7.5 parent: 31 - type: Transform - uid: 10287 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,8.5 parent: 31 - type: Transform - uid: 10288 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,9.5 parent: 31 - type: Transform - uid: 10289 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 31 - type: Transform - uid: 10290 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,11.5 parent: 31 - type: Transform - uid: 10291 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 31 - type: Transform - uid: 10292 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,13.5 parent: 31 - type: Transform - uid: 10293 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,14.5 parent: 31 - type: Transform - uid: 10298 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -29.5,-18.5 parent: 31 - type: Transform - uid: 10444 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-1.5 parent: 31 - type: Transform - uid: 11254 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -31.5,-8.5 parent: 31 - type: Transform - proto: DisposalTrunk entities: - uid: 178 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,1.5 parent: 31 - type: Transform - uid: 215 components: - - pos: 24.5,8.5 + - type: Transform + pos: 24.5,8.5 parent: 31 - type: Transform - uid: 229 components: - - rot: 3.141592697301183 rad + - type: Transform + rot: 3.141592697301183 rad pos: 34.5,-4.5 parent: 31 - type: Transform - uid: 241 components: - - pos: 37.5,6.5 + - type: Transform + pos: 37.5,6.5 parent: 31 - type: Transform - uid: 273 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,28.5 parent: 31 - type: Transform - uid: 350 components: - - pos: -22.5,6.5 + - type: Transform + pos: -22.5,6.5 parent: 31 - type: Transform - uid: 837 components: - - pos: -29.5,11.5 + - type: Transform + pos: -29.5,11.5 parent: 31 - type: Transform - uid: 1474 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,11.5 parent: 31 - type: Transform - uid: 2313 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,-32.5 parent: 31 - type: Transform - uid: 2322 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,12.5 parent: 31 - type: Transform - uid: 2334 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-19.5 parent: 31 - type: Transform - uid: 2437 components: - - pos: -27.5,-7.5 + - type: Transform + pos: -27.5,-7.5 parent: 31 - type: Transform - uid: 2531 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-17.5 parent: 31 - type: Transform - uid: 4795 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-30.5 parent: 31 - type: Transform - uid: 5097 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-2.5 parent: 31 - type: Transform - uid: 5223 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,16.5 parent: 31 - type: Transform - uid: 5671 components: - - pos: 14.5,-8.5 + - type: Transform + pos: 14.5,-8.5 parent: 31 - type: Transform - uid: 7120 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-20.5 parent: 31 - type: Transform - uid: 7961 components: - - pos: 29.5,6.5 + - type: Transform + pos: 29.5,6.5 parent: 31 - type: Transform - uid: 7987 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-3.5 parent: 31 - type: Transform - uid: 8444 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,1.5 parent: 31 - type: Transform - uid: 9339 components: - - pos: -34.5,6.5 + - type: Transform + pos: -34.5,6.5 parent: 31 - type: Transform - uid: 10020 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -31.5,-18.5 parent: 31 - type: Transform - uid: 10146 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 49.5,-30.5 parent: 31 - type: Transform - uid: 10294 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 31 - type: Transform - uid: 10300 components: - - pos: -25.5,-15.5 + - type: Transform + pos: -25.5,-15.5 parent: 31 - type: Transform - proto: DisposalUnit entities: - uid: 195 components: - - pos: -29.5,11.5 + - type: Transform + pos: -29.5,11.5 parent: 31 - type: Transform - uid: 210 components: - - pos: 6.5,11.5 + - type: Transform + pos: 6.5,11.5 parent: 31 - type: Transform - uid: 216 components: - - pos: 24.5,8.5 + - type: Transform + pos: 24.5,8.5 parent: 31 - type: Transform - uid: 230 components: - - pos: 34.5,-4.5 + - type: Transform + pos: 34.5,-4.5 parent: 31 - type: Transform - uid: 242 components: - - pos: 37.5,6.5 + - type: Transform + pos: 37.5,6.5 parent: 31 - type: Transform - uid: 274 components: - - pos: -2.5,28.5 + - type: Transform + pos: -2.5,28.5 parent: 31 - type: Transform - uid: 332 components: - - pos: 29.5,6.5 + - type: Transform + pos: 29.5,6.5 parent: 31 - type: Transform - uid: 366 components: - - pos: -11.5,1.5 + - type: Transform + pos: -11.5,1.5 parent: 31 - type: Transform - uid: 376 components: - - pos: -22.5,6.5 + - type: Transform + pos: -22.5,6.5 parent: 31 - type: Transform - uid: 1102 components: - - pos: 14.5,-2.5 + - type: Transform + pos: 14.5,-2.5 parent: 31 - type: Transform - uid: 2266 components: - - pos: -12.5,-19.5 + - type: Transform + pos: -12.5,-19.5 parent: 31 - type: Transform - uid: 2520 components: - - pos: 14.5,-8.5 + - type: Transform + pos: 14.5,-8.5 parent: 31 - type: Transform - uid: 3726 components: - - pos: -25.5,-15.5 + - type: Transform + pos: -25.5,-15.5 parent: 31 - type: Transform - uid: 4078 components: - - pos: -27.5,-7.5 + - type: Transform + pos: -27.5,-7.5 parent: 31 - type: Transform - uid: 4368 components: - - pos: -9.5,12.5 + - type: Transform + pos: -9.5,12.5 parent: 31 - type: Transform - uid: 4772 components: - - pos: 6.5,-30.5 + - type: Transform + pos: 6.5,-30.5 parent: 31 - type: Transform - uid: 5226 components: - - pos: 8.5,16.5 + - type: Transform + pos: 8.5,16.5 parent: 31 - type: Transform - uid: 7587 components: - - pos: -14.5,-20.5 + - type: Transform + pos: -14.5,-20.5 parent: 31 - type: Transform - uid: 8130 components: - - pos: -4.5,-17.5 + - type: Transform + pos: -4.5,-17.5 parent: 31 - type: Transform - uid: 8443 components: - - pos: -8.5,1.5 + - type: Transform + pos: -8.5,1.5 parent: 31 - type: Transform - uid: 9343 components: - - pos: -34.5,6.5 + - type: Transform + pos: -34.5,6.5 parent: 31 - type: Transform - uid: 9417 components: - - pos: -8.5,-32.5 + - type: Transform + pos: -8.5,-32.5 parent: 31 - type: Transform - uid: 10145 components: - - pos: 49.5,-30.5 + - type: Transform + pos: 49.5,-30.5 parent: 31 - type: Transform - uid: 10296 components: - - pos: -34.5,15.5 + - type: Transform + pos: -34.5,15.5 parent: 31 - type: Transform - uid: 10475 components: - - pos: 12.5,-3.5 + - type: Transform + pos: 12.5,-3.5 parent: 31 - type: Transform - proto: DisposalYJunction entities: - uid: 6931 components: - - pos: -32.5,3.5 + - type: Transform + pos: -32.5,3.5 parent: 31 - type: Transform - uid: 7429 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,4.5 parent: 31 - type: Transform - uid: 9558 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,3.5 parent: 31 - type: Transform - proto: DogBed entities: - uid: 1244 components: - - pos: 10.5,20.5 + - type: Transform + pos: 10.5,20.5 parent: 31 - type: Transform - uid: 4735 components: - - pos: 21.5,-9.5 + - type: Transform + pos: 21.5,-9.5 parent: 31 - type: Transform - uid: 6966 components: - - pos: 28.5,8.5 + - type: Transform + pos: 28.5,8.5 parent: 31 - type: Transform - uid: 8419 components: - - pos: 8.5,26.5 + - type: Transform + pos: 8.5,26.5 parent: 31 - type: Transform - proto: DonkpocketBoxSpawner entities: - uid: 8044 components: - - pos: 18.5,-24.5 + - type: Transform + pos: 18.5,-24.5 parent: 31 - type: Transform - proto: DoorElectronics entities: - uid: 4269 components: - - pos: 29.27434,-1.3043437 + - type: Transform + pos: 29.27434,-1.3043437 parent: 31 - type: Transform - uid: 4284 components: - - pos: 29.614664,-1.306627 + - type: Transform + pos: 29.614664,-1.306627 parent: 31 - type: Transform - proto: Dresser entities: - uid: 9049 components: - - pos: 7.5,16.5 + - type: Transform + pos: 7.5,16.5 parent: 31 - type: Transform - proto: DresserCaptainFilled entities: - uid: 11383 components: - - pos: 11.5,23.5 + - type: Transform + pos: 11.5,23.5 parent: 31 - type: Transform - proto: DresserChiefEngineerFilled entities: - uid: 6968 components: - - pos: 41.5,-0.5 + - type: Transform + pos: 41.5,-0.5 parent: 31 - type: Transform - proto: DresserChiefMedicalOfficerFilled entities: - uid: 11386 components: - - pos: 24.5,-11.5 + - type: Transform + pos: 24.5,-11.5 parent: 31 - type: Transform - proto: DresserHeadOfPersonnelFilled entities: - uid: 11384 components: - - pos: 9.5,16.5 + - type: Transform + pos: 9.5,16.5 parent: 31 - type: Transform - proto: DresserHeadOfSecurityFilled entities: - uid: 11382 components: - - pos: -8.5,22.5 + - type: Transform + pos: -8.5,22.5 parent: 31 - type: Transform - proto: DresserQuarterMasterFilled entities: - uid: 4909 components: - - pos: 26.5,10.5 + - type: Transform + pos: 26.5,10.5 parent: 31 - type: Transform - proto: DresserResearchDirectorFilled entities: - uid: 5153 components: - - pos: -5.5,-19.5 + - type: Transform + pos: -5.5,-19.5 parent: 31 - type: Transform - proto: DrinkBottleRum entities: - uid: 10630 components: - - pos: 42.56693,-8.254273 + - type: Transform + pos: 42.56693,-8.254273 parent: 31 - type: Transform - proto: DrinkBottleVodka entities: - uid: 10588 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.293089,-12.048656 parent: 31 - type: Transform - uid: 10589 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.584726,-11.104703 parent: 31 - type: Transform - uid: 10590 components: - - pos: -14.761818,-11.281694 + - type: Transform + pos: -14.761818,-11.281694 parent: 31 - type: Transform - proto: DrinkDeadRumGlass entities: - uid: 10660 components: - - pos: 41.438732,-8.355759 + - type: Transform + pos: 41.438732,-8.355759 parent: 31 - type: Transform - proto: DrinkDetFlask entities: - uid: 7855 components: - - flags: InContainer - type: MetaData - - parent: 7853 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7853 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: DrinkDoctorsDelightGlass entities: - uid: 1110 components: - - pos: 22.757565,-9.802636 + - type: Transform + pos: 22.757565,-9.802636 + parent: 31 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 9626 + components: + - type: Transform + pos: -3.2734265,17.981327 parent: 31 - type: Transform - proto: DrinkGlass entities: - uid: 10625 components: - - pos: 40.353294,-10.29438 + - type: Transform + pos: 40.353294,-10.29438 parent: 31 - type: Transform - uid: 10626 components: - - pos: 40.382812,-10.471372 + - type: Transform + pos: 40.382812,-10.471372 parent: 31 - type: Transform - uid: 10627 components: - - pos: 40.530388,-10.353377 + - type: Transform + pos: 40.530388,-10.353377 parent: 31 - type: Transform - proto: DrinkGoldenCup entities: - uid: 535 components: - - pos: -3.053735,18.815365 - parent: 31 - type: Transform -- proto: DrinkGoldschlagerBottleFull - entities: - - uid: 9626 - components: - - pos: -3.2734265,17.981327 + - type: Transform + pos: -3.053735,18.815365 parent: 31 - type: Transform - proto: DrinkGreenTeaGlass entities: - uid: 10662 components: - - pos: 42.91449,-8.318105 + - type: Transform + pos: 42.91449,-8.318105 parent: 31 - type: Transform - proto: DrinkHotCoco entities: - uid: 2173 components: - - pos: 7.752981,-13.56489 + - type: Transform + pos: 7.752981,-13.56489 parent: 31 - type: Transform - proto: DrinkHotCoffee entities: - uid: 10538 components: - - pos: -17.21707,-26.040907 + - type: Transform + pos: -17.21707,-26.040907 parent: 31 - type: Transform - uid: 10790 components: - - pos: 22.658688,13.036925 + - type: Transform + pos: 22.658688,13.036925 parent: 31 - type: Transform - proto: DrinkIceCreamGlass entities: - uid: 9364 components: - - pos: -22.677681,-23.474785 + - type: Transform + pos: -22.677681,-23.474785 parent: 31 - type: Transform - proto: DrinkIcedTeaCan entities: - uid: 10759 components: - - pos: -48.660885,-9.377042 + - type: Transform + pos: -48.660885,-9.377042 parent: 31 - type: Transform - proto: DrinkIcedTeaGlass entities: - uid: 9922 components: - - pos: -3.5586867,-1.3939255 + - type: Transform + pos: -3.5586867,-1.3939255 parent: 31 - type: Transform - proto: DrinkLemonJuice entities: - uid: 10820 components: - - pos: 45.26447,-20.914085 + - type: Transform + pos: 45.26447,-20.914085 parent: 31 - type: Transform - proto: DrinkMeadGlass entities: - uid: 2952 components: - - pos: -31.680155,17.680439 + - type: Transform + pos: -31.680155,17.680439 parent: 31 - type: Transform - proto: DrinkMilkCarton entities: - uid: 2283 components: - - pos: -11.776268,-3.7349403 + - type: Transform + pos: -11.776268,-3.7349403 parent: 31 - type: Transform - proto: DrinkMilkshake entities: - uid: 1589 components: - - pos: 60.502117,-8.214837 + - type: Transform + pos: 60.502117,-8.214837 parent: 31 - type: Transform - proto: DrinkMugMetal entities: - uid: 4205 components: - - pos: -10.86558,-31.534925 + - type: Transform + pos: -10.86558,-31.534925 parent: 31 - type: Transform - proto: DrinkMugRed entities: - uid: 674 components: - - pos: -4.1449943,14.039462 + - type: Transform + pos: -4.1449943,14.039462 parent: 31 - type: Transform - proto: DrinkRamen entities: - uid: 7848 components: - - pos: -13.225656,24.798891 + - type: Transform + pos: -13.225656,24.798891 parent: 31 - type: Transform - proto: DrinkRootBeerGlass entities: - uid: 7691 components: - - pos: 16.50716,16.62439 + - type: Transform + pos: 16.50716,16.62439 parent: 31 - type: Transform - proto: DrinkShaker entities: - uid: 10628 components: - - pos: 42.86208,-10.353377 + - type: Transform + pos: 42.86208,-10.353377 parent: 31 - type: Transform - proto: DrinkTequilaSunriseGlass entities: - uid: 10649 components: - - pos: 43.593338,-8.411646 + - type: Transform + pos: 43.593338,-8.411646 parent: 31 - type: Transform - proto: DrinkVodkaBottleFull entities: - uid: 1409 components: - - pos: -15.794847,-11.134202 + - type: Transform + pos: -15.794847,-11.134202 parent: 31 - type: Transform - uid: 10586 components: - - pos: -15.4701805,-10.721223 + - type: Transform + pos: -15.4701805,-10.721223 parent: 31 - type: Transform - proto: DrinkVodkaGlass entities: - uid: 10587 components: - - pos: -15.440666,-11.399689 + - type: Transform + pos: -15.440666,-11.399689 parent: 31 - type: Transform - proto: DrinkWaterBottleFull entities: - uid: 622 components: - - pos: -9.481841,-18.214483 + - type: Transform + pos: -9.481841,-18.214483 parent: 31 - type: Transform - uid: 2480 components: - - flags: InContainer - type: MetaData - - parent: 2363 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 2363 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 2481 components: - - flags: InContainer - type: MetaData - - parent: 2363 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 2363 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 3041 components: - - flags: InContainer - type: MetaData - - parent: 2363 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 2363 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 10794 components: - - pos: 45.32292,-20.249031 + - type: Transform + pos: 45.32292,-20.249031 parent: 31 - type: Transform - proto: DrinkWaterCup entities: - uid: 4089 components: - - pos: -9.776992,-18.538967 + - type: Transform + pos: -9.776992,-18.538967 parent: 31 - type: Transform - uid: 10795 components: - - pos: 45.647587,-20.367025 + - type: Transform + pos: 45.647587,-20.367025 parent: 31 - type: Transform - uid: 10796 components: - - pos: 45.529526,-20.544016 + - type: Transform + pos: 45.529526,-20.544016 parent: 31 - type: Transform - proto: DrinkWhiskeyBottleFull entities: - uid: 7459 components: - - pos: -23.675486,16.461733 + - type: Transform + pos: -23.675486,16.461733 parent: 31 - type: Transform - proto: DrinkWineGlass entities: - uid: 9803 components: - - pos: -15.868861,-39.21571 + - type: Transform + pos: -15.868861,-39.21571 parent: 31 - type: Transform - proto: ElectricGuitarInstrument entities: - uid: 9275 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -19.346447,-6.2505536 parent: 31 - type: Transform - proto: EmergencyLight entities: - uid: 309 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -40.5,5.5 parent: 31 - type: Transform - uid: 346 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 31 - type: Transform - uid: 585 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,-3.5 parent: 31 - type: Transform - - enabled: True - type: PointLight + - type: PointLight + enabled: True - type: ActiveEmergencyLight - uid: 1187 components: - - pos: 39.5,6.5 + - type: Transform + pos: 39.5,6.5 parent: 31 - type: Transform - - enabled: True - type: PointLight + - type: PointLight + enabled: True - type: ActiveEmergencyLight - uid: 1224 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,9.5 parent: 31 - type: Transform - - enabled: True - type: PointLight + - type: PointLight + enabled: True - type: ActiveEmergencyLight - uid: 1226 components: - - pos: -4.5,14.5 + - type: Transform + pos: -4.5,14.5 parent: 31 - type: Transform - - enabled: True - type: PointLight + - type: PointLight + enabled: True - type: ActiveEmergencyLight - uid: 1248 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,30.5 parent: 31 - type: Transform - - enabled: True - type: PointLight + - type: PointLight + enabled: True - type: ActiveEmergencyLight - uid: 1293 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,-3.5 parent: 31 - type: Transform - - enabled: True - type: PointLight + - type: PointLight + enabled: True - type: ActiveEmergencyLight - uid: 1299 components: - - pos: -39.5,10.5 + - type: Transform + pos: -39.5,10.5 parent: 31 - type: Transform - - enabled: True - type: PointLight + - type: PointLight + enabled: True - type: ActiveEmergencyLight - uid: 1345 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-3.5 parent: 31 - type: Transform - - enabled: True - type: PointLight + - type: PointLight + enabled: True - type: ActiveEmergencyLight - uid: 1512 components: - - pos: 23.5,13.5 + - type: Transform + pos: 23.5,13.5 parent: 31 - type: Transform - - enabled: True - type: PointLight + - type: PointLight + enabled: True - type: ActiveEmergencyLight - uid: 2080 components: - - pos: -23.5,11.5 + - type: Transform + pos: -23.5,11.5 parent: 31 - type: Transform - - enabled: True - type: PointLight + - type: PointLight + enabled: True - type: ActiveEmergencyLight - uid: 5354 components: - - pos: 23.5,5.5 + - type: Transform + pos: 23.5,5.5 parent: 31 - type: Transform - uid: 7249 components: - - pos: -14.5,5.5 + - type: Transform + pos: -14.5,5.5 parent: 31 - type: Transform - uid: 7254 components: - - pos: 3.5,32.5 + - type: Transform + pos: 3.5,32.5 parent: 31 - type: Transform - uid: 8839 components: - - pos: -4.5,1.5 + - type: Transform + pos: -4.5,1.5 parent: 31 - type: Transform - - enabled: True - type: PointLight + - type: PointLight + enabled: True - type: ActiveEmergencyLight - uid: 10310 components: - - pos: -9.5,-25.5 + - type: Transform + pos: -9.5,-25.5 parent: 31 - type: Transform - uid: 10311 components: - - pos: -6.5,-14.5 + - type: Transform + pos: -6.5,-14.5 parent: 31 - type: Transform - uid: 10312 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -21.5,-16.5 parent: 31 - type: Transform - proto: EmergencyMedipen entities: - uid: 7355 components: - - pos: -19.375961,-7.548489 + - type: Transform + pos: -19.375961,-7.548489 parent: 31 - type: Transform - uid: 10988 components: - - pos: 12.5220375,-4.6149173 + - type: Transform + pos: 12.5220375,-4.6149173 parent: 31 - type: Transform - proto: EmergencyRollerBed entities: - uid: 1202 components: - - pos: 19.443876,-7.543538 + - type: Transform + pos: 19.443876,-7.543538 parent: 31 - type: Transform - proto: Emitter entities: - uid: 4364 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 78.5,6.5 parent: 31 - type: Transform - uid: 4548 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,-1.5 parent: 31 - type: Transform - uid: 4556 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 78.5,-1.5 parent: 31 - type: Transform - uid: 4650 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 64.5,6.5 parent: 31 - type: Transform - uid: 9745 components: - - pos: 67.5,9.5 + - type: Transform + pos: 67.5,9.5 parent: 31 - type: Transform - uid: 10117 components: - - pos: 75.5,9.5 + - type: Transform + pos: 75.5,9.5 parent: 31 - type: Transform - uid: 10119 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 75.5,-4.5 parent: 31 - type: Transform - uid: 10120 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 67.5,-4.5 parent: 31 - type: Transform - proto: EncryptionKeyCargo entities: - uid: 9154 components: - - flags: InContainer - type: MetaData - - parent: 9096 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 9096 + - type: Physics + canCollide: False - proto: EncryptionKeyCommand entities: - uid: 3410 components: - - flags: InContainer - type: MetaData - - parent: 3371 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 3371 + - type: Physics + canCollide: False - proto: EncryptionKeyCommon entities: - uid: 9066 components: - - flags: InContainer - type: MetaData - - parent: 9065 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 9065 + - type: Physics + canCollide: False - uid: 10896 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 48.434895,-3.386529 parent: 31 - type: Transform - uid: 10897 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 48.611988,-3.445526 parent: 31 - type: Transform - proto: EncryptionKeyEngineering entities: - uid: 10233 components: - - flags: InContainer - type: MetaData - - parent: 10232 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 10232 + - type: Physics + canCollide: False - uid: 10898 components: - - pos: 48.936653,-5.4514256 + - type: Transform + pos: 48.936653,-5.4514256 parent: 31 - type: Transform - proto: EncryptionKeyMedical entities: - uid: 8122 components: - - flags: InContainer - type: MetaData - - parent: 8120 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 8120 + - type: Physics + canCollide: False - uid: 10894 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 55.474125,-11.511058 parent: 31 - type: Transform - proto: EncryptionKeyScience entities: - uid: 4604 components: - - flags: InContainer - type: MetaData - - parent: 4590 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 4590 + - type: Physics + canCollide: False - uid: 10895 components: - - pos: 56.448124,-11.363565 + - type: Transform + pos: 56.448124,-11.363565 parent: 31 - type: Transform - proto: EncryptionKeySecurity entities: - uid: 8164 components: - - flags: InContainer - type: MetaData - - parent: 8163 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 8163 + - type: Physics + canCollide: False - proto: EncryptionKeyService entities: - uid: 9188 components: - - flags: InContainer - type: MetaData - - parent: 9179 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 9179 + - type: Physics + canCollide: False - proto: ExosuitFabricator entities: - uid: 9537 components: - - pos: -0.5,-24.5 + - type: Transform + pos: -0.5,-24.5 parent: 31 - type: Transform - proto: ExplosivesSignMed entities: - uid: 8897 components: - - pos: -11.5,17.5 + - type: Transform + pos: -11.5,17.5 parent: 31 - type: Transform - proto: ExtendedEmergencyOxygenTank entities: - uid: 3730 components: - - pos: -11.445563,-27.496508 + - type: Transform + pos: -11.445563,-27.496508 parent: 31 - type: Transform - proto: ExtinguisherCabinet entities: - uid: 10537 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-31.5 parent: 31 - type: Transform - proto: ExtinguisherCabinetFilled entities: - uid: 517 components: - - pos: -10.5,12.5 + - type: Transform + pos: -10.5,12.5 parent: 31 - type: Transform - uid: 1868 components: - - pos: 5.5,23.5 + - type: Transform + pos: 5.5,23.5 parent: 31 - type: Transform - uid: 4807 components: - - pos: 14.5,-3.5 + - type: Transform + pos: 14.5,-3.5 parent: 31 - type: Transform - uid: 4895 components: - - pos: -34.5,-10.5 + - type: Transform + pos: -34.5,-10.5 parent: 31 - type: Transform - uid: 4899 components: - - pos: -30.5,10.5 + - type: Transform + pos: -30.5,10.5 parent: 31 - type: Transform - uid: 4900 components: - - pos: -34.5,-2.5 + - type: Transform + pos: -34.5,-2.5 parent: 31 - type: Transform - uid: 4901 components: - - pos: -16.5,-8.5 + - type: Transform + pos: -16.5,-8.5 parent: 31 - type: Transform - uid: 4908 components: - - pos: 32.5,-5.5 + - type: Transform + pos: 32.5,-5.5 parent: 31 - type: Transform - uid: 4913 components: - - pos: 17.5,8.5 + - type: Transform + pos: 17.5,8.5 parent: 31 - type: Transform - uid: 4914 components: - - pos: 9.5,12.5 + - type: Transform + pos: 9.5,12.5 parent: 31 - type: Transform - - opened: True - type: ItemCabinet + - type: ItemCabinet + opened: True - uid: 4916 components: - - pos: -6.5,18.5 + - type: Transform + pos: -6.5,18.5 parent: 31 - type: Transform - uid: 4917 components: - - pos: 0.5,16.5 + - type: Transform + pos: 0.5,16.5 parent: 31 - type: Transform - uid: 4918 components: - - pos: 11.5,17.5 + - type: Transform + pos: 11.5,17.5 parent: 31 - type: Transform - uid: 4923 components: - - pos: 11.5,-28.5 + - type: Transform + pos: 11.5,-28.5 parent: 31 - type: Transform - uid: 5305 components: - - pos: 17.5,-29.5 + - type: Transform + pos: 17.5,-29.5 parent: 31 - type: Transform - uid: 5306 components: - - pos: -24.5,23.5 + - type: Transform + pos: -24.5,23.5 parent: 31 - type: Transform - uid: 7435 components: - - pos: -12.5,-26.5 + - type: Transform + pos: -12.5,-26.5 parent: 31 - type: Transform - uid: 8894 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 51.5,4.5 parent: 31 - type: Transform - uid: 8905 components: - - pos: 5.5,29.5 + - type: Transform + pos: 5.5,29.5 parent: 31 - type: Transform - uid: 10889 components: - - pos: 55.5,-5.5 + - type: Transform + pos: 55.5,-5.5 parent: 31 - type: Transform - uid: 11387 components: - - pos: 42.5,-1.5 + - type: Transform + pos: 42.5,-1.5 parent: 31 - type: Transform - proto: FaxMachineBase entities: - uid: 683 components: - - pos: 14.5,-4.5 + - type: Transform + pos: 14.5,-4.5 parent: 31 - type: Transform - - destinationAddress: Medical + - type: FaxMachine + destinationAddress: Medical name: Medical - type: FaxMachine - uid: 1264 components: - - pos: 40.5,4.5 + - type: Transform + pos: 40.5,4.5 parent: 31 - type: Transform - - name: engineering - type: FaxMachine + - type: FaxMachine + name: engineering - uid: 2045 components: - - pos: -17.5,-25.5 + - type: Transform + pos: -17.5,-25.5 parent: 31 - type: Transform - - destinationAddress: Science + - type: FaxMachine + destinationAddress: Science name: Science - type: FaxMachine - uid: 8323 components: - - pos: 9.5,-28.5 + - type: Transform + pos: 9.5,-28.5 parent: 31 - type: Transform - - name: library - type: FaxMachine + - type: FaxMachine + name: library - uid: 8994 components: - - pos: 13.5,12.5 + - type: Transform + pos: 13.5,12.5 parent: 31 - type: Transform - - destinationAddress: Cargo + - type: FaxMachine + destinationAddress: Cargo name: Cargo - type: FaxMachine - uid: 9687 components: - - pos: 8.5,18.5 + - type: Transform + pos: 8.5,18.5 parent: 31 - type: Transform - - name: hop's office - type: FaxMachine + - type: FaxMachine + name: hop's office - uid: 10825 components: - - pos: 1.5,32.5 + - type: Transform + pos: 1.5,32.5 parent: 31 - type: Transform - - destinationAddress: bridge + - type: FaxMachine + destinationAddress: bridge name: bridge - type: FaxMachine - proto: FaxMachineCaptain entities: - uid: 9686 components: - - pos: 7.5,24.5 + - type: Transform + pos: 7.5,24.5 parent: 31 - type: Transform - - name: captain's office - type: FaxMachine + - type: FaxMachine + name: captain's office - proto: filingCabinetDrawerRandom entities: - uid: 4637 components: - - pos: -10.5,-30.5 + - type: Transform + pos: -10.5,-30.5 parent: 31 - type: Transform - uid: 8890 components: - - pos: 9.5,18.5 + - type: Transform + pos: 9.5,18.5 parent: 31 - type: Transform - proto: filingCabinetRandom entities: - uid: 4216 components: - - pos: 6.5,26.5 + - type: Transform + pos: 6.5,26.5 parent: 31 - type: Transform - uid: 5628 components: - - pos: 6.5,-5.5 + - type: Transform + pos: 6.5,-5.5 parent: 31 - type: Transform - uid: 7710 components: - - pos: 15.5,12.5 + - type: Transform + pos: 15.5,12.5 parent: 31 - type: Transform - uid: 8492 components: - - pos: -2.5,14.5 + - type: Transform + pos: -2.5,14.5 parent: 31 - type: Transform - proto: filingCabinetTallRandom entities: - uid: 1424 components: - - pos: -0.5,31.5 + - type: Transform + pos: -0.5,31.5 parent: 31 - type: Transform - proto: FireAlarm entities: - uid: 888 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-24.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 9732 - 9735 - 7344 - 2872 - 2891 - 7379 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9041 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,2.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 9972 - 9971 - 9970 - 995 - 179 - 337 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9985 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-14.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 9988 - 9989 - 9990 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9992 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,8.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 8954 - 8956 - 852 @@ -32868,16 +32911,16 @@ entities: - 1330 - 1167 - 7460 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9993 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -25.5,1.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 3928 - 3934 - 3935 @@ -32888,74 +32931,74 @@ entities: - 9970 - 9994 - 9995 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9997 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,1.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 3977 - 3976 - 3975 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10002 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,27.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 8816 - 8813 - 8810 - 8814 - 8815 - 9969 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10004 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,15.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 8885 - 8883 - 8884 - 5115 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10006 components: - - pos: 18.5,6.5 + - type: Transform + pos: 18.5,6.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 4028 - 4030 - 4026 - 8856 - 8858 - 8857 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10023 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-3.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 3943 - 3944 - 3959 @@ -32965,23985 +33008,24080 @@ entities: - 4525 - 4528 - 4529 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10243 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,-13.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 10313 - 10314 - 10315 - 10240 - 10241 - 10242 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10409 components: - - pos: -17.5,-13.5 + - type: Transform + pos: -17.5,-13.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 10313 - 10314 - 10315 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10410 components: - - pos: -1.5,-13.5 + - type: Transform + pos: -1.5,-13.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 10316 - 10317 - 10318 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 10419 components: - - pos: -11.5,-23.5 + - type: Transform + pos: -11.5,-23.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 3857 - 3866 - 3428 - 3724 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11003 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-3.5 parent: 31 - type: Transform - - devices: + - type: DeviceList + devices: - 3989 - 3987 - 3988 - 8940 - 673 - type: DeviceList - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: FireAxeCabinetFilled entities: - uid: 4031 components: - - pos: -1.5,32.5 + - type: Transform + pos: -1.5,32.5 parent: 31 - type: Transform - uid: 6579 components: - - pos: 42.5,14.5 + - type: Transform + pos: 42.5,14.5 parent: 31 - type: Transform - proto: FireExtinguisher entities: - uid: 1537 components: - - pos: 43.520054,13.493817 + - type: Transform + pos: 43.520054,13.493817 parent: 31 - type: Transform - proto: Firelock entities: - uid: 45 components: - - pos: -32.5,-12.5 + - type: Transform + pos: -32.5,-12.5 parent: 31 - type: Transform - uid: 179 components: - - pos: -10.5,4.5 + - type: Transform + pos: -10.5,4.5 parent: 31 - type: Transform - uid: 308 components: - - pos: -29.5,-18.5 + - type: Transform + pos: -29.5,-18.5 parent: 31 - type: Transform - uid: 328 components: - - pos: -22.5,14.5 + - type: Transform + pos: -22.5,14.5 parent: 31 - type: Transform - uid: 337 components: - - pos: -10.5,3.5 + - type: Transform + pos: -10.5,3.5 parent: 31 - type: Transform - uid: 409 components: - - pos: -6.5,-8.5 + - type: Transform + pos: -6.5,-8.5 parent: 31 - type: Transform - uid: 575 components: - - pos: 15.5,-3.5 + - type: Transform + pos: 15.5,-3.5 parent: 31 - type: Transform - uid: 576 components: - - pos: -7.5,2.5 + - type: Transform + pos: -7.5,2.5 parent: 31 - type: Transform - uid: 684 components: - - pos: 21.5,-22.5 + - type: Transform + pos: 21.5,-22.5 parent: 31 - type: Transform - uid: 995 components: - - pos: -10.5,5.5 + - type: Transform + pos: -10.5,5.5 parent: 31 - type: Transform - uid: 1015 components: - - pos: -22.5,13.5 + - type: Transform + pos: -22.5,13.5 parent: 31 - type: Transform - uid: 1167 components: - - pos: -5.5,2.5 + - type: Transform + pos: -5.5,2.5 parent: 31 - type: Transform - uid: 1330 components: - - pos: -6.5,2.5 + - type: Transform + pos: -6.5,2.5 parent: 31 - type: Transform - uid: 2180 components: - - pos: 22.5,-22.5 + - type: Transform + pos: 22.5,-22.5 parent: 31 - type: Transform - uid: 3413 components: - - pos: -20.5,-28.5 + - type: Transform + pos: -20.5,-28.5 parent: 31 - type: Transform - uid: 3855 components: - - pos: -19.5,17.5 + - type: Transform + pos: -19.5,17.5 parent: 31 - type: Transform - uid: 3962 components: - - pos: -6.5,-9.5 + - type: Transform + pos: -6.5,-9.5 parent: 31 - type: Transform - uid: 3968 components: - - pos: -32.5,-9.5 + - type: Transform + pos: -32.5,-9.5 parent: 31 - type: Transform - uid: 3971 components: - - pos: -6.5,-10.5 + - type: Transform + pos: -6.5,-10.5 parent: 31 - type: Transform - uid: 3982 components: - - pos: 13.5,-19.5 + - type: Transform + pos: 13.5,-19.5 parent: 31 - type: Transform - uid: 3984 components: - - pos: 13.5,-20.5 + - type: Transform + pos: 13.5,-20.5 parent: 31 - type: Transform - uid: 3992 components: - - pos: 37.5,-5.5 + - type: Transform + pos: 37.5,-5.5 parent: 31 - type: Transform - uid: 3996 components: - - pos: -33.5,-9.5 + - type: Transform + pos: -33.5,-9.5 parent: 31 - type: Transform - uid: 4002 components: - - pos: 25.5,-1.5 + - type: Transform + pos: 25.5,-1.5 parent: 31 - type: Transform - uid: 4003 components: - - pos: 25.5,-2.5 + - type: Transform + pos: 25.5,-2.5 parent: 31 - type: Transform - uid: 4010 components: - - pos: -1.5,6.5 + - type: Transform + pos: -1.5,6.5 parent: 31 - type: Transform - uid: 4015 components: - - pos: 38.5,-5.5 + - type: Transform + pos: 38.5,-5.5 parent: 31 - type: Transform - - secondsUntilStateChange: -5678.821 + - type: Door + secondsUntilStateChange: -6516.4194 state: Closing - type: Door - uid: 4019 components: - - pos: 11.5,14.5 + - type: Transform + pos: 11.5,14.5 parent: 31 - type: Transform - uid: 4041 components: - - pos: -10.5,24.5 + - type: Transform + pos: -10.5,24.5 parent: 31 - type: Transform - uid: 4042 components: - - pos: -10.5,25.5 + - type: Transform + pos: -10.5,25.5 parent: 31 - type: Transform - uid: 4044 components: - - pos: -18.5,17.5 + - type: Transform + pos: -18.5,17.5 parent: 31 - type: Transform - uid: 4833 components: - - pos: -19.5,-28.5 + - type: Transform + pos: -19.5,-28.5 parent: 31 - type: Transform - uid: 4975 components: - - pos: -22.5,21.5 + - type: Transform + pos: -22.5,21.5 parent: 31 - type: Transform - uid: 5034 components: - - pos: 26.5,-19.5 + - type: Transform + pos: 26.5,-19.5 parent: 31 - type: Transform - uid: 5035 components: - - pos: 23.5,-24.5 + - type: Transform + pos: 23.5,-24.5 parent: 31 - type: Transform - uid: 5104 components: - - pos: 13.5,-0.5 + - type: Transform + pos: 13.5,-0.5 parent: 31 - type: Transform - uid: 5115 components: - - pos: 6.5,20.5 + - type: Transform + pos: 6.5,20.5 parent: 31 - type: Transform - uid: 5217 components: - - pos: -27.5,16.5 + - type: Transform + pos: -27.5,16.5 parent: 31 - type: Transform - uid: 5312 components: - - pos: 15.5,-26.5 + - type: Transform + pos: 15.5,-26.5 parent: 31 - type: Transform - uid: 11101 components: - - pos: 27.5,-9.5 + - type: Transform + pos: 27.5,-9.5 parent: 31 - type: Transform - proto: FirelockEdge entities: - uid: 693 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,3.5 parent: 31 - type: Transform - uid: 4378 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 42.5,-25.5 parent: 31 - type: Transform - uid: 4480 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 60.5,1.5 parent: 31 - type: Transform - uid: 4481 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 60.5,2.5 parent: 31 - type: Transform - uid: 4482 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 60.5,3.5 parent: 31 - type: Transform - uid: 4603 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 60.5,0.5 parent: 31 - type: Transform - uid: 4610 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 60.5,4.5 parent: 31 - type: Transform - uid: 7040 components: - - pos: -18.5,3.5 + - type: Transform + pos: -18.5,3.5 parent: 31 - type: Transform - uid: 7041 components: - - pos: -19.5,3.5 + - type: Transform + pos: -19.5,3.5 parent: 31 - type: Transform - uid: 7042 components: - - pos: -16.5,3.5 + - type: Transform + pos: -16.5,3.5 parent: 31 - type: Transform - uid: 7051 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 42.5,-24.5 parent: 31 - type: Transform - uid: 7052 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 42.5,-23.5 parent: 31 - type: Transform - proto: FirelockElectronics entities: - uid: 13 components: - - pos: -29.687315,9.038336 + - type: Transform + pos: -29.687315,9.038336 parent: 31 - type: Transform - uid: 55 components: - - pos: -29.711033,9.429151 + - type: Transform + pos: -29.711033,9.429151 parent: 31 - type: Transform - uid: 4298 components: - - pos: 29.352465,-1.4202437 + - type: Transform + pos: 29.352465,-1.4202437 parent: 31 - type: Transform - uid: 4324 components: - - pos: 29.633715,-1.4827437 + - type: Transform + pos: 29.633715,-1.4827437 parent: 31 - type: Transform - proto: FirelockGlass entities: - uid: 24 components: - - pos: 20.5,18.5 + - type: Transform + pos: 20.5,18.5 parent: 31 - type: Transform - uid: 673 components: - - pos: 10.5,-6.5 + - type: Transform + pos: 10.5,-6.5 parent: 31 - type: Transform - uid: 852 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 31 - type: Transform - uid: 1027 components: - - pos: 5.5,4.5 + - type: Transform + pos: 5.5,4.5 parent: 31 - type: Transform - uid: 1028 components: - - pos: 5.5,3.5 + - type: Transform + pos: 5.5,3.5 parent: 31 - type: Transform - uid: 1185 components: - - pos: 21.5,18.5 + - type: Transform + pos: 21.5,18.5 parent: 31 - type: Transform - uid: 1505 components: - - pos: 15.5,8.5 + - type: Transform + pos: 15.5,8.5 parent: 31 - type: Transform - uid: 2872 components: - - pos: 1.5,-29.5 + - type: Transform + pos: 1.5,-29.5 parent: 31 - type: Transform - uid: 2891 components: - - pos: 1.5,-28.5 + - type: Transform + pos: 1.5,-28.5 parent: 31 - type: Transform - uid: 3428 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-33.5 parent: 31 - type: Transform - uid: 3724 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-27.5 parent: 31 - type: Transform - uid: 3729 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -13.5,-18.5 parent: 31 - type: Transform - uid: 3857 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-23.5 parent: 31 - type: Transform - uid: 3866 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-25.5 parent: 31 - type: Transform - uid: 3928 components: - - pos: -26.5,3.5 + - type: Transform + pos: -26.5,3.5 parent: 31 - type: Transform - uid: 3934 components: - - pos: -26.5,4.5 + - type: Transform + pos: -26.5,4.5 parent: 31 - type: Transform - uid: 3935 components: - - pos: -26.5,5.5 + - type: Transform + pos: -26.5,5.5 parent: 31 - type: Transform - uid: 3943 components: - - pos: 1.5,-2.5 + - type: Transform + pos: 1.5,-2.5 parent: 31 - type: Transform - uid: 3944 components: - - pos: 1.5,-1.5 + - type: Transform + pos: 1.5,-1.5 parent: 31 - type: Transform - uid: 3959 components: - - pos: 1.5,-0.5 + - type: Transform + pos: 1.5,-0.5 parent: 31 - type: Transform - uid: 3969 components: - - pos: -24.5,7.5 + - type: Transform + pos: -24.5,7.5 parent: 31 - type: Transform - uid: 3970 components: - - pos: -23.5,7.5 + - type: Transform + pos: -23.5,7.5 parent: 31 - type: Transform - uid: 3975 components: - - pos: -33.5,3.5 + - type: Transform + pos: -33.5,3.5 parent: 31 - type: Transform - uid: 3976 components: - - pos: -33.5,4.5 + - type: Transform + pos: -33.5,4.5 parent: 31 - type: Transform - uid: 3977 components: - - pos: -33.5,5.5 + - type: Transform + pos: -33.5,5.5 parent: 31 - type: Transform - uid: 3987 components: - - pos: 5.5,-1.5 + - type: Transform + pos: 5.5,-1.5 parent: 31 - type: Transform - uid: 3988 components: - - pos: 5.5,-0.5 + - type: Transform + pos: 5.5,-0.5 parent: 31 - type: Transform - uid: 3989 components: - - pos: 5.5,-2.5 + - type: Transform + pos: 5.5,-2.5 parent: 31 - type: Transform - uid: 4026 components: - - pos: 11.5,3.5 + - type: Transform + pos: 11.5,3.5 parent: 31 - type: Transform - uid: 4028 components: - - pos: 11.5,5.5 + - type: Transform + pos: 11.5,5.5 parent: 31 - type: Transform - uid: 4030 components: - - pos: 11.5,4.5 + - type: Transform + pos: 11.5,4.5 parent: 31 - type: Transform - uid: 4210 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -13.5,-29.5 parent: 31 - type: Transform - uid: 4215 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,-38.5 parent: 31 - type: Transform - uid: 4334 components: - - pos: 8.5,-8.5 + - type: Transform + pos: 8.5,-8.5 parent: 31 - type: Transform - uid: 4345 components: - - pos: 8.5,-10.5 + - type: Transform + pos: 8.5,-10.5 parent: 31 - type: Transform - uid: 4525 components: - - pos: -10.5,1.5 + - type: Transform + pos: -10.5,1.5 parent: 31 - type: Transform - uid: 4528 components: - - pos: -10.5,0.5 + - type: Transform + pos: -10.5,0.5 parent: 31 - type: Transform - uid: 4529 components: - - pos: -10.5,-0.5 + - type: Transform + pos: -10.5,-0.5 parent: 31 - type: Transform - uid: 4613 components: - - pos: 37.5,-8.5 + - type: Transform + pos: 37.5,-8.5 parent: 31 - type: Transform - uid: 4617 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -15.5,-19.5 parent: 31 - type: Transform - uid: 4718 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-19.5 parent: 31 - type: Transform - uid: 6957 components: - - pos: 28.5,-17.5 + - type: Transform + pos: 28.5,-17.5 parent: 31 - type: Transform - uid: 7178 components: - - pos: 38.5,-8.5 + - type: Transform + pos: 38.5,-8.5 parent: 31 - type: Transform - uid: 7325 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -37.5,-8.5 parent: 31 - type: Transform - uid: 7344 components: - - pos: 4.5,-23.5 + - type: Transform + pos: 4.5,-23.5 parent: 31 - type: Transform - uid: 7379 components: - - pos: 1.5,-26.5 + - type: Transform + pos: 1.5,-26.5 parent: 31 - type: Transform - uid: 7460 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,4.5 parent: 31 - type: Transform - uid: 8399 components: - - pos: 45.5,-6.5 + - type: Transform + pos: 45.5,-6.5 parent: 31 - type: Transform - uid: 8810 components: - - pos: 2.5,29.5 + - type: Transform + pos: 2.5,29.5 parent: 31 - type: Transform - uid: 8813 components: - - pos: 1.5,28.5 + - type: Transform + pos: 1.5,28.5 parent: 31 - type: Transform - uid: 8814 components: - - pos: 3.5,29.5 + - type: Transform + pos: 3.5,29.5 parent: 31 - type: Transform - uid: 8815 components: - - pos: 4.5,29.5 + - type: Transform + pos: 4.5,29.5 parent: 31 - type: Transform - uid: 8816 components: - - pos: 5.5,28.5 + - type: Transform + pos: 5.5,28.5 parent: 31 - type: Transform - uid: 8856 components: - - pos: 24.5,5.5 + - type: Transform + pos: 24.5,5.5 parent: 31 - type: Transform - uid: 8857 components: - - pos: 24.5,3.5 + - type: Transform + pos: 24.5,3.5 parent: 31 - type: Transform - uid: 8858 components: - - pos: 24.5,4.5 + - type: Transform + pos: 24.5,4.5 parent: 31 - type: Transform - uid: 8883 components: - - pos: 2.5,15.5 + - type: Transform + pos: 2.5,15.5 parent: 31 - type: Transform - uid: 8884 components: - - pos: 3.5,15.5 + - type: Transform + pos: 3.5,15.5 parent: 31 - type: Transform - uid: 8885 components: - - pos: 4.5,15.5 + - type: Transform + pos: 4.5,15.5 parent: 31 - type: Transform - uid: 8940 components: - - pos: 9.5,-6.5 + - type: Transform + pos: 9.5,-6.5 parent: 31 - type: Transform - uid: 8954 components: - - pos: 1.5,3.5 + - type: Transform + pos: 1.5,3.5 parent: 31 - type: Transform - uid: 8956 components: - - pos: 1.5,5.5 + - type: Transform + pos: 1.5,5.5 parent: 31 - type: Transform - uid: 9732 components: - - pos: 2.5,-23.5 + - type: Transform + pos: 2.5,-23.5 parent: 31 - type: Transform - uid: 9735 components: - - pos: 3.5,-23.5 + - type: Transform + pos: 3.5,-23.5 parent: 31 - type: Transform - uid: 9782 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-36.5 parent: 31 - type: Transform - uid: 9783 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-36.5 parent: 31 - type: Transform - uid: 9958 components: - - pos: 36.5,3.5 + - type: Transform + pos: 36.5,3.5 parent: 31 - type: Transform - uid: 9959 components: - - pos: 36.5,4.5 + - type: Transform + pos: 36.5,4.5 parent: 31 - type: Transform - uid: 9960 components: - - pos: 36.5,5.5 + - type: Transform + pos: 36.5,5.5 parent: 31 - type: Transform - uid: 9961 components: - - pos: 33.5,7.5 + - type: Transform + pos: 33.5,7.5 parent: 31 - type: Transform - uid: 9962 components: - - pos: 30.5,3.5 + - type: Transform + pos: 30.5,3.5 parent: 31 - type: Transform - uid: 9963 components: - - pos: 30.5,5.5 + - type: Transform + pos: 30.5,5.5 parent: 31 - type: Transform - uid: 9964 components: - - pos: 33.5,1.5 + - type: Transform + pos: 33.5,1.5 parent: 31 - type: Transform - uid: 9965 components: - - pos: 25.5,17.5 + - type: Transform + pos: 25.5,17.5 parent: 31 - type: Transform - uid: 9966 components: - - pos: 25.5,16.5 + - type: Transform + pos: 25.5,16.5 parent: 31 - type: Transform - uid: 9967 components: - - pos: 21.5,14.5 + - type: Transform + pos: 21.5,14.5 parent: 31 - type: Transform - uid: 9968 components: - - pos: 20.5,14.5 + - type: Transform + pos: 20.5,14.5 parent: 31 - type: Transform - uid: 9969 components: - - pos: 3.5,26.5 + - type: Transform + pos: 3.5,26.5 parent: 31 - type: Transform - uid: 9970 components: - - pos: -21.5,3.5 + - type: Transform + pos: -21.5,3.5 parent: 31 - type: Transform - uid: 9971 components: - - pos: -21.5,4.5 + - type: Transform + pos: -21.5,4.5 parent: 31 - type: Transform - uid: 9972 components: - - pos: -21.5,5.5 + - type: Transform + pos: -21.5,5.5 parent: 31 - type: Transform - uid: 9973 components: - - pos: 54.5,2.5 + - type: Transform + pos: 54.5,2.5 parent: 31 - type: Transform - uid: 9988 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-12.5 parent: 31 - type: Transform - uid: 9989 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,-12.5 parent: 31 - type: Transform - uid: 9990 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-12.5 parent: 31 - type: Transform - uid: 9994 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 31 - type: Transform - uid: 9995 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,1.5 parent: 31 - type: Transform - uid: 9999 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,6.5 parent: 31 - type: Transform - uid: 10000 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,6.5 parent: 31 - type: Transform - uid: 10008 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 45.5,8.5 parent: 31 - type: Transform - uid: 10017 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-9.5 parent: 31 - type: Transform - uid: 10099 components: - - pos: 22.5,18.5 + - type: Transform + pos: 22.5,18.5 parent: 31 - type: Transform - uid: 10240 components: - - pos: -22.5,-10.5 + - type: Transform + pos: -22.5,-10.5 parent: 31 - type: Transform - uid: 10241 components: - - pos: -23.5,-10.5 + - type: Transform + pos: -23.5,-10.5 parent: 31 - type: Transform - uid: 10242 components: - - pos: -24.5,-10.5 + - type: Transform + pos: -24.5,-10.5 parent: 31 - type: Transform - uid: 10245 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -36.5,-8.5 parent: 31 - type: Transform - uid: 10246 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,-8.5 parent: 31 - type: Transform - uid: 10313 components: - - pos: -19.5,-14.5 + - type: Transform + pos: -19.5,-14.5 parent: 31 - type: Transform - uid: 10314 components: - - pos: -19.5,-15.5 + - type: Transform + pos: -19.5,-15.5 parent: 31 - type: Transform - uid: 10315 components: - - pos: -19.5,-16.5 + - type: Transform + pos: -19.5,-16.5 parent: 31 - type: Transform - uid: 10316 components: - - pos: 0.5,-14.5 + - type: Transform + pos: 0.5,-14.5 parent: 31 - type: Transform - uid: 10317 components: - - pos: 0.5,-15.5 + - type: Transform + pos: 0.5,-15.5 parent: 31 - type: Transform - uid: 10318 components: - - pos: 0.5,-16.5 + - type: Transform + pos: 0.5,-16.5 parent: 31 - type: Transform - uid: 10658 components: - - pos: 40.5,-12.5 + - type: Transform + pos: 40.5,-12.5 parent: 31 - type: Transform - uid: 10900 components: - - pos: 49.5,-1.5 + - type: Transform + pos: 49.5,-1.5 parent: 31 - type: Transform - uid: 11000 components: - - pos: 9.5,-12.5 + - type: Transform + pos: 9.5,-12.5 parent: 31 - type: Transform - uid: 11091 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,20.5 parent: 31 - type: Transform - uid: 11092 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 31.5,18.5 parent: 31 - type: Transform - proto: Fireplace entities: - uid: 791 components: - - pos: -24.5,-21.5 + - type: Transform + pos: -24.5,-21.5 parent: 31 - type: Transform - uid: 3749 components: - - pos: 0.5,1.5 + - type: Transform + pos: 0.5,1.5 parent: 31 - type: Transform - uid: 8988 components: - - pos: 7.5,26.5 + - type: Transform + pos: 7.5,26.5 parent: 31 - type: Transform - proto: Flash entities: - uid: 2092 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5096004,12.452274 parent: 31 - type: Transform - uid: 2499 components: - - pos: 8.497082,31.408243 + - type: Transform + pos: 8.497082,31.408243 parent: 31 - type: Transform - proto: FlashlightLantern entities: - uid: 7122 components: - - pos: -2.4670525,30.482414 + - type: Transform + pos: -2.4670525,30.482414 parent: 31 - type: Transform - uid: 9950 components: - - pos: 27.403997,15.554827 + - type: Transform + pos: 27.403997,15.554827 parent: 31 - type: Transform - uid: 10696 components: - - pos: -0.47756696,-12.240095 + - type: Transform + pos: -0.47756696,-12.240095 parent: 31 - type: Transform - proto: FlashlightSeclite entities: - uid: 9117 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.223138,16.03936 parent: 31 - type: Transform - proto: FloodlightBroken entities: - uid: 9086 components: - - pos: 36.474823,33.73011 + - type: Transform + pos: 36.474823,33.73011 parent: 31 - type: Transform - proto: FloorDrain entities: - uid: 262 components: - - pos: 15.5,-17.5 + - type: Transform + pos: 15.5,-17.5 parent: 31 - type: Transform - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - uid: 2300 components: - - pos: -18.5,-11.5 + - type: Transform + pos: -18.5,-11.5 parent: 31 - type: Transform - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - uid: 4337 components: - - pos: 12.5,27.5 + - type: Transform + pos: 12.5,27.5 parent: 31 - type: Transform - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - uid: 9108 components: - - pos: 17.5,-0.5 + - type: Transform + pos: 17.5,-0.5 parent: 31 - type: Transform - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - uid: 9109 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-4.5 parent: 31 - type: Transform - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - proto: FloorTileItemArcadeBlue entities: - uid: 7988 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 7989 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 7990 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 7991 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 7992 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 7993 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 7994 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 7995 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 7996 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 7997 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 7998 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 7999 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8000 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8001 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8002 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8003 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8004 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8005 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8006 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8007 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8008 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8009 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8010 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8011 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8012 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8013 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8014 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8015 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8016 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - uid: 8017 components: - - pos: 27.598589,-5.5317454 + - type: Transform + pos: 27.598589,-5.5317454 parent: 31 - type: Transform - proto: FloraRockSolid01 entities: - uid: 8569 components: - - pos: 0.88375235,-33.48718 + - type: Transform + pos: 0.88375235,-33.48718 parent: 31 - type: Transform - proto: FloraRockSolid02 entities: - uid: 10815 components: - - pos: 4.1304145,-33.0152 + - type: Transform + pos: 4.1304145,-33.0152 parent: 31 - type: Transform - proto: FloraTreeLarge05 entities: - uid: 7374 components: - - pos: 49.515545,-24.586845 + - type: Transform + pos: 49.515545,-24.586845 parent: 31 - type: Transform - proto: FoamBlade entities: - uid: 10498 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.435028,-32.52688 parent: 31 - type: Transform - proto: FoodApple entities: - uid: 10797 components: - - pos: 45.728592,-20.95496 + - type: Transform + pos: 45.728592,-20.95496 parent: 31 - type: Transform - proto: FoodBanana entities: - uid: 1218 components: - - pos: -19.287416,-7.253504 + - type: Transform + pos: -19.287416,-7.253504 parent: 31 - type: Transform - uid: 1549 components: - - pos: -19.31693,-7.194507 + - type: Transform + pos: -19.31693,-7.194507 parent: 31 - type: Transform - proto: FoodBowlBig entities: - uid: 8950 components: - - pos: 10.876451,-23.826777 + - type: Transform + pos: 10.876451,-23.826777 parent: 31 - type: Transform - proto: FoodBoxDonut entities: - uid: 261 components: - - pos: -4.454084,13.160239 + - type: Transform + pos: -4.454084,13.160239 parent: 31 - type: Transform - uid: 8989 components: - - pos: -1.5376439,25.04381 + - type: Transform + pos: -1.5376439,25.04381 parent: 31 - type: Transform - proto: FoodCondimentBottleEnzyme entities: - uid: 8441 components: - - pos: -14.835613,-0.50339985 + - type: Transform + pos: -14.835613,-0.50339985 parent: 31 - type: Transform - - tags: [] - type: Tag + - type: Tag + tags: [] - proto: FoodCondimentPacketSalt entities: - uid: 9576 components: - - pos: 29.558077,-6.33541 + - type: Transform + pos: 29.558077,-6.33541 parent: 31 - type: Transform - proto: FoodDonkpocketPizza entities: - uid: 418 components: - - pos: -8.183176,-18.420973 + - type: Transform + pos: -8.183176,-18.420973 parent: 31 - type: Transform - proto: FoodDonutChocolate entities: - uid: 46 components: - - pos: -2.214967,7.851863 + - type: Transform + pos: -2.214967,7.851863 parent: 31 - type: Transform - proto: FoodDonutJellySlugcat entities: - uid: 11256 components: - - pos: 82.70892,4.2750516 + - type: Transform + pos: 82.70892,4.2750516 parent: 31 - type: Transform - proto: FoodFrozenSandwich entities: - uid: 5708 components: - - pos: -7.48876,-35.481796 + - type: Transform + pos: -7.48876,-35.481796 parent: 31 - type: Transform - uid: 5709 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.630615,-35.540794 parent: 31 - type: Transform - proto: FoodMeat entities: - uid: 9057 components: - - pos: -10.159095,-4.4711595 + - type: Transform + pos: -10.159095,-4.4711595 parent: 31 - type: Transform - uid: 9058 components: - - pos: -11.76847,-4.7055345 + - type: Transform + pos: -11.76847,-4.7055345 parent: 31 - type: Transform - uid: 9059 components: - - pos: -13.440345,-4.4399095 + - type: Transform + pos: -13.440345,-4.4399095 parent: 31 - type: Transform - proto: FoodNoodles entities: - uid: 6693 components: - - pos: 3.5003717,-30.269686 + - type: Transform + pos: 3.5003717,-30.269686 parent: 31 - type: Transform - proto: FoodPieBananaCream entities: - uid: 1314 components: - - pos: -19.730143,-7.194507 + - type: Transform + pos: -19.730143,-7.194507 parent: 31 - type: Transform - proto: FoodPizzaArnoldSlice entities: - uid: 9053 components: - - pos: -29.477003,17.566315 + - type: Transform + pos: -29.477003,17.566315 parent: 31 - type: Transform - proto: FoodPizzaPineapple entities: - uid: 8745 components: - - pos: -35.517406,-25.152033 + - type: Transform + pos: -35.517406,-25.152033 parent: 31 - type: Transform - proto: FoodShakerSalt entities: - uid: 9577 components: - - pos: 29.948702,-6.58541 + - type: Transform + pos: 29.948702,-6.58541 parent: 31 - type: Transform - uid: 9578 components: - - pos: 29.136202,-6.538535 + - type: Transform + pos: 29.136202,-6.538535 parent: 31 - type: Transform - proto: FoodSnackChocolate entities: - uid: 1913 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.419368,-3.3883321 parent: 31 - type: Transform - uid: 5636 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.617393,-3.3883321 parent: 31 - type: Transform - proto: FoodSoupElectron entities: - uid: 8433 components: - - pos: -6.4781985,-1.2809834 + - type: Transform + pos: -6.4781985,-1.2809834 parent: 31 - type: Transform - proto: FoodTinBeans entities: - uid: 3485 components: - - flags: InContainer - type: MetaData - - parent: 2363 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 2363 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 3831 components: - - flags: InContainer - type: MetaData - - parent: 2363 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 2363 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 3832 components: - - flags: InContainer - type: MetaData - - parent: 2363 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 2363 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: FoodTinMRE entities: - uid: 7837 components: - - pos: -26.53067,19.803333 + - type: Transform + pos: -26.53067,19.803333 parent: 31 - type: Transform - proto: FoodWatermelonSlice entities: - uid: 10793 components: - - pos: 45.529526,-21.25198 + - type: Transform + pos: 45.529526,-21.25198 parent: 31 - type: Transform - proto: ForensicScanner entities: - uid: 4952 components: - - pos: -0.37258464,13.434727 + - type: Transform + pos: -0.37258464,13.434727 parent: 31 - type: Transform - proto: FuelDispenser entities: - uid: 5080 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,0.5 parent: 31 - type: Transform - uid: 11338 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 31.5,-5.5 parent: 31 - type: Transform - proto: GasAnalyzer entities: - uid: 3985 components: - - pos: -11.359732,-27.422089 + - type: Transform + pos: -11.359732,-27.422089 parent: 31 - type: Transform - uid: 6417 components: - - pos: 43.492275,13.452083 + - type: Transform + pos: 43.492275,13.452083 parent: 31 - type: Transform - uid: 6569 components: - - pos: 43.492275,13.452151 + - type: Transform + pos: 43.492275,13.452151 parent: 31 - type: Transform - proto: GasFilter entities: - uid: 7125 components: - - name: waste filter - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + name: waste filter + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-16.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasMinerCarbonDioxide entities: - uid: 4907 components: - - pos: 40.5,22.5 + - type: Transform + pos: 40.5,22.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: GasMinerNitrogen entities: - uid: 4888 components: - - pos: 34.5,22.5 + - type: Transform + pos: 34.5,22.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: GasMinerOxygen entities: - uid: 4830 components: - - pos: 36.5,22.5 + - type: Transform + pos: 36.5,22.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: GasMinerWaterVapor entities: - uid: 6836 components: - - pos: 46.5,22.5 + - type: Transform + pos: 46.5,22.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: GasOutletInjector entities: - uid: 672 components: - - pos: 42.5,21.5 + - type: Transform + pos: 42.5,21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 2177 components: - - pos: 34.5,21.5 + - type: Transform + pos: 34.5,21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 2668 components: - - pos: 40.5,21.5 + - type: Transform + pos: 40.5,21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 3461 components: - - pos: 38.5,21.5 + - type: Transform + pos: 38.5,21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 4034 components: - - pos: 36.5,21.5 + - type: Transform + pos: 36.5,21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11062 components: - - pos: 46.5,21.5 + - type: Transform + pos: 46.5,21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11069 components: - - pos: 44.5,21.5 + - type: Transform + pos: 44.5,21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: GasPassiveVent entities: - uid: 7 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 40.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 49 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 42.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 52 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 38.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 127 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 44.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 3124 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 36.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 3477 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 34.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 5547 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 5752 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-29.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 6211 components: - - pos: 33.5,19.5 + - type: Transform + pos: 33.5,19.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 6243 components: - - pos: 50.5,20.5 + - type: Transform + pos: 50.5,20.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#FF1212FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6248 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 55.5,16.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 6903 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 55.5,17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11025 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 46.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: GasPipeBend entities: - uid: 1 components: - - pos: 39.5,23.5 + - type: Transform + pos: 39.5,23.5 parent: 31 - type: Transform - uid: 21 components: - - pos: 41.5,23.5 + - type: Transform + pos: 41.5,23.5 parent: 31 - type: Transform - uid: 129 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 39.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 667 components: - - pos: 45.5,23.5 + - type: Transform + pos: 45.5,23.5 parent: 31 - type: Transform - uid: 898 components: - - pos: 43.5,23.5 + - type: Transform + pos: 43.5,23.5 parent: 31 - type: Transform - uid: 954 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 34.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 981 components: - - pos: 10.5,24.5 + - type: Transform + pos: 10.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 1250 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1634 components: - - pos: -4.5,25.5 + - type: Transform + pos: -4.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2227 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-17.5 parent: 31 - type: Transform - uid: 2417 components: - - pos: 37.5,23.5 + - type: Transform + pos: 37.5,23.5 parent: 31 - type: Transform - uid: 3011 components: - - pos: 35.5,23.5 + - type: Transform + pos: 35.5,23.5 parent: 31 - type: Transform - uid: 3206 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 24.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 3207 components: - - pos: 24.5,11.5 + - type: Transform + pos: 24.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 3841 components: - - pos: -23.5,9.5 + - type: Transform + pos: -23.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4182 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4316 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 22.5,16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-4.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4649 components: - - pos: 55.5,2.5 + - type: Transform + pos: 55.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4932 components: - - pos: 47.5,23.5 + - type: Transform + pos: 47.5,23.5 parent: 31 - type: Transform - uid: 5456 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 15.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5457 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5538 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -16.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5551 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-4.5 parent: 31 - type: Transform - uid: 5553 components: - - pos: 10.5,-1.5 + - type: Transform + pos: 10.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5554 components: - - pos: 11.5,0.5 + - type: Transform + pos: 11.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5582 components: - - pos: 19.5,-8.5 + - type: Transform + pos: 19.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5589 components: - - pos: 18.5,-10.5 + - type: Transform + pos: 18.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5627 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5639 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5640 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5682 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,-17.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5683 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-17.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5697 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5702 components: - - pos: 7.5,-19.5 + - type: Transform + pos: 7.5,-19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5703 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5722 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -36.5,13.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5724 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-29.5 parent: 31 - type: Transform - uid: 5778 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5779 components: - - pos: 15.5,-25.5 + - type: Transform + pos: 15.5,-25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5783 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -22.5,23.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5892 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5896 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -18.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5897 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -18.5,19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5944 components: - - pos: 8.5,9.5 + - type: Transform + pos: 8.5,9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5971 components: - - pos: -5.5,10.5 + - type: Transform + pos: -5.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5991 components: - - pos: -4.5,10.5 + - type: Transform + pos: -4.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5992 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6001 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,21.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6016 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6025 components: - - pos: -11.5,16.5 + - type: Transform + pos: -11.5,16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6026 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6096 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-17.5 parent: 31 - type: Transform - uid: 6106 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -27.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6214 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6228 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6265 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 38.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6266 components: - - pos: 39.5,0.5 + - type: Transform + pos: 39.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6274 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 37.5,-0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6361 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 44.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6540 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 43.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6558 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 56.5,15.5 parent: 31 - type: Transform - uid: 6559 components: - - pos: 49.5,24.5 + - type: Transform + pos: 49.5,24.5 parent: 31 - type: Transform - uid: 6565 components: - - pos: 56.5,18.5 + - type: Transform + pos: 56.5,18.5 parent: 31 - type: Transform - uid: 6633 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 48.5,24.5 parent: 31 - type: Transform - uid: 7091 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 23.5,9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7092 components: - - pos: 23.5,10.5 + - type: Transform + pos: 23.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7183 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 55.5,1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7227 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,17.5 parent: 31 - type: Transform - uid: 7228 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 54.5,18.5 parent: 31 - type: Transform - uid: 7426 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -32.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7726 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 9200 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -37.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 9224 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -38.5,13.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 9353 components: - - pos: -24.5,14.5 + - type: Transform + pos: -24.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9354 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -25.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9355 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -25.5,19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10381 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-29.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10913 components: - - pos: 56.5,-3.5 + - type: Transform + pos: 56.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10955 components: - - pos: 55.5,-8.5 + - type: Transform + pos: 55.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10956 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 55.5,-9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10957 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 47.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 583 components: - - pos: -7.5,-19.5 + - type: Transform + pos: -7.5,-19.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5321 components: - - pos: 2.5,3.5 + - type: Transform + pos: 2.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5322 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5325 components: - - pos: 4.5,-1.5 + - type: Transform + pos: 4.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5361 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5813 components: - - pos: 2.5,24.5 + - type: Transform + pos: 2.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5823 components: - - pos: 4.5,25.5 + - type: Transform + pos: 4.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5828 components: - - pos: 4.5,20.5 + - type: Transform + pos: 4.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5952 components: - - pos: 32.5,5.5 + - type: Transform + pos: 32.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5953 components: - - pos: 33.5,3.5 + - type: Transform + pos: 33.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6082 components: - - pos: -23.5,3.5 + - type: Transform + pos: -23.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6083 components: - - pos: -24.5,5.5 + - type: Transform + pos: -24.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6144 components: - - pos: -35.5,5.5 + - type: Transform + pos: -35.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6150 components: - - pos: -36.5,3.5 + - type: Transform + pos: -36.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6444 components: - - pos: 33.5,9.5 + - type: Transform + pos: 33.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6483 components: - - pos: 50.5,17.5 + - type: Transform + pos: 50.5,17.5 parent: 31 - type: Transform - uid: 7414 components: - - pos: 2.5,-16.5 + - type: Transform + pos: 2.5,-16.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11407 + components: + - type: Transform + pos: -37.5,-5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 57 components: - - pos: 8.5,18.5 + - type: Transform + pos: 8.5,18.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 109 components: - - pos: 39.5,20.5 + - type: Transform + pos: 39.5,20.5 parent: 31 - type: Transform - uid: 110 components: - - pos: 39.5,19.5 + - type: Transform + pos: 39.5,19.5 parent: 31 - type: Transform - uid: 111 components: - - pos: 41.5,18.5 + - type: Transform + pos: 41.5,18.5 parent: 31 - type: Transform - uid: 115 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 132 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 36.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 159 components: - - pos: 39.5,21.5 + - type: Transform + pos: 39.5,21.5 parent: 31 - type: Transform - uid: 347 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -29.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 354 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 415 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-29.5 parent: 31 - type: Transform - uid: 467 components: - - pos: 45.5,22.5 + - type: Transform + pos: 45.5,22.5 parent: 31 - type: Transform - uid: 561 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 35.5,20.5 parent: 31 - type: Transform - uid: 602 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 42.5,19.5 parent: 31 - type: Transform - uid: 715 components: - - pos: 37.5,19.5 + - type: Transform + pos: 37.5,19.5 parent: 31 - type: Transform - uid: 750 components: - - pos: -24.5,12.5 + - type: Transform + pos: -24.5,12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 773 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 40.5,18.5 parent: 31 - type: Transform - uid: 789 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 38.5,20.5 parent: 31 - type: Transform - uid: 800 components: - - pos: -9.5,-20.5 + - type: Transform + pos: -9.5,-20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 813 components: - - pos: 39.5,22.5 + - type: Transform + pos: 39.5,22.5 parent: 31 - type: Transform - uid: 822 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 40.5,19.5 parent: 31 - type: Transform - uid: 899 components: - - pos: -4.5,24.5 + - type: Transform + pos: -4.5,24.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 925 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,20.5 parent: 31 - type: Transform - uid: 928 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 978 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 38.5,19.5 parent: 31 - type: Transform - uid: 980 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 991 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 42.5,18.5 parent: 31 - type: Transform - uid: 1067 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,19.5 parent: 31 - type: Transform - uid: 1086 components: - - pos: -9.5,-17.5 + - type: Transform + pos: -9.5,-17.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1093 components: - - pos: -9.5,-18.5 + - type: Transform + pos: -9.5,-18.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1108 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 56.5,16.5 parent: 31 - type: Transform - uid: 1165 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1238 components: - - pos: -24.5,10.5 + - type: Transform + pos: -24.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1289 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 32.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 1470 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 1473 components: - - pos: -9.5,-19.5 + - type: Transform + pos: -9.5,-19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1486 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1487 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,-12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1490 components: - - pos: -7.5,-17.5 + - type: Transform + pos: -7.5,-17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 1514 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 35.5,21.5 parent: 31 - type: Transform - uid: 1515 components: - - pos: 33.5,18.5 + - type: Transform + pos: 33.5,18.5 parent: 31 - type: Transform - uid: 1516 components: - - pos: 36.5,20.5 + - type: Transform + pos: 36.5,20.5 parent: 31 - type: Transform - uid: 1533 components: - - pos: 39.5,18.5 + - type: Transform + pos: 39.5,18.5 parent: 31 - type: Transform - uid: 1543 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 36.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1544 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 38.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1590 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1689 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-19.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 1714 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-19.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 1716 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 22.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 1724 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 35.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1725 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 33.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1739 components: - - pos: -25.5,16.5 + - type: Transform + pos: -25.5,16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1773 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,-11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 1781 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,-11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 1804 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 35.5,19.5 parent: 31 - type: Transform - uid: 1810 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -19.5,-12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2206 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -36.5,16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2207 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -36.5,15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2216 components: - - pos: -9.5,-16.5 + - type: Transform + pos: -9.5,-16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2332 components: - - pos: 34.5,19.5 + - type: Transform + pos: 34.5,19.5 parent: 31 - type: Transform - uid: 2333 components: - - pos: 34.5,18.5 + - type: Transform + pos: 34.5,18.5 parent: 31 - type: Transform - uid: 2401 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 42.5,20.5 parent: 31 - type: Transform - uid: 2414 components: - - pos: 37.5,20.5 + - type: Transform + pos: 37.5,20.5 parent: 31 - type: Transform - uid: 2559 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,18.5 parent: 31 - type: Transform - uid: 2669 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -36.5,17.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2741 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2886 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-29.5 parent: 31 - type: Transform - uid: 2947 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -38.5,16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 2948 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -38.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 2950 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -38.5,14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 3042 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 24.5,9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3043 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 25.5,9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3044 components: - - pos: 20.5,13.5 + - type: Transform + pos: 20.5,13.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 3045 components: - - pos: 22.5,11.5 + - type: Transform + pos: 22.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3046 components: - - pos: 20.5,12.5 + - type: Transform + pos: 20.5,12.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 3047 components: - - pos: 22.5,12.5 + - type: Transform + pos: 22.5,12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3048 components: - - pos: 20.5,14.5 + - type: Transform + pos: 20.5,14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 3049 components: - - pos: 22.5,13.5 + - type: Transform + pos: 22.5,13.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3238 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 3411 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3590 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,-9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3709 components: - - pos: 4.5,-20.5 + - type: Transform + pos: 4.5,-20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3873 components: - - pos: 35.5,18.5 + - type: Transform + pos: 35.5,18.5 parent: 31 - type: Transform - uid: 4024 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,-12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4033 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -23.5,-12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4135 components: - - pos: -7.5,-18.5 + - type: Transform + pos: -7.5,-18.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4136 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,-16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4137 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4138 components: - - pos: -8.5,-22.5 + - type: Transform + pos: -8.5,-22.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4141 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4142 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4176 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 38.5,18.5 parent: 31 - type: Transform - uid: 4200 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4236 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4319 components: - - pos: 20.5,16.5 + - type: Transform + pos: 20.5,16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4320 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 22.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4321 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4322 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4323 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4387 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4439 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4463 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4485 components: - - pos: -37.5,-8.5 + - type: Transform + pos: -37.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4535 components: - - pos: -37.5,-9.5 + - type: Transform + pos: -37.5,-9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4554 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-15.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4682 components: - - pos: -9.5,-15.5 + - type: Transform + pos: -9.5,-15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4685 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 25.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4687 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4696 components: - - pos: -24.5,11.5 + - type: Transform + pos: -24.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4698 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4704 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4729 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 40.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4730 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 39.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4732 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 37.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4737 components: - - pos: -24.5,9.5 + - type: Transform + pos: -24.5,9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4856 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 40.5,20.5 parent: 31 - type: Transform - uid: 4949 components: - - pos: 47.5,22.5 + - type: Transform + pos: 47.5,22.5 parent: 31 - type: Transform - uid: 4976 components: - - pos: 41.5,22.5 + - type: Transform + pos: 41.5,22.5 parent: 31 - type: Transform - uid: 5012 components: - - pos: 45.5,18.5 + - type: Transform + pos: 45.5,18.5 parent: 31 - type: Transform - uid: 5013 components: - - pos: 43.5,18.5 + - type: Transform + pos: 43.5,18.5 parent: 31 - type: Transform - uid: 5015 components: - - pos: 43.5,19.5 + - type: Transform + pos: 43.5,19.5 parent: 31 - type: Transform - uid: 5016 components: - - pos: 45.5,20.5 + - type: Transform + pos: 45.5,20.5 parent: 31 - type: Transform - uid: 5030 components: - - pos: 36.5,19.5 + - type: Transform + pos: 36.5,19.5 parent: 31 - type: Transform - uid: 5031 components: - - pos: 36.5,18.5 + - type: Transform + pos: 36.5,18.5 parent: 31 - type: Transform - uid: 5044 components: - - pos: 43.5,21.5 + - type: Transform + pos: 43.5,21.5 parent: 31 - type: Transform - uid: 5045 components: - - pos: 45.5,21.5 + - type: Transform + pos: 45.5,21.5 parent: 31 - type: Transform - uid: 5046 components: - - pos: 43.5,20.5 + - type: Transform + pos: 43.5,20.5 parent: 31 - type: Transform - uid: 5047 components: - - pos: 45.5,19.5 + - type: Transform + pos: 45.5,19.5 parent: 31 - type: Transform - uid: 5048 components: - - pos: 41.5,19.5 + - type: Transform + pos: 41.5,19.5 parent: 31 - type: Transform - uid: 5049 components: - - pos: 41.5,20.5 + - type: Transform + pos: 41.5,20.5 parent: 31 - type: Transform - uid: 5050 components: - - pos: 41.5,21.5 + - type: Transform + pos: 41.5,21.5 parent: 31 - type: Transform - uid: 5056 components: - - pos: 43.5,22.5 + - type: Transform + pos: 43.5,22.5 parent: 31 - type: Transform - uid: 5123 components: - - pos: -37.5,-10.5 + - type: Transform + pos: -37.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5126 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 35.5,22.5 parent: 31 - type: Transform - uid: 5133 components: - - pos: 37.5,18.5 + - type: Transform + pos: 37.5,18.5 parent: 31 - type: Transform - uid: 5155 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 32.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5158 components: - - pos: 49.5,18.5 + - type: Transform + pos: 49.5,18.5 parent: 31 - type: Transform - uid: 5240 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -20.5,19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5308 components: - - pos: 48.5,18.5 + - type: Transform + pos: 48.5,18.5 parent: 31 - type: Transform - uid: 5309 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,15.5 parent: 31 - type: Transform - uid: 5310 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,17.5 parent: 31 - type: Transform - uid: 5311 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,16.5 parent: 31 - type: Transform - uid: 5323 components: - - pos: 2.5,2.5 + - type: Transform + pos: 2.5,2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5324 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5326 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5327 components: - - pos: 2.5,-1.5 + - type: Transform + pos: 2.5,-1.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5328 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5329 components: - - pos: 2.5,-3.5 + - type: Transform + pos: 2.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5330 components: - - pos: 2.5,-4.5 + - type: Transform + pos: 2.5,-4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5331 components: - - pos: 2.5,-5.5 + - type: Transform + pos: 2.5,-5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5333 components: - - pos: 2.5,-7.5 + - type: Transform + pos: 2.5,-7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5334 components: - - pos: 2.5,-8.5 + - type: Transform + pos: 2.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5335 components: - - pos: 2.5,-9.5 + - type: Transform + pos: 2.5,-9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5336 components: - - pos: 2.5,-10.5 + - type: Transform + pos: 2.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5337 components: - - pos: 2.5,-11.5 + - type: Transform + pos: 2.5,-11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5338 components: - - pos: 2.5,-12.5 + - type: Transform + pos: 2.5,-12.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5339 components: - - pos: 2.5,-13.5 + - type: Transform + pos: 2.5,-13.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5340 components: - - pos: 2.5,-14.5 + - type: Transform + pos: 2.5,-14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5341 components: - - pos: 2.5,-15.5 + - type: Transform + pos: 2.5,-15.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5343 components: - - pos: 2.5,-17.5 + - type: Transform + pos: 2.5,-17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5344 components: - - pos: 2.5,-18.5 + - type: Transform + pos: 2.5,-18.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5346 components: - - pos: 2.5,-20.5 + - type: Transform + pos: 2.5,-20.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5347 components: - - pos: 2.5,-21.5 + - type: Transform + pos: 2.5,-21.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5348 components: - - pos: 2.5,-22.5 + - type: Transform + pos: 2.5,-22.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5350 components: - - pos: 2.5,-24.5 + - type: Transform + pos: 2.5,-24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5351 components: - - pos: 2.5,-25.5 + - type: Transform + pos: 2.5,-25.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5352 components: - - pos: 2.5,-26.5 + - type: Transform + pos: 2.5,-26.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5353 components: - - pos: 2.5,-27.5 + - type: Transform + pos: 2.5,-27.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5355 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5356 components: - - pos: 4.5,3.5 + - type: Transform + pos: 4.5,3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5357 components: - - pos: 4.5,2.5 + - type: Transform + pos: 4.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5358 components: - - pos: 4.5,1.5 + - type: Transform + pos: 4.5,1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5359 components: - - pos: 4.5,0.5 + - type: Transform + pos: 4.5,0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5360 components: - - pos: 4.5,-0.5 + - type: Transform + pos: 4.5,-0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5362 components: - - pos: 4.5,-2.5 + - type: Transform + pos: 4.5,-2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5363 components: - - pos: 4.5,-3.5 + - type: Transform + pos: 4.5,-3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5364 components: - - pos: 4.5,-4.5 + - type: Transform + pos: 4.5,-4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5366 components: - - pos: 4.5,-6.5 + - type: Transform + pos: 4.5,-6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5367 components: - - pos: 4.5,-7.5 + - type: Transform + pos: 4.5,-7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5368 components: - - pos: 4.5,-8.5 + - type: Transform + pos: 4.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5369 components: - - pos: 4.5,-9.5 + - type: Transform + pos: 4.5,-9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5370 components: - - pos: 4.5,-10.5 + - type: Transform + pos: 4.5,-10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5371 components: - - pos: 4.5,-11.5 + - type: Transform + pos: 4.5,-11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5372 components: - - pos: 4.5,-12.5 + - type: Transform + pos: 4.5,-12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5373 components: - - pos: 4.5,-13.5 + - type: Transform + pos: 4.5,-13.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5375 components: - - pos: 4.5,-15.5 + - type: Transform + pos: 4.5,-15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5376 components: - - pos: 4.5,-16.5 + - type: Transform + pos: 4.5,-16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5378 components: - - pos: 4.5,-18.5 + - type: Transform + pos: 4.5,-18.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5381 components: - - pos: 4.5,-21.5 + - type: Transform + pos: 4.5,-21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5382 components: - - pos: 4.5,-22.5 + - type: Transform + pos: 4.5,-22.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5383 components: - - pos: 4.5,-23.5 + - type: Transform + pos: 4.5,-23.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5384 components: - - pos: 4.5,-24.5 + - type: Transform + pos: 4.5,-24.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5385 components: - - pos: 4.5,-25.5 + - type: Transform + pos: 4.5,-25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5386 components: - - pos: 4.5,-26.5 + - type: Transform + pos: 4.5,-26.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5387 components: - - pos: 4.5,-27.5 + - type: Transform + pos: 4.5,-27.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5388 components: - - pos: 4.5,-28.5 + - type: Transform + pos: 4.5,-28.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5389 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5390 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5391 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5393 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5394 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5395 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5398 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5400 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5401 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5402 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5403 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5404 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 14.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5406 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5407 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5408 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5409 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5410 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5411 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5412 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5413 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5414 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5415 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5416 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5417 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5418 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5420 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5421 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5423 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5426 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 22.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5427 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 23.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5428 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 24.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5429 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 25.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5431 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 27.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5432 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 28.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5433 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 29.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5434 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 30.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5435 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 31.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5436 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 31.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5437 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 30.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5438 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 29.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5440 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 27.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5441 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 26.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5442 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 25.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5443 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 24.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5444 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 23.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5445 components: - - pos: 13.5,6.5 + - type: Transform + pos: 13.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5446 components: - - pos: 13.5,7.5 + - type: Transform + pos: 13.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5447 components: - - pos: 13.5,8.5 + - type: Transform + pos: 13.5,8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5448 components: - - pos: 13.5,9.5 + - type: Transform + pos: 13.5,9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5449 components: - - pos: 15.5,4.5 + - type: Transform + pos: 15.5,4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5450 components: - - pos: 15.5,5.5 + - type: Transform + pos: 15.5,5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5451 components: - - pos: 15.5,6.5 + - type: Transform + pos: 15.5,6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5452 components: - - pos: 15.5,7.5 + - type: Transform + pos: 15.5,7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5453 components: - - pos: 15.5,8.5 + - type: Transform + pos: 15.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5454 components: - - pos: 15.5,9.5 + - type: Transform + pos: 15.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5455 components: - - pos: 15.5,10.5 + - type: Transform + pos: 15.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5460 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5461 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5462 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5463 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5466 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5467 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5468 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5469 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5475 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5480 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5482 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5483 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5484 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5485 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5486 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5487 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5489 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5490 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5492 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5493 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5494 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5497 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5498 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5499 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5501 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5502 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5503 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5504 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5505 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5506 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5507 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5508 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5509 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5510 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5511 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5512 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5513 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5514 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5515 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5517 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5518 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5519 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5520 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5521 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5522 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5523 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5524 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5525 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5526 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5529 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5530 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5531 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5532 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -16.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5533 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5534 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -18.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5535 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5536 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5537 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5539 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -27.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5540 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -26.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5548 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-4.5 parent: 31 - type: Transform - uid: 5549 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-4.5 parent: 31 - type: Transform - uid: 5550 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,-4.5 parent: 31 - type: Transform - uid: 5555 components: - - pos: 10.5,-2.5 + - type: Transform + pos: 10.5,-2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5556 components: - - pos: 10.5,-3.5 + - type: Transform + pos: 10.5,-3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5557 components: - - pos: 10.5,-4.5 + - type: Transform + pos: 10.5,-4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5558 components: - - pos: 10.5,-5.5 + - type: Transform + pos: 10.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5559 components: - - pos: 10.5,-6.5 + - type: Transform + pos: 10.5,-6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5560 components: - - pos: 10.5,-7.5 + - type: Transform + pos: 10.5,-7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5561 components: - - pos: 11.5,-0.5 + - type: Transform + pos: 11.5,-0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5562 components: - - pos: 11.5,-1.5 + - type: Transform + pos: 11.5,-1.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5563 components: - - pos: 11.5,-2.5 + - type: Transform + pos: 11.5,-2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5564 components: - - pos: 11.5,-3.5 + - type: Transform + pos: 11.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5565 components: - - pos: 11.5,-4.5 + - type: Transform + pos: 11.5,-4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5566 components: - - pos: 11.5,-5.5 + - type: Transform + pos: 11.5,-5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5567 components: - - pos: 11.5,-6.5 + - type: Transform + pos: 11.5,-6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5568 components: - - pos: 11.5,-7.5 + - type: Transform + pos: 11.5,-7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5569 components: - - pos: 11.5,-8.5 + - type: Transform + pos: 11.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5570 components: - - pos: 11.5,-9.5 + - type: Transform + pos: 11.5,-9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5573 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5575 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5576 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5578 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5580 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5581 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5583 components: - - pos: 17.5,-9.5 + - type: Transform + pos: 17.5,-9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5585 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5588 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5590 components: - - pos: 17.5,-8.5 + - type: Transform + pos: 17.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5591 components: - - pos: 17.5,-7.5 + - type: Transform + pos: 17.5,-7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5593 components: - - pos: 17.5,-5.5 + - type: Transform + pos: 17.5,-5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5594 components: - - pos: 17.5,-4.5 + - type: Transform + pos: 17.5,-4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5595 components: - - pos: 17.5,-3.5 + - type: Transform + pos: 17.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5596 components: - - pos: 17.5,-2.5 + - type: Transform + pos: 17.5,-2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5598 components: - - pos: 16.5,-7.5 + - type: Transform + pos: 16.5,-7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5599 components: - - pos: 16.5,-6.5 + - type: Transform + pos: 16.5,-6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5601 components: - - pos: 16.5,-4.5 + - type: Transform + pos: 16.5,-4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5602 components: - - pos: 16.5,-3.5 + - type: Transform + pos: 16.5,-3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5603 components: - - pos: 16.5,-2.5 + - type: Transform + pos: 16.5,-2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5604 components: - - pos: 16.5,-1.5 + - type: Transform + pos: 16.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5608 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -28.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5612 components: - - pos: 18.5,-12.5 + - type: Transform + pos: 18.5,-12.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5613 components: - - pos: 18.5,-13.5 + - type: Transform + pos: 18.5,-13.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5615 components: - - pos: 19.5,-10.5 + - type: Transform + pos: 19.5,-10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5616 components: - - pos: 19.5,-11.5 + - type: Transform + pos: 19.5,-11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5617 components: - - pos: 19.5,-12.5 + - type: Transform + pos: 19.5,-12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5618 components: - - pos: 19.5,-13.5 + - type: Transform + pos: 19.5,-13.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5619 components: - - pos: 19.5,-14.5 + - type: Transform + pos: 19.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5620 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,-14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5621 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,-14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5622 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,-14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5623 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,-15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5624 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,-15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5625 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,-15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5641 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5642 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5643 components: - - pos: 9.5,-9.5 + - type: Transform + pos: 9.5,-9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5644 components: - - pos: 9.5,-10.5 + - type: Transform + pos: 9.5,-10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5645 components: - - pos: 9.5,-11.5 + - type: Transform + pos: 9.5,-11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5646 components: - - pos: 9.5,-12.5 + - type: Transform + pos: 9.5,-12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5647 components: - - pos: 9.5,-13.5 + - type: Transform + pos: 9.5,-13.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5649 components: - - pos: 8.5,-14.5 + - type: Transform + pos: 8.5,-14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5651 components: - - pos: 8.5,-12.5 + - type: Transform + pos: 8.5,-12.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5652 components: - - pos: 8.5,-11.5 + - type: Transform + pos: 8.5,-11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5654 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -28.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5655 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5656 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5657 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5658 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5659 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5660 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 22.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5661 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,-6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5662 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,-6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5663 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,-6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5664 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,-6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5667 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -29.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5668 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,-15.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5669 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,-16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5670 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,-17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5673 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 19.5,-16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5676 components: - - pos: -12.5,-2.5 + - type: Transform + pos: -12.5,-2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5681 components: - - pos: 15.5,-16.5 + - type: Transform + pos: 15.5,-16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5684 components: - - pos: 14.5,-18.5 + - type: Transform + pos: 14.5,-18.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5685 components: - - pos: 14.5,-19.5 + - type: Transform + pos: 14.5,-19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5687 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5688 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5689 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,-20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5690 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5691 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5693 components: - - pos: 8.5,-21.5 + - type: Transform + pos: 8.5,-21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5694 components: - - pos: 8.5,-22.5 + - type: Transform + pos: 8.5,-22.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5695 components: - - pos: 8.5,-23.5 + - type: Transform + pos: 8.5,-23.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5696 components: - - pos: 8.5,-24.5 + - type: Transform + pos: 8.5,-24.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5699 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5716 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5717 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5718 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5723 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5745 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,16.5 parent: 31 - type: Transform - uid: 5762 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5768 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5774 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5775 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-22.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5776 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-23.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5777 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-24.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5780 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,-26.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5781 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,-27.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5786 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-23.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5787 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,-23.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5788 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-23.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5789 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-23.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5790 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-23.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5791 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-23.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5793 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5794 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5795 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5796 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5797 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5798 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5799 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5800 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5802 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,13.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5803 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5804 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,15.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5805 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5808 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,19.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5809 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,20.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5810 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,21.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5811 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,22.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5814 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,25.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5815 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,26.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5816 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,27.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5817 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,28.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5818 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,29.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5819 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,29.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5820 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,28.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5821 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,27.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5824 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5825 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,23.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5826 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,22.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5827 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5830 components: - - pos: 4.5,18.5 + - type: Transform + pos: 4.5,18.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5831 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,17.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5832 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5833 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5836 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5838 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5839 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5840 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5841 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5842 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5843 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5844 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5845 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5846 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5847 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5850 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5851 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5852 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5853 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5854 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5855 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5857 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5858 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5859 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5860 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5861 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5862 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5863 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5866 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5872 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5873 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5874 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5875 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5876 components: - - pos: 8.5,19.5 + - type: Transform + pos: 8.5,19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5877 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5878 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5879 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5880 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5884 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5885 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5886 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5887 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5888 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5889 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5890 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5891 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5899 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -21.5,19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5900 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -19.5,19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5901 components: - - pos: -18.5,20.5 + - type: Transform + pos: -18.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5902 components: - - pos: -18.5,21.5 + - type: Transform + pos: -18.5,21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5903 components: - - pos: -18.5,22.5 + - type: Transform + pos: -18.5,22.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5904 components: - - pos: -18.5,23.5 + - type: Transform + pos: -18.5,23.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5905 components: - - pos: -18.5,24.5 + - type: Transform + pos: -18.5,24.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5906 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5907 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -16.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5908 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5909 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5910 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5911 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5912 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5913 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5914 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5915 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5916 components: - - pos: 50.5,18.5 + - type: Transform + pos: 50.5,18.5 parent: 31 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5918 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,23.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5919 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,22.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5920 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -22.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5921 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5922 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -22.5,21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5923 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -22.5,22.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5930 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5931 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5932 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5933 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5934 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5935 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5936 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5937 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5942 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5943 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5945 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5946 components: - - pos: 9.5,5.5 + - type: Transform + pos: 9.5,5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5947 components: - - pos: 9.5,6.5 + - type: Transform + pos: 9.5,6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5948 components: - - pos: 9.5,7.5 + - type: Transform + pos: 9.5,7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5949 components: - - pos: 9.5,8.5 + - type: Transform + pos: 9.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5954 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5956 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5957 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5958 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5959 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5961 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5962 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5965 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5966 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5967 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5968 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5970 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5972 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5974 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5975 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5984 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5985 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5986 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5987 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,12.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5990 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,13.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5995 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,15.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5996 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5997 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5998 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,18.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5999 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,19.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6002 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6003 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,17.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6004 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,18.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6005 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6006 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6007 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6008 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6009 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6011 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6012 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6013 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6014 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6027 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,17.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6028 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,18.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6029 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,20.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6030 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,20.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6031 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,20.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6034 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6035 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6036 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6037 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6038 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6039 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6040 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6045 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6046 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6047 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6048 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6049 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6052 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6053 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6054 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6055 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6056 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -23.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6057 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6058 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -18.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6059 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -19.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6060 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -20.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6061 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6062 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6063 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6064 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6065 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6066 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6067 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6068 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6069 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6070 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6072 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6073 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -16.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6074 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6075 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -18.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6076 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -19.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6077 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -20.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6078 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6081 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6085 components: - - pos: -24.5,4.5 + - type: Transform + pos: -24.5,4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6086 components: - - pos: -24.5,3.5 + - type: Transform + pos: -24.5,3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6087 components: - - pos: -24.5,2.5 + - type: Transform + pos: -24.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6088 components: - - pos: -24.5,1.5 + - type: Transform + pos: -24.5,1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6089 components: - - pos: -24.5,0.5 + - type: Transform + pos: -24.5,0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6090 components: - - pos: -24.5,-0.5 + - type: Transform + pos: -24.5,-0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6091 components: - - pos: -24.5,-1.5 + - type: Transform + pos: -24.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6092 components: - - pos: -16.5,4.5 + - type: Transform + pos: -16.5,4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6093 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6094 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6097 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -24.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6102 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -25.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6103 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -26.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6104 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -25.5,8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6105 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -26.5,8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6107 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6108 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6109 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6110 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6111 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6113 components: - - pos: -16.5,3.5 + - type: Transform + pos: -16.5,3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6121 components: - - pos: -23.5,2.5 + - type: Transform + pos: -23.5,2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6122 components: - - pos: -23.5,1.5 + - type: Transform + pos: -23.5,1.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6123 components: - - pos: -23.5,0.5 + - type: Transform + pos: -23.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6124 components: - - pos: -23.5,-0.5 + - type: Transform + pos: -23.5,-0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6125 components: - - pos: -23.5,-1.5 + - type: Transform + pos: -23.5,-1.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6126 components: - - pos: -23.5,-2.5 + - type: Transform + pos: -23.5,-2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6128 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6131 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -27.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6132 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -26.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6133 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -25.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6134 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -24.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6139 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -30.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6140 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -31.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6142 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -33.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6143 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -34.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6145 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -31.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6146 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -32.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6147 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -33.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6148 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -34.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6149 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -35.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6153 components: - - pos: -35.5,4.5 + - type: Transform + pos: -35.5,4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6154 components: - - pos: -35.5,3.5 + - type: Transform + pos: -35.5,3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6155 components: - - pos: -35.5,2.5 + - type: Transform + pos: -35.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6156 components: - - pos: -35.5,1.5 + - type: Transform + pos: -35.5,1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6157 components: - - pos: -35.5,0.5 + - type: Transform + pos: -35.5,0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6158 components: - - pos: -35.5,-0.5 + - type: Transform + pos: -35.5,-0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6159 components: - - pos: -35.5,-1.5 + - type: Transform + pos: -35.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6160 components: - - pos: -35.5,-2.5 + - type: Transform + pos: -35.5,-2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6161 components: - - pos: -35.5,-3.5 + - type: Transform + pos: -35.5,-3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6162 components: - - pos: -35.5,-4.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6163 components: - - pos: -35.5,-5.5 + - type: Transform + pos: -35.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6164 components: - - pos: -36.5,2.5 + - type: Transform + pos: -36.5,2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6165 components: - - pos: -36.5,1.5 + - type: Transform + pos: -36.5,1.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6167 components: - - pos: -25.5,15.5 + - type: Transform + pos: -25.5,15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6170 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 32.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6171 components: - - pos: 32.5,6.5 + - type: Transform + pos: 32.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6172 components: - - pos: 32.5,7.5 + - type: Transform + pos: 32.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6173 components: - - pos: 32.5,8.5 + - type: Transform + pos: 32.5,8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6176 components: - - pos: 33.5,5.5 + - type: Transform + pos: 33.5,5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6177 components: - - pos: 33.5,4.5 + - type: Transform + pos: 33.5,4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6178 components: - - pos: 33.5,6.5 + - type: Transform + pos: 33.5,6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6179 components: - - pos: 33.5,7.5 + - type: Transform + pos: 33.5,7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6185 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 34.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6186 components: - - pos: 32.5,4.5 + - type: Transform + pos: 32.5,4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6187 components: - - pos: 32.5,3.5 + - type: Transform + pos: 32.5,3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6188 components: - - pos: 32.5,2.5 + - type: Transform + pos: 32.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6189 components: - - pos: 32.5,1.5 + - type: Transform + pos: 32.5,1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6190 components: - - pos: 32.5,0.5 + - type: Transform + pos: 32.5,0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6191 components: - - pos: 32.5,-0.5 + - type: Transform + pos: 32.5,-0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6192 components: - - pos: 32.5,-1.5 + - type: Transform + pos: 32.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6193 components: - - pos: 33.5,2.5 + - type: Transform + pos: 33.5,2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6194 components: - - pos: 33.5,1.5 + - type: Transform + pos: 33.5,1.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6195 components: - - pos: 33.5,0.5 + - type: Transform + pos: 33.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6196 components: - - pos: 33.5,-0.5 + - type: Transform + pos: 33.5,-0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6200 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 40.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6201 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 41.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6202 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 42.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6203 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 43.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6206 components: - - pos: 43.5,4.5 + - type: Transform + pos: 43.5,4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6207 components: - - pos: 43.5,5.5 + - type: Transform + pos: 43.5,5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6208 components: - - pos: 43.5,6.5 + - type: Transform + pos: 43.5,6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6209 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 43.5,7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6217 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6218 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6219 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6220 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 44.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6221 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 45.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6222 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 46.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6224 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 48.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6225 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 45.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6227 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 47.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6229 components: - - pos: 48.5,-0.5 + - type: Transform + pos: 48.5,-0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6233 components: - - pos: 48.5,-1.5 + - type: Transform + pos: 48.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6234 components: - - pos: 49.5,2.5 + - type: Transform + pos: 49.5,2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6235 components: - - pos: 49.5,1.5 + - type: Transform + pos: 49.5,1.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6236 components: - - pos: 49.5,0.5 + - type: Transform + pos: 49.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6237 components: - - pos: 49.5,-0.5 + - type: Transform + pos: 49.5,-0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6238 components: - - pos: 49.5,-1.5 + - type: Transform + pos: 49.5,-1.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6239 components: - - pos: 48.5,0.5 + - type: Transform + pos: 48.5,0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6240 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 42.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6241 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,16.5 parent: 31 - type: Transform - uid: 6254 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 32.5,9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6260 components: - - pos: 22.5,14.5 + - type: Transform + pos: 22.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6263 components: - - pos: 38.5,2.5 + - type: Transform + pos: 38.5,2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6264 components: - - pos: 38.5,1.5 + - type: Transform + pos: 38.5,1.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6269 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 37.5,4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6270 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 37.5,3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6271 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 37.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6272 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 37.5,1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6273 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 37.5,0.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6315 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6349 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 44.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6353 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,15.5 parent: 31 - type: Transform - uid: 6363 components: - - pos: 37.5,21.5 + - type: Transform + pos: 37.5,21.5 parent: 31 - type: Transform - uid: 6392 components: - - pos: 43.5,8.5 + - type: Transform + pos: 43.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6393 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 45.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6394 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 47.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6411 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 45.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6427 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,15.5 parent: 31 - type: Transform - uid: 6478 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,17.5 parent: 31 - type: Transform - uid: 6534 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 46.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6538 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 48.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6539 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 46.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6549 components: - - pos: 46.5,18.5 + - type: Transform + pos: 46.5,18.5 parent: 31 - type: Transform - uid: 6572 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6573 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 25.5,16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6577 components: - - pos: 37.5,22.5 + - type: Transform + pos: 37.5,22.5 parent: 31 - type: Transform - uid: 6727 components: - - pos: 49.5,17.5 + - type: Transform + pos: 49.5,17.5 parent: 31 - type: Transform - uid: 6743 components: - - pos: 48.5,17.5 + - type: Transform + pos: 48.5,17.5 parent: 31 - type: Transform - uid: 6895 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,16.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6896 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 25.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6945 components: - - pos: 48.5,1.5 + - type: Transform + pos: 48.5,1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7072 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 49.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7073 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 50.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7075 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 33.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7076 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 33.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7129 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -26.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7131 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -27.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7132 components: - - pos: 34.5,20.5 + - type: Transform + pos: 34.5,20.5 parent: 31 - type: Transform - uid: 7143 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7152 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -30.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7156 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -31.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7175 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -32.5,-9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7179 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7180 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7182 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7205 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 55.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7206 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7207 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7208 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 50.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7210 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7212 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7218 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7257 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -32.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7266 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -32.5,-11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7267 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -32.5,-12.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7268 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -32.5,-13.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7270 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -24.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7271 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -25.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7413 components: - - pos: 2.5,-19.5 + - type: Transform + pos: 2.5,-19.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7419 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -32.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7470 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7557 components: - - pos: -24.5,13.5 + - type: Transform + pos: -24.5,13.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7727 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7728 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7729 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7730 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7731 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7732 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7733 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7734 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7735 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7736 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7738 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7739 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7740 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7741 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7742 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7743 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,12.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7801 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-19.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 8415 components: - - pos: 7.5,18.5 + - type: Transform + pos: 7.5,18.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 8776 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 8777 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 8778 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 8779 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 8780 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 8781 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 8785 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8786 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8787 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8788 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8789 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8790 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8791 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8792 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8793 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9176 components: - - pos: -37.5,-0.5 + - type: Transform + pos: -37.5,-0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 9177 components: - - pos: -37.5,-2.5 + - type: Transform + pos: -37.5,-2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 9178 components: - - pos: -37.5,-3.5 + - type: Transform + pos: -37.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 9199 components: - - pos: -37.5,-1.5 + - type: Transform + pos: -37.5,-1.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 9201 components: - - pos: -37.5,-4.5 + - type: Transform + pos: -37.5,-4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 9222 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -36.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9223 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -38.5,15.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 9349 components: - - pos: -25.5,17.5 + - type: Transform + pos: -25.5,17.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9350 components: - - pos: -25.5,18.5 + - type: Transform + pos: -25.5,18.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9351 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -24.5,19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9352 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -23.5,19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9816 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-29.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10024 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,-11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10026 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,-11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10039 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,-11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10247 components: - - pos: -37.5,-7.5 + - type: Transform + pos: -37.5,-7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10248 components: - - pos: -37.5,-6.5 + - type: Transform + pos: -37.5,-6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10249 components: - - pos: -35.5,-7.5 + - type: Transform + pos: -35.5,-7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10250 components: - - pos: -35.5,-8.5 + - type: Transform + pos: -35.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10378 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,-29.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10379 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-29.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10380 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-29.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10382 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-28.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10383 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-28.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10384 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-28.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10387 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10388 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10389 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10390 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10391 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10392 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10393 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10394 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10396 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-13.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10397 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,-4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10398 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10399 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,-6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10400 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,-7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10402 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,-9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10403 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10405 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,-12.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10412 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 56.5,17.5 parent: 31 - type: Transform - uid: 10432 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10433 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10434 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10443 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -20.5,-12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10450 components: - - pos: -8.5,-23.5 + - type: Transform + pos: -8.5,-23.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10451 components: - - pos: -8.5,-24.5 + - type: Transform + pos: -8.5,-24.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10452 components: - - pos: -8.5,-25.5 + - type: Transform + pos: -8.5,-25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10453 components: - - pos: -8.5,-26.5 + - type: Transform + pos: -8.5,-26.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10454 components: - - pos: -8.5,-28.5 + - type: Transform + pos: -8.5,-28.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10455 components: - - pos: -8.5,-29.5 + - type: Transform + pos: -8.5,-29.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10456 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,-27.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10457 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-27.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10458 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-27.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10459 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-27.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10460 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-27.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10461 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-27.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10462 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,-27.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10469 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10470 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,-16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10471 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10472 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10479 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-17.5 parent: 31 - type: Transform - uid: 10483 components: - - pos: -7.5,-20.5 + - type: Transform + pos: -7.5,-20.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10484 components: - - pos: -7.5,-21.5 + - type: Transform + pos: -7.5,-21.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10485 components: - - pos: -7.5,-22.5 + - type: Transform + pos: -7.5,-22.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10486 components: - - pos: -7.5,-23.5 + - type: Transform + pos: -7.5,-23.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10487 components: - - pos: -7.5,-24.5 + - type: Transform + pos: -7.5,-24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10488 components: - - pos: -7.5,-25.5 + - type: Transform + pos: -7.5,-25.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10489 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-26.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10490 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,-26.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10491 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-26.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10492 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-26.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10493 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-26.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10494 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-26.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10914 components: - - pos: 49.5,-2.5 + - type: Transform + pos: 49.5,-2.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10915 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 50.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10916 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10917 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10918 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10919 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 55.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10920 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,-4.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10921 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,-5.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10922 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,-6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10923 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10924 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10925 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,-9.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10926 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10927 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 54.5,-7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10928 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 55.5,-7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10932 components: - - pos: 48.5,-2.5 + - type: Transform + pos: 48.5,-2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10933 components: - - pos: 48.5,-3.5 + - type: Transform + pos: 48.5,-3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10934 components: - - pos: 48.5,-4.5 + - type: Transform + pos: 48.5,-4.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10935 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 49.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10936 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 50.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10937 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10938 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10939 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10940 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 55.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10941 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 56.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10942 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 57.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10944 components: - - pos: 48.5,-6.5 + - type: Transform + pos: 48.5,-6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10945 components: - - pos: 48.5,-7.5 + - type: Transform + pos: 48.5,-7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10946 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 49.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10947 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 50.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10948 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10949 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10950 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10951 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10952 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 47.5,-9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10953 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 47.5,-10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11051 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 55.5,15.5 parent: 31 - type: Transform - uid: 11057 components: - - pos: 49.5,19.5 + - type: Transform + pos: 49.5,19.5 parent: 31 - type: Transform - uid: 11058 components: - - pos: 48.5,19.5 + - type: Transform + pos: 48.5,19.5 parent: 31 - type: Transform - uid: 11063 components: - - pos: 46.5,20.5 + - type: Transform + pos: 46.5,20.5 parent: 31 - type: Transform - uid: 11064 components: - - pos: 47.5,21.5 + - type: Transform + pos: 47.5,21.5 parent: 31 - type: Transform - uid: 11065 components: - - pos: 47.5,20.5 + - type: Transform + pos: 47.5,20.5 parent: 31 - type: Transform - uid: 11066 components: - - pos: 47.5,19.5 + - type: Transform + pos: 47.5,19.5 parent: 31 - type: Transform - uid: 11067 components: - - pos: 47.5,18.5 + - type: Transform + pos: 47.5,18.5 parent: 31 - type: Transform - uid: 11068 components: - - pos: 46.5,19.5 + - type: Transform + pos: 46.5,19.5 + parent: 31 + - uid: 11401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-4.5 parent: 31 - type: Transform + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-4.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 53 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 97 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 351 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -23.5,-11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 536 components: - - pos: -3.5,-16.5 + - type: Transform + pos: -3.5,-16.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 926 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1231 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 39.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1723 components: - - pos: 37.5,5.5 + - type: Transform + pos: 37.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1796 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -24.5,-12.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2282 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2868 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,-19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3386 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,-14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 3389 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,-15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3390 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -24.5,8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3420 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,-11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 3707 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3834 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-13.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 3860 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -37.5,13.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 3940 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,13.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4181 components: - - pos: -8.5,-21.5 + - type: Transform + pos: -8.5,-21.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4347 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4642 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-5.5 - parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4708 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 33.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 4731 components: - - pos: 38.5,3.5 + - type: Transform + pos: 38.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5064 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5342 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-17.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5374 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-23.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5380 components: - - pos: 8.5,-20.5 + - type: Transform + pos: 8.5,-20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5392 components: - - pos: 3.5,3.5 + - type: Transform + pos: 3.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5396 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5397 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5399 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5405 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 13.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5419 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5422 components: - - pos: 10.5,5.5 + - type: Transform + pos: 10.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5424 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 21.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5425 components: - - pos: 22.5,5.5 + - type: Transform + pos: 22.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5430 components: - - pos: 28.5,5.5 + - type: Transform + pos: 28.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5439 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 26.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5458 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5459 components: - - pos: 16.5,11.5 + - type: Transform + pos: 16.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5464 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 21.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5465 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5470 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5471 components: - - pos: 20.5,10.5 + - type: Transform + pos: 20.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5481 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 20.5,11.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5488 components: - - pos: 9.5,0.5 + - type: Transform + pos: 9.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5491 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5500 components: - - pos: -8.5,0.5 + - type: Transform + pos: -8.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5516 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5528 components: - - pos: -13.5,0.5 + - type: Transform + pos: -13.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5571 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5572 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5574 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5577 components: - - pos: 15.5,-10.5 + - type: Transform + pos: 15.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5579 components: - - pos: 12.5,-10.5 + - type: Transform + pos: 12.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5584 components: - - pos: 12.5,-8.5 + - type: Transform + pos: 12.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5586 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 16.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5587 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 17.5,-10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5592 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,-6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5600 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5626 components: - - pos: 15.5,-15.5 + - type: Transform + pos: 15.5,-15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5686 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 14.5,-20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5715 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5769 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,13.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5772 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -24.5,-3.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5801 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,12.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5806 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5807 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5812 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,26.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5822 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,23.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5829 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,18.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5834 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5835 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,13.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5856 components: - - pos: 3.5,25.5 + - type: Transform + pos: 3.5,25.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5867 components: - - pos: 7.5,24.5 + - type: Transform + pos: 7.5,24.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5881 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,17.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5955 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5960 components: - - pos: -2.5,5.5 + - type: Transform + pos: -2.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5963 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5964 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5969 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5973 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,7.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5980 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,10.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5989 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,14.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 5994 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6000 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,20.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6010 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6050 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6051 components: - - pos: -11.5,5.5 + - type: Transform + pos: -11.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6079 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -22.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6084 components: - - pos: -25.5,5.5 + - type: Transform + pos: -25.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6112 components: - - pos: -16.5,5.5 + - type: Transform + pos: -16.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6114 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-16.5 parent: 31 - type: Transform - uid: 6135 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -30.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6136 components: - - pos: -29.5,5.5 + - type: Transform + pos: -29.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6199 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6204 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 44.5,6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6213 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,15.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6216 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 43.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6223 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 46.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6226 components: - - pos: 47.5,3.5 + - type: Transform + pos: 47.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6249 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 22.5,15.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6334 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 32.5,10.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6906 components: - - pos: 55.5,18.5 + - type: Transform + pos: 55.5,18.5 parent: 31 - type: Transform - uid: 6943 components: - - pos: 49.5,3.5 + - type: Transform + pos: 49.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 6944 components: - - pos: 48.5,2.5 + - type: Transform + pos: 48.5,2.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7095 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -22.5,19.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7159 components: - - pos: 8.5,20.5 + - type: Transform + pos: 8.5,20.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7369 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-16.5 parent: 31 - type: Transform - uid: 7412 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-28.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7457 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -23.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 7465 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-29.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7504 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -36.5,0.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 8783 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,11.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8872 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-6.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 8877 components: - - pos: 34.5,5.5 + - type: Transform + pos: 34.5,5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8878 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 35.5,3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10041 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,-9.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10251 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,-6.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10401 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -23.5,-8.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10415 components: - - pos: -2.5,-14.5 + - type: Transform + pos: -2.5,-14.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10429 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-26.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10430 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-27.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10910 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 49.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10911 components: - - pos: 53.5,-3.5 + - type: Transform + pos: 53.5,-3.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10912 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 53.5,-7.5 parent: 31 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 10931 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 48.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10943 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 51.5,-5.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10954 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 48.5,-8.5 parent: 31 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPort entities: - uid: 188 components: - - pos: -11.5,-28.5 + - type: Transform + pos: -11.5,-28.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 1329 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 32.5,16.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 6502 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 31.5,9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6893 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 31.5,8.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPressurePump entities: - uid: 555 components: - - desc: A pump that moves tritium by pressure. + - type: MetaData + desc: A pump that moves tritium by pressure. name: tritium pump - type: MetaData - - pos: 45.5,17.5 - parent: 31 - type: Transform - - targetPressure: 1 - type: GasPressurePump - - joinedGrid: 31 - type: AtmosDevice + - type: Transform + pos: 45.5,17.5 + parent: 31 + - type: GasPressurePump + targetPressure: 1 + - type: AtmosDevice + joinedGrid: 31 - uid: 842 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-29.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 905 components: - - desc: A pump that moves O2 by pressure. + - type: MetaData + desc: A pump that moves O2 by pressure. name: O2 pump - type: MetaData - - pos: 37.5,17.5 + - type: Transform + pos: 37.5,17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 1513 components: - - desc: A pump that moves N2O by pressure. + - type: MetaData + desc: A pump that moves N2O by pressure. name: N2O pump - type: MetaData - - pos: 39.5,17.5 - parent: 31 - type: Transform - - targetPressure: 1 - type: GasPressurePump - - joinedGrid: 31 - type: AtmosDevice + - type: Transform + pos: 39.5,17.5 + parent: 31 + - type: GasPressurePump + targetPressure: 1 + - type: AtmosDevice + joinedGrid: 31 - uid: 1517 components: - - desc: A pump that moves N2 by pressure. + - type: MetaData + desc: A pump that moves N2 by pressure. name: N2 pump - type: MetaData - - pos: 35.5,17.5 + - type: Transform + pos: 35.5,17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 1570 components: - - desc: A pump that moves plasma by pressure. + - type: MetaData + desc: A pump that moves plasma by pressure. name: plasma pump - type: MetaData - - pos: 43.5,17.5 - parent: 31 - type: Transform - - targetPressure: 1 - type: GasPressurePump - - joinedGrid: 31 - type: AtmosDevice + - type: Transform + pos: 43.5,17.5 + parent: 31 + - type: GasPressurePump + targetPressure: 1 + - type: AtmosDevice + joinedGrid: 31 - uid: 1573 components: - - desc: A pump that moves CO2 by pressure. + - type: MetaData + desc: A pump that moves CO2 by pressure. name: CO2 pump - type: MetaData - - pos: 41.5,17.5 - parent: 31 - type: Transform - - targetPressure: 1 - type: GasPressurePump - - joinedGrid: 31 - type: AtmosDevice + - type: Transform + pos: 41.5,17.5 + parent: 31 + - type: GasPressurePump + targetPressure: 1 + - type: AtmosDevice + joinedGrid: 31 - uid: 3765 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 33.5,17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 4388 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 33.5,11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4389 components: - - pos: 34.5,11.5 + - type: Transform + pos: 34.5,11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6351 components: - - desc: A pump that moves H2O by pressure. + - type: MetaData + desc: A pump that moves H2O by pressure. name: H2O pump - type: MetaData - - pos: 47.5,17.5 + - type: Transform + pos: 47.5,17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 6357 components: - - desc: Pulls product from mixer. + - type: MetaData + desc: Pulls product from mixer. name: mixer product pump - type: MetaData - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,15.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#947507FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#947507FF' - uid: 6425 components: - - desc: Sends mix line to waste. + - type: MetaData + desc: Sends mix line to waste. name: mix to waste - type: MetaData - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#FF1212FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6584 components: - - desc: pumps mix line into mixer. + - type: MetaData + desc: pumps mix line into mixer. name: mixer input pump - type: MetaData - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 51.5,16.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 7663 components: - - pos: 9.5,-15.5 + - type: Transform + pos: 9.5,-15.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasThermoMachineFreezer entities: - uid: 5552 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-5.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 8860 components: - - pos: 38.5,11.5 + - type: Transform + pos: 38.5,11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: GasThermoMachineFreezerEnabled entities: - uid: 2215 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: GasThermoMachineHeater entities: - uid: 8861 components: - - pos: 39.5,11.5 + - type: Transform + pos: 39.5,11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: GasValve entities: - uid: 6479 components: - - pos: 50.5,19.5 + - type: Transform + pos: 50.5,19.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#FF1212FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasVentPump entities: - uid: 65 components: - - pos: 15.5,-7.5 + - type: Transform + pos: 15.5,-7.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 100 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 716 components: - - pos: 7.5,26.5 + - type: Transform + pos: 7.5,26.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 977 components: - - pos: 10.5,26.5 + - type: Transform + pos: 10.5,26.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1094 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.5,-9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1230 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,20.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1305 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -18.5,-12.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1688 components: - - pos: -36.5,18.5 + - type: Transform + pos: -36.5,18.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2213 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-14.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3116 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 26.5,9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3368 components: - - pos: -5.5,16.5 + - type: Transform + pos: -5.5,16.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3419 components: - - pos: 12.5,26.5 + - type: Transform + pos: 12.5,26.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3835 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 19.5,-17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4013 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-22.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4185 components: - - pos: -7.5,20.5 + - type: Transform + pos: -7.5,20.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4266 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,15.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4267 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 26.5,16.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4303 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-15.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4468 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,-28.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4484 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,-9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5365 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-5.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5472 components: - - pos: 3.5,6.5 + - type: Transform + pos: 3.5,6.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5476 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5479 components: - - pos: 14.5,11.5 + - type: Transform + pos: 14.5,11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5495 components: - - pos: 8.5,-0.5 + - type: Transform + pos: 8.5,-0.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5542 components: - - pos: -12.5,-0.5 + - type: Transform + pos: -12.5,-0.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5543 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5546 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -17.5,-1.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5605 components: - - pos: 16.5,-0.5 + - type: Transform + pos: 16.5,-0.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5606 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5638 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-16.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5666 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,-5.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5698 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5700 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-3.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5848 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,19.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5868 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,24.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5869 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,25.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5870 components: - - pos: 4.5,30.5 + - type: Transform + pos: 4.5,30.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5929 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5941 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,14.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5950 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6018 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,15.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6033 components: - - pos: -12.5,19.5 + - type: Transform + pos: -12.5,19.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6041 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6043 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6071 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6118 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -27.5,8.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6119 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -25.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6138 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -29.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6151 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -36.5,5.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6169 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -36.5,-6.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6184 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6197 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 39.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6262 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6268 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 38.5,-0.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6275 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 32.5,-2.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6294 components: - - pos: 51.5,-4.5 + - type: Transform + pos: 51.5,-4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6533 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 49.5,7.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7099 components: - - pos: 32.5,11.5 + - type: Transform + pos: 32.5,11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7185 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 56.5,1.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7335 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7746 components: - - pos: -35.5,14.5 + - type: Transform + pos: -35.5,14.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8384 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 47.5,-11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8417 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8794 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8873 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8875 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 28.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8880 components: - - pos: 46.5,3.5 + - type: Transform + pos: 46.5,3.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8944 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10376 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-30.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10377 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-30.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10386 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -25.5,-3.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10407 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -24.5,-14.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10424 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,-30.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10427 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-27.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10929 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 56.5,-9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10930 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,-5.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11399 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 31 + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 95 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,-11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 753 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 22.5,-11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 867 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1029 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,-16.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1032 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1140 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -20.5,-11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1542 components: - - pos: 35.5,4.5 + - type: Transform + pos: 35.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2208 components: - - pos: -38.5,18.5 + - type: Transform + pos: -38.5,18.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3117 components: - - pos: 21.5,12.5 + - type: Transform + pos: 21.5,12.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3118 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 26.5,10.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3274 components: - - pos: 41.5,4.5 + - type: Transform + pos: 41.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3840 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,-18.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4279 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4436 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4486 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,-11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4701 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4783 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5332 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5473 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5474 components: - - pos: 7.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5477 components: - - pos: 21.5,4.5 + - type: Transform + pos: 21.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5478 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 16.5,10.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5496 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-0.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5541 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -13.5,-0.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5544 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,-0.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5545 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -19.5,0.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5597 components: - - pos: 17.5,-1.5 + - type: Transform + pos: 17.5,-1.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5607 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5637 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-14.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5665 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 22.5,-6.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5704 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,-28.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5765 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,13.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5849 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,18.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5864 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,24.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5865 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5871 components: - - pos: 2.5,30.5 + - type: Transform + pos: 2.5,30.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5883 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,17.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5951 components: - - pos: 9.5,9.5 + - type: Transform + pos: 9.5,9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6024 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,14.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6032 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,20.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6042 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,8.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6044 components: - - pos: -1.5,4.5 + - type: Transform + pos: -1.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6080 components: - - pos: -14.5,4.5 + - type: Transform + pos: -14.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6117 components: - - pos: -27.5,10.5 + - type: Transform + pos: -27.5,10.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6120 components: - - pos: -22.5,4.5 + - type: Transform + pos: -22.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6137 components: - - pos: -30.5,4.5 + - type: Transform + pos: -30.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6152 components: - - pos: -36.5,4.5 + - type: Transform + pos: -36.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6168 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -36.5,-0.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6267 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 39.5,-0.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6276 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 33.5,-1.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6413 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 47.5,9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6552 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 34.5,9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6581 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.5,15.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7211 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 56.5,3.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7673 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-13.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7745 components: - - pos: -37.5,14.5 + - type: Transform + pos: -37.5,14.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8416 components: - - pos: 7.5,19.5 + - type: Transform + pos: 7.5,19.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8438 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-19.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8795 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,10.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8874 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,12.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8876 components: - - pos: 26.5,4.5 + - type: Transform + pos: 26.5,4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8879 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 47.5,2.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10252 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -36.5,-5.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10375 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-28.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10385 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,-3.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10406 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,-13.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10420 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-19.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10425 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,-27.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10426 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-26.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10495 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -32.5,-14.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10906 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 49.5,-4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10907 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 56.5,-4.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10908 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 56.5,-7.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10909 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 53.5,-11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 31 + - type: AtmosDevice + joinedGrid: 31 + - type: AtmosPipeColor + color: '#990000FF' - proto: Gauze entities: - uid: 1407 components: - - pos: 26.671059,21.801102 + - type: Transform + pos: 26.671059,21.801102 parent: 31 - type: Transform - uid: 10830 components: - - pos: 12.447606,-4.278471 + - type: Transform + pos: 12.447606,-4.278471 parent: 31 - type: Transform - proto: GlowstickBase entities: - uid: 8848 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 27.737583,15.662895 parent: 31 - type: Transform - uid: 8999 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 27.649036,15.662895 parent: 31 - type: Transform - uid: 9037 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 27.826128,15.662895 parent: 31 - type: Transform - proto: GlowstickBlue entities: - uid: 10987 components: - - pos: 52.729786,-1.2094907 + - type: Transform + pos: 52.729786,-1.2094907 parent: 31 - type: Transform - proto: GlowstickPurple entities: - uid: 10986 components: - - pos: -14.203654,-39.5871 + - type: Transform + pos: -14.203654,-39.5871 parent: 31 - type: Transform - proto: GoldOre1 entities: - uid: 10814 components: - - pos: 4.974391,-33.266117 + - type: Transform + pos: 4.974391,-33.266117 parent: 31 - type: Transform - proto: GravityGenerator entities: - uid: 7696 components: - - pos: 58.5,-2.5 + - type: Transform + pos: 58.5,-2.5 parent: 31 - type: Transform - proto: Grille entities: - uid: 47 components: - - pos: 19.5,20.5 + - type: Transform + pos: 19.5,20.5 parent: 31 - type: Transform - uid: 64 components: - - pos: 5.5,-4.5 + - type: Transform + pos: 5.5,-4.5 parent: 31 - type: Transform - uid: 77 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 44.5,-14.5 parent: 31 - type: Transform - uid: 78 components: - - pos: 5.5,-5.5 + - type: Transform + pos: 5.5,-5.5 parent: 31 - type: Transform - uid: 101 components: - - pos: -48.5,-12.5 + - type: Transform + pos: -48.5,-12.5 parent: 31 - type: Transform - uid: 138 components: - - pos: -49.5,-12.5 + - type: Transform + pos: -49.5,-12.5 parent: 31 - type: Transform - uid: 155 components: - - pos: 44.5,-20.5 + - type: Transform + pos: 44.5,-20.5 parent: 31 - type: Transform - uid: 156 components: - - pos: 45.5,-19.5 + - type: Transform + pos: 45.5,-19.5 parent: 31 - type: Transform - uid: 249 components: - - pos: 11.5,-16.5 + - type: Transform + pos: 11.5,-16.5 parent: 31 - type: Transform - uid: 255 components: - - pos: 11.5,-6.5 + - type: Transform + pos: 11.5,-6.5 parent: 31 - type: Transform - uid: 267 components: - - pos: -50.5,-8.5 + - type: Transform + pos: -50.5,-8.5 parent: 31 - type: Transform - uid: 338 components: - - pos: -8.5,6.5 + - type: Transform + pos: -8.5,6.5 parent: 31 - type: Transform - uid: 360 components: - - pos: -13.5,6.5 + - type: Transform + pos: -13.5,6.5 parent: 31 - type: Transform - uid: 469 components: - - pos: -35.5,11.5 + - type: Transform + pos: -35.5,11.5 parent: 31 - type: Transform - uid: 526 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-0.5 parent: 31 - type: Transform - uid: 571 components: - - pos: 2.5,22.5 + - type: Transform + pos: 2.5,22.5 parent: 31 - type: Transform - uid: 653 components: - - pos: 39.5,26.5 + - type: Transform + pos: 39.5,26.5 parent: 31 - type: Transform - uid: 655 components: - - pos: 35.5,26.5 + - type: Transform + pos: 35.5,26.5 parent: 31 - type: Transform - uid: 657 components: - - pos: -37.5,11.5 + - type: Transform + pos: -37.5,11.5 parent: 31 - type: Transform - uid: 665 components: - - pos: -41.5,5.5 + - type: Transform + pos: -41.5,5.5 parent: 31 - type: Transform - uid: 711 components: - - pos: 17.5,20.5 + - type: Transform + pos: 17.5,20.5 parent: 31 - type: Transform - uid: 749 components: - - pos: -44.5,1.5 + - type: Transform + pos: -44.5,1.5 parent: 31 - type: Transform - uid: 751 components: - - pos: -42.5,1.5 + - type: Transform + pos: -42.5,1.5 parent: 31 - type: Transform - uid: 754 components: - - pos: 36.5,26.5 + - type: Transform + pos: 36.5,26.5 parent: 31 - type: Transform - uid: 757 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 42.5,-14.5 parent: 31 - type: Transform - uid: 772 components: - - pos: -42.5,7.5 + - type: Transform + pos: -42.5,7.5 parent: 31 - type: Transform - uid: 801 components: - - pos: -6.5,-22.5 + - type: Transform + pos: -6.5,-22.5 parent: 31 - type: Transform - uid: 811 components: - - pos: -40.5,3.5 + - type: Transform + pos: -40.5,3.5 parent: 31 - type: Transform - uid: 835 components: - - pos: 52.5,-2.5 + - type: Transform + pos: 52.5,-2.5 parent: 31 - type: Transform - uid: 855 components: - - pos: 52.5,-6.5 + - type: Transform + pos: 52.5,-6.5 parent: 31 - type: Transform - uid: 856 components: - - pos: -42.5,3.5 + - type: Transform + pos: -42.5,3.5 parent: 31 - type: Transform - uid: 858 components: - - pos: -44.5,9.5 + - type: Transform + pos: -44.5,9.5 parent: 31 - type: Transform - uid: 877 components: - - pos: -4.5,32.5 + - type: Transform + pos: -4.5,32.5 parent: 31 - type: Transform - uid: 904 components: - - pos: 40.5,20.5 + - type: Transform + pos: 40.5,20.5 parent: 31 - type: Transform - uid: 937 components: - - pos: 19.5,21.5 + - type: Transform + pos: 19.5,21.5 parent: 31 - type: Transform - uid: 1016 components: - - pos: 4.5,22.5 + - type: Transform + pos: 4.5,22.5 parent: 31 - type: Transform - uid: 1022 components: - - pos: -40.5,1.5 + - type: Transform + pos: -40.5,1.5 parent: 31 - type: Transform - uid: 1106 components: - - pos: 44.5,20.5 + - type: Transform + pos: 44.5,20.5 parent: 31 - type: Transform - uid: 1131 components: - - pos: -41.5,4.5 + - type: Transform + pos: -41.5,4.5 parent: 31 - type: Transform - uid: 1133 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,18.5 parent: 31 - type: Transform - uid: 1180 components: - - pos: -41.5,9.5 + - type: Transform + pos: -41.5,9.5 parent: 31 - type: Transform - uid: 1192 components: - - pos: -19.5,2.5 + - type: Transform + pos: -19.5,2.5 parent: 31 - type: Transform - uid: 1193 components: - - pos: -18.5,2.5 + - type: Transform + pos: -18.5,2.5 parent: 31 - type: Transform - uid: 1225 components: - - pos: 25.5,10.5 + - type: Transform + pos: 25.5,10.5 parent: 31 - type: Transform - uid: 1237 components: - - pos: -42.5,9.5 + - type: Transform + pos: -42.5,9.5 parent: 31 - type: Transform - uid: 1267 components: - - pos: -17.5,-19.5 + - type: Transform + pos: -17.5,-19.5 parent: 31 - type: Transform - uid: 1268 components: - - pos: 36.5,-38.5 + - type: Transform + pos: 36.5,-38.5 parent: 31 - type: Transform - uid: 1278 components: - - pos: -10.5,19.5 + - type: Transform + pos: -10.5,19.5 parent: 31 - type: Transform - uid: 1396 components: - - pos: 10.5,31.5 + - type: Transform + pos: 10.5,31.5 parent: 31 - type: Transform - uid: 1414 components: - - pos: -9.5,7.5 + - type: Transform + pos: -9.5,7.5 parent: 31 - type: Transform - uid: 1416 components: - - pos: -13.5,9.5 + - type: Transform + pos: -13.5,9.5 parent: 31 - type: Transform - uid: 1430 components: - - pos: -43.5,3.5 + - type: Transform + pos: -43.5,3.5 parent: 31 - type: Transform - uid: 1436 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 23.5,-8.5 parent: 31 - type: Transform - uid: 1443 components: - - pos: 37.5,26.5 + - type: Transform + pos: 37.5,26.5 parent: 31 - type: Transform - uid: 1447 components: - - pos: 20.5,-10.5 + - type: Transform + pos: 20.5,-10.5 parent: 31 - type: Transform - uid: 1451 components: - - pos: -44.5,3.5 + - type: Transform + pos: -44.5,3.5 parent: 31 - type: Transform - uid: 1452 components: - - pos: -41.5,1.5 + - type: Transform + pos: -41.5,1.5 parent: 31 - type: Transform - uid: 1453 components: - - pos: -40.5,7.5 + - type: Transform + pos: -40.5,7.5 parent: 31 - type: Transform - uid: 1454 components: - - pos: -43.5,7.5 + - type: Transform + pos: -43.5,7.5 parent: 31 - type: Transform - uid: 1455 components: - - pos: -40.5,9.5 + - type: Transform + pos: -40.5,9.5 parent: 31 - type: Transform - uid: 1456 components: - - pos: -41.5,3.5 + - type: Transform + pos: -41.5,3.5 parent: 31 - type: Transform - uid: 1460 components: - - pos: -27.5,6.5 + - type: Transform + pos: -27.5,6.5 parent: 31 - type: Transform - uid: 1462 components: - - pos: -29.5,6.5 + - type: Transform + pos: -29.5,6.5 parent: 31 - type: Transform - uid: 1468 components: - - pos: 20.5,-9.5 + - type: Transform + pos: 20.5,-9.5 parent: 31 - type: Transform - uid: 1489 components: - - pos: -11.5,8.5 + - type: Transform + pos: -11.5,8.5 parent: 31 - type: Transform - uid: 1491 components: - - pos: 13.5,-4.5 + - type: Transform + pos: 13.5,-4.5 parent: 31 - type: Transform - uid: 1522 components: - - pos: 46.5,-19.5 + - type: Transform + pos: 46.5,-19.5 parent: 31 - type: Transform - uid: 1526 components: - - pos: 23.5,21.5 + - type: Transform + pos: 23.5,21.5 parent: 31 - type: Transform - uid: 1529 components: - - pos: 44.5,-21.5 + - type: Transform + pos: 44.5,-21.5 parent: 31 - type: Transform - uid: 1547 components: - - pos: 42.5,20.5 + - type: Transform + pos: 42.5,20.5 parent: 31 - type: Transform - uid: 1548 components: - - pos: 38.5,20.5 + - type: Transform + pos: 38.5,20.5 parent: 31 - type: Transform - uid: 1592 components: - - pos: 19.5,14.5 + - type: Transform + pos: 19.5,14.5 parent: 31 - type: Transform - uid: 1602 components: - - pos: 36.5,-0.5 + - type: Transform + pos: 36.5,-0.5 parent: 31 - type: Transform - uid: 1604 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 24.5,-8.5 parent: 31 - type: Transform - uid: 1629 components: - - pos: 37.5,1.5 + - type: Transform + pos: 37.5,1.5 parent: 31 - type: Transform - uid: 1663 components: - - pos: 17.5,-14.5 + - type: Transform + pos: 17.5,-14.5 parent: 31 - type: Transform - uid: 1666 components: - - pos: 49.5,-6.5 + - type: Transform + pos: 49.5,-6.5 parent: 31 - type: Transform - uid: 1692 components: - - pos: -43.5,1.5 + - type: Transform + pos: -43.5,1.5 parent: 31 - type: Transform - uid: 1706 components: - - pos: 41.5,26.5 + - type: Transform + pos: 41.5,26.5 parent: 31 - type: Transform - uid: 1708 components: - - pos: 17.5,21.5 + - type: Transform + pos: 17.5,21.5 parent: 31 - type: Transform - uid: 1709 components: - - pos: 34.5,7.5 + - type: Transform + pos: 34.5,7.5 parent: 31 - type: Transform - uid: 1710 components: - - pos: 32.5,7.5 + - type: Transform + pos: 32.5,7.5 parent: 31 - type: Transform - uid: 1720 components: - - pos: 32.5,1.5 + - type: Transform + pos: 32.5,1.5 parent: 31 - type: Transform - uid: 1721 components: - - pos: 34.5,1.5 + - type: Transform + pos: 34.5,1.5 parent: 31 - type: Transform - uid: 1722 components: - - pos: 30.5,4.5 + - type: Transform + pos: 30.5,4.5 parent: 31 - type: Transform - uid: 1741 components: - - pos: 44.5,-19.5 + - type: Transform + pos: 44.5,-19.5 parent: 31 - type: Transform - uid: 1757 components: - - pos: -49.5,-8.5 + - type: Transform + pos: -49.5,-8.5 parent: 31 - type: Transform - uid: 1759 components: - - pos: 19.5,6.5 + - type: Transform + pos: 19.5,6.5 parent: 31 - type: Transform - uid: 1760 components: - - pos: 20.5,6.5 + - type: Transform + pos: 20.5,6.5 parent: 31 - type: Transform - uid: 1761 components: - - pos: 21.5,6.5 + - type: Transform + pos: 21.5,6.5 parent: 31 - type: Transform - uid: 1762 components: - - pos: 22.5,6.5 + - type: Transform + pos: 22.5,6.5 parent: 31 - type: Transform - uid: 1777 components: - - pos: 17.5,9.5 + - type: Transform + pos: 17.5,9.5 parent: 31 - type: Transform - uid: 1803 components: - - pos: 8.5,6.5 + - type: Transform + pos: 8.5,6.5 parent: 31 - type: Transform - uid: 1871 components: - - pos: -1.5,27.5 + - type: Transform + pos: -1.5,27.5 parent: 31 - type: Transform - uid: 1872 components: - - pos: -0.5,27.5 + - type: Transform + pos: -0.5,27.5 parent: 31 - type: Transform - uid: 1874 components: - - pos: 10.5,29.5 + - type: Transform + pos: 10.5,29.5 parent: 31 - type: Transform - uid: 1875 components: - - pos: 9.5,31.5 + - type: Transform + pos: 9.5,31.5 parent: 31 - type: Transform - uid: 1879 components: - - pos: 7.5,33.5 + - type: Transform + pos: 7.5,33.5 parent: 31 - type: Transform - uid: 1880 components: - - pos: 6.5,33.5 + - type: Transform + pos: 6.5,33.5 parent: 31 - type: Transform - uid: 1881 components: - - pos: 5.5,33.5 + - type: Transform + pos: 5.5,33.5 parent: 31 - type: Transform - uid: 1882 components: - - pos: 4.5,33.5 + - type: Transform + pos: 4.5,33.5 parent: 31 - type: Transform - uid: 1883 components: - - pos: 3.5,33.5 + - type: Transform + pos: 3.5,33.5 parent: 31 - type: Transform - uid: 1884 components: - - pos: 2.5,33.5 + - type: Transform + pos: 2.5,33.5 parent: 31 - type: Transform - uid: 1885 components: - - pos: 1.5,33.5 + - type: Transform + pos: 1.5,33.5 parent: 31 - type: Transform - uid: 1886 components: - - pos: 0.5,33.5 + - type: Transform + pos: 0.5,33.5 parent: 31 - type: Transform - uid: 1887 components: - - pos: -0.5,33.5 + - type: Transform + pos: -0.5,33.5 parent: 31 - type: Transform - uid: 1891 components: - - pos: 6.5,19.5 + - type: Transform + pos: 6.5,19.5 parent: 31 - type: Transform - uid: 1904 components: - - pos: -7.5,18.5 + - type: Transform + pos: -7.5,18.5 parent: 31 - type: Transform - uid: 1949 components: - - pos: -10.5,21.5 + - type: Transform + pos: -10.5,21.5 parent: 31 - type: Transform - uid: 1959 components: - - pos: -11.5,7.5 + - type: Transform + pos: -11.5,7.5 parent: 31 - type: Transform - uid: 1969 components: - - pos: -10.5,14.5 + - type: Transform + pos: -10.5,14.5 parent: 31 - type: Transform - uid: 1996 components: - - pos: -7.5,9.5 + - type: Transform + pos: -7.5,9.5 parent: 31 - type: Transform - uid: 2064 components: - - pos: -28.5,6.5 + - type: Transform + pos: -28.5,6.5 parent: 31 - type: Transform - uid: 2095 components: - - pos: -25.5,9.5 + - type: Transform + pos: -25.5,9.5 parent: 31 - type: Transform - uid: 2099 components: - - pos: -9.5,8.5 + - type: Transform + pos: -9.5,8.5 parent: 31 - type: Transform - uid: 2115 components: - - pos: 13.5,-1.5 + - type: Transform + pos: 13.5,-1.5 parent: 31 - type: Transform - uid: 2136 components: - - pos: 8.5,-7.5 + - type: Transform + pos: 8.5,-7.5 parent: 31 - type: Transform - uid: 2149 components: - - pos: 11.5,2.5 + - type: Transform + pos: 11.5,2.5 parent: 31 - type: Transform - uid: 2150 components: - - pos: 10.5,2.5 + - type: Transform + pos: 10.5,2.5 parent: 31 - type: Transform - uid: 2151 components: - - pos: 9.5,2.5 + - type: Transform + pos: 9.5,2.5 parent: 31 - type: Transform - uid: 2152 components: - - pos: 8.5,2.5 + - type: Transform + pos: 8.5,2.5 parent: 31 - type: Transform - uid: 2153 components: - - pos: 7.5,2.5 + - type: Transform + pos: 7.5,2.5 parent: 31 - type: Transform - uid: 2205 components: - - pos: 20.5,-5.5 + - type: Transform + pos: 20.5,-5.5 parent: 31 - type: Transform - uid: 2209 components: - - pos: -6.5,-20.5 + - type: Transform + pos: -6.5,-20.5 parent: 31 - type: Transform - uid: 2245 components: - - pos: -7.5,6.5 + - type: Transform + pos: -7.5,6.5 parent: 31 - type: Transform - uid: 2277 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-24.5 parent: 31 - type: Transform - uid: 2307 components: - - pos: -35.5,-22.5 + - type: Transform + pos: -35.5,-22.5 parent: 31 - type: Transform - uid: 2423 components: - - pos: 28.5,-14.5 + - type: Transform + pos: 28.5,-14.5 parent: 31 - type: Transform - uid: 3109 components: - - pos: 60.5,11.5 + - type: Transform + pos: 60.5,11.5 parent: 31 - type: Transform - uid: 3152 components: - - pos: 47.5,-18.5 + - type: Transform + pos: 47.5,-18.5 parent: 31 - type: Transform - uid: 3157 components: - - pos: 56.5,-25.5 + - type: Transform + pos: 56.5,-25.5 parent: 31 - type: Transform - uid: 3158 components: - - pos: 56.5,-24.5 + - type: Transform + pos: 56.5,-24.5 parent: 31 - type: Transform - uid: 3415 components: - - pos: -16.5,-40.5 + - type: Transform + pos: -16.5,-40.5 parent: 31 - type: Transform - uid: 3826 components: - - pos: -14.5,29.5 + - type: Transform + pos: -14.5,29.5 parent: 31 - type: Transform - uid: 3827 components: - - pos: -15.5,28.5 + - type: Transform + pos: -15.5,28.5 parent: 31 - type: Transform - uid: 3828 components: - - pos: -18.5,29.5 + - type: Transform + pos: -18.5,29.5 parent: 31 - type: Transform - uid: 3842 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,13.5 parent: 31 - type: Transform - uid: 4032 components: - - pos: 28.5,-13.5 + - type: Transform + pos: 28.5,-13.5 parent: 31 - type: Transform - uid: 4114 components: - - pos: -12.5,6.5 + - type: Transform + pos: -12.5,6.5 parent: 31 - type: Transform - uid: 4115 components: - - pos: -3.5,6.5 + - type: Transform + pos: -3.5,6.5 parent: 31 - type: Transform - uid: 4117 components: - - pos: -3.5,8.5 + - type: Transform + pos: -3.5,8.5 parent: 31 - type: Transform - uid: 4223 components: - - pos: -2.5,9.5 + - type: Transform + pos: -2.5,9.5 parent: 31 - type: Transform - uid: 4241 components: - - pos: 7.5,36.5 + - type: Transform + pos: 7.5,36.5 parent: 31 - type: Transform - uid: 4308 components: - - pos: 5.5,36.5 + - type: Transform + pos: 5.5,36.5 parent: 31 - type: Transform - uid: 4376 components: - - pos: 41.5,-26.5 + - type: Transform + pos: 41.5,-26.5 parent: 31 - type: Transform - uid: 4377 components: - - pos: 45.5,-29.5 + - type: Transform + pos: 45.5,-29.5 parent: 31 - type: Transform - uid: 4386 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 37.5,-26.5 parent: 31 - type: Transform - uid: 4393 components: - - pos: 58.5,6.5 + - type: Transform + pos: 58.5,6.5 parent: 31 - type: Transform - uid: 4394 components: - - pos: 61.5,6.5 + - type: Transform + pos: 61.5,6.5 parent: 31 - type: Transform - uid: 4399 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 54.5,1.5 parent: 31 - type: Transform - uid: 4403 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 54.5,3.5 parent: 31 - type: Transform - uid: 4445 components: - - pos: 59.5,-10.5 + - type: Transform + pos: 59.5,-10.5 parent: 31 - type: Transform - uid: 4460 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -17.5,-24.5 parent: 31 - type: Transform - uid: 4487 components: - - pos: 34.5,-13.5 + - type: Transform + pos: 34.5,-13.5 parent: 31 - type: Transform - uid: 4500 components: - - pos: 54.5,-7.5 + - type: Transform + pos: 54.5,-7.5 parent: 31 - type: Transform - uid: 4510 components: - - pos: 31.5,-23.5 + - type: Transform + pos: 31.5,-23.5 parent: 31 - type: Transform - uid: 4532 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 36.5,-22.5 parent: 31 - type: Transform - uid: 4595 components: - - pos: 41.5,-22.5 + - type: Transform + pos: 41.5,-22.5 parent: 31 - type: Transform - uid: 4596 components: - - pos: 40.5,-22.5 + - type: Transform + pos: 40.5,-22.5 parent: 31 - type: Transform - uid: 4597 components: - - pos: 42.5,-26.5 + - type: Transform + pos: 42.5,-26.5 parent: 31 - type: Transform - uid: 4598 components: - - pos: 44.5,-27.5 + - type: Transform + pos: 44.5,-27.5 parent: 31 - type: Transform - uid: 4599 components: - - pos: 44.5,-28.5 + - type: Transform + pos: 44.5,-28.5 parent: 31 - type: Transform - uid: 4600 components: - - pos: 44.5,-29.5 + - type: Transform + pos: 44.5,-29.5 parent: 31 - type: Transform - uid: 4612 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 36.5,-26.5 parent: 31 - type: Transform - uid: 4614 components: - - pos: 34.5,-12.5 + - type: Transform + pos: 34.5,-12.5 parent: 31 - type: Transform - uid: 4618 components: - - pos: 51.5,-30.5 + - type: Transform + pos: 51.5,-30.5 parent: 31 - type: Transform - uid: 4619 components: - - pos: 53.5,-29.5 + - type: Transform + pos: 53.5,-29.5 parent: 31 - type: Transform - uid: 4620 components: - - pos: 54.5,-28.5 + - type: Transform + pos: 54.5,-28.5 parent: 31 - type: Transform - uid: 4621 components: - - pos: 56.5,-26.5 + - type: Transform + pos: 56.5,-26.5 parent: 31 - type: Transform - uid: 4622 components: - - pos: 55.5,-22.5 + - type: Transform + pos: 55.5,-22.5 parent: 31 - type: Transform - uid: 4624 components: - - pos: 56.5,-23.5 + - type: Transform + pos: 56.5,-23.5 parent: 31 - type: Transform - uid: 4625 components: - - pos: 56.5,-22.5 + - type: Transform + pos: 56.5,-22.5 parent: 31 - type: Transform - uid: 4660 components: - - pos: 31.5,-25.5 + - type: Transform + pos: 31.5,-25.5 parent: 31 - type: Transform - uid: 4686 components: - - pos: 4.5,36.5 + - type: Transform + pos: 4.5,36.5 parent: 31 - type: Transform - uid: 4702 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,18.5 parent: 31 - type: Transform - uid: 4844 components: - - pos: 12.5,-32.5 + - type: Transform + pos: 12.5,-32.5 parent: 31 - type: Transform - uid: 4846 components: - - pos: 2.5,-31.5 + - type: Transform + pos: 2.5,-31.5 parent: 31 - type: Transform - uid: 4847 components: - - pos: 3.5,-31.5 + - type: Transform + pos: 3.5,-31.5 parent: 31 - type: Transform - uid: 4848 components: - - pos: 4.5,-31.5 + - type: Transform + pos: 4.5,-31.5 parent: 31 - type: Transform - uid: 4879 components: - - pos: -2.5,6.5 + - type: Transform + pos: -2.5,6.5 parent: 31 - type: Transform - uid: 4881 components: - - pos: -0.5,6.5 + - type: Transform + pos: -0.5,6.5 parent: 31 - type: Transform - uid: 4926 components: - - pos: 15.5,20.5 + - type: Transform + pos: 15.5,20.5 parent: 31 - type: Transform - uid: 4928 components: - - pos: 15.5,21.5 + - type: Transform + pos: 15.5,21.5 parent: 31 - type: Transform - uid: 5066 components: - - pos: -1.5,9.5 + - type: Transform + pos: -1.5,9.5 parent: 31 - type: Transform - uid: 5067 components: - - pos: -3.5,9.5 + - type: Transform + pos: -3.5,9.5 parent: 31 - type: Transform - uid: 5071 components: - - pos: 13.5,1.5 + - type: Transform + pos: 13.5,1.5 parent: 31 - type: Transform - uid: 5072 components: - - pos: 13.5,-2.5 + - type: Transform + pos: 13.5,-2.5 parent: 31 - type: Transform - uid: 5082 components: - - pos: 13.5,0.5 + - type: Transform + pos: 13.5,0.5 parent: 31 - type: Transform - uid: 5102 components: - - pos: 51.5,-6.5 + - type: Transform + pos: 51.5,-6.5 parent: 31 - type: Transform - uid: 5111 components: - - pos: -0.5,36.5 + - type: Transform + pos: -0.5,36.5 parent: 31 - type: Transform - uid: 5117 components: - - pos: -3.5,7.5 + - type: Transform + pos: -3.5,7.5 parent: 31 - type: Transform - uid: 5139 components: - - pos: 8.5,-11.5 + - type: Transform + pos: 8.5,-11.5 parent: 31 - type: Transform - uid: 5198 components: - - pos: -28.5,18.5 + - type: Transform + pos: -28.5,18.5 parent: 31 - type: Transform - uid: 5199 components: - - pos: -29.5,18.5 + - type: Transform + pos: -29.5,18.5 parent: 31 - type: Transform - uid: 5215 components: - - pos: -10.5,13.5 + - type: Transform + pos: -10.5,13.5 parent: 31 - type: Transform - uid: 5227 components: - - pos: 11.5,-15.5 + - type: Transform + pos: 11.5,-15.5 parent: 31 - type: Transform - uid: 5244 components: - - pos: -39.5,21.5 + - type: Transform + pos: -39.5,21.5 parent: 31 - type: Transform - uid: 5251 components: - - pos: -39.5,27.5 + - type: Transform + pos: -39.5,27.5 parent: 31 - type: Transform - uid: 5313 components: - - pos: -43.5,9.5 + - type: Transform + pos: -43.5,9.5 parent: 31 - type: Transform - uid: 5898 components: - - pos: -41.5,7.5 + - type: Transform + pos: -41.5,7.5 parent: 31 - type: Transform - uid: 5978 components: - - pos: -54.5,-9.5 + - type: Transform + pos: -54.5,-9.5 parent: 31 - type: Transform - uid: 6277 components: - - pos: -9.5,32.5 + - type: Transform + pos: -9.5,32.5 parent: 31 - type: Transform - uid: 6280 components: - - pos: -10.5,32.5 + - type: Transform + pos: -10.5,32.5 parent: 31 - type: Transform - uid: 6287 components: - - pos: 54.5,-8.5 + - type: Transform + pos: 54.5,-8.5 parent: 31 - type: Transform - uid: 6288 components: - - pos: -6.5,34.5 + - type: Transform + pos: -6.5,34.5 parent: 31 - type: Transform - uid: 6366 components: - - pos: 22.5,14.5 + - type: Transform + pos: 22.5,14.5 parent: 31 - type: Transform - uid: 6367 components: - - pos: 40.5,18.5 + - type: Transform + pos: 40.5,18.5 parent: 31 - type: Transform - uid: 6369 components: - - pos: 42.5,18.5 + - type: Transform + pos: 42.5,18.5 parent: 31 - type: Transform - uid: 6380 components: - - pos: 39.5,18.5 + - type: Transform + pos: 39.5,18.5 parent: 31 - type: Transform - uid: 6381 components: - - pos: 38.5,18.5 + - type: Transform + pos: 38.5,18.5 parent: 31 - type: Transform - uid: 6383 components: - - pos: 37.5,18.5 + - type: Transform + pos: 37.5,18.5 parent: 31 - type: Transform - uid: 6391 components: - - pos: 35.5,18.5 + - type: Transform + pos: 35.5,18.5 parent: 31 - type: Transform - uid: 6401 components: - - pos: 34.5,18.5 + - type: Transform + pos: 34.5,18.5 parent: 31 - type: Transform - uid: 6405 components: - - pos: 23.5,20.5 + - type: Transform + pos: 23.5,20.5 parent: 31 - type: Transform - uid: 6415 components: - - pos: 56.5,15.5 + - type: Transform + pos: 56.5,15.5 parent: 31 - type: Transform - uid: 6440 components: - - pos: 43.5,18.5 + - type: Transform + pos: 43.5,18.5 parent: 31 - type: Transform - uid: 6445 components: - - pos: 45.5,18.5 + - type: Transform + pos: 45.5,18.5 parent: 31 - type: Transform - uid: 6453 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,11.5 parent: 31 - type: Transform - uid: 6455 components: - - pos: 33.5,18.5 + - type: Transform + pos: 33.5,18.5 parent: 31 - type: Transform - uid: 6458 components: - - pos: 45.5,7.5 + - type: Transform + pos: 45.5,7.5 parent: 31 - type: Transform - uid: 6462 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,10.5 parent: 31 - type: Transform - uid: 6464 components: - - pos: 45.5,9.5 + - type: Transform + pos: 45.5,9.5 parent: 31 - type: Transform - uid: 6472 components: - - pos: 47.5,18.5 + - type: Transform + pos: 47.5,18.5 parent: 31 - type: Transform - uid: 6503 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 55.5,24.5 parent: 31 - type: Transform - uid: 6504 components: - - pos: 44.5,18.5 + - type: Transform + pos: 44.5,18.5 parent: 31 - type: Transform - uid: 6505 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,12.5 parent: 31 - type: Transform - uid: 6508 components: - - pos: 46.5,18.5 + - type: Transform + pos: 46.5,18.5 parent: 31 - type: Transform - uid: 6551 components: - - pos: 48.5,18.5 + - type: Transform + pos: 48.5,18.5 parent: 31 - type: Transform - uid: 6578 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,16.5 parent: 31 - type: Transform - uid: 6600 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,9.5 parent: 31 - type: Transform - uid: 6613 components: - - pos: 36.5,18.5 + - type: Transform + pos: 36.5,18.5 parent: 31 - type: Transform - uid: 6641 components: - - pos: -41.5,-8.5 + - type: Transform + pos: -41.5,-8.5 parent: 31 - type: Transform - uid: 6643 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,16.5 parent: 31 - type: Transform - uid: 6644 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,17.5 parent: 31 - type: Transform - uid: 6645 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,23.5 parent: 31 - type: Transform - uid: 6646 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,19.5 parent: 31 - type: Transform - uid: 6647 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,18.5 parent: 31 - type: Transform - uid: 6690 components: - - pos: -30.5,29.5 + - type: Transform + pos: -30.5,29.5 parent: 31 - type: Transform - uid: 6691 components: - - pos: -30.5,28.5 + - type: Transform + pos: -30.5,28.5 parent: 31 - type: Transform - uid: 6725 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,22.5 parent: 31 - type: Transform - uid: 6726 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,24.5 parent: 31 - type: Transform - uid: 6728 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,24.5 parent: 31 - type: Transform - uid: 6729 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 56.5,24.5 parent: 31 - type: Transform - uid: 6730 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 57.5,24.5 parent: 31 - type: Transform - uid: 6731 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,24.5 parent: 31 - type: Transform - uid: 6812 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-42.5 parent: 31 - type: Transform - uid: 6815 components: - - pos: 41.5,18.5 + - type: Transform + pos: 41.5,18.5 parent: 31 - type: Transform - uid: 6863 components: - - pos: 27.5,22.5 + - type: Transform + pos: 27.5,22.5 parent: 31 - type: Transform - uid: 6873 components: - - pos: 59.5,11.5 + - type: Transform + pos: 59.5,11.5 parent: 31 - type: Transform - uid: 6875 components: - - pos: 54.5,15.5 + - type: Transform + pos: 54.5,15.5 parent: 31 - type: Transform - uid: 6933 components: - - pos: 49.5,18.5 + - type: Transform + pos: 49.5,18.5 parent: 31 - type: Transform - uid: 6950 components: - - pos: -7.5,34.5 + - type: Transform + pos: -7.5,34.5 parent: 31 - type: Transform - uid: 6951 components: - - pos: -5.5,32.5 + - type: Transform + pos: -5.5,32.5 parent: 31 - type: Transform - uid: 6952 components: - - pos: -10.5,31.5 + - type: Transform + pos: -10.5,31.5 parent: 31 - type: Transform - uid: 6958 components: - - pos: 51.5,-31.5 + - type: Transform + pos: 51.5,-31.5 parent: 31 - type: Transform - uid: 6961 components: - - pos: 47.5,-31.5 + - type: Transform + pos: 47.5,-31.5 parent: 31 - type: Transform - uid: 6962 components: - - pos: 47.5,-30.5 + - type: Transform + pos: 47.5,-30.5 parent: 31 - type: Transform - uid: 6963 components: - - pos: 46.5,-29.5 + - type: Transform + pos: 46.5,-29.5 parent: 31 - type: Transform - uid: 6964 components: - - pos: 34.5,-14.5 + - type: Transform + pos: 34.5,-14.5 parent: 31 - type: Transform - uid: 6967 components: - - pos: 40.5,-26.5 + - type: Transform + pos: 40.5,-26.5 parent: 31 - type: Transform - uid: 6971 components: - - pos: 42.5,-22.5 + - type: Transform + pos: 42.5,-22.5 parent: 31 - type: Transform - uid: 6993 components: - - pos: 35.5,-38.5 + - type: Transform + pos: 35.5,-38.5 parent: 31 - type: Transform - uid: 6994 components: - - pos: 32.5,-38.5 + - type: Transform + pos: 32.5,-38.5 parent: 31 - type: Transform - uid: 7011 components: - - pos: 51.5,-18.5 + - type: Transform + pos: 51.5,-18.5 parent: 31 - type: Transform - uid: 7012 components: - - pos: 51.5,-17.5 + - type: Transform + pos: 51.5,-17.5 parent: 31 - type: Transform - uid: 7013 components: - - pos: 50.5,-17.5 + - type: Transform + pos: 50.5,-17.5 parent: 31 - type: Transform - uid: 7014 components: - - pos: 49.5,-17.5 + - type: Transform + pos: 49.5,-17.5 parent: 31 - type: Transform - uid: 7015 components: - - pos: 48.5,-17.5 + - type: Transform + pos: 48.5,-17.5 parent: 31 - type: Transform - uid: 7016 components: - - pos: 47.5,-17.5 + - type: Transform + pos: 47.5,-17.5 parent: 31 - type: Transform - uid: 7017 components: - - pos: 52.5,-19.5 + - type: Transform + pos: 52.5,-19.5 parent: 31 - type: Transform - uid: 7018 components: - - pos: 53.5,-19.5 + - type: Transform + pos: 53.5,-19.5 parent: 31 - type: Transform - uid: 7019 components: - - pos: 54.5,-19.5 + - type: Transform + pos: 54.5,-19.5 parent: 31 - type: Transform - uid: 7020 components: - - pos: 54.5,-20.5 + - type: Transform + pos: 54.5,-20.5 parent: 31 - type: Transform - uid: 7021 components: - - pos: 54.5,-21.5 + - type: Transform + pos: 54.5,-21.5 parent: 31 - type: Transform - uid: 7022 components: - - pos: 55.5,-26.5 + - type: Transform + pos: 55.5,-26.5 parent: 31 - type: Transform - uid: 7023 components: - - pos: 54.5,-27.5 + - type: Transform + pos: 54.5,-27.5 parent: 31 - type: Transform - uid: 7024 components: - - pos: 54.5,-29.5 + - type: Transform + pos: 54.5,-29.5 parent: 31 - type: Transform - uid: 7025 components: - - pos: 52.5,-29.5 + - type: Transform + pos: 52.5,-29.5 parent: 31 - type: Transform - uid: 7028 components: - - pos: -7.5,35.5 + - type: Transform + pos: -7.5,35.5 parent: 31 - type: Transform - uid: 7038 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 37.5,-22.5 parent: 31 - type: Transform - uid: 7039 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 35.5,-22.5 parent: 31 - type: Transform - uid: 7044 components: - - pos: 28.5,-12.5 + - type: Transform + pos: 28.5,-12.5 parent: 31 - type: Transform - uid: 7150 components: - - pos: -5.5,34.5 + - type: Transform + pos: -5.5,34.5 parent: 31 - type: Transform - uid: 7220 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,17.5 parent: 31 - type: Transform - uid: 7221 components: - - pos: 34.5,20.5 + - type: Transform + pos: 34.5,20.5 parent: 31 - type: Transform - uid: 7225 components: - - pos: 55.5,18.5 + - type: Transform + pos: 55.5,18.5 parent: 31 - type: Transform - uid: 7226 components: - - pos: 36.5,20.5 + - type: Transform + pos: 36.5,20.5 parent: 31 - type: Transform - uid: 7231 components: - - pos: 0.5,36.5 + - type: Transform + pos: 0.5,36.5 parent: 31 - type: Transform - uid: 7233 components: - - pos: 13.5,-5.5 + - type: Transform + pos: 13.5,-5.5 parent: 31 - type: Transform - uid: 7274 components: - - pos: 12.5,-6.5 + - type: Transform + pos: 12.5,-6.5 parent: 31 - type: Transform - uid: 7358 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -42.5,15.5 parent: 31 - type: Transform - uid: 7375 components: - - pos: 61.5,-10.5 + - type: Transform + pos: 61.5,-10.5 parent: 31 - type: Transform - uid: 7376 components: - - pos: 4.5,35.5 + - type: Transform + pos: 4.5,35.5 parent: 31 - type: Transform - uid: 7425 components: - - pos: 61.5,-11.5 + - type: Transform + pos: 61.5,-11.5 parent: 31 - type: Transform - uid: 7447 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-32.5 parent: 31 - type: Transform - uid: 7448 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-32.5 parent: 31 - type: Transform - uid: 7449 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-32.5 parent: 31 - type: Transform - uid: 7450 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-32.5 parent: 31 - type: Transform - uid: 7471 components: - - pos: 11.5,-17.5 + - type: Transform + pos: 11.5,-17.5 parent: 31 - type: Transform - uid: 7472 components: - - pos: -31.5,19.5 + - type: Transform + pos: -31.5,19.5 parent: 31 - type: Transform - uid: 7485 components: - - pos: 1.5,-27.5 + - type: Transform + pos: 1.5,-27.5 parent: 31 - type: Transform - uid: 7487 components: - - pos: 1.5,36.5 + - type: Transform + pos: 1.5,36.5 parent: 31 - type: Transform - uid: 7488 components: - - pos: 61.5,-7.5 + - type: Transform + pos: 61.5,-7.5 parent: 31 - type: Transform - uid: 7547 components: - - pos: 34.5,26.5 + - type: Transform + pos: 34.5,26.5 parent: 31 - type: Transform - uid: 7632 components: - - pos: -39.5,19.5 + - type: Transform + pos: -39.5,19.5 parent: 31 - type: Transform - uid: 7636 components: - - pos: -47.5,-12.5 + - type: Transform + pos: -47.5,-12.5 parent: 31 - type: Transform - uid: 7672 components: - - pos: -16.5,7.5 + - type: Transform + pos: -16.5,7.5 parent: 31 - type: Transform - uid: 7677 components: - - pos: 62.5,-10.5 + - type: Transform + pos: 62.5,-10.5 parent: 31 - type: Transform - uid: 7678 components: - - pos: 61.5,-16.5 + - type: Transform + pos: 61.5,-16.5 parent: 31 - type: Transform - uid: 7679 components: - - pos: 61.5,-14.5 + - type: Transform + pos: 61.5,-14.5 parent: 31 - type: Transform - uid: 7688 components: - - pos: 23.5,19.5 + - type: Transform + pos: 23.5,19.5 parent: 31 - type: Transform - uid: 7692 components: - - pos: -39.5,12.5 + - type: Transform + pos: -39.5,12.5 parent: 31 - type: Transform - uid: 7697 components: - - pos: -46.5,-12.5 + - type: Transform + pos: -46.5,-12.5 parent: 31 - type: Transform - uid: 7713 components: - - pos: -54.5,-10.5 + - type: Transform + pos: -54.5,-10.5 parent: 31 - type: Transform - uid: 7748 components: - - pos: 49.5,-31.5 + - type: Transform + pos: 49.5,-31.5 parent: 31 - type: Transform - uid: 7798 components: - - pos: 13.5,-10.5 + - type: Transform + pos: 13.5,-10.5 parent: 31 - type: Transform - uid: 7800 components: - - pos: 13.5,-11.5 + - type: Transform + pos: 13.5,-11.5 parent: 31 - type: Transform - uid: 7824 components: - - pos: -5.5,-33.5 + - type: Transform + pos: -5.5,-33.5 parent: 31 - type: Transform - uid: 7830 components: - - pos: -42.5,-8.5 + - type: Transform + pos: -42.5,-8.5 parent: 31 - type: Transform - uid: 7838 components: - - pos: -18.5,26.5 + - type: Transform + pos: -18.5,26.5 parent: 31 - type: Transform - uid: 7839 components: - - pos: -15.5,26.5 + - type: Transform + pos: -15.5,26.5 parent: 31 - type: Transform - uid: 7840 components: - - pos: -12.5,26.5 + - type: Transform + pos: -12.5,26.5 parent: 31 - type: Transform - uid: 7864 components: - - pos: -11.5,29.5 + - type: Transform + pos: -11.5,29.5 parent: 31 - type: Transform - uid: 7867 components: - - pos: 28.5,-25.5 + - type: Transform + pos: 28.5,-25.5 parent: 31 - type: Transform - uid: 7868 components: - - pos: 28.5,-23.5 + - type: Transform + pos: 28.5,-23.5 parent: 31 - type: Transform - uid: 7947 components: - - pos: -40.5,-8.5 + - type: Transform + pos: -40.5,-8.5 parent: 31 - type: Transform - uid: 8021 components: - - pos: -15.5,29.5 + - type: Transform + pos: -15.5,29.5 parent: 31 - type: Transform - uid: 8022 components: - - pos: -16.5,29.5 + - type: Transform + pos: -16.5,29.5 parent: 31 - type: Transform - uid: 8023 components: - - pos: -17.5,29.5 + - type: Transform + pos: -17.5,29.5 parent: 31 - type: Transform - uid: 8024 components: - - pos: -22.5,29.5 + - type: Transform + pos: -22.5,29.5 parent: 31 - type: Transform - uid: 8025 components: - - pos: -29.5,29.5 + - type: Transform + pos: -29.5,29.5 parent: 31 - type: Transform - uid: 8027 components: - - pos: -10.5,29.5 + - type: Transform + pos: -10.5,29.5 parent: 31 - type: Transform - uid: 8032 components: - - pos: -20.5,29.5 + - type: Transform + pos: -20.5,29.5 parent: 31 - type: Transform - uid: 8036 components: - - pos: -19.5,29.5 + - type: Transform + pos: -19.5,29.5 parent: 31 - type: Transform - uid: 8037 components: - - pos: -12.5,29.5 + - type: Transform + pos: -12.5,29.5 parent: 31 - type: Transform - uid: 8038 components: - - pos: -13.5,29.5 + - type: Transform + pos: -13.5,29.5 parent: 31 - type: Transform - uid: 8048 components: - - pos: 29.5,21.5 + - type: Transform + pos: 29.5,21.5 parent: 31 - type: Transform - uid: 8052 components: - - pos: -41.5,6.5 + - type: Transform + pos: -41.5,6.5 parent: 31 - type: Transform - uid: 8056 components: - - pos: 33.5,26.5 + - type: Transform + pos: 33.5,26.5 parent: 31 - type: Transform - uid: 8084 components: - - pos: -16.5,6.5 + - type: Transform + pos: -16.5,6.5 parent: 31 - type: Transform - uid: 8108 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 61.5,0.5 parent: 31 - type: Transform - uid: 8109 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 61.5,1.5 parent: 31 - type: Transform - uid: 8110 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 61.5,2.5 parent: 31 - type: Transform - uid: 8111 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 61.5,3.5 parent: 31 - type: Transform - uid: 8112 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 61.5,4.5 parent: 31 - type: Transform - uid: 8145 components: - - pos: 52.5,8.5 + - type: Transform + pos: 52.5,8.5 parent: 31 - type: Transform - uid: 8216 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 35.5,-26.5 parent: 31 - type: Transform - uid: 8217 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 31.5,-24.5 parent: 31 - type: Transform - uid: 8222 components: - - pos: -32.5,19.5 + - type: Transform + pos: -32.5,19.5 parent: 31 - type: Transform - uid: 8293 components: - - pos: 50.5,-31.5 + - type: Transform + pos: 50.5,-31.5 parent: 31 - type: Transform - uid: 8294 components: - - pos: 48.5,-31.5 + - type: Transform + pos: 48.5,-31.5 parent: 31 - type: Transform - uid: 8305 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 58.5,-29.5 parent: 31 - type: Transform - uid: 8306 components: - - pos: 50.5,18.5 + - type: Transform + pos: 50.5,18.5 parent: 31 - type: Transform - uid: 8309 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 58.5,-32.5 parent: 31 - type: Transform - uid: 8310 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 58.5,-33.5 parent: 31 - type: Transform - uid: 8313 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,14.5 parent: 31 - type: Transform - uid: 8329 components: - - pos: 48.5,-6.5 + - type: Transform + pos: 48.5,-6.5 parent: 31 - type: Transform - uid: 8330 components: - - pos: 54.5,-2.5 + - type: Transform + pos: 54.5,-2.5 parent: 31 - type: Transform - uid: 8331 components: - - pos: 58.5,-16.5 + - type: Transform + pos: 58.5,-16.5 parent: 31 - type: Transform - uid: 8332 components: - - pos: 58.5,-18.5 + - type: Transform + pos: 58.5,-18.5 parent: 31 - type: Transform - uid: 8333 components: - - pos: 58.5,-19.5 + - type: Transform + pos: 58.5,-19.5 parent: 31 - type: Transform - uid: 8334 components: - - pos: 58.5,-21.5 + - type: Transform + pos: 58.5,-21.5 parent: 31 - type: Transform - uid: 8335 components: - - pos: 58.5,-22.5 + - type: Transform + pos: 58.5,-22.5 parent: 31 - type: Transform - uid: 8336 components: - - pos: 58.5,-23.5 + - type: Transform + pos: 58.5,-23.5 parent: 31 - type: Transform - uid: 8337 components: - - pos: 58.5,-24.5 + - type: Transform + pos: 58.5,-24.5 parent: 31 - type: Transform - uid: 8338 components: - - pos: 58.5,-25.5 + - type: Transform + pos: 58.5,-25.5 parent: 31 - type: Transform - uid: 8339 components: - - pos: 58.5,-27.5 + - type: Transform + pos: 58.5,-27.5 parent: 31 - type: Transform - uid: 8340 components: - - pos: 58.5,-34.5 + - type: Transform + pos: 58.5,-34.5 parent: 31 - type: Transform - uid: 8341 components: - - pos: 58.5,-37.5 + - type: Transform + pos: 58.5,-37.5 parent: 31 - type: Transform - uid: 8342 components: - - pos: 58.5,-38.5 + - type: Transform + pos: 58.5,-38.5 parent: 31 - type: Transform - uid: 8343 components: - - pos: 57.5,-38.5 + - type: Transform + pos: 57.5,-38.5 parent: 31 - type: Transform - uid: 8349 components: - - pos: 32.5,26.5 + - type: Transform + pos: 32.5,26.5 parent: 31 - type: Transform - uid: 8350 components: - - pos: 30.5,-38.5 + - type: Transform + pos: 30.5,-38.5 parent: 31 - type: Transform - uid: 8351 components: - - pos: 29.5,-38.5 + - type: Transform + pos: 29.5,-38.5 parent: 31 - type: Transform - uid: 8352 components: - - pos: 28.5,-38.5 + - type: Transform + pos: 28.5,-38.5 parent: 31 - type: Transform - uid: 8353 components: - - pos: 26.5,-38.5 + - type: Transform + pos: 26.5,-38.5 parent: 31 - type: Transform - uid: 8354 components: - - pos: 24.5,-38.5 + - type: Transform + pos: 24.5,-38.5 parent: 31 - type: Transform - uid: 8355 components: - - pos: 23.5,-38.5 + - type: Transform + pos: 23.5,-38.5 parent: 31 - type: Transform - uid: 8356 components: - - pos: 22.5,-38.5 + - type: Transform + pos: 22.5,-38.5 parent: 31 - type: Transform - uid: 8357 components: - - pos: 21.5,-38.5 + - type: Transform + pos: 21.5,-38.5 parent: 31 - type: Transform - uid: 8362 components: - - pos: 42.5,26.5 + - type: Transform + pos: 42.5,26.5 parent: 31 - type: Transform - uid: 8363 components: - - pos: 44.5,26.5 + - type: Transform + pos: 44.5,26.5 parent: 31 - type: Transform - uid: 8364 components: - - pos: 45.5,26.5 + - type: Transform + pos: 45.5,26.5 parent: 31 - type: Transform - uid: 8367 components: - - pos: -33.5,-15.5 + - type: Transform + pos: -33.5,-15.5 parent: 31 - type: Transform - uid: 8371 components: - - pos: 43.5,26.5 + - type: Transform + pos: 43.5,26.5 parent: 31 - type: Transform - uid: 8390 components: - - pos: 6.5,36.5 + - type: Transform + pos: 6.5,36.5 parent: 31 - type: Transform - uid: 8484 components: - - pos: -26.5,-27.5 + - type: Transform + pos: -26.5,-27.5 parent: 31 - type: Transform - uid: 8485 components: - - pos: -27.5,-27.5 + - type: Transform + pos: -27.5,-27.5 parent: 31 - type: Transform - uid: 8486 components: - - pos: -27.5,-25.5 + - type: Transform + pos: -27.5,-25.5 parent: 31 - type: Transform - uid: 8487 components: - - pos: -26.5,-25.5 + - type: Transform + pos: -26.5,-25.5 parent: 31 - type: Transform - uid: 8566 components: - - pos: -37.5,-24.5 + - type: Transform + pos: -37.5,-24.5 parent: 31 - type: Transform - uid: 8567 components: - - pos: -37.5,-23.5 + - type: Transform + pos: -37.5,-23.5 parent: 31 - type: Transform - uid: 8568 components: - - pos: -36.5,-22.5 + - type: Transform + pos: -36.5,-22.5 parent: 31 - type: Transform - uid: 8570 components: - - pos: -34.5,-22.5 + - type: Transform + pos: -34.5,-22.5 parent: 31 - type: Transform - uid: 8571 components: - - pos: -33.5,-23.5 + - type: Transform + pos: -33.5,-23.5 parent: 31 - type: Transform - uid: 8572 components: - - pos: -33.5,-24.5 + - type: Transform + pos: -33.5,-24.5 parent: 31 - type: Transform - uid: 8575 components: - - pos: -37.5,-28.5 + - type: Transform + pos: -37.5,-28.5 parent: 31 - type: Transform - uid: 8576 components: - - pos: -32.5,-33.5 + - type: Transform + pos: -32.5,-33.5 parent: 31 - type: Transform - uid: 8601 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -29.5,-32.5 parent: 31 - type: Transform - uid: 8819 components: - - pos: 4.5,26.5 + - type: Transform + pos: 4.5,26.5 parent: 31 - type: Transform - uid: 8820 components: - - pos: 2.5,26.5 + - type: Transform + pos: 2.5,26.5 parent: 31 - type: Transform - uid: 8946 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,2.5 parent: 31 - type: Transform - uid: 8947 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 31 - type: Transform - uid: 8948 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,2.5 parent: 31 - type: Transform - uid: 9012 components: - - pos: -4.5,-33.5 + - type: Transform + pos: -4.5,-33.5 parent: 31 - type: Transform - uid: 9027 components: - - pos: -8.5,-24.5 + - type: Transform + pos: -8.5,-24.5 parent: 31 - type: Transform - uid: 9032 components: - - pos: 33.5,-38.5 + - type: Transform + pos: 33.5,-38.5 parent: 31 - type: Transform - uid: 9124 components: - - pos: 5.5,-11.5 + - type: Transform + pos: 5.5,-11.5 parent: 31 - type: Transform - uid: 9125 components: - - pos: 5.5,-10.5 + - type: Transform + pos: 5.5,-10.5 parent: 31 - type: Transform - uid: 9126 components: - - pos: 5.5,-8.5 + - type: Transform + pos: 5.5,-8.5 parent: 31 - type: Transform - uid: 9127 components: - - pos: 5.5,-7.5 + - type: Transform + pos: 5.5,-7.5 parent: 31 - type: Transform - uid: 9136 components: - - pos: 26.5,22.5 - parent: 31 - type: Transform - - uid: 9172 - components: - - pos: -39.5,-5.5 + - type: Transform + pos: 26.5,22.5 parent: 31 - type: Transform - uid: 9174 components: - - pos: -37.5,-12.5 + - type: Transform + pos: -37.5,-12.5 parent: 31 - type: Transform - uid: 9175 components: - - pos: -39.5,-1.5 - parent: 31 - type: Transform - - uid: 9197 - components: - - pos: -39.5,-3.5 + - type: Transform + pos: -39.5,-1.5 parent: 31 - type: Transform - uid: 9208 components: - - pos: -36.5,-12.5 + - type: Transform + pos: -36.5,-12.5 parent: 31 - type: Transform - uid: 9209 components: - - pos: -35.5,-12.5 + - type: Transform + pos: -35.5,-12.5 parent: 31 - type: Transform - uid: 9219 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 31 - type: Transform - uid: 9231 components: - - pos: -41.5,-0.5 + - type: Transform + pos: -41.5,-0.5 parent: 31 - type: Transform - uid: 9232 components: - - pos: -42.5,-0.5 + - type: Transform + pos: -42.5,-0.5 parent: 31 - type: Transform - uid: 9233 components: - - pos: -43.5,-0.5 + - type: Transform + pos: -43.5,-0.5 parent: 31 - type: Transform - uid: 9234 components: - - pos: -43.5,11.5 + - type: Transform + pos: -43.5,11.5 parent: 31 - type: Transform - uid: 9235 components: - - pos: -42.5,11.5 + - type: Transform + pos: -42.5,11.5 parent: 31 - type: Transform - uid: 9236 components: - - pos: -41.5,11.5 + - type: Transform + pos: -41.5,11.5 parent: 31 - type: Transform - uid: 9257 components: - - pos: -7.5,-24.5 + - type: Transform + pos: -7.5,-24.5 parent: 31 - type: Transform - uid: 9259 components: - - pos: -27.5,-20.5 + - type: Transform + pos: -27.5,-20.5 parent: 31 - type: Transform - uid: 9260 components: - - pos: -26.5,-20.5 + - type: Transform + pos: -26.5,-20.5 parent: 31 - type: Transform - uid: 9291 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-30.5 parent: 31 - type: Transform - uid: 9331 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,2.5 parent: 31 - type: Transform - uid: 9332 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -29.5,2.5 parent: 31 - type: Transform - uid: 9362 components: - - pos: -25.5,-23.5 + - type: Transform + pos: -25.5,-23.5 parent: 31 - type: Transform - uid: 9408 components: - - pos: -4.5,-37.5 + - type: Transform + pos: -4.5,-37.5 parent: 31 - type: Transform - uid: 9409 components: - - pos: -3.5,-37.5 + - type: Transform + pos: -3.5,-37.5 parent: 31 - type: Transform - uid: 9410 components: - - pos: -2.5,-37.5 + - type: Transform + pos: -2.5,-37.5 parent: 31 - type: Transform - uid: 9413 components: - - pos: -1.5,-37.5 + - type: Transform + pos: -1.5,-37.5 parent: 31 - type: Transform - uid: 9419 components: - - pos: -14.5,-33.5 + - type: Transform + pos: -14.5,-33.5 parent: 31 - type: Transform - uid: 9420 components: - - pos: -15.5,-33.5 + - type: Transform + pos: -15.5,-33.5 parent: 31 - type: Transform - uid: 9421 components: - - pos: -16.5,-33.5 + - type: Transform + pos: -16.5,-33.5 parent: 31 - type: Transform - uid: 9422 components: - - pos: -15.5,-40.5 + - type: Transform + pos: -15.5,-40.5 parent: 31 - type: Transform - uid: 9423 components: - - pos: -14.5,-40.5 + - type: Transform + pos: -14.5,-40.5 parent: 31 - type: Transform - uid: 9424 components: - - pos: -13.5,-40.5 + - type: Transform + pos: -13.5,-40.5 parent: 31 - type: Transform - uid: 9515 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 49.5,-12.5 parent: 31 - type: Transform - uid: 9525 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-41.5 parent: 31 - type: Transform - uid: 9535 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 50.5,-12.5 parent: 31 - type: Transform - uid: 9536 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,-12.5 parent: 31 - type: Transform - uid: 9598 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,-14.5 parent: 31 - type: Transform - uid: 9658 components: - - pos: -3.5,-44.5 + - type: Transform + pos: -3.5,-44.5 parent: 31 - type: Transform - uid: 9659 components: - - pos: -2.5,-44.5 + - type: Transform + pos: -2.5,-44.5 parent: 31 - type: Transform - uid: 9660 components: - - pos: -0.5,-45.5 + - type: Transform + pos: -0.5,-45.5 parent: 31 - type: Transform - uid: 9661 components: - - pos: 0.5,-45.5 + - type: Transform + pos: 0.5,-45.5 parent: 31 - type: Transform - uid: 9662 components: - - pos: 1.5,-45.5 + - type: Transform + pos: 1.5,-45.5 parent: 31 - type: Transform - uid: 9692 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-40.5 parent: 31 - type: Transform - uid: 9693 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-42.5 parent: 31 - type: Transform - uid: 9700 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 58.5,-30.5 parent: 31 - type: Transform - uid: 9723 components: - - pos: 54.5,7.5 + - type: Transform + pos: 54.5,7.5 parent: 31 - type: Transform - uid: 9769 components: - - pos: -6.5,-33.5 + - type: Transform + pos: -6.5,-33.5 parent: 31 - type: Transform - uid: 9805 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-34.5 parent: 31 - type: Transform - uid: 9806 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-35.5 parent: 31 - type: Transform - uid: 9807 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 14.5,-36.5 parent: 31 - type: Transform - uid: 9808 components: - - pos: 12.5,-45.5 + - type: Transform + pos: 12.5,-45.5 parent: 31 - type: Transform - uid: 9809 components: - - pos: 11.5,-45.5 + - type: Transform + pos: 11.5,-45.5 parent: 31 - type: Transform - uid: 9810 components: - - pos: 8.5,-45.5 + - type: Transform + pos: 8.5,-45.5 parent: 31 - type: Transform - uid: 9811 components: - - pos: 5.5,-47.5 + - type: Transform + pos: 5.5,-47.5 parent: 31 - type: Transform - uid: 9812 components: - - pos: 4.5,-47.5 + - type: Transform + pos: 4.5,-47.5 parent: 31 - type: Transform - uid: 9813 components: - - pos: 3.5,-47.5 + - type: Transform + pos: 3.5,-47.5 parent: 31 - type: Transform - uid: 9814 components: - - pos: 4.5,-45.5 + - type: Transform + pos: 4.5,-45.5 parent: 31 - type: Transform - uid: 9815 components: - - pos: -0.5,-47.5 + - type: Transform + pos: -0.5,-47.5 parent: 31 - type: Transform - uid: 9817 components: - - pos: 0.5,-47.5 + - type: Transform + pos: 0.5,-47.5 parent: 31 - type: Transform - uid: 9823 components: - - pos: -22.5,-39.5 + - type: Transform + pos: -22.5,-39.5 parent: 31 - type: Transform - uid: 9824 components: - - pos: -22.5,-38.5 + - type: Transform + pos: -22.5,-38.5 parent: 31 - type: Transform - uid: 9826 components: - - pos: -22.5,-37.5 + - type: Transform + pos: -22.5,-37.5 parent: 31 - type: Transform - uid: 9827 components: - - pos: -21.5,-39.5 + - type: Transform + pos: -21.5,-39.5 parent: 31 - type: Transform - uid: 9832 components: - - pos: -22.5,-34.5 + - type: Transform + pos: -22.5,-34.5 parent: 31 - type: Transform - uid: 9837 components: - - pos: -22.5,-35.5 + - type: Transform + pos: -22.5,-35.5 parent: 31 - type: Transform - uid: 9838 components: - - pos: -39.5,14.5 + - type: Transform + pos: -39.5,14.5 parent: 31 - type: Transform - uid: 9889 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -42.5,13.5 parent: 31 - type: Transform - uid: 9896 components: - - pos: -9.5,26.5 + - type: Transform + pos: -9.5,26.5 parent: 31 - type: Transform - uid: 9949 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 43.5,-14.5 parent: 31 - type: Transform - uid: 10061 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,27.5 parent: 31 - type: Transform - uid: 10064 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 31 - type: Transform - uid: 10065 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,26.5 parent: 31 - type: Transform - uid: 10066 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,27.5 parent: 31 - type: Transform - uid: 10067 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,23.5 parent: 31 - type: Transform - uid: 10068 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,24.5 parent: 31 - type: Transform - uid: 10069 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,24.5 parent: 31 - type: Transform - uid: 10070 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,23.5 parent: 31 - type: Transform - uid: 10080 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.5,28.5 parent: 31 - type: Transform - uid: 10126 components: - - pos: -1.5,36.5 + - type: Transform + pos: -1.5,36.5 parent: 31 - type: Transform - uid: 10196 components: - - pos: -33.5,-14.5 + - type: Transform + pos: -33.5,-14.5 parent: 31 - type: Transform - uid: 10197 components: - - pos: -34.5,-15.5 + - type: Transform + pos: -34.5,-15.5 parent: 31 - type: Transform - uid: 10198 components: - - pos: -35.5,-15.5 + - type: Transform + pos: -35.5,-15.5 parent: 31 - type: Transform - uid: 10226 components: - - pos: 61.5,-15.5 + - type: Transform + pos: 61.5,-15.5 parent: 31 - type: Transform - uid: 10372 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -42.5,14.5 parent: 31 - type: Transform - uid: 10414 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,15.5 parent: 31 - type: Transform - uid: 10438 components: - - pos: -39.5,18.5 + - type: Transform + pos: -39.5,18.5 parent: 31 - type: Transform - uid: 10520 components: - - pos: 25.5,22.5 + - type: Transform + pos: 25.5,22.5 parent: 31 - type: Transform - uid: 10604 components: - - pos: 44.5,-8.5 + - type: Transform + pos: 44.5,-8.5 parent: 31 - type: Transform - uid: 10712 components: - - pos: -44.5,7.5 + - type: Transform + pos: -44.5,7.5 parent: 31 - type: Transform - uid: 10747 components: - - pos: -46.5,-8.5 + - type: Transform + pos: -46.5,-8.5 parent: 31 - type: Transform - uid: 10748 components: - - pos: -47.5,-8.5 + - type: Transform + pos: -47.5,-8.5 parent: 31 - type: Transform - uid: 10749 components: - - pos: -48.5,-8.5 + - type: Transform + pos: -48.5,-8.5 parent: 31 - type: Transform - uid: 10751 components: - - pos: -45.5,-8.5 + - type: Transform + pos: -45.5,-8.5 parent: 31 - type: Transform - uid: 11049 components: - - pos: 56.5,17.5 + - type: Transform + pos: 56.5,17.5 parent: 31 - type: Transform - uid: 11050 components: - - pos: 56.5,16.5 + - type: Transform + pos: 56.5,16.5 parent: 31 - type: Transform - uid: 11052 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,16.5 parent: 31 - type: Transform - uid: 11053 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,17.5 parent: 31 - type: Transform - uid: 11071 components: - - pos: 46.5,20.5 + - type: Transform + pos: 46.5,20.5 parent: 31 - type: Transform - uid: 11090 components: - - pos: 30.5,23.5 + - type: Transform + pos: 30.5,23.5 parent: 31 - type: Transform - uid: 11110 components: - - pos: -6.5,30.5 + - type: Transform + pos: -6.5,30.5 parent: 31 - type: Transform - uid: 11112 components: - - pos: -7.5,30.5 + - type: Transform + pos: -7.5,30.5 parent: 31 - type: Transform - uid: 11113 components: - - pos: -5.5,30.5 + - type: Transform + pos: -5.5,30.5 + parent: 31 + - uid: 11408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-4.5 + parent: 31 + - uid: 11409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-2.5 + parent: 31 + - uid: 11410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-6.5 parent: 31 - type: Transform - proto: GrilleBroken entities: - uid: 80 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -40.5,20.5 parent: 31 - type: Transform - uid: 552 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -42.5,12.5 parent: 31 - type: Transform - uid: 831 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,33.5 parent: 31 - type: Transform - uid: 1025 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,32.5 parent: 31 - type: Transform - uid: 1520 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,34.5 parent: 31 - type: Transform - uid: 3658 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,34.5 parent: 31 - type: Transform - uid: 3825 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -15.5,27.5 parent: 31 - type: Transform - uid: 4025 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,36.5 parent: 31 - type: Transform - uid: 4220 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,-38.5 parent: 31 - type: Transform - uid: 4444 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 61.5,-8.5 parent: 31 - type: Transform - uid: 4447 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 61.5,-13.5 parent: 31 - type: Transform - uid: 6467 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,24.5 parent: 31 - type: Transform - uid: 6742 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 51.5,24.5 parent: 31 - type: Transform - uid: 6744 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 58.5,21.5 parent: 31 - type: Transform - uid: 6745 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 50.5,24.5 parent: 31 - type: Transform - uid: 6746 components: - - pos: 58.5,20.5 + - type: Transform + pos: 58.5,20.5 parent: 31 - type: Transform - uid: 6747 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 54.5,24.5 parent: 31 - type: Transform - uid: 6841 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 58.5,15.5 parent: 31 - type: Transform - uid: 7080 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,-42.5 parent: 31 - type: Transform - uid: 7431 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,30.5 parent: 31 - type: Transform - uid: 7579 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 60.5,-15.5 parent: 31 - type: Transform - uid: 7676 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 61.5,-12.5 parent: 31 - type: Transform - uid: 8033 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -23.5,29.5 parent: 31 - type: Transform - uid: 8034 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,29.5 parent: 31 - type: Transform - uid: 8035 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,29.5 parent: 31 - type: Transform - uid: 8042 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -37.5,29.5 parent: 31 - type: Transform - uid: 8308 components: - - pos: 58.5,-31.5 + - type: Transform + pos: 58.5,-31.5 parent: 31 - type: Transform - uid: 8369 components: - - pos: 38.5,26.5 + - type: Transform + pos: 38.5,26.5 parent: 31 - type: Transform - uid: 8375 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,-38.5 parent: 31 - type: Transform - uid: 8376 components: - - pos: 22.5,-37.5 + - type: Transform + pos: 22.5,-37.5 parent: 31 - type: Transform - uid: 8377 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 25.5,-38.5 parent: 31 - type: Transform - uid: 8378 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 27.5,-38.5 parent: 31 - type: Transform - uid: 8379 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 27.5,-38.5 parent: 31 - type: Transform - uid: 8380 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 31.5,-38.5 parent: 31 - type: Transform - uid: 8386 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,36.5 parent: 31 - type: Transform - uid: 8387 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 56.5,-38.5 parent: 31 - type: Transform - uid: 8388 components: - - pos: 58.5,-36.5 + - type: Transform + pos: 58.5,-36.5 parent: 31 - type: Transform - uid: 8389 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 58.5,-35.5 parent: 31 - type: Transform - uid: 8391 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 58.5,-28.5 parent: 31 - type: Transform - uid: 8392 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 58.5,-26.5 parent: 31 - type: Transform - uid: 8393 components: - - pos: 58.5,-26.5 + - type: Transform + pos: 58.5,-26.5 parent: 31 - type: Transform - uid: 8394 components: - - pos: 58.5,-20.5 + - type: Transform + pos: 58.5,-20.5 parent: 31 - type: Transform - uid: 8395 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 58.5,-20.5 parent: 31 - type: Transform - uid: 8396 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,-17.5 parent: 31 - type: Transform - uid: 8397 components: - - pos: 58.5,-15.5 + - type: Transform + pos: 58.5,-15.5 parent: 31 - type: Transform - uid: 8398 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 58.5,-13.5 parent: 31 - type: Transform - uid: 8748 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 40.5,26.5 parent: 31 - type: Transform - uid: 8749 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 46.5,26.5 parent: 31 - type: Transform - uid: 9674 components: - - pos: 14.5,-33.5 + - type: Transform + pos: 14.5,-33.5 parent: 31 - type: Transform - uid: 9699 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 34.5,-38.5 parent: 31 - type: Transform - uid: 9819 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-45.5 parent: 31 - type: Transform - uid: 9844 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 31 - type: Transform - uid: 9845 components: - - pos: 4.5,-46.5 + - type: Transform + pos: 4.5,-46.5 parent: 31 - type: Transform - uid: 9846 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-46.5 parent: 31 - type: Transform - uid: 9848 components: - - pos: 11.5,-44.5 + - type: Transform + pos: 11.5,-44.5 parent: 31 - type: Transform - uid: 9850 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-45.5 parent: 31 - type: Transform - uid: 9851 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-45.5 parent: 31 - type: Transform - uid: 9852 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-37.5 parent: 31 - type: Transform - uid: 9853 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 13.5,-34.5 parent: 31 - type: Transform - uid: 9854 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-46.5 parent: 31 - type: Transform - uid: 9855 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-47.5 parent: 31 - type: Transform - uid: 9856 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-47.5 parent: 31 - type: Transform - uid: 9859 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -20.5,-39.5 parent: 31 - type: Transform - uid: 9860 components: - - pos: -22.5,-36.5 + - type: Transform + pos: -22.5,-36.5 parent: 31 - type: Transform - uid: 9871 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -22.5,-36.5 parent: 31 - type: Transform - uid: 9874 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -18.5,-39.5 parent: 31 - type: Transform - uid: 9879 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -21.5,-36.5 parent: 31 - type: Transform - uid: 10144 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-42.5 parent: 31 - type: Transform - uid: 10225 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 60.5,-10.5 parent: 31 - type: Transform - uid: 10227 components: - - pos: -10.5,30.5 + - type: Transform + pos: -10.5,30.5 parent: 31 - type: Transform - uid: 10228 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 61.5,-13.5 parent: 31 - type: Transform - uid: 10467 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-42.5 parent: 31 - type: Transform - uid: 10605 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,-9.5 parent: 31 - type: Transform - uid: 10708 components: - - pos: -0.5,37.5 + - type: Transform + pos: -0.5,37.5 parent: 31 - type: Transform - proto: GrilleSpawner entities: - uid: 3806 components: - - pos: -39.5,23.5 + - type: Transform + pos: -39.5,23.5 parent: 31 - type: Transform - uid: 3807 components: - - pos: -39.5,22.5 + - type: Transform + pos: -39.5,22.5 parent: 31 - type: Transform - uid: 3808 components: - - pos: -32.5,29.5 + - type: Transform + pos: -32.5,29.5 parent: 31 - type: Transform - uid: 3821 components: - - pos: -34.5,29.5 + - type: Transform + pos: -34.5,29.5 parent: 31 - type: Transform - uid: 3823 components: - - pos: -36.5,29.5 + - type: Transform + pos: -36.5,29.5 parent: 31 - type: Transform - uid: 3824 components: - - pos: -35.5,29.5 + - type: Transform + pos: -35.5,29.5 parent: 31 - type: Transform - uid: 3829 components: - - pos: -31.5,29.5 + - type: Transform + pos: -31.5,29.5 parent: 31 - type: Transform - uid: 3862 components: - - pos: -33.5,29.5 + - type: Transform + pos: -33.5,29.5 parent: 31 - type: Transform - uid: 4195 components: - - pos: -39.5,25.5 + - type: Transform + pos: -39.5,25.5 parent: 31 - type: Transform - uid: 4585 components: - - pos: -39.5,24.5 + - type: Transform + pos: -39.5,24.5 parent: 31 - type: Transform - uid: 4896 components: - - pos: -39.5,26.5 + - type: Transform + pos: -39.5,26.5 parent: 31 - type: Transform - proto: GunSafeLaserCarbine entities: - uid: 2132 components: - - pos: -13.5,21.5 + - type: Transform + pos: -13.5,21.5 parent: 31 - type: Transform - proto: GunSafeRifleLecter entities: - uid: 7687 components: - - pos: -14.5,19.5 + - type: Transform + pos: -14.5,19.5 parent: 31 - type: Transform - proto: GunSafeSubMachineGunDrozd entities: - uid: 4302 components: - - pos: -14.5,21.5 + - type: Transform + pos: -14.5,21.5 parent: 31 - type: Transform - proto: Handcuffs entities: - uid: 8802 components: - - pos: 9.513287,30.488989 + - type: Transform + pos: 9.513287,30.488989 parent: 31 - type: Transform - proto: HandheldGPSBasic entities: - uid: 3890 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.615404,-28.415546 parent: 31 - type: Transform - uid: 4699 components: - - pos: 26.279863,21.455433 + - type: Transform + pos: 26.279863,21.455433 parent: 31 - type: Transform - uid: 10990 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.779633,-4.5862775 parent: 31 - type: Transform - uid: 10991 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.750116,-4.5862775 parent: 31 - type: Transform - proto: HandheldHealthAnalyzerUnpowered entities: - uid: 10030 components: - - pos: 17.362448,-18.309433 + - type: Transform + pos: 17.362448,-18.309433 parent: 31 - type: Transform - proto: HandheldStationMap entities: - uid: 5924 components: - - pos: 40.50493,-0.0047982335 + - type: Transform + pos: 40.50493,-0.0047982335 parent: 31 - type: Transform - proto: HandLabeler entities: - uid: 695 components: - - pos: 22.522892,12.524126 + - type: Transform + pos: 22.522892,12.524126 parent: 31 - type: Transform - uid: 2854 components: - - pos: -23.390205,-5.6188893 + - type: Transform + pos: -23.390205,-5.6188893 parent: 31 - type: Transform - uid: 7126 components: - - pos: 22.40483,12.64212 + - type: Transform + pos: 22.40483,12.64212 parent: 31 - type: Transform - uid: 7154 components: - - pos: 8.041532,18.530302 + - type: Transform + pos: 8.041532,18.530302 parent: 31 - type: Transform - uid: 10139 components: - - pos: -2.5260825,30.718403 + - type: Transform + pos: -2.5260825,30.718403 parent: 31 - type: Transform - proto: HarmonicaInstrument entities: - uid: 7248 components: - - pos: -18.398912,10.183618 + - type: Transform + pos: -18.398912,10.183618 parent: 31 - type: Transform - proto: HeatExchanger entities: - uid: 6580 components: - - pos: 49.5,23.5 + - type: Transform + pos: 49.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 7706 components: - - pos: 48.5,23.5 + - type: Transform + pos: 48.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11054 components: - - pos: 49.5,22.5 + - type: Transform + pos: 49.5,22.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11055 components: - - pos: 49.5,21.5 + - type: Transform + pos: 49.5,21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11056 components: - - pos: 49.5,20.5 + - type: Transform + pos: 49.5,20.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11059 components: - - pos: 48.5,20.5 + - type: Transform + pos: 48.5,20.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11060 components: - - pos: 48.5,21.5 + - type: Transform + pos: 48.5,21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11061 components: - - pos: 48.5,22.5 + - type: Transform + pos: 48.5,22.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: HighSecCommandLocked entities: - uid: 1052 components: - - flags: PvsPriority + - type: MetaData + flags: PvsPriority name: Vault - type: MetaData - - pos: 0.5,17.5 + - type: Transform + pos: 0.5,17.5 parent: 31 - type: Transform - uid: 9195 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,-9.5 parent: 31 - type: Transform - proto: HospitalCurtains entities: - uid: 9695 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-42.5 parent: 31 - type: Transform - uid: 9696 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-41.5 parent: 31 - type: Transform - uid: 9697 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-40.5 parent: 31 - type: Transform - proto: HospitalCurtainsOpen entities: - uid: 6587 components: - - pos: 8.5,-8.5 + - type: Transform + pos: 8.5,-8.5 parent: 31 - type: Transform - uid: 7111 components: - - pos: 8.5,-10.5 + - type: Transform + pos: 8.5,-10.5 parent: 31 - type: Transform - uid: 8224 components: - - pos: 12.5,27.5 + - type: Transform + pos: 12.5,27.5 parent: 31 - type: Transform - proto: hydroponicsSoil entities: - uid: 9666 components: - - pos: 1.5,-44.5 + - type: Transform + pos: 1.5,-44.5 parent: 31 - type: Transform - uid: 9668 components: - - pos: -0.5,-44.5 + - type: Transform + pos: -0.5,-44.5 parent: 31 - type: Transform - proto: HydroponicsToolClippers entities: - uid: 1138 components: - - pos: -20.498135,-2.4408062 + - type: Transform + pos: -20.498135,-2.4408062 parent: 31 - type: Transform - uid: 7744 components: - - pos: -19.031883,8.817266 + - type: Transform + pos: -19.031883,8.817266 parent: 31 - type: Transform - proto: HydroponicsToolHatchet entities: - uid: 90 components: - - pos: 17.345112,-20.624432 + - type: Transform + pos: 17.345112,-20.624432 parent: 31 - type: Transform - uid: 1142 components: - - pos: -19.529385,-2.4251812 + - type: Transform + pos: -19.529385,-2.4251812 parent: 31 - type: Transform - proto: HydroponicsToolMiniHoe entities: - uid: 1055 components: - - pos: -20.498135,-2.3626812 + - type: Transform + pos: -20.498135,-2.3626812 parent: 31 - type: Transform - uid: 5633 components: - - pos: -19.592669,8.758269 + - type: Transform + pos: -19.592669,8.758269 parent: 31 - type: Transform - uid: 9672 components: - - pos: -4.4002256,-42.332767 + - type: Transform + pos: -4.4002256,-42.332767 parent: 31 - type: Transform - proto: HydroponicsToolScythe entities: - uid: 4130 components: - - pos: -19.498135,-2.3783062 + - type: Transform + pos: -19.498135,-2.3783062 parent: 31 - type: Transform - proto: HydroponicsToolSpade entities: - uid: 4131 components: - - pos: -20.529385,-2.3470562 + - type: Transform + pos: -20.529385,-2.3470562 parent: 31 - type: Transform - uid: 8850 components: - - pos: -4.6953764,-41.91979 + - type: Transform + pos: -4.6953764,-41.91979 parent: 31 - type: Transform - uid: 9506 components: - - pos: -18.353035,8.817266 + - type: Transform + pos: -18.353035,8.817266 parent: 31 - type: Transform - proto: hydroponicsTray entities: - uid: 775 components: - - pos: -17.5,0.5 + - type: Transform + pos: -17.5,0.5 parent: 31 - type: Transform - uid: 807 components: - - pos: -18.5,-1.5 + - type: Transform + pos: -18.5,-1.5 parent: 31 - type: Transform - uid: 2147 components: - - pos: -19.5,-1.5 + - type: Transform + pos: -19.5,-1.5 parent: 31 - type: Transform - uid: 2148 components: - - pos: -17.5,-0.5 + - type: Transform + pos: -17.5,-0.5 parent: 31 - type: Transform - uid: 2457 components: - - pos: -19.5,0.5 + - type: Transform + pos: -19.5,0.5 parent: 31 - type: Transform - uid: 2766 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -19.5,8.5 parent: 31 - type: Transform - uid: 2909 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -18.5,8.5 parent: 31 - type: Transform - uid: 2979 components: - - pos: -17.5,-1.5 + - type: Transform + pos: -17.5,-1.5 parent: 31 - type: Transform - uid: 3553 components: - - pos: -19.5,-0.5 + - type: Transform + pos: -19.5,-0.5 parent: 31 - type: Transform - uid: 3914 components: - - pos: -18.5,0.5 + - type: Transform + pos: -18.5,0.5 parent: 31 - type: Transform - uid: 3917 components: - - pos: -18.5,-0.5 + - type: Transform + pos: -18.5,-0.5 parent: 31 - type: Transform - proto: HydroponicsTrayMachineCircuitboard entities: - uid: 9665 components: - - pos: -2.8192544,-43.512707 + - type: Transform + pos: -2.8192544,-43.512707 parent: 31 - type: Transform - proto: Igniter entities: - uid: 4470 components: - - pos: 55.552643,16.227009 + - type: Transform + pos: 55.552643,16.227009 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 4469 - type: DeviceLinkSink - proto: InflatableDoorStack entities: - uid: 3907 components: - - pos: 45.490303,5.6922693 + - type: Transform + pos: 45.490303,5.6922693 parent: 31 - type: Transform - uid: 8991 components: - - pos: 43.533943,13.507707 + - type: Transform + pos: 43.533943,13.507707 parent: 31 - type: Transform - proto: InflatableWallStack entities: - uid: 3679 components: - - pos: 45.490303,5.574275 + - type: Transform + pos: 45.490303,5.574275 parent: 31 - type: Transform - uid: 8992 components: - - pos: 43.533943,13.493817 + - type: Transform + pos: 43.533943,13.493817 parent: 31 - type: Transform - proto: IngotGold entities: - uid: 1555 components: - - pos: -0.9189515,16.662592 + - type: Transform + pos: -0.9189515,16.662592 parent: 31 - type: Transform - proto: IngotSilver entities: - uid: 4144 components: - - pos: -3.428735,16.721615 + - type: Transform + pos: -3.428735,16.721615 parent: 31 - type: Transform - proto: IntercomAll entities: - uid: 9903 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,18.5 parent: 31 - type: Transform - uid: 9904 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,24.5 parent: 31 - type: Transform - proto: IntercomCommon entities: - uid: 9905 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -26.5,-3.5 parent: 31 - type: Transform - uid: 9906 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,-8.5 parent: 31 - type: Transform - uid: 9907 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -33.5,7.5 parent: 31 - type: Transform - uid: 9908 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,2.5 parent: 31 - type: Transform - uid: 9909 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 23.5,2.5 parent: 31 - type: Transform - uid: 9910 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,10.5 parent: 31 - type: Transform - uid: 9911 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,18.5 parent: 31 - type: Transform - uid: 9912 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-7.5 parent: 31 - type: Transform - uid: 9913 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 31 - type: Transform - proto: IntercomEngineering entities: - uid: 6528 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 32.5,20.5 parent: 31 - type: Transform - uid: 9897 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 29.5,2.5 parent: 31 - type: Transform - uid: 9898 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 40.5,10.5 parent: 31 - type: Transform - uid: 9899 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 45.5,10.5 parent: 31 - type: Transform - uid: 9900 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 47.5,0.5 parent: 31 - type: Transform - uid: 9901 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 56.5,-0.5 parent: 31 - type: Transform - uid: 9902 components: - - pos: 30.5,-0.5 + - type: Transform + pos: 30.5,-0.5 parent: 31 - type: Transform - uid: 10890 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 47.5,-2.5 parent: 31 - type: Transform - proto: IntercomMedical entities: - uid: 1822 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-6.5 parent: 31 - type: Transform - uid: 9881 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-12.5 parent: 31 - type: Transform - uid: 9882 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 16.5,-16.5 parent: 31 - type: Transform - uid: 9883 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 25.5,-5.5 parent: 31 - type: Transform - uid: 9884 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 19.5,-3.5 parent: 31 - type: Transform - proto: IntercomScience entities: - uid: 258 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-18.5 parent: 31 - type: Transform - uid: 1096 components: - - pos: 1.5,-25.5 + - type: Transform + pos: 1.5,-25.5 parent: 31 - type: Transform - uid: 4285 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,-19.5 parent: 31 - type: Transform - uid: 10536 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,-24.5 parent: 31 - type: Transform - proto: IntercomSecurity entities: - uid: 2088 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,11.5 parent: 31 - type: Transform - uid: 7827 components: - - pos: -6.5,6.5 + - type: Transform + pos: -6.5,6.5 parent: 31 - type: Transform - uid: 8908 components: - - pos: -15.5,15.5 + - type: Transform + pos: -15.5,15.5 parent: 31 - type: Transform - proto: IntercomService entities: - uid: 910 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-2.5 parent: 31 - type: Transform - uid: 3859 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,-11.5 parent: 31 - type: Transform - uid: 9876 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -17.5,2.5 parent: 31 - type: Transform - uid: 9878 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 31 - type: Transform - uid: 9885 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-28.5 parent: 31 - type: Transform - uid: 9893 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,-2.5 parent: 31 - type: Transform - proto: IntercomSupply entities: - uid: 6438 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 29.5,22.5 parent: 31 - type: Transform - uid: 9894 components: - - pos: 16.5,8.5 + - type: Transform + pos: 16.5,8.5 parent: 31 - type: Transform - uid: 9895 components: - - pos: 23.5,14.5 + - type: Transform + pos: 23.5,14.5 parent: 31 - type: Transform - proto: JanitorialTrolley entities: - uid: 2291 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -19.5,-11.5 parent: 31 - type: Transform - proto: JetpackBlueFilled entities: - uid: 8219 components: - - pos: 35.333374,-3.561453 + - type: Transform + pos: 35.333374,-3.561453 parent: 31 - type: Transform - proto: JetpackMini entities: - uid: 6251 components: - - pos: 6.5050597,9.5957365 + - type: Transform + pos: 6.5050597,9.5957365 parent: 31 - type: Transform - uid: 9480 components: - - pos: 6.5050597,9.9238615 + - type: Transform + pos: 6.5050597,9.9238615 parent: 31 - type: Transform - proto: JetpackMiniFilled entities: - uid: 9322 components: - - pos: 29.511814,16.65632 + - type: Transform + pos: 29.511814,16.65632 parent: 31 - type: Transform - proto: JetpackSecurityFilled entities: - uid: 1121 components: - - pos: -11.571391,18.68531 + - type: Transform + pos: -11.571391,18.68531 parent: 31 - type: Transform - proto: KalimbaInstrument entities: - uid: 10631 components: - - pos: 42.38984,-10.466663 + - type: Transform + pos: 42.38984,-10.466663 parent: 31 - type: Transform - proto: KitchenMicrowave entities: - uid: 893 components: - - pos: -14.5,-1.5 + - type: Transform + pos: -14.5,-1.5 parent: 31 - type: Transform - uid: 1357 components: - - pos: -15.5,11.5 + - type: Transform + pos: -15.5,11.5 parent: 31 - type: Transform - uid: 6692 components: - - pos: -7.5,-18.5 + - type: Transform + pos: -7.5,-18.5 parent: 31 - type: Transform - proto: KitchenReagentGrinder entities: - uid: 1166 components: - - pos: 19.5,1.5 + - type: Transform + pos: 19.5,1.5 parent: 31 - type: Transform - uid: 4156 components: - - pos: -14.5,-0.5 + - type: Transform + pos: -14.5,-0.5 parent: 31 - type: Transform - uid: 7405 components: - - pos: -16.5,11.5 + - type: Transform + pos: -16.5,11.5 parent: 31 - type: Transform - proto: KitchenSpike entities: - uid: 8432 components: - - pos: -10.5,-3.5 + - type: Transform + pos: -10.5,-3.5 parent: 31 - type: Transform - proto: Lamp entities: - uid: 616 components: - - pos: 28.30586,10.796111 + - type: Transform + pos: 28.30586,10.796111 parent: 31 - type: Transform - uid: 4095 components: - - pos: -30.466906,-1.5231686 + - type: Transform + pos: -30.466906,-1.5231686 parent: 31 - type: Transform - uid: 4925 components: - - pos: 37.66952,-0.30827445 + - type: Transform + pos: 37.66952,-0.30827445 parent: 31 - type: Transform - uid: 5057 components: - - pos: -16.880192,-25.028112 + - type: Transform + pos: -16.880192,-25.028112 parent: 31 - type: Transform - uid: 6022 components: - - pos: -7.462167,20.657312 + - type: Transform + pos: -7.462167,20.657312 parent: 31 - type: Transform - uid: 7279 components: - - pos: -4.6126356,-20.229195 + - type: Transform + pos: -4.6126356,-20.229195 parent: 31 - type: Transform - uid: 7645 components: - - pos: -11.52235,-31.126213 + - type: Transform + pos: -11.52235,-31.126213 parent: 31 - type: Transform - uid: 7852 components: - - pos: 26.628683,-25.257757 + - type: Transform + pos: 26.628683,-25.257757 parent: 31 - type: Transform - uid: 9143 components: - - pos: 14.479344,-6.1264844 + - type: Transform + pos: 14.479344,-6.1264844 parent: 31 - type: Transform - proto: LampGold entities: - uid: 490 components: - - pos: 10.372139,23.658413 + - type: Transform + pos: 10.372139,23.658413 parent: 31 - type: Transform - uid: 1422 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.852048,19.178608 parent: 31 - type: Transform - uid: 4092 components: - - pos: -30.54503,-5.3981686 + - type: Transform + pos: -30.54503,-5.3981686 parent: 31 - type: Transform - uid: 4178 components: - - pos: 0.41178536,-5.2814264 + - type: Transform + pos: 0.41178536,-5.2814264 parent: 31 - type: Transform - uid: 5091 components: - - pos: -1.6867096,1.4657487 + - type: Transform + pos: -1.6867096,1.4657487 parent: 31 - type: Transform - uid: 7149 components: - - pos: 6.5934343,24.65432 + - type: Transform + pos: 6.5934343,24.65432 parent: 31 - type: Transform - uid: 7319 components: - - pos: 11.433,-31.299496 + - type: Transform + pos: 11.433,-31.299496 parent: 31 - type: Transform - uid: 7826 components: - - pos: 8.54651,-28.293444 + - type: Transform + pos: 8.54651,-28.293444 parent: 31 - type: Transform - uid: 8725 components: - - pos: -36.511345,-29.258835 + - type: Transform + pos: -36.511345,-29.258835 parent: 31 - type: Transform - proto: LampInterrogator entities: - uid: 7367 components: - - pos: -0.6087055,14.0836935 + - type: Transform + pos: -0.6087055,14.0836935 parent: 31 - type: Transform - proto: Lantern entities: - uid: 2951 components: - - pos: -31.237429,17.709938 + - type: Transform + pos: -31.237429,17.709938 parent: 31 - type: Transform - uid: 9761 components: - - pos: -16.572165,-38.46513 + - type: Transform + pos: -16.572165,-38.46513 parent: 31 - type: Transform - proto: LargeBeaker entities: - uid: 5074 components: - - pos: 19.088842,1.7523946 + - type: Transform + pos: 19.088842,1.7523946 parent: 31 - type: Transform - uid: 5081 components: - - pos: 19.088842,1.5023946 + - type: Transform + pos: 19.088842,1.5023946 parent: 31 - type: Transform - proto: LidSalami entities: - uid: 10821 components: - - pos: -2.4760625,33.567844 + - type: Transform + pos: -2.4760625,33.567844 parent: 31 - type: Transform - proto: LightBulb entities: - uid: 3882 components: - - pos: -22.419735,-24.791834 + - type: Transform + pos: -22.419735,-24.791834 parent: 31 - type: Transform - proto: Lighter entities: - uid: 3506 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 28.678698,9.469505 parent: 31 - type: Transform - uid: 9757 components: - - pos: -16.29771,-39.00967 + - type: Transform + pos: -16.29771,-39.00967 parent: 31 - type: Transform - proto: LockerAtmosphericsFilled entities: - uid: 6562 components: - - pos: 44.5,12.5 + - type: Transform + pos: 44.5,12.5 parent: 31 - type: Transform - uid: 6563 components: - - pos: 44.5,11.5 + - type: Transform + pos: 44.5,11.5 parent: 31 - type: Transform - proto: LockerBoozeFilled entities: - uid: 584 components: - - pos: -11.5,-6.5 + - type: Transform + pos: -11.5,-6.5 parent: 31 - type: Transform - proto: LockerBotanistFilled entities: - uid: 782 components: - - pos: -17.5,1.5 + - type: Transform + pos: -17.5,1.5 parent: 31 - type: Transform - proto: LockerCaptainFilledHardsuit entities: - uid: 5737 components: - - pos: 10.5,26.5 + - type: Transform + pos: 10.5,26.5 parent: 31 - type: Transform - proto: LockerChemistryFilled entities: - uid: 5094 components: - - pos: 19.5,-2.5 + - type: Transform + pos: 19.5,-2.5 parent: 31 - type: Transform - proto: LockerChiefEngineerFilledHardsuit entities: - uid: 558 components: - - pos: 37.5,-1.5 + - type: Transform + pos: 37.5,-1.5 parent: 31 - type: Transform - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - uid: 4134 components: - - pos: 25.5,-9.5 + - type: Transform + pos: 25.5,-9.5 parent: 31 - type: Transform - proto: LockerElectricalSuppliesFilled entities: - uid: 3114 components: - - pos: 57.5,8.5 + - type: Transform + pos: 57.5,8.5 parent: 31 - type: Transform - uid: 9595 components: - - pos: 22.5,-14.5 + - type: Transform + pos: 22.5,-14.5 parent: 31 - type: Transform - proto: LockerEngineerFilled entities: - uid: 548 components: - - pos: 35.5,-0.5 + - type: Transform + pos: 35.5,-0.5 parent: 31 - type: Transform - uid: 818 components: - - pos: 35.5,-2.5 + - type: Transform + pos: 35.5,-2.5 parent: 31 - type: Transform - uid: 3369 components: - - pos: 35.5,-1.5 + - type: Transform + pos: 35.5,-1.5 parent: 31 - type: Transform - proto: LockerEvidence entities: - uid: 7908 components: - - pos: -9.5,13.5 + - type: Transform + pos: -9.5,13.5 parent: 31 - type: Transform - uid: 7944 components: - - pos: -9.5,14.5 + - type: Transform + pos: -9.5,14.5 parent: 31 - type: Transform - proto: LockerFreezer entities: - uid: 4175 components: - - pos: -11.5,-3.5 + - type: Transform + pos: -11.5,-3.5 parent: 31 - type: Transform - proto: LockerFreezerVaultFilled entities: - uid: 3849 components: - - pos: -0.5,18.5 + - type: Transform + pos: -0.5,18.5 parent: 31 - type: Transform - proto: LockerHeadOfPersonnelFilled entities: - uid: 6021 components: - - pos: 9.5,21.5 + - type: Transform + pos: 9.5,21.5 parent: 31 - type: Transform - proto: LockerHeadOfSecurityFilledHardsuit entities: - uid: 4046 components: - - pos: -9.5,22.5 + - type: Transform + pos: -9.5,22.5 parent: 31 - type: Transform - proto: LockerMedicalFilled entities: - uid: 802 components: - - pos: 23.5,-7.5 + - type: Transform + pos: 23.5,-7.5 parent: 31 - type: Transform - uid: 1149 components: - - pos: 22.5,-7.5 + - type: Transform + pos: 22.5,-7.5 parent: 31 - type: Transform - uid: 1151 components: - - pos: 21.5,-7.5 + - type: Transform + pos: 21.5,-7.5 parent: 31 - type: Transform - proto: LockerMedicineFilled entities: - uid: 4336 components: - - pos: 15.5,-11.5 + - type: Transform + pos: 15.5,-11.5 parent: 31 - type: Transform - uid: 7247 components: - - pos: 11.5,-7.5 + - type: Transform + pos: 11.5,-7.5 parent: 31 - type: Transform - proto: LockerParamedicFilled entities: - uid: 7489 components: - - pos: 24.5,-7.5 + - type: Transform + pos: 24.5,-7.5 parent: 31 - type: Transform - proto: LockerQuarterMasterFilled entities: - uid: 8847 components: - - pos: 27.5,10.5 + - type: Transform + pos: 27.5,10.5 parent: 31 - type: Transform - proto: LockerResearchDirectorFilledHardsuit entities: - uid: 9701 components: - - pos: -5.5,-23.5 + - type: Transform + pos: -5.5,-23.5 parent: 31 - type: Transform - proto: LockerSalvageSpecialistFilledHardsuit entities: - uid: 16 components: - - pos: 24.5,20.5 + - type: Transform + pos: 24.5,20.5 parent: 31 - type: Transform - uid: 9534 components: - - pos: 24.5,21.5 + - type: Transform + pos: 24.5,21.5 parent: 31 - type: Transform - uid: 9948 components: - - pos: 24.5,19.5 + - type: Transform + pos: 24.5,19.5 parent: 31 - type: Transform - proto: LockerScienceFilled entities: - uid: 823 components: - - pos: -13.5,-27.5 + - type: Transform + pos: -13.5,-27.5 parent: 31 - type: Transform - uid: 4459 components: - - pos: -14.5,-27.5 + - type: Transform + pos: -14.5,-27.5 parent: 31 - type: Transform - uid: 10441 components: - - pos: -7.5,-23.5 + - type: Transform + pos: -7.5,-23.5 parent: 31 - type: Transform - proto: LockerSecurityFilled entities: - uid: 803 components: - - pos: -12.5,13.5 + - type: Transform + pos: -12.5,13.5 parent: 31 - type: Transform - uid: 804 components: - - pos: -13.5,13.5 + - type: Transform + pos: -13.5,13.5 parent: 31 - type: Transform - uid: 7246 components: - - pos: -11.5,13.5 + - type: Transform + pos: -11.5,13.5 parent: 31 - type: Transform - proto: LockerWardenFilledHardsuit entities: - uid: 5 components: - - pos: 0.5,7.5 + - type: Transform + pos: 0.5,7.5 parent: 31 - type: Transform - proto: LockerWeldingSuppliesFilled entities: - uid: 10904 components: - - pos: 54.5,-1.5 + - type: Transform + pos: 54.5,-1.5 parent: 31 - type: Transform - proto: LogicGate entities: - uid: 11306 components: - - flags: InContainer - type: MetaData - - parent: 11305 - type: Transform - - links: + - type: MetaData + flags: InContainer + - type: Transform + parent: 11305 + - type: DeviceLinkSink + links: - 9067 - 3052 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 6522: - Output: DoorBolt 9068: - Output: DoorBolt - type: DeviceLinkSource - - canCollide: False - type: Physics + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 11307 components: - - flags: InContainer - type: MetaData - - parent: 11305 - type: Transform - - links: + - type: MetaData + flags: InContainer + - type: Transform + parent: 11305 + - type: DeviceLinkSink + links: - 6522 - 9068 - type: DeviceLinkSink - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 3052: - Output: DoorBolt 9067: - Output: DoorBolt - type: DeviceLinkSource - - canCollide: False - type: Physics + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: MachineAnomalyGenerator entities: - uid: 6098 components: - - pos: -5.5,-30.5 + - type: Transform + pos: -5.5,-30.5 parent: 31 - type: Transform - proto: MachineAnomalyVessel entities: - uid: 3422 components: - - pos: -7.5,-32.5 + - type: Transform + pos: -7.5,-32.5 parent: 31 - type: Transform - proto: MachineAPE entities: - uid: 5705 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-25.5 parent: 31 - type: Transform - uid: 9123 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-25.5 parent: 31 - type: Transform - proto: MachineArtifactAnalyzer entities: - uid: 9418 components: - - pos: -15.5,-30.5 + - type: Transform + pos: -15.5,-30.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 9292 - type: DeviceLinkSink - proto: MachineCentrifuge entities: - uid: 580 components: - - pos: 14.5,1.5 + - type: Transform + pos: 14.5,1.5 parent: 31 - type: Transform - proto: MachineElectrolysisUnit entities: - uid: 522 components: - - pos: 14.5,0.5 + - type: Transform + pos: 14.5,0.5 parent: 31 - type: Transform - proto: MachineFrame entities: - uid: 7464 components: - - pos: 10.5,-17.5 + - type: Transform + pos: 10.5,-17.5 parent: 31 - type: Transform - proto: MachineFrameDestroyed entities: - uid: 9667 components: - - pos: -3.5,-43.5 + - type: Transform + pos: -3.5,-43.5 parent: 31 - type: Transform - proto: MagazinePistol entities: - uid: 4977 components: - - pos: -14.297329,20.472649 + - type: Transform + pos: -14.297329,20.472649 parent: 31 - type: Transform - uid: 4983 components: - - pos: -14.297329,20.316399 + - type: Transform + pos: -14.297329,20.316399 parent: 31 - type: Transform - uid: 5141 components: - - pos: -14.250454,20.691399 + - type: Transform + pos: -14.250454,20.691399 parent: 31 - type: Transform - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 10123 components: - - pos: -8.471462,20.3102 + - type: Transform + pos: -8.471462,20.3102 parent: 31 - type: Transform - uid: 10124 components: - - pos: -8.471462,20.4352 + - type: Transform + pos: -8.471462,20.4352 parent: 31 - type: Transform - proto: MaintenanceFluffSpawner entities: - uid: 113 components: - - pos: -29.5,-5.5 + - type: Transform + pos: -29.5,-5.5 parent: 31 - type: Transform - uid: 3663 components: - - pos: -15.5,9.5 + - type: Transform + pos: -15.5,9.5 parent: 31 - type: Transform - uid: 3737 components: - - pos: -28.5,-19.5 + - type: Transform + pos: -28.5,-19.5 parent: 31 - type: Transform - uid: 4504 components: - - pos: 35.5,-13.5 + - type: Transform + pos: 35.5,-13.5 parent: 31 - type: Transform - uid: 5149 components: - - pos: 45.5,-2.5 + - type: Transform + pos: 45.5,-2.5 parent: 31 - type: Transform - uid: 5714 components: - - pos: -3.5,-12.5 + - type: Transform + pos: -3.5,-12.5 parent: 31 - type: Transform - uid: 7949 components: - - pos: 15.5,-19.5 + - type: Transform + pos: 15.5,-19.5 parent: 31 - type: Transform - uid: 8753 components: - - pos: -20.5,-23.5 + - type: Transform + pos: -20.5,-23.5 parent: 31 - type: Transform - uid: 9800 components: - - pos: -4.5,-39.5 + - type: Transform + pos: -4.5,-39.5 parent: 31 - type: Transform - uid: 11127 components: - - pos: -7.5,29.5 + - type: Transform + pos: -7.5,29.5 parent: 31 - type: Transform - uid: 11128 components: - - pos: -6.5,29.5 + - type: Transform + pos: -6.5,29.5 parent: 31 - type: Transform - proto: MaintenancePlantSpawner entities: - uid: 982 components: - - pos: -26.5,18.5 + - type: Transform + pos: -26.5,18.5 parent: 31 - type: Transform - uid: 1018 components: - - pos: -22.5,-19.5 + - type: Transform + pos: -22.5,-19.5 parent: 31 - type: Transform - uid: 1019 components: - - pos: 27.5,-6.5 + - type: Transform + pos: 27.5,-6.5 parent: 31 - type: Transform - uid: 1020 components: - - pos: -0.5,21.5 + - type: Transform + pos: -0.5,21.5 parent: 31 - type: Transform - uid: 7453 components: - - pos: -5.5,-12.5 + - type: Transform + pos: -5.5,-12.5 parent: 31 - type: Transform - uid: 9755 components: - - pos: -0.5,-44.5 + - type: Transform + pos: -0.5,-44.5 parent: 31 - type: Transform - uid: 9756 components: - - pos: 1.5,-44.5 + - type: Transform + pos: 1.5,-44.5 parent: 31 - type: Transform - uid: 9802 components: - - pos: -13.5,-34.5 + - type: Transform + pos: -13.5,-34.5 parent: 31 - type: Transform - proto: MaintenanceToolSpawner entities: - uid: 3738 components: - - pos: -27.5,-19.5 + - type: Transform + pos: -27.5,-19.5 parent: 31 - type: Transform - uid: 3739 components: - - pos: -32.5,-15.5 + - type: Transform + pos: -32.5,-15.5 parent: 31 - type: Transform - uid: 7409 components: - - pos: -5.5,-8.5 + - type: Transform + pos: -5.5,-8.5 parent: 31 - type: Transform - uid: 8018 components: - - pos: 38.5,-3.5 + - type: Transform + pos: 38.5,-3.5 parent: 31 - type: Transform - uid: 8558 components: - - pos: 10.5,-19.5 + - type: Transform + pos: 10.5,-19.5 parent: 31 - type: Transform - uid: 8754 components: - - pos: -20.5,-24.5 + - type: Transform + pos: -20.5,-24.5 parent: 31 - type: Transform - uid: 9754 components: - - pos: 11.5,-42.5 + - type: Transform + pos: 11.5,-42.5 parent: 31 - type: Transform - uid: 9801 components: - - pos: 10.5,-37.5 + - type: Transform + pos: 10.5,-37.5 parent: 31 - type: Transform - uid: 10528 components: - - pos: -16.5,-14.5 + - type: Transform + pos: -16.5,-14.5 parent: 31 - type: Transform - uid: 10651 components: - - pos: 44.5,-13.5 + - type: Transform + pos: 44.5,-13.5 parent: 31 - type: Transform - uid: 10798 components: - - pos: 21.5,-19.5 + - type: Transform + pos: 21.5,-19.5 parent: 31 - type: Transform - uid: 10824 components: - - pos: 15.5,16.5 + - type: Transform + pos: 15.5,16.5 parent: 31 - type: Transform - uid: 11125 components: - - pos: -5.5,29.5 + - type: Transform + pos: -5.5,29.5 parent: 31 - type: Transform - uid: 11230 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -27.5,-14.5 parent: 31 - type: Transform - proto: MaintenanceWeaponSpawner entities: - uid: 3306 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 46.5,-2.5 parent: 31 - type: Transform - uid: 3740 components: - - pos: -28.5,-19.5 + - type: Transform + pos: -28.5,-19.5 parent: 31 - type: Transform - uid: 4924 components: - - pos: -29.5,-4.5 + - type: Transform + pos: -29.5,-4.5 parent: 31 - type: Transform - uid: 7866 components: - - pos: 27.5,-25.5 + - type: Transform + pos: 27.5,-25.5 parent: 31 - type: Transform - uid: 9737 components: - - pos: 7.5,-41.5 + - type: Transform + pos: 7.5,-41.5 parent: 31 - type: Transform - uid: 11126 components: - - pos: -7.5,28.5 + - type: Transform + pos: -7.5,28.5 parent: 31 - type: Transform - proto: MaterialCloth entities: - uid: 7605 components: - - pos: 7.241931,18.889677 + - type: Transform + pos: 7.241931,18.889677 parent: 31 - type: Transform - proto: MaterialCloth1 entities: - uid: 9720 components: - - pos: 11.486905,-40.435936 + - type: Transform + pos: 11.486905,-40.435936 parent: 31 - type: Transform - uid: 9724 components: - - pos: 11.604966,-40.553932 + - type: Transform + pos: 11.604966,-40.553932 parent: 31 - type: Transform - proto: MaterialCloth10 entities: - uid: 2130 components: - - pos: 17.323816,-21.401403 + - type: Transform + pos: 17.323816,-21.401403 parent: 31 - type: Transform - proto: MaterialDiamond entities: - uid: 9628 components: - - pos: -3.6640515,18.450077 + - type: Transform + pos: -3.6640515,18.450077 parent: 31 - type: Transform - proto: MaterialDurathread entities: - uid: 7652 components: - - pos: 7.2571726,18.545927 + - type: Transform + pos: 7.2571726,18.545927 parent: 31 - type: Transform - proto: MaterialReclaimer entities: - uid: 9264 components: - - pos: -32.5,-17.5 + - type: Transform + pos: -32.5,-17.5 parent: 31 - type: Transform - proto: MaterialWoodPlank1 entities: - uid: 9680 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.17545861,-42.75658 parent: 31 - type: Transform - uid: 9681 components: - - pos: 0.0016323328,-43.228558 + - type: Transform + pos: 0.0016323328,-43.228558 parent: 31 - type: Transform - uid: 10636 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 41.622444,-9.954917 parent: 31 - type: Transform - uid: 10637 components: - - pos: 42.891594,-6.769076 + - type: Transform + pos: 42.891594,-6.769076 parent: 31 - type: Transform - uid: 10638 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 42.86208,-6.88707 parent: 31 - type: Transform - uid: 10639 components: - - pos: 40.648445,-8.538988 + - type: Transform + pos: 40.648445,-8.538988 parent: 31 - type: Transform - proto: MedicalBed entities: - uid: 630 components: - - pos: 7.5,-11.5 + - type: Transform + pos: 7.5,-11.5 parent: 31 - type: Transform - uid: 7812 components: - - pos: 7.5,-7.5 + - type: Transform + pos: 7.5,-7.5 parent: 31 - type: Transform - proto: MedicalTechFab entities: - uid: 9105 components: - - pos: 16.5,-11.5 + - type: Transform + pos: 16.5,-11.5 parent: 31 - type: Transform - - materialWhiteList: + - type: MaterialStorage + materialWhiteList: - Glass - Steel - Plastic - Durathread - Cloth - type: MaterialStorage - proto: MedkitBruteFilled entities: - uid: 7283 components: - - pos: 19.467945,-9.477724 + - type: Transform + pos: 19.467945,-9.477724 parent: 31 - type: Transform - proto: MedkitBurnFilled entities: - uid: 8747 components: - - pos: 19.479948,-9.162237 + - type: Transform + pos: 19.479948,-9.162237 parent: 31 - type: Transform - proto: MedkitCombatFilled entities: - uid: 6876 components: - - pos: 22.567698,-9.440117 + - type: Transform + pos: 22.567698,-9.440117 parent: 31 - type: Transform - proto: MedkitFilled entities: - uid: 1040 components: - - pos: -0.4864614,32.561848 + - type: Transform + pos: -0.4864614,32.561848 parent: 31 - type: Transform - uid: 8490 components: - - pos: 19.479948,-8.483771 + - type: Transform + pos: 19.479948,-8.483771 parent: 31 - type: Transform - proto: MedkitOxygenFilled entities: - uid: 2196 components: - - pos: 12.428257,-5.4459076 + - type: Transform + pos: 12.428257,-5.4459076 parent: 31 - type: Transform - uid: 7782 components: - - pos: -26.514608,20.497671 + - type: Transform + pos: -26.514608,20.497671 parent: 31 - type: Transform - proto: MedkitRadiationFilled entities: - uid: 10809 components: - - pos: 19.479948,-8.719759 + - type: Transform + pos: 19.479948,-8.719759 parent: 31 - type: Transform - proto: MedkitToxinFilled entities: - uid: 10826 components: - - pos: 19.450434,-9.014745 + - type: Transform + pos: 19.450434,-9.014745 parent: 31 - type: Transform - proto: MinimoogInstrument entities: - uid: 8736 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -32.5,-28.5 parent: 31 - type: Transform - proto: MonkeyCubeWrapped entities: - uid: 8871 components: - - pos: -9.196694,-7.814363 + - type: Transform + pos: -9.196694,-7.814363 parent: 31 - type: Transform - proto: MopBucket entities: - uid: 2301 components: - - pos: -19.682484,-11.924354 + - type: Transform + pos: -19.682484,-11.924354 parent: 31 - type: Transform - uid: 10216 components: - - pos: -31.665886,-19.55848 + - type: Transform + pos: -31.665886,-19.55848 parent: 31 - type: Transform - proto: MopItem entities: - uid: 2708 components: - - pos: -18.42709,-10.56736 + - type: Transform + pos: -18.42709,-10.56736 parent: 31 - type: Transform - uid: 10217 components: - - pos: -31.683014,-19.621332 + - type: Transform + pos: -31.683014,-19.621332 parent: 31 - type: Transform - proto: Morgue entities: - uid: 681 components: - - pos: 14.5,-13.5 + - type: Transform + pos: 14.5,-13.5 parent: 31 - type: Transform - uid: 699 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 14.5,-17.5 parent: 31 - type: Transform - uid: 2172 components: - - pos: 12.5,-13.5 + - type: Transform + pos: 12.5,-13.5 parent: 31 - type: Transform - uid: 7643 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-17.5 parent: 31 - type: Transform - uid: 8941 components: - - pos: 13.5,-13.5 + - type: Transform + pos: 13.5,-13.5 parent: 31 - type: Transform - uid: 8998 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 31 - type: Transform - proto: MouseTimedSpawner entities: - uid: 1641 components: - - pos: -12.5,-12.5 + - type: Transform + pos: -12.5,-12.5 parent: 31 - type: Transform - proto: Multitool entities: - uid: 1038 components: - - pos: 5.4978743,31.63788 + - type: Transform + pos: 5.4978743,31.63788 parent: 31 - type: Transform - uid: 11282 components: - - pos: -2.7462387,7.7338686 + - type: Transform + pos: -2.7462387,7.7338686 parent: 31 - type: Transform - proto: MysteryFigureBox entities: - uid: 1179 components: - - pos: -0.38767862,16.609253 + - type: Transform + pos: -0.38767862,16.609253 parent: 31 - type: Transform - uid: 3927 components: - - pos: 11.702873,-23.250063 + - type: Transform + pos: 11.702873,-23.250063 parent: 31 - type: Transform - proto: NetworkConfigurator entities: - uid: 10995 components: - - pos: 8.333701,-17.377625 + - type: Transform + pos: 8.333701,-17.377625 parent: 31 - type: Transform - proto: NitrogenCanister entities: - uid: 1807 components: - - pos: 35.5,9.5 + - type: Transform + pos: 35.5,9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 3869 components: - - pos: -3.5,-8.5 + - type: Transform + pos: -3.5,-8.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 6865 components: - - pos: 34.5,23.5 + - type: Transform + pos: 34.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 7282 components: - - pos: 52.5,5.5 + - type: Transform + pos: 52.5,5.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 7780 components: - - pos: -29.5,13.5 + - type: Transform + pos: -29.5,13.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 7983 components: - - pos: 27.5,-3.5 + - type: Transform + pos: 27.5,-3.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9799 components: - - pos: 6.5,-39.5 + - type: Transform + pos: 6.5,-39.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11271 components: - - pos: 32.5,21.5 + - type: Transform + pos: 32.5,21.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11272 components: - - pos: -26.5,-19.5 + - type: Transform + pos: -26.5,-19.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: NitrogenTankFilled entities: - uid: 10652 components: - - pos: 43.475277,-13.455894 + - type: Transform + pos: 43.475277,-13.455894 parent: 31 - type: Transform - proto: NitrousOxideCanister entities: - uid: 19 components: - - pos: 35.5,11.5 + - type: Transform + pos: 35.5,11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: NitrousOxideTankFilled entities: - uid: 10028 components: - - pos: 18.18887,-18.427427 + - type: Transform + pos: 18.18887,-18.427427 parent: 31 - type: Transform - proto: NuclearBomb entities: - uid: 4217 components: - - pos: -1.5,18.5 + - type: Transform + pos: -1.5,18.5 parent: 31 - type: Transform - proto: NuclearBombKeg entities: - uid: 9842 components: - - pos: -13.5,-11.5 + - type: Transform + pos: -13.5,-11.5 parent: 31 - type: Transform - proto: Ointment entities: - uid: 2199 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.601061,-4.88571 parent: 31 - type: Transform - proto: OnionSeeds entities: - uid: 9678 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.9280933,-43.78903 parent: 31 - type: Transform - proto: OperatingTable entities: - uid: 4915 components: - - pos: 20.5,-16.5 + - type: Transform + pos: 20.5,-16.5 parent: 31 - type: Transform - proto: OreProcessor entities: - uid: 7113 components: - - pos: 18.5,13.5 + - type: Transform + pos: 18.5,13.5 parent: 31 - type: Transform - proto: OxygenCanister entities: - uid: 1089 components: - - pos: 52.5,6.5 + - type: Transform + pos: 52.5,6.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 1194 components: - - pos: -4.5,-8.5 + - type: Transform + pos: -4.5,-8.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 1738 components: - - pos: 35.5,10.5 + - type: Transform + pos: 35.5,10.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 3576 components: - - pos: 6.5,7.5 + - type: Transform + pos: 6.5,7.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 4157 components: - - pos: 30.5,22.5 + - type: Transform + pos: 30.5,22.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 5770 components: - - pos: 60.5,6.5 + - type: Transform + pos: 60.5,6.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 6585 components: - - pos: 6.5,8.5 + - type: Transform + pos: 6.5,8.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 7496 components: - - pos: 14.5,-31.5 + - type: Transform + pos: 14.5,-31.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 7781 components: - - pos: -28.5,13.5 + - type: Transform + pos: -28.5,13.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9054 components: - - pos: 36.5,23.5 + - type: Transform + pos: 36.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9448 components: - - pos: -23.5,-31.5 + - type: Transform + pos: -23.5,-31.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 9798 components: - - pos: 4.5,-39.5 + - type: Transform + pos: 4.5,-39.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11273 components: - - pos: -25.5,-19.5 + - type: Transform + pos: -25.5,-19.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: OxygenTankFilled entities: - uid: 8740 components: - - pos: -32.388412,-27.529545 + - type: Transform + pos: -32.388412,-27.529545 parent: 31 - type: Transform - proto: PaintingCafeTerraceAtNight entities: - uid: 7804 components: - - pos: 13.5,24.5 + - type: Transform + pos: 13.5,24.5 parent: 31 - type: Transform - proto: PaintingMonkey entities: - uid: 8859 components: - - pos: -4.5,-7.5 + - type: Transform + pos: -4.5,-7.5 parent: 31 - type: Transform - proto: PaintingMoony entities: - uid: 8370 components: - - pos: 22.5,-8.5 + - type: Transform + pos: 22.5,-8.5 parent: 31 - type: Transform - proto: PaintingTheGreatWave entities: - uid: 726 components: - - pos: 7.5,22.5 + - type: Transform + pos: 7.5,22.5 parent: 31 - type: Transform - proto: PaintingTheSonOfMan entities: - uid: 11044 components: - - pos: -3.5,-18.5 + - type: Transform + pos: -3.5,-18.5 parent: 31 - type: Transform - proto: Paper entities: - uid: 968 components: - - pos: -1.344388,25.58412 + - type: Transform + pos: -1.344388,25.58412 parent: 31 - type: Transform - uid: 1071 components: - - pos: -24.037928,-5.9436545 + - type: Transform + pos: -24.037928,-5.9436545 parent: 31 - type: Transform - uid: 1132 components: - - pos: -24.147303,-5.8967795 + - type: Transform + pos: -24.147303,-5.8967795 parent: 31 - type: Transform - uid: 2356 components: - - pos: -24.256678,-5.7405295 + - type: Transform + pos: -24.256678,-5.7405295 parent: 31 - type: Transform - uid: 7230 components: - - pos: -19.27266,-5.542589 + - type: Transform + pos: -19.27266,-5.542589 parent: 31 - type: Transform - uid: 7318 components: - - pos: 11.683,-31.56512 + - type: Transform + pos: 11.683,-31.56512 parent: 31 - type: Transform - uid: 7323 components: - - pos: 11.808,-31.50262 + - type: Transform + pos: 11.808,-31.50262 parent: 31 - type: Transform - uid: 7327 components: - - pos: 11.886125,-31.455746 + - type: Transform + pos: 11.886125,-31.455746 parent: 31 - type: Transform - uid: 7328 components: - - pos: 11.761125,-31.361996 + - type: Transform + pos: 11.761125,-31.361996 parent: 31 - type: Transform - uid: 8743 components: - - flags: InContainer - type: MetaData - - parent: 8742 - type: Transform - - content: > + - type: MetaData + flags: InContainer + - type: Transform + parent: 8742 + - type: Paper + content: > Weh. - type: Paper - - canCollide: False - type: Physics + - type: Physics + canCollide: False - uid: 9738 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.392193,-41.961483 parent: 31 - type: Transform - proto: PaperBin10 entities: - uid: 7324 components: - - pos: -2.5,8.5 + - type: Transform + pos: -2.5,8.5 parent: 31 - type: Transform - proto: PaperBin5 entities: - uid: 503 components: - - pos: -17.5,-26.5 + - type: Transform + pos: -17.5,-26.5 parent: 31 - type: Transform - proto: PaperOffice entities: - uid: 824 components: - - pos: 14.22177,12.601002 + - type: Transform + pos: 14.22177,12.601002 parent: 31 - type: Transform - uid: 2170 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.6286554,1.6747794 parent: 31 - type: Transform - uid: 2221 components: - - pos: -19.27266,-5.365598 + - type: Transform + pos: -19.27266,-5.365598 parent: 31 - type: Transform - uid: 4533 components: - - pos: 15.727041,8.471209 + - type: Transform + pos: 15.727041,8.471209 parent: 31 - type: Transform - uid: 4611 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.643844,-23.885773 parent: 31 - type: Transform - uid: 5614 components: - - pos: 7.5388665,-3.406831 + - type: Transform + pos: 7.5388665,-3.406831 parent: 31 - type: Transform - uid: 7229 components: - - pos: -19.27266,-5.483592 + - type: Transform + pos: -19.27266,-5.483592 parent: 31 - type: Transform - uid: 9148 components: - - pos: 7.361776,-3.3478336 + - type: Transform + pos: 7.361776,-3.3478336 parent: 31 - type: Transform - uid: 9759 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.535623,-39.379585 parent: 31 - type: Transform - uid: 10307 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -15.702781,-19.417158 parent: 31 - type: Transform - uid: 10786 components: - - pos: 14.251285,12.542005 + - type: Transform + pos: 14.251285,12.542005 parent: 31 - type: Transform - proto: ParchisBoard entities: - uid: 2501 components: - - pos: -23.526257,-2.4008582 + - type: Transform + pos: -23.526257,-2.4008582 parent: 31 - type: Transform - proto: ParticleAcceleratorControlBoxUnfinished entities: - uid: 4569 components: - - pos: 57.5,1.5 + - type: Transform + pos: 57.5,1.5 parent: 31 - type: Transform - proto: ParticleAcceleratorEmitterForeUnfinished entities: - uid: 4562 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 59.5,2.5 parent: 31 - type: Transform - proto: ParticleAcceleratorEmitterPortUnfinished entities: - uid: 6300 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 59.5,3.5 parent: 31 - type: Transform - proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - uid: 4560 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 59.5,1.5 parent: 31 - type: Transform - proto: ParticleAcceleratorEndCapUnfinished entities: - uid: 4571 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 56.5,2.5 parent: 31 - type: Transform - proto: ParticleAcceleratorFuelChamberUnfinished entities: - uid: 6310 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 57.5,2.5 parent: 31 - type: Transform - proto: ParticleAcceleratorPowerBoxUnfinished entities: - uid: 4570 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 58.5,3.5 parent: 31 - type: Transform - proto: PartRodMetal entities: - uid: 1300 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 50.50942,4.811885 parent: 31 - type: Transform - uid: 6364 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 50.60317,4.624385 parent: 31 - type: Transform - proto: PartRodMetal1 entities: - uid: 9682 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.9502268,-42.132244 parent: 31 - type: Transform - uid: 10640 components: - - pos: 44.987167,-9.130011 + - type: Transform + pos: 44.987167,-9.130011 parent: 31 - type: Transform - proto: PartRodMetal10 entities: - uid: 9714 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.569283,-41.135525 parent: 31 - type: Transform - proto: Pen entities: - uid: 863 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -16.707977,-25.58053 parent: 31 - type: Transform - uid: 967 components: - - pos: -1.563138,24.568495 + - type: Transform + pos: -1.563138,24.568495 parent: 31 - type: Transform - uid: 2031 components: - - pos: -24.647303,-6.4436545 + - type: Transform + pos: -24.647303,-6.4436545 parent: 31 - type: Transform - uid: 2032 components: - - pos: -23.350428,-5.2092795 + - type: Transform + pos: -23.350428,-5.2092795 parent: 31 - type: Transform - uid: 2355 components: - - pos: -23.709803,-6.4905295 + - type: Transform + pos: -23.709803,-6.4905295 parent: 31 - type: Transform - uid: 8744 components: - - pos: -35.660393,-24.67745 + - type: Transform + pos: -35.660393,-24.67745 parent: 31 - type: Transform - uid: 8840 components: - - pos: 7.355826,32.45485 + - type: Transform + pos: 7.355826,32.45485 parent: 31 - type: Transform - uid: 8867 components: - - pos: 31.722767,6.708726 + - type: Transform + pos: 31.722767,6.708726 parent: 31 - type: Transform - uid: 9760 components: - - pos: -14.565138,-39.497578 + - type: Transform + pos: -14.565138,-39.497578 parent: 31 - type: Transform - uid: 11042 components: - - pos: 22.626728,-10.546311 + - type: Transform + pos: 22.626728,-10.546311 parent: 31 - type: Transform - proto: PersonalAI entities: - uid: 979 components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5129576,32.47221 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 2.5129576,32.47221 parent: 31 - type: Transform - uid: 2780 components: - - flags: SessionSpecific - type: MetaData - - pos: -24.675209,-5.91818 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -24.675209,-5.91818 parent: 31 - type: Transform - uid: 7898 components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5388803,-23.388987 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 7.5388803,-23.388987 parent: 31 - type: Transform - proto: PianoInstrument entities: - uid: 8425 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 31 - type: Transform - proto: Pickaxe entities: - uid: 10818 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.2719321,-34.29595 parent: 31 - type: Transform - proto: PillCanister entities: - uid: 6298 components: - - pos: 15.008175,-6.2804565 + - type: Transform + pos: 15.008175,-6.2804565 parent: 31 - type: Transform - proto: PillIron entities: - uid: 9743 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.067526,-42.40396 parent: 31 - type: Transform - proto: PinpointerNuclear entities: - uid: 1216 components: - - pos: -1.53811,16.627865 + - type: Transform + pos: -1.53811,16.627865 parent: 31 - type: Transform - proto: PlaqueAtmos entities: - uid: 6564 components: - - pos: 43.5,14.5 + - type: Transform + pos: 43.5,14.5 parent: 31 - type: Transform - proto: PlasmaCanister entities: - uid: 10009 components: - - pos: 36.5,11.5 + - type: Transform + pos: 36.5,11.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11072 components: - - pos: 42.5,23.5 + - type: Transform + pos: 42.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: PlasmaTankFilled entities: - uid: 1137 components: - - pos: 41.74788,13.772052 + - type: Transform + pos: 41.74788,13.772052 parent: 31 - type: Transform - uid: 6874 components: - - pos: 41.718365,13.536064 + - type: Transform + pos: 41.718365,13.536064 parent: 31 - type: Transform - uid: 6878 components: - - pos: 55.67908,8.591436 + - type: Transform + pos: 55.67908,8.591436 parent: 31 - type: Transform - uid: 6881 components: - - pos: 55.257206,8.247686 + - type: Transform + pos: 55.257206,8.247686 parent: 31 - type: Transform - uid: 11326 components: - - pos: 64.25282,0.19537628 + - type: Transform + pos: 64.25282,0.19537628 parent: 31 - type: Transform - proto: PlasticFlapsAirtightClear entities: - uid: 547 components: - - pos: 14.5,8.5 + - type: Transform + pos: 14.5,8.5 parent: 31 - type: Transform - uid: 3906 components: - - pos: 19.5,28.5 + - type: Transform + pos: 19.5,28.5 parent: 31 - type: Transform - uid: 7219 components: - - pos: 23.5,28.5 + - type: Transform + pos: 23.5,28.5 parent: 31 - type: Transform - uid: 10097 components: - - pos: 20.5,25.5 + - type: Transform + pos: 20.5,25.5 parent: 31 - type: Transform - uid: 10098 components: - - pos: 22.5,25.5 + - type: Transform + pos: 22.5,25.5 parent: 31 - type: Transform - uid: 10111 components: - - pos: -35.5,-16.5 + - type: Transform + pos: -35.5,-16.5 parent: 31 - type: Transform - proto: PlushieAtmosian entities: - uid: 7433 components: - - pos: 44.47201,25.696434 + - type: Transform + pos: 44.47201,25.696434 parent: 31 - type: Transform - proto: PlushieCarp entities: - uid: 9365 components: - - pos: -24.253773,-24.478765 + - type: Transform + pos: -24.253773,-24.478765 parent: 31 - type: Transform - uid: 9374 components: - - pos: -24.769398,-23.96314 + - type: Transform + pos: -24.769398,-23.96314 parent: 31 - type: Transform - proto: PlushieLizard entities: - uid: 1125 components: - - pos: -31.457468,18.461973 + - type: Transform + pos: -31.457468,18.461973 parent: 31 - type: Transform - uid: 8715 components: - - pos: -34.491947,-24.517502 + - type: Transform + pos: -34.491947,-24.517502 parent: 31 - type: Transform - uid: 8737 components: - - pos: -32.58532,-31.483488 + - type: Transform + pos: -32.58532,-31.483488 parent: 31 - type: Transform - uid: 10650 components: - - pos: 43.50479,-7.320201 + - type: Transform + pos: 43.50479,-7.320201 parent: 31 - type: Transform - uid: 11010 components: - - pos: 6.8823633,-3.4168224 + - type: Transform + pos: 6.8823633,-3.4168224 parent: 31 - type: Transform - proto: PlushieNar entities: - uid: 11111 components: - - pos: -41.4551,17.484098 + - type: Transform + pos: -41.4551,17.484098 parent: 31 - type: Transform - proto: PlushieRouny entities: - uid: 11027 components: - - pos: 34.579575,37.51338 + - type: Transform + pos: 34.579575,37.51338 parent: 31 - type: Transform - proto: PlushieSharkBlue entities: - uid: 5218 components: - - pos: -24.428402,-22.348387 + - type: Transform + pos: -24.428402,-22.348387 parent: 31 - type: Transform - proto: PlushieSharkGrey entities: - uid: 11138 components: - - pos: -24.411543,-23.535076 + - type: Transform + pos: -24.411543,-23.535076 parent: 31 - type: Transform - proto: PlushieSharkPink entities: - uid: 11139 components: - - pos: -24.500088,-22.945107 + - type: Transform + pos: -24.500088,-22.945107 parent: 31 - type: Transform - proto: PlushieSpaceLizard entities: + - uid: 7422 + components: + - type: Transform + pos: -39.495785,-7.6992884 + parent: 31 - uid: 8712 components: - - pos: -35.523197,-23.564377 + - type: Transform + pos: -35.523197,-23.564377 parent: 31 - type: Transform - proto: PonderingOrb entities: - uid: 7097 components: - - pos: -25.5,22.5 + - type: Transform + pos: -25.5,22.5 parent: 31 - type: Transform - proto: PortableFlasher entities: - uid: 9953 components: - - pos: -13.5,19.5 + - type: Transform + pos: -13.5,19.5 parent: 31 - type: Transform - proto: PortableGeneratorJrPacman entities: - uid: 10125 components: - - pos: -32.5,-10.5 + - type: Transform + pos: -32.5,-10.5 parent: 31 - type: Transform - uid: 11261 components: - - pos: -20.5,-25.5 + - type: Transform + pos: -20.5,-25.5 parent: 31 - type: Transform - uid: 11262 components: - - pos: -10.5,-36.5 + - type: Transform + pos: -10.5,-36.5 parent: 31 - type: Transform - uid: 11263 components: - - pos: 0.5,-11.5 + - type: Transform + pos: 0.5,-11.5 parent: 31 - type: Transform - proto: PortableGeneratorPacman entities: - uid: 1682 components: - - pos: 24.5,-16.5 + - type: Transform + pos: 24.5,-16.5 parent: 31 - type: Transform - uid: 3303 components: - - pos: 28.5,13.5 + - type: Transform + pos: 28.5,13.5 parent: 31 - type: Transform - proto: PortableGeneratorPacmanMachineCircuitboard entities: - uid: 10979 components: - - pos: 56.502796,-5.3510003 + - type: Transform + pos: 56.502796,-5.3510003 parent: 31 - type: Transform - proto: PortableGeneratorSuperPacman entities: - uid: 4541 components: - - pos: 47.5,1.5 + - type: Transform + pos: 47.5,1.5 parent: 31 - type: Transform - proto: PortableScrubber entities: - uid: 4315 components: - - pos: 31.5,8.5 + - type: Transform + pos: 31.5,8.5 parent: 31 - type: Transform - uid: 6901 components: - - pos: 31.5,9.5 + - type: Transform + pos: 31.5,9.5 parent: 31 - type: Transform - proto: PosterBroken entities: - uid: 10560 components: - - pos: -16.5,-36.5 + - type: Transform + pos: -16.5,-36.5 parent: 31 - type: Transform - uid: 11108 components: - - pos: -1.5,-18.5 + - type: Transform + pos: -1.5,-18.5 parent: 31 - type: Transform - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 6328 components: - - pos: 35.5,7.5 + - type: Transform + pos: 35.5,7.5 parent: 31 - type: Transform - proto: PosterContrabandBountyHunters entities: - uid: 7127 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,13.5 parent: 31 - type: Transform - proto: PosterContrabandFreeDrone entities: - uid: 2411 components: - - pos: 28.5,-0.5 + - type: Transform + pos: 28.5,-0.5 parent: 31 - type: Transform - proto: PosterContrabandLamarr entities: - uid: 9617 components: - - pos: -6.5,-19.5 + - type: Transform + pos: -6.5,-19.5 parent: 31 - type: Transform - proto: PosterContrabandLustyExomorph entities: - uid: 7828 components: - - pos: 5.5,-29.5 + - type: Transform + pos: 5.5,-29.5 parent: 31 - type: Transform - proto: PosterContrabandMissingGloves entities: - uid: 8046 components: - - pos: -30.5,8.5 + - type: Transform + pos: -30.5,8.5 parent: 31 - type: Transform - proto: PosterContrabandRedRum entities: - uid: 10629 components: - - pos: 42.5,-5.5 + - type: Transform + pos: 42.5,-5.5 parent: 31 - type: Transform - proto: PosterContrabandSmoke entities: - uid: 7802 components: - - pos: 13.5,20.5 + - type: Transform + pos: 13.5,20.5 parent: 31 - type: Transform - proto: PosterContrabandSpaceCola entities: - uid: 7819 components: - - pos: -33.5,2.5 + - type: Transform + pos: -33.5,2.5 parent: 31 - type: Transform - proto: PosterContrabandTools entities: - uid: 7651 components: - - pos: -27.5,12.5 + - type: Transform + pos: -27.5,12.5 parent: 31 - type: Transform - proto: PosterContrabandVoteWeh entities: - uid: 8703 components: - - pos: -37.5,-26.5 + - type: Transform + pos: -37.5,-26.5 parent: 31 - type: Transform - proto: PosterContrabandWehWatches entities: - uid: 8720 components: - - pos: -31.5,-28.5 + - type: Transform + pos: -31.5,-28.5 parent: 31 - type: Transform - proto: PosterLegitAnatomyPoster entities: - uid: 7342 components: - - pos: 25.5,-6.5 + - type: Transform + pos: 25.5,-6.5 parent: 31 - type: Transform - proto: PosterLegitCarbonDioxide entities: - uid: 7690 components: - - pos: 29.5,14.5 + - type: Transform + pos: 29.5,14.5 parent: 31 - type: Transform - proto: PosterLegitCarpMount entities: - uid: 7559 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 27.5,11.5 parent: 31 - type: Transform - proto: PosterLegitCleanliness entities: - uid: 7348 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,-18.5 parent: 31 - type: Transform - proto: PosterLegitCohibaRobustoAd entities: - uid: 2438 components: - - pos: 1.5,-5.5 + - type: Transform + pos: 1.5,-5.5 parent: 31 - type: Transform - proto: PosterLegitDickGumshue entities: - uid: 9366 components: - - pos: -22.5,18.5 + - type: Transform + pos: -22.5,18.5 parent: 31 - type: Transform - proto: PosterLegitIan entities: - uid: 7806 components: - - pos: 11.5,16.5 + - type: Transform + pos: 11.5,16.5 parent: 31 - type: Transform - proto: PosterLegitLoveIan entities: - uid: 7807 components: - - pos: 11.5,21.5 + - type: Transform + pos: 11.5,21.5 parent: 31 - type: Transform - proto: PosterLegitNanotrasenLogo entities: - uid: 619 components: - - pos: 5.5,26.5 + - type: Transform + pos: 5.5,26.5 parent: 31 - type: Transform - uid: 2566 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -43.5,-8.5 parent: 31 - type: Transform - uid: 7803 components: - - pos: 0.5,19.5 + - type: Transform + pos: 0.5,19.5 parent: 31 - type: Transform - uid: 8047 components: - - pos: -33.5,6.5 + - type: Transform + pos: -33.5,6.5 parent: 31 - type: Transform - uid: 8266 components: - - pos: 34.5,-18.5 + - type: Transform + pos: 34.5,-18.5 parent: 31 - type: Transform - uid: 8325 components: - - pos: 43.5,-22.5 + - type: Transform + pos: 43.5,-22.5 parent: 31 - type: Transform - uid: 8326 components: - - pos: 43.5,-26.5 + - type: Transform + pos: 43.5,-26.5 parent: 31 - type: Transform - proto: PosterLegitNoERP entities: - uid: 7808 components: - - pos: -14.5,6.5 + - type: Transform + pos: -14.5,6.5 parent: 31 - type: Transform - proto: PosterLegitObey entities: - uid: 7809 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 31 - type: Transform - proto: PosterLegitReportCrimes entities: - uid: 3838 components: - - pos: -9.5,6.5 + - type: Transform + pos: -9.5,6.5 parent: 31 - type: Transform - proto: PosterLegitSafetyEyeProtection entities: - uid: 7145 components: - - pos: 18.5,2.5 + - type: Transform + pos: 18.5,2.5 parent: 31 - type: Transform - proto: PosterLegitSafetyInternals entities: - uid: 10791 components: - - pos: 29.5,19.5 + - type: Transform + pos: 29.5,19.5 parent: 31 - type: Transform - proto: PosterLegitSafetyMothPiping entities: - uid: 11136 components: - - pos: 38.5,10.5 + - type: Transform + pos: 38.5,10.5 parent: 31 - type: Transform - proto: PosterLegitStateLaws entities: - uid: 10558 components: - - pos: -4.5,-26.5 + - type: Transform + pos: -4.5,-26.5 parent: 31 - type: Transform - proto: PosterLegitWorkForAFuture entities: - uid: 11107 components: - - pos: -18.5,-9.5 + - type: Transform + pos: -18.5,-9.5 parent: 31 - type: Transform - proto: PosterMapSaltern entities: - uid: 9089 components: - - pos: -29.5,12.5 + - type: Transform + pos: -29.5,12.5 parent: 31 - type: Transform - uid: 9090 components: - - pos: 1.5,22.5 + - type: Transform + pos: 1.5,22.5 parent: 31 - type: Transform - uid: 9091 components: - - pos: 27.5,7.5 + - type: Transform + pos: 27.5,7.5 parent: 31 - type: Transform - uid: 9092 components: - - pos: 6.5,-15.5 + - type: Transform + pos: 6.5,-15.5 parent: 31 - type: Transform - uid: 9477 components: - - pos: -30.5,6.5 + - type: Transform + pos: -30.5,6.5 parent: 31 - type: Transform - uid: 9478 components: - - pos: -39.5,-0.5 + - type: Transform + pos: -39.5,-0.5 parent: 31 - type: Transform - uid: 9479 components: - - pos: -38.5,-6.5 + - type: Transform + pos: -38.5,-6.5 parent: 31 - type: Transform - uid: 9579 components: - - pos: 29.5,-5.5 + - type: Transform + pos: 29.5,-5.5 parent: 31 - type: Transform - proto: PottedPlant15 entities: - uid: 6894 components: - - pos: 23.784285,-11.850549 + - type: Transform + pos: 23.784285,-11.850549 parent: 31 - type: Transform - proto: PottedPlantBioluminscent entities: - uid: 8292 components: - - pos: 32.5,-25.5 + - type: Transform + pos: 32.5,-25.5 parent: 31 - type: Transform - proto: PottedPlantRandom entities: - uid: 161 components: - - pos: 12.5,1.5 + - type: Transform + pos: 12.5,1.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: stash: !type:ContainerSlot {} - type: ContainerContainer - uid: 763 components: - - pos: 0.5,26.5 + - type: Transform + pos: 0.5,26.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: stash: !type:ContainerSlot {} - type: ContainerContainer - uid: 1068 components: - - pos: 5.5,16.5 + - type: Transform + pos: 5.5,16.5 parent: 31 - type: Transform - uid: 2712 components: - - pos: -35.5,-11.5 + - type: Transform + pos: -35.5,-11.5 parent: 31 - type: Transform - uid: 4934 components: - - pos: 4.5,27.5 + - type: Transform + pos: 4.5,27.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: stash: !type:ContainerSlot {} - type: ContainerContainer - uid: 5634 components: - - pos: -7.5,17.5 + - type: Transform + pos: -7.5,17.5 parent: 31 - type: Transform - uid: 7290 components: - - pos: 6.5,1.5 + - type: Transform + pos: 6.5,1.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: stash: !type:ContainerSlot {} - type: ContainerContainer - uid: 7334 components: - - pos: -10.5,11.5 + - type: Transform + pos: -10.5,11.5 parent: 31 - type: Transform - uid: 8288 components: - - pos: 55.5,-24.5 + - type: Transform + pos: 55.5,-24.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: stash: !type:ContainerSlot {} - type: ContainerContainer - uid: 8709 components: - - pos: -34.5,-23.5 + - type: Transform + pos: -34.5,-23.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: stash: !type:ContainerSlot {} - type: ContainerContainer - uid: 8808 components: - - pos: 2.5,27.5 + - type: Transform + pos: 2.5,27.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: stash: !type:ContainerSlot {} - type: ContainerContainer - uid: 9325 components: - - pos: -38.5,-1.5 - parent: 31 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer - - uid: 9326 - components: - - pos: -38.5,-3.5 + - type: Transform + pos: -38.5,-1.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: stash: !type:ContainerSlot {} - type: ContainerContainer - uid: 9915 components: - - pos: -43.5,-9.5 + - type: Transform + pos: -43.5,-9.5 parent: 31 - type: Transform - uid: 11004 components: - - pos: 18.5,-4.5 + - type: Transform + pos: 18.5,-4.5 parent: 31 - type: Transform - uid: 11005 components: - - pos: 19.5,-13.5 + - type: Transform + pos: 19.5,-13.5 parent: 31 - type: Transform - proto: PottedPlantRandomPlastic entities: - uid: 2316 components: - - pos: -11.5,-20.5 + - type: Transform + pos: -11.5,-20.5 parent: 31 - type: Transform - uid: 9040 components: - - pos: 35.5,2.5 + - type: Transform + pos: 35.5,2.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: stash: !type:ContainerSlot {} - type: ContainerContainer - uid: 9416 components: - - pos: -11.5,-24.5 + - type: Transform + pos: -11.5,-24.5 parent: 31 - type: Transform - uid: 10547 components: - - pos: -7.5,-28.5 + - type: Transform + pos: -7.5,-28.5 parent: 31 - type: Transform - proto: PottedPlantRD entities: - uid: 2171 components: - - pos: -4.4945755,-22.176098 + - type: Transform + pos: -4.4945755,-22.176098 parent: 31 - type: Transform - proto: PowerCellHighPrinted entities: - uid: 5648 components: - - pos: 0.6812986,-27.61599 + - type: Transform + pos: 0.6812986,-27.61599 parent: 31 - type: Transform - proto: PowerCellMedium entities: - uid: 2198 components: - - pos: 22.634676,-4.424035 + - type: Transform + pos: 22.634676,-4.424035 parent: 31 - type: Transform - uid: 8172 components: - - pos: 23.600492,-14.314652 + - type: Transform + pos: 23.600492,-14.314652 parent: 31 - type: Transform - proto: PowerCellRecharger entities: - uid: 696 components: - - pos: -17.5,-22.5 + - type: Transform + pos: -17.5,-22.5 parent: 31 - type: Transform - uid: 1395 components: - - pos: 5.5,32.5 + - type: Transform + pos: 5.5,32.5 parent: 31 - type: Transform - - canCollide: False - type: Physics + - type: Physics + canCollide: False - uid: 1425 components: - - pos: -11.5,16.5 + - type: Transform + pos: -11.5,16.5 parent: 31 - type: Transform - uid: 2889 components: - - pos: -0.5,-27.5 + - type: Transform + pos: -0.5,-27.5 parent: 31 - type: Transform - uid: 3133 components: - - pos: 40.5,-0.5 + - type: Transform + pos: 40.5,-0.5 parent: 31 - type: Transform - - canCollide: False - type: Physics + - type: Physics + canCollide: False - uid: 4264 components: - - pos: 8.5,-4.5 + - type: Transform + pos: 8.5,-4.5 parent: 31 - type: Transform - uid: 6205 components: - - pos: 18.5,17.5 + - type: Transform + pos: 18.5,17.5 parent: 31 - type: Transform - uid: 9528 components: - - pos: 34.5,0.5 + - type: Transform + pos: 34.5,0.5 parent: 31 - type: Transform - uid: 10989 components: - - pos: 22.5,-4.5 + - type: Transform + pos: 22.5,-4.5 parent: 31 - type: Transform - proto: PowerCellSmall entities: - uid: 2280 components: - - pos: -17.268764,-22.778172 + - type: Transform + pos: -17.268764,-22.778172 parent: 31 - type: Transform - proto: Poweredlight entities: - uid: 41 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -25.5,6.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 143 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-3.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 220 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-31.5 parent: 31 - type: Transform - uid: 303 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,21.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 401 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -25.5,-13.5 parent: 31 - type: Transform - uid: 493 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,11.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 516 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,6.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 557 components: - - flags: PvsPriority - type: MetaData - - pos: -38.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,10.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 776 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,13.5 parent: 31 - type: Transform - uid: 857 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,0.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 891 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,-4.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 892 components: - - flags: PvsPriority - type: MetaData - - pos: -32.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,5.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 917 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -30.5,3.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 994 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,-11.5 parent: 31 - type: Transform - uid: 1033 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -29.5,9.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1034 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -26.5,8.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1058 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,2.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1059 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -20.5,3.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1060 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,-0.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1061 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,5.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1064 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -20.5,0.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1066 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -25.5,-4.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1069 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -20.5,-2.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1122 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,30.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1123 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,30.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1135 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,27.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1171 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,30.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1186 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,30.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1188 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,23.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1200 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,23.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1210 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,16.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1211 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,16.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1212 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,18.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1213 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,9.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1220 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,9.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1228 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,10.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1234 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1252 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1253 components: - - flags: PvsPriority - type: MetaData - - pos: 15.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,12.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1259 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,13.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1261 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,8.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1262 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,7.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1265 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,3.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1266 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 13.5,3.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1271 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,1.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1272 components: - - flags: PvsPriority - type: MetaData - - pos: 15.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,1.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1274 components: - - flags: PvsPriority - type: MetaData - - pos: 18.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,1.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1281 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 23.5,3.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1283 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 27.5,0.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1284 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 29.5,-2.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1285 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 31.5,-0.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1286 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 31.5,2.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1287 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 37.5,2.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1288 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,6.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1301 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 35.5,-2.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1303 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-4.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1306 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,-8.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1313 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-21.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1322 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-17.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1323 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-14.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - type: Timer - uid: 1324 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1325 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-17.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1331 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-17.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1344 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,17.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1354 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-28.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1356 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-29.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1358 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-25.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1359 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592697301183 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592697301183 rad pos: 31.5,2.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1360 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-22.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1361 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-9.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1366 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-4.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1367 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,3.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1371 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,2.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1372 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1538 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 45.5,15.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1605 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 58.5,-5.5 parent: 31 - type: Transform - uid: 1915 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,1.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1962 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-24.5 parent: 31 - type: Transform - uid: 1965 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,16.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1979 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-23.5 parent: 31 - type: Transform - uid: 2179 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 31 - type: Transform - uid: 2220 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 31 - type: Transform - uid: 2247 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-3.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 2621 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -37.5,17.5 parent: 31 - type: Transform - uid: 3380 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-29.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3551 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 31.5,9.5 parent: 31 - type: Transform - uid: 3728 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,-22.5 parent: 31 - type: Transform - uid: 3732 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -17.5,-27.5 parent: 31 - type: Transform - uid: 3734 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-29.5 parent: 31 - type: Transform - uid: 3963 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,7.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3983 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,17.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3998 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,17.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4097 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,11.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4119 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,5.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4120 components: - - flags: PvsPriority - type: MetaData - - pos: -9.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,5.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4121 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,5.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4122 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -16.5,-1.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4124 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,1.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4152 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -13.5,-1.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4177 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-4.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4232 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-6.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4251 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,9.5 parent: 31 - type: Transform - uid: 4602 components: - - flags: PvsPriority - type: MetaData - - pos: 59.5,4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 59.5,4.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4606 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 55.5,0.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4607 components: - - flags: PvsPriority - type: MetaData - - pos: 52.5,3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 52.5,3.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4608 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 52.5,1.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4912 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,15.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5103 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6182 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 28.5,18.5 parent: 31 - type: Transform - uid: 6327 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 41.5,11.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6330 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 30.5,13.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6332 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 36.5,9.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6384 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,23.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6385 components: - - flags: PvsPriority - type: MetaData - - pos: 42.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 42.5,23.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6387 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,23.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6406 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,19.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6407 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,19.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6435 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,23.5 parent: 31 - type: Transform - uid: 6436 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,9.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6463 components: - - flags: PvsPriority - type: MetaData - - pos: 44.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,23.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6509 components: - - flags: PvsPriority - type: MetaData - - pos: 40.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,23.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6511 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,13.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6527 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 48.5,21.5 parent: 31 - type: Transform - uid: 6566 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,19.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6897 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,6.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6898 components: - - flags: PvsPriority - type: MetaData - - pos: 50.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,5.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6899 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,5.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6900 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 45.5,1.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6909 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,22.5 parent: 31 - type: Transform - uid: 6921 components: - - flags: PvsPriority - type: MetaData - - pos: 38.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,23.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7067 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,-26.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7083 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,17.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7171 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,26.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7349 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-13.5 parent: 31 - type: Transform - uid: 7350 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,-18.5 parent: 31 - type: Transform - uid: 7586 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,16.5 parent: 31 - type: Transform - uid: 7653 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-7.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7723 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-17.5 parent: 31 - type: Transform - uid: 7724 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -38.5,13.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7725 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7747 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-14.5 parent: 31 - type: Transform - uid: 7785 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -50.5,-11.5 parent: 31 - type: Transform - uid: 7788 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -45.5,-11.5 parent: 31 - type: Transform - uid: 7871 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,-11.5 parent: 31 - type: Transform - uid: 8074 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,13.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8075 components: - - flags: PvsPriority - type: MetaData - - pos: 50.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,13.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8076 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 48.5,7.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8085 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,8.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8086 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,10.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8270 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-23.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8272 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 33.5,-19.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8273 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 44.5,-22.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8274 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 44.5,-26.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8275 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 47.5,-29.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8276 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 51.5,-29.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8277 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,-26.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8278 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,-22.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8279 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,-19.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8280 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,-19.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8734 components: - - flags: PvsPriority - type: MetaData - - pos: -35.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-23.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8835 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,29.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8836 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,29.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8837 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,27.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8838 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,27.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9094 components: - - flags: PvsPriority - type: MetaData - - pos: 19.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-4.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9121 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-9.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9330 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,-9.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 10062 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,27.5 parent: 31 - type: Transform - uid: 10063 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,27.5 parent: 31 - type: Transform - uid: 10301 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-22.5 parent: 31 - type: Transform - uid: 10302 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-19.5 parent: 31 - type: Transform - uid: 10309 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-31.5 parent: 31 - type: Transform - uid: 10355 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -21.5,-9.5 parent: 31 - type: Transform - uid: 10423 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,18.5 parent: 31 - type: Transform - uid: 10767 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -39.5,-11.5 parent: 31 - type: Transform - uid: 10879 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 56.5,-11.5 parent: 31 - type: Transform - uid: 10880 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,-11.5 parent: 31 - type: Transform - uid: 10881 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 47.5,-11.5 parent: 31 - type: Transform - uid: 10882 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 48.5,-3.5 parent: 31 - type: Transform - uid: 11007 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,19.5 parent: 31 - type: Transform - uid: 11084 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,14.5 parent: 31 - type: Transform - uid: 11133 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,26.5 parent: 31 - type: Transform - uid: 11250 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,8.5 parent: 31 - type: Transform - uid: 11255 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,23.5 parent: 31 - type: Transform + - uid: 11414 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-3.5 + parent: 31 - proto: PoweredlightExterior entities: - uid: 9926 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-21.5 parent: 31 - type: Transform - proto: PoweredLightPostSmall entities: - uid: 7709 components: - - pos: 30.5,28.5 + - type: Transform + pos: 30.5,28.5 parent: 31 - type: Transform - proto: PoweredlightSodium entities: - uid: 8526 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-13.5 parent: 31 - type: Transform - proto: PoweredSmallLight entities: - uid: 14 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -16.5,16.5 parent: 31 - type: Transform - uid: 1246 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,-29.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1302 components: - - pos: 39.5,0.5 + - type: Transform + pos: 39.5,0.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1575 components: - - pos: 39.5,9.5 + - type: Transform + pos: 39.5,9.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 2020 components: - - pos: -23.5,20.5 + - type: Transform + pos: -23.5,20.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 2343 components: - - pos: -13.5,-10.5 + - type: Transform + pos: -13.5,-10.5 parent: 31 - type: Transform - uid: 3586 components: - - pos: 11.5,24.5 + - type: Transform + pos: 11.5,24.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3861 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,8.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3863 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,20.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3864 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,19.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3865 components: - - pos: -14.5,25.5 + - type: Transform + pos: -14.5,25.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3867 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,20.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3871 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,8.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3872 components: - - pos: 8.5,14.5 + - type: Transform + pos: 8.5,14.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3874 components: - - pos: 14.5,21.5 + - type: Transform + pos: 14.5,21.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3880 components: - - pos: 38.5,-3.5 + - type: Transform + pos: 38.5,-3.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3887 components: - - pos: 28.5,10.5 + - type: Transform + pos: 28.5,10.5 parent: 31 - type: Transform - uid: 3894 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 27.5,-10.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3897 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 24.5,-23.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3898 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 27.5,-24.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3899 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 25.5,-18.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4020 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -19.5,15.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4029 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,-35.5 parent: 31 - type: Transform - uid: 4055 components: - - pos: 12.5,-19.5 + - type: Transform + pos: 12.5,-19.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4153 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-37.5 parent: 31 - type: Transform - uid: 4239 components: - - pos: 34.5,37.5 + - type: Transform + pos: 34.5,37.5 parent: 31 - type: Transform - uid: 4507 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 36.5,-13.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4605 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 52.5,6.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4662 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -20.5,-24.5 parent: 31 - type: Transform - uid: 4862 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -30.5,-5.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4957 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -30.5,-2.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4958 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -30.5,0.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4959 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -33.5,-0.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5008 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,-5.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5009 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-4.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5010 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-7.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5120 components: - - pos: 10.5,26.5 + - type: Transform + pos: 10.5,26.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5190 components: - - pos: -22.5,25.5 + - type: Transform + pos: -22.5,25.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7063 components: - - pos: 31.5,-9.5 + - type: Transform + pos: 31.5,-9.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7479 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,13.5 parent: 31 - type: Transform - uid: 7498 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 40.5,-8.5 parent: 31 - type: Transform - uid: 7543 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -31.5,9.5 parent: 31 - type: Transform - uid: 7602 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -29.5,-9.5 parent: 31 - type: Transform - uid: 7686 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 60.5,6.5 parent: 31 - type: Transform - uid: 7811 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,-0.5 parent: 31 - type: Transform - uid: 7909 components: - - pos: 28.5,13.5 + - type: Transform + pos: 28.5,13.5 parent: 31 - type: Transform - uid: 8050 components: - - pos: 22.5,-13.5 + - type: Transform + pos: 22.5,-13.5 parent: 31 - type: Transform - uid: 8150 components: - - pos: 56.5,8.5 + - type: Transform + pos: 56.5,8.5 parent: 31 - type: Transform - uid: 8732 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -36.5,-27.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8733 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -32.5,-27.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8735 components: - - pos: -32.5,-31.5 + - type: Transform + pos: -32.5,-31.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8775 components: - - pos: -16.5,11.5 + - type: Transform + pos: -16.5,11.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9248 components: - - pos: -42.5,0.5 + - type: Transform + pos: -42.5,0.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9249 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -42.5,2.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9250 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -42.5,10.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9251 components: - - pos: -42.5,8.5 + - type: Transform + pos: -42.5,8.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9449 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -23.5,-32.5 parent: 31 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 10014 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 32.5,21.5 parent: 31 - type: Transform - uid: 10499 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-42.5 parent: 31 - type: Transform - uid: 10500 components: - - pos: -0.5,-42.5 + - type: Transform + pos: -0.5,-42.5 parent: 31 - type: Transform - uid: 10875 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 52.5,-1.5 parent: 31 - type: Transform - uid: 11041 components: - - pos: -7.5,22.5 + - type: Transform + pos: -7.5,22.5 parent: 31 - type: Transform - uid: 11200 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,28.5 parent: 31 - type: Transform - uid: 11209 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 16.5,-28.5 parent: 31 - type: Transform - proto: PoweredSmallLightEmpty entities: - uid: 7112 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,-23.5 parent: 31 - type: Transform - uid: 8209 components: - - pos: -22.5,17.5 + - type: Transform + pos: -22.5,17.5 parent: 31 - type: Transform - proto: Protolathe entities: - uid: 2319 components: - - pos: -13.5,-21.5 + - type: Transform + pos: -13.5,-21.5 parent: 31 - type: Transform - proto: Rack entities: - uid: 117 components: - - pos: 29.5,-1.5 + - type: Transform + pos: 29.5,-1.5 parent: 31 - type: Transform - uid: 203 components: - - pos: -6.5,-32.5 + - type: Transform + pos: -6.5,-32.5 parent: 31 - type: Transform - uid: 826 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 48.5,-3.5 parent: 31 - type: Transform - uid: 1352 components: - - pos: 43.5,13.5 + - type: Transform + pos: 43.5,13.5 parent: 31 - type: Transform - uid: 2133 components: - - pos: -11.5,18.5 + - type: Transform + pos: -11.5,18.5 parent: 31 - type: Transform - uid: 2827 components: - - pos: 23.5,-14.5 + - type: Transform + pos: 23.5,-14.5 parent: 31 - type: Transform - uid: 3229 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 31 - type: Transform - uid: 3375 components: - - pos: 10.5,10.5 + - type: Transform + pos: 10.5,10.5 parent: 31 - type: Transform - uid: 3378 components: - - pos: -17.5,-20.5 + - type: Transform + pos: -17.5,-20.5 parent: 31 - type: Transform - uid: 3508 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 42.5,13.5 parent: 31 - type: Transform - uid: 3742 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -27.5,-19.5 parent: 31 - type: Transform - uid: 3743 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-19.5 parent: 31 - type: Transform - uid: 4542 components: - - pos: 59.5,6.5 + - type: Transform + pos: 59.5,6.5 parent: 31 - type: Transform - uid: 6853 components: - - pos: 29.5,16.5 + - type: Transform + pos: 29.5,16.5 parent: 31 - type: Transform - uid: 7050 components: - - pos: 29.5,-10.5 + - type: Transform + pos: 29.5,-10.5 parent: 31 - type: Transform - uid: 7347 components: - - pos: -1.5,-24.5 + - type: Transform + pos: -1.5,-24.5 parent: 31 - type: Transform - uid: 7537 components: - - pos: 24.5,13.5 + - type: Transform + pos: 24.5,13.5 parent: 31 - type: Transform - uid: 7576 components: - - pos: -5.5,-8.5 + - type: Transform + pos: -5.5,-8.5 parent: 31 - type: Transform - uid: 7778 components: - - pos: -30.5,13.5 + - type: Transform + pos: -30.5,13.5 parent: 31 - type: Transform - uid: 7793 components: - - pos: -23.5,22.5 + - type: Transform + pos: -23.5,22.5 parent: 31 - type: Transform - uid: 7977 components: - - pos: 27.5,-5.5 + - type: Transform + pos: 27.5,-5.5 parent: 31 - type: Transform - uid: 7982 components: - - pos: 27.5,-4.5 + - type: Transform + pos: 27.5,-4.5 parent: 31 - type: Transform - uid: 8739 components: - - pos: -32.5,-27.5 + - type: Transform + pos: -32.5,-27.5 parent: 31 - type: Transform - uid: 8751 components: - - pos: -20.5,-23.5 + - type: Transform + pos: -20.5,-23.5 parent: 31 - type: Transform - uid: 8752 components: - - pos: -20.5,-24.5 + - type: Transform + pos: -20.5,-24.5 parent: 31 - type: Transform - uid: 8886 components: - - pos: 45.5,1.5 + - type: Transform + pos: 45.5,1.5 parent: 31 - type: Transform - uid: 8888 components: - - pos: 45.5,5.5 + - type: Transform + pos: 45.5,5.5 parent: 31 - type: Transform - uid: 8993 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -18.5,-10.5 parent: 31 - type: Transform - uid: 9072 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 46.5,-5.5 parent: 31 - type: Transform - uid: 9225 components: - - pos: 35.5,-3.5 + - type: Transform + pos: 35.5,-3.5 parent: 31 - type: Transform - uid: 9414 components: - - pos: -11.5,-27.5 + - type: Transform + pos: -11.5,-27.5 parent: 31 - type: Transform - uid: 9786 components: - - pos: 10.5,-37.5 + - type: Transform + pos: 10.5,-37.5 parent: 31 - type: Transform - uid: 9861 components: - - pos: 10.5,-19.5 + - type: Transform + pos: 10.5,-19.5 parent: 31 - type: Transform - uid: 10271 components: - - pos: 8.5,-17.5 + - type: Transform + pos: 8.5,-17.5 parent: 31 - type: Transform - uid: 10559 components: - - pos: 21.5,-19.5 + - type: Transform + pos: 21.5,-19.5 parent: 31 - type: Transform - uid: 10623 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 40.5,-10.5 parent: 31 - type: Transform - uid: 10641 components: - - pos: 41.5,-13.5 + - type: Transform + pos: 41.5,-13.5 parent: 31 - type: Transform - uid: 10978 components: - - pos: 56.5,-5.5 + - type: Transform + pos: 56.5,-5.5 parent: 31 - type: Transform - uid: 11124 components: - - pos: -5.5,29.5 + - type: Transform + pos: -5.5,29.5 parent: 31 - type: Transform - proto: RadiationCollectorNoTank entities: - uid: 5925 components: - - pos: 64.5,1.5 + - type: Transform + pos: 64.5,1.5 parent: 31 - type: Transform - uid: 5926 components: - - pos: 78.5,3.5 + - type: Transform + pos: 78.5,3.5 parent: 31 - type: Transform - uid: 5927 components: - - pos: 78.5,4.5 + - type: Transform + pos: 78.5,4.5 parent: 31 - type: Transform - uid: 5928 components: - - pos: 64.5,0.5 + - type: Transform + pos: 64.5,0.5 parent: 31 - type: Transform - uid: 9573 components: - - pos: 64.5,-0.5 + - type: Transform + pos: 64.5,-0.5 parent: 31 - type: Transform - uid: 9744 components: - - pos: 78.5,-0.5 + - type: Transform + pos: 78.5,-0.5 parent: 31 - type: Transform - uid: 9746 components: - - pos: 78.5,0.5 + - type: Transform + pos: 78.5,0.5 parent: 31 - type: Transform - uid: 10113 components: - - pos: 78.5,5.5 + - type: Transform + pos: 78.5,5.5 parent: 31 - type: Transform - uid: 10114 components: - - pos: 64.5,3.5 + - type: Transform + pos: 64.5,3.5 parent: 31 - type: Transform - uid: 10115 components: - - pos: 64.5,4.5 + - type: Transform + pos: 64.5,4.5 parent: 31 - type: Transform - uid: 10116 components: - - pos: 64.5,5.5 + - type: Transform + pos: 64.5,5.5 parent: 31 - type: Transform - uid: 10905 components: - - pos: 78.5,1.5 + - type: Transform + pos: 78.5,1.5 parent: 31 - type: Transform - proto: RadioHandheld entities: - uid: 17 components: - - pos: 27.667074,21.691422 + - type: Transform + pos: 27.667074,21.691422 parent: 31 - type: Transform - uid: 1095 components: - - pos: 28.301825,9.959752 + - type: Transform + pos: 28.301825,9.959752 parent: 31 - type: Transform - uid: 6857 components: - - pos: 27.69659,21.514431 + - type: Transform + pos: 27.69659,21.514431 parent: 31 - type: Transform - uid: 7486 components: - - pos: 22.740244,13.497578 + - type: Transform + pos: 22.740244,13.497578 parent: 31 - type: Transform - uid: 9021 components: - - pos: 32.380318,-3.4857323 + - type: Transform + pos: 32.380318,-3.4857323 parent: 31 - type: Transform - uid: 9022 components: - - pos: 32.645943,-3.4701073 + - type: Transform + pos: 32.645943,-3.4701073 parent: 31 - type: Transform - proto: RagItem entities: - uid: 10648 components: - - pos: 42.029312,-8.382423 + - type: Transform + pos: 42.029312,-8.382423 parent: 31 - type: Transform - proto: Railing entities: - uid: 11173 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 77.5,-8.5 parent: 31 - type: Transform - uid: 11174 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 76.5,-8.5 parent: 31 - type: Transform - uid: 11175 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 75.5,-8.5 parent: 31 - type: Transform - uid: 11177 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 78.5,-8.5 parent: 31 - type: Transform - uid: 11178 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 82.5,0.5 parent: 31 - type: Transform - uid: 11179 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 82.5,-0.5 parent: 31 - type: Transform - uid: 11180 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 82.5,4.5 parent: 31 - type: Transform - uid: 11181 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 82.5,5.5 parent: 31 - type: Transform - uid: 11182 components: - - pos: 77.5,13.5 + - type: Transform + pos: 77.5,13.5 parent: 31 - type: Transform - uid: 11183 components: - - pos: 76.5,13.5 + - type: Transform + pos: 76.5,13.5 parent: 31 - type: Transform - uid: 11184 components: - - pos: 75.5,13.5 + - type: Transform + pos: 75.5,13.5 parent: 31 - type: Transform - uid: 11185 components: - - pos: 67.5,13.5 + - type: Transform + pos: 67.5,13.5 parent: 31 - type: Transform - uid: 11186 components: - - pos: 66.5,13.5 + - type: Transform + pos: 66.5,13.5 parent: 31 - type: Transform - uid: 11187 components: - - pos: 65.5,13.5 + - type: Transform + pos: 65.5,13.5 parent: 31 - type: Transform - uid: 11188 components: - - pos: 64.5,13.5 + - type: Transform + pos: 64.5,13.5 parent: 31 - type: Transform - uid: 11190 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 64.5,-8.5 parent: 31 - type: Transform - uid: 11191 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 65.5,-8.5 parent: 31 - type: Transform - uid: 11192 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 66.5,-8.5 parent: 31 - type: Transform - uid: 11193 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 67.5,-8.5 parent: 31 - type: Transform - uid: 11194 components: - - pos: 78.5,13.5 + - type: Transform + pos: 78.5,13.5 parent: 31 - type: Transform - proto: RandomArcade entities: - uid: 196 components: - - pos: -18.5,-29.5 + - type: Transform + pos: -18.5,-29.5 parent: 31 - type: Transform - proto: RandomArtifactSpawner entities: - uid: 3735 components: - - pos: -15.5,-30.5 + - type: Transform + pos: -15.5,-30.5 parent: 31 - type: Transform - proto: RandomBoard entities: - uid: 786 components: - - pos: 27.5,0.5 + - type: Transform + pos: 27.5,0.5 parent: 31 - type: Transform - uid: 794 components: - - pos: 25.5,0.5 + - type: Transform + pos: 25.5,0.5 parent: 31 - type: Transform - uid: 1258 components: - - pos: 26.5,0.5 + - type: Transform + pos: 26.5,0.5 parent: 31 - type: Transform - proto: RandomDrinkBottle entities: - uid: 2326 components: - - pos: -23.5,-21.5 + - type: Transform + pos: -23.5,-21.5 parent: 31 - type: Transform - proto: RandomDrinkGlass entities: - uid: 123 components: - - pos: -3.5,-4.5 + - type: Transform + pos: -3.5,-4.5 parent: 31 - type: Transform - uid: 6101 components: - - pos: 7.5,1.5 + - type: Transform + pos: 7.5,1.5 parent: 31 - type: Transform - uid: 7078 components: - - pos: -4.5,-21.5 + - type: Transform + pos: -4.5,-21.5 parent: 31 - type: Transform - proto: RandomFoodMeal entities: - uid: 3409 components: - - pos: -6.5,-14.5 + - type: Transform + pos: -6.5,-14.5 parent: 31 - type: Transform - uid: 4145 components: - - pos: -10.5,1.5 + - type: Transform + pos: -10.5,1.5 parent: 31 - type: Transform - proto: RandomFoodSingle entities: - uid: 1158 components: - - pos: -2.5,-1.5 + - type: Transform + pos: -2.5,-1.5 parent: 31 - type: Transform - uid: 5675 components: - - pos: -22.5,9.5 + - type: Transform + pos: -22.5,9.5 parent: 31 - type: Transform - proto: RandomInstruments entities: - uid: 1189 components: - - pos: -30.5,1.5 + - type: Transform + pos: -30.5,1.5 parent: 31 - type: Transform - uid: 5710 components: - - pos: -3.5,-39.5 + - type: Transform + pos: -3.5,-39.5 parent: 31 - type: Transform - uid: 10985 components: - - pos: 59.5,-5.5 + - type: Transform + pos: 59.5,-5.5 parent: 31 - type: Transform - proto: RandomPainting entities: - uid: 1207 components: - - pos: -23.5,-20.5 + - type: Transform + pos: -23.5,-20.5 parent: 31 - type: Transform - proto: RandomPosterAny entities: - uid: 7142 components: - - pos: -10.5,-5.5 + - type: Transform + pos: -10.5,-5.5 parent: 31 - type: Transform - uid: 7953 components: - - pos: 13.5,-22.5 + - type: Transform + pos: 13.5,-22.5 parent: 31 - type: Transform - uid: 7955 components: - - pos: 28.5,-8.5 + - type: Transform + pos: 28.5,-8.5 parent: 31 - type: Transform - uid: 7956 components: - - pos: 24.5,-0.5 + - type: Transform + pos: 24.5,-0.5 parent: 31 - type: Transform - uid: 7957 components: - - pos: 35.5,-5.5 + - type: Transform + pos: 35.5,-5.5 parent: 31 - type: Transform - uid: 8268 components: - - pos: 39.5,-11.5 + - type: Transform + pos: 39.5,-11.5 parent: 31 - type: Transform - uid: 8269 components: - - pos: 34.5,-16.5 + - type: Transform + pos: 34.5,-16.5 parent: 31 - type: Transform - uid: 9283 components: - - pos: -31.5,0.5 + - type: Transform + pos: -31.5,0.5 parent: 31 - type: Transform - uid: 10530 components: - - pos: -5.5,-39.5 + - type: Transform + pos: -5.5,-39.5 parent: 31 - type: Transform - uid: 10531 components: - - pos: 7.5,-35.5 + - type: Transform + pos: 7.5,-35.5 parent: 31 - type: Transform - uid: 10532 components: - - pos: -21.5,-28.5 + - type: Transform + pos: -21.5,-28.5 parent: 31 - type: Transform - proto: RandomPosterContraband entities: - uid: 336 components: - - pos: -18.5,11.5 + - type: Transform + pos: -18.5,11.5 parent: 31 - type: Transform - uid: 7263 components: - - pos: 20.5,-21.5 + - type: Transform + pos: 20.5,-21.5 parent: 31 - type: Transform - uid: 7810 components: - - pos: -14.5,8.5 + - type: Transform + pos: -14.5,8.5 parent: 31 - type: Transform - uid: 9279 components: - - pos: -10.5,-11.5 + - type: Transform + pos: -10.5,-11.5 parent: 31 - type: Transform - uid: 10529 components: - - pos: -13.5,-36.5 + - type: Transform + pos: -13.5,-36.5 parent: 31 - type: Transform - uid: 11201 components: - - pos: -4.5,30.5 + - type: Transform + pos: -4.5,30.5 parent: 31 - type: Transform - proto: RandomPosterLegit entities: - uid: 2557 components: - - pos: -52.5,-8.5 + - type: Transform + pos: -52.5,-8.5 parent: 31 - type: Transform - uid: 4659 components: - - pos: 25.5,-11.5 + - type: Transform + pos: 25.5,-11.5 parent: 31 - type: Transform - uid: 6859 components: - - pos: 30.5,16.5 + - type: Transform + pos: 30.5,16.5 parent: 31 - type: Transform - uid: 7135 components: - - pos: -8.5,-17.5 + - type: Transform + pos: -8.5,-17.5 parent: 31 - type: Transform - uid: 7490 components: - - pos: -3.5,-31.5 + - type: Transform + pos: -3.5,-31.5 parent: 31 - type: Transform - uid: 7642 components: - - pos: -21.5,-17.5 + - type: Transform + pos: -21.5,-17.5 parent: 31 - type: Transform - uid: 9282 components: - - pos: -31.5,-1.5 + - type: Transform + pos: -31.5,-1.5 parent: 31 - type: Transform - uid: 9284 components: - - pos: -21.5,-1.5 + - type: Transform + pos: -21.5,-1.5 parent: 31 - type: Transform - uid: 10540 components: - - pos: -13.5,-23.5 + - type: Transform + pos: -13.5,-23.5 parent: 31 - type: Transform - uid: 10981 components: - - pos: 47.5,-4.5 + - type: Transform + pos: 47.5,-4.5 parent: 31 - type: Transform - uid: 11106 components: - - pos: -12.5,-13.5 + - type: Transform + pos: -12.5,-13.5 parent: 31 - type: Transform - proto: RandomSnacks entities: - uid: 7476 components: - - pos: -12.5,11.5 + - type: Transform + pos: -12.5,11.5 parent: 31 - type: Transform - uid: 10760 components: - - pos: -47.5,-9.5 + - type: Transform + pos: -47.5,-9.5 parent: 31 - type: Transform - proto: RandomSoap entities: - uid: 8440 components: - - pos: -17.5,-12.5 + - type: Transform + pos: -17.5,-12.5 parent: 31 - type: Transform - proto: RandomSpawner entities: - uid: 426 components: - - pos: -25.5,0.5 + - type: Transform + pos: -25.5,0.5 parent: 31 - type: Transform - uid: 427 components: - - pos: -17.5,3.5 + - type: Transform + pos: -17.5,3.5 parent: 31 - type: Transform - uid: 430 components: - - pos: -7.5,5.5 + - type: Transform + pos: -7.5,5.5 parent: 31 - type: Transform - uid: 494 components: - - pos: -21.5,12.5 + - type: Transform + pos: -21.5,12.5 parent: 31 - type: Transform - uid: 4382 components: - - pos: 30.5,-10.5 + - type: Transform + pos: 30.5,-10.5 parent: 31 - type: Transform - uid: 4512 components: - - pos: 36.5,-9.5 + - type: Transform + pos: 36.5,-9.5 parent: 31 - type: Transform - uid: 4513 components: - - pos: 24.5,-18.5 + - type: Transform + pos: 24.5,-18.5 parent: 31 - type: Transform - uid: 4658 components: - - pos: 24.5,-20.5 + - type: Transform + pos: 24.5,-20.5 parent: 31 - type: Transform - uid: 5212 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-18.5 parent: 31 - type: Transform - uid: 7593 components: - - pos: -14.5,-11.5 + - type: Transform + pos: -14.5,-11.5 parent: 31 - type: Transform - uid: 7594 components: - - pos: -15.5,-4.5 + - type: Transform + pos: -15.5,-4.5 parent: 31 - type: Transform - uid: 7595 components: - - pos: -8.5,-9.5 + - type: Transform + pos: -8.5,-9.5 parent: 31 - type: Transform - uid: 7603 components: - - pos: -33.5,-11.5 + - type: Transform + pos: -33.5,-11.5 parent: 31 - type: Transform - uid: 7604 components: - - pos: -33.5,-3.5 + - type: Transform + pos: -33.5,-3.5 parent: 31 - type: Transform - uid: 7608 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -20.5,-14.5 parent: 31 - type: Transform - uid: 7625 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-16.5 parent: 31 - type: Transform - uid: 7628 components: - - pos: 2.5,-9.5 + - type: Transform + pos: 2.5,-9.5 parent: 31 - type: Transform - uid: 7776 components: - - pos: -26.5,13.5 + - type: Transform + pos: -26.5,13.5 parent: 31 - type: Transform - uid: 7784 components: - - pos: -25.5,20.5 + - type: Transform + pos: -25.5,20.5 parent: 31 - type: Transform - uid: 7844 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -18.5,9.5 parent: 31 - type: Transform - uid: 7865 components: - - pos: 26.5,-22.5 + - type: Transform + pos: 26.5,-22.5 parent: 31 - type: Transform - uid: 7869 components: - - pos: -16.5,24.5 + - type: Transform + pos: -16.5,24.5 parent: 31 - type: Transform - uid: 7870 components: - - pos: -4.5,20.5 + - type: Transform + pos: -4.5,20.5 parent: 31 - type: Transform - uid: 7914 components: - - pos: 21.5,0.5 + - type: Transform + pos: 21.5,0.5 parent: 31 - type: Transform - uid: 7965 components: - - pos: 27.5,-1.5 + - type: Transform + pos: 27.5,-1.5 parent: 31 - type: Transform - uid: 7967 components: - - pos: 38.5,-7.5 + - type: Transform + pos: 38.5,-7.5 parent: 31 - type: Transform - uid: 8797 components: - - pos: -15.5,10.5 + - type: Transform + pos: -15.5,10.5 parent: 31 - type: Transform - uid: 9277 components: - - pos: -23.5,-19.5 + - type: Transform + pos: -23.5,-19.5 parent: 31 - type: Transform - uid: 9415 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-17.5 parent: 31 - type: Transform - uid: 9469 components: - - pos: -18.5,-32.5 + - type: Transform + pos: -18.5,-32.5 parent: 31 - type: Transform - uid: 10448 components: - - pos: -36.5,-16.5 + - type: Transform + pos: -36.5,-16.5 parent: 31 - type: Transform - uid: 10464 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -31.5,-18.5 parent: 31 - type: Transform - uid: 10466 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -30.5,-14.5 parent: 31 - type: Transform - uid: 10663 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 45.5,-10.5 parent: 31 - type: Transform - uid: 10761 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -39.5,-11.5 parent: 31 - type: Transform - uid: 11028 components: - - pos: -7.5,24.5 + - type: Transform + pos: -7.5,24.5 parent: 31 - type: Transform - uid: 11228 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-9.5 parent: 31 - type: Transform - uid: 11231 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-11.5 parent: 31 - type: Transform - proto: RandomVendingDrinks entities: - uid: 4027 components: - - pos: -5.5,-17.5 + - type: Transform + pos: -5.5,-17.5 parent: 31 - type: Transform - proto: RandomVendingSnacks entities: - uid: 5092 components: - - pos: -3.5,1.5 + - type: Transform + pos: -3.5,1.5 parent: 31 - type: Transform - proto: RCD entities: - uid: 621 components: - - pos: 40.557358,0.6694789 + - type: Transform + pos: 40.557358,0.6694789 parent: 31 - type: Transform - uid: 11015 components: - - pos: 42.653347,13.463804 + - type: Transform + pos: 42.653347,13.463804 parent: 31 - type: Transform - proto: RCDAmmo entities: - uid: 593 components: - - pos: 40.557358,0.5514846 + - type: Transform + pos: 40.557358,0.5514846 parent: 31 - type: Transform - proto: Recycler entities: - uid: 9266 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -34.5,-16.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10218 - type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - uid: 439 components: - - pos: 36.5,20.5 + - type: Transform + pos: 36.5,20.5 parent: 31 - type: Transform - uid: 518 components: - - pos: 40.5,20.5 + - type: Transform + pos: 40.5,20.5 parent: 31 - type: Transform - uid: 520 components: - - pos: 38.5,20.5 + - type: Transform + pos: 38.5,20.5 parent: 31 - type: Transform - uid: 1550 components: - - pos: 44.5,20.5 + - type: Transform + pos: 44.5,20.5 parent: 31 - type: Transform - uid: 1551 components: - - pos: 42.5,20.5 + - type: Transform + pos: 42.5,20.5 parent: 31 - type: Transform - uid: 3888 components: - - pos: 54.5,15.5 + - type: Transform + pos: 54.5,15.5 parent: 31 - type: Transform - uid: 6548 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,17.5 parent: 31 - type: Transform - uid: 7222 components: - - pos: 34.5,20.5 + - type: Transform + pos: 34.5,20.5 parent: 31 - type: Transform - uid: 8949 components: - - pos: -10.5,19.5 + - type: Transform + pos: -10.5,19.5 parent: 31 - type: Transform - uid: 9001 components: - - pos: -10.5,21.5 + - type: Transform + pos: -10.5,21.5 parent: 31 - type: Transform - uid: 9038 components: - - pos: 46.5,20.5 + - type: Transform + pos: 46.5,20.5 parent: 31 - type: Transform - uid: 10122 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,16.5 parent: 31 - type: Transform - uid: 11045 components: - - pos: 56.5,16.5 + - type: Transform + pos: 56.5,16.5 parent: 31 - type: Transform - uid: 11046 components: - - pos: 56.5,15.5 + - type: Transform + pos: 56.5,15.5 parent: 31 - type: Transform - uid: 11047 components: - - pos: 55.5,18.5 + - type: Transform + pos: 55.5,18.5 parent: 31 - type: Transform - uid: 11095 components: - - pos: 56.5,17.5 + - type: Transform + pos: 56.5,17.5 parent: 31 - type: Transform - proto: ReinforcedWindow entities: - uid: 3 components: - - pos: 13.5,-4.5 + - type: Transform + pos: 13.5,-4.5 parent: 31 - type: Transform - uid: 79 components: - - pos: -35.5,-22.5 + - type: Transform + pos: -35.5,-22.5 parent: 31 - type: Transform - uid: 254 components: - - pos: 11.5,-6.5 + - type: Transform + pos: 11.5,-6.5 parent: 31 - type: Transform - uid: 307 components: - - pos: 32.5,1.5 + - type: Transform + pos: 32.5,1.5 parent: 31 - type: Transform - uid: 335 components: - - pos: -50.5,-8.5 + - type: Transform + pos: -50.5,-8.5 parent: 31 - type: Transform - uid: 410 components: - - pos: 34.5,1.5 + - type: Transform + pos: 34.5,1.5 parent: 31 - type: Transform - uid: 411 components: - - pos: 30.5,4.5 + - type: Transform + pos: 30.5,4.5 parent: 31 - type: Transform - uid: 546 components: - - pos: -39.5,19.5 + - type: Transform + pos: -39.5,19.5 parent: 31 - type: Transform - uid: 572 components: - - pos: 2.5,22.5 + - type: Transform + pos: 2.5,22.5 parent: 31 - type: Transform - uid: 587 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -17.5,-19.5 parent: 31 - type: Transform - uid: 651 components: - - pos: 13.5,-2.5 + - type: Transform + pos: 13.5,-2.5 parent: 31 - type: Transform - uid: 677 components: - - pos: -42.5,-0.5 + - type: Transform + pos: -42.5,-0.5 parent: 31 - type: Transform - uid: 697 components: - - pos: -49.5,-8.5 + - type: Transform + pos: -49.5,-8.5 parent: 31 - type: Transform - uid: 717 components: - - pos: -48.5,-8.5 + - type: Transform + pos: -48.5,-8.5 parent: 31 - type: Transform - uid: 740 components: - - pos: -43.5,11.5 + - type: Transform + pos: -43.5,11.5 parent: 31 - type: Transform - uid: 747 components: - - pos: -44.5,9.5 + - type: Transform + pos: -44.5,9.5 parent: 31 - type: Transform - uid: 748 components: - - pos: -41.5,-0.5 + - type: Transform + pos: -41.5,-0.5 parent: 31 - type: Transform - uid: 790 components: - - pos: -44.5,7.5 + - type: Transform + pos: -44.5,7.5 parent: 31 - type: Transform - uid: 829 components: - - pos: 52.5,8.5 + - type: Transform + pos: 52.5,8.5 parent: 31 - type: Transform - uid: 871 components: - - pos: 34.5,-12.5 + - type: Transform + pos: 34.5,-12.5 parent: 31 - type: Transform - uid: 889 components: - - pos: -41.5,3.5 + - type: Transform + pos: -41.5,3.5 parent: 31 - type: Transform - uid: 973 components: - - pos: -3.5,7.5 + - type: Transform + pos: -3.5,7.5 parent: 31 - type: Transform - uid: 993 components: - - pos: -43.5,3.5 + - type: Transform + pos: -43.5,3.5 parent: 31 - type: Transform - uid: 1013 components: - - pos: 4.5,26.5 + - type: Transform + pos: 4.5,26.5 parent: 31 - type: Transform - uid: 1051 components: - - pos: -1.5,9.5 + - type: Transform + pos: -1.5,9.5 parent: 31 - type: Transform - uid: 1183 components: - - pos: 58.5,6.5 + - type: Transform + pos: 58.5,6.5 parent: 31 - type: Transform - uid: 1254 components: - - pos: -10.5,14.5 + - type: Transform + pos: -10.5,14.5 parent: 31 - type: Transform - uid: 1260 components: - - pos: 25.5,10.5 + - type: Transform + pos: 25.5,10.5 parent: 31 - type: Transform - uid: 1373 components: - - pos: -2.5,9.5 + - type: Transform + pos: -2.5,9.5 parent: 31 - type: Transform - uid: 1381 components: - - pos: 2.5,26.5 + - type: Transform + pos: 2.5,26.5 parent: 31 - type: Transform - uid: 1389 components: - - pos: -0.5,27.5 + - type: Transform + pos: -0.5,27.5 parent: 31 - type: Transform - uid: 1390 components: - - pos: -1.5,27.5 + - type: Transform + pos: -1.5,27.5 parent: 31 - type: Transform - uid: 1391 components: - - pos: 4.5,22.5 + - type: Transform + pos: 4.5,22.5 parent: 31 - type: Transform - uid: 1392 components: - - pos: 10.5,29.5 + - type: Transform + pos: 10.5,29.5 parent: 31 - type: Transform - uid: 1394 components: - - pos: 9.5,31.5 + - type: Transform + pos: 9.5,31.5 parent: 31 - type: Transform - uid: 1397 components: - - pos: 7.5,33.5 + - type: Transform + pos: 7.5,33.5 parent: 31 - type: Transform - uid: 1398 components: - - pos: 6.5,33.5 + - type: Transform + pos: 6.5,33.5 parent: 31 - type: Transform - uid: 1399 components: - - pos: 5.5,33.5 + - type: Transform + pos: 5.5,33.5 parent: 31 - type: Transform - uid: 1400 components: - - pos: 4.5,33.5 + - type: Transform + pos: 4.5,33.5 parent: 31 - type: Transform - uid: 1401 components: - - pos: 3.5,33.5 + - type: Transform + pos: 3.5,33.5 parent: 31 - type: Transform - uid: 1402 components: - - pos: 2.5,33.5 + - type: Transform + pos: 2.5,33.5 parent: 31 - type: Transform - uid: 1403 components: - - pos: 1.5,33.5 + - type: Transform + pos: 1.5,33.5 parent: 31 - type: Transform - uid: 1404 components: - - pos: 0.5,33.5 + - type: Transform + pos: 0.5,33.5 parent: 31 - type: Transform - uid: 1405 components: - - pos: -0.5,33.5 + - type: Transform + pos: -0.5,33.5 parent: 31 - type: Transform - uid: 1406 components: - - pos: 10.5,31.5 + - type: Transform + pos: 10.5,31.5 parent: 31 - type: Transform - uid: 1410 components: - - pos: -3.5,9.5 + - type: Transform + pos: -3.5,9.5 parent: 31 - type: Transform - uid: 1446 components: - - pos: -41.5,7.5 + - type: Transform + pos: -41.5,7.5 parent: 31 - type: Transform - uid: 1448 components: - - pos: -43.5,1.5 + - type: Transform + pos: -43.5,1.5 parent: 31 - type: Transform - uid: 1457 components: - - pos: -42.5,1.5 + - type: Transform + pos: -42.5,1.5 parent: 31 - type: Transform - uid: 1506 components: - - pos: 19.5,6.5 + - type: Transform + pos: 19.5,6.5 parent: 31 - type: Transform - uid: 1507 components: - - pos: 20.5,6.5 + - type: Transform + pos: 20.5,6.5 parent: 31 - type: Transform - uid: 1508 components: - - pos: 21.5,6.5 + - type: Transform + pos: 21.5,6.5 parent: 31 - type: Transform - uid: 1509 components: - - pos: 22.5,6.5 + - type: Transform + pos: 22.5,6.5 parent: 31 - type: Transform - uid: 1510 components: - - pos: 8.5,6.5 + - type: Transform + pos: 8.5,6.5 parent: 31 - type: Transform - uid: 1511 components: - - pos: 6.5,19.5 + - type: Transform + pos: 6.5,19.5 parent: 31 - type: Transform - uid: 1530 components: - - pos: 41.5,-22.5 + - type: Transform + pos: 41.5,-22.5 parent: 31 - type: Transform - uid: 1582 components: - - pos: 19.5,20.5 + - type: Transform + pos: 19.5,20.5 parent: 31 - type: Transform - uid: 1585 components: - - pos: 30.5,23.5 + - type: Transform + pos: 30.5,23.5 parent: 31 - type: Transform - uid: 1595 components: - - pos: 15.5,20.5 + - type: Transform + pos: 15.5,20.5 parent: 31 - type: Transform - uid: 1596 components: - - pos: 15.5,21.5 + - type: Transform + pos: 15.5,21.5 parent: 31 - type: Transform - uid: 1657 components: - - pos: -15.5,26.5 + - type: Transform + pos: -15.5,26.5 parent: 31 - type: Transform - uid: 1660 components: - - pos: -18.5,26.5 + - type: Transform + pos: -18.5,26.5 parent: 31 - type: Transform - uid: 1686 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 61.5,1.5 parent: 31 - type: Transform - uid: 1736 components: - - pos: 40.5,-26.5 + - type: Transform + pos: 40.5,-26.5 parent: 31 - type: Transform - uid: 1758 components: - - pos: -27.5,-20.5 + - type: Transform + pos: -27.5,-20.5 parent: 31 - type: Transform - uid: 1763 components: - - pos: 40.5,-22.5 + - type: Transform + pos: 40.5,-22.5 parent: 31 - type: Transform - uid: 1765 components: - - pos: -10.5,13.5 + - type: Transform + pos: -10.5,13.5 parent: 31 - type: Transform - uid: 1782 components: - - pos: -42.5,11.5 + - type: Transform + pos: -42.5,11.5 parent: 31 - type: Transform - uid: 1809 components: - - pos: 41.5,-26.5 + - type: Transform + pos: 41.5,-26.5 parent: 31 - type: Transform - uid: 1919 components: - - pos: 36.5,-0.5 + - type: Transform + pos: 36.5,-0.5 parent: 31 - type: Transform - uid: 1933 components: - - pos: 37.5,1.5 + - type: Transform + pos: 37.5,1.5 parent: 31 - type: Transform - uid: 1953 components: - - pos: -12.5,6.5 + - type: Transform + pos: -12.5,6.5 parent: 31 - type: Transform - uid: 1954 components: - - pos: -13.5,6.5 + - type: Transform + pos: -13.5,6.5 parent: 31 - type: Transform - uid: 1972 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,18.5 parent: 31 - type: Transform - uid: 1988 components: - - pos: -16.5,7.5 + - type: Transform + pos: -16.5,7.5 parent: 31 - type: Transform - uid: 1990 components: - - pos: -16.5,6.5 + - type: Transform + pos: -16.5,6.5 parent: 31 - type: Transform - uid: 2056 components: - - pos: -12.5,26.5 + - type: Transform + pos: -12.5,26.5 parent: 31 - type: Transform - uid: 2096 components: - - pos: -13.5,9.5 + - type: Transform + pos: -13.5,9.5 parent: 31 - type: Transform - uid: 2097 components: - - pos: -7.5,9.5 + - type: Transform + pos: -7.5,9.5 parent: 31 - type: Transform - uid: 2098 components: - - pos: -9.5,8.5 + - type: Transform + pos: -9.5,8.5 parent: 31 - type: Transform - uid: 2117 components: - - pos: -11.5,8.5 + - type: Transform + pos: -11.5,8.5 parent: 31 - type: Transform - uid: 2119 components: - - pos: 13.5,-1.5 + - type: Transform + pos: 13.5,-1.5 parent: 31 - type: Transform - uid: 2185 components: - - pos: -6.5,-22.5 + - type: Transform + pos: -6.5,-22.5 parent: 31 - type: Transform - uid: 2210 components: - - pos: 12.5,-6.5 + - type: Transform + pos: 12.5,-6.5 parent: 31 - type: Transform - uid: 2445 components: - - pos: 28.5,-13.5 + - type: Transform + pos: 28.5,-13.5 parent: 31 - type: Transform - uid: 3139 components: - - pos: 36.5,18.5 + - type: Transform + pos: 36.5,18.5 parent: 31 - type: Transform - uid: 3421 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-30.5 parent: 31 - type: Transform - uid: 3427 components: - - pos: -9.5,26.5 + - type: Transform + pos: -9.5,26.5 parent: 31 - type: Transform - uid: 3766 components: - - pos: 59.5,11.5 + - type: Transform + pos: 59.5,11.5 parent: 31 - type: Transform - uid: 3836 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,13.5 parent: 31 - type: Transform - uid: 3911 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 31 - type: Transform - uid: 3923 components: - - pos: -40.5,1.5 + - type: Transform + pos: -40.5,1.5 parent: 31 - type: Transform - uid: 3967 components: - - pos: -42.5,3.5 + - type: Transform + pos: -42.5,3.5 parent: 31 - type: Transform - uid: 3972 components: - - pos: -9.5,7.5 + - type: Transform + pos: -9.5,7.5 parent: 31 - type: Transform - uid: 3978 components: - - pos: 28.5,-12.5 + - type: Transform + pos: 28.5,-12.5 parent: 31 - type: Transform - uid: 4014 components: - - pos: -43.5,-0.5 + - type: Transform + pos: -43.5,-0.5 parent: 31 - type: Transform - uid: 4098 components: - - pos: -11.5,7.5 + - type: Transform + pos: -11.5,7.5 parent: 31 - type: Transform - uid: 4113 components: - - pos: -7.5,18.5 + - type: Transform + pos: -7.5,18.5 parent: 31 - type: Transform - uid: 4116 components: - - pos: -3.5,6.5 + - type: Transform + pos: -3.5,6.5 parent: 31 - type: Transform - uid: 4274 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,11.5 parent: 31 - type: Transform - uid: 4275 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,9.5 parent: 31 - type: Transform - uid: 4282 components: - - pos: 48.5,18.5 + - type: Transform + pos: 48.5,18.5 parent: 31 - type: Transform - uid: 4287 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,12.5 parent: 31 - type: Transform - uid: 4289 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,10.5 parent: 31 - type: Transform - uid: 4311 components: - - pos: 17.5,20.5 + - type: Transform + pos: 17.5,20.5 parent: 31 - type: Transform - uid: 4375 components: - - pos: 51.5,-17.5 + - type: Transform + pos: 51.5,-17.5 parent: 31 - type: Transform - uid: 4398 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 54.5,3.5 parent: 31 - type: Transform - uid: 4515 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 35.5,-26.5 parent: 31 - type: Transform - uid: 4516 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 31.5,-24.5 parent: 31 - type: Transform - uid: 4522 components: - - pos: 34.5,-13.5 + - type: Transform + pos: 34.5,-13.5 parent: 31 - type: Transform - uid: 4577 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 36.5,-22.5 parent: 31 - type: Transform - uid: 4578 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 37.5,-22.5 parent: 31 - type: Transform - uid: 4583 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 36.5,-26.5 parent: 31 - type: Transform - uid: 4627 components: - - pos: 45.5,-29.5 + - type: Transform + pos: 45.5,-29.5 parent: 31 - type: Transform - uid: 4628 components: - - pos: 44.5,-29.5 + - type: Transform + pos: 44.5,-29.5 parent: 31 - type: Transform - uid: 4629 components: - - pos: 44.5,-28.5 + - type: Transform + pos: 44.5,-28.5 parent: 31 - type: Transform - uid: 4631 components: - - pos: 46.5,-19.5 + - type: Transform + pos: 46.5,-19.5 parent: 31 - type: Transform - uid: 4632 components: - - pos: 44.5,-21.5 + - type: Transform + pos: 44.5,-21.5 parent: 31 - type: Transform - uid: 4634 components: - - pos: 46.5,-29.5 + - type: Transform + pos: 46.5,-29.5 parent: 31 - type: Transform - uid: 4635 components: - - pos: 44.5,-27.5 + - type: Transform + pos: 44.5,-27.5 parent: 31 - type: Transform - uid: 4656 components: - - pos: 31.5,-23.5 + - type: Transform + pos: 31.5,-23.5 parent: 31 - type: Transform - uid: 4663 components: - - pos: 31.5,-25.5 + - type: Transform + pos: 31.5,-25.5 parent: 31 - type: Transform - uid: 4673 components: - - pos: 56.5,-26.5 + - type: Transform + pos: 56.5,-26.5 parent: 31 - type: Transform - uid: 4676 components: - - pos: 47.5,-18.5 + - type: Transform + pos: 47.5,-18.5 parent: 31 - type: Transform - uid: 4677 components: - - pos: 51.5,-18.5 + - type: Transform + pos: 51.5,-18.5 parent: 31 - type: Transform - uid: 4679 components: - - pos: 50.5,-17.5 + - type: Transform + pos: 50.5,-17.5 parent: 31 - type: Transform - uid: 4680 components: - - pos: 49.5,-17.5 + - type: Transform + pos: 49.5,-17.5 parent: 31 - type: Transform - uid: 4681 components: - - pos: 48.5,-17.5 + - type: Transform + pos: 48.5,-17.5 parent: 31 - type: Transform - uid: 4819 components: - - pos: 12.5,-32.5 + - type: Transform + pos: 12.5,-32.5 parent: 31 - type: Transform - uid: 4849 components: - - pos: 2.5,-31.5 + - type: Transform + pos: 2.5,-31.5 parent: 31 - type: Transform - uid: 4850 components: - - pos: 3.5,-31.5 + - type: Transform + pos: 3.5,-31.5 parent: 31 - type: Transform - uid: 4851 components: - - pos: 4.5,-31.5 + - type: Transform + pos: 4.5,-31.5 parent: 31 - type: Transform - uid: 4883 components: - - pos: -0.5,6.5 + - type: Transform + pos: -0.5,6.5 parent: 31 - type: Transform - uid: 4930 components: - - pos: 19.5,21.5 + - type: Transform + pos: 19.5,21.5 parent: 31 - type: Transform - uid: 4933 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 54.5,1.5 parent: 31 - type: Transform - uid: 4940 components: - - pos: 28.5,-25.5 + - type: Transform + pos: 28.5,-25.5 parent: 31 - type: Transform - uid: 4943 components: - - pos: 28.5,-23.5 + - type: Transform + pos: 28.5,-23.5 parent: 31 - type: Transform - uid: 5002 components: - - pos: 28.5,-14.5 + - type: Transform + pos: 28.5,-14.5 parent: 31 - type: Transform - uid: 5073 components: - - pos: 13.5,1.5 + - type: Transform + pos: 13.5,1.5 parent: 31 - type: Transform - uid: 5083 components: - - pos: 13.5,0.5 + - type: Transform + pos: 13.5,0.5 parent: 31 - type: Transform - uid: 5113 components: - - pos: -2.5,6.5 + - type: Transform + pos: -2.5,6.5 parent: 31 - type: Transform - uid: 5124 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,16.5 parent: 31 - type: Transform - uid: 5229 components: - - pos: -29.5,18.5 + - type: Transform + pos: -29.5,18.5 parent: 31 - type: Transform - uid: 5230 components: - - pos: -28.5,18.5 + - type: Transform + pos: -28.5,18.5 parent: 31 - type: Transform - uid: 5766 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,14.5 parent: 31 - type: Transform - uid: 5988 components: - - pos: -40.5,-8.5 + - type: Transform + pos: -40.5,-8.5 parent: 31 - type: Transform - uid: 6174 components: - - pos: -41.5,-8.5 + - type: Transform + pos: -41.5,-8.5 parent: 31 - type: Transform - uid: 6215 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,18.5 parent: 31 - type: Transform - uid: 6246 components: - - pos: 17.5,21.5 + - type: Transform + pos: 17.5,21.5 parent: 31 - type: Transform - uid: 6247 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,17.5 parent: 31 - type: Transform - uid: 6335 components: - - pos: 47.5,18.5 + - type: Transform + pos: 47.5,18.5 parent: 31 - type: Transform - uid: 6354 components: - - pos: 50.5,18.5 + - type: Transform + pos: 50.5,18.5 parent: 31 - type: Transform - uid: 6362 components: - - pos: 45.5,7.5 + - type: Transform + pos: 45.5,7.5 parent: 31 - type: Transform - uid: 6446 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,15.5 parent: 31 - type: Transform - uid: 6448 components: - - pos: 38.5,18.5 + - type: Transform + pos: 38.5,18.5 parent: 31 - type: Transform - uid: 6449 components: - - pos: 39.5,18.5 + - type: Transform + pos: 39.5,18.5 parent: 31 - type: Transform - uid: 6471 components: - - pos: 40.5,18.5 + - type: Transform + pos: 40.5,18.5 parent: 31 - type: Transform - uid: 6480 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 61.5,0.5 parent: 31 - type: Transform - uid: 6482 components: - - pos: 37.5,18.5 + - type: Transform + pos: 37.5,18.5 parent: 31 - type: Transform - uid: 6486 components: - - pos: 43.5,18.5 + - type: Transform + pos: 43.5,18.5 parent: 31 - type: Transform - uid: 6487 components: - - pos: 42.5,18.5 + - type: Transform + pos: 42.5,18.5 parent: 31 - type: Transform - uid: 6489 components: - - pos: 46.5,18.5 + - type: Transform + pos: 46.5,18.5 parent: 31 - type: Transform - uid: 6495 components: - - pos: -45.5,-8.5 + - type: Transform + pos: -45.5,-8.5 parent: 31 - type: Transform - uid: 6497 components: - - pos: 44.5,18.5 + - type: Transform + pos: 44.5,18.5 parent: 31 - type: Transform - uid: 6506 components: - - pos: 41.5,18.5 + - type: Transform + pos: 41.5,18.5 parent: 31 - type: Transform - uid: 6541 components: - - pos: 45.5,9.5 + - type: Transform + pos: 45.5,9.5 parent: 31 - type: Transform - uid: 6567 components: - - pos: -49.5,-12.5 + - type: Transform + pos: -49.5,-12.5 parent: 31 - type: Transform - uid: 6614 components: - - pos: 35.5,18.5 + - type: Transform + pos: 35.5,18.5 parent: 31 - type: Transform - uid: 6629 components: - - pos: 32.5,7.5 + - type: Transform + pos: 32.5,7.5 parent: 31 - type: Transform - uid: 6632 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 61.5,4.5 parent: 31 - type: Transform - uid: 6634 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 61.5,2.5 parent: 31 - type: Transform - uid: 6637 components: - - pos: 33.5,18.5 + - type: Transform + pos: 33.5,18.5 parent: 31 - type: Transform - uid: 6640 components: - - pos: 45.5,18.5 + - type: Transform + pos: 45.5,18.5 parent: 31 - type: Transform - uid: 6828 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 61.5,3.5 parent: 31 - type: Transform - uid: 6838 components: - - pos: 25.5,22.5 + - type: Transform + pos: 25.5,22.5 parent: 31 - type: Transform - uid: 6885 components: - - pos: 34.5,7.5 + - type: Transform + pos: 34.5,7.5 parent: 31 - type: Transform - uid: 6890 components: - - pos: 34.5,18.5 + - type: Transform + pos: 34.5,18.5 parent: 31 - type: Transform - uid: 6972 components: - - pos: 47.5,-17.5 + - type: Transform + pos: 47.5,-17.5 parent: 31 - type: Transform - uid: 6973 components: - - pos: 47.5,-30.5 + - type: Transform + pos: 47.5,-30.5 parent: 31 - type: Transform - uid: 6974 components: - - pos: 47.5,-31.5 + - type: Transform + pos: 47.5,-31.5 parent: 31 - type: Transform - uid: 6975 components: - - pos: 51.5,-31.5 + - type: Transform + pos: 51.5,-31.5 parent: 31 - type: Transform - uid: 6976 components: - - pos: 51.5,-30.5 + - type: Transform + pos: 51.5,-30.5 parent: 31 - type: Transform - uid: 6977 components: - - pos: 52.5,-29.5 + - type: Transform + pos: 52.5,-29.5 parent: 31 - type: Transform - uid: 6978 components: - - pos: 54.5,-27.5 + - type: Transform + pos: 54.5,-27.5 parent: 31 - type: Transform - uid: 6979 components: - - pos: 54.5,-21.5 + - type: Transform + pos: 54.5,-21.5 parent: 31 - type: Transform - uid: 6980 components: - - pos: 52.5,-19.5 + - type: Transform + pos: 52.5,-19.5 parent: 31 - type: Transform - uid: 6988 components: - - pos: 55.5,-22.5 + - type: Transform + pos: 55.5,-22.5 parent: 31 - type: Transform - uid: 6989 components: - - pos: 56.5,-22.5 + - type: Transform + pos: 56.5,-22.5 parent: 31 - type: Transform - uid: 6991 components: - - pos: 55.5,-26.5 + - type: Transform + pos: 55.5,-26.5 parent: 31 - type: Transform - uid: 6996 components: - - pos: 56.5,-23.5 + - type: Transform + pos: 56.5,-23.5 parent: 31 - type: Transform - uid: 6997 components: - - pos: 56.5,-25.5 + - type: Transform + pos: 56.5,-25.5 parent: 31 - type: Transform - uid: 6998 components: - - pos: 56.5,-24.5 + - type: Transform + pos: 56.5,-24.5 parent: 31 - type: Transform - uid: 6999 components: - - pos: 53.5,-29.5 + - type: Transform + pos: 53.5,-29.5 parent: 31 - type: Transform - uid: 7000 components: - - pos: 54.5,-29.5 + - type: Transform + pos: 54.5,-29.5 parent: 31 - type: Transform - uid: 7001 components: - - pos: 54.5,-28.5 + - type: Transform + pos: 54.5,-28.5 parent: 31 - type: Transform - uid: 7002 components: - - pos: 53.5,-19.5 + - type: Transform + pos: 53.5,-19.5 parent: 31 - type: Transform - uid: 7003 components: - - pos: 54.5,-19.5 + - type: Transform + pos: 54.5,-19.5 parent: 31 - type: Transform - uid: 7004 components: - - pos: 54.5,-20.5 + - type: Transform + pos: 54.5,-20.5 parent: 31 - type: Transform - uid: 7005 components: - - pos: 45.5,-19.5 + - type: Transform + pos: 45.5,-19.5 parent: 31 - type: Transform - uid: 7006 components: - - pos: 44.5,-19.5 + - type: Transform + pos: 44.5,-19.5 parent: 31 - type: Transform - uid: 7007 components: - - pos: 44.5,-20.5 + - type: Transform + pos: 44.5,-20.5 parent: 31 - type: Transform - uid: 7008 components: - - pos: 42.5,-26.5 + - type: Transform + pos: 42.5,-26.5 parent: 31 - type: Transform - uid: 7009 components: - - pos: 42.5,-22.5 + - type: Transform + pos: 42.5,-22.5 parent: 31 - type: Transform - uid: 7029 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 37.5,-26.5 parent: 31 - type: Transform - uid: 7069 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 35.5,-22.5 parent: 31 - type: Transform - uid: 7071 components: - - pos: 60.5,11.5 + - type: Transform + pos: 60.5,11.5 parent: 31 - type: Transform - uid: 7118 components: - - pos: -34.5,-22.5 + - type: Transform + pos: -34.5,-22.5 parent: 31 - type: Transform - uid: 7242 components: - - pos: 13.5,-5.5 + - type: Transform + pos: 13.5,-5.5 parent: 31 - type: Transform - uid: 7326 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 23.5,-8.5 parent: 31 - type: Transform - uid: 7336 components: - - pos: 1.5,-27.5 + - type: Transform + pos: 1.5,-27.5 parent: 31 - type: Transform - uid: 7443 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-32.5 parent: 31 - type: Transform - uid: 7444 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-32.5 parent: 31 - type: Transform - uid: 7445 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-32.5 parent: 31 - type: Transform - uid: 7446 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-32.5 parent: 31 - type: Transform - uid: 7473 components: - - pos: -31.5,19.5 + - type: Transform + pos: -31.5,19.5 parent: 31 - type: Transform - uid: 7540 components: - - pos: -13.5,-40.5 + - type: Transform + pos: -13.5,-40.5 parent: 31 - type: Transform - uid: 7552 components: - - pos: -4.5,-33.5 + - type: Transform + pos: -4.5,-33.5 parent: 31 - type: Transform - uid: 7554 components: - - pos: -5.5,-33.5 + - type: Transform + pos: -5.5,-33.5 parent: 31 - type: Transform - uid: 7556 components: - - pos: -14.5,-40.5 + - type: Transform + pos: -14.5,-40.5 parent: 31 - type: Transform - uid: 7682 components: - - pos: -39.5,12.5 + - type: Transform + pos: -39.5,12.5 parent: 31 - type: Transform - uid: 7749 components: - - pos: -7.5,6.5 + - type: Transform + pos: -7.5,6.5 parent: 31 - type: Transform - uid: 7750 components: - - pos: -8.5,6.5 + - type: Transform + pos: -8.5,6.5 parent: 31 - type: Transform - uid: 7796 components: - - pos: -3.5,8.5 + - type: Transform + pos: -3.5,8.5 parent: 31 - type: Transform - uid: 7817 components: - - pos: -26.5,-20.5 + - type: Transform + pos: -26.5,-20.5 parent: 31 - type: Transform - uid: 7818 components: - - pos: -39.5,18.5 + - type: Transform + pos: -39.5,18.5 parent: 31 - type: Transform - uid: 7820 components: - - pos: -15.5,-40.5 + - type: Transform + pos: -15.5,-40.5 parent: 31 - type: Transform - uid: 7823 components: - - pos: -6.5,-33.5 + - type: Transform + pos: -6.5,-33.5 parent: 31 - type: Transform - uid: 7903 components: - - pos: 34.5,-14.5 + - type: Transform + pos: 34.5,-14.5 parent: 31 - type: Transform - uid: 7946 components: - - pos: 48.5,-31.5 + - type: Transform + pos: 48.5,-31.5 parent: 31 - type: Transform - uid: 7963 components: - - pos: -42.5,-8.5 + - type: Transform + pos: -42.5,-8.5 parent: 31 - type: Transform - uid: 8028 components: - - pos: 50.5,-31.5 + - type: Transform + pos: 50.5,-31.5 parent: 31 - type: Transform - uid: 8125 components: - - pos: 61.5,6.5 + - type: Transform + pos: 61.5,6.5 parent: 31 - type: Transform - uid: 8203 components: - - pos: 49.5,-31.5 + - type: Transform + pos: 49.5,-31.5 parent: 31 - type: Transform - uid: 8204 components: - - pos: -48.5,-12.5 + - type: Transform + pos: -48.5,-12.5 parent: 31 - type: Transform - uid: 8221 components: - - pos: -32.5,19.5 + - type: Transform + pos: -32.5,19.5 parent: 31 - type: Transform - uid: 8296 components: - - pos: -46.5,-8.5 + - type: Transform + pos: -46.5,-8.5 parent: 31 - type: Transform - uid: 8300 components: - - pos: -54.5,-10.5 + - type: Transform + pos: -54.5,-10.5 parent: 31 - type: Transform - uid: 8302 components: - - pos: 54.5,7.5 + - type: Transform + pos: 54.5,7.5 parent: 31 - type: Transform - uid: 8314 components: - - pos: 49.5,-12.5 + - type: Transform + pos: 49.5,-12.5 parent: 31 - type: Transform - uid: 8328 components: - - pos: 54.5,-7.5 + - type: Transform + pos: 54.5,-7.5 parent: 31 - type: Transform - uid: 8358 components: - - pos: 26.5,22.5 + - type: Transform + pos: 26.5,22.5 parent: 31 - type: Transform - uid: 8373 components: - - pos: -35.5,-15.5 + - type: Transform + pos: -35.5,-15.5 parent: 31 - type: Transform - uid: 8374 components: - - pos: -46.5,-12.5 + - type: Transform + pos: -46.5,-12.5 parent: 31 - type: Transform - uid: 8382 components: - - pos: -47.5,-8.5 + - type: Transform + pos: -47.5,-8.5 parent: 31 - type: Transform - uid: 8383 components: - - pos: -47.5,-12.5 + - type: Transform + pos: -47.5,-12.5 parent: 31 - type: Transform - uid: 8460 components: - - pos: -16.5,-33.5 + - type: Transform + pos: -16.5,-33.5 parent: 31 - type: Transform - uid: 8461 components: - - pos: -15.5,-33.5 + - type: Transform + pos: -15.5,-33.5 parent: 31 - type: Transform - uid: 8468 components: - - pos: -14.5,-33.5 + - type: Transform + pos: -14.5,-33.5 parent: 31 - type: Transform - uid: 8478 components: - - pos: -26.5,-27.5 + - type: Transform + pos: -26.5,-27.5 parent: 31 - type: Transform - uid: 8479 components: - - pos: -27.5,-27.5 + - type: Transform + pos: -27.5,-27.5 parent: 31 - type: Transform - uid: 8481 components: - - pos: -26.5,-25.5 + - type: Transform + pos: -26.5,-25.5 parent: 31 - type: Transform - uid: 8482 components: - - pos: -27.5,-25.5 + - type: Transform + pos: -27.5,-25.5 parent: 31 - type: Transform - uid: 8531 components: - - pos: -37.5,-28.5 + - type: Transform + pos: -37.5,-28.5 parent: 31 - type: Transform - uid: 8533 components: - - pos: -32.5,-33.5 + - type: Transform + pos: -32.5,-33.5 parent: 31 - type: Transform - uid: 8543 components: - - pos: -37.5,-24.5 + - type: Transform + pos: -37.5,-24.5 parent: 31 - type: Transform - uid: 8546 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -29.5,-32.5 parent: 31 - type: Transform - uid: 8556 components: - - pos: -36.5,-22.5 + - type: Transform + pos: -36.5,-22.5 parent: 31 - type: Transform - uid: 8560 components: - - pos: -33.5,-23.5 + - type: Transform + pos: -33.5,-23.5 parent: 31 - type: Transform - uid: 8563 components: - - pos: -37.5,-23.5 + - type: Transform + pos: -37.5,-23.5 parent: 31 - type: Transform - uid: 8564 components: - - pos: -33.5,-24.5 + - type: Transform + pos: -33.5,-24.5 parent: 31 - type: Transform - uid: 8935 components: - - pos: -16.5,-40.5 + - type: Transform + pos: -16.5,-40.5 parent: 31 - type: Transform - uid: 9025 components: - - pos: -44.5,3.5 + - type: Transform + pos: -44.5,3.5 parent: 31 - type: Transform - uid: 9026 components: - - pos: -41.5,1.5 + - type: Transform + pos: -41.5,1.5 parent: 31 - type: Transform - uid: 9085 components: - - pos: 29.5,21.5 + - type: Transform + pos: 29.5,21.5 parent: 31 - type: Transform - uid: 9128 components: - - pos: 5.5,-11.5 + - type: Transform + pos: 5.5,-11.5 parent: 31 - type: Transform - uid: 9129 components: - - pos: 5.5,-10.5 + - type: Transform + pos: 5.5,-10.5 parent: 31 - type: Transform - uid: 9130 components: - - pos: 5.5,-8.5 + - type: Transform + pos: 5.5,-8.5 parent: 31 - type: Transform - uid: 9131 components: - - pos: 5.5,-7.5 + - type: Transform + pos: 5.5,-7.5 parent: 31 - type: Transform - uid: 9173 components: - - pos: -35.5,-12.5 - parent: 31 - type: Transform - - uid: 9184 - components: - - pos: -39.5,-5.5 + - type: Transform + pos: -35.5,-12.5 parent: 31 - type: Transform - uid: 9187 components: - - pos: -39.5,-1.5 + - type: Transform + pos: -39.5,-1.5 parent: 31 - type: Transform - uid: 9189 components: - - pos: -36.5,-12.5 + - type: Transform + pos: -36.5,-12.5 parent: 31 - type: Transform - uid: 9194 components: - - pos: -37.5,-12.5 - parent: 31 - type: Transform - - uid: 9207 - components: - - pos: -39.5,-3.5 + - type: Transform + pos: -37.5,-12.5 parent: 31 - type: Transform - uid: 9357 components: - - pos: -44.5,1.5 + - type: Transform + pos: -44.5,1.5 parent: 31 - type: Transform - uid: 9358 components: - - pos: -43.5,9.5 + - type: Transform + pos: -43.5,9.5 parent: 31 - type: Transform - uid: 9359 components: - - pos: -40.5,7.5 + - type: Transform + pos: -40.5,7.5 parent: 31 - type: Transform - uid: 9360 components: - - pos: -40.5,9.5 + - type: Transform + pos: -40.5,9.5 parent: 31 - type: Transform - uid: 9361 components: - - pos: -25.5,-23.5 + - type: Transform + pos: -25.5,-23.5 parent: 31 - type: Transform - uid: 9363 components: - - pos: 5.5,-5.5 + - type: Transform + pos: 5.5,-5.5 parent: 31 - type: Transform - uid: 9379 components: - - pos: -43.5,7.5 + - type: Transform + pos: -43.5,7.5 parent: 31 - type: Transform - uid: 9380 components: - - pos: -41.5,4.5 + - type: Transform + pos: -41.5,4.5 parent: 31 - type: Transform - uid: 9381 components: - - pos: -41.5,5.5 + - type: Transform + pos: -41.5,5.5 parent: 31 - type: Transform - uid: 9382 components: - - pos: -41.5,11.5 + - type: Transform + pos: -41.5,11.5 parent: 31 - type: Transform - uid: 9383 components: - - pos: -41.5,6.5 + - type: Transform + pos: -41.5,6.5 parent: 31 - type: Transform - uid: 9384 components: - - pos: -41.5,9.5 + - type: Transform + pos: -41.5,9.5 parent: 31 - type: Transform - uid: 9385 components: - - pos: -42.5,9.5 + - type: Transform + pos: -42.5,9.5 parent: 31 - type: Transform - uid: 9386 components: - - pos: -40.5,3.5 + - type: Transform + pos: -40.5,3.5 parent: 31 - type: Transform - uid: 9387 components: - - pos: -42.5,7.5 + - type: Transform + pos: -42.5,7.5 parent: 31 - type: Transform - uid: 9399 components: - - pos: -4.5,-37.5 + - type: Transform + pos: -4.5,-37.5 parent: 31 - type: Transform - uid: 9400 components: - - pos: -3.5,-37.5 + - type: Transform + pos: -3.5,-37.5 parent: 31 - type: Transform - uid: 9401 components: - - pos: -2.5,-37.5 + - type: Transform + pos: -2.5,-37.5 parent: 31 - type: Transform - uid: 9403 components: - - pos: -1.5,-37.5 + - type: Transform + pos: -1.5,-37.5 parent: 31 - type: Transform - uid: 9514 components: - - pos: 5.5,-4.5 + - type: Transform + pos: 5.5,-4.5 parent: 31 - type: Transform - uid: 9526 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-40.5 parent: 31 - type: Transform - uid: 9585 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-42.5 parent: 31 - type: Transform - uid: 9608 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-20.5 parent: 31 - type: Transform - uid: 9645 components: - - pos: -3.5,-44.5 + - type: Transform + pos: -3.5,-44.5 parent: 31 - type: Transform - uid: 9646 components: - - pos: -2.5,-44.5 + - type: Transform + pos: -2.5,-44.5 parent: 31 - type: Transform - uid: 9647 components: - - pos: -0.5,-45.5 + - type: Transform + pos: -0.5,-45.5 parent: 31 - type: Transform - uid: 9648 components: - - pos: 0.5,-45.5 + - type: Transform + pos: 0.5,-45.5 parent: 31 - type: Transform - uid: 9654 components: - - pos: 1.5,-45.5 + - type: Transform + pos: 1.5,-45.5 parent: 31 - type: Transform - uid: 9694 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-41.5 parent: 31 - type: Transform - uid: 9708 components: - - pos: 54.5,-8.5 + - type: Transform + pos: 54.5,-8.5 parent: 31 - type: Transform - uid: 9711 components: - - pos: -39.5,14.5 + - type: Transform + pos: -39.5,14.5 parent: 31 - type: Transform - uid: 9934 components: - - pos: 27.5,22.5 + - type: Transform + pos: 27.5,22.5 parent: 31 - type: Transform - uid: 10071 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,24.5 parent: 31 - type: Transform - uid: 10072 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,23.5 parent: 31 - type: Transform - uid: 10073 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,24.5 parent: 31 - type: Transform - uid: 10074 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,23.5 parent: 31 - type: Transform - uid: 10075 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,26.5 parent: 31 - type: Transform - uid: 10076 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,27.5 parent: 31 - type: Transform - uid: 10077 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,27.5 parent: 31 - type: Transform - uid: 10078 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 31 - type: Transform - uid: 10079 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 21.5,28.5 parent: 31 - type: Transform - uid: 10121 components: - - pos: 49.5,18.5 + - type: Transform + pos: 49.5,18.5 parent: 31 - type: Transform - uid: 10210 components: - - pos: -34.5,-15.5 + - type: Transform + pos: -34.5,-15.5 parent: 31 - type: Transform - uid: 10212 components: - - pos: -33.5,-15.5 + - type: Transform + pos: -33.5,-15.5 parent: 31 - type: Transform - uid: 10214 components: - - pos: -33.5,-14.5 + - type: Transform + pos: -33.5,-14.5 parent: 31 - type: Transform - uid: 10303 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 24.5,-8.5 parent: 31 - type: Transform - uid: 10352 components: - - pos: 20.5,-10.5 + - type: Transform + pos: 20.5,-10.5 parent: 31 - type: Transform - uid: 10354 components: - - pos: 20.5,-9.5 + - type: Transform + pos: 20.5,-9.5 parent: 31 - type: Transform - uid: 10482 components: - - pos: 50.5,-12.5 + - type: Transform + pos: 50.5,-12.5 parent: 31 - type: Transform - uid: 10524 components: - - pos: 51.5,-12.5 + - type: Transform + pos: 51.5,-12.5 parent: 31 - type: Transform - uid: 10613 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 42.5,-14.5 parent: 31 - type: Transform - uid: 10616 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 43.5,-14.5 parent: 31 - type: Transform - uid: 10617 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 44.5,-14.5 parent: 31 - type: Transform - uid: 10752 components: - - pos: -54.5,-9.5 + - type: Transform + pos: -54.5,-9.5 parent: 31 - type: Transform - uid: 11130 components: - - pos: -7.5,30.5 + - type: Transform + pos: -7.5,30.5 parent: 31 - type: Transform - uid: 11131 components: - - pos: -6.5,30.5 + - type: Transform + pos: -6.5,30.5 parent: 31 - type: Transform - uid: 11132 components: - - pos: -5.5,30.5 + - type: Transform + pos: -5.5,30.5 + parent: 31 + - uid: 11411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 31 + - uid: 11412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-4.5 + parent: 31 + - uid: 11413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-2.5 parent: 31 - type: Transform - proto: RemoteSignaller entities: - uid: 4469 components: - - name: igniter remote - type: MetaData - - pos: 51.490143,16.211384 + - type: MetaData + name: igniter remote + - type: Transform + pos: 51.490143,16.211384 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 4470: - Pressed: Trigger - type: DeviceLinkSource - proto: ResearchAndDevelopmentServer entities: - uid: 8437 components: - - pos: -1.5,-21.5 + - type: Transform + pos: -1.5,-21.5 parent: 31 - type: Transform - proto: RevolverCapGun entities: - uid: 8527 components: - - pos: -20.389076,-20.48394 + - type: Transform + pos: -20.389076,-20.48394 parent: 31 - type: Transform - proto: RiceSeeds entities: - uid: 9676 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.3445698,-43.14006 parent: 31 - type: Transform - proto: RollerBed entities: - uid: 545 components: - - pos: 11.518467,-5.420287 + - type: Transform + pos: 11.518467,-5.420287 parent: 31 - type: Transform - proto: RubberStampApproved entities: - uid: 9044 components: - - pos: 7.332247,19.765924 + - type: Transform + pos: 7.332247,19.765924 parent: 31 - type: Transform - proto: RubberStampDenied entities: - uid: 9045 components: - - pos: 7.691622,19.765924 + - type: Transform + pos: 7.691622,19.765924 parent: 31 - type: Transform - proto: SalvageCanisterSpawner entities: - uid: 3676 components: - - pos: 26.5,-12.5 + - type: Transform + pos: 26.5,-12.5 parent: 31 - type: Transform - uid: 10463 components: - - pos: -11.5,-28.5 + - type: Transform + pos: -11.5,-28.5 + parent: 31 +- proto: SalvageLootSpawner + entities: + - uid: 592 + components: + - type: Transform + pos: -5.5,-28.5 parent: 31 - type: Transform - proto: SalvageMagnet entities: - uid: 10108 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,36.5 parent: 31 - type: Transform -- proto: SalvagePartsT2Spawner - entities: - - uid: 592 - components: - - pos: -5.5,-28.5 - parent: 31 - type: Transform - proto: ScalpelLaser entities: - uid: 9095 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 17.551718,-20.302809 parent: 31 - type: Transform - proto: Screwdriver entities: - uid: 2338 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -17.416342,-23.279646 parent: 31 - type: Transform - uid: 10899 components: - - pos: 48.552956,-5.215438 + - type: Transform + pos: 48.552956,-5.215438 parent: 31 - type: Transform - proto: SeashellInstrument entities: - uid: 9370 components: - - pos: -23.430374,-21.53869 + - type: Transform + pos: -23.430374,-21.53869 parent: 31 - type: Transform - proto: SecurityTechFab entities: - uid: 7964 components: - - pos: -14.5,18.5 + - type: Transform + pos: -14.5,18.5 parent: 31 - type: Transform - proto: SeedExtractor entities: - uid: 4125 components: - - pos: -18.5,1.5 + - type: Transform + pos: -18.5,1.5 parent: 31 - type: Transform - proto: ShardGlass entities: - uid: 9719 components: - - pos: 10.424361,-42.595337 + - type: Transform + pos: 10.424361,-42.595337 parent: 31 - type: Transform - uid: 10634 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 44.485413,-9.762369 parent: 31 - type: Transform - proto: SheetGlass entities: - uid: 76 components: - - pos: -11.562502,-21.488012 + - type: Transform + pos: -11.562502,-21.488012 parent: 31 - type: Transform - uid: 436 components: - - pos: 29.605116,0.5307963 + - type: Transform + pos: 29.605116,0.5307963 parent: 31 - type: Transform - uid: 438 components: - - pos: 29.605116,0.5307963 + - type: Transform + pos: 29.605116,0.5307963 parent: 31 - type: Transform - uid: 1144 components: - - pos: 29.605116,0.5307963 + - type: Transform + pos: 29.605116,0.5307963 parent: 31 - type: Transform - uid: 1484 components: - - pos: 49.10775,5.572377 + - type: Transform + pos: 49.10775,5.572377 parent: 31 - type: Transform - uid: 2318 components: - - pos: -11.562502,-21.488012 + - type: Transform + pos: -11.562502,-21.488012 parent: 31 - type: Transform - uid: 4733 components: - - pos: 49.10775,5.572377 + - type: Transform + pos: 49.10775,5.572377 parent: 31 - type: Transform - uid: 7711 components: - - pos: 18.530792,8.475061 + - type: Transform + pos: 18.530792,8.475061 parent: 31 - type: Transform - uid: 8937 components: - - pos: 18.530792,8.475061 + - type: Transform + pos: 18.530792,8.475061 parent: 31 - type: Transform - proto: SheetGlass10 entities: - uid: 10993 components: - - pos: 8.687881,-17.407122 + - type: Transform + pos: 8.687881,-17.407122 parent: 31 - type: Transform - proto: SheetPlasma entities: - uid: 7600 components: - - pos: -6.54687,-32.500237 + - type: Transform + pos: -6.54687,-32.500237 parent: 31 - type: Transform - uid: 7859 components: - - flags: InContainer - type: MetaData - - parent: 7853 - type: Transform - - canCollide: False - type: Physics + - type: MetaData + flags: InContainer + - type: Transform + parent: 7853 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: SheetPlasteel entities: - uid: 738 components: - - pos: 28.417616,0.5307963 + - type: Transform + pos: 28.417616,0.5307963 parent: 31 - type: Transform - uid: 739 components: - - pos: 28.417616,0.5307963 + - type: Transform + pos: 28.417616,0.5307963 parent: 31 - type: Transform - uid: 798 components: - - pos: 28.400833,0.5378499 + - type: Transform + pos: 28.400833,0.5378499 parent: 31 - type: Transform - uid: 933 components: - - pos: 50.498375,5.494252 + - type: Transform + pos: 50.498375,5.494252 parent: 31 - type: Transform - uid: 4123 components: - - pos: 50.498375,5.494252 + - type: Transform + pos: 50.498375,5.494252 parent: 31 - type: Transform - proto: SheetPlasteel10 entities: - uid: 3990 components: - - pos: 6.4737763,10.629887 + - type: Transform + pos: 6.4737763,10.629887 parent: 31 - type: Transform - proto: SheetPlastic entities: - uid: 27 components: - - pos: -11.562502,-21.95999 + - type: Transform + pos: -11.562502,-21.95999 parent: 31 - type: Transform - uid: 944 components: - - pos: -11.562502,-21.989487 + - type: Transform + pos: -11.562502,-21.989487 parent: 31 - type: Transform - uid: 8347 components: - - pos: 19.62285,7.50161 + - type: Transform + pos: 19.62285,7.50161 parent: 31 - type: Transform - proto: SheetSteel entities: - uid: 432 components: - - pos: 29.05824,0.4995463 + - type: Transform + pos: 29.05824,0.4995463 parent: 31 - type: Transform - uid: 433 components: - - pos: 18.507324,7.4999294 + - type: Transform + pos: 18.507324,7.4999294 parent: 31 - type: Transform - uid: 435 components: - - pos: 29.05824,0.4995463 + - type: Transform + pos: 29.05824,0.4995463 parent: 31 - type: Transform - uid: 797 components: - - pos: 29.05824,0.4995463 + - type: Transform + pos: 29.05824,0.4995463 parent: 31 - type: Transform - uid: 943 components: - - pos: -11.562502,-22.461464 + - type: Transform + pos: -11.562502,-22.461464 parent: 31 - type: Transform - uid: 1478 components: - - pos: 49.79525,5.541127 + - type: Transform + pos: 49.79525,5.541127 parent: 31 - type: Transform - uid: 1485 components: - - pos: 39,16 + - type: Transform + pos: 39,16 parent: 31 - type: Transform - uid: 1683 components: - - pos: -11.562502,-22.461464 + - type: Transform + pos: -11.562502,-22.461464 parent: 31 - type: Transform - uid: 2159 components: - - pos: 18.507324,7.4999294 + - type: Transform + pos: 18.507324,7.4999294 parent: 31 - type: Transform - uid: 4214 components: - - pos: 49.79525,5.541127 + - type: Transform + pos: 49.79525,5.541127 parent: 31 - type: Transform - uid: 5029 components: - - pos: 38,16 + - type: Transform + pos: 38,16 parent: 31 - type: Transform - uid: 8232 components: - - pos: 37,16 + - type: Transform + pos: 37,16 parent: 31 - type: Transform - uid: 8997 components: - - pos: -13.701841,18.488804 + - type: Transform + pos: -13.701841,18.488804 parent: 31 - type: Transform - proto: SheetSteel10 entities: - uid: 941 components: - - pos: -2.5744638,-31.244534 + - type: Transform + pos: -2.5744638,-31.244534 parent: 31 - type: Transform - uid: 4391 components: - - pos: 48.312096,-5.5456305 + - type: Transform + pos: 48.312096,-5.5456305 parent: 31 - type: Transform - proto: ShuttersNormal entities: - uid: 260 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-29.5 parent: 31 - type: Transform - - invokeCounter: 2 + - type: DeviceLinkSink + invokeCounter: 2 links: - 5132 - type: DeviceLinkSink - uid: 11118 components: - - flags: PvsPriority - type: MetaData - - pos: -7.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,26.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 11284 - type: DeviceLinkSink - uid: 11119 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,26.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 11284 - type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - uid: 1475 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-10.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10997 - type: DeviceLinkSink - uid: 2137 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-11.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10997 - type: DeviceLinkSink - uid: 2138 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-8.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10996 - type: DeviceLinkSink - uid: 4693 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,1.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 4526 - type: DeviceLinkSink - uid: 4694 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 4526 - type: DeviceLinkSink - uid: 4695 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-0.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 4526 - type: DeviceLinkSink - uid: 8767 components: - - pos: -16.5,7.5 + - type: Transform + pos: -16.5,7.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 8766 - type: DeviceLinkSink - uid: 8768 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,6.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 8766 - type: DeviceLinkSink - uid: 8770 components: - - pos: -13.5,6.5 + - type: Transform + pos: -13.5,6.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 8774 - type: DeviceLinkSink - uid: 8771 components: - - pos: -12.5,6.5 + - type: Transform + pos: -12.5,6.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 8774 - type: DeviceLinkSink - uid: 8772 components: - - pos: -7.5,6.5 + - type: Transform + pos: -7.5,6.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 8774 - type: DeviceLinkSink - uid: 8773 components: - - pos: -8.5,6.5 + - type: Transform + pos: -8.5,6.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 8774 - type: DeviceLinkSink - uid: 9122 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-7.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 10996 - type: DeviceLinkSink - proto: ShuttersRadiationOpen entities: - uid: 9551 components: - - pos: 61.5,4.5 + - type: Transform + pos: 61.5,4.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 9557 - type: DeviceLinkSink - uid: 9552 components: - - pos: 61.5,3.5 + - type: Transform + pos: 61.5,3.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 9557 - type: DeviceLinkSink - uid: 9553 components: - - pos: 61.5,2.5 + - type: Transform + pos: 61.5,2.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 9557 - type: DeviceLinkSink - uid: 9554 components: - - pos: 61.5,1.5 + - type: Transform + pos: 61.5,1.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 9557 - type: DeviceLinkSink - uid: 9555 components: - - pos: 61.5,0.5 + - type: Transform + pos: 61.5,0.5 parent: 31 - type: Transform - - links: + - type: DeviceLinkSink + links: - 9557 - type: DeviceLinkSink - proto: SignalButton entities: - uid: 2515 components: - - pos: 16.5,13.5 + - type: Transform + pos: 16.5,13.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 1756: - Pressed: Toggle - type: DeviceLinkSource - uid: 4526 components: - - pos: -11.5,-2.5 + - type: Transform + pos: -11.5,-2.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 4695: - Pressed: Toggle 4694: - Pressed: Toggle 4693: - Pressed: Toggle - type: DeviceLinkSource - uid: 5132 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,-29.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 260: - Pressed: Toggle - type: DeviceLinkSource - uid: 8766 components: - - pos: -13.5,12.5 + - type: Transform + pos: -13.5,12.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 8767: - Pressed: Toggle 8768: - Pressed: Toggle - type: DeviceLinkSource - uid: 8774 components: - - pos: -11.5,12.5 + - type: Transform + pos: -11.5,12.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 8772: - Pressed: Toggle 8773: @@ -56952,72 +57090,72 @@ entities: - Pressed: Toggle 8770: - Pressed: Toggle - type: DeviceLinkSource - uid: 10325 components: - - pos: -12.5,-28.5 + - type: Transform + pos: -12.5,-28.5 parent: 31 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: 7588: - Pressed: Toggle - type: DeviceLinkSource - uid: 10449 components: - - pos: 51.5,18.5 + - type: Transform + pos: 51.5,18.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 6557: - Pressed: Toggle - type: DeviceLinkSource - uid: 10996 components: - - pos: 7.5,-6.5 + - type: Transform + pos: 7.5,-6.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 9122: - Pressed: Toggle 2138: - Pressed: Toggle - type: DeviceLinkSource - uid: 10997 components: - - pos: 7.5,-9.5 + - type: Transform + pos: 7.5,-9.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 1475: - Pressed: Toggle 2137: - Pressed: Toggle - type: DeviceLinkSource - uid: 11284 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,28.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 11119: - Pressed: Toggle 11118: - Pressed: Toggle - type: DeviceLinkSource - proto: SignalSwitch entities: - uid: 276 components: - - name: EVA door toggle - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + name: EVA door toggle + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,27.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 116: - On: Open - Off: Close @@ -57026,13 +57164,13 @@ entities: - On: Open - Off: Close - On: AutoClose - type: DeviceLinkSource - uid: 1084 components: - - pos: 19.5,18.5 + - type: Transform + pos: 19.5,18.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 8899: - On: Forward - Off: Off @@ -57078,13 +57216,13 @@ entities: 10053: - On: Forward - Off: Off - type: DeviceLinkSource - uid: 7945 components: - - pos: 23.5,18.5 + - type: Transform + pos: 23.5,18.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 10047: - On: Forward - Off: Off @@ -57127,13 +57265,13 @@ entities: 10045: - On: Forward - Off: Off - type: DeviceLinkSource - uid: 9557 components: - - pos: 60.5,5.5 + - type: Transform + pos: 60.5,5.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 9551: - On: Open - Off: Close @@ -57149,14 +57287,14 @@ entities: 9555: - On: Open - Off: Close - type: DeviceLinkSource - uid: 10218 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -33.5,-13.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 10033: - On: Forward - Off: Off @@ -57190,4239 +57328,4247 @@ entities: 10215: - On: Forward - Off: Off - type: DeviceLinkSource - proto: SignalSwitchDirectional entities: - uid: 11371 components: - - pos: 57.5,9.5 + - type: Transform + pos: 57.5,9.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 11370: - On: Open - Off: Close - type: DeviceLinkSource - uid: 11372 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,11.5 parent: 31 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 11369: - On: Open - Off: Close - type: DeviceLinkSource - proto: SignAnomaly entities: - uid: 10546 components: - - pos: -12.5,-31.5 + - type: Transform + pos: -12.5,-31.5 parent: 31 - type: Transform - proto: SignAnomaly2 entities: - uid: 10544 components: - - pos: -7.5,-33.5 + - type: Transform + pos: -7.5,-33.5 parent: 31 - type: Transform - proto: SignArmory entities: - uid: 1523 components: - - pos: -13.507725,17.439112 + - type: Transform + pos: -13.507725,17.439112 parent: 31 - type: Transform - proto: SignAtmos entities: - uid: 6329 components: - - pos: 31.5,7.5 + - type: Transform + pos: 31.5,7.5 parent: 31 - type: Transform - proto: SignBar entities: - uid: 5110 components: - - pos: 1.5,2.5 + - type: Transform + pos: 1.5,2.5 parent: 31 - type: Transform - proto: SignBiohazardMed entities: - uid: 8895 components: - - pos: 16.5,-12.5 + - type: Transform + pos: 16.5,-12.5 parent: 31 - type: Transform - proto: SignBridge entities: - uid: 142 components: - - pos: 5.5,22.5 + - type: Transform + pos: 5.5,22.5 parent: 31 - type: Transform - proto: SignCargo entities: - uid: 4299 components: - - pos: 12.5,8.5 + - type: Transform + pos: 12.5,8.5 parent: 31 - type: Transform - proto: SignCargoDock entities: - uid: 5150 components: - - pos: 21.5,28.5 + - type: Transform + pos: 21.5,28.5 parent: 31 - type: Transform - proto: SignChapel entities: - uid: 7694 components: - - pos: -38.5,11.5 + - type: Transform + pos: -38.5,11.5 parent: 31 - type: Transform - proto: SignChem entities: - uid: 4889 components: - - pos: 18.5,-3.5 + - type: Transform + pos: 18.5,-3.5 parent: 31 - type: Transform - proto: SignChemistry2 entities: - uid: 7291 components: - - pos: 14.5,2.5 + - type: Transform + pos: 14.5,2.5 parent: 31 - type: Transform - proto: SignCloning entities: - uid: 4133 components: - - pos: 10.5,-12.5 + - type: Transform + pos: 10.5,-12.5 parent: 31 - type: Transform - proto: SignConference entities: - uid: 1524 components: - - pos: 1.5,26.5 + - type: Transform + pos: 1.5,26.5 parent: 31 - type: Transform - uid: 8704 components: - - pos: -33.5,-25.5 + - type: Transform + pos: -33.5,-25.5 parent: 31 - type: Transform - proto: SignCryogenicsMed entities: - uid: 10992 components: - - pos: 8.5,-12.5 + - type: Transform + pos: 8.5,-12.5 parent: 31 - type: Transform - proto: SignDangerMed entities: - uid: 4640 components: - - pos: 58.5,5.5 + - type: Transform + pos: 58.5,5.5 parent: 31 - type: Transform - uid: 4797 components: - - pos: 71.5,11.5 + - type: Transform + pos: 71.5,11.5 parent: 31 - type: Transform - uid: 9548 components: - - pos: 71.5,-6.5 + - type: Transform + pos: 71.5,-6.5 parent: 31 - type: Transform - uid: 9549 components: - - pos: 80.5,2.5 + - type: Transform + pos: 80.5,2.5 parent: 31 - type: Transform - uid: 11379 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 55.5,9.5 parent: 31 - type: Transform - proto: SignDirectionalBridge entities: - uid: 157 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -21.482899,6.2720566 parent: 31 - type: Transform - uid: 1766 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,6.5 parent: 31 - type: Transform - uid: 7492 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.493867,-12.264781 parent: 31 - type: Transform - proto: SignDirectionalChapel entities: - uid: 8239 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -34.5,11.5 parent: 31 - type: Transform - uid: 8917 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -26.499413,2.2858148 parent: 31 - type: Transform +- proto: SignDirectionalCryo + entities: + - uid: 9326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-2.5 + parent: 31 - proto: SignDirectionalDorms entities: - uid: 8915 components: - - pos: -26.5,2.5 + - type: Transform + pos: -26.5,2.5 parent: 31 - type: Transform - proto: SignDirectionalEng entities: - uid: 141 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 31 - type: Transform - uid: 8842 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -26.497889,6.7333336 parent: 31 - type: Transform - proto: SignDirectionalEvac entities: - uid: 2225 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,6.5 parent: 31 - type: Transform - uid: 9333 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.494153,6.738206 parent: 31 - type: Transform - proto: SignDirectionalFood entities: - uid: 7684 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -20.5,2.5 parent: 31 - type: Transform - proto: SignDirectionalHydro entities: - uid: 8916 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -26.495642,2.7233148 parent: 31 - type: Transform - proto: SignDirectionalJanitor entities: - uid: 120 components: - - pos: -22.49935,1.7157228 + - type: Transform + pos: -22.49935,1.7157228 parent: 31 - type: Transform - proto: SignDirectionalMed entities: - uid: 7491 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-12.5 parent: 31 - type: Transform - uid: 8841 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -26.5,6.5 parent: 31 - type: Transform - uid: 10555 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5049188,-17.286484 parent: 31 - type: Transform - proto: SignDirectionalSci entities: - uid: 1263 components: - - pos: 1.4985528,6.263013 + - type: Transform + pos: 1.4985528,6.263013 parent: 31 - type: Transform - uid: 10552 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-17.5 parent: 31 - type: Transform - uid: 10553 components: - - pos: -22.5,1.5 + - type: Transform + pos: -22.5,1.5 parent: 31 - type: Transform - proto: SignDirectionalSec entities: - uid: 7493 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.493867,-12.749156 parent: 31 - type: Transform - uid: 7795 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -21.50213,6.729406 parent: 31 - type: Transform - uid: 10272 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -17.5,15.5 parent: 31 - type: Transform - uid: 10554 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5049188,-17.71476 parent: 31 - type: Transform - proto: SignDirectionalSupply entities: - uid: 146 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.498553,6.247388 parent: 31 - type: Transform - uid: 8843 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -26.497889,6.2645836 parent: 31 - type: Transform - proto: SignDrones entities: - uid: 7224 components: - - pos: 26.5,2.5 + - type: Transform + pos: 26.5,2.5 parent: 31 - type: Transform - proto: SignElectrical entities: - uid: 11377 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,12.5 parent: 31 - type: Transform - uid: 11378 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,12.5 parent: 31 - type: Transform - proto: SignElectricalMed entities: - uid: 3134 components: - - pos: 45.5,6.5 + - type: Transform + pos: 45.5,6.5 parent: 31 - type: Transform - proto: SignEngineering entities: - uid: 1222 components: - - pos: 30.5,6.5 + - type: Transform + pos: 30.5,6.5 parent: 31 - type: Transform - proto: SignEVA entities: - uid: 150 components: - - pos: 10.5,6.5 + - type: Transform + pos: 10.5,6.5 parent: 31 - type: Transform - proto: SignExamroom entities: - uid: 530 components: - - pos: 8.5,-9.5 + - type: Transform + pos: 8.5,-9.5 parent: 31 - type: Transform - proto: SignGravity entities: - uid: 8148 components: - - pos: 50.5,-1.5 + - type: Transform + pos: 50.5,-1.5 parent: 31 - type: Transform - proto: SignHydro2 entities: - uid: 10545 components: - - pos: -2.5,-40.5 + - type: Transform + pos: -2.5,-40.5 parent: 31 - type: Transform - proto: SignInterrogation entities: - uid: 9508 components: - - pos: -0.5,11.5 + - type: Transform + pos: -0.5,11.5 parent: 31 - type: Transform - proto: SignJanitor entities: - uid: 2749 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 31 - type: Transform - proto: SignLaserMed entities: - uid: 8898 components: - - pos: 61.5,-0.5 + - type: Transform + pos: 61.5,-0.5 parent: 31 - type: Transform - proto: SignLibrary entities: - uid: 4831 components: - - pos: 5.5,-22.5 + - type: Transform + pos: 5.5,-22.5 parent: 31 - type: Transform - proto: SignMagneticsMed entities: - uid: 2953 components: - - pos: 32.5,23.5 + - type: Transform + pos: 32.5,23.5 parent: 31 - type: Transform - proto: SignMedical entities: - uid: 4151 components: - - pos: 5.5,2.5 + - type: Transform + pos: 5.5,2.5 parent: 31 - type: Transform - proto: SignMinerDock entities: - uid: 9941 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,38.5 parent: 31 - type: Transform - proto: SignMorgue entities: - uid: 4230 components: - - pos: 16.5,-14.5 + - type: Transform + pos: 16.5,-14.5 parent: 31 - type: Transform - proto: SignRadiationMed entities: - uid: 4638 components: - - pos: 54.5,4.5 + - type: Transform + pos: 54.5,4.5 parent: 31 - type: Transform - uid: 4639 components: - - pos: 54.5,0.5 + - type: Transform + pos: 54.5,0.5 parent: 31 - type: Transform - uid: 9550 components: - - pos: 79.5,11.5 + - type: Transform + pos: 79.5,11.5 parent: 31 - type: Transform - uid: 9560 components: - - pos: 62.5,11.5 + - type: Transform + pos: 62.5,11.5 parent: 31 - type: Transform - uid: 9561 components: - - pos: 80.5,10.5 + - type: Transform + pos: 80.5,10.5 parent: 31 - type: Transform - uid: 9562 components: - - pos: 80.5,-5.5 + - type: Transform + pos: 80.5,-5.5 parent: 31 - type: Transform - uid: 9563 components: - - pos: 79.5,-6.5 + - type: Transform + pos: 79.5,-6.5 parent: 31 - type: Transform - uid: 9564 components: - - pos: 62.5,-6.5 + - type: Transform + pos: 62.5,-6.5 parent: 31 - type: Transform - uid: 9565 components: - - pos: 61.5,-5.5 + - type: Transform + pos: 61.5,-5.5 parent: 31 - type: Transform - uid: 9567 components: - - pos: 61.5,10.5 + - type: Transform + pos: 61.5,10.5 parent: 31 - type: Transform - proto: SignRobo entities: - uid: 10561 components: - - pos: -3.5,-28.5 + - type: Transform + pos: -3.5,-28.5 parent: 31 - type: Transform - proto: SignScience entities: - uid: 10543 components: - - pos: -13.5,-17.5 + - type: Transform + pos: -13.5,-17.5 parent: 31 - type: Transform - proto: SignSecurearea entities: - uid: 9395 components: - - pos: -44.5,1.5 + - type: Transform + pos: -44.5,1.5 parent: 31 - type: Transform - uid: 9396 components: - - pos: -44.5,9.5 + - type: Transform + pos: -44.5,9.5 parent: 31 - type: Transform - proto: SignSecureMedRed entities: - uid: 10983 components: - - pos: 54.5,-10.5 + - type: Transform + pos: 54.5,-10.5 parent: 31 - type: Transform - proto: SignSomethingOld2 entities: - uid: 1469 components: - - pos: -2.5,19.5 + - type: Transform + pos: -2.5,19.5 parent: 31 - type: Transform - proto: SignSpace entities: - uid: 9237 components: - - pos: -40.5,9.5 + - type: Transform + pos: -40.5,9.5 parent: 31 - type: Transform - uid: 9238 components: - - pos: -40.5,1.5 + - type: Transform + pos: -40.5,1.5 parent: 31 - type: Transform - uid: 9473 components: - - pos: -21.5,-31.5 + - type: Transform + pos: -21.5,-31.5 parent: 31 - type: Transform - proto: SignSurgery entities: - uid: 1107 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,-13.5 parent: 31 - type: Transform - proto: SignTelecomms entities: - uid: 8149 components: - - pos: 48.5,-1.5 + - type: Transform + pos: 48.5,-1.5 parent: 31 - type: Transform - proto: SignToolStorage entities: - uid: 158 components: - - pos: -25.5,7.5 + - type: Transform + pos: -25.5,7.5 parent: 31 - type: Transform - proto: SingularityGenerator entities: - uid: 4654 components: - - pos: 71.5,2.5 + - type: Transform + pos: 71.5,2.5 parent: 31 - type: Transform - uid: 6470 components: - - pos: 38.5,8.5 + - type: Transform + pos: 38.5,8.5 parent: 31 - type: Transform - proto: Sink entities: - uid: 638 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,26.5 parent: 31 - type: Transform - uid: 2451 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-6.5 parent: 31 - type: Transform - uid: 8411 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-5.5 parent: 31 - type: Transform - uid: 8907 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 21.5,-5.5 parent: 31 - type: Transform - proto: SinkWide entities: - uid: 4225 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,-16.5 parent: 31 - type: Transform - uid: 5630 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -17.5,8.5 parent: 31 - type: Transform - uid: 7574 components: - - pos: -14.5,1.5 + - type: Transform + pos: -14.5,1.5 parent: 31 - type: Transform - proto: Skub entities: - uid: 11043 components: - - pos: -1.5876693,-19.53403 + - type: Transform + pos: -1.5876693,-19.53403 parent: 31 - type: Transform - proto: SmartFridge entities: - uid: 735 components: - - flags: SessionSpecific - type: MetaData - - pos: 16.5,-3.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 16.5,-3.5 parent: 31 - type: Transform - uid: 918 components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,1.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -15.5,1.5 parent: 31 - type: Transform - proto: SMESBasic entities: - uid: 4340 components: - - name: north solars SMES - type: MetaData - - pos: -22.5,25.5 + - type: MetaData + name: north solars SMES + - type: Transform + pos: -22.5,25.5 parent: 31 - type: Transform - uid: 4425 components: - - name: singulo SMES - type: MetaData - - pos: 55.5,4.5 + - type: MetaData + name: singulo SMES + - type: Transform + pos: 55.5,4.5 parent: 31 - type: Transform - uid: 4453 components: - - name: south solars SMES - type: MetaData - - pos: 14.5,-28.5 + - type: MetaData + name: south solars SMES + - type: Transform + pos: 14.5,-28.5 parent: 31 - type: Transform - uid: 6839 components: - - name: SMES 2 - type: MetaData - - pos: 41.5,5.5 + - type: MetaData + name: SMES 2 + - type: Transform + pos: 41.5,5.5 parent: 31 - type: Transform - uid: 6916 components: - - name: SMES 1 - type: MetaData - - pos: 40.5,5.5 + - type: MetaData + name: SMES 1 + - type: Transform + pos: 40.5,5.5 parent: 31 - type: Transform - uid: 6939 components: - - name: SMES 3 - type: MetaData - - pos: 42.5,5.5 + - type: MetaData + name: SMES 3 + - type: Transform + pos: 42.5,5.5 parent: 31 - type: Transform - uid: 8327 components: - - name: telecomms SMES - type: MetaData - - pos: 52.5,-0.5 + - type: MetaData + name: telecomms SMES + - type: Transform + pos: 52.5,-0.5 parent: 31 - type: Transform - uid: 8574 components: - - name: southwest solars SMES - type: MetaData - - pos: -30.5,-31.5 + - type: MetaData + name: southwest solars SMES + - type: Transform + pos: -30.5,-31.5 parent: 31 - type: Transform - proto: SoapNT entities: - uid: 1045 components: - - pos: 12.820141,26.438648 + - type: Transform + pos: 12.820141,26.438648 parent: 31 - type: Transform - proto: SoapOmega entities: - uid: 10584 components: - - pos: -6.517076,-41.294003 + - type: Transform + pos: -6.517076,-41.294003 parent: 31 - type: Transform - proto: soda_dispenser entities: - uid: 1418 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 31.5,-10.5 parent: 31 - type: Transform - uid: 4163 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 31 - type: Transform - proto: SolarPanel entities: - uid: 1695 components: - - pos: -37.5,26.5 + - type: Transform + pos: -37.5,26.5 parent: 31 - type: Transform - uid: 2537 components: - - pos: -37.5,25.5 + - type: Transform + pos: -37.5,25.5 parent: 31 - type: Transform - uid: 4339 components: - - pos: 21.5,-27.5 + - type: Transform + pos: 21.5,-27.5 parent: 31 - type: Transform - uid: 4411 components: - - pos: 29.5,-27.5 + - type: Transform + pos: 29.5,-27.5 parent: 31 - type: Transform - uid: 4415 components: - - pos: 27.5,-35.5 + - type: Transform + pos: 27.5,-35.5 parent: 31 - type: Transform - uid: 4422 components: - - pos: 19.5,-35.5 + - type: Transform + pos: 19.5,-35.5 parent: 31 - type: Transform - uid: 4423 components: - - pos: 27.5,-27.5 + - type: Transform + pos: 27.5,-27.5 parent: 31 - type: Transform - uid: 4426 components: - - pos: 19.5,-27.5 + - type: Transform + pos: 19.5,-27.5 parent: 31 - type: Transform - uid: 4872 components: - - pos: 29.5,-35.5 + - type: Transform + pos: 29.5,-35.5 parent: 31 - type: Transform - uid: 4874 components: - - pos: 21.5,-35.5 + - type: Transform + pos: 21.5,-35.5 parent: 31 - type: Transform - uid: 5017 components: - - pos: -37.5,27.5 + - type: Transform + pos: -37.5,27.5 parent: 31 - type: Transform - uid: 5018 components: - - pos: -35.5,25.5 + - type: Transform + pos: -35.5,25.5 parent: 31 - type: Transform - uid: 5019 components: - - pos: -35.5,26.5 + - type: Transform + pos: -35.5,26.5 parent: 31 - type: Transform - uid: 5020 components: - - pos: -35.5,27.5 + - type: Transform + pos: -35.5,27.5 parent: 31 - type: Transform - uid: 5021 components: - - pos: -33.5,25.5 + - type: Transform + pos: -33.5,25.5 parent: 31 - type: Transform - uid: 5022 components: - - pos: -33.5,26.5 + - type: Transform + pos: -33.5,26.5 parent: 31 - type: Transform - uid: 5024 components: - - pos: -33.5,27.5 + - type: Transform + pos: -33.5,27.5 parent: 31 - type: Transform - uid: 5037 components: - - pos: -31.5,25.5 + - type: Transform + pos: -31.5,25.5 parent: 31 - type: Transform - uid: 5129 components: - - pos: -31.5,26.5 + - type: Transform + pos: -31.5,26.5 parent: 31 - type: Transform - uid: 5130 components: - - pos: -31.5,27.5 + - type: Transform + pos: -31.5,27.5 parent: 31 - type: Transform - uid: 5131 components: - - pos: -29.5,25.5 + - type: Transform + pos: -29.5,25.5 parent: 31 - type: Transform - uid: 5159 components: - - pos: -29.5,26.5 + - type: Transform + pos: -29.5,26.5 parent: 31 - type: Transform - uid: 5160 components: - - pos: -29.5,27.5 + - type: Transform + pos: -29.5,27.5 parent: 31 - type: Transform - uid: 5161 components: - - pos: -29.5,23.5 + - type: Transform + pos: -29.5,23.5 parent: 31 - type: Transform - uid: 5162 components: - - pos: -29.5,22.5 + - type: Transform + pos: -29.5,22.5 parent: 31 - type: Transform - uid: 5163 components: - - pos: -29.5,21.5 + - type: Transform + pos: -29.5,21.5 parent: 31 - type: Transform - uid: 5164 components: - - pos: -31.5,23.5 + - type: Transform + pos: -31.5,23.5 parent: 31 - type: Transform - uid: 5165 components: - - pos: -31.5,22.5 + - type: Transform + pos: -31.5,22.5 parent: 31 - type: Transform - uid: 5166 components: - - pos: -31.5,21.5 + - type: Transform + pos: -31.5,21.5 parent: 31 - type: Transform - uid: 5167 components: - - pos: -33.5,23.5 + - type: Transform + pos: -33.5,23.5 parent: 31 - type: Transform - uid: 5168 components: - - pos: -33.5,22.5 + - type: Transform + pos: -33.5,22.5 parent: 31 - type: Transform - uid: 5169 components: - - pos: -33.5,21.5 + - type: Transform + pos: -33.5,21.5 parent: 31 - type: Transform - uid: 5170 components: - - pos: -35.5,23.5 + - type: Transform + pos: -35.5,23.5 parent: 31 - type: Transform - uid: 5171 components: - - pos: -35.5,22.5 + - type: Transform + pos: -35.5,22.5 parent: 31 - type: Transform - uid: 5172 components: - - pos: -35.5,21.5 + - type: Transform + pos: -35.5,21.5 parent: 31 - type: Transform - uid: 5173 components: - - pos: -37.5,23.5 + - type: Transform + pos: -37.5,23.5 parent: 31 - type: Transform - uid: 5174 components: - - pos: -37.5,22.5 + - type: Transform + pos: -37.5,22.5 parent: 31 - type: Transform - uid: 5175 components: - - pos: -37.5,21.5 + - type: Transform + pos: -37.5,21.5 parent: 31 - type: Transform - uid: 6768 components: - - pos: 21.5,-28.5 + - type: Transform + pos: 21.5,-28.5 parent: 31 - type: Transform - uid: 6769 components: - - pos: 21.5,-29.5 + - type: Transform + pos: 21.5,-29.5 parent: 31 - type: Transform - uid: 6770 components: - - pos: 21.5,-30.5 + - type: Transform + pos: 21.5,-30.5 parent: 31 - type: Transform - uid: 6771 components: - - pos: 19.5,-30.5 + - type: Transform + pos: 19.5,-30.5 parent: 31 - type: Transform - uid: 6772 components: - - pos: 19.5,-29.5 + - type: Transform + pos: 19.5,-29.5 parent: 31 - type: Transform - uid: 6773 components: - - pos: 19.5,-28.5 + - type: Transform + pos: 19.5,-28.5 parent: 31 - type: Transform - uid: 6774 components: - - pos: 19.5,-32.5 + - type: Transform + pos: 19.5,-32.5 parent: 31 - type: Transform - uid: 6775 components: - - pos: 19.5,-33.5 + - type: Transform + pos: 19.5,-33.5 parent: 31 - type: Transform - uid: 6776 components: - - pos: 19.5,-34.5 + - type: Transform + pos: 19.5,-34.5 parent: 31 - type: Transform - uid: 6777 components: - - pos: 21.5,-34.5 + - type: Transform + pos: 21.5,-34.5 parent: 31 - type: Transform - uid: 6778 components: - - pos: 21.5,-33.5 + - type: Transform + pos: 21.5,-33.5 parent: 31 - type: Transform - uid: 6779 components: - - pos: 21.5,-32.5 + - type: Transform + pos: 21.5,-32.5 parent: 31 - type: Transform - uid: 6780 components: - - pos: 23.5,-35.5 + - type: Transform + pos: 23.5,-35.5 parent: 31 - type: Transform - uid: 6781 components: - - pos: 23.5,-34.5 + - type: Transform + pos: 23.5,-34.5 parent: 31 - type: Transform - uid: 6782 components: - - pos: 23.5,-33.5 + - type: Transform + pos: 23.5,-33.5 parent: 31 - type: Transform - uid: 6783 components: - - pos: 23.5,-32.5 + - type: Transform + pos: 23.5,-32.5 parent: 31 - type: Transform - uid: 6784 components: - - pos: 25.5,-32.5 + - type: Transform + pos: 25.5,-32.5 parent: 31 - type: Transform - uid: 6785 components: - - pos: 25.5,-33.5 + - type: Transform + pos: 25.5,-33.5 parent: 31 - type: Transform - uid: 6786 components: - - pos: 25.5,-34.5 + - type: Transform + pos: 25.5,-34.5 parent: 31 - type: Transform - uid: 6787 components: - - pos: 25.5,-35.5 + - type: Transform + pos: 25.5,-35.5 parent: 31 - type: Transform - uid: 6788 components: - - pos: 25.5,-30.5 + - type: Transform + pos: 25.5,-30.5 parent: 31 - type: Transform - uid: 6789 components: - - pos: 25.5,-29.5 + - type: Transform + pos: 25.5,-29.5 parent: 31 - type: Transform - uid: 6790 components: - - pos: 25.5,-28.5 + - type: Transform + pos: 25.5,-28.5 parent: 31 - type: Transform - uid: 6791 components: - - pos: 25.5,-27.5 + - type: Transform + pos: 25.5,-27.5 parent: 31 - type: Transform - uid: 6792 components: - - pos: 23.5,-27.5 + - type: Transform + pos: 23.5,-27.5 parent: 31 - type: Transform - uid: 6793 components: - - pos: 23.5,-28.5 + - type: Transform + pos: 23.5,-28.5 parent: 31 - type: Transform - uid: 6794 components: - - pos: 23.5,-29.5 + - type: Transform + pos: 23.5,-29.5 parent: 31 - type: Transform - uid: 6795 components: - - pos: 23.5,-30.5 + - type: Transform + pos: 23.5,-30.5 parent: 31 - type: Transform - uid: 6796 components: - - pos: 27.5,-32.5 + - type: Transform + pos: 27.5,-32.5 parent: 31 - type: Transform - uid: 6797 components: - - pos: 27.5,-33.5 + - type: Transform + pos: 27.5,-33.5 parent: 31 - type: Transform - uid: 6798 components: - - pos: 27.5,-34.5 + - type: Transform + pos: 27.5,-34.5 parent: 31 - type: Transform - uid: 6799 components: - - pos: 29.5,-34.5 + - type: Transform + pos: 29.5,-34.5 parent: 31 - type: Transform - uid: 6800 components: - - pos: 29.5,-33.5 + - type: Transform + pos: 29.5,-33.5 parent: 31 - type: Transform - uid: 6801 components: - - pos: 29.5,-32.5 + - type: Transform + pos: 29.5,-32.5 parent: 31 - type: Transform - uid: 6802 components: - - pos: 29.5,-30.5 + - type: Transform + pos: 29.5,-30.5 parent: 31 - type: Transform - uid: 6803 components: - - pos: 29.5,-29.5 + - type: Transform + pos: 29.5,-29.5 parent: 31 - type: Transform - uid: 6804 components: - - pos: 29.5,-28.5 + - type: Transform + pos: 29.5,-28.5 parent: 31 - type: Transform - uid: 6805 components: - - pos: 27.5,-28.5 + - type: Transform + pos: 27.5,-28.5 parent: 31 - type: Transform - uid: 6806 components: - - pos: 27.5,-29.5 + - type: Transform + pos: 27.5,-29.5 parent: 31 - type: Transform - uid: 6807 components: - - pos: 27.5,-30.5 + - type: Transform + pos: 27.5,-30.5 parent: 31 - type: Transform - uid: 8577 components: - - pos: -40.5,-31.5 + - type: Transform + pos: -40.5,-31.5 parent: 31 - type: Transform - uid: 8578 components: - - pos: -40.5,-30.5 + - type: Transform + pos: -40.5,-30.5 parent: 31 - type: Transform - uid: 8579 components: - - pos: -40.5,-29.5 + - type: Transform + pos: -40.5,-29.5 parent: 31 - type: Transform - uid: 8580 components: - - pos: -40.5,-27.5 + - type: Transform + pos: -40.5,-27.5 parent: 31 - type: Transform - uid: 8581 components: - - pos: -40.5,-26.5 + - type: Transform + pos: -40.5,-26.5 parent: 31 - type: Transform - uid: 8582 components: - - pos: -40.5,-25.5 + - type: Transform + pos: -40.5,-25.5 parent: 31 - type: Transform - uid: 8583 components: - - pos: -42.5,-31.5 + - type: Transform + pos: -42.5,-31.5 parent: 31 - type: Transform - uid: 8584 components: - - pos: -42.5,-29.5 + - type: Transform + pos: -42.5,-29.5 parent: 31 - type: Transform - uid: 8585 components: - - pos: -42.5,-30.5 + - type: Transform + pos: -42.5,-30.5 parent: 31 - type: Transform - uid: 8586 components: - - pos: -42.5,-27.5 + - type: Transform + pos: -42.5,-27.5 parent: 31 - type: Transform - uid: 8587 components: - - pos: -42.5,-26.5 + - type: Transform + pos: -42.5,-26.5 parent: 31 - type: Transform - uid: 8588 components: - - pos: -42.5,-25.5 + - type: Transform + pos: -42.5,-25.5 parent: 31 - type: Transform - uid: 8589 components: - - pos: -29.5,-38.5 + - type: Transform + pos: -29.5,-38.5 parent: 31 - type: Transform - uid: 8590 components: - - pos: -30.5,-38.5 + - type: Transform + pos: -30.5,-38.5 parent: 31 - type: Transform - uid: 8591 components: - - pos: -31.5,-38.5 + - type: Transform + pos: -31.5,-38.5 parent: 31 - type: Transform - uid: 8592 components: - - pos: -33.5,-38.5 + - type: Transform + pos: -33.5,-38.5 parent: 31 - type: Transform - uid: 8593 components: - - pos: -34.5,-38.5 + - type: Transform + pos: -34.5,-38.5 parent: 31 - type: Transform - uid: 8594 components: - - pos: -35.5,-38.5 + - type: Transform + pos: -35.5,-38.5 parent: 31 - type: Transform - uid: 8595 components: - - pos: -35.5,-36.5 + - type: Transform + pos: -35.5,-36.5 parent: 31 - type: Transform - uid: 8596 components: - - pos: -34.5,-36.5 + - type: Transform + pos: -34.5,-36.5 parent: 31 - type: Transform - uid: 8597 components: - - pos: -33.5,-36.5 + - type: Transform + pos: -33.5,-36.5 parent: 31 - type: Transform - uid: 8598 components: - - pos: -31.5,-36.5 + - type: Transform + pos: -31.5,-36.5 parent: 31 - type: Transform - uid: 8599 components: - - pos: -30.5,-36.5 + - type: Transform + pos: -30.5,-36.5 parent: 31 - type: Transform - uid: 8600 components: - - pos: -29.5,-36.5 + - type: Transform + pos: -29.5,-36.5 parent: 31 - type: Transform - proto: SolarTracker entities: - uid: 6710 components: - - pos: 32.5,-31.5 + - type: Transform + pos: 32.5,-31.5 parent: 31 - type: Transform - uid: 6711 components: - - pos: -38.5,24.5 + - type: Transform + pos: -38.5,24.5 parent: 31 - type: Transform - proto: SolidSecretDoor entities: - uid: 10710 components: - - flags: PvsPriority - type: MetaData - - pos: -32.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,15.5 parent: 31 - type: Transform - proto: SpaceCash100 entities: - uid: 7056 components: - - pos: 35.784645,-15.468033 + - type: Transform + pos: 35.784645,-15.468033 parent: 31 - type: Transform - proto: SpaceCash500 entities: - uid: 6892 components: - - pos: -6.962518,29.44575 + - type: Transform + pos: -6.962518,29.44575 parent: 31 - type: Transform - proto: SpacemenFigureSpawner entities: - uid: 10822 components: - - pos: 12.5,-31.5 + - type: Transform + pos: 12.5,-31.5 parent: 31 - type: Transform - proto: SpawnMobAlexander entities: - uid: 9917 components: - - pos: -13.5,0.5 + - type: Transform + pos: -13.5,0.5 parent: 31 - type: Transform - proto: SpawnMobBandito entities: - uid: 2192 components: - - pos: -2.5,-28.5 + - type: Transform + pos: -2.5,-28.5 parent: 31 - type: Transform - proto: SpawnMobCat entities: - uid: 6860 components: - - pos: 21.5,-9.5 + - type: Transform + pos: 21.5,-9.5 parent: 31 - type: Transform - proto: SpawnMobCatFloppa entities: - uid: 3678 components: - - pos: 49.5,-27.5 + - type: Transform + pos: 49.5,-27.5 parent: 31 - type: Transform - proto: SpawnMobCorgi entities: - uid: 8906 components: - - pos: 9.5,20.5 + - type: Transform + pos: 9.5,20.5 parent: 31 - type: Transform - proto: SpawnMobDrone entities: - uid: 60 components: - - pos: 27.5,1.5 + - type: Transform + pos: 27.5,1.5 parent: 31 - type: Transform - uid: 99 components: - - pos: 28.5,1.5 + - type: Transform + pos: 28.5,1.5 parent: 31 - type: Transform - uid: 644 components: - - pos: 26.5,1.5 + - type: Transform + pos: 26.5,1.5 parent: 31 - type: Transform - proto: SpawnMobFoxRenault entities: - uid: 4294 components: - - pos: 8.5,26.5 + - type: Transform + pos: 8.5,26.5 parent: 31 - type: Transform - proto: SpawnMobMcGriff entities: - uid: 37 components: - - pos: -1.5,8.5 + - type: Transform + pos: -1.5,8.5 parent: 31 - type: Transform - proto: SpawnMobMonkeyPunpun entities: - uid: 10044 components: - - pos: -5.5,-5.5 + - type: Transform + pos: -5.5,-5.5 parent: 31 - type: Transform - proto: SpawnMobMouse entities: - uid: 7296 components: - - pos: 12.5,-27.5 + - type: Transform + pos: 12.5,-27.5 parent: 31 - type: Transform - uid: 7899 components: - - pos: -8.5,-11.5 + - type: Transform + pos: -8.5,-11.5 parent: 31 - type: Transform - uid: 7900 components: - - pos: -20.5,13.5 + - type: Transform + pos: -20.5,13.5 parent: 31 - type: Transform - uid: 7901 components: - - pos: -2.5,20.5 + - type: Transform + pos: -2.5,20.5 parent: 31 - type: Transform - uid: 7902 components: - - pos: -7.5,-6.5 + - type: Transform + pos: -7.5,-6.5 parent: 31 - type: Transform - proto: SpawnMobPossumMorty entities: - uid: 7114 components: - - pos: 12.5,-15.5 + - type: Transform + pos: 12.5,-15.5 parent: 31 - type: Transform - proto: SpawnMobRaccoonMorticia entities: - uid: 11385 components: - - pos: 28.5,8.5 + - type: Transform + pos: 28.5,8.5 parent: 31 - type: Transform - proto: SpawnMobShiva entities: - uid: 8304 components: - - pos: -9.5,19.5 + - type: Transform + pos: -9.5,19.5 parent: 31 - type: Transform - proto: SpawnMobSlothPaperwork entities: - uid: 8863 components: - - pos: 8.5,-29.5 + - type: Transform + pos: 8.5,-29.5 parent: 31 - type: Transform - proto: SpawnMobSmile entities: - uid: 6 components: - - pos: -4.5,-22.5 + - type: Transform + pos: -4.5,-22.5 parent: 31 - type: Transform - proto: SpawnMobWalter entities: - uid: 8862 components: - - pos: 17.5,-0.5 + - type: Transform + pos: 17.5,-0.5 parent: 31 - type: Transform - proto: SpawnPointAtmos entities: - uid: 9106 components: - - pos: 39.5,12.5 + - type: Transform + pos: 39.5,12.5 parent: 31 - type: Transform - uid: 9107 components: - - pos: 38.5,12.5 + - type: Transform + pos: 38.5,12.5 parent: 31 - type: Transform - proto: SpawnPointBartender entities: - uid: 721 components: - - pos: -11.5,-7.5 + - type: Transform + pos: -11.5,-7.5 parent: 31 - type: Transform - proto: SpawnPointBorg entities: - uid: 11258 components: - - pos: -1.5,-29.5 + - type: Transform + pos: -1.5,-29.5 parent: 31 - type: Transform - uid: 11259 components: - - pos: -0.5,-29.5 + - type: Transform + pos: -0.5,-29.5 parent: 31 - type: Transform - proto: SpawnPointBotanist entities: - uid: 1103 components: - - pos: -16.5,-0.5 + - type: Transform + pos: -16.5,-0.5 parent: 31 - type: Transform - uid: 10827 components: - - pos: -20.5,-0.5 + - type: Transform + pos: -20.5,-0.5 parent: 31 - type: Transform - proto: SpawnPointCaptain entities: - uid: 39 components: - - pos: 11.5,24.5 + - type: Transform + pos: 11.5,24.5 parent: 31 - type: Transform - proto: SpawnPointCargoTechnician entities: - uid: 1732 components: - - pos: 15.5,11.5 + - type: Transform + pos: 15.5,11.5 parent: 31 - type: Transform - uid: 1733 components: - - pos: 13.5,11.5 + - type: Transform + pos: 13.5,11.5 parent: 31 - type: Transform - proto: SpawnPointChaplain entities: - uid: 9875 components: - - pos: -37.5,18.5 + - type: Transform + pos: -37.5,18.5 parent: 31 - type: Transform - proto: SpawnPointChef entities: - uid: 1090 components: - - pos: -12.5,0.5 + - type: Transform + pos: -12.5,0.5 parent: 31 - type: Transform - proto: SpawnPointChemist entities: - uid: 595 components: - - pos: 17.5,-1.5 + - type: Transform + pos: 17.5,-1.5 parent: 31 - type: Transform - uid: 9741 components: - - pos: 15.5,-0.5 + - type: Transform + pos: 15.5,-0.5 parent: 31 - type: Transform - proto: SpawnPointChiefEngineer entities: - uid: 4273 components: - - pos: 39.5,-0.5 + - type: Transform + pos: 39.5,-0.5 parent: 31 - type: Transform - proto: SpawnPointChiefMedicalOfficer entities: - uid: 7332 components: - - pos: 24.5,-10.5 + - type: Transform + pos: 24.5,-10.5 parent: 31 - type: Transform - proto: SpawnPointClown entities: - uid: 7354 components: - - pos: -18.5,-7.5 + - type: Transform + pos: -18.5,-7.5 parent: 31 - type: Transform - proto: SpawnPointHeadOfPersonnel entities: - uid: 7147 components: - - pos: 8.5,20.5 + - type: Transform + pos: 8.5,20.5 parent: 31 - type: Transform - proto: SpawnPointHeadOfSecurity entities: - uid: 6845 components: - - pos: -8.5,21.5 + - type: Transform + pos: -8.5,21.5 parent: 31 - type: Transform - proto: SpawnPointJanitor entities: - uid: 1320 components: - - pos: -18.5,-11.5 + - type: Transform + pos: -18.5,-11.5 parent: 31 - type: Transform - proto: SpawnPointLatejoin entities: - uid: 9749 components: - - pos: -36.5,-9.5 + - type: Transform + pos: -36.5,-9.5 parent: 31 - type: Transform - uid: 9750 components: - - pos: -36.5,-7.5 + - type: Transform + pos: -36.5,-7.5 parent: 31 - type: Transform - uid: 9751 components: - - pos: -36.5,-6.5 + - type: Transform + pos: -36.5,-6.5 parent: 31 - type: Transform - proto: SpawnPointLibrarian entities: - uid: 7167 components: - - pos: 11.5,-30.5 + - type: Transform + pos: 11.5,-30.5 parent: 31 - type: Transform - proto: SpawnPointMedicalDoctor entities: - uid: 733 components: - - pos: 22.5,-6.5 + - type: Transform + pos: 22.5,-6.5 parent: 31 - type: Transform - uid: 7910 components: - - pos: 23.5,-6.5 + - type: Transform + pos: 23.5,-6.5 parent: 31 - type: Transform - proto: SpawnPointMedicalIntern entities: - uid: 541 components: - - pos: 23.5,-5.5 + - type: Transform + pos: 23.5,-5.5 parent: 31 - type: Transform - uid: 9102 components: - - pos: 22.5,-5.5 + - type: Transform + pos: 22.5,-5.5 parent: 31 - type: Transform - proto: SpawnPointMime entities: - uid: 7832 components: - - pos: -18.5,-5.5 + - type: Transform + pos: -18.5,-5.5 parent: 31 - type: Transform - proto: SpawnPointMusician entities: - uid: 1603 components: - - pos: -18.5,-6.5 + - type: Transform + pos: -18.5,-6.5 parent: 31 - type: Transform - proto: SpawnPointObserver entities: - uid: 902 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 31 - type: Transform - proto: SpawnPointParamedic entities: - uid: 256 components: - - pos: 24.5,-5.5 + - type: Transform + pos: 24.5,-5.5 parent: 31 - type: Transform - proto: SpawnPointPassenger entities: - uid: 496 components: - - pos: -28.5,9.5 + - type: Transform + pos: -28.5,9.5 parent: 31 - type: Transform - uid: 4229 components: - - pos: -27.5,9.5 + - type: Transform + pos: -27.5,9.5 parent: 31 - type: Transform - uid: 7166 components: - - pos: -25.5,-7.5 + - type: Transform + pos: -25.5,-7.5 parent: 31 - type: Transform - uid: 10141 components: - - pos: -22.5,-5.5 + - type: Transform + pos: -22.5,-5.5 parent: 31 - type: Transform - proto: SpawnPointQuartermaster entities: - uid: 6852 components: - - pos: 27.5,9.5 + - type: Transform + pos: 27.5,9.5 parent: 31 - type: Transform - proto: SpawnPointResearchAssistant entities: - uid: 10526 components: - - pos: -9.5,-19.5 + - type: Transform + pos: -9.5,-19.5 parent: 31 - type: Transform - uid: 10527 components: - - pos: -8.5,-19.5 + - type: Transform + pos: -8.5,-19.5 parent: 31 - type: Transform - proto: SpawnPointResearchDirector entities: - uid: 3385 components: - - pos: -4.5,-23.5 + - type: Transform + pos: -4.5,-23.5 parent: 31 - type: Transform - proto: SpawnPointSalvageSpecialist entities: - uid: 5917 components: - - pos: 25.5,21.5 + - type: Transform + pos: 25.5,21.5 parent: 31 - type: Transform - uid: 10007 components: - - pos: 25.5,19.5 + - type: Transform + pos: 25.5,19.5 parent: 31 - type: Transform - uid: 10473 components: - - pos: 25.5,20.5 + - type: Transform + pos: 25.5,20.5 parent: 31 - type: Transform - proto: SpawnPointScientist entities: - uid: 8904 components: - - pos: -7.5,-22.5 + - type: Transform + pos: -7.5,-22.5 parent: 31 - type: Transform - uid: 10522 components: - - pos: -14.5,-26.5 + - type: Transform + pos: -14.5,-26.5 parent: 31 - type: Transform - uid: 10523 components: - - pos: -13.5,-26.5 + - type: Transform + pos: -13.5,-26.5 parent: 31 - type: Transform - proto: SpawnPointSecurityCadet entities: - uid: 9444 components: - - pos: -13.5,16.5 + - type: Transform + pos: -13.5,16.5 parent: 31 - type: Transform - uid: 10446 components: - - pos: -12.5,16.5 + - type: Transform + pos: -12.5,16.5 parent: 31 - type: Transform - proto: SpawnPointSecurityOfficer entities: - uid: 501 components: - - pos: -13.5,14.5 + - type: Transform + pos: -13.5,14.5 parent: 31 - type: Transform - uid: 4202 components: - - pos: -12.5,14.5 + - type: Transform + pos: -12.5,14.5 parent: 31 - type: Transform - uid: 7905 components: - - pos: -11.5,14.5 + - type: Transform + pos: -11.5,14.5 parent: 31 - type: Transform - proto: SpawnPointServiceWorker entities: - uid: 7043 components: - - pos: -13.5,-0.5 + - type: Transform + pos: -13.5,-0.5 parent: 31 - type: Transform - uid: 9099 components: - - pos: -12.5,-0.5 + - type: Transform + pos: -12.5,-0.5 parent: 31 - type: Transform - proto: SpawnPointStationEngineer entities: - uid: 4270 components: - - pos: 33.5,-1.5 + - type: Transform + pos: 33.5,-1.5 parent: 31 - type: Transform - uid: 4286 components: - - pos: 32.5,-1.5 + - type: Transform + pos: 32.5,-1.5 parent: 31 - type: Transform - uid: 4288 components: - - pos: 31.5,-1.5 + - type: Transform + pos: 31.5,-1.5 parent: 31 - type: Transform - proto: SpawnPointTechnicalAssistant entities: - uid: 9103 components: - - pos: 32.5,-0.5 + - type: Transform + pos: 32.5,-0.5 parent: 31 - type: Transform - uid: 9104 components: - - pos: 33.5,-0.5 + - type: Transform + pos: 33.5,-0.5 parent: 31 - type: Transform - proto: SpawnPointWarden entities: - uid: 3145 components: - - pos: -0.5,8.5 + - type: Transform + pos: -0.5,8.5 parent: 31 - type: Transform - proto: SpawnVehicleSecway entities: - uid: 9872 components: - - pos: -5.5,16.5 + - type: Transform + pos: -5.5,16.5 parent: 31 - type: Transform - proto: SpawnVendingMachineRestockFoodDrink entities: - uid: 10695 components: - - pos: -1.5,-12.5 + - type: Transform + pos: -1.5,-12.5 parent: 31 - type: Transform - proto: SprayBottleSpaceCleaner entities: - uid: 626 components: - - pos: -18.66321,-10.23793 + - type: Transform + pos: -18.66321,-10.23793 parent: 31 - type: Transform - uid: 3115 components: - - pos: -18.66321,-10.355925 + - type: Transform + pos: -18.66321,-10.355925 parent: 31 - type: Transform - uid: 9134 components: - - pos: 13.175127,-15.438009 + - type: Transform + pos: 13.175127,-15.438009 parent: 31 - type: Transform - proto: StasisBed entities: - uid: 7269 components: - - pos: 12.5,-11.5 + - type: Transform + pos: 12.5,-11.5 parent: 31 - type: Transform - proto: StationMap entities: - uid: 5837 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 31 - type: Transform - uid: 7259 components: - - pos: 23.5,6.5 + - type: Transform + pos: 23.5,6.5 parent: 31 - type: Transform - uid: 8849 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,-9.5 parent: 31 - type: Transform - uid: 10535 components: - - pos: -14.5,-13.5 + - type: Transform + pos: -14.5,-13.5 parent: 31 - type: Transform - proto: SteelOre1 entities: - uid: 10819 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.0299077,-34.918034 parent: 31 - type: Transform - proto: Stool entities: - uid: 1355 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -22.5,-6.5 parent: 31 - type: Transform - uid: 1958 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -24.5,-2.5 parent: 31 - type: Transform - uid: 4641 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 58.5,1.5 parent: 31 - type: Transform - uid: 9580 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -18.5,10.5 parent: 31 - type: Transform - uid: 11227 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -27.5,-9.5 parent: 31 - type: Transform - proto: StoolBar entities: - uid: 873 components: - - pos: -2.5,-3.5 + - type: Transform + pos: -2.5,-3.5 parent: 31 - type: Transform - uid: 3407 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 31 - type: Transform - uid: 4057 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-5.5 parent: 31 - type: Transform - uid: 4165 components: - - pos: -3.5,-3.5 + - type: Transform + pos: -3.5,-3.5 parent: 31 - type: Transform - uid: 4168 components: - - pos: -5.5,-3.5 + - type: Transform + pos: -5.5,-3.5 parent: 31 - type: Transform - uid: 8412 components: - - pos: -6.5,-3.5 + - type: Transform + pos: -6.5,-3.5 parent: 31 - type: Transform - uid: 9877 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,1.5 parent: 31 - type: Transform - uid: 9920 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,0.5 parent: 31 - type: Transform - uid: 9921 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,-0.5 parent: 31 - type: Transform - uid: 10632 components: - - pos: 43.5,-7.5 + - type: Transform + pos: 43.5,-7.5 parent: 31 - type: Transform - uid: 10633 components: - - pos: 42.5,-7.5 + - type: Transform + pos: 42.5,-7.5 parent: 31 - type: Transform - proto: StorageCanister entities: - uid: 1536 components: - - pos: 36.5,9.5 + - type: Transform + pos: 36.5,9.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 1918 components: - - pos: 38.5,23.5 + - type: Transform + pos: 38.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 8990 components: - - pos: 36.5,10.5 + - type: Transform + pos: 36.5,10.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 11070 components: - - pos: 44.5,23.5 + - type: Transform + pos: 44.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: SubstationBasic entities: - uid: 2361 components: - - name: bar substation - type: MetaData - - pos: 0.5,-8.5 + - type: MetaData + name: bar substation + - type: Transform + pos: 0.5,-8.5 parent: 31 - type: Transform - uid: 3587 components: - - name: engineering substation - type: MetaData - - pos: 42.5,1.5 + - type: MetaData + name: engineering substation + - type: Transform + pos: 42.5,1.5 parent: 31 - type: Transform - uid: 3588 components: - - name: cargo substation - type: MetaData - - pos: 27.5,13.5 + - type: MetaData + name: cargo substation + - type: Transform + pos: 27.5,13.5 parent: 31 - type: Transform - uid: 3856 components: - - name: bridge substation - type: MetaData - - pos: 12.5,21.5 + - type: MetaData + name: bridge substation + - type: Transform + pos: 12.5,21.5 parent: 31 - type: Transform - uid: 4427 components: - - name: singulo substation - type: MetaData - - pos: 55.5,5.5 + - type: MetaData + name: singulo substation + - type: Transform + pos: 55.5,5.5 parent: 31 - type: Transform - uid: 7689 components: - - name: security substation - type: MetaData - - pos: -16.5,16.5 + - type: MetaData + name: security substation + - type: Transform + pos: -16.5,16.5 parent: 31 - type: Transform - uid: 8667 components: - - name: southwest solars substation - type: MetaData - - pos: -31.5,-31.5 + - type: MetaData + name: southwest solars substation + - type: Transform + pos: -31.5,-31.5 parent: 31 - type: Transform - uid: 9004 components: - - name: science substation - type: MetaData - - pos: -11.5,-33.5 + - type: MetaData + name: science substation + - type: Transform + pos: -11.5,-33.5 parent: 31 - type: Transform - uid: 10025 components: - - name: medical substation - type: MetaData - - pos: 21.5,-13.5 + - type: MetaData + name: medical substation + - type: Transform + pos: 21.5,-13.5 parent: 31 - type: Transform - uid: 10237 components: - - name: telecomms substation - type: MetaData - - pos: 53.5,-0.5 + - type: MetaData + name: telecomms substation + - type: Transform + pos: 53.5,-0.5 parent: 31 - type: Transform - uid: 10358 components: - - name: dorms substation - type: MetaData - - pos: -26.5,-11.5 + - type: MetaData + name: dorms substation + - type: Transform + pos: -26.5,-11.5 parent: 31 - type: Transform - uid: 11206 components: - - name: library substation - type: MetaData - - pos: 16.5,-27.5 + - type: MetaData + name: library substation + - type: Transform + pos: 16.5,-27.5 parent: 31 - type: Transform - uid: 11246 components: - - name: evac substation - type: MetaData - - pos: -31.5,7.5 + - type: MetaData + name: evac substation + - type: Transform + pos: -31.5,7.5 parent: 31 - type: Transform - proto: SuitStorageAtmos entities: - uid: 11024 components: - - pos: 41.5,11.5 + - type: Transform + pos: 41.5,11.5 parent: 31 - type: Transform - uid: 11026 components: - - pos: 42.5,11.5 + - type: Transform + pos: 42.5,11.5 parent: 31 - type: Transform - proto: SuitStorageEngi entities: - uid: 257 components: - - pos: 29.5,-2.5 + - type: Transform + pos: 29.5,-2.5 parent: 31 - type: Transform - uid: 259 components: - - pos: 29.5,-3.5 + - type: Transform + pos: 29.5,-3.5 parent: 31 - type: Transform - uid: 8218 components: - - pos: 29.5,-4.5 + - type: Transform + pos: 29.5,-4.5 parent: 31 - type: Transform - proto: SuitStorageEVA entities: - uid: 1963 components: - - pos: 8.5,10.5 + - type: Transform + pos: 8.5,10.5 parent: 31 - type: Transform - uid: 3417 components: - - pos: 10.5,7.5 + - type: Transform + pos: 10.5,7.5 parent: 31 - type: Transform - uid: 3889 components: - - pos: 10.5,8.5 + - type: Transform + pos: 10.5,8.5 parent: 31 - type: Transform - uid: 7137 components: - - pos: 8.5,9.5 + - type: Transform + pos: 8.5,9.5 parent: 31 - type: Transform - proto: SuitStorageEVAPrisoner entities: - uid: 8889 components: - - pos: -13.5,11.5 + - type: Transform + pos: -13.5,11.5 parent: 31 - type: Transform - proto: SuitStorageSec entities: - uid: 768 components: - - pos: -12.5,21.5 + - type: Transform + pos: -12.5,21.5 parent: 31 - type: Transform - uid: 1540 components: - - pos: -11.5,21.5 + - type: Transform + pos: -11.5,21.5 parent: 31 - type: Transform - proto: SurveillanceCameraCommand entities: - uid: 68 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,24.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True id: Bridge Entrance - type: SurveillanceCamera - uid: 75 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True id: HoP Office - type: SurveillanceCamera - uid: 540 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True id: Vault - type: SurveillanceCamera - uid: 1053 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,18.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True id: HoP Line - type: SurveillanceCamera - uid: 2412 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,24.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True id: Captain's Office - type: SurveillanceCamera - uid: 4198 components: - - pos: 11.5,23.5 + - type: Transform + pos: 11.5,23.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True id: Captain's Room - type: SurveillanceCamera - uid: 4256 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,32.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True id: Bridge East - type: SurveillanceCamera - uid: 4707 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,28.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True id: Bridge West - type: SurveillanceCamera - uid: 4891 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,11.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True id: EVA Supply - type: SurveillanceCamera - uid: 9146 components: - - pos: -0.5,23.5 + - type: Transform + pos: -0.5,23.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True id: Conference Room - type: SurveillanceCamera - proto: SurveillanceCameraEngineering entities: - uid: 1160 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 57.5,-9.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: Secure Telecomms - type: SurveillanceCamera - uid: 1205 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 35.5,-1.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: Engineering Locker Room - type: SurveillanceCamera - uid: 7519 components: - - pos: 58.5,-5.5 + - type: Transform + pos: 58.5,-5.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: Gravity - type: SurveillanceCamera - uid: 9149 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 39.5,0.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: CE's Office - type: SurveillanceCamera - uid: 9150 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 41.5,6.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: SMES Bank - type: SurveillanceCamera - uid: 9151 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 46.5,10.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: AME Room - type: SurveillanceCamera - uid: 9152 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 41.5,14.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: Atmospherics - type: SurveillanceCamera - uid: 9153 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 55.5,0.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: Singulo - type: SurveillanceCamera - uid: 9155 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 35.5,6.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: Engineering Lobby - type: SurveillanceCamera - uid: 10481 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 47.5,-9.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: Telecomms - type: SurveillanceCamera - proto: SurveillanceCameraGeneral entities: - uid: 727 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 18.5,5.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: East Hallway - type: SurveillanceCamera - uid: 3050 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -37.5,-8.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Arrivals - type: SurveillanceCamera - uid: 4346 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -22.5,-1.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Upper Dorms - type: SurveillanceCamera - uid: 4361 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -19.5,5.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: West Hallway - type: SurveillanceCamera - uid: 4433 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Medical Hallway - type: SurveillanceCamera - uid: 4549 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-8.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: South Hallway - type: SurveillanceCamera - uid: 6306 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,10.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: North Hallway - type: SurveillanceCamera - uid: 6308 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -34.5,7.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Evac camera - type: SurveillanceCamera - uid: 7289 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -22.5,10.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Tool Hall - type: SurveillanceCamera - uid: 8320 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-18.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: South Hall - type: SurveillanceCamera - uid: 8321 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,-29.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Robotics Hall - type: SurveillanceCamera - uid: 10998 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,-14.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Science Hall - type: SurveillanceCamera - proto: SurveillanceCameraMedical entities: - uid: 9157 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-13.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True id: Cloning - type: SurveillanceCamera - uid: 9158 components: - - pos: 10.5,-11.5 + - type: Transform + pos: 10.5,-11.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True id: Medbay Foyer - type: SurveillanceCamera - uid: 9159 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,0.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True id: Chemistry - type: SurveillanceCamera - uid: 9160 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,-7.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True id: Medbay Labs - type: SurveillanceCamera - uid: 9161 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-3.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True id: Medbay Lobby - type: SurveillanceCamera - uid: 11008 components: - - pos: 20.5,-17.5 + - type: Transform + pos: 20.5,-17.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True id: Surgery - type: SurveillanceCamera - uid: 11009 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 22.5,-9.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True id: Chief Medical Officer's Office - type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: - uid: 8414 components: - - pos: 57.5,-7.5 + - type: Transform + pos: 57.5,-7.5 parent: 31 - type: Transform - proto: SurveillanceCameraRouterEngineering entities: - uid: 6289 components: - - pos: 48.5,-7.5 + - type: Transform + pos: 48.5,-7.5 parent: 31 - type: Transform - proto: SurveillanceCameraRouterGeneral entities: - uid: 6303 components: - - pos: 10.5,9.5 + - type: Transform + pos: 10.5,9.5 parent: 31 - type: Transform - uid: 8124 components: - - pos: 48.5,-9.5 + - type: Transform + pos: 48.5,-9.5 parent: 31 - type: Transform - proto: SurveillanceCameraRouterMedical entities: - uid: 5713 components: - - pos: 48.5,-11.5 + - type: Transform + pos: 48.5,-11.5 parent: 31 - type: Transform - proto: SurveillanceCameraRouterScience entities: - uid: 8137 components: - - pos: 52.5,-11.5 + - type: Transform + pos: 52.5,-11.5 parent: 31 - type: Transform - proto: SurveillanceCameraRouterSecurity entities: - uid: 3113 components: - - pos: 57.5,-11.5 + - type: Transform + pos: 57.5,-11.5 parent: 31 - type: Transform - proto: SurveillanceCameraRouterService entities: - uid: 8524 components: - - pos: 52.5,-9.5 + - type: Transform + pos: 52.5,-9.5 parent: 31 - type: Transform - proto: SurveillanceCameraRouterSupply entities: - uid: 4464 components: - - pos: 52.5,-7.5 + - type: Transform + pos: 52.5,-7.5 parent: 31 - type: Transform - proto: SurveillanceCameraScience entities: - uid: 7372 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-28.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraScience nameSet: True id: Central Lab - type: SurveillanceCamera - uid: 10541 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-19.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraScience nameSet: True id: Research Director's Office - type: SurveillanceCamera - uid: 10549 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-30.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraScience nameSet: True id: Robotics - type: SurveillanceCamera - uid: 10550 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-18.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraScience nameSet: True id: Break Room - type: SurveillanceCamera - uid: 10551 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,-23.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraScience nameSet: True id: Front Room - type: SurveillanceCamera - proto: SurveillanceCameraSecurity entities: - uid: 6568 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,11.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True id: Security Cell Block - type: SurveillanceCamera - uid: 7170 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,21.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True id: Armory - type: SurveillanceCamera - uid: 7410 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,7.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True id: Warden's Office - type: SurveillanceCamera - uid: 9147 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,11.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True id: Perma Brig - type: SurveillanceCamera - proto: SurveillanceCameraService entities: - uid: 4555 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-22.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraService nameSet: True id: Library - type: SurveillanceCamera - uid: 4706 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-3.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraService nameSet: True id: Bar - type: SurveillanceCamera - proto: SurveillanceCameraSupply entities: - uid: 4575 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 16.5,12.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraSupply nameSet: True id: Cargo Request Room - type: SurveillanceCamera - uid: 4576 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 24.5,13.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraSupply nameSet: True id: Cargo Supply Room - type: SurveillanceCamera - uid: 4690 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 19.5,17.5 parent: 31 - type: Transform - - setupAvailableNetworks: + - type: SurveillanceCamera + setupAvailableNetworks: - SurveillanceCameraSupply nameSet: True id: Salvage Magnet - type: SurveillanceCamera - proto: SynthesizerInstrument entities: - uid: 7966 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -19.464506,-6.545539 parent: 31 - type: Transform - proto: Syringe entities: - uid: 10806 components: - - pos: 15.970788,-6.397341 + - type: Transform + pos: 15.970788,-6.397341 parent: 31 - type: Transform - uid: 10808 components: - - pos: 15.852729,-6.338344 + - type: Transform + pos: 15.852729,-6.338344 parent: 31 - type: Transform - proto: Table entities: - uid: 206 components: - - pos: -5.5,-32.5 + - type: Transform + pos: -5.5,-32.5 parent: 31 - type: Transform - uid: 211 components: - - pos: -4.5,-32.5 + - type: Transform + pos: -4.5,-32.5 parent: 31 - type: Transform - uid: 431 components: - - pos: 25.5,0.5 + - type: Transform + pos: 25.5,0.5 parent: 31 - type: Transform - uid: 765 components: - - pos: -3.5,18.5 + - type: Transform + pos: -3.5,18.5 parent: 31 - type: Transform - uid: 817 components: - - pos: 50.5,4.5 + - type: Transform + pos: 50.5,4.5 parent: 31 - type: Transform - uid: 864 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-31.5 parent: 31 - type: Transform - uid: 894 components: - - pos: -14.5,-0.5 + - type: Transform + pos: -14.5,-0.5 parent: 31 - type: Transform - uid: 895 components: - - pos: -14.5,-1.5 + - type: Transform + pos: -14.5,-1.5 parent: 31 - type: Transform - uid: 976 components: - - pos: 15.5,16.5 + - type: Transform + pos: 15.5,16.5 parent: 31 - type: Transform - uid: 1087 components: - - pos: 6.5,-11.5 + - type: Transform + pos: 6.5,-11.5 parent: 31 - type: Transform - uid: 1146 components: - - pos: 21.5,-4.5 + - type: Transform + pos: 21.5,-4.5 parent: 31 - type: Transform - uid: 1155 components: - - pos: 16.5,16.5 + - type: Transform + pos: 16.5,16.5 parent: 31 - type: Transform - uid: 1217 components: - - pos: 49.5,5.5 + - type: Transform + pos: 49.5,5.5 parent: 31 - type: Transform - uid: 1219 components: - - pos: 50.5,5.5 + - type: Transform + pos: 50.5,5.5 parent: 31 - type: Transform - uid: 1235 components: - - pos: -29.5,9.5 + - type: Transform + pos: -29.5,9.5 parent: 31 - type: Transform - uid: 1236 components: - - pos: -29.5,8.5 + - type: Transform + pos: -29.5,8.5 parent: 31 - type: Transform - uid: 1247 components: - - pos: 45.5,-20.5 + - type: Transform + pos: 45.5,-20.5 parent: 31 - type: Transform - uid: 1304 components: - - pos: -15.5,11.5 + - type: Transform + pos: -15.5,11.5 parent: 31 - type: Transform - uid: 1442 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -16.5,-25.5 parent: 31 - type: Transform - uid: 1752 components: - - pos: 29.5,0.5 + - type: Transform + pos: 29.5,0.5 parent: 31 - type: Transform - uid: 1753 components: - - pos: 29.5,1.5 + - type: Transform + pos: 29.5,1.5 parent: 31 - type: Transform - uid: 1780 components: - - pos: -17.5,-22.5 + - type: Transform + pos: -17.5,-22.5 parent: 31 - type: Transform - uid: 1877 components: - - pos: -10.5,7.5 + - type: Transform + pos: -10.5,7.5 parent: 31 - type: Transform - uid: 2002 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,14.5 parent: 31 - type: Transform - uid: 2175 components: - - pos: 12.5,-4.5 + - type: Transform + pos: 12.5,-4.5 parent: 31 - type: Transform - uid: 2261 components: - - pos: -17.5,-23.5 + - type: Transform + pos: -17.5,-23.5 parent: 31 - type: Transform - uid: 2317 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,-21.5 parent: 31 - type: Transform - uid: 2321 components: - - pos: -8.5,-18.5 + - type: Transform + pos: -8.5,-18.5 parent: 31 - type: Transform - uid: 2360 components: - - pos: -4.5,-6.5 + - type: Transform + pos: -4.5,-6.5 parent: 31 - type: Transform - uid: 2403 components: - - pos: -29.5,7.5 + - type: Transform + pos: -29.5,7.5 parent: 31 - type: Transform - uid: 2413 components: - - pos: -2.5,18.5 + - type: Transform + pos: -2.5,18.5 parent: 31 - type: Transform - uid: 2428 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,-22.5 parent: 31 - type: Transform - uid: 2434 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -30.5,-9.5 parent: 31 - type: Transform - uid: 2455 components: - - pos: 19.5,-9.5 + - type: Transform + pos: 19.5,-9.5 parent: 31 - type: Transform - uid: 2504 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,-25.5 parent: 31 - type: Transform - uid: 2505 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,-26.5 parent: 31 - type: Transform - uid: 2670 components: - - pos: -2.5,7.5 + - type: Transform + pos: -2.5,7.5 parent: 31 - type: Transform - uid: 2716 components: - - pos: 19.5,-8.5 + - type: Transform + pos: 19.5,-8.5 parent: 31 - type: Transform - uid: 2807 components: - - pos: -48.5,-9.5 + - type: Transform + pos: -48.5,-9.5 parent: 31 - type: Transform - uid: 3106 components: - - pos: -12.5,11.5 + - type: Transform + pos: -12.5,11.5 parent: 31 - type: Transform - uid: 3138 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,12.5 parent: 31 - type: Transform - uid: 3733 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-14.5 parent: 31 - type: Transform - uid: 4112 components: - - pos: 26.5,0.5 + - type: Transform + pos: 26.5,0.5 parent: 31 - type: Transform - uid: 4128 components: - - pos: -19.5,-2.5 + - type: Transform + pos: -19.5,-2.5 parent: 31 - type: Transform - uid: 4190 components: - - pos: -1.5,16.5 + - type: Transform + pos: -1.5,16.5 parent: 31 - type: Transform - uid: 4203 components: - - pos: 22.5,12.5 + - type: Transform + pos: 22.5,12.5 parent: 31 - type: Transform - uid: 4222 components: - - pos: 22.5,13.5 + - type: Transform + pos: 22.5,13.5 parent: 31 - type: Transform - uid: 4240 components: - - pos: 19.5,7.5 + - type: Transform + pos: 19.5,7.5 parent: 31 - type: Transform - uid: 4260 components: - - pos: 55.5,8.5 + - type: Transform + pos: 55.5,8.5 parent: 31 - type: Transform - uid: 4466 components: - - pos: 18.5,7.5 + - type: Transform + pos: 18.5,7.5 parent: 31 - type: Transform - uid: 4826 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,-18.5 parent: 31 - type: Transform - uid: 4860 components: - - pos: -10.5,-6.5 + - type: Transform + pos: -10.5,-6.5 parent: 31 - type: Transform - uid: 4904 components: - - pos: 12.5,-5.5 + - type: Transform + pos: 12.5,-5.5 parent: 31 - type: Transform - uid: 4920 components: - - pos: -3.5,17.5 + - type: Transform + pos: -3.5,17.5 parent: 31 - type: Transform - uid: 4927 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,11.5 parent: 31 - type: Transform - uid: 5089 components: - - pos: 27.5,0.5 + - type: Transform + pos: 27.5,0.5 parent: 31 - type: Transform - uid: 5112 components: - - pos: 28.5,0.5 + - type: Transform + pos: 28.5,0.5 parent: 31 - type: Transform - uid: 5727 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,13.5 parent: 31 - type: Transform - uid: 5754 components: - - pos: -11.5,11.5 + - type: Transform + pos: -11.5,11.5 parent: 31 - type: Transform - uid: 6019 components: - - pos: -7.5,-18.5 + - type: Transform + pos: -7.5,-18.5 parent: 31 - type: Transform - uid: 6020 components: - - pos: -3.5,16.5 + - type: Transform + pos: -3.5,16.5 parent: 31 - type: Transform - uid: 6183 components: - - pos: 6.5,9.5 + - type: Transform + pos: 6.5,9.5 parent: 31 - type: Transform - uid: 6250 components: - - pos: 13.5,12.5 + - type: Transform + pos: 13.5,12.5 parent: 31 - type: Transform - uid: 6256 components: - - pos: 32.5,-3.5 + - type: Transform + pos: 32.5,-3.5 parent: 31 - type: Transform - uid: 6257 components: - - pos: 32.5,-2.5 + - type: Transform + pos: 32.5,-2.5 parent: 31 - type: Transform - uid: 6570 components: - - pos: 6.5,10.5 + - type: Transform + pos: 6.5,10.5 parent: 31 - type: Transform - uid: 7093 components: - - pos: 15.5,8.5 + - type: Transform + pos: 15.5,8.5 parent: 31 - type: Transform - uid: 7103 components: - - pos: -9.5,-18.5 + - type: Transform + pos: -9.5,-18.5 parent: 31 - type: Transform - uid: 7123 components: - - pos: 14.5,-15.5 + - type: Transform + pos: 14.5,-15.5 parent: 31 - type: Transform - uid: 7124 components: - - pos: 13.5,-15.5 + - type: Transform + pos: 13.5,-15.5 parent: 31 - type: Transform - uid: 7134 components: - - pos: 48.5,5.5 + - type: Transform + pos: 48.5,5.5 parent: 31 - type: Transform - uid: 7172 components: - - pos: 18.5,8.5 + - type: Transform + pos: 18.5,8.5 parent: 31 - type: Transform - uid: 7245 components: - - pos: 22.5,-4.5 + - type: Transform + pos: 22.5,-4.5 parent: 31 - type: Transform - uid: 7353 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -19.5,-6.5 parent: 31 - type: Transform - uid: 7564 components: - - pos: -15.5,-11.5 + - type: Transform + pos: -15.5,-11.5 parent: 31 - type: Transform - uid: 7565 components: - - pos: -15.5,-10.5 + - type: Transform + pos: -15.5,-10.5 parent: 31 - type: Transform - uid: 7573 components: - - pos: 7.5,-13.5 + - type: Transform + pos: 7.5,-13.5 parent: 31 - type: Transform - uid: 7597 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,-18.5 parent: 31 - type: Transform - uid: 7599 components: - - pos: -5.5,-28.5 + - type: Transform + pos: -5.5,-28.5 parent: 31 - type: Transform - uid: 7626 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,-18.5 parent: 31 - type: Transform - uid: 7815 components: - - pos: 6.5,-7.5 + - type: Transform + pos: 6.5,-7.5 parent: 31 - type: Transform - uid: 7835 components: - - pos: -26.5,19.5 + - type: Transform + pos: -26.5,19.5 parent: 31 - type: Transform - uid: 7836 components: - - pos: -26.5,20.5 + - type: Transform + pos: -26.5,20.5 parent: 31 - type: Transform - uid: 7847 components: - - pos: -13.5,24.5 + - type: Transform + pos: -13.5,24.5 parent: 31 - type: Transform - uid: 8206 components: - - pos: -4.5,-31.5 + - type: Transform + pos: -4.5,-31.5 parent: 31 - type: Transform - uid: 8223 components: - - pos: -6.5,-28.5 + - type: Transform + pos: -6.5,-28.5 parent: 31 - type: Transform - uid: 8307 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,8.5 parent: 31 - type: Transform - uid: 8324 components: - - pos: -10.5,-31.5 + - type: Transform + pos: -10.5,-31.5 parent: 31 - type: Transform - uid: 8345 components: - - pos: -0.5,16.5 + - type: Transform + pos: -0.5,16.5 parent: 31 - type: Transform - uid: 8413 components: - - pos: -5.5,-6.5 + - type: Transform + pos: -5.5,-6.5 parent: 31 - type: Transform - uid: 8496 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,12.5 parent: 31 - type: Transform - uid: 8559 components: - - pos: 1.5,-26.5 + - type: Transform + pos: 1.5,-26.5 parent: 31 - type: Transform - uid: 8784 components: - - pos: 14.5,12.5 + - type: Transform + pos: 14.5,12.5 parent: 31 - type: Transform - uid: 8807 components: - - pos: -2.5,30.5 + - type: Transform + pos: -2.5,30.5 parent: 31 - type: Transform - uid: 8853 components: - - pos: 31.5,6.5 + - type: Transform + pos: 31.5,6.5 parent: 31 - type: Transform - uid: 8900 components: - - pos: 40.5,4.5 + - type: Transform + pos: 40.5,4.5 parent: 31 - type: Transform - uid: 9003 components: - - pos: -20.5,-2.5 + - type: Transform + pos: -20.5,-2.5 parent: 31 - type: Transform - uid: 9006 components: - - pos: -11.5,-31.5 + - type: Transform + pos: -11.5,-31.5 parent: 31 - type: Transform - uid: 9069 components: - - pos: 18.5,16.5 + - type: Transform + pos: 18.5,16.5 parent: 31 - type: Transform - uid: 9070 components: - - pos: 18.5,17.5 + - type: Transform + pos: 18.5,17.5 parent: 31 - type: Transform - uid: 9165 components: - - pos: -6.5,26.5 + - type: Transform + pos: -6.5,26.5 parent: 31 - type: Transform - uid: 9198 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -19.5,-7.5 parent: 31 - type: Transform - uid: 9507 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -19.5,-5.5 parent: 31 - type: Transform - uid: 9510 components: - - pos: 45.5,-2.5 + - type: Transform + pos: 45.5,-2.5 parent: 31 - type: Transform - uid: 9529 components: - - pos: 34.5,0.5 + - type: Transform + pos: 34.5,0.5 parent: 31 - type: Transform - uid: 9795 components: - - pos: -4.5,-39.5 + - type: Transform + pos: -4.5,-39.5 parent: 31 - type: Transform - uid: 9797 components: - - pos: -3.5,-39.5 + - type: Transform + pos: -3.5,-39.5 parent: 31 - type: Transform - uid: 10140 components: - - pos: 49.5,-5.5 + - type: Transform + pos: 49.5,-5.5 parent: 31 - type: Transform - uid: 10223 components: - - pos: 48.5,-5.5 + - type: Transform + pos: 48.5,-5.5 parent: 31 - type: Transform - uid: 10275 components: - - pos: -32.5,-15.5 + - type: Transform + pos: -32.5,-15.5 parent: 31 - type: Transform - uid: 10276 components: - - pos: -31.5,-15.5 + - type: Transform + pos: -31.5,-15.5 parent: 31 - type: Transform - uid: 10324 components: - - pos: -16.5,-14.5 + - type: Transform + pos: -16.5,-14.5 parent: 31 - type: Transform - uid: 10418 components: - - pos: 0.5,-27.5 + - type: Transform + pos: 0.5,-27.5 parent: 31 - type: Transform - uid: 10421 components: - - pos: -0.5,-27.5 + - type: Transform + pos: -0.5,-27.5 parent: 31 - type: Transform - uid: 10542 components: - - pos: -7.5,26.5 + - type: Transform + pos: -7.5,26.5 parent: 31 - type: Transform - uid: 10582 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -29.5,-9.5 parent: 31 - type: Transform - uid: 10642 components: - - pos: 43.5,-13.5 + - type: Transform + pos: 43.5,-13.5 parent: 31 - type: Transform - uid: 10643 components: - - pos: 44.5,-13.5 + - type: Transform + pos: 44.5,-13.5 parent: 31 - type: Transform - uid: 10693 components: - - pos: -1.5,-12.5 + - type: Transform + pos: -1.5,-12.5 parent: 31 - type: Transform - uid: 10694 components: - - pos: -0.5,-12.5 + - type: Transform + pos: -0.5,-12.5 parent: 31 - type: Transform - uid: 10758 components: - - pos: -47.5,-9.5 + - type: Transform + pos: -47.5,-9.5 parent: 31 - type: Transform - uid: 10792 components: - - pos: 45.5,-21.5 + - type: Transform + pos: 45.5,-21.5 parent: 31 - type: Transform - uid: 11078 components: - - pos: 46.5,-2.5 + - type: Transform + pos: 46.5,-2.5 parent: 31 - type: Transform - uid: 11120 components: - - pos: -7.5,28.5 + - type: Transform + pos: -7.5,28.5 parent: 31 - type: Transform - uid: 11121 components: - - pos: -7.5,29.5 + - type: Transform + pos: -7.5,29.5 parent: 31 - type: Transform - uid: 11122 components: - - pos: -6.5,29.5 + - type: Transform + pos: -6.5,29.5 parent: 31 - type: Transform - proto: TableCarpet entities: - uid: 2422 components: - - pos: 0.5,-5.5 + - type: Transform + pos: 0.5,-5.5 parent: 31 - type: Transform - uid: 3805 components: - - pos: -1.5,1.5 + - type: Transform + pos: -1.5,1.5 parent: 31 - type: Transform - uid: 3844 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -21.5,9.5 parent: 31 - type: Transform - uid: 4148 components: - - pos: 11.5,-23.5 + - type: Transform + pos: 11.5,-23.5 parent: 31 - type: Transform - uid: 4250 components: - - pos: 10.5,-24.5 + - type: Transform + pos: 10.5,-24.5 parent: 31 - type: Transform - uid: 4777 components: - - pos: 10.5,-23.5 + - type: Transform + pos: 10.5,-23.5 parent: 31 - type: Transform - uid: 5792 components: - - pos: 11.5,-24.5 + - type: Transform + pos: 11.5,-24.5 parent: 31 - type: Transform - uid: 8318 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -22.5,9.5 parent: 31 - type: Transform - uid: 8724 components: - - pos: -36.5,-29.5 + - type: Transform + pos: -36.5,-29.5 parent: 31 - type: Transform - proto: TableCounterWood entities: - uid: 2006 components: - - pos: 7.5,1.5 + - type: Transform + pos: 7.5,1.5 parent: 31 - type: Transform - uid: 2521 components: - - pos: 11.5,1.5 + - type: Transform + pos: 11.5,1.5 parent: 31 - type: Transform - uid: 10620 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 41.5,-8.5 parent: 31 - type: Transform - uid: 10621 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 42.5,-8.5 parent: 31 - type: Transform - uid: 10622 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 43.5,-8.5 parent: 31 - type: Transform - proto: TableGlass entities: - uid: 1104 components: - - pos: 5.5,21.5 + - type: Transform + pos: 5.5,21.5 parent: 31 - type: Transform - uid: 4045 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 22.5,-10.5 parent: 31 - type: Transform - uid: 4852 components: - - pos: 3.5,-30.5 + - type: Transform + pos: 3.5,-30.5 parent: 31 - type: Transform - uid: 8225 components: - - pos: 22.5,-9.5 + - type: Transform + pos: 22.5,-9.5 parent: 31 - type: Transform - proto: TableReinforced entities: - uid: 187 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-19.5 parent: 31 - type: Transform - uid: 275 components: - - pos: 5.5,31.5 + - type: Transform + pos: 5.5,31.5 parent: 31 - type: Transform - uid: 462 components: - - pos: 4.5,32.5 + - type: Transform + pos: 4.5,32.5 parent: 31 - type: Transform - uid: 532 components: - - pos: 9.5,30.5 + - type: Transform + pos: 9.5,30.5 parent: 31 - type: Transform - uid: 533 components: - - pos: -0.5,32.5 + - type: Transform + pos: -0.5,32.5 parent: 31 - type: Transform - uid: 597 components: - - pos: 30.5,5.5 + - type: Transform + pos: 30.5,5.5 parent: 31 - type: Transform - uid: 611 components: - - pos: 9.5,28.5 + - type: Transform + pos: 9.5,28.5 parent: 31 - type: Transform - uid: 661 components: - - pos: -11.5,16.5 + - type: Transform + pos: -11.5,16.5 parent: 31 - type: Transform - uid: 676 components: - - pos: 17.5,-20.5 + - type: Transform + pos: 17.5,-20.5 parent: 31 - type: Transform - uid: 714 components: - - pos: 40.5,-0.5 + - type: Transform + pos: 40.5,-0.5 parent: 31 - type: Transform - uid: 766 components: - - pos: 1.5,32.5 + - type: Transform + pos: 1.5,32.5 parent: 31 - type: Transform - uid: 900 components: - - pos: -10.5,-0.5 + - type: Transform + pos: -10.5,-0.5 parent: 31 - type: Transform - uid: 901 components: - - pos: -10.5,1.5 + - type: Transform + pos: -10.5,1.5 parent: 31 - type: Transform - uid: 940 components: - - pos: 2.5,32.5 + - type: Transform + pos: 2.5,32.5 parent: 31 - type: Transform - uid: 959 components: - - pos: 5.5,32.5 + - type: Transform + pos: 5.5,32.5 parent: 31 - type: Transform - uid: 987 components: - - pos: 38.5,-0.5 + - type: Transform + pos: 38.5,-0.5 parent: 31 - type: Transform - uid: 1204 components: - - pos: 6.5,20.5 + - type: Transform + pos: 6.5,20.5 parent: 31 - type: Transform - uid: 1434 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -15.5,-19.5 parent: 31 - type: Transform - uid: 2145 components: - - pos: 26.5,21.5 + - type: Transform + pos: 26.5,21.5 parent: 31 - type: Transform - uid: 2174 components: - - pos: 14.5,-5.5 + - type: Transform + pos: 14.5,-5.5 parent: 31 - type: Transform - uid: 2193 components: - - pos: 19.5,-20.5 + - type: Transform + pos: 19.5,-20.5 parent: 31 - type: Transform - uid: 2297 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,15.5 parent: 31 - type: Transform - uid: 2446 components: - - pos: 7.5,32.5 + - type: Transform + pos: 7.5,32.5 parent: 31 - type: Transform - uid: 4193 components: - - pos: 2.5,31.5 + - type: Transform + pos: 2.5,31.5 parent: 31 - type: Transform - uid: 4234 components: - - pos: -14.5,20.5 + - type: Transform + pos: -14.5,20.5 parent: 31 - type: Transform - uid: 4245 components: - - pos: -10.5,0.5 + - type: Transform + pos: -10.5,0.5 parent: 31 - type: Transform - uid: 4301 components: - - pos: 28.5,15.5 + - type: Transform + pos: 28.5,15.5 parent: 31 - type: Transform - uid: 4304 components: - - pos: 27.5,15.5 + - type: Transform + pos: 27.5,15.5 parent: 31 - type: Transform - uid: 4880 components: - - pos: -1.5,6.5 + - type: Transform + pos: -1.5,6.5 parent: 31 - type: Transform - uid: 4884 components: - - pos: 15.5,-3.5 + - type: Transform + pos: 15.5,-3.5 parent: 31 - type: Transform - uid: 5084 components: - - pos: 13.5,-0.5 + - type: Transform + pos: 13.5,-0.5 parent: 31 - type: Transform - uid: 6252 components: - - pos: 37.5,-0.5 + - type: Transform + pos: 37.5,-0.5 parent: 31 - type: Transform - uid: 8138 components: - - pos: 60.5,-5.5 + - type: Transform + pos: 60.5,-5.5 parent: 31 - type: Transform - uid: 8346 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 40.5,0.5 parent: 31 - type: Transform - uid: 8420 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,16.5 parent: 31 - type: Transform - uid: 8798 components: - - pos: -13.5,18.5 + - type: Transform + pos: -13.5,18.5 parent: 31 - type: Transform - uid: 8799 components: - - pos: 8.5,31.5 + - type: Transform + pos: 8.5,31.5 parent: 31 - type: Transform - uid: 9056 components: - - pos: 17.5,-21.5 + - type: Transform + pos: 17.5,-21.5 parent: 31 - type: Transform - uid: 9071 components: - - pos: 27.5,21.5 + - type: Transform + pos: 27.5,21.5 parent: 31 - type: Transform - uid: 9100 components: - - pos: 14.5,-4.5 + - type: Transform + pos: 14.5,-4.5 parent: 31 - type: Transform - uid: 9101 components: - - pos: 15.5,-6.5 + - type: Transform + pos: 15.5,-6.5 parent: 31 - type: Transform - uid: 9110 components: - - pos: 14.5,-6.5 + - type: Transform + pos: 14.5,-6.5 parent: 31 - type: Transform - uid: 9111 components: - - pos: 16.5,-6.5 + - type: Transform + pos: 16.5,-6.5 parent: 31 - type: Transform - uid: 9623 components: - - pos: -11.5,19.5 + - type: Transform + pos: -11.5,19.5 parent: 31 - type: Transform - uid: 10892 components: - - pos: 59.5,-5.5 + - type: Transform + pos: 59.5,-5.5 parent: 31 - type: Transform - uid: 10902 components: - - pos: 55.5,-11.5 + - type: Transform + pos: 55.5,-11.5 parent: 31 - type: Transform - uid: 10903 components: - - pos: 56.5,-11.5 + - type: Transform + pos: 56.5,-11.5 parent: 31 - type: Transform - proto: TableReinforcedGlass entities: - uid: 1479 components: - - pos: -4.5,-20.5 + - type: Transform + pos: -4.5,-20.5 parent: 31 - type: Transform - uid: 4140 components: - - pos: -4.5,-21.5 + - type: Transform + pos: -4.5,-21.5 parent: 31 - type: Transform - uid: 5077 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,1.5 parent: 31 - type: Transform - uid: 5078 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,1.5 parent: 31 - type: Transform - uid: 5087 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 14.5,1.5 parent: 31 - type: Transform - uid: 5088 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 31 - type: Transform - proto: TableStone entities: - uid: 9698 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-42.5 parent: 31 - type: Transform - uid: 9703 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,-42.5 parent: 31 - type: Transform - uid: 9704 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,-41.5 parent: 31 - type: Transform - uid: 9709 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,-40.5 parent: 31 - type: Transform - proto: TableWood entities: - uid: 492 components: - - pos: -30.5,-1.5 + - type: Transform + pos: -30.5,-1.5 parent: 31 - type: Transform - uid: 936 components: - - pos: -5.5,-4.5 + - type: Transform + pos: -5.5,-4.5 parent: 31 - type: Transform - uid: 965 components: - - pos: -1.5,24.5 + - type: Transform + pos: -1.5,24.5 parent: 31 - type: Transform - uid: 966 components: - - pos: -1.5,25.5 + - type: Transform + pos: -1.5,25.5 parent: 31 - type: Transform - uid: 1092 components: - - pos: 10.5,23.5 + - type: Transform + pos: 10.5,23.5 parent: 31 - type: Transform - uid: 1419 components: - - pos: -7.5,20.5 + - type: Transform + pos: -7.5,20.5 parent: 31 - type: Transform - uid: 1496 components: - - pos: 7.5,18.5 + - type: Transform + pos: 7.5,18.5 parent: 31 - type: Transform - uid: 2201 components: - - pos: 28.5,9.5 + - type: Transform + pos: 28.5,9.5 parent: 31 - type: Transform - uid: 2250 components: - - pos: -2.5,-4.5 + - type: Transform + pos: -2.5,-4.5 parent: 31 - type: Transform - uid: 2251 components: - - pos: -3.5,-4.5 + - type: Transform + pos: -3.5,-4.5 parent: 31 - type: Transform - uid: 2253 components: - - pos: -2.5,-1.5 + - type: Transform + pos: -2.5,-1.5 parent: 31 - type: Transform - uid: 2421 components: - - pos: -2.5,-5.5 + - type: Transform + pos: -2.5,-5.5 parent: 31 - type: Transform - uid: 2844 components: - - pos: -30.5,-5.5 + - type: Transform + pos: -30.5,-5.5 parent: 31 - type: Transform - uid: 3750 components: - - pos: -3.5,-1.5 + - type: Transform + pos: -3.5,-1.5 parent: 31 - type: Transform - uid: 3753 components: - - pos: -6.5,-1.5 + - type: Transform + pos: -6.5,-1.5 parent: 31 - type: Transform - uid: 3892 components: - - pos: -30.5,-2.5 + - type: Transform + pos: -30.5,-2.5 parent: 31 - type: Transform - uid: 3913 components: - - pos: 28.5,10.5 + - type: Transform + pos: 28.5,10.5 parent: 31 - type: Transform - uid: 4005 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -21.5,17.5 parent: 31 - type: Transform - uid: 4016 components: - - pos: -8.5,20.5 + - type: Transform + pos: -8.5,20.5 parent: 31 - type: Transform - uid: 4061 components: - - pos: -6.5,-4.5 + - type: Transform + pos: -6.5,-4.5 parent: 31 - type: Transform - uid: 4063 components: - - pos: -4.5,-4.5 + - type: Transform + pos: -4.5,-4.5 parent: 31 - type: Transform - uid: 4093 components: - - pos: -30.5,1.5 + - type: Transform + pos: -30.5,1.5 parent: 31 - type: Transform - uid: 4162 components: - - pos: -2.5,-6.5 + - type: Transform + pos: -2.5,-6.5 parent: 31 - type: Transform - uid: 4247 components: - - pos: 8.5,-28.5 + - type: Transform + pos: 8.5,-28.5 parent: 31 - type: Transform - uid: 4710 components: - - pos: -23.5,-6.5 + - type: Transform + pos: -23.5,-6.5 parent: 31 - type: Transform - uid: 4711 components: - - pos: -23.5,-5.5 + - type: Transform + pos: -23.5,-5.5 parent: 31 - type: Transform - uid: 4712 components: - - pos: -24.5,-6.5 + - type: Transform + pos: -24.5,-6.5 parent: 31 - type: Transform - uid: 4713 components: - - pos: -24.5,-5.5 + - type: Transform + pos: -24.5,-5.5 parent: 31 - type: Transform - uid: 4787 components: - - pos: 9.5,-28.5 + - type: Transform + pos: 9.5,-28.5 parent: 31 - type: Transform - uid: 5003 components: - - pos: -23.5,-2.5 + - type: Transform + pos: -23.5,-2.5 parent: 31 - type: Transform - uid: 5119 components: - - pos: 6.5,24.5 + - type: Transform + pos: 6.5,24.5 parent: 31 - type: Transform - uid: 5220 components: - - pos: -0.5,13.5 + - type: Transform + pos: -0.5,13.5 parent: 31 - type: Transform - uid: 5635 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 31 - type: Transform - uid: 7146 components: - - pos: 7.5,24.5 + - type: Transform + pos: 7.5,24.5 parent: 31 - type: Transform - uid: 7158 components: - - pos: 8.5,18.5 + - type: Transform + pos: 8.5,18.5 parent: 31 - type: Transform - uid: 7164 components: - - pos: 12.5,-31.5 + - type: Transform + pos: 12.5,-31.5 parent: 31 - type: Transform - uid: 7322 components: - - pos: 11.5,-31.5 + - type: Transform + pos: 11.5,-31.5 parent: 31 - type: Transform - uid: 7462 components: - - pos: -29.5,17.5 + - type: Transform + pos: -29.5,17.5 parent: 31 - type: Transform - uid: 7849 components: - - pos: 26.5,-25.5 + - type: Transform + pos: 26.5,-25.5 parent: 31 - type: Transform - uid: 7850 components: - - pos: 27.5,-25.5 + - type: Transform + pos: 27.5,-25.5 parent: 31 - type: Transform - uid: 8708 components: - - pos: -35.5,-25.5 + - type: Transform + pos: -35.5,-25.5 parent: 31 - type: Transform - uid: 8746 components: - - pos: -35.5,-24.5 + - type: Transform + pos: -35.5,-24.5 parent: 31 - type: Transform - uid: 9043 components: - - pos: 7.5,19.5 + - type: Transform + pos: 7.5,19.5 parent: 31 - type: Transform - uid: 9371 components: - - pos: -23.5,-21.5 + - type: Transform + pos: -23.5,-21.5 parent: 31 - type: Transform - uid: 9430 components: - - pos: -16.5,-39.5 + - type: Transform + pos: -16.5,-39.5 parent: 31 - type: Transform - uid: 9431 components: - - pos: -15.5,-39.5 + - type: Transform + pos: -15.5,-39.5 parent: 31 - type: Transform - uid: 9432 components: - - pos: -14.5,-39.5 + - type: Transform + pos: -14.5,-39.5 parent: 31 - type: Transform - uid: 9433 components: - - pos: -16.5,-38.5 + - type: Transform + pos: -16.5,-38.5 parent: 31 - type: Transform - uid: 9663 components: - - pos: -4.5,-41.5 + - type: Transform + pos: -4.5,-41.5 parent: 31 - type: Transform - uid: 9673 components: - - pos: -4.5,-42.5 + - type: Transform + pos: -4.5,-42.5 parent: 31 - type: Transform - uid: 9984 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 31 - type: Transform - uid: 10374 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-3.5 parent: 31 - type: Transform - uid: 10395 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-19.5 parent: 31 - type: Transform - uid: 10416 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-4.5 parent: 31 - type: Transform - uid: 10478 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -31.5,17.5 parent: 31 - type: Transform - uid: 10618 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 43.5,-10.5 parent: 31 - type: Transform - uid: 10619 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 42.5,-10.5 parent: 31 - type: Transform - proto: TegCenter entities: - uid: 9078 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 38.5,14.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: TegCirculator entities: - uid: 1483 components: - - pos: 39.5,14.5 + - type: Transform + pos: 39.5,14.5 parent: 31 - type: Transform - - color: '#FF3300FF' - type: PointLight + - type: PointLight + color: '#FF3300FF' - uid: 1914 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 37.5,14.5 parent: 31 - type: Transform - - color: '#FF3300FF' - type: PointLight + - type: PointLight + color: '#FF3300FF' - proto: TelecomServer entities: - uid: 3371 components: - - pos: 57.5,-8.5 + - type: Transform + pos: 57.5,-8.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: key_slots: !type:Container showEnts: False occludes: True @@ -61436,13 +61582,13 @@ entities: showEnts: False occludes: True ents: [] - type: ContainerContainer - uid: 4590 components: - - pos: 51.5,-11.5 + - type: Transform + pos: 51.5,-11.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: key_slots: !type:Container showEnts: False occludes: True @@ -61456,13 +61602,13 @@ entities: showEnts: False occludes: True ents: [] - type: ContainerContainer - uid: 8120 components: - - pos: 49.5,-11.5 + - type: Transform + pos: 49.5,-11.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: key_slots: !type:Container showEnts: False occludes: True @@ -61476,13 +61622,13 @@ entities: showEnts: False occludes: True ents: [] - type: ContainerContainer - uid: 8163 components: - - pos: 57.5,-10.5 + - type: Transform + pos: 57.5,-10.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: key_slots: !type:Container showEnts: False occludes: True @@ -61496,13 +61642,13 @@ entities: showEnts: False occludes: True ents: [] - type: ContainerContainer - uid: 9065 components: - - pos: 49.5,-9.5 + - type: Transform + pos: 49.5,-9.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: key_slots: !type:Container showEnts: False occludes: True @@ -61516,13 +61662,13 @@ entities: showEnts: False occludes: True ents: [] - type: ContainerContainer - uid: 9096 components: - - pos: 51.5,-7.5 + - type: Transform + pos: 51.5,-7.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: key_slots: !type:Container showEnts: False occludes: True @@ -61536,13 +61682,13 @@ entities: showEnts: False occludes: True ents: [] - type: ContainerContainer - uid: 9179 components: - - pos: 51.5,-9.5 + - type: Transform + pos: 51.5,-9.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: key_slots: !type:Container showEnts: False occludes: True @@ -61556,13 +61702,13 @@ entities: showEnts: False occludes: True ents: [] - type: ContainerContainer - uid: 10232 components: - - pos: 49.5,-7.5 + - type: Transform + pos: 49.5,-7.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: key_slots: !type:Container showEnts: False occludes: True @@ -61576,11931 +61722,11987 @@ entities: showEnts: False occludes: True ents: [] - type: ContainerContainer - proto: TelecomServerCircuitboard entities: - uid: 10887 components: - - pos: 49.546635,-5.3898478 + - type: Transform + pos: 49.546635,-5.3898478 parent: 31 - type: Transform - proto: TintedWindow entities: - uid: 1444 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,2.5 parent: 31 - type: Transform - uid: 1445 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -29.5,2.5 parent: 31 - type: Transform - proto: ToiletEmpty entities: - uid: 793 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,26.5 parent: 31 - type: Transform - proto: ToolboxArtistic entities: - uid: 10816 components: - - pos: -31.033598,-32.18022 + - type: Transform + pos: -31.033598,-32.18022 parent: 31 - type: Transform - proto: ToolboxElectricalFilled entities: - uid: 12 components: - - pos: -29.499815,8.100836 + - type: Transform + pos: -29.499815,8.100836 parent: 31 - type: Transform - uid: 3947 components: - - pos: 9.510484,28.980497 + - type: Transform + pos: 9.510484,28.980497 parent: 31 - type: Transform - uid: 4290 components: - - pos: 32.484333,-2.403047 + - type: Transform + pos: 32.484333,-2.403047 parent: 31 - type: Transform - uid: 7082 components: - - pos: -17.514227,-20.273457 + - type: Transform + pos: -17.514227,-20.273457 parent: 31 - type: Transform - uid: 8892 components: - - pos: 45.501183,1.6234736 + - type: Transform + pos: 45.501183,1.6234736 parent: 31 - type: Transform - proto: ToolboxEmergencyFilled entities: - uid: 1054 components: - - pos: 9.510484,28.589872 + - type: Transform + pos: 9.510484,28.589872 parent: 31 - type: Transform - uid: 11129 components: - - pos: -5.51474,29.649992 + - type: Transform + pos: -5.51474,29.649992 parent: 31 - type: Transform - proto: ToolboxGoldFilled entities: - uid: 4194 components: - - pos: -2.63186,18.64349 + - type: Transform + pos: -2.63186,18.64349 parent: 31 - type: Transform - proto: ToolboxMechanical entities: - uid: 7121 components: - - pos: 42.508034,13.767397 + - type: Transform + pos: 42.508034,13.767397 parent: 31 - type: Transform - proto: ToolboxMechanicalFilled entities: - uid: 7115 components: - - pos: 6.4733424,10.140543 + - type: Transform + pos: 6.4733424,10.140543 parent: 31 - type: Transform - uid: 8891 components: - - pos: 45.500927,1.5450401 + - type: Transform + pos: 45.500927,1.5450401 parent: 31 - type: Transform - uid: 9614 components: - - pos: -1.6376766,-24.526524 + - type: Transform + pos: -1.6376766,-24.526524 parent: 31 - type: Transform - proto: ToyAi entities: - uid: 10982 components: - - pos: 60.558807,-5.3215933 + - type: Transform + pos: 60.558807,-5.3215933 parent: 31 - type: Transform - proto: ToyAmongPequeno entities: - uid: 9685 components: - - pos: 29.13865,-15.849083 + - type: Transform + pos: 29.13865,-15.849083 parent: 31 - type: Transform - proto: ToyDeathRipley entities: - uid: 2030 components: - - pos: -24.569178,-5.0530295 + - type: Transform + pos: -24.569178,-5.0530295 parent: 31 - type: Transform - proto: ToyFireRipley entities: - uid: 2029 components: - - pos: -23.412928,-6.0686545 + - type: Transform + pos: -23.412928,-6.0686545 parent: 31 - type: Transform - proto: ToyMouse entities: - uid: 7297 components: - - pos: 12.359465,-27.5578 + - type: Transform + pos: 12.359465,-27.5578 parent: 31 - type: Transform - proto: ToyRubberDuck entities: - uid: 67 components: - - pos: 12.492016,27.532398 + - type: Transform + pos: 12.492016,27.532398 parent: 31 - type: Transform - proto: ToySpawner entities: - uid: 148 components: - - pos: -30.5,-2.5 + - type: Transform + pos: -30.5,-2.5 parent: 31 - type: Transform - uid: 521 components: - - pos: -31.5,16.5 + - type: Transform + pos: -31.5,16.5 parent: 31 - type: Transform - uid: 7790 components: - - pos: -30.5,13.5 + - type: Transform + pos: -30.5,13.5 parent: 31 - type: Transform - proto: TrainingBomb entities: - uid: 631 components: - - pos: -13.5,20.5 + - type: Transform + pos: -13.5,20.5 parent: 31 - type: Transform - proto: TrashBag entities: - uid: 8951 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -18.528688,-10.596653 parent: 31 - type: Transform - proto: TrashBananaPeel entities: - uid: 7351 components: - - pos: -19.590536,-8.611897 + - type: Transform + pos: -19.590536,-8.611897 parent: 31 - type: Transform - uid: 8267 components: - - pos: 38.48186,-17.514906 + - type: Transform + pos: 38.48186,-17.514906 parent: 31 - type: Transform - proto: trayScanner entities: - uid: 8901 components: - - pos: 48.60447,5.4525433 + - type: Transform + pos: 48.60447,5.4525433 parent: 31 - type: Transform - proto: UnfinishedMachineFrame entities: - uid: 7105 components: - - pos: 10.5,-15.5 + - type: Transform + pos: 10.5,-15.5 parent: 31 - type: Transform - proto: UniformPrinter entities: - uid: 8408 components: - - pos: 8.5,21.5 + - type: Transform + pos: 8.5,21.5 parent: 31 - type: Transform - - materialWhiteList: + - type: MaterialStorage + materialWhiteList: - Cloth - Durathread - type: MaterialStorage - proto: Vaccinator entities: - uid: 8436 components: - - pos: 19.5,-4.5 + - type: Transform + pos: 19.5,-4.5 parent: 31 - type: Transform - proto: VehicleKeySecway entities: - uid: 5653 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.550658,14.232061 parent: 31 - type: Transform - proto: VendingBarDrobe entities: - uid: 2420 components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-6.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -12.5,-6.5 parent: 31 - type: Transform - proto: VendingMachineAtmosDrobe entities: - uid: 6341 components: - - flags: SessionSpecific - type: MetaData - - pos: 44.5,13.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 44.5,13.5 parent: 31 - type: Transform - proto: VendingMachineBooze entities: - uid: 970 components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-6.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -6.5,-6.5 parent: 31 - type: Transform - proto: VendingMachineCargoDrobe entities: - uid: 7130 components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,12.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 12.5,12.5 parent: 31 - type: Transform - proto: VendingMachineCart entities: - uid: 153 components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,21.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 10.5,21.5 parent: 31 - type: Transform - proto: VendingMachineChang entities: - uid: 792 components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,10.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -34.5,10.5 parent: 31 - type: Transform - uid: 9145 components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-17.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 5.5,-17.5 parent: 31 - type: Transform - proto: VendingMachineChapel entities: - uid: 4887 components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,19.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -37.5,19.5 parent: 31 - type: Transform - proto: VendingMachineChefDrobe entities: - uid: 3986 components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,-3.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -13.5,-3.5 parent: 31 - type: Transform - proto: VendingMachineChefvend entities: - uid: 911 components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,-3.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -9.5,-3.5 parent: 31 - type: Transform - proto: VendingMachineChemDrobe entities: - uid: 578 components: - - flags: SessionSpecific - type: MetaData - - pos: 17.5,1.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 17.5,1.5 parent: 31 - type: Transform - proto: VendingMachineChemicals entities: - uid: 1099 components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-1.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 14.5,-1.5 parent: 31 - type: Transform - proto: VendingMachineCigs entities: - uid: 473 components: - - flags: SessionSpecific + - type: MetaData + flags: SessionSpecific name: cigarette machine - type: MetaData - - pos: 14.5,21.5 + - type: Transform + pos: 14.5,21.5 parent: 31 - type: Transform - uid: 2877 components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-22.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 0.5,-22.5 parent: 31 - type: Transform - uid: 5090 components: - - pos: -2.5,1.5 + - type: Transform + pos: -2.5,1.5 parent: 31 - type: Transform - uid: 8705 components: - - flags: SessionSpecific + - type: MetaData + flags: SessionSpecific name: cigarette machine - type: MetaData - - pos: -32.5,-29.5 + - type: Transform + pos: -32.5,-29.5 parent: 31 - type: Transform - proto: VendingMachineClothing entities: - uid: 7647 components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,-7.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -29.5,-7.5 parent: 31 - type: Transform - proto: VendingMachineCoffee entities: - uid: 983 components: - - flags: SessionSpecific + - type: MetaData + flags: SessionSpecific name: Hot drinks machine - type: MetaData - - pos: 0.5,23.5 + - type: Transform + pos: 0.5,23.5 parent: 31 - type: Transform - uid: 2362 components: - - flags: SessionSpecific + - type: MetaData + flags: SessionSpecific name: Hot drinks machine - type: MetaData - - pos: 5.5,-13.5 + - type: Transform + pos: 5.5,-13.5 parent: 31 - type: Transform - uid: 8738 components: - - flags: SessionSpecific + - type: MetaData + flags: SessionSpecific name: Hot drinks machine - type: MetaData - - pos: -36.5,-23.5 + - type: Transform + pos: -36.5,-23.5 parent: 31 - type: Transform - uid: 9039 components: - - flags: SessionSpecific + - type: MetaData + flags: SessionSpecific name: Hot drinks machine - type: MetaData - - pos: 35.5,6.5 + - type: Transform + pos: 35.5,6.5 parent: 31 - type: Transform - uid: 9328 components: - - flags: SessionSpecific + - type: MetaData + flags: SessionSpecific name: Hot drinks machine - type: MetaData - - pos: -38.5,-5.5 + - type: Transform + pos: -38.5,-5.5 parent: 31 - type: Transform - proto: VendingMachineCola entities: - uid: 984 components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,21.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 1.5,21.5 parent: 31 - type: Transform - uid: 1229 components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,2.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -34.5,2.5 parent: 31 - type: Transform - uid: 7958 components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,6.5 - parent: 31 - type: Transform - - uid: 9327 - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,-4.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 25.5,6.5 parent: 31 - type: Transform - proto: VendingMachineDinnerware entities: - uid: 990 components: - - flags: SessionSpecific + - type: MetaData + flags: SessionSpecific name: Dinnerware - type: MetaData - - pos: -13.5,1.5 + - type: Transform + pos: -13.5,1.5 parent: 31 - type: Transform - proto: VendingMachineEngiDrobe entities: - uid: 3283 components: - - flags: SessionSpecific - type: MetaData - - pos: 35.5,0.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 35.5,0.5 parent: 31 - type: Transform - proto: VendingMachineEngivend entities: - uid: 1256 components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,-0.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 31.5,-0.5 parent: 31 - type: Transform - proto: VendingMachineGames entities: - uid: 6696 components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-16.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 5.5,-16.5 parent: 31 - type: Transform - proto: VendingMachineGeneDrobe entities: - uid: 7343 components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,-13.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 8.5,-13.5 parent: 31 - type: Transform - proto: VendingMachineHappyHonk entities: - uid: 4174 components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,-4.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -9.5,-4.5 parent: 31 - type: Transform - proto: VendingMachineHydrobe entities: - uid: 4126 components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-6.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -14.5,-6.5 parent: 31 - type: Transform - proto: VendingMachineJaniDrobe entities: - uid: 2007 components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,-10.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -19.5,-10.5 parent: 31 - type: Transform - proto: VendingMachineMedical entities: - uid: 1148 components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-11.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 14.5,-11.5 parent: 31 - type: Transform - uid: 7277 components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-7.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 12.5,-7.5 parent: 31 - type: Transform - proto: VendingMachineMediDrobe entities: - uid: 1143 components: - - flags: SessionSpecific - type: MetaData - - pos: 24.5,-4.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 24.5,-4.5 parent: 31 - type: Transform - proto: VendingMachineNutri entities: - uid: 7436 components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,-8.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -15.5,-8.5 parent: 31 - type: Transform - proto: VendingMachineRestockBooze entities: - uid: 10691 components: - - pos: 40.339584,-6.2153544 + - type: Transform + pos: 40.339584,-6.2153544 parent: 31 - type: Transform - proto: VendingMachineRoboDrobe entities: - uid: 1482 components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-25.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -3.5,-25.5 parent: 31 - type: Transform - proto: VendingMachineRobotics entities: - uid: 9607 components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-24.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 0.5,-24.5 parent: 31 - type: Transform - proto: VendingMachineSalvage entities: - uid: 6858 components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,17.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 29.5,17.5 parent: 31 - type: Transform - proto: VendingMachineSciDrobe entities: - uid: 1312 components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-23.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -8.5,-23.5 parent: 31 - type: Transform - proto: VendingMachineSec entities: - uid: 7834 components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,13.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -15.5,13.5 parent: 31 - type: Transform - proto: VendingMachineSecDrobe entities: - uid: 474 components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,17.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -9.5,17.5 parent: 31 - type: Transform - proto: VendingMachineSeeds entities: - uid: 4127 components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,-2.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -17.5,-2.5 parent: 31 - type: Transform - proto: VendingMachineSeedsUnlocked entities: - uid: 5632 components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,9.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -19.5,9.5 parent: 31 - type: Transform - proto: VendingMachineSnack entities: - uid: 133 components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,0.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -22.5,0.5 parent: 31 - type: Transform - uid: 7959 components: - - flags: SessionSpecific - type: MetaData - - pos: 26.5,6.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 26.5,6.5 parent: 31 - type: Transform - proto: VendingMachineSovietSoda entities: - uid: 7561 components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,-9.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -11.5,-9.5 parent: 31 - type: Transform - uid: 9574 components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-24.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 19.5,-24.5 parent: 31 - type: Transform - proto: VendingMachineSustenance entities: - uid: 7377 components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,11.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -17.5,11.5 parent: 31 - type: Transform - proto: VendingMachineTankDispenserEngineering entities: - uid: 3946 components: - - pos: 57.5,5.5 + - type: Transform + pos: 57.5,5.5 parent: 31 - type: Transform - proto: VendingMachineTankDispenserEVA entities: - uid: 9080 components: - - flags: SessionSpecific - type: MetaData - - pos: 30.5,19.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 30.5,19.5 parent: 31 - type: Transform - uid: 9135 components: - - flags: SessionSpecific + - type: MetaData + flags: SessionSpecific name: tank dispenser - type: MetaData - - pos: 8.5,8.5 + - type: Transform + pos: 8.5,8.5 parent: 31 - type: Transform - uid: 9137 components: - - flags: SessionSpecific + - type: MetaData + flags: SessionSpecific name: tank dispenser - type: MetaData - - pos: 37.5,11.5 + - type: Transform + pos: 37.5,11.5 parent: 31 - type: Transform - proto: VendingMachineTheater entities: - uid: 5712 components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,-4.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -19.5,-4.5 parent: 31 - type: Transform - proto: VendingMachineVendomat entities: - uid: 1227 components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,11.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -27.5,11.5 parent: 31 - type: Transform - uid: 10323 components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,-14.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -15.5,-14.5 parent: 31 - type: Transform - proto: VendingMachineViroDrobe entities: - uid: 2910 components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-4.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 23.5,-4.5 parent: 31 - type: Transform - proto: VendingMachineWinter entities: - uid: 8281 components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,-7.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -30.5,-7.5 parent: 31 - type: Transform - proto: VendingMachineYouTool entities: - uid: 194 components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,11.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: -28.5,11.5 parent: 31 - type: Transform - uid: 1521 components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,0.5 + - type: MetaData + flags: SessionSpecific + - type: Transform + pos: 31.5,0.5 parent: 31 - type: Transform - proto: WallmountTelescreen entities: - uid: 8846 components: - - pos: -8.5,23.5 + - type: Transform + pos: -8.5,23.5 parent: 31 - type: Transform - uid: 9024 components: - - pos: -0.5,9.5 + - type: Transform + pos: -0.5,9.5 parent: 31 - type: Transform - uid: 9512 components: - - pos: 11.5,25.5 + - type: Transform + pos: 11.5,25.5 parent: 31 - type: Transform - proto: WallReinforced entities: - uid: 34 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-0.5 parent: 31 - type: Transform - uid: 38 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,22.5 parent: 31 - type: Transform - uid: 50 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,23.5 parent: 31 - type: Transform - uid: 54 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-19.5 parent: 31 - type: Transform - uid: 59 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,20.5 parent: 31 - type: Transform - uid: 70 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-20.5 parent: 31 - type: Transform - uid: 74 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,23.5 parent: 31 - type: Transform - uid: 83 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,2.5 parent: 31 - type: Transform - uid: 84 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,13.5 parent: 31 - type: Transform - uid: 89 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-14.5 parent: 31 - type: Transform - uid: 105 components: - - flags: PvsPriority - type: MetaData - - pos: -32.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-18.5 parent: 31 - type: Transform - uid: 121 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,26.5 parent: 31 - type: Transform - uid: 122 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,26.5 parent: 31 - type: Transform - uid: 147 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,26.5 parent: 31 - type: Transform - uid: 163 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-1.5 parent: 31 - type: Transform - uid: 185 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-28.5 parent: 31 - type: Transform - uid: 219 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,6.5 parent: 31 - type: Transform - uid: 247 components: - - flags: PvsPriority - type: MetaData - - pos: 21.5,-14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-14.5 parent: 31 - type: Transform - uid: 250 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,13.5 parent: 31 - type: Transform - uid: 253 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-21.5 parent: 31 - type: Transform - uid: 305 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,11.5 parent: 31 - type: Transform - uid: 306 components: - - flags: PvsPriority - type: MetaData - - pos: 40.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,1.5 parent: 31 - type: Transform - uid: 447 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,20.5 parent: 31 - type: Transform - uid: 449 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,23.5 parent: 31 - type: Transform - uid: 497 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,21.5 parent: 31 - type: Transform - uid: 498 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,20.5 parent: 31 - type: Transform - uid: 556 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,27.5 parent: 31 - type: Transform - uid: 623 components: - - flags: PvsPriority - type: MetaData - - pos: -32.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-20.5 parent: 31 - type: Transform - uid: 628 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,1.5 parent: 31 - type: Transform - uid: 633 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 46.5,-14.5 parent: 31 - type: Transform - uid: 643 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,1.5 parent: 31 - type: Transform - uid: 690 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-16.5 parent: 31 - type: Transform - uid: 691 components: - - flags: PvsPriority - type: MetaData - - pos: 33.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-16.5 parent: 31 - type: Transform - uid: 698 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,11.5 parent: 31 - type: Transform - uid: 701 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-28.5 parent: 31 - type: Transform - uid: 706 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-32.5 parent: 31 - type: Transform - uid: 707 components: - - flags: PvsPriority - type: MetaData - - pos: 19.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-26.5 parent: 31 - type: Transform - uid: 708 components: - - flags: PvsPriority - type: MetaData - - pos: 18.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-26.5 parent: 31 - type: Transform - uid: 709 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-26.5 parent: 31 - type: Transform - uid: 723 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-20.5 parent: 31 - type: Transform - uid: 730 components: - - flags: PvsPriority - type: MetaData - - pos: -40.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,-0.5 parent: 31 - type: Transform - uid: 737 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-24.5 parent: 31 - type: Transform - uid: 745 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 46.5,-12.5 parent: 31 - type: Transform - uid: 752 components: - - flags: PvsPriority - type: MetaData - - pos: -44.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,11.5 parent: 31 - type: Transform - uid: 779 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,23.5 parent: 31 - type: Transform - uid: 781 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,21.5 parent: 31 - type: Transform - uid: 787 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,22.5 parent: 31 - type: Transform - uid: 809 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-21.5 parent: 31 - type: Transform - uid: 825 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,8.5 parent: 31 - type: Transform - uid: 830 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 54.5,9.5 parent: 31 - type: Transform - uid: 853 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,-3.5 parent: 31 - type: Transform - uid: 854 components: - - flags: PvsPriority - type: MetaData - - pos: 56.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 56.5,-6.5 parent: 31 - type: Transform - uid: 859 components: - - flags: PvsPriority - type: MetaData - - pos: 50.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,-1.5 parent: 31 - type: Transform - uid: 860 components: - - flags: PvsPriority - type: MetaData - - pos: 48.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 48.5,-1.5 parent: 31 - type: Transform - uid: 861 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-26.5 parent: 31 - type: Transform - uid: 865 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-19.5 parent: 31 - type: Transform - uid: 868 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,-1.5 parent: 31 - type: Transform - uid: 869 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,-1.5 parent: 31 - type: Transform - uid: 876 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,-12.5 parent: 31 - type: Transform - uid: 880 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,-6.5 parent: 31 - type: Transform - uid: 881 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,-7.5 parent: 31 - type: Transform - uid: 882 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,-6.5 parent: 31 - type: Transform - uid: 883 components: - - flags: PvsPriority - type: MetaData - - pos: 53.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 53.5,-12.5 parent: 31 - type: Transform - uid: 950 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-16.5 parent: 31 - type: Transform - uid: 951 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-16.5 parent: 31 - type: Transform - uid: 956 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,21.5 parent: 31 - type: Transform - uid: 958 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-16.5 parent: 31 - type: Transform - uid: 975 components: - - flags: PvsPriority - type: MetaData - - pos: -37.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,20.5 parent: 31 - type: Transform - uid: 1035 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,22.5 parent: 31 - type: Transform - uid: 1036 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-11.5 parent: 31 - type: Transform - uid: 1072 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,4.5 parent: 31 - type: Transform - uid: 1073 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,5.5 parent: 31 - type: Transform - uid: 1074 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,-0.5 parent: 31 - type: Transform - uid: 1075 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,-0.5 parent: 31 - type: Transform - uid: 1076 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,0.5 parent: 31 - type: Transform - uid: 1077 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,0.5 parent: 31 - type: Transform - uid: 1085 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-28.5 parent: 31 - type: Transform - uid: 1098 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,0.5 parent: 31 - type: Transform - uid: 1100 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,9.5 parent: 31 - type: Transform - uid: 1120 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-11.5 parent: 31 - type: Transform - uid: 1147 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-28.5 parent: 31 - type: Transform - uid: 1150 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,18.5 parent: 31 - type: Transform - uid: 1152 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,22.5 parent: 31 - type: Transform - uid: 1163 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,2.5 parent: 31 - type: Transform - uid: 1168 components: - - flags: PvsPriority - type: MetaData - - pos: 15.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,2.5 parent: 31 - type: Transform - uid: 1169 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,0.5 parent: 31 - type: Transform - uid: 1182 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,19.5 parent: 31 - type: Transform - uid: 1184 components: - - flags: PvsPriority - type: MetaData - - pos: 44.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,0.5 parent: 31 - type: Transform - uid: 1195 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-11.5 parent: 31 - type: Transform - uid: 1232 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,24.5 parent: 31 - type: Transform - uid: 1257 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,2.5 parent: 31 - type: Transform - uid: 1269 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,11.5 parent: 31 - type: Transform - uid: 1270 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-2.5 parent: 31 - type: Transform - uid: 1277 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,22.5 parent: 31 - type: Transform - uid: 1290 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,16.5 parent: 31 - type: Transform - uid: 1296 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,18.5 parent: 31 - type: Transform - uid: 1317 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-1.5 parent: 31 - type: Transform - uid: 1348 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,15.5 parent: 31 - type: Transform - uid: 1377 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,5.5 parent: 31 - type: Transform - uid: 1393 components: - - flags: PvsPriority - type: MetaData - - pos: 9.5,32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,32.5 parent: 31 - type: Transform - uid: 1408 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,33.5 parent: 31 - type: Transform - uid: 1413 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,28.5 parent: 31 - type: Transform - uid: 1415 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,9.5 parent: 31 - type: Transform - uid: 1502 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,2.5 parent: 31 - type: Transform - uid: 1503 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,2.5 parent: 31 - type: Transform - uid: 1504 components: - - flags: PvsPriority - type: MetaData - - pos: 18.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,2.5 parent: 31 - type: Transform - uid: 1545 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,7.5 parent: 31 - type: Transform - uid: 1546 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,7.5 parent: 31 - type: Transform - uid: 1557 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-26.5 parent: 31 - type: Transform - uid: 1559 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,21.5 parent: 31 - type: Transform - uid: 1560 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,22.5 parent: 31 - type: Transform - uid: 1564 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,23.5 parent: 31 - type: Transform - uid: 1565 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,20.5 parent: 31 - type: Transform - uid: 1566 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,24.5 parent: 31 - type: Transform - uid: 1567 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,24.5 parent: 31 - type: Transform - uid: 1568 components: - - flags: PvsPriority - type: MetaData - - pos: 38.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,24.5 parent: 31 - type: Transform - uid: 1574 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,1.5 parent: 31 - type: Transform - uid: 1583 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,22.5 parent: 31 - type: Transform - uid: 1584 components: - - flags: PvsPriority - type: MetaData - - pos: 19.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,22.5 parent: 31 - type: Transform - uid: 1586 components: - - flags: PvsPriority - type: MetaData - - pos: 19.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,19.5 parent: 31 - type: Transform - uid: 1600 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,1.5 parent: 31 - type: Transform - uid: 1610 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,7.5 parent: 31 - type: Transform - uid: 1611 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,7.5 parent: 31 - type: Transform - uid: 1616 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-1.5 parent: 31 - type: Transform - uid: 1617 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-2.5 parent: 31 - type: Transform - uid: 1618 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-2.5 parent: 31 - type: Transform - uid: 1619 components: - - flags: PvsPriority - type: MetaData - - pos: 38.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-2.5 parent: 31 - type: Transform - uid: 1620 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-2.5 parent: 31 - type: Transform - uid: 1622 components: - - flags: PvsPriority - type: MetaData - - pos: 40.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,-2.5 parent: 31 - type: Transform - uid: 1625 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,0.5 parent: 31 - type: Transform - uid: 1626 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,1.5 parent: 31 - type: Transform - uid: 1627 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,0.5 parent: 31 - type: Transform - uid: 1628 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,1.5 parent: 31 - type: Transform - uid: 1632 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-1.5 parent: 31 - type: Transform - uid: 1633 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-2.5 parent: 31 - type: Transform - uid: 1635 components: - - flags: PvsPriority - type: MetaData - - pos: 21.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-26.5 parent: 31 - type: Transform - uid: 1636 components: - - flags: PvsPriority - type: MetaData - - pos: 22.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-26.5 parent: 31 - type: Transform - uid: 1642 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-26.5 parent: 31 - type: Transform - uid: 1648 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-15.5 parent: 31 - type: Transform - uid: 1649 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-15.5 parent: 31 - type: Transform - uid: 1650 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-16.5 parent: 31 - type: Transform - uid: 1651 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-11.5 parent: 31 - type: Transform - uid: 1656 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,26.5 parent: 31 - type: Transform - uid: 1658 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-12.5 parent: 31 - type: Transform - uid: 1661 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,26.5 parent: 31 - type: Transform - uid: 1664 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,26.5 parent: 31 - type: Transform - uid: 1667 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-13.5 parent: 31 - type: Transform - uid: 1680 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,26.5 parent: 31 - type: Transform - uid: 1681 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-12.5 parent: 31 - type: Transform - uid: 1687 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,0.5 parent: 31 - type: Transform - uid: 1691 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,12.5 - parent: 31 - type: Transform + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,12.5 + parent: 31 - uid: 1699 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,26.5 parent: 31 - type: Transform - uid: 1712 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,7.5 parent: 31 - type: Transform - uid: 1713 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,7.5 parent: 31 - type: Transform - uid: 1717 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,6.5 parent: 31 - type: Transform - uid: 1718 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-3.5 parent: 31 - type: Transform - uid: 1719 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-4.5 parent: 31 - type: Transform - uid: 1745 components: - - flags: PvsPriority - type: MetaData - - pos: 27.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,11.5 parent: 31 - type: Transform - uid: 1746 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,7.5 parent: 31 - type: Transform - uid: 1747 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,8.5 parent: 31 - type: Transform - uid: 1749 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,7.5 parent: 31 - type: Transform - uid: 1750 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,7.5 parent: 31 - type: Transform - uid: 1751 components: - - flags: PvsPriority - type: MetaData - - pos: 27.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,7.5 parent: 31 - type: Transform - uid: 1776 components: - - flags: PvsPriority - type: MetaData - - pos: -40.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,11.5 parent: 31 - type: Transform - uid: 1783 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,12.5 parent: 31 - type: Transform - uid: 1785 components: - - flags: PvsPriority - type: MetaData - - pos: 9.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,12.5 parent: 31 - type: Transform - uid: 1786 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,12.5 parent: 31 - type: Transform - uid: 1787 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,12.5 parent: 31 - type: Transform - uid: 1788 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,12.5 parent: 31 - type: Transform - uid: 1789 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,11.5 parent: 31 - type: Transform - uid: 1790 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,10.5 parent: 31 - type: Transform - uid: 1791 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,9.5 parent: 31 - type: Transform - uid: 1792 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,8.5 parent: 31 - type: Transform - uid: 1793 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,7.5 parent: 31 - type: Transform - uid: 1794 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,6.5 parent: 31 - type: Transform - uid: 1795 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,6.5 parent: 31 - type: Transform - uid: 1797 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,10.5 parent: 31 - type: Transform - uid: 1798 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,9.5 parent: 31 - type: Transform - uid: 1799 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,8.5 parent: 31 - type: Transform - uid: 1800 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,7.5 parent: 31 - type: Transform - uid: 1801 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,6.5 parent: 31 - type: Transform - uid: 1802 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,6.5 parent: 31 - type: Transform - uid: 1805 components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,11.5 parent: 31 - type: Transform - uid: 1814 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,16.5 parent: 31 - type: Transform - uid: 1815 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,15.5 parent: 31 - type: Transform - uid: 1816 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,15.5 parent: 31 - type: Transform - uid: 1817 components: - - flags: PvsPriority - type: MetaData - - pos: 9.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,15.5 parent: 31 - type: Transform - uid: 1818 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,15.5 parent: 31 - type: Transform - uid: 1819 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,15.5 parent: 31 - type: Transform - uid: 1820 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,16.5 parent: 31 - type: Transform - uid: 1821 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,17.5 parent: 31 - type: Transform - uid: 1824 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,21.5 parent: 31 - type: Transform - uid: 1826 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,21.5 parent: 31 - type: Transform - uid: 1828 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,15.5 parent: 31 - type: Transform - uid: 1829 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,22.5 parent: 31 - type: Transform - uid: 1830 components: - - flags: PvsPriority - type: MetaData - - pos: 9.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,22.5 parent: 31 - type: Transform - uid: 1831 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,22.5 parent: 31 - type: Transform - uid: 1832 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,22.5 parent: 31 - type: Transform - uid: 1833 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,22.5 parent: 31 - type: Transform - uid: 1834 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,22.5 parent: 31 - type: Transform - uid: 1836 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,28.5 parent: 31 - type: Transform - uid: 1837 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,28.5 parent: 31 - type: Transform - uid: 1839 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,27.5 parent: 31 - type: Transform - uid: 1840 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,28.5 parent: 31 - type: Transform - uid: 1841 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,30.5 parent: 31 - type: Transform - uid: 1842 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,32.5 parent: 31 - type: Transform - uid: 1843 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,32.5 parent: 31 - type: Transform - uid: 1845 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,28.5 parent: 31 - type: Transform - uid: 1846 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,27.5 parent: 31 - type: Transform - uid: 1848 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,25.5 parent: 31 - type: Transform - uid: 1849 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,22.5 parent: 31 - type: Transform - uid: 1850 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,22.5 parent: 31 - type: Transform - uid: 1851 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,22.5 parent: 31 - type: Transform - uid: 1853 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,22.5 parent: 31 - type: Transform - uid: 1854 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,22.5 parent: 31 - type: Transform - uid: 1855 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,23.5 parent: 31 - type: Transform - uid: 1856 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,24.5 parent: 31 - type: Transform - uid: 1857 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,26.5 parent: 31 - type: Transform - uid: 1858 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,27.5 parent: 31 - type: Transform - uid: 1859 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,27.5 parent: 31 - type: Transform - uid: 1860 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,27.5 parent: 31 - type: Transform - uid: 1861 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,23.5 parent: 31 - type: Transform - uid: 1862 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,27.5 parent: 31 - type: Transform - uid: 1863 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,27.5 parent: 31 - type: Transform - uid: 1864 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,27.5 parent: 31 - type: Transform - uid: 1865 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,27.5 parent: 31 - type: Transform - uid: 1866 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,23.5 parent: 31 - type: Transform - uid: 1867 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,26.5 parent: 31 - type: Transform - uid: 1869 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,24.5 parent: 31 - type: Transform - uid: 1876 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,33.5 parent: 31 - type: Transform - uid: 1890 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,32.5 parent: 31 - type: Transform - uid: 1892 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,15.5 parent: 31 - type: Transform - uid: 1893 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,15.5 parent: 31 - type: Transform - uid: 1894 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,15.5 parent: 31 - type: Transform - uid: 1895 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,15.5 parent: 31 - type: Transform - uid: 1896 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,15.5 parent: 31 - type: Transform - uid: 1897 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,15.5 parent: 31 - type: Transform - uid: 1898 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,15.5 parent: 31 - type: Transform - uid: 1899 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,16.5 parent: 31 - type: Transform - uid: 1900 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,17.5 parent: 31 - type: Transform - uid: 1901 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,18.5 parent: 31 - type: Transform - uid: 1902 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,19.5 parent: 31 - type: Transform - uid: 1903 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,19.5 parent: 31 - type: Transform - uid: 1905 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,19.5 parent: 31 - type: Transform - uid: 1906 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,19.5 parent: 31 - type: Transform - uid: 1907 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,19.5 parent: 31 - type: Transform - uid: 1908 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,19.5 parent: 31 - type: Transform - uid: 1909 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,19.5 parent: 31 - type: Transform - uid: 1910 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,18.5 parent: 31 - type: Transform - uid: 1911 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,16.5 parent: 31 - type: Transform - uid: 1920 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,22.5 parent: 31 - type: Transform - uid: 1921 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,22.5 parent: 31 - type: Transform - uid: 1922 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,22.5 parent: 31 - type: Transform - uid: 1923 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,22.5 parent: 31 - type: Transform - uid: 1924 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,22.5 parent: 31 - type: Transform - uid: 1925 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,22.5 parent: 31 - type: Transform - uid: 1926 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,23.5 parent: 31 - type: Transform - uid: 1927 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,23.5 parent: 31 - type: Transform - uid: 1928 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,23.5 parent: 31 - type: Transform - uid: 1929 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,23.5 parent: 31 - type: Transform - uid: 1930 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,23.5 parent: 31 - type: Transform - uid: 1931 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,23.5 parent: 31 - type: Transform - uid: 1932 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,23.5 parent: 31 - type: Transform - uid: 1934 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,21.5 parent: 31 - type: Transform - uid: 1935 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,20.5 parent: 31 - type: Transform - uid: 1936 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,19.5 parent: 31 - type: Transform - uid: 1937 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,18.5 parent: 31 - type: Transform - uid: 1938 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,17.5 parent: 31 - type: Transform - uid: 1939 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,21.5 parent: 31 - type: Transform - uid: 1940 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,20.5 parent: 31 - type: Transform - uid: 1941 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,19.5 parent: 31 - type: Transform - uid: 1942 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,18.5 parent: 31 - type: Transform - uid: 1943 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,17.5 parent: 31 - type: Transform - uid: 1944 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,17.5 parent: 31 - type: Transform - uid: 1945 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,17.5 parent: 31 - type: Transform - uid: 1946 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,17.5 parent: 31 - type: Transform - uid: 1947 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,17.5 parent: 31 - type: Transform - uid: 1948 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,18.5 parent: 31 - type: Transform - uid: 1950 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,8.5 parent: 31 - type: Transform - uid: 1951 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,7.5 parent: 31 - type: Transform - uid: 1952 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,6.5 parent: 31 - type: Transform - uid: 1955 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,6.5 parent: 31 - type: Transform - uid: 1960 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,12.5 parent: 31 - type: Transform - uid: 1961 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,12.5 parent: 31 - type: Transform - uid: 1964 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,15.5 parent: 31 - type: Transform - uid: 1966 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,11.5 parent: 31 - type: Transform - uid: 1967 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,9.5 parent: 31 - type: Transform - uid: 1968 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,12.5 parent: 31 - type: Transform - uid: 1970 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,18.5 parent: 31 - type: Transform - uid: 1971 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,18.5 parent: 31 - type: Transform - uid: 1974 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,16.5 parent: 31 - type: Transform - uid: 1975 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,12.5 parent: 31 - type: Transform - uid: 1976 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,12.5 parent: 31 - type: Transform - uid: 1977 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,12.5 parent: 31 - type: Transform - uid: 1978 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,14.5 parent: 31 - type: Transform - uid: 1980 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,12.5 parent: 31 - type: Transform - uid: 1981 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,11.5 parent: 31 - type: Transform - uid: 1982 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,10.5 parent: 31 - type: Transform - uid: 1983 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,9.5 parent: 31 - type: Transform - uid: 1984 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,8.5 parent: 31 - type: Transform - uid: 1985 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,7.5 parent: 31 - type: Transform - uid: 1986 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,6.5 parent: 31 - type: Transform - uid: 1987 components: - - flags: PvsPriority - type: MetaData - - pos: -9.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,6.5 parent: 31 - type: Transform - uid: 1989 components: - - flags: PvsPriority - type: MetaData - - pos: -9.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,9.5 parent: 31 - type: Transform - uid: 1991 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,6.5 parent: 31 - type: Transform - uid: 1992 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,7.5 parent: 31 - type: Transform - uid: 1993 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,8.5 parent: 31 - type: Transform - uid: 1994 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,9.5 parent: 31 - type: Transform - uid: 2004 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,7.5 parent: 31 - type: Transform - uid: 2013 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-32.5 parent: 31 - type: Transform - uid: 2040 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-26.5 parent: 31 - type: Transform - uid: 2042 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-12.5 parent: 31 - type: Transform - uid: 2043 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-12.5 parent: 31 - type: Transform - uid: 2049 components: - - flags: PvsPriority - type: MetaData - - pos: 42.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 42.5,0.5 parent: 31 - type: Transform - uid: 2101 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-5.5 parent: 31 - type: Transform - uid: 2102 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-5.5 parent: 31 - type: Transform - uid: 2103 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-5.5 parent: 31 - type: Transform - uid: 2104 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-5.5 parent: 31 - type: Transform - uid: 2105 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,2.5 parent: 31 - type: Transform - uid: 2106 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,1.5 parent: 31 - type: Transform - uid: 2107 components: - - flags: PvsPriority - type: MetaData - - pos: 27.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-0.5 parent: 31 - type: Transform - uid: 2108 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,0.5 parent: 31 - type: Transform - uid: 2109 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-0.5 parent: 31 - type: Transform - uid: 2110 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-0.5 parent: 31 - type: Transform - uid: 2111 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-0.5 parent: 31 - type: Transform - uid: 2114 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,2.5 parent: 31 - type: Transform - uid: 2116 components: - - flags: PvsPriority - type: MetaData - - pos: 19.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,2.5 parent: 31 - type: Transform - uid: 2156 components: - - flags: PvsPriority - type: MetaData - - pos: 21.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-12.5 parent: 31 - type: Transform - uid: 2184 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-11.5 parent: 31 - type: Transform - uid: 2187 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-12.5 parent: 31 - type: Transform - uid: 2229 components: - - flags: PvsPriority - type: MetaData - - pos: 32.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-5.5 parent: 31 - type: Transform - uid: 2231 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-5.5 parent: 31 - type: Transform - uid: 2232 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-5.5 parent: 31 - type: Transform - uid: 2233 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-5.5 parent: 31 - type: Transform - uid: 2234 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-4.5 parent: 31 - type: Transform - uid: 2235 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-3.5 parent: 31 - type: Transform - uid: 2236 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,1.5 parent: 31 - type: Transform - uid: 2238 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,2.5 parent: 31 - type: Transform - uid: 2239 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,0.5 parent: 31 - type: Transform - uid: 2240 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-0.5 parent: 31 - type: Transform - uid: 2241 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-0.5 parent: 31 - type: Transform - uid: 2242 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-0.5 parent: 31 - type: Transform - uid: 2284 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-25.5 parent: 31 - type: Transform - uid: 2287 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-18.5 parent: 31 - type: Transform - uid: 2293 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-23.5 parent: 31 - type: Transform - uid: 2294 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-24.5 parent: 31 - type: Transform - uid: 2303 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-20.5 parent: 31 - type: Transform - uid: 2310 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-28.5 parent: 31 - type: Transform - uid: 2324 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,26.5 parent: 31 - type: Transform - uid: 2325 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,14.5 parent: 31 - type: Transform - uid: 2348 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-13.5 parent: 31 - type: Transform - uid: 2415 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,2.5 parent: 31 - type: Transform - uid: 2416 components: - - flags: PvsPriority - type: MetaData - - pos: 32.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,20.5 parent: 31 - type: Transform - uid: 2424 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-11.5 parent: 31 - type: Transform - uid: 2427 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,22.5 parent: 31 - type: Transform - uid: 2462 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 55.5,9.5 parent: 31 - type: Transform - uid: 2474 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,22.5 parent: 31 - type: Transform - uid: 2475 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,23.5 parent: 31 - type: Transform - uid: 2476 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,22.5 parent: 31 - type: Transform - uid: 2477 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,22.5 parent: 31 - type: Transform - uid: 2478 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,24.5 parent: 31 - type: Transform - uid: 2479 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,25.5 parent: 31 - type: Transform - uid: 2490 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,21.5 parent: 31 - type: Transform - uid: 2533 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,15.5 parent: 31 - type: Transform - uid: 2535 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,17.5 parent: 31 - type: Transform - uid: 2671 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,12.5 parent: 31 - type: Transform - uid: 2878 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-18.5 parent: 31 - type: Transform - uid: 3051 components: - - flags: PvsPriority - type: MetaData - - pos: 32.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,23.5 parent: 31 - type: Transform - uid: 3053 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,14.5 parent: 31 - type: Transform - uid: 3130 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,11.5 parent: 31 - type: Transform - uid: 3142 components: - - flags: PvsPriority - type: MetaData - - pos: 22.5,-15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-15.5 parent: 31 - type: Transform - uid: 3280 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,-2.5 parent: 31 - type: Transform - uid: 3304 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,23.5 parent: 31 - type: Transform - uid: 3314 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,11.5 parent: 31 - type: Transform - uid: 3480 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,15.5 parent: 31 - type: Transform - uid: 3535 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,20.5 parent: 31 - type: Transform - uid: 3537 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,22.5 parent: 31 - type: Transform - uid: 3538 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,24.5 parent: 31 - type: Transform - uid: 3565 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,11.5 parent: 31 - type: Transform - uid: 3627 components: - - flags: PvsPriority - type: MetaData - - pos: 9.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,27.5 parent: 31 - type: Transform - uid: 3655 components: - - flags: PvsPriority - type: MetaData - - pos: 59.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 59.5,8.5 parent: 31 - type: Transform - uid: 3675 components: - - flags: PvsPriority - type: MetaData - - pos: 48.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 48.5,14.5 parent: 31 - type: Transform - uid: 3833 components: - - flags: PvsPriority - type: MetaData - - pos: 21.5,-15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-15.5 parent: 31 - type: Transform - uid: 3854 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,8.5 parent: 31 - type: Transform - uid: 3858 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,7.5 parent: 31 - type: Transform - uid: 3884 components: - - flags: PvsPriority - type: MetaData - - pos: 15.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,22.5 parent: 31 - type: Transform - uid: 4079 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,20.5 parent: 31 - type: Transform - uid: 4154 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,-2.5 parent: 31 - type: Transform - uid: 4169 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-11.5 parent: 31 - type: Transform - uid: 4171 components: - - flags: PvsPriority - type: MetaData - - pos: 33.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-11.5 parent: 31 - type: Transform - uid: 4173 components: - - flags: PvsPriority - type: MetaData - - pos: 32.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-11.5 parent: 31 - type: Transform - uid: 4204 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-24.5 parent: 31 - type: Transform - uid: 4257 components: - - flags: PvsPriority - type: MetaData - - pos: 60.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 60.5,8.5 parent: 31 - type: Transform - uid: 4258 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,-1.5 parent: 31 - type: Transform - uid: 4265 components: - - flags: PvsPriority - type: MetaData - - pos: 49.5,14.5 - parent: 31 - type: Transform + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 49.5,14.5 + parent: 31 - uid: 4271 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,7.5 parent: 31 - type: Transform - uid: 4272 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,8.5 parent: 31 - type: Transform - uid: 4276 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,13.5 parent: 31 - type: Transform - uid: 4277 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,14.5 parent: 31 - type: Transform - uid: 4278 components: - - flags: PvsPriority - type: MetaData - - pos: 51.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 51.5,6.5 parent: 31 - type: Transform - uid: 4292 components: - - flags: PvsPriority - type: MetaData - - pos: 50.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,14.5 parent: 31 - type: Transform - uid: 4300 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,19.5 parent: 31 - type: Transform - uid: 4326 components: - - flags: PvsPriority - type: MetaData - - pos: 70.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 70.5,11.5 parent: 31 - type: Transform - uid: 4330 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-15.5 parent: 31 - type: Transform - uid: 4374 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,10.5 parent: 31 - type: Transform - uid: 4384 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-18.5 parent: 31 - type: Transform - uid: 4385 components: - - flags: PvsPriority - type: MetaData - - pos: 38.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-22.5 parent: 31 - type: Transform - uid: 4390 components: - - flags: PvsPriority - type: MetaData - - pos: 74.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 74.5,-6.5 parent: 31 - type: Transform - uid: 4392 components: - - flags: PvsPriority - type: MetaData - - pos: 73.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 73.5,-6.5 parent: 31 - type: Transform - uid: 4395 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,-2.5 parent: 31 - type: Transform - uid: 4396 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,-6.5 parent: 31 - type: Transform - uid: 4400 components: - - flags: PvsPriority - type: MetaData - - pos: 79.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 79.5,11.5 parent: 31 - type: Transform - uid: 4404 components: - - flags: PvsPriority - type: MetaData - - pos: 71.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 71.5,-6.5 parent: 31 - type: Transform - uid: 4406 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,-5.5 parent: 31 - type: Transform - uid: 4407 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,-12.5 parent: 31 - type: Transform - uid: 4408 components: - - flags: PvsPriority - type: MetaData - - pos: 52.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 52.5,-12.5 parent: 31 - type: Transform - uid: 4410 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,-11.5 parent: 31 - type: Transform - uid: 4414 components: - - flags: PvsPriority - type: MetaData - - pos: 65.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 65.5,-6.5 parent: 31 - type: Transform - uid: 4416 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,-6.5 parent: 31 - type: Transform - uid: 4417 components: - - flags: PvsPriority - type: MetaData - - pos: 63.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 63.5,-6.5 parent: 31 - type: Transform - uid: 4418 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,-10.5 parent: 31 - type: Transform - uid: 4419 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,-4.5 parent: 31 - type: Transform - uid: 4421 components: - - flags: PvsPriority - type: MetaData - - pos: 77.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 77.5,-6.5 parent: 31 - type: Transform - uid: 4428 components: - - flags: PvsPriority - type: MetaData - - pos: 74.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 74.5,11.5 parent: 31 - type: Transform - uid: 4429 components: - - flags: PvsPriority - type: MetaData - - pos: 78.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 78.5,-6.5 parent: 31 - type: Transform - uid: 4430 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,-4.5 parent: 31 - type: Transform - uid: 4431 components: - - flags: PvsPriority - type: MetaData - - pos: 79.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 79.5,-6.5 parent: 31 - type: Transform - uid: 4432 components: - - flags: PvsPriority - type: MetaData - - pos: 75.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 75.5,-6.5 parent: 31 - type: Transform - uid: 4434 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,5.5 parent: 31 - type: Transform - uid: 4435 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,7.5 parent: 31 - type: Transform - uid: 4441 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,-12.5 parent: 31 - type: Transform - uid: 4451 components: - - flags: PvsPriority - type: MetaData - - pos: 69.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 69.5,-6.5 parent: 31 - type: Transform - uid: 4452 components: - - flags: PvsPriority - type: MetaData - - pos: 52.5,4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 52.5,4.5 parent: 31 - type: Transform - uid: 4455 components: - - flags: PvsPriority - type: MetaData - - pos: 73.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 73.5,11.5 parent: 31 - type: Transform - uid: 4456 components: - - flags: PvsPriority - type: MetaData - - pos: 76.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 76.5,11.5 parent: 31 - type: Transform - uid: 4461 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,6.5 parent: 31 - type: Transform - uid: 4471 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,-2.5 parent: 31 - type: Transform - uid: 4472 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,-0.5 parent: 31 - type: Transform - uid: 4473 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,0.5 parent: 31 - type: Transform - uid: 4474 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,1.5 parent: 31 - type: Transform - uid: 4475 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,3.5 parent: 31 - type: Transform - uid: 4476 components: - - flags: PvsPriority - type: MetaData - - pos: 68.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 68.5,-6.5 parent: 31 - type: Transform - uid: 4477 components: - - flags: PvsPriority - type: MetaData - - pos: 67.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 67.5,-6.5 parent: 31 - type: Transform - uid: 4478 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,12.5 parent: 31 - type: Transform - uid: 4494 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-19.5 parent: 31 - type: Transform - uid: 4499 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-21.5 parent: 31 - type: Transform - uid: 4502 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,-10.5 parent: 31 - type: Transform - uid: 4509 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-21.5 parent: 31 - type: Transform - uid: 4517 components: - - flags: PvsPriority - type: MetaData - - pos: 38.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-26.5 parent: 31 - type: Transform - uid: 4518 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-26.5 parent: 31 - type: Transform - uid: 4523 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,-1.5 parent: 31 - type: Transform - uid: 4524 components: - - flags: PvsPriority - type: MetaData - - pos: 57.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 57.5,-6.5 parent: 31 - type: Transform - uid: 4527 components: - - flags: PvsPriority - type: MetaData - - pos: 32.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-16.5 parent: 31 - type: Transform - uid: 4531 components: - - flags: PvsPriority - type: MetaData - - pos: 53.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 53.5,-6.5 parent: 31 - type: Transform - uid: 4536 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,10.5 parent: 31 - type: Transform - uid: 4538 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,12.5 parent: 31 - type: Transform - uid: 4540 components: - - flags: PvsPriority - type: MetaData - - pos: 71.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 71.5,11.5 parent: 31 - type: Transform - uid: 4551 components: - - flags: PvsPriority - type: MetaData - - pos: 69.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 69.5,11.5 parent: 31 - type: Transform - uid: 4552 components: - - flags: PvsPriority - type: MetaData - - pos: 78.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 78.5,11.5 parent: 31 - type: Transform - uid: 4572 components: - - flags: PvsPriority - type: MetaData - - pos: -32.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-19.5 parent: 31 - type: Transform - uid: 4573 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-20.5 parent: 31 - type: Transform - uid: 4574 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,7.5 parent: 31 - type: Transform - uid: 4579 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-16.5 parent: 31 - type: Transform - uid: 4580 components: - - flags: PvsPriority - type: MetaData - - pos: 38.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,-18.5 parent: 31 - type: Transform - uid: 4581 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-18.5 parent: 31 - type: Transform - uid: 4582 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-18.5 parent: 31 - type: Transform - uid: 4584 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-22.5 parent: 31 - type: Transform - uid: 4587 components: - - flags: PvsPriority - type: MetaData - - pos: 32.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-26.5 parent: 31 - type: Transform - uid: 4588 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-26.5 parent: 31 - type: Transform - uid: 4589 components: - - flags: PvsPriority - type: MetaData - - pos: 60.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 60.5,-6.5 parent: 31 - type: Transform - uid: 4594 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-20.5 parent: 31 - type: Transform - uid: 4601 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,11.5 parent: 31 - type: Transform - uid: 4636 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,12.5 parent: 31 - type: Transform - uid: 4646 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-17.5 parent: 31 - type: Transform - uid: 4648 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-22.5 parent: 31 - type: Transform - uid: 4661 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-22.5 parent: 31 - type: Transform - uid: 4674 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,-21.5 parent: 31 - type: Transform - uid: 4675 components: - - flags: PvsPriority - type: MetaData - - pos: 52.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 52.5,-18.5 parent: 31 - type: Transform - uid: 4678 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,-18.5 parent: 31 - type: Transform - uid: 4689 components: - - flags: PvsPriority - type: MetaData - - pos: 72.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 72.5,-6.5 parent: 31 - type: Transform - uid: 4716 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-17.5 parent: 31 - type: Transform - uid: 4717 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-20.5 parent: 31 - type: Transform - uid: 4740 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,24.5 parent: 31 - type: Transform - uid: 4773 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,-1.5 parent: 31 - type: Transform - uid: 4779 components: - - flags: PvsPriority - type: MetaData - - pos: 62.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 62.5,-6.5 parent: 31 - type: Transform - uid: 4781 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,-3.5 parent: 31 - type: Transform - uid: 4788 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,-6.5 parent: 31 - type: Transform - uid: 4789 components: - - flags: PvsPriority - type: MetaData - - pos: 64.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 64.5,-6.5 parent: 31 - type: Transform - uid: 4791 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,-5.5 parent: 31 - type: Transform - uid: 4796 components: - - flags: PvsPriority - type: MetaData - - pos: 70.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 70.5,-6.5 parent: 31 - type: Transform - uid: 4813 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-26.5 parent: 31 - type: Transform - uid: 4814 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-27.5 parent: 31 - type: Transform - uid: 4815 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-28.5 parent: 31 - type: Transform - uid: 4816 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-29.5 parent: 31 - type: Transform - uid: 4817 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-30.5 parent: 31 - type: Transform - uid: 4818 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-31.5 parent: 31 - type: Transform - uid: 4837 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-31.5 parent: 31 - type: Transform - uid: 4838 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-31.5 parent: 31 - type: Transform - uid: 4839 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-31.5 parent: 31 - type: Transform - uid: 4840 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-31.5 parent: 31 - type: Transform - uid: 4842 components: - - flags: PvsPriority - type: MetaData - - pos: 9.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-31.5 parent: 31 - type: Transform - uid: 4843 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-31.5 parent: 31 - type: Transform - uid: 4855 components: - - flags: PvsPriority - type: MetaData - - pos: 33.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,24.5 parent: 31 - type: Transform - uid: 4867 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,20.5 parent: 31 - type: Transform - uid: 4894 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,6.5 parent: 31 - type: Transform - uid: 4898 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,11.5 parent: 31 - type: Transform - uid: 4931 components: - - flags: PvsPriority - type: MetaData - - pos: 15.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,19.5 parent: 31 - type: Transform - uid: 4935 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-22.5 parent: 31 - type: Transform - uid: 4936 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-26.5 parent: 31 - type: Transform - uid: 4937 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-26.5 parent: 31 - type: Transform - uid: 4938 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-26.5 parent: 31 - type: Transform - uid: 4939 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-20.5 parent: 31 - type: Transform - uid: 4941 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-21.5 parent: 31 - type: Transform - uid: 4942 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-24.5 parent: 31 - type: Transform - uid: 4944 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-26.5 parent: 31 - type: Transform - uid: 4945 components: - - flags: PvsPriority - type: MetaData - - pos: 27.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-26.5 parent: 31 - type: Transform - uid: 4978 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,18.5 parent: 31 - type: Transform - uid: 4979 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,19.5 parent: 31 - type: Transform - uid: 4980 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,20.5 parent: 31 - type: Transform - uid: 4988 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,21.5 parent: 31 - type: Transform - uid: 4989 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,21.5 parent: 31 - type: Transform - uid: 4990 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,21.5 parent: 31 - type: Transform - uid: 4991 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,21.5 parent: 31 - type: Transform - uid: 4993 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,23.5 parent: 31 - type: Transform - uid: 5006 components: - - flags: PvsPriority - type: MetaData - - pos: 33.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,22.5 parent: 31 - type: Transform - uid: 5036 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-20.5 parent: 31 - type: Transform - uid: 5059 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,27.5 parent: 31 - type: Transform - uid: 5060 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,26.5 parent: 31 - type: Transform - uid: 5061 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,27.5 parent: 31 - type: Transform - uid: 5062 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,25.5 parent: 31 - type: Transform - uid: 5063 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,18.5 parent: 31 - type: Transform - uid: 5101 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-18.5 parent: 31 - type: Transform - uid: 5154 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-24.5 parent: 31 - type: Transform - uid: 5176 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,22.5 parent: 31 - type: Transform - uid: 5177 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,23.5 parent: 31 - type: Transform - uid: 5178 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,25.5 parent: 31 - type: Transform - uid: 5179 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,26.5 parent: 31 - type: Transform - uid: 5180 components: - - flags: PvsPriority - type: MetaData - - pos: -23.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,26.5 parent: 31 - type: Transform - uid: 5181 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,26.5 parent: 31 - type: Transform - uid: 5182 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,26.5 parent: 31 - type: Transform - uid: 5183 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,26.5 parent: 31 - type: Transform - uid: 5193 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,23.5 parent: 31 - type: Transform - uid: 5194 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,20.5 parent: 31 - type: Transform - uid: 5195 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,25.5 parent: 31 - type: Transform - uid: 5196 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,25.5 parent: 31 - type: Transform - uid: 5233 components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,15.5 parent: 31 - type: Transform - uid: 5236 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,21.5 parent: 31 - type: Transform - uid: 5237 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,22.5 parent: 31 - type: Transform - uid: 5238 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,21.5 parent: 31 - type: Transform - uid: 5239 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,23.5 parent: 31 - type: Transform - uid: 5241 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,24.5 parent: 31 - type: Transform - uid: 5242 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,22.5 parent: 31 - type: Transform - uid: 5245 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,23.5 parent: 31 - type: Transform - uid: 5252 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-27.5 parent: 31 - type: Transform - uid: 5253 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-28.5 parent: 31 - type: Transform - uid: 5254 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,-29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-29.5 parent: 31 - type: Transform - uid: 5255 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-30.5 parent: 31 - type: Transform - uid: 5256 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-30.5 parent: 31 - type: Transform - uid: 5257 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-30.5 parent: 31 - type: Transform - uid: 5294 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-32.5 parent: 31 - type: Transform - uid: 5295 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-32.5 parent: 31 - type: Transform - uid: 5296 components: - - flags: PvsPriority - type: MetaData - - pos: 15.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-32.5 parent: 31 - type: Transform - uid: 5297 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-32.5 parent: 31 - type: Transform - uid: 5298 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-32.5 parent: 31 - type: Transform - uid: 5315 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,21.5 parent: 31 - type: Transform - uid: 5316 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,20.5 parent: 31 - type: Transform - uid: 5318 components: - - flags: PvsPriority - type: MetaData - - pos: 42.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 42.5,24.5 parent: 31 - type: Transform - uid: 5319 components: - - flags: PvsPriority - type: MetaData - - pos: 40.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,24.5 parent: 31 - type: Transform - uid: 5320 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,24.5 parent: 31 - type: Transform - uid: 5610 components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,17.5 parent: 31 - type: Transform - uid: 5672 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,-5.5 parent: 31 - type: Transform - uid: 5674 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,11.5 parent: 31 - type: Transform - uid: 5677 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,4.5 parent: 31 - type: Transform - uid: 5679 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,2.5 parent: 31 - type: Transform - uid: 5680 components: - - flags: PvsPriority - type: MetaData - - pos: 68.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 68.5,11.5 parent: 31 - type: Transform - uid: 5719 components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-8.5 parent: 31 - type: Transform - uid: 5784 components: - - flags: PvsPriority - type: MetaData - - pos: 56.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 56.5,12.5 parent: 31 - type: Transform - uid: 5882 components: - - flags: PvsPriority - type: MetaData - - pos: -53.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,-11.5 parent: 31 - type: Transform - uid: 5894 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,23.5 parent: 31 - type: Transform - uid: 5939 components: - - flags: PvsPriority - type: MetaData - - pos: 19.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,18.5 parent: 31 - type: Transform - uid: 5983 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -44.5,-8.5 parent: 31 - type: Transform - uid: 6181 components: - - flags: PvsPriority - type: MetaData - - pos: 72.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 72.5,11.5 parent: 31 - type: Transform - uid: 6210 components: - - flags: PvsPriority - type: MetaData - - pos: -42.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-12.5 parent: 31 - type: Transform - uid: 6230 components: - - flags: PvsPriority - type: MetaData - - pos: 59.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 59.5,5.5 parent: 31 - type: Transform - uid: 6231 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,5.5 parent: 31 - type: Transform - uid: 6244 components: - - flags: PvsPriority - type: MetaData - - pos: 42.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 42.5,-0.5 parent: 31 - type: Transform - uid: 6245 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,22.5 parent: 31 - type: Transform - uid: 6253 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,18.5 parent: 31 - type: Transform - uid: 6278 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,-9.5 parent: 31 - type: Transform - uid: 6279 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,-11.5 parent: 31 - type: Transform - uid: 6283 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 58.5,9.5 parent: 31 - type: Transform - uid: 6284 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,8.5 parent: 31 - type: Transform - uid: 6285 components: - - flags: PvsPriority - type: MetaData - - pos: 57.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 57.5,-12.5 parent: 31 - type: Transform - uid: 6290 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,-6.5 parent: 31 - type: Transform - uid: 6291 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,-6.5 parent: 31 - type: Transform - uid: 6292 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,-5.5 parent: 31 - type: Transform - uid: 6295 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,-8.5 parent: 31 - type: Transform - uid: 6307 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 51.5,18.5 parent: 31 - type: Transform - uid: 6368 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,14.5 parent: 31 - type: Transform - uid: 6388 components: - - flags: PvsPriority - type: MetaData - - pos: 50.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 50.5,6.5 parent: 31 - type: Transform - uid: 6389 components: - - flags: PvsPriority - type: MetaData - - pos: 38.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,7.5 parent: 31 - type: Transform - uid: 6390 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,12.5 parent: 31 - type: Transform - uid: 6395 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,14.5 parent: 31 - type: Transform - uid: 6416 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 47.5,23.5 parent: 31 - type: Transform - uid: 6422 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 47.5,22.5 parent: 31 - type: Transform - uid: 6432 components: - - flags: PvsPriority - type: MetaData - - pos: 57.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 57.5,12.5 parent: 31 - type: Transform - uid: 6441 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,11.5 parent: 31 - type: Transform - uid: 6447 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,10.5 parent: 31 - type: Transform - uid: 6454 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,6.5 parent: 31 - type: Transform - uid: 6468 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,10.5 parent: 31 - type: Transform - uid: 6474 components: - - flags: PvsPriority - type: MetaData - - pos: -52.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,-12.5 parent: 31 - type: Transform - uid: 6475 components: - - flags: PvsPriority - type: MetaData - - pos: 48.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 48.5,6.5 parent: 31 - type: Transform - uid: 6484 components: - - flags: PvsPriority - type: MetaData - - pos: 40.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,7.5 parent: 31 - type: Transform - uid: 6485 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,8.5 parent: 31 - type: Transform - uid: 6488 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,7.5 parent: 31 - type: Transform - uid: 6491 components: - - flags: PvsPriority - type: MetaData - - pos: 44.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,14.5 parent: 31 - type: Transform - uid: 6492 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,14.5 parent: 31 - type: Transform - uid: 6493 components: - - flags: PvsPriority - type: MetaData - - pos: -52.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -52.5,-8.5 parent: 31 - type: Transform - uid: 6494 components: - - flags: PvsPriority - type: MetaData - - pos: -54.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,-8.5 parent: 31 - type: Transform - uid: 6496 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,10.5 parent: 31 - type: Transform - uid: 6498 components: - - flags: PvsPriority - type: MetaData - - pos: 44.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,10.5 parent: 31 - type: Transform - uid: 6499 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,9.5 parent: 31 - type: Transform - uid: 6500 components: - - flags: PvsPriority - type: MetaData - - pos: 33.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,23.5 parent: 31 - type: Transform - uid: 6531 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,14.5 parent: 31 - type: Transform - uid: 6535 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,13.5 parent: 31 - type: Transform - uid: 6536 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,11.5 parent: 31 - type: Transform - uid: 6537 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,10.5 parent: 31 - type: Transform - uid: 6542 components: - - flags: PvsPriority - type: MetaData - - pos: 49.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 49.5,6.5 parent: 31 - type: Transform - uid: 6553 components: - - flags: PvsPriority - type: MetaData - - pos: 32.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,18.5 parent: 31 - type: Transform - uid: 6576 components: - - flags: PvsPriority - type: MetaData - - pos: -45.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -45.5,-12.5 parent: 31 - type: Transform - uid: 6583 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,-10.5 parent: 31 - type: Transform - uid: 6601 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,8.5 parent: 31 - type: Transform - uid: 6608 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,13.5 parent: 31 - type: Transform - uid: 6612 components: - - flags: PvsPriority - type: MetaData - - pos: -40.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,-12.5 parent: 31 - type: Transform - uid: 6615 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,22.5 parent: 31 - type: Transform - uid: 6616 components: - - flags: PvsPriority - type: MetaData - - pos: 45.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 45.5,6.5 parent: 31 - type: Transform - uid: 6622 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,6.5 parent: 31 - type: Transform - uid: 6627 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,10.5 parent: 31 - type: Transform - uid: 6628 components: - - flags: PvsPriority - type: MetaData - - pos: 42.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 42.5,10.5 parent: 31 - type: Transform - uid: 6751 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,11.5 parent: 31 - type: Transform - uid: 6808 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 47.5,24.5 parent: 31 - type: Transform - uid: 6809 components: - - flags: PvsPriority - type: MetaData - - pos: -43.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-12.5 parent: 31 - type: Transform - uid: 6810 components: - - flags: PvsPriority - type: MetaData - - pos: -38.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-7.5 parent: 31 - type: Transform - uid: 6811 components: - - flags: PvsPriority - type: MetaData - - pos: -9.5,-42.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-42.5 parent: 31 - type: Transform - uid: 6814 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 46.5,24.5 parent: 31 - type: Transform - uid: 6822 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,10.5 parent: 31 - type: Transform - uid: 6837 components: - - flags: PvsPriority - type: MetaData - - pos: 38.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 38.5,10.5 parent: 31 - type: Transform - uid: 6851 components: - - flags: PvsPriority - type: MetaData - - pos: 40.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 40.5,10.5 parent: 31 - type: Transform - uid: 6862 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,9.5 parent: 31 - type: Transform - uid: 6870 components: - - flags: PvsPriority - type: MetaData - - pos: 66.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 66.5,-6.5 parent: 31 - type: Transform - uid: 6879 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,15.5 parent: 31 - type: Transform - uid: 6883 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,30.5 parent: 31 - type: Transform - uid: 6886 components: - - flags: PvsPriority - type: MetaData - - pos: 42.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 42.5,14.5 parent: 31 - type: Transform - uid: 6889 components: - - flags: PvsPriority - type: MetaData - - pos: 41.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 41.5,7.5 parent: 31 - type: Transform - uid: 6902 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 47.5,20.5 parent: 31 - type: Transform - uid: 6905 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,18.5 parent: 31 - type: Transform - uid: 6920 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,8.5 parent: 31 - type: Transform - uid: 6926 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,8.5 parent: 31 - type: Transform - uid: 6927 components: - - flags: PvsPriority - type: MetaData - - pos: 76.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 76.5,-6.5 parent: 31 - type: Transform - uid: 6928 components: - - flags: PvsPriority - type: MetaData - - pos: 56.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 56.5,-12.5 parent: 31 - type: Transform - uid: 6929 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,10.5 parent: 31 - type: Transform - uid: 6948 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,-8.5 parent: 31 - type: Transform - uid: 6949 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,-12.5 parent: 31 - type: Transform - uid: 6953 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,-2.5 parent: 31 - type: Transform - uid: 6954 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,9.5 parent: 31 - type: Transform - uid: 6955 components: - - flags: PvsPriority - type: MetaData - - pos: 75.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 75.5,11.5 parent: 31 - type: Transform - uid: 6956 components: - - flags: PvsPriority - type: MetaData - - pos: 77.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 77.5,11.5 parent: 31 - type: Transform - uid: 6983 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,-22.5 parent: 31 - type: Transform - uid: 6984 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,-26.5 parent: 31 - type: Transform - uid: 6985 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,-21.5 parent: 31 - type: Transform - uid: 6986 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,-27.5 parent: 31 - type: Transform - uid: 6987 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,-30.5 parent: 31 - type: Transform - uid: 6990 components: - - flags: PvsPriority - type: MetaData - - pos: 52.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 52.5,-30.5 parent: 31 - type: Transform - uid: 6992 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,-27.5 parent: 31 - type: Transform - uid: 7034 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-18.5 parent: 31 - type: Transform - uid: 7035 components: - - flags: PvsPriority - type: MetaData - - pos: 42.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 42.5,-1.5 parent: 31 - type: Transform - uid: 7047 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-20.5 parent: 31 - type: Transform - uid: 7048 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-20.5 parent: 31 - type: Transform - uid: 7049 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-18.5 parent: 31 - type: Transform - uid: 7053 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 46.5,-13.5 parent: 31 - type: Transform - uid: 7055 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,17.5 parent: 31 - type: Transform - uid: 7060 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-26.5 parent: 31 - type: Transform - uid: 7061 components: - - flags: PvsPriority - type: MetaData - - pos: 33.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-26.5 parent: 31 - type: Transform - uid: 7062 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-20.5 parent: 31 - type: Transform - uid: 7070 components: - - flags: PvsPriority - type: MetaData - - pos: 80.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 80.5,-3.5 parent: 31 - type: Transform - uid: 7081 components: - - flags: PvsPriority - type: MetaData - - pos: -7.5,-41.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-41.5 parent: 31 - type: Transform - uid: 7084 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,24.5 parent: 31 - type: Transform - uid: 7086 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,24.5 parent: 31 - type: Transform - uid: 7094 components: - - flags: PvsPriority - type: MetaData - - pos: -9.5,-41.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-41.5 parent: 31 - type: Transform - uid: 7096 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,22.5 parent: 31 - type: Transform - uid: 7100 components: - - flags: PvsPriority - type: MetaData - - pos: -7.5,-42.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-42.5 parent: 31 - type: Transform - uid: 7157 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,18.5 parent: 31 - type: Transform - uid: 7162 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,-2.5 parent: 31 - type: Transform - uid: 7169 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-10.5 parent: 31 - type: Transform - uid: 7181 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,-4.5 parent: 31 - type: Transform - uid: 7184 components: - - flags: PvsPriority - type: MetaData - - pos: 47.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 47.5,-3.5 parent: 31 - type: Transform - uid: 7223 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,2.5 parent: 31 - type: Transform - uid: 7333 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,-14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-14.5 parent: 31 - type: Transform - uid: 7339 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,9.5 parent: 31 - type: Transform - uid: 7352 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 54.5,18.5 parent: 31 - type: Transform - uid: 7441 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-32.5 parent: 31 - type: Transform - uid: 7442 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-32.5 parent: 31 - type: Transform - uid: 7467 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-29.5 parent: 31 - type: Transform - uid: 7468 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-31.5 parent: 31 - type: Transform - uid: 7475 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,19.5 parent: 31 - type: Transform - uid: 7481 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-31.5 parent: 31 - type: Transform - uid: 7483 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-33.5 parent: 31 - type: Transform - uid: 7502 components: - - flags: PvsPriority - type: MetaData - - pos: -9.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-40.5 parent: 31 - type: Transform - uid: 7503 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-18.5 parent: 31 - type: Transform - uid: 7505 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-35.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-35.5 parent: 31 - type: Transform - uid: 7506 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-36.5 parent: 31 - type: Transform - uid: 7507 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-36.5 parent: 31 - type: Transform - uid: 7508 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-34.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-34.5 parent: 31 - type: Transform - uid: 7509 components: - - flags: PvsPriority - type: MetaData - - pos: -7.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-40.5 parent: 31 - type: Transform - uid: 7531 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-40.5 parent: 31 - type: Transform - uid: 7535 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-40.5 parent: 31 - type: Transform - uid: 7541 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-37.5 parent: 31 - type: Transform - uid: 7545 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-37.5 parent: 31 - type: Transform - uid: 7546 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-37.5 parent: 31 - type: Transform - uid: 7551 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-33.5 parent: 31 - type: Transform - uid: 7555 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-40.5 parent: 31 - type: Transform - uid: 7560 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-36.5 parent: 31 - type: Transform - uid: 7563 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-37.5 parent: 31 - type: Transform - uid: 7578 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-35.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-35.5 parent: 31 - type: Transform - uid: 7583 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-34.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-34.5 parent: 31 - type: Transform - uid: 7585 components: - - flags: PvsPriority - type: MetaData - - pos: -7.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-33.5 parent: 31 - type: Transform - uid: 7592 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-31.5 parent: 31 - type: Transform - uid: 7601 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-32.5 parent: 31 - type: Transform - uid: 7629 components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,16.5 parent: 31 - type: Transform - uid: 7633 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-24.5 parent: 31 - type: Transform - uid: 7641 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-31.5 parent: 31 - type: Transform - uid: 7681 components: - - flags: PvsPriority - type: MetaData - - pos: 60.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 60.5,-0.5 parent: 31 - type: Transform - uid: 7683 components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,13.5 parent: 31 - type: Transform - uid: 7685 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,29.5 parent: 31 - type: Transform - uid: 7698 components: - - flags: PvsPriority - type: MetaData - - pos: 48.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 48.5,-12.5 parent: 31 - type: Transform - uid: 7699 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,30.5 parent: 31 - type: Transform - uid: 7712 components: - - flags: PvsPriority - type: MetaData - - pos: -54.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -54.5,-11.5 parent: 31 - type: Transform - uid: 7751 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,7.5 parent: 31 - type: Transform - uid: 7752 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,6.5 parent: 31 - type: Transform - uid: 7797 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-12.5 parent: 31 - type: Transform - uid: 7805 components: - - flags: PvsPriority - type: MetaData - - pos: -53.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,-12.5 parent: 31 - type: Transform - uid: 7816 components: - - flags: PvsPriority - type: MetaData - - pos: -28.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-20.5 parent: 31 - type: Transform - uid: 7822 components: - - flags: PvsPriority - type: MetaData - - pos: 22.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-12.5 parent: 31 - type: Transform - uid: 7831 components: - - flags: PvsPriority - type: MetaData - - pos: -43.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-8.5 parent: 31 - type: Transform - uid: 7846 components: - - flags: PvsPriority - type: MetaData - - pos: 33.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,20.5 parent: 31 - type: Transform - uid: 7942 components: - - flags: PvsPriority - type: MetaData - - pos: 33.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,21.5 parent: 31 - type: Transform - uid: 7968 components: - - flags: PvsPriority - type: MetaData - - pos: -36.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,20.5 parent: 31 - type: Transform - uid: 8019 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 57.5,9.5 parent: 31 - type: Transform - uid: 8026 components: - - flags: PvsPriority - type: MetaData - - pos: -53.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -53.5,-8.5 parent: 31 - type: Transform - uid: 8051 components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-12.5 parent: 31 - type: Transform - uid: 8058 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-20.5 parent: 31 - type: Transform - uid: 8107 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,-0.5 parent: 31 - type: Transform - uid: 8113 components: - - flags: PvsPriority - type: MetaData - - pos: 52.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 52.5,0.5 parent: 31 - type: Transform - uid: 8114 components: - - flags: PvsPriority - type: MetaData - - pos: 53.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 53.5,0.5 parent: 31 - type: Transform - uid: 8115 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,0.5 parent: 31 - type: Transform - uid: 8116 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,-0.5 parent: 31 - type: Transform - uid: 8117 components: - - flags: PvsPriority - type: MetaData - - pos: 55.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 55.5,-0.5 parent: 31 - type: Transform - uid: 8118 components: - - flags: PvsPriority - type: MetaData - - pos: 56.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 56.5,-0.5 parent: 31 - type: Transform - uid: 8121 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,8.5 parent: 31 - type: Transform - uid: 8123 components: - - flags: PvsPriority - type: MetaData - - pos: 60.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 60.5,5.5 parent: 31 - type: Transform - uid: 8126 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,6.5 parent: 31 - type: Transform - uid: 8128 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,4.5 parent: 31 - type: Transform - uid: 8129 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,5.5 parent: 31 - type: Transform - uid: 8161 components: - - flags: PvsPriority - type: MetaData - - pos: 59.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 59.5,-6.5 parent: 31 - type: Transform - uid: 8212 components: - - flags: PvsPriority - type: MetaData - - pos: -41.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -41.5,-12.5 parent: 31 - type: Transform - uid: 8215 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,-15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-15.5 parent: 31 - type: Transform - uid: 8220 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,18.5 parent: 31 - type: Transform - uid: 8287 components: - - flags: PvsPriority - type: MetaData - - pos: -50.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -50.5,-12.5 parent: 31 - type: Transform - uid: 8289 components: - - flags: PvsPriority - type: MetaData - - pos: -51.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -51.5,-8.5 parent: 31 - type: Transform - uid: 8311 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-33.5 parent: 31 - type: Transform - uid: 8368 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-32.5 parent: 31 - type: Transform - uid: 8381 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-23.5 parent: 31 - type: Transform - uid: 8400 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,23.5 parent: 31 - type: Transform - uid: 8401 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,23.5 parent: 31 - type: Transform - uid: 8402 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,-7.5 parent: 31 - type: Transform - uid: 8452 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-25.5 parent: 31 - type: Transform - uid: 8455 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-27.5 parent: 31 - type: Transform - uid: 8457 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-24.5 parent: 31 - type: Transform - uid: 8458 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-25.5 parent: 31 - type: Transform - uid: 8464 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-30.5 parent: 31 - type: Transform - uid: 8465 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-29.5 parent: 31 - type: Transform - uid: 8466 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-28.5 parent: 31 - type: Transform - uid: 8470 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-27.5 parent: 31 - type: Transform - uid: 8471 components: - - flags: PvsPriority - type: MetaData - - pos: -23.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-27.5 parent: 31 - type: Transform - uid: 8472 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-27.5 parent: 31 - type: Transform - uid: 8473 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-25.5 parent: 31 - type: Transform - uid: 8474 components: - - flags: PvsPriority - type: MetaData - - pos: -23.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-25.5 parent: 31 - type: Transform - uid: 8475 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-25.5 parent: 31 - type: Transform - uid: 8477 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-27.5 parent: 31 - type: Transform - uid: 8516 components: - - flags: PvsPriority - type: MetaData - - pos: -28.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-27.5 parent: 31 - type: Transform - uid: 8517 components: - - flags: PvsPriority - type: MetaData - - pos: -28.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-25.5 parent: 31 - type: Transform - uid: 8518 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-27.5 parent: 31 - type: Transform - uid: 8519 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-25.5 parent: 31 - type: Transform - uid: 8520 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-25.5 parent: 31 - type: Transform - uid: 8521 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-25.5 parent: 31 - type: Transform - uid: 8522 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-27.5 parent: 31 - type: Transform - uid: 8523 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-27.5 parent: 31 - type: Transform - uid: 8528 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-33.5 parent: 31 - type: Transform - uid: 8529 components: - - flags: PvsPriority - type: MetaData - - pos: -23.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-30.5 parent: 31 - type: Transform - uid: 8530 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-33.5 parent: 31 - type: Transform - uid: 8532 components: - - flags: PvsPriority - type: MetaData - - pos: -37.5,-29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-29.5 parent: 31 - type: Transform - uid: 8534 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-28.5 parent: 31 - type: Transform - uid: 8535 components: - - flags: PvsPriority - type: MetaData - - pos: -35.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-30.5 parent: 31 - type: Transform - uid: 8536 components: - - flags: PvsPriority - type: MetaData - - pos: -36.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,-30.5 parent: 31 - type: Transform - uid: 8537 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-33.5 parent: 31 - type: Transform - uid: 8538 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-32.5 parent: 31 - type: Transform - uid: 8539 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-31.5 parent: 31 - type: Transform - uid: 8540 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-30.5 parent: 31 - type: Transform - uid: 8541 components: - - flags: PvsPriority - type: MetaData - - pos: -37.5,-27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-27.5 parent: 31 - type: Transform - uid: 8542 components: - - flags: PvsPriority - type: MetaData - - pos: -37.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-26.5 parent: 31 - type: Transform - uid: 8544 components: - - flags: PvsPriority - type: MetaData - - pos: -37.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-25.5 parent: 31 - type: Transform - uid: 8545 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-33.5 parent: 31 - type: Transform - uid: 8547 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-31.5 parent: 31 - type: Transform - uid: 8548 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-30.5 parent: 31 - type: Transform - uid: 8549 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-33.5 parent: 31 - type: Transform - uid: 8550 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-33.5 parent: 31 - type: Transform - uid: 8551 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-33.5 parent: 31 - type: Transform - uid: 8552 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-29.5 parent: 31 - type: Transform - uid: 8553 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-30.5 parent: 31 - type: Transform - uid: 8554 components: - - flags: PvsPriority - type: MetaData - - pos: -37.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-30.5 parent: 31 - type: Transform - uid: 8555 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-30.5 parent: 31 - type: Transform - uid: 8557 components: - - flags: PvsPriority - type: MetaData - - pos: -37.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,-22.5 parent: 31 - type: Transform - uid: 8561 components: - - flags: PvsPriority - type: MetaData - - pos: -32.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,-25.5 parent: 31 - type: Transform - uid: 8562 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-25.5 parent: 31 - type: Transform - uid: 8565 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,-22.5 parent: 31 - type: Transform - uid: 8756 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,12.5 parent: 31 - type: Transform - uid: 8758 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,12.5 parent: 31 - type: Transform - uid: 8759 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,7.5 parent: 31 - type: Transform - uid: 8760 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,6.5 parent: 31 - type: Transform - uid: 8806 components: - - flags: PvsPriority - type: MetaData - - pos: -38.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,20.5 parent: 31 - type: Transform - uid: 8844 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,16.5 parent: 31 - type: Transform - uid: 8936 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-31.5 parent: 31 - type: Transform - uid: 9005 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-33.5 parent: 31 - type: Transform - uid: 9075 components: - - flags: PvsPriority - type: MetaData - - pos: -44.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -44.5,-0.5 parent: 31 - type: Transform - uid: 9088 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-21.5 parent: 31 - type: Transform - uid: 9118 components: - - flags: PvsPriority - type: MetaData - - pos: 42.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 42.5,-2.5 parent: 31 - type: Transform - uid: 9144 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-29.5 parent: 31 - type: Transform - uid: 9168 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-28.5 parent: 31 - type: Transform - uid: 9182 components: - - flags: PvsPriority - type: MetaData - - pos: -38.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-8.5 parent: 31 - type: Transform - uid: 9183 components: - - flags: PvsPriority - type: MetaData - - pos: -38.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-6.5 parent: 31 - type: Transform - uid: 9185 components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-2.5 parent: 31 - type: Transform - uid: 9186 components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-0.5 parent: 31 - type: Transform - uid: 9192 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-28.5 parent: 31 - type: Transform - uid: 9193 components: - - flags: PvsPriority - type: MetaData - - pos: -38.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-12.5 parent: 31 - type: Transform - uid: 9203 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-26.5 parent: 31 - type: Transform - uid: 9205 components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,-6.5 - parent: 31 - type: Transform - - uid: 9206 - components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-6.5 parent: 31 - type: Transform - uid: 9253 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-30.5 parent: 31 - type: Transform - uid: 9258 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-31.5 parent: 31 - type: Transform - uid: 9286 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-32.5 parent: 31 - type: Transform - uid: 9287 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-33.5 parent: 31 - type: Transform - uid: 9288 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-30.5 parent: 31 - type: Transform - uid: 9293 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-32.5 parent: 31 - type: Transform - uid: 9304 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-43.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-43.5 parent: 31 - type: Transform - uid: 9305 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-39.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-39.5 parent: 31 - type: Transform - uid: 9306 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-38.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-38.5 parent: 31 - type: Transform - uid: 9307 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-37.5 parent: 31 - type: Transform - uid: 9308 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-36.5 parent: 31 - type: Transform - uid: 9309 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-35.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-35.5 parent: 31 - type: Transform - uid: 9310 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-34.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-34.5 parent: 31 - type: Transform - uid: 9311 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-33.5 parent: 31 - type: Transform - uid: 9312 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-32.5 parent: 31 - type: Transform - uid: 9313 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-33.5 parent: 31 - type: Transform - uid: 9314 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-34.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-34.5 parent: 31 - type: Transform - uid: 9315 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-35.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-35.5 parent: 31 - type: Transform - uid: 9316 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-36.5 parent: 31 - type: Transform - uid: 9317 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-36.5 parent: 31 - type: Transform - uid: 9318 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-36.5 parent: 31 - type: Transform - uid: 9319 components: - - flags: PvsPriority - type: MetaData - - pos: 4.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-36.5 parent: 31 - type: Transform - uid: 9320 components: - - flags: PvsPriority - type: MetaData - - pos: 4.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-37.5 parent: 31 - type: Transform - uid: 9321 components: - - flags: PvsPriority - type: MetaData - - pos: 3.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-37.5 + parent: 31 + - uid: 9327 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-2.5 parent: 31 - type: Transform - uid: 9329 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 31 - type: Transform - uid: 9342 components: - - flags: PvsPriority - type: MetaData - - pos: 2.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-37.5 parent: 31 - type: Transform - uid: 9345 components: - - flags: PvsPriority - type: MetaData - - pos: 57.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 57.5,-0.5 parent: 31 - type: Transform - uid: 9348 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-37.5 parent: 31 - type: Transform - uid: 9356 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-37.5 parent: 31 - type: Transform - uid: 9368 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-22.5 parent: 31 - type: Transform - uid: 9397 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-31.5 parent: 31 - type: Transform - uid: 9398 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-37.5 parent: 31 - type: Transform - uid: 9404 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-37.5 parent: 31 - type: Transform - uid: 9405 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-36.5 parent: 31 - type: Transform - uid: 9406 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-36.5 parent: 31 - type: Transform - uid: 9407 components: - - flags: PvsPriority - type: MetaData - - pos: -7.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-36.5 parent: 31 - type: Transform - uid: 9425 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-40.5 parent: 31 - type: Transform - uid: 9426 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-40.5 parent: 31 - type: Transform - uid: 9427 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-40.5 parent: 31 - type: Transform - uid: 9428 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-39.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-39.5 parent: 31 - type: Transform - uid: 9429 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-38.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-38.5 parent: 31 - type: Transform - uid: 9434 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-30.5 parent: 31 - type: Transform - uid: 9435 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,-31.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-31.5 parent: 31 - type: Transform - uid: 9436 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-33.5 parent: 31 - type: Transform - uid: 9437 components: - - flags: PvsPriority - type: MetaData - - pos: -23.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-33.5 parent: 31 - type: Transform - uid: 9438 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-33.5 parent: 31 - type: Transform - uid: 9446 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,-30.5 - parent: 31 - type: Transform + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-30.5 + parent: 31 - uid: 9467 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-43.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-43.5 parent: 31 - type: Transform - uid: 9468 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-43.5 parent: 31 - type: Transform - uid: 9470 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-43.5 parent: 31 - type: Transform - uid: 9471 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-43.5 parent: 31 - type: Transform - uid: 9472 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-43.5 parent: 31 - type: Transform - uid: 9475 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-43.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-43.5 parent: 31 - type: Transform - uid: 9476 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,-43.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-43.5 parent: 31 - type: Transform - uid: 9511 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-8.5 parent: 31 - type: Transform - uid: 9527 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,11.5 parent: 31 - type: Transform - uid: 9538 components: - - flags: PvsPriority - type: MetaData - - pos: 62.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 62.5,11.5 parent: 31 - type: Transform - uid: 9539 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,11.5 parent: 31 - type: Transform - uid: 9540 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,10.5 parent: 31 - type: Transform - uid: 9541 components: - - flags: PvsPriority - type: MetaData - - pos: 61.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 61.5,9.5 parent: 31 - type: Transform - uid: 9542 components: - - flags: PvsPriority - type: MetaData - - pos: 67.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 67.5,11.5 parent: 31 - type: Transform - uid: 9543 components: - - flags: PvsPriority - type: MetaData - - pos: 66.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 66.5,11.5 parent: 31 - type: Transform - uid: 9545 components: - - flags: PvsPriority - type: MetaData - - pos: 65.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 65.5,11.5 parent: 31 - type: Transform - uid: 9546 components: - - flags: PvsPriority - type: MetaData - - pos: 64.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 64.5,11.5 parent: 31 - type: Transform - uid: 9547 components: - - flags: PvsPriority - type: MetaData - - pos: 63.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 63.5,11.5 parent: 31 - type: Transform - uid: 9584 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-9.5 parent: 31 - type: Transform - uid: 9586 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,-39.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-39.5 parent: 31 - type: Transform - uid: 9589 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,23.5 parent: 31 - type: Transform - uid: 9600 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 44.5,24.5 parent: 31 - type: Transform - uid: 9611 components: - - flags: PvsPriority - type: MetaData - - pos: 2.5,-43.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-43.5 parent: 31 - type: Transform - uid: 9612 components: - - flags: PvsPriority - type: MetaData - - pos: 2.5,-44.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-44.5 + parent: 31 + - uid: 9624 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-2.5 parent: 31 - type: Transform - uid: 9636 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-41.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-41.5 parent: 31 - type: Transform - uid: 9637 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-42.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-42.5 parent: 31 - type: Transform - uid: 9639 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,-43.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-43.5 parent: 31 - type: Transform - uid: 9640 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,-45.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-45.5 parent: 31 - type: Transform - uid: 9641 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,-44.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-44.5 parent: 31 - type: Transform - uid: 9642 components: - - flags: PvsPriority - type: MetaData - - pos: 2.5,-45.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-45.5 parent: 31 - type: Transform - uid: 9643 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,-44.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-44.5 parent: 31 - type: Transform - uid: 9644 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-43.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-43.5 parent: 31 - type: Transform - uid: 9656 components: - - flags: PvsPriority - type: MetaData - - pos: 4.5,-43.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-43.5 parent: 31 - type: Transform - uid: 9657 components: - - flags: PvsPriority - type: MetaData - - pos: 3.5,-43.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-43.5 parent: 31 - type: Transform - uid: 9705 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,31.5 parent: 31 - type: Transform - uid: 9721 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,32.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,32.5 parent: 31 - type: Transform - uid: 9722 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,-0.5 parent: 31 - type: Transform - uid: 9725 components: - - flags: PvsPriority - type: MetaData - - pos: 59.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 59.5,-0.5 parent: 31 - type: Transform - uid: 9730 components: - - flags: PvsPriority - type: MetaData - - pos: 46.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 46.5,-9.5 parent: 31 - type: Transform - uid: 9742 components: - - flags: PvsPriority - type: MetaData - - pos: -39.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,20.5 parent: 31 - type: Transform - uid: 9765 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-33.5 parent: 31 - type: Transform - uid: 9857 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 40.5,-14.5 parent: 31 - type: Transform - uid: 9892 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -33.5,19.5 parent: 31 - type: Transform - uid: 9924 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,19.5 parent: 31 - type: Transform - uid: 9932 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 28.5,22.5 parent: 31 - type: Transform - uid: 9944 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 40.5,-15.5 parent: 31 - type: Transform - uid: 10019 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,-15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-15.5 parent: 31 - type: Transform - uid: 10081 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,28.5 parent: 31 - type: Transform - uid: 10082 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 18.5,25.5 parent: 31 - type: Transform - uid: 10083 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,25.5 parent: 31 - type: Transform - uid: 10084 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 23.5,25.5 parent: 31 - type: Transform - uid: 10085 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,25.5 parent: 31 - type: Transform - uid: 10086 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 24.5,28.5 parent: 31 - type: Transform - uid: 10118 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 41.5,-14.5 parent: 31 - type: Transform - uid: 10128 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 45.5,-14.5 parent: 31 - type: Transform - uid: 10131 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,2.5 parent: 31 - type: Transform - uid: 10135 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-34.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-34.5 parent: 31 - type: Transform - uid: 10136 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-34.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-34.5 parent: 31 - type: Transform - uid: 10142 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,11.5 parent: 31 - type: Transform - uid: 10199 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-17.5 parent: 31 - type: Transform - uid: 10200 components: - - flags: PvsPriority - type: MetaData - - pos: -35.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,-17.5 parent: 31 - type: Transform - uid: 10209 components: - - flags: PvsPriority - type: MetaData - - pos: -35.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,20.5 parent: 31 - type: Transform - uid: 10211 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,20.5 parent: 31 - type: Transform - uid: 10244 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-8.5 parent: 31 - type: Transform - uid: 10304 components: - - flags: PvsPriority - type: MetaData - - pos: 22.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-8.5 parent: 31 - type: Transform - uid: 10308 components: - - flags: PvsPriority - type: MetaData - - pos: 21.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-8.5 parent: 31 - type: Transform - uid: 10326 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-8.5 parent: 31 - type: Transform - uid: 10411 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-18.5 parent: 31 - type: Transform - uid: 10413 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-18.5 parent: 31 - type: Transform - uid: 10518 components: - - flags: PvsPriority - type: MetaData - - pos: 58.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 58.5,11.5 parent: 31 - type: Transform - uid: 10557 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-23.5 parent: 31 - type: Transform - uid: 10593 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 46.5,-11.5 parent: 31 - type: Transform - uid: 10709 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-22.5 parent: 31 - type: Transform - uid: 10994 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-23.5 parent: 31 - type: Transform - uid: 11038 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 47.5,21.5 parent: 31 - type: Transform - uid: 11048 components: - - flags: PvsPriority - type: MetaData - - pos: 56.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 56.5,18.5 parent: 31 - type: Transform - uid: 11093 components: - - flags: PvsPriority - type: MetaData - - pos: 56.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 56.5,14.5 parent: 31 - type: Transform - uid: 11094 components: - - flags: PvsPriority - type: MetaData - - pos: 54.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 54.5,14.5 parent: 31 - type: Transform - uid: 11114 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,30.5 parent: 31 - type: Transform - uid: 11115 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,29.5 parent: 31 - type: Transform - uid: 11116 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,28.5 parent: 31 - type: Transform - uid: 11117 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,27.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,27.5 + parent: 31 + - uid: 11390 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,-2.5 + parent: 31 + - uid: 11391 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -40.5,-6.5 + parent: 31 + - uid: 11392 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -42.5,-6.5 + parent: 31 + - uid: 11393 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-6.5 + parent: 31 + - uid: 11394 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-3.5 + parent: 31 + - uid: 11395 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -43.5,-5.5 parent: 31 - type: Transform - proto: WallSolid entities: - uid: 11 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-40.5 parent: 31 - type: Transform - uid: 26 components: - - flags: PvsPriority - type: MetaData - - pos: 15.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-18.5 parent: 31 - type: Transform - uid: 112 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-16.5 parent: 31 - type: Transform - uid: 118 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-17.5 parent: 31 - type: Transform - uid: 126 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-6.5 parent: 31 - type: Transform - uid: 136 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-18.5 parent: 31 - type: Transform - uid: 139 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-13.5 parent: 31 - type: Transform - uid: 144 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-1.5 parent: 31 - type: Transform - uid: 165 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -31.5,1.5 parent: 31 - type: Transform - uid: 217 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-18.5 parent: 31 - type: Transform - uid: 251 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,16.5 parent: 31 - type: Transform - uid: 268 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-13.5 parent: 31 - type: Transform - uid: 343 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,2.5 parent: 31 - type: Transform - uid: 400 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -27.5,-12.5 parent: 31 - type: Transform - uid: 404 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-7.5 parent: 31 - type: Transform - uid: 416 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-13.5 parent: 31 - type: Transform - uid: 454 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,21.5 parent: 31 - type: Transform - uid: 472 components: - - flags: PvsPriority - type: MetaData - - pos: 19.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-23.5 parent: 31 - type: Transform - uid: 477 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-6.5 parent: 31 - type: Transform - uid: 484 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-23.5 parent: 31 - type: Transform - uid: 527 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-3.5 parent: 31 - type: Transform - uid: 528 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-1.5 parent: 31 - type: Transform - uid: 551 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-6.5 parent: 31 - type: Transform - uid: 582 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-3.5 parent: 31 - type: Transform - uid: 596 components: - - flags: PvsPriority - type: MetaData - - pos: 9.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,26.5 parent: 31 - type: Transform - uid: 603 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-10.5 parent: 31 - type: Transform - uid: 610 components: - - flags: PvsPriority - type: MetaData - - pos: -7.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-7.5 parent: 31 - type: Transform - uid: 612 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-7.5 parent: 31 - type: Transform - uid: 641 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-13.5 parent: 31 - type: Transform - uid: 659 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,8.5 parent: 31 - type: Transform - uid: 663 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-8.5 parent: 31 - type: Transform - uid: 670 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-25.5 parent: 31 - type: Transform - uid: 671 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-19.5 parent: 31 - type: Transform - uid: 685 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-8.5 parent: 31 - type: Transform - uid: 687 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-8.5 parent: 31 - type: Transform - uid: 688 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-10.5 parent: 31 - type: Transform - uid: 734 components: - - flags: PvsPriority - type: MetaData - - pos: -7.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-13.5 parent: 31 - type: Transform - uid: 777 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-14.5 parent: 31 - type: Transform - uid: 784 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-13.5 parent: 31 - type: Transform - uid: 796 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-4.5 parent: 31 - type: Transform - uid: 827 components: - - flags: PvsPriority - type: MetaData - - pos: 44.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,-6.5 parent: 31 - type: Transform - uid: 875 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-25.5 parent: 31 - type: Transform - uid: 903 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-6.5 parent: 31 - type: Transform - uid: 906 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-5.5 parent: 31 - type: Transform - uid: 907 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-5.5 parent: 31 - type: Transform - uid: 908 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-5.5 parent: 31 - type: Transform - uid: 909 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-5.5 parent: 31 - type: Transform - uid: 912 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-2.5 parent: 31 - type: Transform - uid: 913 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-2.5 parent: 31 - type: Transform - uid: 914 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-2.5 parent: 31 - type: Transform - uid: 915 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-2.5 parent: 31 - type: Transform - uid: 916 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-2.5 parent: 31 - type: Transform - uid: 919 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-3.5 parent: 31 - type: Transform - uid: 922 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,2.5 parent: 31 - type: Transform - uid: 923 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,2.5 parent: 31 - type: Transform - uid: 924 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,2.5 parent: 31 - type: Transform - uid: 929 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-10.5 parent: 31 - type: Transform - uid: 930 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-9.5 parent: 31 - type: Transform - uid: 935 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-6.5 parent: 31 - type: Transform - uid: 960 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-8.5 parent: 31 - type: Transform - uid: 969 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-8.5 parent: 31 - type: Transform - uid: 1003 components: - - flags: PvsPriority - type: MetaData - - pos: -9.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,2.5 parent: 31 - type: Transform - uid: 1009 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,2.5 parent: 31 - type: Transform - uid: 1048 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-23.5 parent: 31 - type: Transform - uid: 1088 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-11.5 parent: 31 - type: Transform - uid: 1091 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-10.5 parent: 31 - type: Transform - uid: 1115 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,15.5 parent: 31 - type: Transform - uid: 1124 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-9.5 parent: 31 - type: Transform - uid: 1129 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-8.5 parent: 31 - type: Transform - uid: 1170 components: - - flags: PvsPriority - type: MetaData - - pos: -23.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,18.5 parent: 31 - type: Transform - uid: 1245 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,2.5 parent: 31 - type: Transform - uid: 1255 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,1.5 parent: 31 - type: Transform - uid: 1276 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,1.5 parent: 31 - type: Transform - uid: 1291 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,0.5 parent: 31 - type: Transform - uid: 1292 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-0.5 parent: 31 - type: Transform - uid: 1294 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-1.5 parent: 31 - type: Transform - uid: 1295 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-2.5 parent: 31 - type: Transform - uid: 1310 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-3.5 parent: 31 - type: Transform - uid: 1311 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-4.5 parent: 31 - type: Transform - uid: 1318 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-5.5 parent: 31 - type: Transform - uid: 1321 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-2.5 parent: 31 - type: Transform - uid: 1335 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-1.5 parent: 31 - type: Transform - uid: 1339 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-0.5 parent: 31 - type: Transform - uid: 1340 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,0.5 parent: 31 - type: Transform - uid: 1342 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,2.5 parent: 31 - type: Transform - uid: 1349 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-18.5 parent: 31 - type: Transform - uid: 1350 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,2.5 parent: 31 - type: Transform - uid: 1353 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-21.5 parent: 31 - type: Transform - uid: 1363 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,2.5 parent: 31 - type: Transform - uid: 1364 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,2.5 parent: 31 - type: Transform - uid: 1365 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-9.5 parent: 31 - type: Transform - uid: 1378 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,1.5 parent: 31 - type: Transform - uid: 1420 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-18.5 parent: 31 - type: Transform - uid: 1426 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,1.5 parent: 31 - type: Transform - uid: 1441 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -13.5,-20.5 parent: 31 - type: Transform - uid: 1458 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-23.5 parent: 31 - type: Transform - uid: 1461 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-6.5 parent: 31 - type: Transform - uid: 1471 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -29.5,-14.5 parent: 31 - type: Transform - uid: 1476 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-9.5 parent: 31 - type: Transform - uid: 1534 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-7.5 parent: 31 - type: Transform - uid: 1579 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,1.5 parent: 31 - type: Transform - uid: 1587 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,17.5 parent: 31 - type: Transform - uid: 1588 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,15.5 parent: 31 - type: Transform - uid: 1606 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-0.5 parent: 31 - type: Transform - uid: 1612 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-3.5 parent: 31 - type: Transform - uid: 1613 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,6.5 parent: 31 - type: Transform - uid: 1630 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,2.5 parent: 31 - type: Transform - uid: 1638 components: - - flags: PvsPriority - type: MetaData - - pos: -28.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,15.5 parent: 31 - type: Transform - uid: 1639 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-8.5 parent: 31 - type: Transform - uid: 1643 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-21.5 parent: 31 - type: Transform - uid: 1644 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-19.5 parent: 31 - type: Transform - uid: 1645 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-19.5 parent: 31 - type: Transform - uid: 1646 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-19.5 parent: 31 - type: Transform - uid: 1647 components: - - flags: PvsPriority - type: MetaData - - pos: 27.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-19.5 parent: 31 - type: Transform - uid: 1652 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-8.5 parent: 31 - type: Transform - uid: 1653 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,25.5 parent: 31 - type: Transform - uid: 1669 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,15.5 parent: 31 - type: Transform - uid: 1670 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,24.5 parent: 31 - type: Transform - uid: 1671 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,15.5 parent: 31 - type: Transform - uid: 1672 components: - - flags: PvsPriority - type: MetaData - - pos: -23.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,15.5 parent: 31 - type: Transform - uid: 1673 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,15.5 parent: 31 - type: Transform - uid: 1674 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,17.5 parent: 31 - type: Transform - uid: 1677 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,21.5 parent: 31 - type: Transform - uid: 1679 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,15.5 parent: 31 - type: Transform - uid: 1685 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-12.5 parent: 31 - type: Transform - uid: 1690 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,13.5 parent: 31 - type: Transform - uid: 1697 components: - - flags: PvsPriority - type: MetaData - - pos: -38.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,11.5 parent: 31 - type: Transform - uid: 1768 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-7.5 parent: 31 - type: Transform - uid: 1774 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,12.5 parent: 31 - type: Transform - uid: 1775 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,11.5 parent: 31 - type: Transform - uid: 1784 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,11.5 parent: 31 - type: Transform - uid: 1811 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,2.5 parent: 31 - type: Transform - uid: 1812 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,2.5 parent: 31 - type: Transform - uid: 1813 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,2.5 parent: 31 - type: Transform - uid: 1823 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,0.5 parent: 31 - type: Transform - uid: 1825 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,15.5 parent: 31 - type: Transform - uid: 1827 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,14.5 parent: 31 - type: Transform - uid: 1835 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,26.5 parent: 31 - type: Transform - uid: 2008 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-20.5 parent: 31 - type: Transform - uid: 2017 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-21.5 parent: 31 - type: Transform - uid: 2018 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-21.5 parent: 31 - type: Transform - uid: 2019 components: - - flags: PvsPriority - type: MetaData - - pos: 9.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-21.5 parent: 31 - type: Transform - uid: 2021 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-21.5 parent: 31 - type: Transform - uid: 2022 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-21.5 parent: 31 - type: Transform - uid: 2023 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-21.5 parent: 31 - type: Transform - uid: 2024 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-22.5 parent: 31 - type: Transform - uid: 2025 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-23.5 parent: 31 - type: Transform - uid: 2027 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-25.5 parent: 31 - type: Transform - uid: 2028 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-11.5 parent: 31 - type: Transform - uid: 2034 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-21.5 parent: 31 - type: Transform - uid: 2035 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-22.5 parent: 31 - type: Transform - uid: 2036 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-22.5 parent: 31 - type: Transform - uid: 2057 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,10.5 parent: 31 - type: Transform - uid: 2058 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,1.5 parent: 31 - type: Transform - uid: 2059 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,7.5 parent: 31 - type: Transform - uid: 2060 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,6.5 parent: 31 - type: Transform - uid: 2061 components: - - flags: PvsPriority - type: MetaData - - pos: -32.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -32.5,6.5 parent: 31 - type: Transform - uid: 2062 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,6.5 parent: 31 - type: Transform - uid: 2063 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,6.5 parent: 31 - type: Transform - uid: 2067 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,6.5 parent: 31 - type: Transform - uid: 2068 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,7.5 parent: 31 - type: Transform - uid: 2070 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,7.5 parent: 31 - type: Transform - uid: 2071 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,8.5 parent: 31 - type: Transform - uid: 2072 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,9.5 parent: 31 - type: Transform - uid: 2073 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,10.5 parent: 31 - type: Transform - uid: 2074 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,11.5 parent: 31 - type: Transform - uid: 2075 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,12.5 parent: 31 - type: Transform - uid: 2076 components: - - flags: PvsPriority - type: MetaData - - pos: -28.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,12.5 parent: 31 - type: Transform - uid: 2077 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,12.5 parent: 31 - type: Transform - uid: 2078 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,12.5 parent: 31 - type: Transform - uid: 2079 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,12.5 parent: 31 - type: Transform - uid: 2081 components: - - flags: PvsPriority - type: MetaData - - pos: -23.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,12.5 parent: 31 - type: Transform - uid: 2083 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,12.5 parent: 31 - type: Transform - uid: 2084 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,11.5 parent: 31 - type: Transform - uid: 2085 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,11.5 parent: 31 - type: Transform - uid: 2086 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,11.5 parent: 31 - type: Transform - uid: 2089 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,7.5 parent: 31 - type: Transform - uid: 2090 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,7.5 parent: 31 - type: Transform - uid: 2091 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,6.5 parent: 31 - type: Transform - uid: 2094 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,11.5 parent: 31 - type: Transform - uid: 2112 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,2.5 parent: 31 - type: Transform - uid: 2113 components: - - flags: PvsPriority - type: MetaData - - pos: 22.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,2.5 parent: 31 - type: Transform - uid: 2121 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,2.5 parent: 31 - type: Transform - uid: 2122 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,2.5 parent: 31 - type: Transform - uid: 2123 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,2.5 parent: 31 - type: Transform - uid: 2124 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,1.5 parent: 31 - type: Transform - uid: 2135 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-3.5 parent: 31 - type: Transform - uid: 2139 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-6.5 parent: 31 - type: Transform - uid: 2140 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-12.5 parent: 31 - type: Transform - uid: 2144 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-9.5 parent: 31 - type: Transform - uid: 2162 components: - - flags: PvsPriority - type: MetaData - - pos: 21.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-3.5 parent: 31 - type: Transform - uid: 2163 components: - - flags: PvsPriority - type: MetaData - - pos: 22.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,-3.5 parent: 31 - type: Transform - uid: 2164 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-3.5 parent: 31 - type: Transform - uid: 2165 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,-3.5 parent: 31 - type: Transform - uid: 2166 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-3.5 parent: 31 - type: Transform - uid: 2167 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-4.5 parent: 31 - type: Transform - uid: 2168 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-5.5 parent: 31 - type: Transform - uid: 2169 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-7.5 parent: 31 - type: Transform - uid: 2176 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-7.5 parent: 31 - type: Transform - uid: 2178 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-4.5 parent: 31 - type: Transform - uid: 2214 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-6.5 parent: 31 - type: Transform - uid: 2224 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,8.5 parent: 31 - type: Transform - uid: 2226 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,13.5 parent: 31 - type: Transform - uid: 2228 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-20.5 parent: 31 - type: Transform - uid: 2243 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,1.5 parent: 31 - type: Transform - uid: 2244 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,2.5 parent: 31 - type: Transform - uid: 2246 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-3.5 parent: 31 - type: Transform - uid: 2248 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-5.5 parent: 31 - type: Transform - uid: 2249 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-6.5 parent: 31 - type: Transform - uid: 2252 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-2.5 parent: 31 - type: Transform - uid: 2254 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-9.5 parent: 31 - type: Transform - uid: 2255 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-7.5 parent: 31 - type: Transform - uid: 2256 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-11.5 parent: 31 - type: Transform - uid: 2257 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-12.5 parent: 31 - type: Transform - uid: 2258 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-8.5 parent: 31 - type: Transform - uid: 2259 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-12.5 parent: 31 - type: Transform - uid: 2262 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-12.5 parent: 31 - type: Transform - uid: 2265 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 21.5,-18.5 parent: 31 - type: Transform - uid: 2267 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-11.5 parent: 31 - type: Transform - uid: 2268 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-10.5 parent: 31 - type: Transform - uid: 2270 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-11.5 parent: 31 - type: Transform - uid: 2271 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-11.5 parent: 31 - type: Transform - uid: 2273 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-11.5 parent: 31 - type: Transform - uid: 2274 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-11.5 parent: 31 - type: Transform - uid: 2275 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-12.5 parent: 31 - type: Transform - uid: 2279 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-17.5 parent: 31 - type: Transform - uid: 2285 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-17.5 parent: 31 - type: Transform - uid: 2286 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-17.5 parent: 31 - type: Transform - uid: 2289 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-20.5 parent: 31 - type: Transform - uid: 2295 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -29.5,-17.5 parent: 31 - type: Transform - uid: 2320 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-13.5 parent: 31 - type: Transform - uid: 2327 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,14.5 parent: 31 - type: Transform - uid: 2346 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-17.5 parent: 31 - type: Transform - uid: 2347 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-13.5 parent: 31 - type: Transform - uid: 2349 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-18.5 parent: 31 - type: Transform - uid: 2351 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -30.5,-12.5 parent: 31 - type: Transform - uid: 2352 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -31.5,-12.5 parent: 31 - type: Transform - uid: 2359 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-28.5 parent: 31 - type: Transform - uid: 2364 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-13.5 parent: 31 - type: Transform - uid: 2365 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-13.5 parent: 31 - type: Transform - uid: 2366 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-13.5 parent: 31 - type: Transform - uid: 2368 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-13.5 parent: 31 - type: Transform - uid: 2369 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-13.5 parent: 31 - type: Transform - uid: 2370 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-12.5 parent: 31 - type: Transform - uid: 2371 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-11.5 parent: 31 - type: Transform - uid: 2372 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -29.5,-12.5 parent: 31 - type: Transform - uid: 2373 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-9.5 parent: 31 - type: Transform - uid: 2375 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-8.5 parent: 31 - type: Transform - uid: 2376 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-8.5 parent: 31 - type: Transform - uid: 2377 components: - - flags: PvsPriority - type: MetaData - - pos: -15.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-9.5 parent: 31 - type: Transform - uid: 2378 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-8.5 parent: 31 - type: Transform - uid: 2379 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-8.5 parent: 31 - type: Transform - uid: 2380 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-9.5 parent: 31 - type: Transform - uid: 2381 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-10.5 parent: 31 - type: Transform - uid: 2382 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-11.5 parent: 31 - type: Transform - uid: 2388 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-7.5 parent: 31 - type: Transform - uid: 2392 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-4.5 parent: 31 - type: Transform - uid: 2396 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-7.5 parent: 31 - type: Transform - uid: 2397 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-5.5 parent: 31 - type: Transform - uid: 2399 components: - - flags: PvsPriority - type: MetaData - - pos: -9.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-5.5 parent: 31 - type: Transform - uid: 2400 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-5.5 parent: 31 - type: Transform - uid: 2407 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,2.5 parent: 31 - type: Transform - uid: 2408 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,2.5 parent: 31 - type: Transform - uid: 2410 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,2.5 parent: 31 - type: Transform - uid: 2425 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-17.5 parent: 31 - type: Transform - uid: 2426 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-13.5 parent: 31 - type: Transform - uid: 2429 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,-23.5 parent: 31 - type: Transform - uid: 2430 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-9.5 parent: 31 - type: Transform - uid: 2431 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -31.5,8.5 parent: 31 - type: Transform - uid: 2435 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-9.5 parent: 31 - type: Transform - uid: 2436 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-3.5 parent: 31 - type: Transform - uid: 2441 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,-7.5 parent: 31 - type: Transform - uid: 2442 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-5.5 parent: 31 - type: Transform - uid: 2443 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-4.5 parent: 31 - type: Transform - uid: 2444 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-3.5 parent: 31 - type: Transform - uid: 2449 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-23.5 parent: 31 - type: Transform - uid: 2450 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-24.5 parent: 31 - type: Transform - uid: 2459 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,13.5 parent: 31 - type: Transform - uid: 2460 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,13.5 parent: 31 - type: Transform - uid: 2461 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-6.5 parent: 31 - type: Transform - uid: 2463 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,13.5 parent: 31 - type: Transform - uid: 2466 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-4.5 parent: 31 - type: Transform - uid: 2467 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-5.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-5.5 parent: 31 - type: Transform - uid: 2468 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-3.5 parent: 31 - type: Transform - uid: 2469 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-3.5 parent: 31 - type: Transform - uid: 2470 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-3.5 parent: 31 - type: Transform - uid: 2471 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-3.5 parent: 31 - type: Transform - uid: 2472 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-3.5 parent: 31 - type: Transform - uid: 2473 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-2.5 parent: 31 - type: Transform - uid: 2503 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-27.5 parent: 31 - type: Transform - uid: 2581 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-22.5 parent: 31 - type: Transform - uid: 2661 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-12.5 parent: 31 - type: Transform - uid: 2662 components: - - flags: PvsPriority - type: MetaData - - pos: 15.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-12.5 parent: 31 - type: Transform - uid: 2665 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-12.5 parent: 31 - type: Transform - uid: 2666 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-12.5 parent: 31 - type: Transform - uid: 2667 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-12.5 parent: 31 - type: Transform - uid: 3376 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,18.5 parent: 31 - type: Transform - uid: 3405 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-8.5 parent: 31 - type: Transform - uid: 3416 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 17.5,-19.5 parent: 31 - type: Transform - uid: 3592 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-23.5 parent: 31 - type: Transform - uid: 3595 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-23.5 parent: 31 - type: Transform - uid: 3623 components: - - flags: PvsPriority - type: MetaData - - pos: 9.5,24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,24.5 parent: 31 - type: Transform - uid: 3875 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,23.5 parent: 31 - type: Transform - uid: 3915 components: - - flags: PvsPriority - type: MetaData - - pos: -9.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-8.5 parent: 31 - type: Transform - uid: 3916 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-7.5 parent: 31 - type: Transform - uid: 3925 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,0.5 parent: 31 - type: Transform - uid: 3926 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-24.5 parent: 31 - type: Transform - uid: 3955 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,7.5 parent: 31 - type: Transform - uid: 3973 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,0.5 parent: 31 - type: Transform - uid: 3993 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-26.5 parent: 31 - type: Transform - uid: 4004 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-7.5 parent: 31 - type: Transform - uid: 4021 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-7.5 parent: 31 - type: Transform - uid: 4050 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-7.5 parent: 31 - type: Transform - uid: 4051 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-7.5 parent: 31 - type: Transform - uid: 4052 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-7.5 parent: 31 - type: Transform - uid: 4053 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-8.5 parent: 31 - type: Transform - uid: 4064 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-0.5 parent: 31 - type: Transform - uid: 4065 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-0.5 parent: 31 - type: Transform - uid: 4066 components: - - flags: PvsPriority - type: MetaData - - pos: -28.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-0.5 parent: 31 - type: Transform - uid: 4067 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-0.5 parent: 31 - type: Transform - uid: 4068 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,-0.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-0.5 parent: 31 - type: Transform - uid: 4069 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-3.5 parent: 31 - type: Transform - uid: 4070 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-3.5 parent: 31 - type: Transform - uid: 4071 components: - - flags: PvsPriority - type: MetaData - - pos: -28.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-3.5 parent: 31 - type: Transform - uid: 4072 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-6.5 parent: 31 - type: Transform - uid: 4073 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-6.5 parent: 31 - type: Transform - uid: 4074 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,-6.5 parent: 31 - type: Transform - uid: 4075 components: - - flags: PvsPriority - type: MetaData - - pos: -28.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -28.5,-6.5 parent: 31 - type: Transform - uid: 4076 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-6.5 parent: 31 - type: Transform - uid: 4077 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,-6.5 parent: 31 - type: Transform - uid: 4080 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-1.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-1.5 parent: 31 - type: Transform - uid: 4081 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-4.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-4.5 parent: 31 - type: Transform - uid: 4091 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-22.5 parent: 31 - type: Transform - uid: 4094 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-21.5 parent: 31 - type: Transform - uid: 4209 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-17.5 parent: 31 - type: Transform - uid: 4221 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-13.5 parent: 31 - type: Transform - uid: 4246 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-23.5 parent: 31 - type: Transform - uid: 4295 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-13.5 parent: 31 - type: Transform - uid: 4296 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,13.5 parent: 31 - type: Transform - uid: 4312 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-9.5 parent: 31 - type: Transform - uid: 4313 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-13.5 parent: 31 - type: Transform - uid: 4331 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-21.5 parent: 31 - type: Transform - uid: 4353 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 19.5,-19.5 parent: 31 - type: Transform - uid: 4458 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,2.5 parent: 31 - type: Transform - uid: 4506 components: - - flags: PvsPriority - type: MetaData - - pos: 34.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 34.5,-10.5 parent: 31 - type: Transform - uid: 4511 components: - - flags: PvsPriority - type: MetaData - - pos: 29.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 29.5,-18.5 parent: 31 - type: Transform - uid: 4520 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-18.5 parent: 31 - type: Transform - uid: 4558 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -29.5,-13.5 parent: 31 - type: Transform - uid: 4609 components: - - flags: PvsPriority - type: MetaData - - pos: 36.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 36.5,-16.5 parent: 31 - type: Transform - uid: 4657 components: - - flags: PvsPriority - type: MetaData - - pos: 30.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 30.5,-18.5 parent: 31 - type: Transform - uid: 4725 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-28.5 parent: 31 - type: Transform - uid: 4726 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-28.5 parent: 31 - type: Transform - uid: 4727 components: - - flags: PvsPriority - type: MetaData - - pos: 12.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-28.5 parent: 31 - type: Transform - uid: 4734 components: - - flags: PvsPriority - type: MetaData - - pos: 2.5,-41.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-41.5 parent: 31 - type: Transform - uid: 4741 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,25.5 parent: 31 - type: Transform - uid: 4742 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-29.5 parent: 31 - type: Transform - uid: 4750 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-29.5 parent: 31 - type: Transform - uid: 4751 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-30.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-30.5 parent: 31 - type: Transform - uid: 4756 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-13.5 parent: 31 - type: Transform - uid: 4778 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-24.5 parent: 31 - type: Transform - uid: 4836 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-13.5 parent: 31 - type: Transform - uid: 4857 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-9.5 parent: 31 - type: Transform - uid: 4885 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -29.5,-19.5 parent: 31 - type: Transform - uid: 4905 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 18.5,-19.5 parent: 31 - type: Transform - uid: 4946 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-24.5 parent: 31 - type: Transform - uid: 4950 components: - - flags: PvsPriority - type: MetaData - - pos: 27.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,-21.5 parent: 31 - type: Transform - uid: 4951 components: - - flags: PvsPriority - type: MetaData - - pos: 26.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 26.5,-21.5 parent: 31 - type: Transform - uid: 4954 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-22.5 parent: 31 - type: Transform - uid: 4981 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,18.5 parent: 31 - type: Transform - uid: 4984 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,18.5 parent: 31 - type: Transform - uid: 4985 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,18.5 parent: 31 - type: Transform - uid: 4986 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,17.5 parent: 31 - type: Transform - uid: 4987 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,16.5 parent: 31 - type: Transform - uid: 5011 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,13.5 parent: 31 - type: Transform - uid: 5114 components: - - flags: PvsPriority - type: MetaData - - pos: -23.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-17.5 parent: 31 - type: Transform - uid: 5118 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-13.5 parent: 31 - type: Transform - uid: 5138 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-9.5 parent: 31 - type: Transform - uid: 5142 components: - - flags: PvsPriority - type: MetaData - - pos: -23.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,21.5 parent: 31 - type: Transform - uid: 5143 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,21.5 parent: 31 - type: Transform - uid: 5152 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-12.5 parent: 31 - type: Transform - uid: 5156 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-13.5 parent: 31 - type: Transform - uid: 5192 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,38.5 parent: 31 - type: Transform - uid: 5211 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-10.5 parent: 31 - type: Transform - uid: 5221 components: - - flags: PvsPriority - type: MetaData - - pos: -26.5,-15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -26.5,-15.5 parent: 31 - type: Transform - uid: 5224 components: - - flags: PvsPriority - type: MetaData - - pos: 11.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-13.5 parent: 31 - type: Transform - uid: 5225 components: - - flags: PvsPriority - type: MetaData - - pos: -25.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -25.5,-17.5 parent: 31 - type: Transform - uid: 5228 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-7.5 parent: 31 - type: Transform - uid: 5609 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,18.5 parent: 31 - type: Transform - uid: 5756 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-17.5 parent: 31 - type: Transform - uid: 6095 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-12.5 parent: 31 - type: Transform - uid: 6141 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-18.5 parent: 31 - type: Transform - uid: 6524 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,18.5 parent: 31 - type: Transform - uid: 6618 components: - - flags: PvsPriority - type: MetaData - - pos: 21.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-17.5 parent: 31 - type: Transform - uid: 6697 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-7.5 parent: 31 - type: Transform - uid: 6965 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-11.5 parent: 31 - type: Transform - uid: 6969 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,-15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-15.5 parent: 31 - type: Transform - uid: 6970 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-16.5 parent: 31 - type: Transform - uid: 7046 components: - - flags: PvsPriority - type: MetaData - - pos: 31.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 31.5,-19.5 parent: 31 - type: Transform - uid: 7089 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,14.5 parent: 31 - type: Transform - uid: 7090 components: - - flags: PvsPriority - type: MetaData - - pos: 18.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,14.5 parent: 31 - type: Transform - uid: 7160 components: - - flags: PvsPriority - type: MetaData - - pos: 18.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-23.5 parent: 31 - type: Transform - uid: 7244 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-9.5 parent: 31 - type: Transform - uid: 7330 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,-7.5 parent: 31 - type: Transform - uid: 7357 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,17.5 parent: 31 - type: Transform - uid: 7368 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-23.5 parent: 31 - type: Transform - uid: 7406 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-21.5 parent: 31 - type: Transform - uid: 7478 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,17.5 parent: 31 - type: Transform - uid: 7501 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-39.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-39.5 parent: 31 - type: Transform - uid: 7532 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-40.5 parent: 31 - type: Transform - uid: 7534 components: - - flags: PvsPriority - type: MetaData - - pos: -4.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-40.5 parent: 31 - type: Transform - uid: 7538 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-36.5 parent: 31 - type: Transform - uid: 7539 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-36.5 parent: 31 - type: Transform - uid: 7542 components: - - flags: PvsPriority - type: MetaData - - pos: -16.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-36.5 parent: 31 - type: Transform - uid: 7544 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-36.5 parent: 31 - type: Transform - uid: 7549 components: - - flags: PvsPriority - type: MetaData - - pos: -2.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-40.5 parent: 31 - type: Transform - uid: 7553 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-37.5 parent: 31 - type: Transform - uid: 7558 components: - - flags: PvsPriority - type: MetaData - - pos: 15.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,13.5 parent: 31 - type: Transform - uid: 7569 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-36.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-36.5 parent: 31 - type: Transform - uid: 7591 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-8.5 parent: 31 - type: Transform - uid: 7598 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -29.5,-10.5 parent: 31 - type: Transform - uid: 7607 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -30.5,-10.5 parent: 31 - type: Transform - uid: 7675 components: - - flags: PvsPriority - type: MetaData - - pos: -37.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -37.5,16.5 parent: 31 - type: Transform - uid: 7821 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-37.5 parent: 31 - type: Transform - uid: 7952 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-20.5 parent: 31 - type: Transform - uid: 8057 components: - - flags: PvsPriority - type: MetaData - - pos: 21.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-16.5 parent: 31 - type: Transform - uid: 8301 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-41.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-41.5 parent: 31 - type: Transform - uid: 8312 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-19.5 parent: 31 - type: Transform - uid: 8317 components: - - flags: PvsPriority - type: MetaData - - pos: -7.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-17.5 parent: 31 - type: Transform - uid: 8365 components: - - flags: PvsPriority - type: MetaData - - pos: -13.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-17.5 parent: 31 - type: Transform - uid: 8366 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-30.5 parent: 31 - type: Transform - uid: 8372 components: - - flags: PvsPriority - type: MetaData - - pos: -6.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-17.5 parent: 31 - type: Transform - uid: 8421 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,-2.5 parent: 31 - type: Transform - uid: 8449 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-26.5 parent: 31 - type: Transform - uid: 8453 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-25.5 parent: 31 - type: Transform - uid: 8454 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-28.5 parent: 31 - type: Transform - uid: 8459 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-19.5 parent: 31 - type: Transform - uid: 8462 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-20.5 parent: 31 - type: Transform - uid: 8463 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-21.5 parent: 31 - type: Transform - uid: 8467 components: - - flags: PvsPriority - type: MetaData - - pos: 0.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-18.5 parent: 31 - type: Transform - uid: 8469 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-22.5 parent: 31 - type: Transform - uid: 8480 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-21.5 parent: 31 - type: Transform - uid: 8488 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,-20.5 parent: 31 - type: Transform - uid: 8489 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-24.5 parent: 31 - type: Transform - uid: 8493 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-23.5 parent: 31 - type: Transform - uid: 8494 components: - - flags: PvsPriority - type: MetaData - - pos: -14.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-19.5 parent: 31 - type: Transform - uid: 8495 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-17.5 parent: 31 - type: Transform - uid: 8718 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -32.5,-30.5 parent: 31 - type: Transform - uid: 8750 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-20.5 parent: 31 - type: Transform - uid: 8817 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,29.5 parent: 31 - type: Transform - uid: 8818 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,29.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,29.5 parent: 31 - type: Transform - uid: 8864 components: - - flags: PvsPriority - type: MetaData - - pos: -10.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-17.5 parent: 31 - type: Transform - uid: 8896 components: - - flags: PvsPriority - type: MetaData - - pos: -11.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-17.5 parent: 31 - type: Transform - uid: 8918 components: - - flags: PvsPriority - type: MetaData - - pos: -9.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-17.5 parent: 31 - type: Transform - uid: 8930 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-17.5 parent: 31 - type: Transform - uid: 8934 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-28.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-28.5 parent: 31 - type: Transform - uid: 8945 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,2.5 parent: 31 - type: Transform - uid: 9011 components: - - flags: PvsPriority - type: MetaData - - pos: -8.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-37.5 parent: 31 - type: Transform - uid: 9029 components: - - flags: PvsPriority - type: MetaData - - pos: 27.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 27.5,14.5 parent: 31 - type: Transform - uid: 9051 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,14.5 parent: 31 - type: Transform - uid: 9073 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-14.5 parent: 31 - type: Transform - uid: 9074 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-13.5 parent: 31 - type: Transform - uid: 9097 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 39.5,-7.5 parent: 31 - type: Transform - uid: 9112 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 39.5,-6.5 parent: 31 - type: Transform - uid: 9119 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,8.5 parent: 31 - type: Transform - uid: 9163 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-19.5 parent: 31 - type: Transform - uid: 9169 components: - - flags: PvsPriority - type: MetaData - - pos: -38.5,-2.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -38.5,-2.5 parent: 31 - type: Transform - uid: 9170 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,6.5 parent: 31 - type: Transform - uid: 9191 components: - - flags: PvsPriority - type: MetaData - - pos: -33.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -33.5,15.5 parent: 31 - type: Transform - uid: 9204 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,-5.5 parent: 31 - type: Transform - uid: 9228 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,16.5 parent: 31 - type: Transform - uid: 9252 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-17.5 parent: 31 - type: Transform - uid: 9254 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-19.5 parent: 31 - type: Transform - uid: 9255 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-13.5 parent: 31 - type: Transform - uid: 9256 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,-39.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-39.5 parent: 31 - type: Transform - uid: 9274 components: - - flags: PvsPriority - type: MetaData - - pos: -12.5,-37.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-37.5 parent: 31 - type: Transform - uid: 9289 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-41.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-41.5 parent: 31 - type: Transform - uid: 9295 components: - - flags: PvsPriority - type: MetaData - - pos: 3.5,-39.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-39.5 parent: 31 - type: Transform - uid: 9296 components: - - flags: PvsPriority - type: MetaData - - pos: 3.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-40.5 parent: 31 - type: Transform - uid: 9298 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-40.5 parent: 31 - type: Transform - uid: 9299 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-40.5 parent: 31 - type: Transform - uid: 9300 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-40.5 parent: 31 - type: Transform - uid: 9301 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-39.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-39.5 parent: 31 - type: Transform - uid: 9302 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,-39.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-39.5 parent: 31 - type: Transform - uid: 9303 components: - - flags: PvsPriority - type: MetaData - - pos: 9.5,-39.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-39.5 parent: 31 - type: Transform - uid: 9346 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 42.5,-5.5 parent: 31 - type: Transform - uid: 9347 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 41.5,-5.5 parent: 31 - type: Transform - uid: 9454 components: - - flags: PvsPriority - type: MetaData - - pos: 5.5,-42.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-42.5 parent: 31 - type: Transform - uid: 9517 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-3.5 parent: 31 - type: Transform - uid: 9518 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 40.5,-5.5 parent: 31 - type: Transform - uid: 9519 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 39.5,-5.5 parent: 31 - type: Transform - uid: 9530 components: - - flags: PvsPriority - type: MetaData - - pos: 18.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-3.5 parent: 31 - type: Transform - uid: 9531 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-18.5 parent: 31 - type: Transform - uid: 9532 components: - - flags: PvsPriority - type: MetaData - - pos: 19.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-3.5 parent: 31 - type: Transform - uid: 9533 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,13.5 parent: 31 - type: Transform - uid: 9566 components: - - flags: PvsPriority - type: MetaData - - pos: 24.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 24.5,7.5 parent: 31 - type: Transform - uid: 9568 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,6.5 parent: 31 - type: Transform - uid: 9581 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-23.5 parent: 31 - type: Transform - uid: 9601 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-12.5 parent: 31 - type: Transform - uid: 9602 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-13.5 parent: 31 - type: Transform - uid: 9603 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-14.5 parent: 31 - type: Transform - uid: 9604 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-15.5 parent: 31 - type: Transform - uid: 9605 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-12.5 parent: 31 - type: Transform - uid: 9606 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-16.5 parent: 31 - type: Transform - uid: 9609 components: - - flags: PvsPriority - type: MetaData - - pos: 3.5,-41.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-41.5 parent: 31 - type: Transform - uid: 9610 components: - - flags: PvsPriority - type: MetaData - - pos: 18.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,6.5 parent: 31 - type: Transform - uid: 9635 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-41.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-41.5 parent: 31 - type: Transform - uid: 9683 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,6.5 parent: 31 - type: Transform - uid: 9688 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,7.5 parent: 31 - type: Transform - uid: 9702 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,14.5 parent: 31 - type: Transform - uid: 9713 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-18.5 parent: 31 - type: Transform - uid: 9715 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-18.5 parent: 31 - type: Transform - uid: 9716 components: - - flags: PvsPriority - type: MetaData - - pos: 6.5,-17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-17.5 parent: 31 - type: Transform - uid: 9717 components: - - flags: PvsPriority - type: MetaData - - pos: 10.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-18.5 parent: 31 - type: Transform - uid: 9718 components: - - flags: PvsPriority - type: MetaData - - pos: 14.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-3.5 parent: 31 - type: Transform - uid: 9736 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,16.5 parent: 31 - type: Transform - uid: 9818 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,15.5 parent: 31 - type: Transform - uid: 9820 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,14.5 parent: 31 - type: Transform - uid: 9821 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,15.5 parent: 31 - type: Transform - uid: 9833 components: - - flags: PvsPriority - type: MetaData - - pos: 1.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-24.5 parent: 31 - type: Transform - uid: 9839 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 39.5,-10.5 parent: 31 - type: Transform - uid: 9840 components: - - flags: PvsPriority - type: MetaData - - pos: 8.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-12.5 parent: 31 - type: Transform - uid: 9841 components: - - flags: PvsPriority - type: MetaData - - pos: 7.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-12.5 parent: 31 - type: Transform - uid: 9858 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,17.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,17.5 parent: 31 - type: Transform - uid: 9866 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -33.5,8.5 parent: 31 - type: Transform - uid: 9880 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-3.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-3.5 parent: 31 - type: Transform - uid: 9916 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,6.5 parent: 31 - type: Transform - uid: 9918 components: - - flags: PvsPriority - type: MetaData - - pos: 13.5,-6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-6.5 parent: 31 - type: Transform - uid: 9919 components: - - flags: PvsPriority - type: MetaData - - pos: -5.5,26.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,26.5 parent: 31 - type: Transform - uid: 9987 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 31 - type: Transform - uid: 10013 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,18.5 parent: 31 - type: Transform - uid: 10034 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,-18.5 parent: 31 - type: Transform - uid: 10035 components: - - flags: PvsPriority - type: MetaData - - pos: -17.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-9.5 parent: 31 - type: Transform - uid: 10036 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-9.5 parent: 31 - type: Transform - uid: 10037 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-9.5 parent: 31 - type: Transform - uid: 10038 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,18.5 parent: 31 - type: Transform - uid: 10129 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 39.5,-11.5 parent: 31 - type: Transform - uid: 10219 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,6.5 parent: 31 - type: Transform - uid: 10220 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,6.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,6.5 parent: 31 - type: Transform - uid: 10353 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,-19.5 parent: 31 - type: Transform - uid: 10359 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,-10.5 parent: 31 - type: Transform - uid: 10435 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,16.5 parent: 31 - type: Transform - uid: 10436 components: - - flags: PvsPriority - type: MetaData - - pos: -36.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -36.5,16.5 parent: 31 - type: Transform - uid: 10437 components: - - flags: PvsPriority - type: MetaData - - pos: -35.5,16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -35.5,16.5 parent: 31 - type: Transform - uid: 10440 components: - - flags: PvsPriority - type: MetaData - - pos: -34.5,18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -34.5,18.5 parent: 31 - type: Transform - uid: 10474 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -20.5,-4.5 parent: 31 - type: Transform - uid: 10476 components: - - flags: PvsPriority - type: MetaData - - rot: 1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad pos: -20.5,-5.5 parent: 31 - type: Transform - uid: 10521 components: - - flags: PvsPriority - type: MetaData - - pos: -0.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-18.5 parent: 31 - type: Transform - uid: 10533 components: - - flags: PvsPriority - type: MetaData - - pos: -1.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-18.5 parent: 31 - type: Transform - uid: 10581 components: - - flags: PvsPriority - type: MetaData - - rot: -1.5707963267948966 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad pos: -27.5,-10.5 parent: 31 - type: Transform - uid: 10597 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 40.5,-13.5 parent: 31 - type: Transform - uid: 10598 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 40.5,-11.5 parent: 31 - type: Transform - uid: 10599 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 41.5,-11.5 parent: 31 - type: Transform - uid: 10600 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 42.5,-11.5 parent: 31 - type: Transform - uid: 10602 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,-11.5 parent: 31 - type: Transform - uid: 10603 components: - - flags: PvsPriority - type: MetaData - - rot: 3.141592653589793 rad + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad pos: 44.5,-10.5 parent: 31 - type: Transform + - uid: 11396 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-3.5 + parent: 31 + - uid: 11397 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -39.5,-5.5 + parent: 31 - proto: WallSolidRust entities: - uid: 419 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-9.5 parent: 31 - type: Transform - uid: 539 components: - - flags: PvsPriority - type: MetaData - - pos: 32.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 32.5,-8.5 parent: 31 - type: Transform - uid: 542 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-18.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-18.5 parent: 31 - type: Transform - uid: 1326 components: - - flags: PvsPriority - type: MetaData - - pos: 33.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 33.5,-8.5 parent: 31 - type: Transform - uid: 1384 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-25.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-25.5 parent: 31 - type: Transform - uid: 1385 components: - - flags: PvsPriority - type: MetaData - - pos: 25.5,-21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 25.5,-21.5 parent: 31 - type: Transform - uid: 1655 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,21.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,21.5 parent: 31 - type: Transform - uid: 1676 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,22.5 parent: 31 - type: Transform - uid: 1678 components: - - flags: PvsPriority - type: MetaData - - pos: -19.5,23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,23.5 parent: 31 - type: Transform - uid: 1806 components: - - flags: PvsPriority - type: MetaData - - pos: -22.5,12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -22.5,12.5 parent: 31 - type: Transform - uid: 3881 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,-13.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-13.5 parent: 31 - type: Transform - uid: 3901 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-23.5 parent: 31 - type: Transform - uid: 3903 components: - - flags: PvsPriority - type: MetaData - - pos: 23.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 23.5,-22.5 parent: 31 - type: Transform - uid: 3910 components: - - flags: PvsPriority - type: MetaData - - pos: -27.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -27.5,15.5 parent: 31 - type: Transform - uid: 4006 components: - - flags: PvsPriority - type: MetaData - - pos: -20.5,20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -20.5,20.5 parent: 31 - type: Transform - uid: 5005 components: - - flags: PvsPriority - type: MetaData - - pos: 20.5,-22.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-22.5 parent: 31 - type: Transform - uid: 5145 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,-14.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-14.5 parent: 31 - type: Transform - uid: 5146 components: - - flags: PvsPriority - type: MetaData - - pos: 37.5,-12.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 37.5,-12.5 parent: 31 - type: Transform - uid: 5147 components: - - flags: PvsPriority - type: MetaData - - pos: 35.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 35.5,-16.5 parent: 31 - type: Transform - uid: 5148 components: - - flags: PvsPriority - type: MetaData - - pos: 28.5,-19.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 28.5,-19.5 parent: 31 - type: Transform - uid: 5214 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,-10.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,-10.5 parent: 31 - type: Transform - uid: 7584 components: - - flags: PvsPriority - type: MetaData - - pos: -21.5,-24.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -21.5,-24.5 parent: 31 - type: Transform - uid: 8854 components: - - flags: PvsPriority - type: MetaData - - pos: 17.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-23.5 parent: 31 - type: Transform - uid: 9013 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-23.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-23.5 parent: 31 - type: Transform - uid: 9087 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,-8.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-8.5 parent: 31 - type: Transform - uid: 9297 components: - - flags: PvsPriority - type: MetaData - - pos: 4.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-40.5 parent: 31 - type: Transform - uid: 9376 components: - - flags: PvsPriority - type: MetaData - - pos: -24.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -24.5,-20.5 parent: 31 - type: Transform - uid: 9389 components: - - flags: PvsPriority - type: MetaData - - pos: -23.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -23.5,-20.5 parent: 31 - type: Transform - uid: 9596 components: - - flags: PvsPriority - type: MetaData - - pos: 16.5,-20.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-20.5 parent: 31 - type: Transform - uid: 9822 components: - - flags: PvsPriority - type: MetaData - - pos: 39.5,-9.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 39.5,-9.5 parent: 31 - type: Transform - uid: 10130 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,-16.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-16.5 parent: 31 - type: Transform - uid: 10133 components: - - flags: PvsPriority - type: MetaData - - pos: -29.5,-15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -29.5,-15.5 parent: 31 - type: Transform - uid: 10134 components: - - flags: PvsPriority - type: MetaData - - pos: -3.5,-40.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-40.5 parent: 31 - type: Transform - uid: 10137 components: - - flags: PvsPriority - type: MetaData - - pos: -18.5,-33.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-33.5 parent: 31 - type: Transform - uid: 10138 components: - - flags: PvsPriority - type: MetaData - - pos: 2.5,-42.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-42.5 parent: 31 - type: Transform - uid: 10417 components: - - flags: PvsPriority - type: MetaData - - pos: -31.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -31.5,15.5 parent: 31 - type: Transform - uid: 10422 components: - - flags: PvsPriority - type: MetaData - - pos: -30.5,15.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -30.5,15.5 parent: 31 - type: Transform - uid: 10601 components: - - flags: PvsPriority - type: MetaData - - pos: 43.5,-11.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 43.5,-11.5 parent: 31 - type: Transform - uid: 10606 components: - - flags: PvsPriority - type: MetaData - - pos: 44.5,-7.5 + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 44.5,-7.5 parent: 31 - type: Transform - proto: WardrobeChapelFilled entities: - uid: 7630 components: - - pos: -38.5,19.5 + - type: Transform + pos: -38.5,19.5 parent: 31 - type: Transform - proto: WardrobeGreyFilled entities: - uid: 7693 components: - - pos: 10.5,-13.5 + - type: Transform + pos: 10.5,-13.5 parent: 31 - type: Transform - proto: WardrobePrisonFilled entities: - uid: 1161 components: - - pos: -13.5,7.5 + - type: Transform + pos: -13.5,7.5 parent: 31 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.14963 @@ -73517,30 +73719,30 @@ entities: - 0 - 0 - 0 - type: EntityStorage - uid: 1957 components: - - pos: -7.5,8.5 + - type: Transform + pos: -7.5,8.5 parent: 31 - type: Transform - proto: WardrobeRoboticsFilled entities: - uid: 9616 components: - - pos: -2.5,-25.5 + - type: Transform + pos: -2.5,-25.5 parent: 31 - type: Transform - proto: WardrobeWhite entities: - uid: 7110 components: - - desc: Smells of formaldehyde, smoke and menthol. + - type: MetaData + desc: Smells of formaldehyde, smoke and menthol. name: mortician's wardrobe - type: MetaData - - pos: 15.536513,-13.5 + - type: Transform + pos: 15.536513,-13.5 parent: 31 - type: Transform - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -73556,984 +73758,983 @@ entities: showEnts: False occludes: True ent: null - type: ContainerContainer - proto: WarningCO2 entities: - uid: 11013 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 41.5,20.5 parent: 31 - type: Transform - proto: WarningN2 entities: - uid: 11012 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 35.5,20.5 parent: 31 - type: Transform - proto: WarningN2O entities: - uid: 11006 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 39.5,20.5 parent: 31 - type: Transform - proto: WarningO2 entities: - uid: 11011 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 37.5,20.5 parent: 31 - type: Transform - proto: WarningPlasma entities: - uid: 11016 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 43.5,20.5 parent: 31 - type: Transform - proto: WarningTritium entities: - uid: 11017 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 45.5,20.5 parent: 31 - type: Transform - proto: WarningWaste entities: - uid: 6813 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 47.5,20.5 parent: 31 - type: Transform - proto: WarpPoint entities: - uid: 162 components: - - pos: 9.5,-26.5 + - type: Transform + pos: 9.5,-26.5 parent: 31 - type: Transform - - location: library - type: WarpPoint + - type: WarpPoint + location: library - proto: WarpPointBombing entities: - uid: 934 components: - - pos: -36.5,14.5 + - type: Transform + pos: -36.5,14.5 parent: 31 - type: Transform - - location: chapel - type: WarpPoint + - type: WarpPoint + location: chapel - uid: 2142 components: - - pos: 8.5,19.5 + - type: Transform + pos: 8.5,19.5 parent: 31 - type: Transform - - location: hop's office - type: WarpPoint + - type: WarpPoint + location: hop's office - uid: 4910 components: - - pos: 9.5,-9.5 + - type: Transform + pos: 9.5,-9.5 parent: 31 - type: Transform - - location: medbay - type: WarpPoint + - type: WarpPoint + location: medbay - uid: 7261 components: - - pos: 16.5,-0.5 + - type: Transform + pos: 16.5,-0.5 parent: 31 - type: Transform - - location: chemistry - type: WarpPoint + - type: WarpPoint + location: chemistry - uid: 7262 components: - - pos: 13.5,-15.5 + - type: Transform + pos: 13.5,-15.5 parent: 31 - type: Transform - - location: morgue - type: WarpPoint + - type: WarpPoint + location: morgue - uid: 9712 components: - - pos: -12.5,19.5 + - type: Transform + pos: -12.5,19.5 parent: 31 - type: Transform - - location: armory - type: WarpPoint + - type: WarpPoint + location: armory - uid: 10539 components: - - pos: -9.5,-20.5 + - type: Transform + pos: -9.5,-20.5 parent: 31 - type: Transform - - location: science - type: WarpPoint + - type: WarpPoint + location: science - uid: 11267 components: - - pos: 8.5,25.5 + - type: Transform + pos: 8.5,25.5 parent: 31 - type: Transform - - location: captain's quarters - type: WarpPoint + - type: WarpPoint + location: captain's quarters - uid: 11308 components: - - pos: 3.5,30.5 + - type: Transform + pos: 3.5,30.5 parent: 31 - type: Transform - - location: bridge - type: WarpPoint + - type: WarpPoint + location: bridge - uid: 11309 components: - - pos: -1.5,17.5 + - type: Transform + pos: -1.5,17.5 parent: 31 - type: Transform - - location: vault - type: WarpPoint + - type: WarpPoint + location: vault - uid: 11310 components: - - pos: 8.5,9.5 + - type: Transform + pos: 8.5,9.5 parent: 31 - type: Transform - - location: eva room - type: WarpPoint + - type: WarpPoint + location: eva room - uid: 11311 components: - - pos: 58.5,2.5 + - type: Transform + pos: 58.5,2.5 parent: 31 - type: Transform - - location: singularity engine - type: WarpPoint + - type: WarpPoint + location: singularity engine - uid: 11313 components: - - pos: 34.5,14.5 + - type: Transform + pos: 34.5,14.5 parent: 31 - type: Transform - - location: atmospherics - type: WarpPoint + - type: WarpPoint + location: atmospherics - uid: 11322 components: - - pos: 27.5,18.5 + - type: Transform + pos: 27.5,18.5 parent: 31 - type: Transform - - location: salvage - type: WarpPoint + - type: WarpPoint + location: salvage - uid: 11359 components: - - pos: 50.5,-5.5 + - type: Transform + pos: 50.5,-5.5 parent: 31 - type: Transform - - location: telecomms - type: WarpPoint + - type: WarpPoint + location: telecomms - proto: WaterCooler entities: - uid: 1156 components: - - pos: 1.5,16.5 + - type: Transform + pos: 1.5,16.5 parent: 31 - type: Transform - uid: 2217 components: - - pos: -5.5,15.5 + - type: Transform + pos: -5.5,15.5 parent: 31 - type: Transform - uid: 2500 components: - - pos: -10.5,-18.5 + - type: Transform + pos: -10.5,-18.5 parent: 31 - type: Transform - uid: 5314 components: - - pos: -2.5,31.5 + - type: Transform + pos: -2.5,31.5 parent: 31 - type: Transform - uid: 7533 components: - - pos: 49.5,-18.5 + - type: Transform + pos: 49.5,-18.5 parent: 31 - type: Transform - uid: 9098 components: - - pos: 31.5,2.5 + - type: Transform + pos: 31.5,2.5 parent: 31 - type: Transform - proto: WaterTankFull entities: - uid: 1162 components: - - pos: 27.5,-2.5 + - type: Transform + pos: 27.5,-2.5 parent: 31 - type: Transform - uid: 7986 components: - - pos: 37.5,-4.5 + - type: Transform + pos: 37.5,-4.5 parent: 31 - type: Transform - uid: 9789 components: - - pos: -7.5,-37.5 + - type: Transform + pos: -7.5,-37.5 parent: 31 - type: Transform - uid: 9825 components: - - pos: 17.5,-24.5 + - type: Transform + pos: 17.5,-24.5 parent: 31 - type: Transform - uid: 10644 components: - - pos: 39.5,-13.5 + - type: Transform + pos: 39.5,-13.5 parent: 31 - type: Transform - proto: WaterTankHighCapacity entities: - uid: 4897 components: - - pos: -20.5,1.5 + - type: Transform + pos: -20.5,1.5 parent: 31 - type: Transform - uid: 7896 components: - - pos: -17.5,-11.5 + - type: Transform + pos: -17.5,-11.5 parent: 31 - type: Transform - proto: WaterVaporCanister entities: - uid: 1562 components: - - pos: 35.5,12.5 + - type: Transform + pos: 35.5,12.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - uid: 6826 components: - - pos: 46.5,23.5 + - type: Transform + pos: 46.5,23.5 parent: 31 - type: Transform - - joinedGrid: 31 - type: AtmosDevice + - type: AtmosDevice + joinedGrid: 31 - proto: WeaponCapacitorRecharger entities: - uid: 4293 components: - - pos: -2.5,7.5 + - type: Transform + pos: -2.5,7.5 parent: 31 - type: Transform - uid: 8809 components: - - pos: 2.5,31.5 + - type: Transform + pos: 2.5,31.5 parent: 31 - type: Transform - - canCollide: False - type: Physics + - type: Physics + canCollide: False - uid: 10477 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,15.5 parent: 31 - type: Transform - proto: WeaponDisabler entities: - uid: 2340 components: - - pos: -14.505901,16.669767 + - type: Transform + pos: -14.505901,16.669767 parent: 31 - type: Transform - uid: 2404 components: - - pos: -14.623961,16.492775 + - type: Transform + pos: -14.623961,16.492775 parent: 31 - type: Transform - uid: 10465 components: - - pos: -14.594447,16.787762 + - type: Transform + pos: -14.594447,16.787762 parent: 31 - type: Transform - proto: WeaponPistolMk58 entities: - uid: 4096 components: - - pos: -14.641079,20.457024 + - type: Transform + pos: -14.641079,20.457024 parent: 31 - type: Transform - uid: 9731 components: - - pos: -14.625454,20.707024 + - type: Transform + pos: -14.625454,20.707024 parent: 31 - type: Transform - proto: WeaponShotgunKammerer entities: - uid: 8072 components: - - pos: -13.420591,18.645054 + - type: Transform + pos: -13.420591,18.645054 parent: 31 - type: Transform - uid: 8996 components: - - pos: -13.373716,18.332554 + - type: Transform + pos: -13.373716,18.332554 parent: 31 - type: Transform - proto: WeaponSubMachineGunWt550 entities: - uid: 1423 components: - - pos: -8.457573,20.768534 + - type: Transform + pos: -8.457573,20.768534 parent: 31 - type: Transform - proto: WeaponWaterBlaster entities: - uid: 8127 components: - - pos: -35.20547,-23.785456 + - type: Transform + pos: -35.20547,-23.785456 parent: 31 - type: Transform - proto: Welder entities: - uid: 7984 components: - - pos: 27.581085,-4.4702797 + - type: Transform + pos: 27.581085,-4.4702797 parent: 31 - type: Transform - uid: 9615 components: - - pos: -1.2244661,-24.408531 + - type: Transform + pos: -1.2244661,-24.408531 parent: 31 - type: Transform - proto: WelderIndustrial entities: - uid: 6180 components: - - pos: 42.356472,13.463804 + - type: Transform + pos: 42.356472,13.463804 parent: 31 - type: Transform - proto: WelderMini entities: - uid: 1309 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 17.758324,-20.712929 parent: 31 - type: Transform - uid: 2336 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -17.5344,-20.478468 parent: 31 - type: Transform - proto: WeldingFuelTankFull entities: - uid: 586 components: - - pos: 40.5,11.5 + - type: Transform + pos: 40.5,11.5 parent: 31 - type: Transform - uid: 1368 components: - - pos: -9.5,-9.5 + - type: Transform + pos: -9.5,-9.5 parent: 31 - type: Transform - uid: 2418 components: - - pos: -26.5,11.5 + - type: Transform + pos: -26.5,11.5 parent: 31 - type: Transform - uid: 2419 components: - - pos: 35.5,-4.5 + - type: Transform + pos: 35.5,-4.5 parent: 31 - type: Transform - uid: 4521 components: - - pos: 27.5,-20.5 + - type: Transform + pos: 27.5,-20.5 parent: 31 - type: Transform - uid: 6514 components: - - pos: 46.5,5.5 + - type: Transform + pos: 46.5,5.5 parent: 31 - type: Transform - uid: 7985 components: - - pos: 21.5,-2.5 + - type: Transform + pos: 21.5,-2.5 parent: 31 - type: Transform - uid: 8322 components: - - pos: 7.5,-20.5 + - type: Transform + pos: 7.5,-20.5 parent: 31 - type: Transform - uid: 9787 components: - - pos: 2.5,-40.5 + - type: Transform + pos: 2.5,-40.5 parent: 31 - type: Transform - proto: WheatSeeds entities: - uid: 9677 components: - - pos: -1.6659715,-42.461594 + - type: Transform + pos: -1.6659715,-42.461594 parent: 31 - type: Transform - proto: Windoor entities: - uid: 1030 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,20.5 parent: 31 - type: Transform - uid: 4892 components: - - pos: -1.5,6.5 + - type: Transform + pos: -1.5,6.5 parent: 31 - type: Transform - uid: 5086 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,-0.5 parent: 31 - type: Transform - uid: 5096 components: - - pos: 15.5,-3.5 + - type: Transform + pos: 15.5,-3.5 parent: 31 - type: Transform - uid: 5109 components: - - pos: 15.5,8.5 + - type: Transform + pos: 15.5,8.5 parent: 31 - type: Transform - uid: 8711 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -32.5,-32.5 parent: 31 - type: Transform - uid: 8717 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -35.5,-27.5 parent: 31 - type: Transform - uid: 8852 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 31 - type: Transform - proto: WindoorBarLocked entities: - uid: 9335 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,-4.5 parent: 31 - type: Transform - proto: WindoorKitchenHydroponicsLocked entities: - uid: 3878 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,0.5 parent: 31 - type: Transform - proto: WindoorSecureArmoryLocked entities: - uid: 5151 components: - - pos: -12.5,18.5 + - type: Transform + pos: -12.5,18.5 parent: 31 - type: Transform - proto: WindoorSecureCargoLocked entities: - uid: 2100 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,8.5 parent: 31 - type: Transform - proto: WindoorSecureChemistryLocked entities: - uid: 2932 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 16.5,-3.5 parent: 31 - type: Transform - uid: 9226 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 15.5,-3.5 parent: 31 - type: Transform - uid: 9227 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 13.5,-0.5 parent: 31 - type: Transform - proto: WindoorSecureEngineeringLocked entities: - uid: 8851 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 30.5,5.5 parent: 31 - type: Transform - proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 10143 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,20.5 parent: 31 - type: Transform - proto: WindoorSecureScienceLocked entities: - uid: 1379 components: - - pos: -16.5,-19.5 + - type: Transform + pos: -16.5,-19.5 parent: 31 - type: Transform - uid: 4870 components: - - pos: -15.5,-19.5 + - type: Transform + pos: -15.5,-19.5 parent: 31 - type: Transform - uid: 7273 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-26.5 parent: 31 - type: Transform - proto: WindoorSecureSecurityLocked entities: - uid: 4890 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,6.5 parent: 31 - type: Transform - proto: Window entities: - uid: 264 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 31 - type: Transform - uid: 836 components: - - pos: 54.5,-2.5 + - type: Transform + pos: 54.5,-2.5 parent: 31 - type: Transform - uid: 920 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-0.5 parent: 31 - type: Transform - uid: 997 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,2.5 parent: 31 - type: Transform - uid: 1002 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,2.5 parent: 31 - type: Transform - uid: 1190 components: - - pos: -18.5,2.5 + - type: Transform + pos: -18.5,2.5 parent: 31 - type: Transform - uid: 1191 components: - - pos: -19.5,2.5 + - type: Transform + pos: -19.5,2.5 parent: 31 - type: Transform - uid: 1332 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-24.5 parent: 31 - type: Transform - uid: 1351 components: - - pos: -25.5,9.5 + - type: Transform + pos: -25.5,9.5 parent: 31 - type: Transform - uid: 1463 components: - - pos: -29.5,6.5 + - type: Transform + pos: -29.5,6.5 parent: 31 - type: Transform - uid: 1464 components: - - pos: -28.5,6.5 + - type: Transform + pos: -28.5,6.5 parent: 31 - type: Transform - uid: 1465 components: - - pos: -27.5,6.5 + - type: Transform + pos: -27.5,6.5 parent: 31 - type: Transform - uid: 1497 components: - - pos: 7.5,2.5 + - type: Transform + pos: 7.5,2.5 parent: 31 - type: Transform - uid: 1498 components: - - pos: 8.5,2.5 + - type: Transform + pos: 8.5,2.5 parent: 31 - type: Transform - uid: 1499 components: - - pos: 9.5,2.5 + - type: Transform + pos: 9.5,2.5 parent: 31 - type: Transform - uid: 1500 components: - - pos: 10.5,2.5 + - type: Transform + pos: 10.5,2.5 parent: 31 - type: Transform - uid: 1501 components: - - pos: 11.5,2.5 + - type: Transform + pos: 11.5,2.5 parent: 31 - type: Transform - uid: 2155 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -35.5,11.5 parent: 31 - type: Transform - uid: 2197 components: - - pos: 20.5,-5.5 + - type: Transform + pos: 20.5,-5.5 parent: 31 - type: Transform - uid: 2263 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -17.5,-24.5 parent: 31 - type: Transform - uid: 2409 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 31 - type: Transform - uid: 3744 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 19.5,-14.5 parent: 31 - type: Transform - uid: 3795 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,-14.5 parent: 31 - type: Transform - uid: 4262 components: - - pos: 52.5,-2.5 + - type: Transform + pos: 52.5,-2.5 parent: 31 - type: Transform - uid: 4501 components: - - pos: 48.5,-6.5 + - type: Transform + pos: 48.5,-6.5 parent: 31 - type: Transform - uid: 4834 components: - - pos: -8.5,-24.5 + - type: Transform + pos: -8.5,-24.5 parent: 31 - type: Transform - uid: 5222 components: - - pos: 11.5,-16.5 + - type: Transform + pos: 11.5,-16.5 parent: 31 - type: Transform - uid: 6286 components: - - pos: 49.5,-6.5 + - type: Transform + pos: 49.5,-6.5 parent: 31 - type: Transform - uid: 7437 components: - - pos: 11.5,-17.5 + - type: Transform + pos: 11.5,-17.5 parent: 31 - type: Transform - uid: 7438 components: - - pos: 13.5,-10.5 + - type: Transform + pos: 13.5,-10.5 parent: 31 - type: Transform - uid: 7454 components: - - pos: 13.5,-11.5 + - type: Transform + pos: 13.5,-11.5 parent: 31 - type: Transform - uid: 7455 components: - - pos: 22.5,14.5 + - type: Transform + pos: 22.5,14.5 parent: 31 - type: Transform - uid: 7461 components: - - pos: 11.5,-15.5 + - type: Transform + pos: 11.5,-15.5 parent: 31 - type: Transform - uid: 7548 components: - - pos: 19.5,14.5 + - type: Transform + pos: 19.5,14.5 parent: 31 - type: Transform - uid: 7568 components: - - pos: 23.5,19.5 + - type: Transform + pos: 23.5,19.5 parent: 31 - type: Transform - uid: 7596 components: - - pos: 8.5,-11.5 + - type: Transform + pos: 8.5,-11.5 parent: 31 - type: Transform - uid: 7940 components: - - pos: 23.5,20.5 + - type: Transform + pos: 23.5,20.5 parent: 31 - type: Transform - uid: 7941 components: - - pos: 23.5,21.5 + - type: Transform + pos: 23.5,21.5 parent: 31 - type: Transform - uid: 8385 components: - - pos: 52.5,-6.5 + - type: Transform + pos: 52.5,-6.5 parent: 31 - type: Transform - uid: 9268 components: - - pos: -7.5,-24.5 + - type: Transform + pos: -7.5,-24.5 parent: 31 - type: Transform - uid: 9873 components: - - pos: 17.5,9.5 + - type: Transform + pos: 17.5,9.5 parent: 31 - type: Transform - uid: 10234 components: - - pos: 51.5,-6.5 + - type: Transform + pos: 51.5,-6.5 parent: 31 - type: Transform - uid: 10635 components: - - pos: 44.5,-8.5 + - type: Transform + pos: 44.5,-8.5 parent: 31 - type: Transform - uid: 10829 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -37.5,11.5 parent: 31 - type: Transform - proto: WindowDirectional entities: - uid: 197 components: - - pos: -6.5,-28.5 + - type: Transform + pos: -6.5,-28.5 parent: 31 - type: Transform - uid: 1343 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-8.5 parent: 31 - type: Transform - uid: 2311 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-24.5 parent: 31 - type: Transform - uid: 7321 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-8.5 parent: 31 - type: Transform - uid: 8207 components: - - pos: -5.5,-28.5 + - type: Transform + pos: -5.5,-28.5 parent: 31 - type: Transform - uid: 8710 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -33.5,-26.5 parent: 31 - type: Transform - uid: 8713 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -32.5,-31.5 parent: 31 - type: Transform - uid: 8714 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -34.5,-27.5 parent: 31 - type: Transform - uid: 8716 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -36.5,-27.5 parent: 31 - type: Transform - uid: 10273 components: - - pos: -32.5,-15.5 + - type: Transform + pos: -32.5,-15.5 parent: 31 - type: Transform - uid: 10274 components: - - pos: -31.5,-15.5 + - type: Transform + pos: -31.5,-15.5 parent: 31 - type: Transform - proto: WindowReinforcedDirectional entities: - uid: 4488 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,-14.5 parent: 31 - type: Transform - uid: 4489 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,-13.5 parent: 31 - type: Transform - uid: 4490 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 29.5,-12.5 parent: 31 - type: Transform - uid: 4493 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 33.5,-12.5 parent: 31 - type: Transform - uid: 4615 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 33.5,-13.5 parent: 31 - type: Transform - uid: 4616 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 31 - type: Transform - uid: 6481 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,9.5 parent: 31 - type: Transform - uid: 6599 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,10.5 parent: 31 - type: Transform - uid: 6602 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,11.5 parent: 31 - type: Transform - uid: 6847 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,12.5 parent: 31 - type: Transform - uid: 8887 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 32.5,5.5 parent: 31 - type: Transform - uid: 8902 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 32.5,6.5 parent: 31 - type: Transform - uid: 8942 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 17.5,1.5 parent: 31 - type: Transform - uid: 8943 components: - - pos: 19.5,0.5 + - type: Transform + pos: 19.5,0.5 parent: 31 - type: Transform - proto: Wrench entities: - uid: 5678 components: - - pos: 17.492687,-21.190275 + - type: Transform + pos: 17.492687,-21.190275 parent: 31 - type: Transform - uid: 7366 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5729136,-32.437004 parent: 31 - type: Transform - uid: 10984 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 59.909473,-5.528083 parent: 31 - type: Transform - proto: YellowOxygenTankFilled entities: - uid: 4626 components: - - pos: 59.472126,6.503501 + - type: Transform + pos: 59.472126,6.503501 parent: 31 - type: Transform - uid: 7794 components: - - pos: -23.521854,22.535301 + - type: Transform + pos: -23.521854,22.535301 parent: 31 - type: Transform - uid: 8741 components: - - pos: -32.638412,-27.48267 + - type: Transform + pos: -32.638412,-27.48267 parent: 31 - type: Transform ... diff --git a/Resources/Prototypes/Access/command.yml b/Resources/Prototypes/Access/command.yml index f71ca12f3ba..62193d5ffee 100644 --- a/Resources/Prototypes/Access/command.yml +++ b/Resources/Prototypes/Access/command.yml @@ -16,6 +16,11 @@ - Command - Captain - HeadOfPersonnel + - Cryogenics - type: accessLevel id: EmergencyShuttleRepealAll + +- type: accessLevel + id: Cryogenics + name: id-card-access-level-cryogenics diff --git a/Resources/Prototypes/Access/misc.yml b/Resources/Prototypes/Access/misc.yml index 848a27f4138..f79f1779c22 100644 --- a/Resources/Prototypes/Access/misc.yml +++ b/Resources/Prototypes/Access/misc.yml @@ -9,6 +9,7 @@ - HeadOfSecurity - ResearchDirector - Command + - Cryogenics - Security - Detective - Armory diff --git a/Resources/Prototypes/Access/security.yml b/Resources/Prototypes/Access/security.yml index ec832bc761c..cfe94dd78af 100644 --- a/Resources/Prototypes/Access/security.yml +++ b/Resources/Prototypes/Access/security.yml @@ -26,6 +26,7 @@ - Armory - Brig - Detective + - Cryogenics - type: accessGroup id: Armory diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 3c7597f14e6..c63071551b9 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -314,6 +314,7 @@ iconOn: Interface/Actions/eyeclose.png event: !type:ToggleEyesActionEvent useDelay: 1 # so u cant give yourself and observers eyestrain by rapidly spamming the action + checkCanInteract: false - type: entity id: ActionToggleWagging diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml index 89e457598c9..9777407ae43 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml @@ -33,7 +33,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockClothesFilled - cost: 4800 + cost: 4900 category: Service group: market diff --git a/Resources/Prototypes/Catalog/Fills/Crates/armory.yml b/Resources/Prototypes/Catalog/Fills/Crates/armory.yml index 0d06169a02c..081772b4a04 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/armory.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/armory.yml @@ -1,6 +1,8 @@ - type: entity id: CrateArmorySMG parent: CrateWeaponSecure + name: SMG crate + description: Contains two high-powered, semiautomatic rifles with four mags. Requires Armory access to open. components: - type: StorageFill contents: @@ -12,6 +14,8 @@ - type: entity id: CrateArmoryShotgun parent: CrateWeaponSecure + name: shotgun crate + description: For when the enemy absolutely needs to be replaced with lead. Contains two Enforcer Combat Shotguns, and some standard shotgun shells. Requires Armory access to open. components: - type: StorageFill contents: @@ -23,6 +27,8 @@ - type: entity id: CrateTrackingImplants parent: CrateWeaponSecure + name: tracking implants + description: Contains a handful of tracking implanters. Good for prisoners you'd like to release but still keep track of. components: - type: StorageFill contents: @@ -32,6 +38,8 @@ - type: entity parent: CrateWeaponSecure id: CrateTrainingBombs + name: training bombs + description: Contains three low-yield training bombs for security to learn defusal and safe ordnance disposal, EOD suit not included. Requires Armory access to open. components: - type: StorageFill contents: @@ -41,6 +49,8 @@ - type: entity id: CrateArmoryLaser parent: CrateWeaponSecure + name: lasers crate + description: Contains three standard-issue laser rifles. Requires Armory access to open. components: - type: StorageFill contents: @@ -50,6 +60,8 @@ - type: entity id: CrateArmoryPistols parent: CrateWeaponSecure + name: pistols crate + description: Contains two standard NT pistols with four mags. Requires Armory access to open. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/botany.yml b/Resources/Prototypes/Catalog/Fills/Crates/botany.yml index 198ebe501b6..92d33a1b98b 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/botany.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/botany.yml @@ -1,6 +1,8 @@ - type: entity id: CrateHydroponicsSeedsExotic parent: CrateHydroSecure + name: exotic seeds crate + description: Any entrepreneuring botanist's dream. Contains many different exotic seeds. Requires Hydroponics access to open. components: - type: StorageFill contents: @@ -26,6 +28,8 @@ - type: entity id: CrateHydroponicsSeedsMedicinal parent: CrateHydroSecure + name: medicinal seeds crate + description: The wannabe chemist's dream. The power of medicine is at your fingertips! Requires Hydroponics access to open. components: - type: StorageFill contents: @@ -43,6 +47,8 @@ - type: entity id: CrateHydroponicsTools parent: CrateHydroponics + name: hydroponics equipment crate + description: Supplies for growing a great garden! Contains some spray bottles of plant chemicals, a hatchet, a mini-hoe, scythe, as well as a pair of leather gloves and a botanist's apron. components: - type: StorageFill contents: @@ -58,6 +64,8 @@ - type: entity id: CrateHydroponicsSeeds parent: CrateHydroponics + name: seeds crate + description: Big things have small beginnings. Contains twelve different seeds. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml index a2db7606453..0fe73de1377 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/cargo.yml @@ -1,6 +1,8 @@ - type: entity id: CrateCargoLuxuryHardsuit parent: CratePirate + name: luxury mining hardsuit crate + description: Finally, a hardsuit Quartermasters could call their own. Centcomm has heard you, now stop asking. components: - type: StorageFill contents: @@ -149,7 +151,7 @@ orGroup: Weapons - id: Shovel prob: 0.01 - orGroup: Weapons + orGroup: Weapons - id: WeaponWaterPistol prob: 0.01 orGroup: Weapons @@ -256,10 +258,10 @@ orGroup: Swag - id: ClothingEyesGlassesGarGiga prob: 0.01 - orGroup: Swag + orGroup: Swag - id: ClothingEyesGlassesGarOrange prob: 0.01 - orGroup: Swag + orGroup: Swag - id: ClothingHeadHatChameleon prob: 0.01 orGroup: Swag @@ -385,4 +387,4 @@ orGroup: NotUseful - id: WeakKudzu prob: 0.01 - orGroup: NotUseful + orGroup: NotUseful diff --git a/Resources/Prototypes/Catalog/Fills/Crates/chemistry.yml b/Resources/Prototypes/Catalog/Fills/Crates/chemistry.yml index 5664fa2d44f..c4e2ed4a524 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/chemistry.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/chemistry.yml @@ -1,6 +1,8 @@ - type: entity id: CrateChemistryP parent: CrateChemistrySecure + name: chemicals crate (P) + description: Contains chemicals from the P-Block of elements. Requires Chemistry access to open. components: - type: StorageFill contents: @@ -28,6 +30,8 @@ - type: entity id: CrateChemistryS parent: CrateChemistrySecure + name: chemicals crate (S) + description: Contains chemicals from the S-Block of elements. Requires Chemistry access to open. components: - type: StorageFill contents: @@ -45,6 +49,8 @@ - type: entity id: CrateChemistryD parent: CrateChemistrySecure + name: chemicals crate (D) + description: Contains chemicals from the D-Block of elements. Requires Chemistry access to open. components: - type: StorageFill contents: @@ -62,6 +68,8 @@ - type: entity id: CratePlantBGone parent: CrateGenericSteel + name: bulk Plant-B-Gone crate + description: From Monstano. "Unwanted Weeds, Meet Your Celestial Roundup!" components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/circuitboards.yml b/Resources/Prototypes/Catalog/Fills/Crates/circuitboards.yml index 6f27776e876..899db4c37c7 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/circuitboards.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/circuitboards.yml @@ -1,6 +1,8 @@ - type: entity id: CrateCrewMonitoringBoards parent: CrateEngineeringSecure + name: crew monitoring boards + description: Has two crew monitoring console and server replacements. Requires engineering access to open. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml b/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml index 41278346d45..2e467f73d82 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml @@ -1,6 +1,8 @@ - type: entity id: CrateEmergencyExplosive parent: CrateSecgear + name: bomb suit crate + description: Science gone bonkers? Beeping behind the airlock? Buy now and be the hero the station des... I mean needs! (time not included) components: - type: StorageFill contents: @@ -14,6 +16,8 @@ - type: entity id: CrateEmergencyFire parent: CrateGenericSteel + name: firefighting crate + description: Only you can prevent station fires. Partner up with two firefighter suits, gas masks, flashlights, large oxygen tanks, extinguishers, and hardhats! components: - type: StorageFill contents: @@ -33,7 +37,8 @@ - type: entity id: CrateEmergencyInternals parent: CrateInternals - name: emergency suits + name: internals crate + description: Master your life energy and control your breathing with three breath masks, three emergency oxygen tanks and three large air tanks. components: - type: StorageFill contents: @@ -51,7 +56,8 @@ - type: entity id: CrateEmergencyInternalsLarge parent: CrateInternals - name: emergency suits (Large) + name: internals crate (large) + description: Master your life energy and control your breathing with six breath masks, six emergency oxygen tanks and six large air tanks. components: - type: StorageFill contents: @@ -69,6 +75,8 @@ - type: entity id: CrateSlimepersonLifeSupport parent: CrateInternals + name: slimeperson life support crate + description: Contains four breath masks and four large nitrogen tanks. components: - type: StorageFill contents: @@ -82,6 +90,8 @@ - type: entity id: CrateEmergencyRadiation parent: CrateRadiation + name: radiation protection crate + description: Survive the Nuclear Apocalypse and Supermatter Engine alike with two sets of Radiation suits. Each set contains a helmet, suit, and Geiger counter. We'll even throw in a bottle of vodka and some glasses too, considering the life-expectancy of people who order this. components: - type: StorageFill contents: @@ -96,6 +106,8 @@ - type: entity id: CrateEmergencyInflatablewall parent: CratePlastic + name: inflatable wall crate + description: Three stacks of inflatable walls for when the stations metal walls don't want to hold atmosphere anymore. components: - type: StorageFill contents: @@ -104,6 +116,8 @@ - type: entity id: CrateGenericBiosuit parent: CratePlastic + name: emergency bio suit crate + description: Contains 2 biohazard suits to ensure that no disease will distract you from what you're doing there. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml index 0313c846097..2e73ece53cd 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml @@ -1,6 +1,8 @@ - type: entity id: CrateEngineeringGear parent: CrateEngineering + name: engineering gear crate + description: Various engineering gear parts. components: - type: StorageFill contents: @@ -20,6 +22,8 @@ - type: entity id: CrateEngineeringToolbox parent: CrateEngineering + name: toolbox crate + description: Two mechanical and two electrical toolboxes. components: - type: StorageFill contents: @@ -31,6 +35,8 @@ #- type: entity # id: CrateEngineeringPowercell # parent: CrateElectrical +# name: AME crate +# description: Three microcreactor powercells. # components: # - type: StorageFill # contents: @@ -40,6 +46,8 @@ - type: entity id: CrateEngineeringCableLV parent: CrateElectrical + name: LV cable crate + description: 3 coils of LV cables. components: - type: StorageFill contents: @@ -49,6 +57,8 @@ - type: entity id: CrateEngineeringCableMV parent: CrateElectrical + name: MV cable crate + description: 3 coils of LV cables. components: - type: StorageFill contents: @@ -58,6 +68,8 @@ - type: entity id: CrateEngineeringCableHV parent: CrateElectrical + name: HV cable crate + description: 3 coils of HV cables. components: - type: StorageFill contents: @@ -67,6 +79,8 @@ - type: entity id: CrateEngineeringCableBulk parent: CrateElectrical + name: bulk cable crate + description: 2 coils each for every cable type. components: - type: StorageFill contents: @@ -80,6 +94,8 @@ - type: entity id: CrateEngineeringElectricalSupplies parent: CrateElectrical + name: electrical supplies crate + description: NT is not responsible for any workplace infighting relating to the insulated gloves included within these crates. components: - type: StorageFill contents: @@ -91,6 +107,8 @@ - type: entity id: CrateEngineeringStationBeaconBundle parent: CratePlastic + name: station beacon bundle + description: A crate containing 5 station beacon assemblies for modifying the station map. components: - type: StorageFill contents: @@ -100,6 +118,8 @@ - type: entity id: CrateEngineeringJetpack parent: CrateGenericSteel + name: jetpack crate + description: Two jetpacks for those who don't know how to use fire extinguishers. components: - type: StorageFill contents: @@ -109,6 +129,8 @@ - type: entity id: CrateEngineeringMiniJetpack parent: CrateGenericSteel + name: mini jetpack crate + description: Two mini jetpacks for those who want an extra challenge. components: - type: StorageFill contents: @@ -118,6 +140,8 @@ - type: entity id: CrateAirlockKit parent: CrateGenericSteel + name: airlock kit + description: A kit for building 6 airlocks, doesn't include tools. components: - type: StorageFill contents: @@ -129,6 +153,8 @@ - type: entity id: CrateEvaKit parent: CrateCommandSecure + name: EVA kit + description: A set consisting of two prestigious EVA suits and helmets. components: - type: StorageFill contents: @@ -140,6 +166,8 @@ - type: entity id: CrateRCDAmmo parent: CrateEngineering + name: RCD ammo crate + description: 3 RCD ammo, each restoring 5 charges. components: - type: StorageFill contents: @@ -149,6 +177,8 @@ - type: entity id: CrateRCD parent: CrateEngineeringSecure + name: RCD crate + description: A crate containing a single Rapid Construction Device. components: - type: StorageFill contents: @@ -157,6 +187,8 @@ - type: entity id: CrateParticleDecelerators parent: CrateEngineeringSecure + name: particle decelerators crate + description: A crate containing 3 Particle Decelerators. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engines.yml b/Resources/Prototypes/Catalog/Fills/Crates/engines.yml index 73bedacaf3b..3129e28b72d 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/engines.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/engines.yml @@ -3,6 +3,8 @@ - type: entity id: CrateEngineeringAMEShielding parent: CrateEngineeringSecure + name: packaged antimatter reactor crate + description: 9 parts for the main body of an antimatter reactor, or for expanding an existing one. components: - type: StorageFill contents: @@ -12,6 +14,8 @@ - type: entity id: CrateEngineeringAMEJar parent: CrateEngineeringSecure + name: antimatter containment jar crate + description: 3 antimatter jars, for fuelling an antimatter reactor. components: - type: StorageFill contents: @@ -21,6 +25,8 @@ - type: entity id: CrateEngineeringAMEControl parent: CrateEngineeringSecure + name: antimatter control unit crate + description: The control unit of an antimatter reactor. components: - type: StorageFill contents: @@ -31,6 +37,8 @@ - type: entity id: CrateEngineeringSingularityEmitter parent: CrateEngineeringSecure + name: emitter crate + description: An emitter, best used for singularity engines. components: - type: StorageFill contents: @@ -39,6 +47,8 @@ - type: entity id: CrateEngineeringSingularityCollector parent: CrateEngineeringSecure + name: radiation collector crate + description: A radiation collector, best used for singularity engines. components: - type: StorageFill contents: @@ -47,6 +57,8 @@ - type: entity id: CrateEngineeringSingularityContainment parent: CrateEngineeringSecure + name: containment field generator crate + description: A containment field generator, keeps the singulo in submission. components: - type: StorageFill contents: @@ -55,6 +67,8 @@ - type: entity id: CrateEngineeringSingularityGenerator parent: CrateEngineeringSecure + name: singularity generator crate + description: A singularity generator, the mother of the beast. components: - type: StorageFill contents: @@ -65,6 +79,8 @@ - type: entity id: CrateEngineeringParticleAccelerator parent: CrateEngineeringSecure + name: PA crate + description: Complex to setup, but rewarding as fuck. components: - type: StorageFill contents: @@ -80,8 +96,8 @@ #- type: entity # id: CrateEngineeringSingularity -# name: singularity crate -# description: "Prank the station!" +# name: singularity crate +# description: "Prank the station!" # parent: CrateEngineeringSecure # components: # - type: StorageFill @@ -92,6 +108,8 @@ - type: entity id: CrateEngineeringGenerator parent: CrateEngineering + name: generator crate + suffix: DEBUG components: - type: StorageFill contents: @@ -100,6 +118,8 @@ - type: entity id: CrateEngineeringSolar parent: CrateEngineering + name: solar assembly crate + description: Parts for constructing solar panels and trackers. components: - type: StorageFill contents: @@ -109,6 +129,8 @@ - type: entity id: CrateEngineeringShuttle parent: CrateEngineeringSecure + name: shuttle powering crate + description: A crate containing all needs for shuttle powering. components: - type: StorageFill contents: @@ -120,6 +142,8 @@ - type: entity id: CrateEngineeringTeslaGenerator parent: CrateEngineeringSecure + name: tesla generator crate + description: A tesla generator. God save you. components: - type: StorageFill contents: @@ -128,15 +152,19 @@ - type: entity id: CrateEngineeringTeslaCoil parent: CrateEngineeringSecure + name: tesla coil crate + description: Tesla coil. Attracts lightning and generates energy from it. components: - type: StorageFill contents: - id: TeslaCoil - + - type: entity id: CrateEngineeringTeslaGroundingRod parent: CrateEngineeringSecure + name: tesla grounding rod crate + description: Grounding rod, best for lightning protection. components: - type: StorageFill contents: - - id: TeslaGroundingRod \ No newline at end of file + - id: TeslaGroundingRod diff --git a/Resources/Prototypes/Catalog/Fills/Crates/food.yml b/Resources/Prototypes/Catalog/Fills/Crates/food.yml index e5ac193fa23..2e750ed4500 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/food.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/food.yml @@ -1,6 +1,8 @@ - type: entity id: CrateFoodPizza parent: CratePlastic + name: emergency pizza delivery + description: Help do your part to end station hunger by distributing pizza to underfunded departments! Includes 4 pizzas. components: - type: StorageFill contents: @@ -13,6 +15,8 @@ - type: entity id: CrateFoodPizzaLarge parent: CratePlastic + name: disaster pizza delivery + description: In the ultimate event that all else has failed, Find comfort in that more pizza solves everything. Includes 16 pizzas. components: - type: StorageFill contents: @@ -26,6 +30,8 @@ - type: entity id: CrateFoodMRE parent: CratePlastic + name: MRE crate + description: A military style meal fit to feed a whole department. components: - type: StorageFill contents: @@ -35,6 +41,8 @@ - type: entity id: CrateFoodCooking parent: CratePlastic + name: kitchen supplies crate + description: Extra kitchen supplies, in case the botanists are absent. components: - type: StorageFill contents: @@ -58,6 +66,8 @@ - type: entity id: CrateFoodDinnerware parent: CratePlastic + name: kitchen dinnerware crate + description: Extra kitchen supplies, in case the clown was allowed in the cafeteria unsupervised. components: - type: StorageFill contents: @@ -83,6 +93,8 @@ - type: entity id: CrateFoodBarSupply parent: CratePlastic + name: bartending supplies crate + description: Extra Bar supplies, in case the clown was allowed in the bar unsupervised. components: - type: StorageFill contents: @@ -108,6 +120,8 @@ - type: entity id: CrateFoodSoftdrinks parent: CratePlastic + name: softdrinks crate + description: A variety of sodas to complement a small party, without having to empty the soda machines. Includes 14 sodas. components: - type: StorageFill contents: @@ -127,6 +141,8 @@ - type: entity id: CrateFoodSoftdrinksLarge parent: CratePlastic + name: softdrinks bulk crate + description: Lots of sodas taken straight out of Centcomm's own vending machines, because you just can't leave your department. Includes 28 sodas. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index a22e6d76642..e6ec9602d56 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -1,6 +1,8 @@ - type: entity id: CrateFunPlushie parent: CrateGenericSteel + name: plushie crate + description: A buncha soft plushies. Throw them around and then wonder how you're gonna explain this purchase to NT. components: - type: StorageFill contents: @@ -31,6 +33,8 @@ - type: entity id: CrateFunLizardPlushieBulk parent: CrateGenericSteel + name: bulk lizard plushie crate + description: A buncha soft lizard plushies. Throw them around and then wonder how you're gonna explain this purchase to NT. components: - type: StorageFill contents: @@ -42,6 +46,8 @@ - type: entity id: CrateFunInstrumentsVariety parent: CrateGenericSteel + name: variety instrument collection + description: Get your sad station movin' and groovin' with this catch-all variety pack! Contains seven different instruments. components: - type: StorageFill contents: @@ -56,6 +62,8 @@ - type: entity id: CrateFunInstrumentsBrass parent: CrateGenericSteel + name: brass instrument ensemble crate + description: Bring some jazz to the station with the brass ensemble. Contains a variety of brass instruments for the whole station to play. components: - type: StorageFill contents: @@ -73,6 +81,8 @@ - type: entity id: CrateFunInstrumentsString parent: CrateGenericSteel + name: string instrument ensemble crate + description: Pluck or pick, slap or shred! Play a smooth melody or melt peoples' faces with this package of stringed instruments. components: - type: StorageFill contents: @@ -89,6 +99,8 @@ - type: entity id: CrateFunInstrumentsWoodwind parent: CrateGenericSteel + name: woodwind instrument ensemble crate + description: If atmos is good at their job, use air to play music with these woodwind instruments! Real wood not guaranteed with every item. components: - type: StorageFill contents: @@ -105,6 +117,8 @@ - type: entity id: CrateFunInstrumentsKeyedPercussion parent: CrateGenericSteel + name: keyed/percussion instrument ensemble crate + description: Hit some keys with some sticks or your hands, with this Keyed and Percussion instrument ensemble crate. components: - type: StorageFill contents: @@ -122,6 +136,8 @@ - type: entity id: CrateFunInstrumentsSpecial parent: CrateGenericSteel + name: special instrument collector's crate + description: Create some noise with this special collection of arguably-instruments! Centcomm is not responsible for any trauma caused by the contents. components: - type: StorageFill contents: @@ -139,6 +155,8 @@ - type: entity id: CrateFunArtSupplies parent: CrateGenericSteel + name: art supplies + description: Make some happy little accidents with lots of crayons! components: - type: StorageFill contents: @@ -147,6 +165,8 @@ - type: entity id: CrateFunBoardGames parent: CrateGenericSteel + name: board game crate + description: Game nights have been proven to either decrease boredom or increase murderous rage depending on the game. components: - type: StorageFill contents: @@ -165,6 +185,8 @@ - type: entity id: CrateFunATV parent: CrateLivestock + name: ATV crate + description: An Absolutely Taxable Vehicle to help cargo with hauling. components: - type: StorageFill contents: @@ -174,6 +196,8 @@ - type: entity id: CrateFunSadTromboneImplants parent: CrateGenericSteel + name: sad trombone implants + description: Death's never been so fun before! Implant these to make dying a bit more happy. components: - type: StorageFill contents: @@ -183,6 +207,8 @@ - type: entity id: CrateFunLightImplants parent: CrateGenericSteel + name: light implants + description: Light up your skin with these implants! components: - type: StorageFill contents: @@ -192,6 +218,8 @@ - type: entity id: CrateFunParty parent: CrateGenericSteel + name: party crate + description: An entire party just waiting for you to open it. Includes party favors, party beverages, and even a cake. components: - type: StorageFill contents: @@ -221,6 +249,8 @@ - type: entity id: CrateFunWaterGuns parent: CratePlastic + name: water gun crate + description: A summer special with a variety of brightly colored water guns. Water not included. components: - type: StorageFill contents: @@ -232,6 +262,8 @@ - type: entity id: CrateFunSyndicateSegway parent: CrateLivestock + name: Syndicate segway crate + description: A crate containing a two-wheeler that will help you escape from the security officers. Or not. components: - type: StorageFill contents: @@ -241,6 +273,8 @@ - type: entity id: CrateFunBoxing parent: CrateGenericSteel + name: boxing crate + description: Want to set up an underground fight club or host a tournament amongst station crew? This crate is for you! components: - type: StorageFill contents: @@ -256,6 +290,7 @@ - type: entity id: CrateFunPirate parent: CratePirate + suffix: Filled components: - type: StorageFill contents: @@ -296,6 +331,8 @@ - type: entity id: CrateFunBikeHornImplants parent: CrateGenericSteel + name: bike horn implants + description: A thousand honks a day keeps security officers away! components: - type: StorageFill contents: @@ -305,6 +342,8 @@ - type: entity id: CrateFunMysteryFigurines parent: CratePlastic + name: mystery figure crate + description: A collection of 10 Mystery Figurine boxes. Duplicates non refundable. components: - type: StorageFill contents: @@ -315,7 +354,7 @@ prob: 0.05 - type: entity - name: Dartboard Box Set + name: dartboard box set description: A box with everything you need for a fun game of darts. id: CrateFunDartsSet parent: CratePlastic diff --git a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml index dc73a5106a9..513ab46ffbf 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml @@ -1,6 +1,8 @@ - type: entity id: CrateMaterialGlass parent: CrateGenericSteel + name: glass sheet crate + description: 90 sheets of glass, packed with care. components: - type: StorageFill contents: @@ -10,6 +12,8 @@ - type: entity id: CrateMaterialSteel parent: CrateGenericSteel + name: steel sheet crate + description: 90 sheets of steel. components: - type: StorageFill contents: @@ -19,6 +23,8 @@ - type: entity id: CrateMaterialTextiles parent: CrateGenericSteel + name: textiles crate + description: 60 pieces of cloth and 30 pieces of durathread. components: - type: StorageFill contents: @@ -29,6 +35,8 @@ - type: entity id: CrateMaterialPlastic parent: CrateGenericSteel + name: plastic sheet crate + description: 90 sheets of plastic. components: - type: StorageFill contents: @@ -38,6 +46,8 @@ - type: entity id: CrateMaterialWood parent: CrateGenericSteel + name: wood crate + description: Bunch of wood planks. components: - type: StorageFill contents: @@ -46,6 +56,8 @@ - type: entity id: CrateMaterialPlasteel parent: CrateGenericSteel + name: plasteel crate + description: 90 sheets of plasteel. components: - type: StorageFill contents: @@ -55,6 +67,8 @@ - type: entity id: CrateMaterialPlasma parent: CratePlasma + name: solid plasma crate + description: 90 sheets of plasma. components: - type: StorageFill contents: @@ -64,6 +78,8 @@ - type: entity id: CrateMaterialCardboard parent: CrateGenericSteel + name: cardboard crate + description: 60 pieces of cardboard. components: - type: StorageFill contents: @@ -73,6 +89,8 @@ - type: entity id: CrateMaterialPaper parent: CrateGenericSteel + name: paper crate + description: 90 sheets of paper. components: - type: StorageFill contents: @@ -81,7 +99,7 @@ #- type: entity # id: CrateMaterialHFuelTank -# name: fueltank crate +# name: fueltank crate # parent: CrateGenericSteel # components: # - type: StorageFill @@ -91,7 +109,7 @@ #- type: entity # id: CrateMaterialHWaterTank -# name: watertank crate +# name: watertank crate # parent: CrateGenericSteel # components: # - type: StorageFill diff --git a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml index f478713c1a8..fe04f72899a 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml @@ -1,6 +1,8 @@ - type: entity id: CrateMedicalSupplies parent: CrateMedical + name: medical supplies crate + description: Basic medical supplies. components: - type: StorageFill contents: @@ -17,6 +19,8 @@ - type: entity id: CrateChemistrySupplies parent: CrateMedical + name: chemistry supplies crate + description: Basic chemistry supplies. components: - type: StorageFill contents: @@ -31,6 +35,8 @@ - type: entity id: CrateChemistryVials parent: CrateMedical + name: vial supply crate + description: Crate filled with a box of vials. components: - type: StorageFill contents: @@ -39,6 +45,8 @@ - type: entity id: CrateMindShieldImplants parent: CrateMedical + name: MindShield implant crate + description: Crate filled with 3 MindShield implants. components: - type: StorageFill contents: @@ -48,6 +56,8 @@ - type: entity id: CrateMedicalSurgery parent: CrateSurgery + name: surgical supplies crate + description: Surgical instruments. components: - type: StorageFill contents: @@ -62,6 +72,8 @@ - type: entity id: CrateMedicalScrubs parent: CrateMedical + name: medical scrubs crate + description: Medical clothings. components: - type: StorageFill contents: @@ -77,6 +89,8 @@ - type: entity id: CrateEmergencyBurnKit parent: CrateMedical + name: emergency burn kit + description: Crate filled with a burn treatment kit. components: - type: StorageFill contents: @@ -85,6 +99,8 @@ - type: entity id: CrateEmergencyToxinKit parent: CrateMedical + name: emergency toxin kit + description: Crate filled with a toxin treatment kit. components: - type: StorageFill contents: @@ -93,6 +109,8 @@ - type: entity id: CrateEmergencyO2Kit parent: CrateMedical + name: emergency O2 kit + description: Crate filled with an O2 treatment kit. components: - type: StorageFill contents: @@ -101,6 +119,8 @@ - type: entity id: CrateEmergencyBruteKit parent: CrateMedical + name: emergency brute kit + description: Crate filled with a brute treatment kit. components: - type: StorageFill contents: @@ -109,6 +129,8 @@ - type: entity id: CrateEmergencyAdvancedKit parent: CrateMedical + name: emergency advanced kit + description: Crate filled with an advanced treatment kit. components: - type: StorageFill contents: @@ -117,6 +139,8 @@ - type: entity id: CrateEmergencyRadiationKit parent: CrateMedical + name: emergency radiation kit + description: Crate filled with a radiation treatment kit. components: - type: StorageFill contents: @@ -125,6 +149,8 @@ - type: entity id: CrateBodyBags parent: CrateMedical + name: body bags crate + description: Contains ten body bags. components: - type: StorageFill contents: @@ -134,6 +160,8 @@ - type: entity id: CrateVirologyBiosuit parent: CrateMedicalSecure + name: virology bio suit crate + description: Contains 2 biohazard suits to ensure that no disease will distract you from treating the crew. Requires Medical access to open. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/npc.yml b/Resources/Prototypes/Catalog/Fills/Crates/npc.yml index 7960fe55985..538eee9a1b1 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/npc.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/npc.yml @@ -1,6 +1,8 @@ - type: entity id: CrateNPCBee parent: CrateLivestock + name: crate of bees + description: A crate containing a swarm of eight bees. components: - type: StorageFill contents: @@ -10,6 +12,8 @@ - type: entity id: CrateNPCButterflies parent: CrateLivestock + name: crate of butterflies + description: A crate containing five butterflies. components: - type: StorageFill contents: @@ -19,6 +23,8 @@ - type: entity id: CrateNPCCat parent: CrateLivestock + name: cat crate + description: A crate containing a single cat. components: - type: StorageFill contents: @@ -41,6 +47,8 @@ - type: entity id: CrateNPCChicken parent: CrateLivestock + name: chicken crate + description: A crate containing four fully grown chickens. components: - type: StorageFill contents: @@ -50,6 +58,8 @@ - type: entity id: CrateNPCCrab parent: CrateLivestock + name: crab crate + description: A crate containing three huge crabs. components: - type: StorageFill contents: @@ -59,6 +69,8 @@ - type: entity id: CrateNPCDuck parent: CrateLivestock + name: duck crate + description: A crate containing six fully grown ducks. components: - type: StorageFill contents: @@ -72,6 +84,8 @@ - type: entity id: CrateNPCCorgi parent: CrateLivestock + name: corgi crate + description: A crate containing a single corgi. components: - type: StorageFill contents: @@ -80,6 +94,8 @@ - type: entity id: CrateNPCPuppyCorgi parent: CrateLivestock + name: puppy corgi crate + description: A crate containing a single puppy corgi. Awww. components: - type: StorageFill contents: @@ -88,6 +104,8 @@ - type: entity id: CrateNPCCow parent: CrateLivestock + name: cow crate + description: A crate containing a single cow. components: - type: StorageFill contents: @@ -96,6 +114,8 @@ - type: entity id: CrateNPCGoat parent: CrateLivestock + name: goat crate + description: A crate containing a single goat. components: - type: StorageFill contents: @@ -104,6 +124,8 @@ - type: entity id: CrateNPCGoose parent: CrateLivestock + name: goose crate + description: A crate containing two geese. components: - type: StorageFill contents: @@ -113,6 +135,8 @@ - type: entity id: CrateNPCGorilla parent: CrateLivestock + name: gorilla crate + description: A crate containing a single gorilla. components: - type: StorageFill contents: @@ -121,6 +145,8 @@ - type: entity id: CrateNPCMonkeyCube parent: CrateGenericSteel + name: monkey cube crate + description: A crate containing single box of monkey cubes. components: - type: StorageFill contents: @@ -129,6 +155,8 @@ - type: entity id: CrateNPCKoboldCube parent: CrateGenericSteel + name: kobold cube crate + description: A crate containing single box of kobold cubes. components: - type: StorageFill contents: @@ -137,6 +165,8 @@ - type: entity id: CrateNPCMouse parent: CrateLivestock + name: mice crate + description: A crate containing five mice. components: - type: StorageFill contents: @@ -146,6 +176,8 @@ - type: entity id: CrateNPCParrot parent: CrateLivestock + name: parrot crate + description: A crate containing three parrots. components: - type: StorageFill contents: @@ -155,6 +187,8 @@ - type: entity id: CrateNPCPenguin parent: CrateLivestock + name: penguin crate + description: A crate containing two penguins. components: - type: StorageFill contents: @@ -164,6 +198,8 @@ - type: entity id: CrateNPCPig parent: CrateLivestock + name: pig crate + description: A crate containing a single pig. components: - type: StorageFill contents: @@ -172,6 +208,8 @@ - type: entity id: CrateNPCSnake parent: CrateLivestock + name: snake crate + description: A crate containing three snakes. components: - type: StorageFill contents: @@ -199,6 +237,8 @@ - type: entity id: CrateNPCLizard parent: CrateLivestock + name: lizard crate + description: A crate containing a lizard. components: - type: StorageFill contents: @@ -207,6 +247,8 @@ - type: entity id: CrateNPCKangaroo parent: CrateLivestock + name: kangaroo crate + description: A crate containing a kangaroo. components: - type: StorageFill contents: @@ -215,6 +257,8 @@ - type: entity id: CrateNPCMothroach parent: CrateLivestock + name: crate of mothroaches + description: A crate containing four mothroaches. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/science.yml b/Resources/Prototypes/Catalog/Fills/Crates/science.yml index 2ce0ff143ce..15ce05708e3 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/science.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/science.yml @@ -1,6 +1,8 @@ - type: entity id: CrateScienceBiosuit parent: CrateScienceSecure + name: scientist bio suit crate + description: Contains 2 biohazard suits to ensure that no disease will distract you from doing science. Requires Science access to open. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/security.yml b/Resources/Prototypes/Catalog/Fills/Crates/security.yml index b3ffbc4f9d0..c3448657d08 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/security.yml @@ -1,6 +1,8 @@ - type: entity id: CrateSecurityArmor parent: CrateSecgear + name: armor crate + description: Three vests of well-rounded, decently-protective armor. Requires Security access to open. components: - type: StorageFill contents: @@ -10,6 +12,8 @@ - type: entity id: CrateSecurityHelmet parent: CrateSecgear + name: helmet crate + description: Contains three standard-issue brain buckets. Requires Security access to open. components: - type: StorageFill contents: @@ -19,6 +23,8 @@ - type: entity id: CrateSecurityNonlethal parent: CrateSecgear + name: nonlethals crate + description: Disabler weapons. Requires Security access to open. components: - type: StorageFill contents: @@ -35,6 +41,8 @@ - type: entity id: CrateSecurityRiot parent: CrateSecgear + name: swat crate + description: Contains two sets of riot armor, helmets, shields, and enforcers loaded with beanbags. Extra ammo is included. Requires Armory access to open. components: - type: StorageFill contents: @@ -53,6 +61,8 @@ - type: entity id: CrateSecuritySupplies parent: CrateSecgear + name: security supplies crate + description: Contains various supplies for the station's Security team. Requires Security access to open. components: - type: StorageFill contents: @@ -65,6 +75,8 @@ - type: entity id: CrateRestraints parent: CrateSecgear + name: restraints crate + description: Contains two boxes each of handcuffs and zipties. Requires Security access to open. components: - type: StorageFill contents: @@ -76,6 +88,8 @@ - type: entity id: CrateSecurityBiosuit parent: CrateSecgear + name: security bio suit crate + description: Contains 2 biohazard suits to ensure that no disease will distract you from your duties. Requires Security access to open. components: - type: StorageFill contents: @@ -88,7 +102,8 @@ - type: entity id: CrateSecurityTrackingMindshieldImplants - name: Implanter Crate + name: implanter crate + description: Contains 4 MindShield implants and 4 tracking implant. Requires Security access to open. parent: CrateSecgear components: - type: StorageFill @@ -97,5 +112,5 @@ amount: 4 - id: TrackingImplanter amount: 4 - + # Cosmetic Crates diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index a1cb914a1ac..f78219d33e7 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -1,6 +1,8 @@ - type: entity id: CrateServiceJanitorialSupplies parent: CratePlastic + name: janitorial supplies crate + description: Fight back against dirt and grime with Nanotrasen's Janitorial Essentials(tm)! Contains three buckets, caution signs, and cleaner grenades. Also has a single mop, broom, spray cleaner, rag, and trash bag. components: - type: StorageFill contents: @@ -21,6 +23,8 @@ - type: entity id: CrateServiceReplacementLights parent: CrateGenericSteel + name: replacement lights crate + description: May the light of Aether shine upon this station! Or at least, the light of forty two light tubes and twenty one light bulbs. components: - type: StorageFill contents: @@ -30,6 +34,8 @@ - type: entity id: CrateMousetrapBoxes parent: CrateGenericSteel + name: mousetraps crate + description: Mousetraps, for when all of service is being haunted by an entire horde of rats. Use sparingly... or not. components: - type: StorageFill contents: @@ -38,6 +44,8 @@ - type: entity id: CrateServiceSmokeables parent: CrateGenericSteel + name: smokeables crate + description: Tired of a quick death on the station? Order this crate and chain-smoke your way to a coughy demise! components: - type: StorageFill contents: @@ -62,6 +70,8 @@ - type: entity id: CrateServiceTheatre parent: CrateGenericSteel + name: theatrical performances crate + description: Contains a moth cloak, barber scissors, maid uniform, clown and mime attributes, and other performance charms. components: - type: StorageFill contents: @@ -81,6 +91,8 @@ - type: entity id: CrateServiceCustomSmokable parent: CrateGenericSteel + name: DIY smokeables crate + description: Want to get a little creative with what you use to destroy your lungs? Then this crate is for you! Has everything you need to roll your own cigarettes. components: - type: StorageFill contents: @@ -95,6 +107,8 @@ - type: entity id: CrateServiceBureaucracy parent: CrateGenericSteel + name: bureaucracy crate + description: Several stacks of paper and a few pens, what more can you ask for. components: - type: StorageFill contents: @@ -103,7 +117,7 @@ - id: Pen amount: 2 - id: BoxFolderClipboard - amount: 2 + amount: 2 - id: HandLabeler - id: BoxFolderBlue - id: BoxFolderRed @@ -112,6 +126,8 @@ - type: entity id: CrateServicePersonnel parent: CrateCommandSecure + name: personnel crate + description: Contains a box of blank ID cards and PDAs. components: - type: StorageFill contents: @@ -121,6 +137,8 @@ - type: entity id: CrateServiceBooks parent: CrateGenericSteel + name: books crate + description: Contains 10 empty books of random appearance. components: - type: StorageFill contents: @@ -130,6 +148,8 @@ - type: entity id: CrateServiceGuidebooks parent: CrateGenericSteel + name: guidebooks crate + description: Contains guidebooks. components: - type: StorageFill contents: @@ -150,6 +170,8 @@ - type: entity id: CrateServiceBox parent: CratePlastic + name: boxes crate + description: Contains 6 empty multipurpose boxes. components: - type: StorageFill contents: @@ -159,6 +181,8 @@ - type: entity id: CrateJanitorBiosuit parent: CratePlastic + name: janitor bio suit crate + description: Contains 2 biohazard suits to ensure that no disease will distract you from cleaning. components: - type: StorageFill contents: @@ -247,6 +271,8 @@ - type: entity id: CrateJanitorExplosive parent: ClosetJanitorBomb + name: janitorial bomb suit crate + description: Supplies a bomb suit for cleaning up any explosive compounds, buy one today! components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/syndicate.yml b/Resources/Prototypes/Catalog/Fills/Crates/syndicate.yml index fac0cd8c940..a3b5967ba66 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/syndicate.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/syndicate.yml @@ -1,6 +1,8 @@ - type: entity id: CrateSyndicateSurplusBundle parent: CrateSyndicate + name: Syndicate surplus crate + description: Contains 50 telecrystals worth of completely random Syndicate items. It can be useless junk or really good. components: - type: SurplusBundle totalPrice: 50 @@ -8,6 +10,8 @@ - type: entity id: CrateSyndicateSuperSurplusBundle parent: CrateSyndicate + name: Syndicate super surplus crate + description: Contains 125 telecrystals worth of completely random Syndicate items. components: - type: SurplusBundle totalPrice: 125 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/vending.yml b/Resources/Prototypes/Catalog/Fills/Crates/vending.yml index 6697e64ed37..5a6b5ca089f 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/vending.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/vending.yml @@ -1,6 +1,8 @@ - type: entity id: CrateVendingMachineRestockBoozeFilled parent: CratePlastic + name: Booze-O-Mat restock crate + description: Contains a restock box for the Booze-O-Mat. components: - type: StorageFill contents: @@ -8,8 +10,9 @@ - type: entity id: CrateVendingMachineRestockChefvendFilled - name: ChefVend restock crate parent: CratePlastic + name: ChefVend restock crate + description: Contains a restock box for the ChefVend. components: - type: StorageFill contents: @@ -18,6 +21,8 @@ - type: entity id: CrateVendingMachineRestockClothesFilled parent: CratePlastic + name: clothing restock crate + description: Contains a pair of restock boxes, one for the ClothesMate and one for the AutoDrobe. components: - type: StorageFill contents: @@ -26,8 +31,9 @@ - type: entity id: CrateVendingMachineRestockCondimentStationFilled - name: condiment station restock crate parent: CratePlastic + name: condiment station restock crate + description: Contains a restock box for the condiment station. components: - type: StorageFill contents: @@ -36,6 +42,8 @@ - type: entity id: CrateVendingMachineRestockDinnerwareFilled parent: CratePlastic + name: Plasteel Chef restock crate + description: Contains a restock box for the Plasteel Chef vending machine. components: - type: StorageFill contents: @@ -44,6 +52,8 @@ - type: entity id: CrateVendingMachineRestockEngineeringFilled parent: CrateEngineeringSecure + name: EngiVend restock crate + description: Contains a restock box for the EngiVend. Also supports the YouTool. components: - type: StorageFill contents: @@ -52,6 +62,8 @@ - type: entity id: CrateVendingMachineRestockGamesFilled parent: CratePlastic + name: Good Clean Fun restock crate + description: Contains a restock box for the Good Clean Fun vending machine. components: - type: StorageFill contents: @@ -60,6 +72,8 @@ - type: entity id: CrateVendingMachineRestockHotDrinksFilled parent: CratePlastic + name: Solar's Best restock crate + description: Contains two restock boxes for Solar's Best Hot Drinks vending machine. components: - type: StorageFill contents: @@ -69,6 +83,8 @@ - type: entity id: CrateVendingMachineRestockMedicalFilled parent: CrateMedicalSecure + name: NanoMed restock crate + description: Contains a restock box, compatible with the NanoMed and NanoMedPlus. components: - type: StorageFill contents: @@ -77,6 +93,8 @@ - type: entity id: CrateVendingMachineRestockChemVendFilled parent: CrateMedicalSecure + name: ChemVend restock crate + description: Contains a restock box for the ChemVend. components: - type: StorageFill contents: @@ -85,6 +103,8 @@ - type: entity id: CrateVendingMachineRestockNutriMaxFilled parent: CrateHydroSecure + name: NutriMax restock crate + description: Contains a restock box for the NutriMax vending machine. components: - type: StorageFill contents: @@ -93,6 +113,8 @@ - type: entity id: CrateVendingMachineRestockPTechFilled parent: CratePlastic + name: PTech restock crate + description: Contains a restock box for the PTech bureaucracy dispenser. components: - type: StorageFill contents: @@ -101,6 +123,8 @@ - type: entity id: CrateVendingMachineRestockRobustSoftdrinksFilled parent: CratePlastic + name: Robust Softdrinks restock crate + description: Contains two restock boxes for the Robust Softdrinks LLC vending machine. components: - type: StorageFill contents: @@ -110,6 +134,8 @@ - type: entity id: CrateVendingMachineRestockSalvageEquipmentFilled parent: CrateGenericSteel + name: Salvage restock crate + description: Contains a restock box for the salvage vendor. components: - type: StorageFill contents: @@ -118,6 +144,8 @@ - type: entity id: CrateVendingMachineRestockSecTechFilled parent: CrateSecgear + name: SecTech restock crate + description: Contains a restock box for the SecTech vending machine. components: - type: StorageFill contents: @@ -126,6 +154,8 @@ - type: entity id: CrateVendingMachineRestockSeedsFilled parent: CrateHydroSecure + name: MegaSeed restock crate + description: Contains a restock box for the MegaSeed vending machine. components: - type: StorageFill contents: @@ -134,6 +164,8 @@ - type: entity id: CrateVendingMachineRestockSmokesFilled parent: CratePlastic + name: ShadyCigs restock crate + description: Contains two restock boxes for the ShadyCigs vending machine. components: - type: StorageFill contents: @@ -143,6 +175,8 @@ - type: entity id: CrateVendingMachineRestockVendomatFilled parent: CratePlastic + name: Vendomat restock crate + description: Contains a restock box for a Vendomat vending machine. components: - type: StorageFill contents: @@ -151,6 +185,8 @@ - type: entity id: CrateVendingMachineRestockRoboticsFilled parent: CrateScienceSecure + name: Robotech Deluxe restock crate + description: Contains a restock box for a Robotech Deluxe vending machine. components: - type: StorageFill contents: @@ -159,6 +195,8 @@ - type: entity id: CrateVendingMachineRestockTankDispenserFilled parent: CratePlastic + name: tank dispenser restock crate + description: Contains a restock box for an Engineering or Atmospherics tank dispenser. components: - type: StorageFill contents: @@ -167,6 +205,8 @@ - type: entity id: CrateVendingMachineRestockHappyHonkFilled parent: CratePlastic + name: Happy Honk restock crate + description: Contains a restock box for a happy honk dispenser. components: - type: StorageFill contents: @@ -176,6 +216,8 @@ - type: entity id: CrateVendingMachineRestockGetmoreChocolateCorpFilled parent: CratePlastic + name: Getmore Chocolate Corp restock crate + description: Contains a restock box for a Getmore Chocolate Corp dispenser. components: - type: StorageFill contents: @@ -185,6 +227,8 @@ - type: entity id: CrateVendingMachineRestockChangFilled parent: CratePlastic + name: Chang restock crate + description: Contains a restock box for a Mr. Chang dispenser. components: - type: StorageFill contents: @@ -194,6 +238,8 @@ - type: entity id: CrateVendingMachineRestockDiscountDansFilled parent: CratePlastic + name: Discount Dans restock crate + description: Contains a restock box for a Discount Dan's dispenser. components: - type: StorageFill contents: @@ -203,8 +249,10 @@ - type: entity id: CrateVendingMachineRestockDonutFilled parent: CratePlastic + name: Donut restock crate + description: Contains a restock box for a Monkin' Donuts dispenser. components: - type: StorageFill contents: - id: VendingMachineRestockDonut - amount: 2 \ No newline at end of file + amount: 2 diff --git a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml b/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml index 1af7f4cef64..62b166ebc16 100644 --- a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml +++ b/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml @@ -1,61 +1,43 @@ - type: reagentDispenserInventory id: SodaDispenserInventory inventory: - - Ice - - Coffee - - Cream - - Tea - - GreenTea - - IcedTea - - IcedGreenTea - - Cola - - SpaceMountainWind - - DrGibb - - RootBeer - - SpaceUp - - TonicWater - - SodaWater - - LemonLime - - Sugar - - JuiceOrange - - JuiceLime - - JuiceWatermelon - ###Hacked - #- Fourteen Loko - #- GrapeSoda + - DrinkIceJug + - DrinkCoffeeJug + - DrinkCreamCartonXL + - DrinkTeaJug + - DrinkGreenTeaJug + - DrinkIcedTeaJug + - DrinkColaBottleFull + - DrinkSpaceMountainWindBottleFull + - DrinkDrGibbJug + - DrinkRootBeerJug + - DrinkSpaceUpBottleFull + - DrinkTonicWaterBottleFull + - DrinkSodaWaterBottleFull + - DrinkLemonLimeJug + - DrinkSugarJug + - DrinkJuiceOrangeCartonXL + - DrinkJuiceLimeCartonXL + - DrinkWaterMelonJuiceJug - type: reagentDispenserInventory id: BoozeDispenserInventory inventory: - - Beer - - CoffeeLiqueur - - Whiskey - - Wine - - Vodka - - Gin - - Rum - - Tequila - - Vermouth - - Cognac - - Ale - - Mead - ###Hacked - #- Goldschlager - #- Patron - #- JuiceWatermelon - #- JuiceBerry - - -- type: reagentDispenserInventory - id: SodaDispenserEmagInventory - inventory: - - FourteenLoko - - Ephedrine - - Histamine - -- type: reagentDispenserInventory - id: BoozeDispenserEmagInventory - inventory: - - AtomicBomb - - Ethanol - - Iron + - DrinkLemonLimeJug + - DrinkSugarJug + - DrinkJuiceOrangeCartonXL + - DrinkJuiceLimeCartonXL + - DrinkTonicWaterBottleFull + - DrinkSodaWaterBottleFull + - DrinkBeerGrowler + - DrinkCoffeeLiqueurBottleFull + - DrinkWhiskeyBottleFull + - DrinkWineBottleFull + - DrinkVodkaBottleFull + - DrinkGinBottleFull + - DrinkRumBottleFull + - DrinkTequilaBottleFull + - DrinkVermouthBottleFull + - DrinkCognacBottleFull + - DrinkAleBottleFullGrowler + - DrinkMeadJug diff --git a/Resources/Prototypes/Catalog/ReagentDispensers/chemical.yml b/Resources/Prototypes/Catalog/ReagentDispensers/chemical.yml index 6d9c729fc93..2b0fdfae6ce 100644 --- a/Resources/Prototypes/Catalog/ReagentDispensers/chemical.yml +++ b/Resources/Prototypes/Catalog/ReagentDispensers/chemical.yml @@ -1,31 +1,26 @@ - type: reagentDispenserInventory id: ChemDispenserStandardInventory inventory: - - Aluminium - - Carbon - - Chlorine - - Copper - - Ethanol - - Fluorine - - Sugar - - Hydrogen - - Iodine - - Iron - - Lithium - - Mercury - - Nitrogen - - Oxygen - - Phosphorus - - Potassium - - Radium - - Silicon - - Sodium - - Sulfur + - JugAluminium + - JugCarbon + - JugChlorine + - JugCopper + - JugEthanol + - JugFluorine + - JugSugar + - JugHydrogen + - JugIodine + - JugIron + - JugLithium + - JugMercury + - JugNitrogen + - JugOxygen + - JugPhosphorus + - JugPotassium + - JugRadium + - JugSilicon + - JugSodium + - JugSulfur - type: reagentDispenserInventory - id: ChemDispenserEmaggedInventory - inventory: ##Feel free to change this to something more interesting when more chems are added - - Napalm - - Toxin - - Epinephrine - - Ultravasculine + id: EmptyInventory diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml index 54ba2ede10b..c8b6310c647 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml @@ -11,6 +11,8 @@ ClothingHeadBandGreen: 2 ClothingHeadBandRed: 2 ClothingHeadBandSkull: 2 + ClothingHeadHatGreyFlatcap: 3 + ClothingHeadHatBrownFlatcap: 3 ClothingUniformJumpsuitColorGrey: 8 ClothingUniformJumpskirtColorGrey: 8 ClothingUniformJumpsuitColorWhite: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml index 117478d7cf8..abccb7e7144 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml @@ -5,7 +5,7 @@ ClothingUniformJumpsuitRoboticist: 2 ClothingUniformJumpskirtRoboticist: 2 ClothingShoesColorBlack: 2 - ClothingHandsGlovesFingerless: 2 + ClothingHandsGlovesRobohands: 2 ClothingHeadHatCorpsoft: 2 ClothingHeadBandSkull: 2 ClothingHeadsetRobotics: 2 diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 638851faa48..87af4e80c51 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -1433,7 +1433,7 @@ description: uplink-stimpack-desc productEntity: Stimpack cost: - Telecrystal: 8 + Telecrystal: 4 categories: - UplinkMisc diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 3ae39df5178..eac7a80edc9 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -867,3 +867,25 @@ sprite: Clothing/Head/Hats/party_blue.rsi - type: Clothing sprite: Clothing/Head/Hats/party_blue.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatGreyFlatcap + name: grey flatcap + description: Fashionable for both the working class and old man Jenkins. + components: + - type: Sprite + sprite: Clothing/Head/Hats/greyflatcap.rsi + - type: Clothing + sprite: Clothing/Head/Hats/greyflatcap.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBrownFlatcap + name: brown flatcap + description: Stupid clown! You made me look bad! + components: + - type: Sprite + sprite: Clothing/Head/Hats/brownflatcap.rsi + - type: Clothing + sprite: Clothing/Head/Hats/brownflatcap.rsi diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index ee5301f2f29..25423a3843d 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -163,9 +163,16 @@ - type: Sprite drawdepth: Mobs layers: - - map: ["enum.DamageStateVisualLayers.Base"] + - map: ["enum.DamageStateVisualLayers.Base", "movement"] state: chicken-0 sprite: Mobs/Animals/chicken.rsi + - type: SpriteMovement + movementLayers: + movement: + state: chicken-moving-0 + noMovementLayers: + movement: + state: chicken-0 - type: Fixtures fixtures: fix1: @@ -198,6 +205,8 @@ states: Alive: Base: chicken-0 + Critical: + Base: dead-0 Dead: Base: dead-0 - type: Butcherable @@ -225,6 +234,56 @@ - type: NpcFactionMember factions: - Passive + +- type: entity + parent: MobChicken + id: MobChicken1 + components: + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base", "movement"] + state: chicken-1 + sprite: Mobs/Animals/chicken.rsi + - type: SpriteMovement + movementLayers: + movement: + state: chicken-moving-1 + noMovementLayers: + movement: + state: chicken-1 + - type: DamageStateVisuals + states: + Alive: + Base: chicken-1 + Critical: + Base: dead-1 + Dead: + Base: dead-1 + +- type: entity + parent: MobChicken + id: MobChicken2 + components: + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base", "movement"] + state: chicken-2 + sprite: Mobs/Animals/chicken.rsi + - type: SpriteMovement + movementLayers: + movement: + state: chicken-moving-2 + noMovementLayers: + movement: + state: chicken-2 + - type: DamageStateVisuals + states: + Alive: + Base: chicken-2 + Critical: + Base: dead-2 + Dead: + Base: dead-2 - type: entity id: FoodEggChickenFertilized @@ -235,6 +294,8 @@ - type: TimedSpawner prototypes: - MobChicken + - MobChicken1 + - MobChicken2 intervalSeconds: 20 minimumEntitiesSpawned: 1 maximumEntitiesSpawned: 1 @@ -1399,8 +1460,15 @@ drawdepth: SmallMobs sprite: Mobs/Animals/mouse.rsi layers: - - map: ["enum.DamageStateVisualLayers.Base"] + - map: ["enum.DamageStateVisualLayers.Base", "movement"] state: mouse-0 + - type: SpriteMovement + movementLayers: + movement: + state: mouse-moving-0 + noMovementLayers: + movement: + state: mouse-0 - type: Item size: Tiny - type: Clothing @@ -1554,8 +1622,15 @@ components: - type: Sprite layers: - - map: ["enum.DamageStateVisualLayers.Base"] + - map: ["enum.DamageStateVisualLayers.Base", "movement"] state: mouse-1 + - type: SpriteMovement + movementLayers: + movement: + state: mouse-moving-1 + noMovementLayers: + movement: + state: mouse-1 - type: Clothing equippedPrefix: 1 - type: DamageStateVisuals @@ -1573,8 +1648,15 @@ components: - type: Sprite layers: - - map: ["enum.DamageStateVisualLayers.Base"] + - map: ["enum.DamageStateVisualLayers.Base", "movement"] state: mouse-2 + - type: SpriteMovement + movementLayers: + movement: + state: mouse-moving-2 + noMovementLayers: + movement: + state: mouse-2 - type: Clothing equippedPrefix: 2 - type: DamageStateVisuals diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 4c897c0fbd4..4c163b1bd14 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -809,3 +809,5 @@ proper: true gender: male # - type: AlwaysRevolutionaryConvertible + - type: StealTarget + stealGroup: AnimalTropico diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml index ca2a0f2c5eb..4c57e2253de 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml @@ -183,8 +183,15 @@ drawdepth: SmallMobs sprite: Mobs/Animals/mouse.rsi layers: - - map: ["enum.DamageStateVisualLayers.Base"] + - map: ["enum.DamageStateVisualLayers.Base", "movement"] state: mouse-3 + - type: SpriteMovement + movementLayers: + movement: + state: mouse-moving-3 + noMovementLayers: + movement: + state: mouse-3 - type: Physics bodyType: KinematicController - type: Fixtures diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index 650634ed3ce..b49029f7915 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -44,7 +44,7 @@ collection: AlienClaw damage: types: - Pierce: 5 + Piercing: 5 # Visual & Audio - type: DamageVisuals damageOverlayGroups: diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 91e15e48054..ce4af18c425 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -80,6 +80,8 @@ clownedon: # Not 'creampied' bc I can already see Skyrat complaining about conflicts. True: {visible: true} False: {visible: false} + - type: StatusIcon + bounds: -0.5,-0.5,0.5,0.5 - type: RotationVisuals defaultRotation: 90 horizontalRotation: 90 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml index 06dc47ce437..7837ae4e761 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml @@ -4,6 +4,9 @@ id: DrinkBottlePlasticBaseFull abstract: true components: + - type: Tag + tags: + - DrinkBottle - type: Openable sound: collection: bottleOpenSounds @@ -13,6 +16,7 @@ maxVol: 100 - type: Sprite state: icon + sprite: Objects/Consumable/Drinks/water.rsi # fallback to boring water jug - type: Item size: Normal - type: Damageable @@ -285,6 +289,8 @@ reagents: - ReagentId: Rum Quantity: 100 + - type: Label + currentLabel: rum - type: Sprite sprite: Objects/Consumable/Drinks/rumbottle.rsi @@ -332,6 +338,8 @@ reagents: - ReagentId: Tequila Quantity: 100 + - type: Label + currentLabel: tequila - type: Sprite sprite: Objects/Consumable/Drinks/tequillabottle.rsi @@ -347,6 +355,8 @@ reagents: - ReagentId: Vermouth Quantity: 100 + - type: Label + currentLabel: vermouth - type: Sprite sprite: Objects/Consumable/Drinks/vermouthbottle.rsi @@ -377,6 +387,8 @@ reagents: - ReagentId: Whiskey Quantity: 100 + - type: Label + currentLabel: whiskey - type: Sprite sprite: Objects/Consumable/Drinks/whiskeybottle.rsi @@ -392,6 +404,8 @@ reagents: - ReagentId: Wine Quantity: 100 + - type: Label + currentLabel: wine - type: Sprite sprite: Objects/Consumable/Drinks/winebottle.rsi @@ -417,6 +431,22 @@ - type: entity parent: DrinkBottleGlassBaseFull + id: DrinkBeerGrowler # Needs to be renamed DrinkBeerBottleFull + name: Beer Growler # beer it is. coffee. beer? coff-ee? be-er? c-o... b-e + description: An alcoholic beverage made from malted grains, hops, yeast, and water. XL growler bottle. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 150 + reagents: + - ReagentId: Beer + Quantity: 150 + - type: Sprite + sprite: Objects/Consumable/Drinks/beer.rsi + +- type: entity + parent: DrinkBottlePlasticBaseFull id: DrinkAleBottleFull name: Magm-Ale description: A true dorf's drink of choice. @@ -433,6 +463,22 @@ - type: Sprite sprite: Objects/Consumable/Drinks/alebottle.rsi +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkAleBottleFullGrowler + name: Magm-Ale Growler + description: A true dorf's drink of choice. XL growler bottle. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 150 + reagents: + - ReagentId: Ale + Quantity: 150 + - type: Sprite + sprite: Objects/Consumable/Drinks/alebottle.rsi + - type: entity parent: DrinkBottlePlasticBaseFull id: DrinkWaterBottleFull @@ -451,3 +497,258 @@ - type: Drink - type: Sprite sprite: Objects/Consumable/Drinks/waterbottle.rsi + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkSodaWaterBottleFull + name: soda water bottle + description: Like water, but angry! + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 150 + reagents: + - ReagentId: SodaWater + Quantity: 150 + - type: Drink + - type: Sprite + sprite: Objects/Consumable/Drinks/waterbottle.rsi + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkTonicWaterBottleFull + name: tonic water bottle + description: Like soda water, but angrier maybe? Often sweeter. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 150 + reagents: + - ReagentId: TonicWater + Quantity: 150 + - type: Drink + - type: Sprite + sprite: Objects/Consumable/Drinks/waterbottle.rsi + +# Cartons, TODO: this needs to be moved elsewhere eventually, since cartons shouldnt smash into glass shards + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkJuiceLimeCartonXL + name: lime juice XL + description: Sweet-sour goodness. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 150 + reagents: + - ReagentId: JuiceLime + Quantity: 150 + - type: Drink + - type: Sprite + sprite: Objects/Consumable/Drinks/limejuice.rsi + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkJuiceOrangeCartonXL + name: orange juice XL + description: Full of vitamins and deliciousness! + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 150 + reagents: + - ReagentId: JuiceOrange + Quantity: 150 + - type: Drink + - type: Sprite + sprite: Objects/Consumable/Drinks/orangejuice.rsi + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkCreamCartonXL + name: Milk Cream XL + description: It's cream. Made from milk. What else did you think you'd find in there? + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 150 + reagents: + - ReagentId: Cream + Quantity: 150 + - type: Drink + - type: Sprite + sprite: Objects/Consumable/Drinks/cream.rsi + +#boring jugs some more sprites are made + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkSugarJug + name: sugar + suffix: for drinks + description: some people put this in their coffee... + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 300 + reagents: + - ReagentId: Sugar + Quantity: 300 + - type: Drink + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkLemonLimeJug + name: lemon lime + description: a dual citrus sensation. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 300 + reagents: + - ReagentId: LemonLime + Quantity: 300 + - type: Drink + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkMeadJug + name: mead jug + description: storing mead in a plastic jug should be a crime. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 150 + reagents: + - ReagentId: Mead + Quantity: 150 + - type: Drink + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkIceJug + name: ice jug + description: stubborn water. pretty cool. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 300 + reagents: + - ReagentId: Ice + Quantity: 300 + - type: Drink + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkCoffeeJug + name: coffee jug + description: wake up juice, of the heated kind. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 300 + reagents: + - ReagentId: Coffee + Quantity: 300 + - type: Drink + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkTeaJug + name: tea jug + description: the drink of choice for the Bri'ish and hipsters. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 300 + reagents: + - ReagentId: Tea + Quantity: 300 + - type: Drink + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkGreenTeaJug + name: green tea jug + description: its like tea... but green! great for settling the stomach. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 300 + reagents: + - ReagentId: GreenTea + Quantity: 300 + - type: Drink + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkIcedTeaJug + name: iced tea jug + description: for when the regular tea is too hot for you boohoo + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 300 + reagents: + - ReagentId: IcedTea + Quantity: 300 + - type: Drink + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkDrGibbJug + name: dr gibb jug + description: yeah I don't know either... + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 300 + reagents: + - ReagentId: DrGibb + Quantity: 300 + - type: Drink + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkRootBeerJug + name: root beer jug + description: this drink makes Australians giggle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 300 + reagents: + - ReagentId: RootBeer + Quantity: 300 + - type: Drink + +- type: entity + parent: DrinkBottlePlasticBaseFull + id: DrinkWaterMelonJuiceJug + name: watermelon juice jug + description: May include leftover seeds + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 300 + reagents: + - ReagentId: JuiceWatermelon + Quantity: 300 + - type: Drink diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml index 94cba00a5f7..22e6fce8e14 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml @@ -891,3 +891,32 @@ # Note: I would put a bunch of colored burgers here as listed in the tg .dm but # I'd rather wait for a custom burger component. + +- type: entity + name: mothroachburger + parent: FoodBurgerBase + id: FoodBurgerMothRoach + description: The last lamp it saw was the one inside the microwave. + components: + - type: FlavorProfile + flavors: + - bun + - meaty + - light + - type: Sprite + state: mothroach + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Nutriment + Quantity: 3 + - ReagentId: Protein + Quantity: 4 + - ReagentId: Vitamin + Quantity: 7 + - type: Tag + tags: + - Meat + \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index d4926084127..b623956d38f 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -27,7 +27,7 @@ - type: Drink solution: food useSound: - path: /Audio/Items/eating_1.ogg + collection: eating - type: Damageable damageContainer: Inorganic - type: Spillable @@ -238,7 +238,7 @@ Quantity: 50 - type: Tag tags: - - Mayo + - Mayo # - type: entity # parent: ReagentPacketBase diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index e175bbe728b..672d6488e35 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -553,7 +553,7 @@ - type: Sprite state: medical - type: MachineBoard - prototype: ChemDispenser + prototype: ChemDispenserEmpty requirements: Capacitor: 1 materialRequirements: @@ -1145,7 +1145,7 @@ - type: Sprite state: service - type: MachineBoard - prototype: BoozeDispenser + prototype: BoozeDispenserEmpty materialRequirements: Steel: 5 tagRequirements: @@ -1178,7 +1178,7 @@ - type: Sprite state: service - type: MachineBoard - prototype: soda_dispenser + prototype: SodaDispenserEmpty materialRequirements: Steel: 5 tagRequirements: diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml index 6d622ff97cb..dc98780792e 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml @@ -45,6 +45,10 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: SolutionContainerManager + solutions: + glass: + canReact: false - type: entity parent: SheetGlassBase @@ -192,7 +196,7 @@ Quantity: 4.5 - ReagentId: Carbon Quantity: 0.5 - + canReact: false - type: entity parent: SheetGlassBase id: SheetPGlass @@ -266,6 +270,7 @@ Quantity: 10 - ReagentId: Plasma Quantity: 10 + canReact: false - type: entity parent: SheetPGlass @@ -308,6 +313,7 @@ Quantity: 4.5 - ReagentId: Carbon Quantity: 0.5 + canReact: false - type: entity parent: SheetRPGlass @@ -382,6 +388,7 @@ Quantity: 10 - ReagentId: Uranium Quantity: 10 + canReact: false - type: entity parent: SheetUGlass @@ -435,6 +442,8 @@ Quantity: 4.5 - ReagentId: Carbon Quantity: 0.5 + canReact: false + - type: entity parent: SheetRUGlass id: SheetRUGlass1 diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml index 829a78326a8..24b4544e566 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml @@ -27,6 +27,10 @@ behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] + - type: SolutionContainerManager + solutions: + steel: + canReact: false - type: entity parent: SheetMetalBase @@ -137,6 +141,7 @@ Quantity: 9 - ReagentId: Carbon Quantity: 1 + canReact: false - type: entity parent: SheetPlasteel diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index f9a7760a3ec..022b0d65954 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -23,6 +23,10 @@ behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] + - type: SolutionContainerManager + solutions: + paper: + canReact: false - type: entity parent: SheetOtherBase @@ -105,6 +109,7 @@ reagents: - ReagentId: Plasma Quantity: 10 + canReact: false - type: Tag tags: - Sheet @@ -160,6 +165,7 @@ Quantity: 5 - ReagentId: Phosphorus Quantity: 5 + canReact: false - type: entity parent: SheetPlastic @@ -221,6 +227,7 @@ Quantity: 8 - ReagentId: Radium Quantity: 2 + canReact: false - type: entity parent: SheetUranium @@ -270,6 +277,7 @@ Quantity: 7 - ReagentId: Fat Quantity: 3 + canReact: false - type: entity parent: MaterialSheetMeat diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index ae909625239..b19842a2a25 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -49,6 +49,14 @@ - type: PhysicalComposition materialComposition: RawGold: 500 + - type: Extractable + grindableSolutionName: goldore + - type: SolutionContainerManager + solutions: + goldore: + reagents: + - ReagentId: Gold + Quantity: 10 - type: entity parent: GoldOre @@ -72,6 +80,16 @@ - type: PhysicalComposition materialComposition: RawIron: 500 + - type: Extractable + grindableSolutionName: ironore + - type: SolutionContainerManager + solutions: + ironore: + reagents: + - ReagentId: Iron + Quantity: 9 + - ReagentId: Carbon + Quantity: 1 - type: entity id: SteelOre1 @@ -100,6 +118,14 @@ energy: 0.6 castShadows: false color: "#e592e7" + - type: Extractable + grindableSolutionName: plasmaore + - type: SolutionContainerManager + solutions: + plasmaore: + reagents: + - ReagentId: Plasma + Quantity: 10 - type: entity parent: PlasmaOre @@ -123,6 +149,14 @@ - type: PhysicalComposition materialComposition: RawSilver: 500 + - type: Extractable + grindableSolutionName: silverore + - type: SolutionContainerManager + solutions: + silverore: + reagents: + - ReagentId: Silver + Quantity: 10 - type: entity parent: SilverOre @@ -146,6 +180,14 @@ - type: PhysicalComposition materialComposition: RawQuartz: 500 + - type: Extractable + grindableSolutionName: quartzore + - type: SolutionContainerManager + solutions: + quartzaore: + reagents: + - ReagentId: Silicon + Quantity: 10 - type: entity parent: SpaceQuartz @@ -174,6 +216,17 @@ energy: 0.8 castShadows: false color: "#9be792" + - type: Extractable + grindableSolutionName: uraniumore + - type: SolutionContainerManager + solutions: + uraniumore: + reagents: + - ReagentId: Uranium + Quantity: 8 + - ReagentId: Radium + Quantity: 2 + canReact: false - type: entity parent: UraniumOre @@ -202,6 +255,18 @@ energy: 1 castShadows: false color: "#eef066" + - type: Extractable + grindableSolutionName: bananiumore + - type: SolutionContainerManager + solutions: + bananiumore: + reagents: + - ReagentId: Nutriment + Quantity: 4 + - ReagentId: Vitamin + Quantity: 2 + - ReagentId: Honk + Quantity: 5 - type: entity parent: BananiumOre diff --git a/Resources/Prototypes/Entities/Objects/Misc/broken_bottle.yml b/Resources/Prototypes/Entities/Objects/Misc/broken_bottle.yml index c5d970af50d..b7c73f5e0cc 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/broken_bottle.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/broken_bottle.yml @@ -26,3 +26,6 @@ materialComposition: Glass: 50 - type: SpaceGarbage + - type: WelderRefinable + refineResult: + - SheetGlass1 diff --git a/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml b/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml index f178fffae05..a421c1e9e99 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml @@ -2,11 +2,15 @@ id: MedalCase name: medal case description: Case with medals. - parent: BaseStorageItem + parent: [ BaseStorageItem, BaseBagOpenClose ] components: - type: Sprite sprite: Objects/Storage/medalcase.rsi - state: icon + layers: + - state: closed + - state: open + map: ["openLayer"] + - type: Appearance - type: Item sprite: Objects/Storage/medalcase.rsi size: Normal diff --git a/Resources/Prototypes/Entities/Objects/Power/lights.yml b/Resources/Prototypes/Entities/Objects/Power/lights.yml index aa580d82091..9a30ec4da3d 100644 --- a/Resources/Prototypes/Entities/Objects/Power/lights.yml +++ b/Resources/Prototypes/Entities/Objects/Power/lights.yml @@ -67,6 +67,9 @@ materialComposition: Glass: 25 - type: SpaceGarbage + - type: WelderRefinable + refineResult: + - SheetGlass1 - type: entity parent: BaseLightbulb @@ -230,6 +233,10 @@ - type: Construction graph: CyanLight node: icon + - type: WelderRefinable + refineResult: + - SheetGlass1 + - ShardCrystalCyan - type: entity parent: LightTubeCrystalCyan @@ -246,6 +253,10 @@ - type: Construction graph: BlueLight node: icon + - type: WelderRefinable + refineResult: + - SheetGlass1 + - ShardCrystalBlue - type: entity parent: LightTubeCrystalCyan @@ -262,6 +273,10 @@ - type: Construction graph: PinkLight node: icon + - type: WelderRefinable + refineResult: + - SheetGlass1 + - ShardCrystalPink - type: entity parent: LightTubeCrystalCyan @@ -278,6 +293,10 @@ - type: Construction graph: OrangeLight node: icon + - type: WelderRefinable + refineResult: + - SheetGlass1 + - ShardCrystalOrange - type: entity parent: LightTubeCrystalCyan @@ -294,6 +313,10 @@ - type: Construction graph: RedLight node: icon + - type: WelderRefinable + refineResult: + - SheetGlass1 + - ShardCrystalRed - type: entity parent: LightTubeCrystalCyan @@ -310,3 +333,7 @@ - type: Construction graph: GreenLight node: icon + - type: WelderRefinable + refineResult: + - SheetGlass1 + - ShardCrystalGreen diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml index e03d94c53c4..4e46111ceda 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml @@ -1,6 +1,8 @@ - type: entity id: CrateArtifactContainer parent: BaseStructureDynamic + name: artifact container + description: Used to safely contain and move artifacts. components: - type: Transform noRot: true diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml index 139eecfe83c..01f5e45c471 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml @@ -47,6 +47,9 @@ price: 60 - type: Label originalName: jug + - type: Tag + tags: + - ChemDispensable - type: entity parent: Jug diff --git a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml index 9eb3a2da92a..dff367dc99f 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml @@ -177,6 +177,10 @@ - ReagentId: WeldingFuel Quantity: 12 maxVol: 12 #uses less fuel than a welder, so this isnt as bad as it looks + - type: Welder + fuelConsumption: 0.01 + fuelLitCost: 0.1 + tankSafe: true - type: ToggleableLightVisuals spriteLayer: lighter_flame inhandVisuals: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml index 60f3e47c32c..ec62121c6b9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml @@ -9,10 +9,11 @@ state: buckshot - type: Projectile deleteOnCollide: false - canPenetrate: true damage: types: Blunt: 4 + - type: CanPenetrate + penetrationLayer: MobLayer - type: StaminaDamageOnCollide damage: 55 - type: TimedDespawn @@ -29,10 +30,11 @@ state: buckshot - type: Projectile deleteOnCollide: false - canPenetrate: true damage: types: Piercing: 45 + - type: CanPenetrate + penetrationLayer: MobLayer - type: TimedDespawn lifetime: 0.25 @@ -47,11 +49,12 @@ state: buckshot-flare - type: Projectile deleteOnCollide: false - canPenetrate: true damage: types: Blunt: 1 Heat: 2 + - type: CanPenetrate + penetrationLayer: MobLayer - type: IgniteOnCollide fireStacks: 3 count: 10 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 7c47e5d93e8..09713911055 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml @@ -120,26 +120,22 @@ name: pellet (.50 flare) noSpawn: true components: - - type: CollisionWake - - type: TileFrictionModifier - modifier: 0.5 - type: Physics bodyType: Dynamic fixedRotation: false + - type: EmbeddableProjectile + deleteOnRemove: true - type: Fixtures fixtures: - fix1: + projectile: shape: !type:PhysShapeAabb - bounds: "-0.25,-0.25,0.25,0.25" - density: 20 + bounds: "-0.1,-0.1,0.1,0.1" mask: - - ItemMask - restitution: 0.3 - friction: 0.2 + - BulletImpassable - type: Tag tags: - - PelletShotgunFlare + - PelletShotgunFlare - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi state: buckshot-flare @@ -163,6 +159,11 @@ color: "#FF8080" radius: 15.0 energy: 9.0 + - type: Projectile + deleteOnCollide: false + damage: + types: + Heat: 5 - type: entity id: PelletShotgunUranium diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index b045feb5716..f67e3591a7f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -210,7 +210,7 @@ Heat: 5 soundHit: path: "/Audio/Weapons/Guns/Hits/taser_hit.ogg" - soundForce: true + forceSound: true - type: StunOnCollide stunAmount: 5 knockdownAmount: 5 @@ -256,7 +256,7 @@ Heat: 5 soundHit: path: "/Audio/Weapons/tap.ogg" - soundForce: true + forceSound: true - type: entity name : disabler bolt practice @@ -296,7 +296,7 @@ Heat: 1 soundHit: path: "/Audio/Weapons/tap.ogg" - soundForce: true + forceSound: true - type: entity name: emitter bolt @@ -777,14 +777,16 @@ maxVol: 50 - type: Fixtures fixtures: - fix1: + projectile: shape: !type:PhysShapeAabb bounds: "-0.10,-0.30,0.10,0.15" hard: false mask: - - FullTileMask - - Opaque + - Impassable + - BulletImpassable + - type: CanPenetrate + penetrationLayer: MobLayer - type: Vapor active: true - type: Appearance @@ -941,7 +943,7 @@ Heat: 2 soundHit: path: "/Audio/Weapons/tap.ogg" - soundForce: true + forceSound: true - type: entity name: tesla gun lightning diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml index e170ce82555..c54e9f548be 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity abstract: true id: ReagentDispenserBase parent: ConstructibleMachine @@ -55,13 +55,15 @@ sound: path: /Audio/Effects/metalbreak.ogg - type: ReagentDispenser + storageWhitelist: + tags: + - Bottle + beakerSlot: + whitelistFailPopup: reagent-dispenser-component-cannot-put-entity-message + whitelist: + components: + - FitsInDispenser - type: ItemSlots - slots: - beakerSlot: - whitelistFailPopup: reagent-dispenser-component-cannot-put-entity-message - whitelist: - components: - - FitsInDispenser - type: ContainerContainer containers: machine_board: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml b/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml index 15e40f79c35..1583bc451de 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/booze.yml @@ -1,6 +1,7 @@ - type: entity id: BoozeDispenser name: booze dispenser + suffix: Filled description: A booze dispenser with a single slot for a container to be filled. parent: ReagentDispenserBase components: @@ -10,8 +11,10 @@ drawdepth: SmallObjects state: booze - type: ReagentDispenser + storageWhitelist: + tags: + - DrinkBottle pack: BoozeDispenserInventory - emagPack: BoozeDispenserEmagInventory - type: Transform noRot: false - type: Machine @@ -24,3 +27,14 @@ - Bartender - type: StealTarget stealGroup: BoozeDispenser + +- type: entity + id: BoozeDispenserEmpty + suffix: Empty + parent: BoozeDispenser + components: + - type: ReagentDispenser + storageWhitelist: + tags: + - DrinkBottle + pack: EmptyInventory diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml index 916b2b748c8..2d98b9ff356 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml @@ -1,16 +1,19 @@ -- type: entity +- type: entity id: ChemDispenser name: chemical dispenser + suffix: Filled parent: ReagentDispenserBase - description: An industrial grade chemical dispenser with a sizeable chemical supply. + description: An industrial grade chemical dispenser. components: - type: Sprite sprite: Structures/dispensers.rsi state: industrial-working snapCardinals: true - type: ReagentDispenser + storageWhitelist: + tags: + - ChemDispensable pack: ChemDispenserStandardInventory - emagPack: ChemDispenserEmaggedInventory - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: Destructible @@ -37,3 +40,12 @@ - Chemist - type: StealTarget stealGroup: ChemDispenser + +- type: entity + id: ChemDispenserEmpty + name: chemical dispenser + suffix: Empty + parent: ChemDispenser + components: + - type: ReagentDispenser + pack: EmptyInventory diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml b/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml index 4322d56947a..323480506fa 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/soda.yml @@ -1,6 +1,7 @@ - type: entity id: soda_dispenser name: soda dispenser + suffix: Filled parent: ReagentDispenserBase description: A beverage dispenser with a selection of soda and several other common beverages. Has a single fill slot for containers. components: @@ -10,8 +11,10 @@ drawdepth: SmallObjects state: soda - type: ReagentDispenser + storageWhitelist: + tags: + - DrinkBottle pack: SodaDispenserInventory - emagPack: SodaDispenserEmagInventory - type: Transform noRot: false - type: Machine @@ -22,3 +25,14 @@ - type: GuideHelp guides: - Bartender + +- type: entity + id: SodaDispenserEmpty + suffix: Empty + parent: soda_dispenser + components: + - type: ReagentDispenser + storageWhitelist: + tags: + - DrinkBottle + pack: EmptyInventory diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml index 1673ccd0cb2..97f3c1b9e30 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml @@ -27,6 +27,16 @@ - type: Damageable damageContainer: StructuralInorganic damageModifierSet: StrongMetallic + - type: ContainerFill + containers: + board: [ DoorElectronics ] + - type: Construction + graph: BlastDoor + node: blastdoor + containers: + - board + - type: StaticPrice + price: 280 - type: entity id: BlastDoorOpen @@ -43,3 +53,46 @@ airBlocked: false - type: RadiationBlocker enabled: false + +- type: entity + id: BlastDoorFrame + parent: BaseStructureDynamic + name: blast door frame + description: This one says 'BLAST DONGER'. + components: + - type: Sprite + sprite: Structures/Doors/Shutters/blastdoor.rsi + state: assembly + - type: InteractionOutline + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 55 + mask: + - Impassable + - HighImpassable + layer: + - HighImpassable + - type: Transform + noRot: true + - type: Construction + graph: BlastDoor + node: frame1 + placement: + mode: SnapgridCenter diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index ed0f752e16c..0e10722e814 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -34,8 +34,9 @@ shader: unshaded state: base - type: PointLight - radius: 10 + color: "#FFE4CE" # 5000K color temp energy: 0.8 + radius: 10 softness: 1 offset: "0, -0.5" - type: Damageable diff --git a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml index 7c147d5275d..815c3247ee9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml @@ -42,9 +42,6 @@ - type: ApcPowerReceiver powerLoad: 12000 needsPower: false #only turns on when scanning - - type: UpgradePowerDraw - powerDrawMultiplier: 0.80 - scaling: Exponential - type: ArtifactAnalyzer - type: ItemPlacer whitelist: diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml index 101ebc94bd0..8f89c900ca9 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml @@ -13,13 +13,13 @@ map: [ "unshaded" ] - type: Projectile deleteOnCollide: false - canPenetrate: true impactEffect: null soundHit: path: /Audio/Weapons/Guns/Hits/bullet_hit.ogg damage: types: Radiation: 25 + - type: CanPenetrate - type: Physics - type: Fixtures fixtures: @@ -64,5 +64,18 @@ state: particle0 shader: unshaded map: [ "unshaded" ] + - type: Reflective + reflective: + - Energy + - type: Projectile + deleteOnCollide: false + impactEffect: null + soundHit: + path: /Audio/Weapons/Guns/Hits/bullet_hit.ogg + damage: + types: + Radiation: 10 + - type: TimedDespawn + lifetime: 0.6 - type: SinguloFood energy: -10 diff --git a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml index d53226f88c7..fb053d46a47 100644 --- a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml +++ b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml @@ -1,6 +1,8 @@ - type: entity id: BaseThruster parent: BaseStructureDynamic + name: thruster + description: A thruster that allows a shuttle to move. abstract: true components: - type: AmbientSound @@ -37,6 +39,9 @@ behaviors: - !type:DoActsBehavior acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg - type: StaticPrice price: 300 placement: @@ -47,9 +52,27 @@ name: thruster parent: [ BaseThruster, ConstructibleMachine ] components: - - type: Thruster - type: Machine board: ThrusterMachineCircuitboard + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:ChangeConstructionNodeBehavior + node: machineFrame - type: Sprite sprite: Structures/Shuttles/thruster.rsi layers: @@ -102,8 +125,9 @@ - type: entity id: Gyroscope - name: gyroscope parent: [ BaseThruster, ConstructibleMachine ] + name: gyroscope + description: Increases the shuttle's potential angular rotation. components: - type: Thruster thrusterType: Angular @@ -139,6 +163,25 @@ color: "#4246b3" - type: Machine board: GyroscopeMachineCircuitboard + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:ChangeConstructionNodeBehavior + node: machineFrame - type: UpgradePowerDraw powerDrawMultiplier: 0.75 scaling: Exponential diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index 935fedc219e..02729556c9f 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -3,6 +3,7 @@ parent: BaseStructureDynamic name: closet description: A standard-issue Nanotrasen storage unit. + abstract: true components: - type: ResistLocker - type: Transform @@ -87,6 +88,8 @@ stateBaseClosed: generic stateDoorOpen: generic_open stateDoorClosed: generic_door + - type: StaticPrice + price: 50 # steel closet base (that can be constructed/deconstructed) - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml index 9448cc45ab9..5fda0ddbe2e 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml @@ -1,4 +1,4 @@ -# Tool closet +# Tool closet - type: entity id: ClosetTool name: tool closet @@ -67,7 +67,7 @@ - type: entity id: ClosetJanitorBomb name: janitorial bomb suit closet - parent: ClosetBase + parent: ClosetSteelBase description: It's a storage unit for janitorial explosion-protective suits. suffix: DO NOT MAP components: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/wardrobe.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/wardrobe.yml index 01e8749d9f9..3de5897dce2 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/wardrobe.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/wardrobe.yml @@ -1,7 +1,7 @@ # Base - type: entity id: WardrobeBase - parent: ClosetBase + parent: ClosetSteelBase abstract: true description: It's a storage unit for standard-issue Nanotrasen attire. diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index cb6c64f264c..2757d129ab0 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -517,7 +517,7 @@ isCollidableWhenOpen: false closeSound: path: /Audio/Items/shovel_dig.ogg - openSound: + openSound: path: /Audio/Items/shovel_dig.ogg - type: entity @@ -540,6 +540,8 @@ - type: entity parent: CrateGenericSteel id: CrateSyndicate + name: Syndicate crate + description: A dark steel crate with red bands and a letter S embossed on the front. components: - type: Icon sprite: Structures/Storage/Crates/syndicate.rsi diff --git a/Resources/Prototypes/Entities/Structures/cryopod.yml b/Resources/Prototypes/Entities/Structures/cryopod.yml new file mode 100644 index 00000000000..9063e8b1385 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/cryopod.yml @@ -0,0 +1,63 @@ +- type: entity + parent: BaseStructure + id: CryogenicSleepUnit + name: cryogenic sleep unit + description: A super-cooled container that keeps crewmates safe during space travel. + components: + - type: Sprite + noRot: true + sprite: Structures/cryostorage.rsi + layers: + - state: sleeper_0 + map: ["base"] + - type: UserInterface + interfaces: + - key: enum.CryostorageUIKey.Key + type: CryostorageBoundUserInterface + - type: ActivatableUI + key: enum.CryostorageUIKey.Key + - type: AccessReader + breakOnEmag: false + access: [["Cryogenics"]] + - type: InteractionOutline + - type: Cryostorage + - type: Physics + canCollide: false + - type: DragInsertContainer + containerId: storage + - type: ExitContainerOnMove + containerId: storage + - type: PointLight + color: Lime + radius: 1.5 + energy: 0.5 + castShadows: false + - type: ContainerContainer + containers: + storage: !type:ContainerSlot + - type: Appearance + - type: GenericVisualizer + visuals: + enum.CryostorageVisuals.Full: + base: + True: { state: sleeper_1 } + False: { state: sleeper_0 } + +# This one handles all spawns, latejoin and roundstart. +- type: entity + parent: CryogenicSleepUnit + id: CryogenicSleepUnitSpawner + suffix: Spawner, Roundstart AllJobs + components: + - type: ContainerSpawnPoint + containerId: storage + +# This one only handles latejoin spawns. +- type: entity + parent: CryogenicSleepUnit + id: CryogenicSleepUnitSpawnerLateJoin + suffix: Spawner, LateJoin + components: + - type: ContainerSpawnPoint + containerId: storage + spawnType: LateJoin diff --git a/Resources/Prototypes/Entities/Tiles/lava.yml b/Resources/Prototypes/Entities/Tiles/lava.yml index a523e5240f8..72641309b31 100644 --- a/Resources/Prototypes/Entities/Tiles/lava.yml +++ b/Resources/Prototypes/Entities/Tiles/lava.yml @@ -14,6 +14,7 @@ tags: - Catwalk - type: Lava + fireStacks: 0.75 - type: Transform anchored: true - type: SyncSprite diff --git a/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml b/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml index 584f6dbc2af..08f46538631 100644 --- a/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml +++ b/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml @@ -14,6 +14,7 @@ tags: - Catwalk - type: Lava + fireStacks: 0.75 - type: Transform anchored: true - type: SyncSprite diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index cf836cc273a..57f37295d60 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -883,3 +883,9 @@ id: horrible flavorType: Base description: flavor-base-horrible + +- type: flavor + id: light + flavorType: Complex + description: flavor-complex-light + \ No newline at end of file diff --git a/Resources/Prototypes/Maps/core.yml b/Resources/Prototypes/Maps/core.yml index 662016155de..196564646fb 100644 --- a/Resources/Prototypes/Maps/core.yml +++ b/Resources/Prototypes/Maps/core.yml @@ -15,6 +15,8 @@ prefixCreator: '14' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/Shuttles/emergency_rod.yml + - type: StationCargoShuttle + path: /Maps/Shuttles/cargo_core.yml - type: StationJobs overflowJobs: - Passenger diff --git a/Resources/Prototypes/Maps/salvage.yml b/Resources/Prototypes/Maps/salvage.yml index 144c557743c..7b7e6d6d73d 100644 --- a/Resources/Prototypes/Maps/salvage.yml +++ b/Resources/Prototypes/Maps/salvage.yml @@ -26,6 +26,30 @@ id: Small4 mapPath: /Maps/Salvage/small-4.yml +- type: salvageMap + id: SmallCargo + mapPath: /Maps/Salvage/small-cargo.yml + +- type: salvageMap + id: SmallChapel + mapPath: /Maps/Salvage/small-chapel.yml + +- type: salvageMap + id: SmallChef + mapPath: /Maps/Salvage/small-chef.yml + +- type: salvageMap + id: SmallParty + mapPath: /Maps/Salvage/small-party.yml + +- type: salvageMap + id: SmallSyndicate + mapPath: /Maps/Salvage/small-syndicate.yml + +- type: salvageMap + id: SmallTesla + mapPath: /Maps/Salvage/small-tesla.yml + # Small - Asteroids - type: salvageMap @@ -86,6 +110,10 @@ id: Meatball mapPath: /Maps/Salvage/meatball.yml +- type: salvageMap + id: MediumHaulingShuttleWreck + mapPath: /Maps/Salvage/hauling-shuttle.yml + # """Large""" maps - type: salvageMap diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index 241283f4336..fc3eeba76e8 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -34,7 +34,7 @@ weights: EscapeShuttleObjective: 1 DieObjective: 0.05 - HijackShuttleObjective: 0.02 + #HijackShuttleObjective: 0.02 - type: weightedRandom id: TraitorObjectiveGroupSocial @@ -121,6 +121,7 @@ ShivaStealObjective: 1 SmileStealObjective: 1 PunPunStealObjective: 1 + TropicoStealObjective: 1 - type: weightedRandom id: ThiefObjectiveGroupEscape diff --git a/Resources/Prototypes/Objectives/stealTargetGroups.yml b/Resources/Prototypes/Objectives/stealTargetGroups.yml index d7e1cc45851..6ce2bcfd7fa 100644 --- a/Resources/Prototypes/Objectives/stealTargetGroups.yml +++ b/Resources/Prototypes/Objectives/stealTargetGroups.yml @@ -171,7 +171,7 @@ sprite: sprite: Objects/Tools/lighters.rsi state: zippo_engraved_icon_base - + - type: stealTargetGroup id: AmmoTechFabCircuitboard name: ammo techfab circuit board @@ -420,3 +420,10 @@ sprite: sprite: Mobs/Animals/monkey.rsi state: monkey + +- type: stealTargetGroup + id: AnimalTropico + name: Tropico + sprite: + sprite: Mobs/Animals/crab.rsi + state: crab diff --git a/Resources/Prototypes/Objectives/thief.yml b/Resources/Prototypes/Objectives/thief.yml index 957be6adb22..4fc44119e3d 100644 --- a/Resources/Prototypes/Objectives/thief.yml +++ b/Resources/Prototypes/Objectives/thief.yml @@ -27,7 +27,7 @@ - type: StealCondition verifyMapExistance: true descriptionText: objective-condition-thief-description - + - type: entity abstract: true parent: [BaseThiefObjective, BaseStealObjective] @@ -38,7 +38,7 @@ descriptionText: objective-condition-thief-description - type: Objective difficulty: 2 # it's hard to hide - + - type: entity abstract: true parent: [BaseThiefObjective, BaseStealObjective] @@ -65,7 +65,7 @@ maxCollectionSize: 50 #will be limited to the number of figures on the station anyway. - type: Objective difficulty: 0.25 - + - type: entity noSpawn: true parent: BaseThiefStealCollectionObjective @@ -187,7 +187,7 @@ - type: Objective difficulty: 1 -- type: entity +- type: entity noSpawn: true parent: BaseThiefStealObjective id: FlippoEngravedLighterStealObjective @@ -402,7 +402,7 @@ stealGroup: ChemDispenser - type: Objective difficulty: 1 - + - type: entity noSpawn: true parent: BaseThiefStealStructureObjective @@ -414,7 +414,7 @@ stealGroup: XenoArtifact - type: Objective difficulty: 0.5 - + - type: entity noSpawn: true parent: BaseThiefStealStructureObjective @@ -426,7 +426,7 @@ stealGroup: FreezerHeater - type: Objective difficulty: 0.5 - + - type: entity noSpawn: true parent: BaseThiefStealStructureObjective @@ -438,7 +438,7 @@ stealGroup: Teg - type: Objective difficulty: 1 - + - type: entity noSpawn: true parent: BaseThiefStealStructureObjective @@ -450,7 +450,7 @@ stealGroup: BoozeDispenser - type: Objective difficulty: 0.5 - + - type: entity noSpawn: true parent: BaseThiefStealStructureObjective @@ -462,7 +462,7 @@ stealGroup: AltarNanotrasen - type: Objective difficulty: 0.5 - + - type: entity noSpawn: true parent: BaseThiefStealStructureObjective @@ -544,7 +544,7 @@ stealGroup: AnimalRenault - type: Objective difficulty: 2 - + - type: entity noSpawn: true parent: BaseThiefStealAnimalObjective @@ -556,7 +556,7 @@ stealGroup: AnimalHamlet - type: Objective difficulty: 1 - + - type: entity noSpawn: true parent: BaseThiefStealAnimalObjective @@ -568,7 +568,7 @@ stealGroup: AnimalShiva - type: Objective difficulty: 2 - + - type: entity noSpawn: true parent: BaseThiefStealAnimalObjective @@ -580,7 +580,7 @@ stealGroup: AnimalSmile - type: Objective difficulty: 1 - + - type: entity noSpawn: true parent: BaseThiefStealAnimalObjective @@ -593,6 +593,18 @@ - type: Objective difficulty: 2 +- type: entity + noSpawn: true + parent: BaseThiefStealAnimalObjective + id: TropicoStealObjective + components: + - type: NotJobRequirement + job: AtmosphericTechnician + - type: StealCondition + stealGroup: AnimalTropico + - type: Objective + difficulty: 1 + # Escape - type: entity diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 90f84b156cb..47f2db6f593 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -1137,3 +1137,25 @@ Burn: -5 types: Poison: -2 + +- type: reagent + id : Aloxadone + name: reagent-name-aloxadone + group: Medicine + desc: reagent-desc-aloxadone + physicalDesc: reagent-physical-desc-soothing + flavor: medicine + color: "#89f77f" + worksOnTheDead: true + metabolisms: + Medicine: + effects: + - !type:HealthChange + conditions: + - !type:Temperature + max: 213.0 + damage: + types: + Heat: -3.0 + Shock: -3.0 + Caustic: -1.0 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/blast_door.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/blast_door.yml new file mode 100644 index 00000000000..ad84d830a70 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/blast_door.yml @@ -0,0 +1,109 @@ +- type: constructionGraph + id: BlastDoor + start: start + graph: + - node: start + edges: + - to: frame1 + completed: + - !type:SetAnchor + value: false + steps: + - material: Plasteel + amount: 10 + doAfter: 3 + + - node: frame1 + entity: BlastDoorFrame + actions: + - !type:SnapToGrid {} + - !type:SetAnchor {} + edges: + - to: frame2 + conditions: + - !type:EntityAnchored {} + steps: + - material: Cable + amount: 5 + doAfter: 2 + - to: start + conditions: + - !type:EntityAnchored + anchored: false + completed: + - !type:SpawnPrototype + prototype: SheetPlasteel1 + amount: 10 + - !type:DeleteEntity {} + steps: + - tool: Welding + doAfter: 4 + + - node: frame2 + edges: + - to: frame3 + conditions: + - !type:EntityAnchored {} + steps: + - tag: DoorElectronics + store: board + name: Door Electronics + icon: + sprite: "Objects/Misc/module.rsi" + state: "door_electronics" + doAfter: 2 + - to: frame1 + completed: + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 5 + steps: + - tool: Cutting + doAfter: 4 + - tool: Prying + doAfter: 2 + + - node: frame3 + edges: + - to: frame4 + conditions: + - !type:EntityAnchored {} + steps: + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + + - node: frame4 + edges: + - to: blastdoor + conditions: + - !type:EntityAnchored {} + steps: + - tool: Anchoring + doAfter: 2 + - to: frame2 + conditions: + - !type:EntityAnchored {} + completed: + - !type:EmptyAllContainers + pickup: true + emptyAtUser: true + steps: + - tool: Screwing + doAfter: 4 + - tool: Anchoring + doAfter: 3 + - tool: Prying + doAfter: 3 + + - node: blastdoor + entity: BlastDoorOpen + edges: + - to: frame4 + conditions: + - !type:DoorWelded + welded: true + steps: + - tool: Anchoring + doAfter: 2 diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index c9c7a8fe455..b9e3477f3cf 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -214,7 +214,6 @@ conditions: - !type:TileNotBlocked - - type: construction name: diagonal shuttle wall id: DiagonalShuttleWall @@ -715,6 +714,21 @@ placementMode: SnapgridCenter canBuildInImpassable: true +- type: construction + name: blast door + id: BlastDoor + graph: BlastDoor + startNode: start + targetNode: blastdoor + category: construction-category-structures + description: This one says 'BLAST DONGER'. + icon: + sprite: Structures/Doors/Shutters/blastdoor.rsi + state: closed + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + - type: construction name: catwalk id: Catwalk diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index c02a761bd71..e2db2a0c655 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -314,6 +314,14 @@ FoodBreadBun: 1 FoodMeatXeno: 1 +- type: microwaveMealRecipe + id: RecipeMothRoachburger + name: mothroachburger recipe + result: FoodBurgerMothRoach + solids: + FoodBreadBun: 1 + MobMothroach: 1 + #Breads & Sandwiches - type: microwaveMealRecipe diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index c2405d1af4c..56bb84c5c53 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -457,6 +457,7 @@ SodiumHydroxide: 2 - type: reaction + minTemp: 310 id: Fersilicite reactants: Iron: diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml index 67c6193afdc..7288e195f60 100644 --- a/Resources/Prototypes/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml @@ -562,3 +562,16 @@ amount: 2 products: Necrosol: 2 + +- type: reaction + id: Aloxadone + impact: Medium + reactants: + Cryoxadone: + amount: 1 + Aloe: + amount: 2 + Sigynate: + amount: 2 + products: + Aloxadone: 4 diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index dce0b2f12dc..eaf51839877 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -308,6 +308,9 @@ - type: Tag id: Chicken +- type: Tag + id: ChemDispensable # container that can go into the chem dispenser + - type: Tag id: Cigarette @@ -461,6 +464,9 @@ - type: Tag id: DrinkSpaceGlue +- type: Tag + id: DrinkBottle + - type: Tag id: DroneUsable diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Nuclear Operatives.xml b/Resources/ServerInfo/Guidebook/Antagonist/Nuclear Operatives.xml index f3ced7eeda3..e8ccca4a807 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Nuclear Operatives.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Nuclear Operatives.xml @@ -1,88 +1,88 @@ - # Nuclear Operatives + # Ядерные Оперативники - AUTOTELL ON STANDBY. YOUR OBJECTIVES ARE SIMPLE. DELIVER THE PAYLOAD AND GET OUT BEFORE THE PAYLOAD DETONATES. BEGIN MISSION. + АВТООБЪЯВЛЕНИЕ В ГОТОВНОСТИ. ВАШИ ЗАДАЧИ ПРОСТЫ. ДОСТАВИТЬ ВЗРЫВЧАТКУ И УБРАТЬСЯ ДО ТОГО, КАК ОНА ВЗОРВЁТСЯ. НАЧИНАЙТЕ МИССИЮ. - If you hear this message then congratulations! You have just been chosen to be a nuclear operative for the syndicate. You have one goal, to blow up the space station with a nuclear fission explosive. + Если вы слышите это сообщение, то поздравляем! Вы только что были выбраны в качестве ядерного оперативника Синдиката. У вас одна цель - взорвать космическую станцию с помощью ядерной боеголовки. - ## Operatives + ## Оперативники - Your team may contain varying amounts of three different roles: - - The [color=#a4885c]Nukie Commander[/color] wears the unique commander’s hardsuit, and will create or approve of the battle plan. + В вашей команде может быть разное количество представителей трех разных ролей: + - [color=#a4885c]Командир Ядерных Оперативников[/color] одет в уникальный скафандр командира и разрабатывает или утверждает план сражения. - + - - The [color=#a4885c]Nukie Agent[/color] wears the blood-red medic hardsuit, and can act as a combat medic for the mission. + - [color=#a4885c]Агент Ядерных Оперативников[/color] одет в кроваво-красный медицинский скафандр и может выступать в роли боевого медика во время миссии. - + - - Regular [color=#a4885c]Nuclear Operatives[/color], who have the normal blood red hardsuit. + - Обычные [color=#a4885c]Ядерные Оперативники[/color], у которых обычный кроваво-красный скафандр. - + - If you have been selected for either of these special roles but don't feel ready, one of your teammates can take responsibility. + Если вы были выбраны на одну из этих особенных ролей, но не чувствуете себя готовым, один из ваших товарищей по команде может взять на себя эту ответственность. - ## Preparation + ## Подготовка - Taking on a whole station in a fight is a difficult job, luckily you are well prepared for the job. Every operative has an [color=#a4885c]Uplink[/color]. It comes with 40 [color=#a4885c]Telecrystals[/color], which you can use to purchase gear. What you get depends on the strategy picked by your commander or voted for by the team. Only your commander and agent will have passenger access, but no external airlock access. This means you will need something to hack or blast your way onto the station. In general you should need some weapons, something to breach doors, and utility/healing. + Взять в бою целую станцию - задача не из легких, но, к счастью, вы хорошо подготовлены к ней. У каждого оперативника есть [color=#a4885c]аплинк[/color]. В комплекте с ним идёт 40 [color=#a4885c]телекристаллов[/color], которые можно использовать для покупки снаряжения. То, что вы получите, зависит от стратегии, выбранной вашим командиром или голосованием команды. Только ваш командир и агент будут иметь пассажирский доступ, но не будут иметь доступа к внешним шлюзам. Это значит, что вам понадобится что-то, чтобы взломать или взорвать путь на станцию. В целом вам понадобится оружие, что-то для взлома дверей, медицинские препараты и разное по мелочи. - + - ## Getting to the Station + ## Как добраться до станции - After gearing up and creating a plan, grab a jetpack from your armory and go with your other operatives to the [color=#a4885c]Nukie Shuttle[/color]. Here you will find some extra explosives and tools, as well as your nuke and nuke codes. - You will find an [color=#a4885c]IFF Console[/color] on the shuttle, it allows you to hide from other ships and mass scanners. Make sure that [color=#a4885c]Show IFF[/color] and [color=#a4885c]Show Vessel[/color] are toggled off to hide your shuttle from the crew. When everyone is ready, FTL to the station and fly to it with a jetpack. Don't forget the nuclear fission explosive on your ship if you are going to use it, and definitely don't forget the nuke codes or pinpointer. + Вооружившись и разработав план, возьмите джетпак из оружейной и вместе с другими оперативниками отправляйтесь на [color=#a4885c]Шаттл Ядерных Оперативников[/color]. Здесь вы найдете несколько дополнительных взрывчаток и инструментов, а также ядерную бомбу и ядерные коды. + На шаттле вы найдете [color=#a4885c]консоль системы опознавания[/color], которая позволит вам скрываться от других кораблей и сканеров массы. Убедитесь, что [color=#a4885c]Показать "свой-чужой"[/color] и [color=#a4885c]Показать судно[/color] выключены, чтобы скрыть ваш шаттл от экипажа. Когда все будут готовы, отправляйтесь к станции с помощью БСС, а затем летите к ней с помощью реактивного ранца. Не забудьте ядерную бомбу на своём корабле, если собираетесь её использовать, и уж точно не забудьте ядерные коды или пинпоинтер. - ## The Disk + ## Диск - You will notice that each operative starts with a [color=#a4885c]Pinpointer[/color]. This device is one of the most important items to the mission, and you should keep it with you at all times. Turn on the pinpointer when you arrive at the station and it will always point to the [color=#a4885c]Nuke Disk[/color], your next objective. - The nuke disk belongs to the captain, who will almost always have it on them. Follow the direction of the arrow on the pinpointer to the disk, and do whatever it takes to get it. + Вы заметите, что каждый оперативник стартует с [color=#a4885c]пинпоинтером[/color]. Это устройство - один из самых важных предметов в миссии, и вы должны всегда держать его при себе. Включите пинпоинтер, когда прибудете на станцию, и он всегда будет указывать на вашу следующую цель - [color=#a4885c]ядерный диск[/color]. + Ядерный диск (формально диск ядерной аутентификации) принадлежит капитану, который почти всегда будет иметь его при себе. Следуйте по направлению стрелки на пинпоинтере к диску и сделайте всё возможное, чтобы получить его. - - + + - ## The Nuke + ## Ядерная боеголовка - On your shuttle you will find one of two [color=#a4885c]Nuclear Fission Explosives[/color] and a paper with the nuke codes. The paper will tell you which explosive it corresponds to. If the ID is the same as the one on your nuke, the codes will only work for it. If it is not, then they will only work for the explosive in the station's vault. + На вашем шаттле вы найдёте одну из двух [color=#a4885c]ядерных боеголовок[/color] и бумажку с кодами ядерной аутентификации. На бумажке будет указано, какой взрывчатке она соответствует. Если идентификатор совпадает с тем, что указан на вашей ядерной бомбе, то коды будут работать только для неё. Если же нет, то они будут работать только для бомбы в хранилище станции. - Once you acquire the nuke disk, put it into the nuke and use the code to arm it. It takes 30 seconds for a crewmember to disarm it, and it will count down from 300. Be prepared to defend the nuke for as long as possible, remember that escaping alive isn't necessary, but recommended. + Как только вы получите ядерный диск, вставьте его в ядерную боеголовку и используйте код, чтобы взвести её. Отсчёт будет идти 300 секунд, а для того чтобы член экипажа смог обезвредить её, ему потребуется 30. Будьте готовы защищать ядерную боеголовку как можно дольше, помните, что сбежать живым необязательно, но рекомендуется. - + - ## Victories + ## Победы - The “victor” of the round is announced on the round end screen, as well as how much they won by. The scale of the victory depends on circumstances at the end of the round. + Победитель объявляется на экране окончания раунда, как и то, с каким перевесом он победил. Масштаб победы зависит от обстоятельств в конце раунда. - [color=#a4885c]Syndicate Major Victory[/color] - - The nuke detonates on station - - The crew escapes on the evac shuttle, but the nuke was armed - - The nuke was armed and delivered to central command on the evac shuttle + [color=#a4885c]Крупная победа Синдиката[/color] + - Ядерная бомба взрывается на станции. + - Экипаж спасается, но ядерная бомба была взведена, когда они убегали. + - Ядерная бомба была доставлена в Центральное командование. - [color=#a4885c]Syndicate Minor Victory[/color] - - The crew escapes on evac, but every nukie survives - - The crew escapes and some nukies die, but the crew loses the disk + [color=#a4885c]Скромная победа Синдиката[/color] + - Экипаж сбегает, но оставляет всех оперативников в живых. + - Экипаж сбегает, и некоторые оперативники остаются в живых, но экипаж не забирают с собой диск. - [color=#a4885c]Neutral Victory[/color] - - The nuke detonates off station + [color=#a4885c]Ничья[/color] + - Ядерная бомба взрывается за пределами станции. - [color=#a4885c]Crew Minor Victory[/color] - - The crew escapes on evac and some nukies die, but the crew keeps the disk + [color=#a4885c]Малая победа экипажа[/color] + - Экипаж спасается, некоторые оперативники остаются в живых, но экипажу удается защитить диск. - [color=#a4885c]Crew Major Victory[/color] - - All nuclear operatives die - - The crew blow up the nukie outpost with the nuke + [color=#a4885c]Разгромная победа экипажа[/color] + - Все ядерные оперативники мертвы. + - Экипажу удается взорвать аванпост ядерных оперативников. - If you feel that you won't be able to completely win as crew or nukie, consider these options for a compromise. + Если вы чувствуете, что не сможете полностью победить в роли члена экипажа или оперативника, рассмотрите эти варианты компромисса. diff --git a/Resources/ServerInfo/Guidebook/Cargo/Cargo.xml b/Resources/ServerInfo/Guidebook/Cargo/Cargo.xml index 9c8e89ac2a5..d216edea711 100644 --- a/Resources/ServerInfo/Guidebook/Cargo/Cargo.xml +++ b/Resources/ServerInfo/Guidebook/Cargo/Cargo.xml @@ -1,31 +1,31 @@ - # Cargo - The supply department, more commonly known simply as Cargo, is in charge of keeping the station stocked up on necessary resources, such as fuel and raw materials. Though, they are not restricted to simple goods, and can order a wide variety of different items from off-station. The point is, it's Cargo's job to get the rest of the station what they need. + # Снабжение + Отдел снабжения, более известный как Карго, отвечает за обеспечение станции необходимыми ресурсами, такими как топливо и сырьё. Впрочем, они не ограничиваются простыми товарами и могут заказывать самые разные предметы за пределами станции. Суть в том, что в обязанности Карго входит доставка всего необходимого на станцию. - ## Ordering + ## Заказ - Every transaction you make will begin at a [color=#a4885c]cargo request computer[/color], from which you can make orders for specific products. Making any order requires [color=#118C4F]spesos[/color], the currency of the station. To make an order, click the "request" button next to whatever you need, type an appropriate reason for why you're ordering it, and hit "approve" when it appears below the request list. + Каждая ваша сделка начинается с [color=#a4885c]консоли заказа грузов[/color], в которой вы можете сделать заказ на определённые товары. Для выполнения любого заказа требуются [color=#118C4F]кредиты[/color], валюта станции. Чтобы сделать заказ, нажмите кнопку "заказать" рядом с тем, что вам нужно, напишите соответствующую причину заказа и нажмите "одобрить", когда он появится под списком запросов. - ## Piloting - Orders are shipped to the station via the [color=#a4885c]cargo shuttle[/color], the remotely piloted spacecraft that cargo uses to buy and sell goods. In order to move the shuttle, you must first find the [color=#a4885c]cargo shuttle computer[/color]. + ## Пилотирование + Заказы доставляются на станцию с помощью [color=#a4885c]грузового шаттла[/color] - дистанционно пилотируемого космического корабля, который используется для покупки и продажи товаров. Чтобы переместить шаттл, вы должны сначала найти [color=#a4885c]консоль управления грузовым шаттлом[/color]. - After clicking the computer, you should see a radar view of the shuttle. Here are the steps for piloting the shuttle back and forth: + После нажатия на компьютер вы должны увидеть изображение шаттла на радаре. Вот шаги по управлению шаттлом туда и обратно: - - First, disconnect any airlocks that are connected to the dock. - - Then, you actually get to pilot the shuttle. The controls are fairly simple, with W and S being forward and backward, A and D being turn left and right; and Spacebar being the brake. - - Find the button that designates the trading post. Hit this button, and the shuttle will start traveling to it. - - After a short delay, the option to FTL back to the station will reappear. After this, just pilot the shuttle back to the cargo dock and retrieve the items you ordered. + - Сначала отсоедините все шлюзы, подключенные к доку. + - Затем вам предстоит управлять шаттлом. Управление довольно простое: W и S - движение вперед и назад, A и D - движение влево и вправо, Q и E - поворот влево и право, а пробел - тормоз. + - Найдите кнопку, обозначающую торговый пост. Нажмите на эту кнопку, и шаттл начнёт движение к нему. + - После небольшой задержки снова появится возможность вернуться на станцию с помощью БСС. После этого просто пилотируйте шаттл обратно в грузовой док и возьмите заказанные предметы. - ## Selling - So, you want to order something, but don't have the money for it? You just need to sell something! Almost everything on the station has economic value, which an [color=#a4885c]appraisal tool[/color] can read out to you. + ## Продажа + Вы хотите что-то заказать, но у вас нет на это денег? Вам просто нужно что-то продать! Почти всё на станции имеет экономическую ценность, которую вам может огласить [color=#a4885c]оценочный инструмент[/color]. - After finding something worth selling, place it on one of the shuttle's cargo pallets. The next time the shuttle is sent to a trading post, the item will be sold and the money will be directly transferred back to the station's bank account. You can also make even more money by completing [textlink="bounties" link="CargoBounties"] or selling valuable items from [textlink="salvage" link="Salvage"]. + Найдя что-то стоящее, положите это на один из грузовых паллетов шаттла. В следующий раз, когда шаттл будет отправлен на торговый пост, предмет будет продан, а деньги напрямую перечислены на банковский счёт станции. Вы также можете заработать еще больше денег, выполняя [textlink="запросы" link="CargoBounties"] или продавая ценные предметы от [textlink="утилизаторов" link="Salvage"]. diff --git a/Resources/ServerInfo/Guidebook/Security/Defusal.xml b/Resources/ServerInfo/Guidebook/Security/Defusal.xml index 63e1b037d2c..275f2323846 100644 --- a/Resources/ServerInfo/Guidebook/Security/Defusal.xml +++ b/Resources/ServerInfo/Guidebook/Security/Defusal.xml @@ -1,16 +1,16 @@  - # Large Bomb Defusal - So, you found a large bomb and it's beeping. These bombs take a long time to detonate and punch a big hole into the hull. Just keep reading, and nobody will explode. + # Обезвреживание крупной бомбы + Итак, вы нашли крупную бомбу, и она пикает. Такие бомбы обладают долгим таймером, но, взорвавшись, они способны пробить в корпусе станции огромную дыру. Продолжайте читать это руководство, и никто не взорвется. - ## Gear - You require two essential tools to perform defusal, however, a multitool is extremely helpful in terms of identifying wires. + ## Снаряжение + Для обезвреживания требуются два основных инструмента, однако для идентификации проводов очень полезен мультитул. - For protective equipment, a [color=yellow]bomb suit[/color] or any other protective equipment can assist you in not blowing into gibs. + Что касается защитного снаряжения, то [color=yellow]сапёрный костюм[/color] или любое другое защитное снаряжение поможет вам не превратиться в кровавое облачко если что-то пойдёт не так. @@ -18,56 +18,56 @@ - ## Hardbombs - Listed below are the two common types of bombs you will encounter while defusing. A training bomb will only provide minor hull damage and generally not kill you. A syndicate bomb however will punch a big hole into the hull, and gib you if you are not wearing protective gear. + ## Бомбы + Ниже перечислены два распространенных типа бомб, с которыми вы столкнетесь при обезвреживании. Учебная бомба не нанесёт значительные повреждения корпусу и, как правило, не убьёт вас. Бомба Синдиката, однако, проделает большое отверстие в станции, не оставив от вас мокрого места, если вы предварительно не защититесь. - ## Arming - To arm a bomb, you can either [color=yellow]right click[/color] and click [color=yellow]Begin countdown[/click], or [color=yellow]alt-click[/color] the bomb. It will begin beeping. + ## Взведение + Чтобы взвести бомбу, вы можете либо кликнуть [color=yellow]ПКМ[/color] и выбрать [color=yellow]Начать обратный отсчёт[/color], либо [color=yellow]Alt-кликнуть[/color] по бомбе. После этого она запикает. - ## Time - A bomb has a limited time, at a minimum of 90 and a maximum of 300. You can view the timer by examining it, unless the Proceed wire is cut. Once the timer hits zero, the bomb will detonate. + ## Обратный отсчёт + Бомба имеет ограниченное время действия, минимум 90 и максимум 300. Таймер можно увидеть, осмотрев бомбу, если только провод не перерезан. Как только таймер достигнет нуля, бомба взорвётся. - ## Bolts - By default, once armed, a bomb will bolt itself to the ground. You must find the BOLT wire and cut it to disable the bolts, after which you can unwrench it and throw it into space. + ## Болты + По умолчанию, как только бомба будет взведена, она болтируется к земле. Вы должны найти провод БОЛТ и перерезать его, чтобы отключить болты, после чего вы можете открутить её и выбросить в космос. - ## Wires - You must access the wiring in order to defuse a bomb. You can use a [color=yellow]screwdriver[/color] to open the access panel. Inside, you will find many types of wires. In a standard syndicate bomb, there are around [color=yellow]10 wires[/color], 3 are dummy wires, [color=red]3 will cause a detonation[/color], and the rest that weren't mentioned can be found below (alongside BOOM wires). With each wire, you can do 3 actions. You can: - - [color=yellow]Pulse the wire[/color] with a multitool, this can help you safely identify most wires. - - [color=red]Cut the wire[/color] with a wirecutter, this can trigger various effects, be cautious of cutting without reason! - - [color=green]Mend the wire[/color] with a wirecutter, this can restore some functionality of the bomb if it isn't disposable. + ## Провода + Чтобы обезвредить бомбу, необходимо иметь доступ к её проводам. Открыть панель доступа можно с помощью [color=yellow]отвёртки[/color]. Внутри вы найдете множество типов проводов. В стандартной бомбе Синдиката около [color=yellow]10 проводов[/color], 3 из которых являются пустышками, [color=red]3 вызывают детонацию[/color] бомбы, а остальные мы рассмотрим ниже (рядом с проводами БУМ). С каждым проводом можно выполнить 3 действия. Вы можете: + - [color=yellow]Прощупать провод[/color] с помощью мультитула, это поможет безопасно определить назначение большинства проводов. + - [color=red]Перерезать провод[/color] кусачками, что может вызвать срабатываение различных эффектов. Будьте осторожны и не режьте провода без причины! + - [color=green]Починить провод[/color] кусачками, скрепив обратно перерезанные провода, и восстановив работоспособность бомбы. - Onward for the types of wires. + Рассмотрим существующие типы проводов. - ## Wire Types - [color=#a4885c]Activation Wire (LIVE)[/color] - - [color=yellow]Pulse the wire[/color]: Pulsing the wire will make the wire chirp and delay the bomb by 30 seconds. - - [color=red]Cut the wire[/color]: Cutting the wire will defuse the bomb if active, otherwise, will begin the timer. - - [color=green]Mend the wire[/color]: Nothing. + ## Типы проводов + [color=#a4885c]Провод Активация (АКТВ)[/color] + - [color=yellow]Прощупать провод[/color]: Пульсация провода заставит бомбу затрещать и замедлит таймер на 30 секунд. + - [color=red]Перерезать провод[/color]: Перерезание провода обезвредит бомбу, если она взведена, в противном случае запустится таймер. + - [color=green]Восстановить провод[/color] Ничего. - [color=#a4885c]Proceed Wire (PRCD)[/color] - - [color=yellow]Pulse the wire[/color]: Pulsing the wire will forward the time by 15 seconds. - - [color=red]Cut the wire[/color]: Cutting the wire will disable the timer display on examine. - - [color=green]Mend the wire[/color]: Nothing. + [color=#a4885c]Провод Продолжение (ПРДЛ)[/color] + - [color=yellow]Прощупать провод[/color]: Пульсация провода ускорит таймер на 15 секунд. + - [color=red]Перерезать провод[/color]: Перерезание провода отключит индикацию таймера. + - [color=green]Восстановить провод[/color]: Ничего. - [color=#a4885c]Delay Wire (DLAY)[/color] - - [color=yellow]Pulse the wire[/color]: Pulsing the delay wire will delay the bomb by 30 seconds. - - [color=red]Cut the wire[/color]: Nothing. - - [color=green]Mend the wire[/color]: Nothing. + [color=#a4885c]Провод Задержка (ЗДРЖ)[/color] + - [color=yellow]Прощупать провод[/color]: Пульсация провода замедлит таймер на 30 секунд. + - [color=red]Перерезать провод[/color]: Ничего. + - [color=green]Восстановить провод[/color]: Ничего. - [color=#a4885c]Boom Wire (BOOM)[/color] - - [color=yellow]Pulse the wire[/color]: [color=red]The bomb will explode if armed![/color] - - [color=red]Cut the wire[/color]: [color=red]The bomb will explode if armed![/color] Otherwise, will disable the bomb. - - [color=green]Mend the wire[/color]: Re-enables the bomb if disabled previously. + [color=#a4885c]Провод Подрыв (БУУМ)[/color] + - [color=yellow]Прощупать провод[/color]: [color=red]Бомба взорвётся, если она уже активирована![/color] + - [color=red]Перерезать провод[/color]: [color=red]Бомба взорвётся, если она уже активирована![/color] В противном случае, бомба будет отключена. + - [color=green]Починить провод[/color]: Вновь включает бомбу, если ранее она была отключена. - [color=#a4885c]Bolt Wire (BOLT)[/color] - - [color=yellow]Pulse the wire[/color]: Pulsing the wire will make the bolts spin. - - [color=red]Cut the wire[/color]: Cutting the wire will disable the bolts, throw it into space! - - [color=green]Mend the wire[/color]: Mending the wire will re-enable the bolts. + [color=#a4885c]Провод Болты (БОЛТ)[/color] + - [color=yellow]Прощупать провод[/color]: Пульсация провода прокрутит болты. + - [color=red]Перерезать провод[/color]: Перерезание провода выведет болты из строя, скорее выбросьте бомбу в космос! + - [color=green]Починить провод[/color]: Починка провода приведет к повторному включению болтов. - [color=#a4885c]Dummy Wire[/color] - - Dummy wires don't do anything. You can pulse, cut, and mend them freely and they will not affect the bomb at all. + [color=#a4885c]Провод Пустышка[/color] + - Пустышки ничего не делают. Их можно свободно прощупывать, перерезать, и чинить, и они никак не повлияют на бомбу. diff --git a/Resources/ServerInfo/Guidebook/Security/Forensics.xml b/Resources/ServerInfo/Guidebook/Security/Forensics.xml index 5170cb1f2f5..0edcd01f5bb 100644 --- a/Resources/ServerInfo/Guidebook/Security/Forensics.xml +++ b/Resources/ServerInfo/Guidebook/Security/Forensics.xml @@ -1,15 +1,15 @@ - # Forensics + # Криминалистика - There are a lot of tools to help you gather and examine the evidence at your disposal + В вашем распоряжении множество инструментов, которые помогут вам собрать и изучить доказательства. - # Log probe + # Зонд логов - This little add-on to your PDA is incredibly useful, just install the cartridge and your PDA will acquire the ability to scan anything with access (like airlocks) and see who has used them recently. + Это маленькое дополнение к вашему КПК невероятно полезно: просто установите картридж, и ваш КПК получит возможность сканировать всё, что имеет доступ (например, шлюзы), и видеть, кто пользовался ими в последнее время. - You can normally find it inside the detective locker. After inserting it on your PDA, go to the programs tab and the log probe application should be there, to use the application you just have to interact with anything that requires access with your PDA while the application is open and the information will be instantly displayed in it. + Обычно вы можете найти его в шкафчике детектива. После того как вы вставите его в КПК, перейдите во вкладку "Программы", где должно появиться приложение "Зонд логов". Чтобы воспользоваться приложением, вам нужно просто взаимодействовать со всем, что требует доступа с помощью вашего КПК, пока приложение открыто, и информация будет мгновенно отображена в нем. - It should be noted that the name shown in the application is not to be trusted 100% of the time since it gets the name from the identification card of whoever used the thing we are scanning, so if for example someone opened an airlock with no card the application would display "Unknown" as the name. + Следует отметить, что имени, отображаемому в приложении, нельзя доверять в 100% случаев, поскольку оно берет имя из ID-карты того, кто использовал сканируемую вещь, поэтому, если, например, кто-то открыл шлюз без карты, приложение отобразит "Неизвестно" в качестве имени. diff --git a/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/equipped-HAND.png index 33e36a316fa..5b7d1c5e546 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/equipped-HAND.png and b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/icon.png index 59d0d46baa1..7959e89653a 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/icon.png and b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-left.png index 8f8953d6350..8e5d0f08821 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-left.png and b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-right.png index dec3a7db6d6..659edb78825 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-right.png and b/Resources/Textures/Clothing/Hands/Gloves/robohands.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..c4c14d7a94e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/icon.png new file mode 100644 index 00000000000..90193dbb4d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/inhand-left.png new file mode 100644 index 00000000000..1b26cfd887b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/inhand-right.png new file mode 100644 index 00000000000..871da0cbffa Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/meta.json new file mode 100644 index 00000000000..5df1cd9c6b2 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/brownflatcap.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Spritework done by Hanzdegloker", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..8bb7fd3ad00 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/icon.png new file mode 100644 index 00000000000..650482d0e1c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/inhand-left.png new file mode 100644 index 00000000000..aa985c0778c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/inhand-right.png new file mode 100644 index 00000000000..712f508686e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/meta.json new file mode 100644 index 00000000000..5df1cd9c6b2 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/greyflatcap.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Spritework done by Hanzdegloker", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/equipped-INNERCLOTHING.png index 279d7fb5cf1..ddb361c9869 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/icon.png index c03b50de607..6a41bea8ae9 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/inhand-left.png index 1dcb563b81a..e2b8fb93053 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/inhand-right.png index 74bb3d31462..7cf84534020 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/meta.json index 33626032f53..6d258e3f7dc 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Tunguso4ka (github) for SS14, monkey made by brainfood1183 (github) for ss14, digi made by kuro(388673708753027083)", + "copyright": "Made by Tunguso4ka (github) for SS14, monkey made by brainfood1183 (github) for ss14, edited by Alekshhh, digi made by kuro(388673708753027083)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_box.png b/Resources/Textures/Decals/bricktile.rsi/dark_box.png index 777c8177990..35d9f756016 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_box.png and b/Resources/Textures/Decals/bricktile.rsi/dark_box.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_corner_ne.png b/Resources/Textures/Decals/bricktile.rsi/dark_corner_ne.png index f4bbadb8623..495a7a6d558 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_corner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/dark_corner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_corner_nw.png b/Resources/Textures/Decals/bricktile.rsi/dark_corner_nw.png index d0d77598c19..c43b9fd280e 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_corner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/dark_corner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_corner_se.png b/Resources/Textures/Decals/bricktile.rsi/dark_corner_se.png index 929b1ff10d9..568d0d661c2 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_corner_se.png and b/Resources/Textures/Decals/bricktile.rsi/dark_corner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_corner_sw.png b/Resources/Textures/Decals/bricktile.rsi/dark_corner_sw.png index 6622c5ead3e..ac5a2cd1dbe 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_corner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/dark_corner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_end_e.png b/Resources/Textures/Decals/bricktile.rsi/dark_end_e.png index d1d5aa4fc5d..12eaff3135e 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_end_e.png and b/Resources/Textures/Decals/bricktile.rsi/dark_end_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_end_n.png b/Resources/Textures/Decals/bricktile.rsi/dark_end_n.png index 75b629b189e..06df7bbd3f7 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_end_n.png and b/Resources/Textures/Decals/bricktile.rsi/dark_end_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_end_s.png b/Resources/Textures/Decals/bricktile.rsi/dark_end_s.png index 008050f4078..1f0cbe1e3fb 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_end_s.png and b/Resources/Textures/Decals/bricktile.rsi/dark_end_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_end_w.png b/Resources/Textures/Decals/bricktile.rsi/dark_end_w.png index dea5fda8fc7..179013d26d0 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_end_w.png and b/Resources/Textures/Decals/bricktile.rsi/dark_end_w.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_inner_ne.png b/Resources/Textures/Decals/bricktile.rsi/dark_inner_ne.png index 83443d9e812..cfbc8d25fbe 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_inner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/dark_inner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_inner_nw.png b/Resources/Textures/Decals/bricktile.rsi/dark_inner_nw.png index 7d0bbd34fed..03f7447852e 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_inner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/dark_inner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_inner_se.png b/Resources/Textures/Decals/bricktile.rsi/dark_inner_se.png index c8b86f2138d..3911a04460e 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_inner_se.png and b/Resources/Textures/Decals/bricktile.rsi/dark_inner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_inner_sw.png b/Resources/Textures/Decals/bricktile.rsi/dark_inner_sw.png index 9d642cfc8aa..7b02e249e7b 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_inner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/dark_inner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_line_e.png b/Resources/Textures/Decals/bricktile.rsi/dark_line_e.png index 9fb5589ec56..e3c0aa5f08a 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_line_e.png and b/Resources/Textures/Decals/bricktile.rsi/dark_line_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_line_n.png b/Resources/Textures/Decals/bricktile.rsi/dark_line_n.png index 653ca5ed37b..3c4363ffbef 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_line_n.png and b/Resources/Textures/Decals/bricktile.rsi/dark_line_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_line_s.png b/Resources/Textures/Decals/bricktile.rsi/dark_line_s.png index aa65d0393da..b8502f6ef5a 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_line_s.png and b/Resources/Textures/Decals/bricktile.rsi/dark_line_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_line_w.png b/Resources/Textures/Decals/bricktile.rsi/dark_line_w.png index 45b437001b7..e796a21c757 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_line_w.png and b/Resources/Textures/Decals/bricktile.rsi/dark_line_w.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/meta.json b/Resources/Textures/Decals/bricktile.rsi/meta.json index 50dd3a3a1b2..2658bbe3b3c 100644 --- a/Resources/Textures/Decals/bricktile.rsi/meta.json +++ b/Resources/Textures/Decals/bricktile.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Made by github user @Morb0", + "copyright": "Made by github user @Morb0. Modified v2 by ko4erga (discord)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_box.png b/Resources/Textures/Decals/bricktile.rsi/steel_box.png index a7372478d96..b380c3630e3 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_box.png and b/Resources/Textures/Decals/bricktile.rsi/steel_box.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_corner_ne.png b/Resources/Textures/Decals/bricktile.rsi/steel_corner_ne.png index f6d58723552..8b7727a419c 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_corner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/steel_corner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_corner_nw.png b/Resources/Textures/Decals/bricktile.rsi/steel_corner_nw.png index 48196d5d152..a37dcae3692 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_corner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/steel_corner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_corner_se.png b/Resources/Textures/Decals/bricktile.rsi/steel_corner_se.png index 756e7916f38..358ccc24f98 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_corner_se.png and b/Resources/Textures/Decals/bricktile.rsi/steel_corner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_corner_sw.png b/Resources/Textures/Decals/bricktile.rsi/steel_corner_sw.png index 0e2ffa40f71..07a2a0fea41 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_corner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/steel_corner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_end_e.png b/Resources/Textures/Decals/bricktile.rsi/steel_end_e.png index 8ecac11595e..5e0a6b57cb5 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_end_e.png and b/Resources/Textures/Decals/bricktile.rsi/steel_end_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_end_n.png b/Resources/Textures/Decals/bricktile.rsi/steel_end_n.png index 7fd15506459..92c8322b70c 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_end_n.png and b/Resources/Textures/Decals/bricktile.rsi/steel_end_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_end_s.png b/Resources/Textures/Decals/bricktile.rsi/steel_end_s.png index 75d709945fa..ec86c541b7f 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_end_s.png and b/Resources/Textures/Decals/bricktile.rsi/steel_end_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_end_w.png b/Resources/Textures/Decals/bricktile.rsi/steel_end_w.png index 889c1b2abf1..cdb1f477454 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_end_w.png and b/Resources/Textures/Decals/bricktile.rsi/steel_end_w.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_inner_ne.png b/Resources/Textures/Decals/bricktile.rsi/steel_inner_ne.png index 38c66e768c1..b58ea9631e4 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_inner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/steel_inner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_inner_nw.png b/Resources/Textures/Decals/bricktile.rsi/steel_inner_nw.png index 28fdd2212a3..73046f8e5cd 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_inner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/steel_inner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_inner_se.png b/Resources/Textures/Decals/bricktile.rsi/steel_inner_se.png index 88629fcee62..25baf19f31a 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_inner_se.png and b/Resources/Textures/Decals/bricktile.rsi/steel_inner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_inner_sw.png b/Resources/Textures/Decals/bricktile.rsi/steel_inner_sw.png index 8892437d696..81da05efa6e 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_inner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/steel_inner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_line_e.png b/Resources/Textures/Decals/bricktile.rsi/steel_line_e.png index 20d501ae4c4..3ecb9a05150 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_line_e.png and b/Resources/Textures/Decals/bricktile.rsi/steel_line_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_line_n.png b/Resources/Textures/Decals/bricktile.rsi/steel_line_n.png index 223f8822630..0ad85a15202 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_line_n.png and b/Resources/Textures/Decals/bricktile.rsi/steel_line_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_line_s.png b/Resources/Textures/Decals/bricktile.rsi/steel_line_s.png index da457346fb8..883d560eff5 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_line_s.png and b/Resources/Textures/Decals/bricktile.rsi/steel_line_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_line_w.png b/Resources/Textures/Decals/bricktile.rsi/steel_line_w.png index eb1729aa50a..493da18cfcf 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_line_w.png and b/Resources/Textures/Decals/bricktile.rsi/steel_line_w.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_box.png b/Resources/Textures/Decals/bricktile.rsi/white_box.png index 9d5eb3a0fcc..c5e90865f9a 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_box.png and b/Resources/Textures/Decals/bricktile.rsi/white_box.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_corner_ne.png b/Resources/Textures/Decals/bricktile.rsi/white_corner_ne.png index 0b7292ad46d..81f60a4e469 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_corner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/white_corner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_corner_nw.png b/Resources/Textures/Decals/bricktile.rsi/white_corner_nw.png index b75beffdbd6..ee1ff51dae5 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_corner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/white_corner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_corner_se.png b/Resources/Textures/Decals/bricktile.rsi/white_corner_se.png index 1f8ff811b97..36c62c1a0d0 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_corner_se.png and b/Resources/Textures/Decals/bricktile.rsi/white_corner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_corner_sw.png b/Resources/Textures/Decals/bricktile.rsi/white_corner_sw.png index 34dcf001ba1..ac6345f78f4 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_corner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/white_corner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_end_e.png b/Resources/Textures/Decals/bricktile.rsi/white_end_e.png index c4c8fff1ec0..9a9f3e3fe8e 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_end_e.png and b/Resources/Textures/Decals/bricktile.rsi/white_end_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_end_n.png b/Resources/Textures/Decals/bricktile.rsi/white_end_n.png index a731e889152..c3e5ec41ba5 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_end_n.png and b/Resources/Textures/Decals/bricktile.rsi/white_end_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_end_s.png b/Resources/Textures/Decals/bricktile.rsi/white_end_s.png index 4b4d4746d82..99828873f6b 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_end_s.png and b/Resources/Textures/Decals/bricktile.rsi/white_end_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_end_w.png b/Resources/Textures/Decals/bricktile.rsi/white_end_w.png index 5ae777ed429..321b590e900 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_end_w.png and b/Resources/Textures/Decals/bricktile.rsi/white_end_w.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_inner_ne.png b/Resources/Textures/Decals/bricktile.rsi/white_inner_ne.png index 4ab7d0398d7..0ce81b77a64 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_inner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/white_inner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_inner_nw.png b/Resources/Textures/Decals/bricktile.rsi/white_inner_nw.png index fb99fadedf5..da68f91a124 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_inner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/white_inner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_inner_se.png b/Resources/Textures/Decals/bricktile.rsi/white_inner_se.png index 391bce18fed..6dbbb318ce2 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_inner_se.png and b/Resources/Textures/Decals/bricktile.rsi/white_inner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_inner_sw.png b/Resources/Textures/Decals/bricktile.rsi/white_inner_sw.png index 5afedd1a7f4..e70b2d357e8 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_inner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/white_inner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_line_e.png b/Resources/Textures/Decals/bricktile.rsi/white_line_e.png index b9a9ac5eaa2..966b6541e3f 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_line_e.png and b/Resources/Textures/Decals/bricktile.rsi/white_line_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_line_n.png b/Resources/Textures/Decals/bricktile.rsi/white_line_n.png index 700d841ff1c..c0217352203 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_line_n.png and b/Resources/Textures/Decals/bricktile.rsi/white_line_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_line_s.png b/Resources/Textures/Decals/bricktile.rsi/white_line_s.png index be900a5ae36..559e333e613 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_line_s.png and b/Resources/Textures/Decals/bricktile.rsi/white_line_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_line_w.png b/Resources/Textures/Decals/bricktile.rsi/white_line_w.png index 5d2fdbf6c46..73e29c95f5c 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_line_w.png and b/Resources/Textures/Decals/bricktile.rsi/white_line_w.png differ diff --git a/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-0.png b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-0.png index f7476ff0f82..ece560af853 100644 Binary files a/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-0.png and b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-0.png differ diff --git a/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-1.png b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-1.png index c2f2bd7cf70..70a5363e10e 100644 Binary files a/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-1.png and b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-1.png differ diff --git a/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-2.png b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-2.png index 366315fdd9b..073d92b793a 100644 Binary files a/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-2.png and b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-2.png differ diff --git a/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-moving-0.png b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-moving-0.png new file mode 100644 index 00000000000..f7476ff0f82 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-moving-0.png differ diff --git a/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-moving-1.png b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-moving-1.png new file mode 100644 index 00000000000..eaf5c24af92 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-moving-1.png differ diff --git a/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-moving-2.png b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-moving-2.png new file mode 100644 index 00000000000..da62f954ce3 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/chicken.rsi/chicken-moving-2.png differ diff --git a/Resources/Textures/Mobs/Animals/chicken.rsi/dead-1.png b/Resources/Textures/Mobs/Animals/chicken.rsi/dead-1.png index 5ea03157c93..5edf120300d 100644 Binary files a/Resources/Textures/Mobs/Animals/chicken.rsi/dead-1.png and b/Resources/Textures/Mobs/Animals/chicken.rsi/dead-1.png differ diff --git a/Resources/Textures/Mobs/Animals/chicken.rsi/dead-2.png b/Resources/Textures/Mobs/Animals/chicken.rsi/dead-2.png index 87f5d022775..900fd5fac81 100644 Binary files a/Resources/Textures/Mobs/Animals/chicken.rsi/dead-2.png and b/Resources/Textures/Mobs/Animals/chicken.rsi/dead-2.png differ diff --git a/Resources/Textures/Mobs/Animals/chicken.rsi/icon-1.png b/Resources/Textures/Mobs/Animals/chicken.rsi/icon-1.png index 69360a0393d..f68bf675325 100644 Binary files a/Resources/Textures/Mobs/Animals/chicken.rsi/icon-1.png and b/Resources/Textures/Mobs/Animals/chicken.rsi/icon-1.png differ diff --git a/Resources/Textures/Mobs/Animals/chicken.rsi/icon-2.png b/Resources/Textures/Mobs/Animals/chicken.rsi/icon-2.png index 7d579a9ed3f..4e19bb6bb9a 100644 Binary files a/Resources/Textures/Mobs/Animals/chicken.rsi/icon-2.png and b/Resources/Textures/Mobs/Animals/chicken.rsi/icon-2.png differ diff --git a/Resources/Textures/Mobs/Animals/chicken.rsi/meta.json b/Resources/Textures/Mobs/Animals/chicken.rsi/meta.json index 42f14d611e4..2fe526ac549 100644 --- a/Resources/Textures/Mobs/Animals/chicken.rsi/meta.json +++ b/Resources/Textures/Mobs/Animals/chicken.rsi/meta.json @@ -31,8 +31,12 @@ ] ] }, - { + { "name": "chicken-0", + "directions": 4 + }, + { + "name": "chicken-moving-0", "directions": 4, "delays": [ [ @@ -56,9 +60,13 @@ 0.2 ] ] + }, + { + "name" : "chicken-1", + "directions" : 4 }, { - "name": "chicken-1", + "name": "chicken-moving-1", "directions": 4, "delays": [ [ @@ -85,6 +93,10 @@ }, { "name": "chicken-2", + "directions": 4 + }, + { + "name": "chicken-moving-2", "directions": 4, "delays": [ [ diff --git a/Resources/Textures/Mobs/Animals/mouse.rsi/meta.json b/Resources/Textures/Mobs/Animals/mouse.rsi/meta.json index b144e0e973c..fb49b05c138 100644 --- a/Resources/Textures/Mobs/Animals/mouse.rsi/meta.json +++ b/Resources/Textures/Mobs/Animals/mouse.rsi/meta.json @@ -16,11 +16,15 @@ { "name": "icon-2" }, - { + { "name": "icon-3" }, { "name": "mouse-0", + "directions": 4 + }, + { + "name": "mouse-moving-0", "directions": 4, "delays": [ [ @@ -47,6 +51,10 @@ }, { "name": "mouse-1", + "directions": 4 + }, + { + "name": "mouse-moving-1", "directions": 4, "delays": [ [ @@ -73,6 +81,10 @@ }, { "name": "mouse-2", + "directions": 4 + }, + { + "name": "mouse-moving-2", "directions": 4, "delays": [ [ @@ -97,8 +109,12 @@ ] ] }, - { + { "name": "mouse-3", + "directions": 4 + }, + { + "name": "mouse-moving-3", "directions": 4, "delays": [ [ @@ -132,7 +148,7 @@ { "name": "dead-2" }, - { + { "name": "dead-3" }, { @@ -144,7 +160,7 @@ { "name": "splat-2" }, - { + { "name": "splat-3" }, { diff --git a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-0.png b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-0.png index 1cfe399b63b..ee62220aa19 100644 Binary files a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-0.png and b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-0.png differ diff --git a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-1.png b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-1.png index 5d96953df5e..def2943b925 100644 Binary files a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-1.png and b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-1.png differ diff --git a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-2.png b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-2.png index fe0969a1bb0..be76731fec9 100644 Binary files a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-2.png and b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-2.png differ diff --git a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-3.png b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-3.png index 6f984068026..c7ac23e929b 100644 Binary files a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-3.png and b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-3.png differ diff --git a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-0.png b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-0.png new file mode 100644 index 00000000000..1cfe399b63b Binary files /dev/null and b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-0.png differ diff --git a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-1.png b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-1.png new file mode 100644 index 00000000000..5d96953df5e Binary files /dev/null and b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-1.png differ diff --git a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-2.png b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-2.png new file mode 100644 index 00000000000..37ed844f6a2 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-2.png differ diff --git a/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-3.png b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-3.png new file mode 100644 index 00000000000..4b0694a76bc Binary files /dev/null and b/Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/burger.rsi/meta.json index c18c4b60406..5a7ffa873f3 100644 --- a/Resources/Textures/Objects/Consumable/Food/burger.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/burger.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by Swept and potato1234x at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, ian.png created by EmoGarbage", + "copyright": "Taken from tgstation and modified by Swept and potato1234x at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, ian.png created by EmoGarbage, mothroach.png created by TurboTracker", "size": { "x": 32, "y": 32 @@ -173,6 +173,9 @@ { "name": "x" }, + { + "name": "mothroach" + }, { "name": "inhand-right", "directions": 4 diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/mothroach.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/mothroach.png new file mode 100644 index 00000000000..d1f8a2fe248 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/mothroach.png differ diff --git a/Resources/Textures/Objects/Devices/swapper.rsi/icon.png b/Resources/Textures/Objects/Devices/swapper.rsi/icon.png index 8aef40e4b83..defaecb6def 100644 Binary files a/Resources/Textures/Objects/Devices/swapper.rsi/icon.png and b/Resources/Textures/Objects/Devices/swapper.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Devices/swapper.rsi/inhand-left.png b/Resources/Textures/Objects/Devices/swapper.rsi/inhand-left.png index 08b70fe4c80..dd44838e29c 100644 Binary files a/Resources/Textures/Objects/Devices/swapper.rsi/inhand-left.png and b/Resources/Textures/Objects/Devices/swapper.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/swapper.rsi/inhand-right.png b/Resources/Textures/Objects/Devices/swapper.rsi/inhand-right.png index 39b94bfa0a6..6aefc2cd56d 100644 Binary files a/Resources/Textures/Objects/Devices/swapper.rsi/inhand-right.png and b/Resources/Textures/Objects/Devices/swapper.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/swapper.rsi/linked.png b/Resources/Textures/Objects/Devices/swapper.rsi/linked.png index 6c574877973..45324aa4a9a 100644 Binary files a/Resources/Textures/Objects/Devices/swapper.rsi/linked.png and b/Resources/Textures/Objects/Devices/swapper.rsi/linked.png differ diff --git a/Resources/Textures/Objects/Devices/swapper.rsi/meta.json b/Resources/Textures/Objects/Devices/swapper.rsi/meta.json index 40b7f3a0378..7b467a3d2b0 100644 --- a/Resources/Textures/Objects/Devices/swapper.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/swapper.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "tgstation at https://github.com/tgstation/tgstation/commit/71a1fee2f13730adee5302d34bfa0f0262314d63", + "copyright": "tgstation at https://github.com/tgstation/tgstation/commit/71a1fee2f13730adee5302d34bfa0f0262314d63, resprite by KREKS", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/cart_bucket.png b/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/cart_bucket.png index 3c055509484..613bc52d25e 100644 Binary files a/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/cart_bucket.png and b/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/cart_bucket.png differ diff --git a/Resources/Textures/Objects/Storage/medalcase.rsi/closed.png b/Resources/Textures/Objects/Storage/medalcase.rsi/closed.png new file mode 100644 index 00000000000..712d458c94c Binary files /dev/null and b/Resources/Textures/Objects/Storage/medalcase.rsi/closed.png differ diff --git a/Resources/Textures/Objects/Storage/medalcase.rsi/icon.png b/Resources/Textures/Objects/Storage/medalcase.rsi/icon.png deleted file mode 100644 index 433d161f301..00000000000 Binary files a/Resources/Textures/Objects/Storage/medalcase.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Objects/Storage/medalcase.rsi/inhand-left.png b/Resources/Textures/Objects/Storage/medalcase.rsi/inhand-left.png new file mode 100644 index 00000000000..6fb31cd0ff3 Binary files /dev/null and b/Resources/Textures/Objects/Storage/medalcase.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Storage/medalcase.rsi/inhand-right.png b/Resources/Textures/Objects/Storage/medalcase.rsi/inhand-right.png new file mode 100644 index 00000000000..61bb6345e72 Binary files /dev/null and b/Resources/Textures/Objects/Storage/medalcase.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Storage/medalcase.rsi/meta.json b/Resources/Textures/Objects/Storage/medalcase.rsi/meta.json index 384aae8a733..2d224080563 100644 --- a/Resources/Textures/Objects/Storage/medalcase.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/medalcase.rsi/meta.json @@ -1,14 +1,25 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by AsikKEsel", - "size": { - "x": 32, - "y": 32 +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Beestation-Hornet at https://github.com/BeeStation/BeeStation-Hornet/commit/d06dde90f7bb6e6ba1b4a34bcc2a4624dbb1518c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "closed" }, - "states": [ - { - "name": "icon" - } - ] - } + { + "name": "open" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Storage/medalcase.rsi/open.png b/Resources/Textures/Objects/Storage/medalcase.rsi/open.png new file mode 100644 index 00000000000..ed80d96b741 Binary files /dev/null and b/Resources/Textures/Objects/Storage/medalcase.rsi/open.png differ diff --git a/Resources/Textures/Objects/Tools/bucket.rsi/equipped-HELMET.png b/Resources/Textures/Objects/Tools/bucket.rsi/equipped-HELMET.png index 667d2d02d63..c27d5f12490 100644 Binary files a/Resources/Textures/Objects/Tools/bucket.rsi/equipped-HELMET.png and b/Resources/Textures/Objects/Tools/bucket.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Objects/Tools/bucket.rsi/fill-1.png b/Resources/Textures/Objects/Tools/bucket.rsi/fill-1.png index f5067a9a9bb..6d9d31c9c8f 100644 Binary files a/Resources/Textures/Objects/Tools/bucket.rsi/fill-1.png and b/Resources/Textures/Objects/Tools/bucket.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Tools/bucket.rsi/fill-2.png b/Resources/Textures/Objects/Tools/bucket.rsi/fill-2.png index 1be4b4d75db..3763782d317 100644 Binary files a/Resources/Textures/Objects/Tools/bucket.rsi/fill-2.png and b/Resources/Textures/Objects/Tools/bucket.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Tools/bucket.rsi/fill-3.png b/Resources/Textures/Objects/Tools/bucket.rsi/fill-3.png index 6c597a01e6d..4be75792c3f 100644 Binary files a/Resources/Textures/Objects/Tools/bucket.rsi/fill-3.png and b/Resources/Textures/Objects/Tools/bucket.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Tools/bucket.rsi/icon.png b/Resources/Textures/Objects/Tools/bucket.rsi/icon.png index dec8f46e8dd..6b89e066bd1 100644 Binary files a/Resources/Textures/Objects/Tools/bucket.rsi/icon.png and b/Resources/Textures/Objects/Tools/bucket.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/bucket.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/bucket.rsi/inhand-left.png index 7d4ac07fc75..e1dbac607f6 100644 Binary files a/Resources/Textures/Objects/Tools/bucket.rsi/inhand-left.png and b/Resources/Textures/Objects/Tools/bucket.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/bucket.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/bucket.rsi/inhand-right.png index 92a37e12b9d..9b58ebad159 100644 Binary files a/Resources/Textures/Objects/Tools/bucket.rsi/inhand-right.png and b/Resources/Textures/Objects/Tools/bucket.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tools/bucket.rsi/meta.json b/Resources/Textures/Objects/Tools/bucket.rsi/meta.json index 0f89430388d..bee0aee67a5 100644 --- a/Resources/Textures/Objects/Tools/bucket.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/bucket.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by Swept at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", + "copyright": "Taken from tgstation and modified by Swept at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428, redrawn by Ubaser.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/assembly.png b/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/assembly.png new file mode 100644 index 00000000000..f52f0ec99d0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/meta.json b/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/meta.json index a8d4b41fdd7..905fe8a64eb 100644 --- a/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Shutters/blastdoor.rsi/meta.json @@ -1 +1,50 @@ -{"name":1,"size":{"x":32,"y":32},"states":[{"name":"closing","directions":1,"delays":[[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4]]},{"name":"opening","directions":1,"delays":[[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4]]},{"name":"open","directions":1},{"name":"closed","directions":1}],"license":"CC-BY-SA-3.0","copyright":"Tgstation at 97b4295aca9f31a750456e40730d05b5837e39fc","version":1} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Tgstation at 97b4295aca9f31a750456e40730d05b5837e39fc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.4 + ] + ] + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.4 + ] + ] + }, + { + "name": "open" + }, + { + "name": "closed" + } + ] +} diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/base.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/base.png index 0de3196726e..5171b03f461 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/base.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/door.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/door.png index 53ab3f15cc4..e2d18e4eb46 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/door.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/door.png differ diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/locked.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/locked.png index 454c035fdd3..40b036a2e5f 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/locked.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/meta.json b/Resources/Textures/Structures/Storage/suit_storage.rsi/meta.json index 561b5678da2..68edb6bd3dc 100644 --- a/Resources/Textures/Structures/Storage/suit_storage.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/suit_storage.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from /tg/station commit https://github.com/tgstation/tgstation/commit/af7b7043df593807f7a98b7a07880d7a977cda14 and resprited by Alekshhh, welded state drawn by Flareguy for Space Station 14", + "copyright": "Taken from /tg/station commit https://github.com/tgstation/tgstation/commit/af7b7043df593807f7a98b7a07880d7a977cda14 and slightly edited, welded state drawn by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/panel.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/panel.png index 9f587b0025d..7c4ef0d075e 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/panel.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/unlocked.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/unlocked.png index 3ad29d8317f..cb906e3cb20 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/welded.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/welded.png index b01290de40f..d8e0281ebb1 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/welded.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/base.png b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/base.png index 940be1b5089..0a2e1ae76b9 100644 Binary files a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/base.png and b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/base.png differ diff --git a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/broken.png b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/broken.png index 9cd6f0fa277..1565cdc86d7 100644 Binary files a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/broken.png and b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/burned.png b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/burned.png index e3922a9d351..7e14e2c2b39 100644 Binary files a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/burned.png and b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/burned.png differ diff --git a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/empty.png b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/empty.png index 68a683d3e7f..5ead53beb0e 100644 Binary files a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/empty.png and b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/empty.png differ diff --git a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/glow.png b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/glow.png index 764586a5d78..edffdfe50c2 100644 Binary files a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/glow.png and b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/glow.png differ diff --git a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/meta.json index 4b8aa5fa2f0..07444979e60 100644 --- a/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/Lighting/light_tube.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/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/lighting.dmi", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/cryostorage.rsi/meta.json b/Resources/Textures/Structures/cryostorage.rsi/meta.json new file mode 100644 index 00000000000..24426d5b819 --- /dev/null +++ b/Resources/Textures/Structures/cryostorage.rsi/meta.json @@ -0,0 +1,45 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "sleeper_0", + "directions": 4 + }, + { + "name": "sleeper_1", + "directions": 4, + "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 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/cryostorage.rsi/sleeper_0.png b/Resources/Textures/Structures/cryostorage.rsi/sleeper_0.png new file mode 100644 index 00000000000..7f67b0decf5 Binary files /dev/null and b/Resources/Textures/Structures/cryostorage.rsi/sleeper_0.png differ diff --git a/Resources/Textures/Structures/cryostorage.rsi/sleeper_1.png b/Resources/Textures/Structures/cryostorage.rsi/sleeper_1.png new file mode 100644 index 00000000000..2061c3ad432 Binary files /dev/null and b/Resources/Textures/Structures/cryostorage.rsi/sleeper_1.png differ diff --git a/Resources/migration.yml b/Resources/migration.yml index dadbf786276..2df35e3e102 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -258,6 +258,7 @@ DrinkGoldschlagerBottleFull: DrinkGildlagerBottleFull DrinkGoldschlagerGlass: DrinkGildlagerGlass # 2024-01-07 +ClosetBase: ClosetSteelBase MonkeyCubeBox: VariantCubeBox # 2024-01-08 diff --git a/SpaceStation14.sln.DotSettings b/SpaceStation14.sln.DotSettings index d9f767a01c8..3adf9b85ef7 100644 --- a/SpaceStation14.sln.DotSettings +++ b/SpaceStation14.sln.DotSettings @@ -587,6 +587,7 @@ public sealed partial class $CLASS$ : Shared$CLASS$ { True True True + True True True True